file
stringlengths
18
26
data
stringlengths
3
1.04M
the_stack_data/181394328.c
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int iamfunction() { return 0; } int c = 123; int main() { /* namespace - Identify parts of a program in which a name is recognized - You can use the same name for one variable and one tag. - C++: use 'namespace' to use the same identifiers in the duplicated scopes. */ int myname = 123; { int myname = 345; //double myname = 3.14;//ERROR } struct rect { double x; double y; }; int rect = 123; // OK in C (Not OK in C++) //struct rect rect = { 1.1, 2.2 }; // struct rect and rect are in different categories //typedef struct rect rect; //rect rect = { 1.1, 2.2 }; // Not OK //int iamfunction = iamfunction();//ERROR /* Namespace pollution (KNK p.465) - Names in different files accidentally conflicting with each other */ //printf("%d\n", a); // other.c return 0; }
the_stack_data/25424.c
#include <unistd.h> #define MAX 4096 int main() { int p[2]; pipe(p); int n; char buf[MAX]; if(!fork()) { close(p[1]); while( (n = read(p[0], buf, MAX) ) > 0) write(1, buf, n); close(p[0]); } else { close(p[0]); while ( (n = read(0, buf, MAX)) > 0 ) write(p[1], buf, n); close(p[1]); } return 0; }
the_stack_data/45450272.c
// REQUIRES: hexagon-registered-target // RUN: %clang_cc1 -no-opaque-pointers -emit-llvm -O2 -o - -triple hexagon-unknown-elf -target-cpu hexagonv60 %s | FileCheck %s // The return value should return the value in A[1]. // Check that the HexagonBuiltinExpr doesn't evaluate &(*ptr++) twice. If so, // the return value will be the value in A[2] // CHECK: @brev_ptr_inc // CHECK-DAG: llvm.hexagon.L2.loadri.pbr // CHECK-DAG: getelementptr{{.*}}i32 1 // CHECK-NOT: getelementptr{{.*}}i32 2 // CHECK-NOT: getelementptr{{.*}}i32 1 int brev_ptr_inc(int A[], int B[]) { int *p0 = &B[0]; int *p1 = &A[0]; __builtin_brev_ldw(p0, &*p1++, 8); return (*p1); } // The return value should return the value in A[0]. // CHECK: @brev_ptr_dec // CHECK: llvm.hexagon.L2.loadri.pbr // CHECK: [[RET:%[0-9]+]] = load{{.*}}%A // CHECK: ret{{.*}}[[RET]] int brev_ptr_dec(int A[], int B[]) { int *p0 = &B[0]; int *p1 = &A[1]; __builtin_brev_ldw(p0, &*p1--, 8); return (*p1); } // The store in bitcode needs to be of width correspondng to 16-bit. // CHECK: @brev_ptr_half // CHECK: llvm.hexagon.L2.loadrh.pbr // CHECK: store{{.*}}i16{{.*}}i16* short int brev_ptr_half(short int A[], short int B[]) { short int *p0 = &B[0]; short int *p1 = &A[0]; __builtin_brev_ldh(p0, &*p1++, 8); return (*p1); } // The store in bitcode needs to be of width correspondng to 8-bit. // CHECK: @brev_ptr_byte // CHECK: llvm.hexagon.L2.loadrub.pbr // CHECK: store{{.*}}i8{{.*}}i8* unsigned char brev_ptr_byte(unsigned char A[], unsigned char B[]) { unsigned char *p0 = &B[0]; unsigned char *p1 = &A[0]; __builtin_brev_ldub(p0, &*p1++, 8); return (*p1); }
the_stack_data/178264601.c
void dgemvT(const int M,const int N,const double alpha,const double *A,const int lda,const double *X,const int incX,const double beta,double *Y,const int incY) { int i; int j; /*@; BEGIN(nest1=Nest) @*/ for (i = 0; i <= -1 + M; i += 1) { Y[i] = beta * Y[i]; /*@; BEGIN(nest2=Nest) @*/ for (j = 0; j <= -1 + N; j += 1) { Y[i] += A[i * lda + j] * X[j]; } } }
the_stack_data/86074934.c
extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int cond) { if(!(cond)) { ERROR: __VERIFIER_error(); } } extern int __VERIFIER_nondet_int(void); int N; int main ( ) { N = __VERIFIER_nondet_int(); int a[N]; int i = 0; while ( i < N ) { a[i] = 42; i = i + 1; } int x; for ( x = 0 ; x < N ; x++ ) { __VERIFIER_assert( a[x] == 43 ); } return 0; }
the_stack_data/68538.c
/** ****************************************************************************** * @file stm32f3xx_ll_adc.c * @author MCD Application Team * @brief ADC LL module driver ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ****************************************************************************** */ #if defined(USE_FULL_LL_DRIVER) /* Includes ------------------------------------------------------------------*/ #include "stm32f3xx_ll_adc.h" #include "stm32f3xx_ll_bus.h" #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0U) #endif /** @addtogroup STM32F3xx_LL_Driver * @{ */ /* Note: Devices of STM32F3 serie embed 1 out of 2 different ADC IP. b */ /* - STM32F30x, STM32F31x, STM32F32x, STM32F33x, STM32F35x, STM32F39x: */ /* ADC IP 5Msamples/sec, from 1 to 4 ADC instances and other specific */ /* features (refer to reference manual). */ /* - STM32F37x: */ /* ADC IP 1Msamples/sec, 1 ADC instance */ /* This file contains the drivers of these ADC IP, located in 2 area */ /* delimited by compilation switches. */ #if defined(ADC5_V1_1) #if defined (ADC1) || defined (ADC2) || defined (ADC3) || defined (ADC4) /** @addtogroup ADC_LL ADC * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /** @addtogroup ADC_LL_Private_Constants * @{ */ /* Definitions of ADC hardware constraints delays */ /* Note: Only ADC IP HW delays are defined in ADC LL driver driver, */ /* not timeout values: */ /* Timeout values for ADC operations are dependent to device clock */ /* configuration (system clock versus ADC clock), */ /* and therefore must be defined in user application. */ /* Refer to @ref ADC_LL_EC_HW_DELAYS for description of ADC timeout */ /* values definition. */ /* Note: ADC timeout values are defined here in CPU cycles to be independent */ /* of device clock setting. */ /* In user application, ADC timeout values should be defined with */ /* temporal values, in function of device clock settings. */ /* Highest ratio CPU clock frequency vs ADC clock frequency: */ /* - ADC clock from synchronous clock with AHB prescaler 512, */ /* APB prescaler 16, ADC prescaler 4. */ /* - ADC clock from asynchronous clock (PLL) with prescaler 1, */ /* with highest ratio CPU clock frequency vs HSI clock frequency: */ /* CPU clock frequency max 72MHz, PLL frequency 72MHz: ratio 1. */ /* Unit: CPU cycles. */ #define ADC_CLOCK_RATIO_VS_CPU_HIGHEST ((uint32_t) 512U * 16U * 4U) #define ADC_TIMEOUT_DISABLE_CPU_CYCLES (ADC_CLOCK_RATIO_VS_CPU_HIGHEST * 1U) #define ADC_TIMEOUT_STOP_CONVERSION_CPU_CYCLES (ADC_CLOCK_RATIO_VS_CPU_HIGHEST * 1U) /** * @} */ /* Private macros ------------------------------------------------------------*/ /** @addtogroup ADC_LL_Private_Macros * @{ */ /* Check of parameters for configuration of ADC hierarchical scope: */ /* common to several ADC instances. */ #define IS_LL_ADC_COMMON_CLOCK(__CLOCK__) \ ( ((__CLOCK__) == LL_ADC_CLOCK_SYNC_PCLK_DIV1) \ || ((__CLOCK__) == LL_ADC_CLOCK_SYNC_PCLK_DIV2) \ || ((__CLOCK__) == LL_ADC_CLOCK_SYNC_PCLK_DIV4) \ || ((__CLOCK__) == LL_ADC_CLOCK_ASYNC_DIV1) \ ) /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC instance. */ #define IS_LL_ADC_RESOLUTION(__RESOLUTION__) \ ( ((__RESOLUTION__) == LL_ADC_RESOLUTION_12B) \ || ((__RESOLUTION__) == LL_ADC_RESOLUTION_10B) \ || ((__RESOLUTION__) == LL_ADC_RESOLUTION_8B) \ || ((__RESOLUTION__) == LL_ADC_RESOLUTION_6B) \ ) #define IS_LL_ADC_DATA_ALIGN(__DATA_ALIGN__) \ ( ((__DATA_ALIGN__) == LL_ADC_DATA_ALIGN_RIGHT) \ || ((__DATA_ALIGN__) == LL_ADC_DATA_ALIGN_LEFT) \ ) #define IS_LL_ADC_LOW_POWER(__LOW_POWER__) \ ( ((__LOW_POWER__) == LL_ADC_LP_MODE_NONE) \ || ((__LOW_POWER__) == LL_ADC_LP_AUTOWAIT) \ ) /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC group regular */ #if defined(STM32F303xE) || defined(STM32F398xx) #define IS_LL_ADC_REG_TRIG_SOURCE(__ADC_INSTANCE__, __REG_TRIG_SOURCE__) \ ((((__ADC_INSTANCE__) == ADC1) || ((__ADC_INSTANCE__) == ADC2)) \ ? ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH1_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH2_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH2_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_CH4_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE11_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM6_TRGO_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM15_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH4_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM20_TRG0_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM20_TRG02_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM20_CH1_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM20_CH2_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM20_CH3_ADC12) \ ) \ : \ ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH1_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH3_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_CH1_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO__ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE2_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_CH1_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO__ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO__ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM7_TRGO_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM15_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH1_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM20_TRG0_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM20_TRG02_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM20_CH1_ADC34) \ ) \ ) #elif defined(STM32F303xC) || defined(STM32F358xx) #define IS_LL_ADC_REG_TRIG_SOURCE(__ADC_INSTANCE__, __REG_TRIG_SOURCE__) \ ((((__ADC_INSTANCE__) == ADC1) || ((__ADC_INSTANCE__) == ADC2)) \ ? ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH1_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH2_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH2_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_CH4_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE11_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM6_TRGO_ADC12) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM15_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH4_ADC12) \ ) \ : \ ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH1_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH3_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_CH1_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO__ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE2_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_CH1_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO__ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO__ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM7_TRGO_ADC34) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM15_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH1_ADC34) \ ) \ ) #elif defined(STM32F303x8) || defined(STM32F328xx) #define IS_LL_ADC_REG_TRIG_SOURCE(__REG_TRIG_SOURCE__) \ ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH1) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_CH4) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE11) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM8_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM6_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM15_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH4) \ ) #elif defined(STM32F334x8) #define IS_LL_ADC_REG_TRIG_SOURCE(__REG_TRIG_SOURCE__) \ ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH1) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE11) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_HRTIM_TRG1) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_HRTIM_TRG3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM6_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM15_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH4) \ ) #elif defined(STM32F302xC) || defined(STM32F302xE) #define IS_LL_ADC_REG_TRIG_SOURCE(__REG_TRIG_SOURCE__) \ ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH1) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_CH4) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE11) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM6_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM15_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_CH4) \ ) #elif defined(STM32F301x8) || defined(STM32F302x8) || defined(STM32F318xx) #define IS_LL_ADC_REG_TRIG_SOURCE(__REG_TRIG_SOURCE__) \ ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH1) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE11) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM1_TRGO2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM6_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM15_TRGO) \ ) #endif #define IS_LL_ADC_REG_CONTINUOUS_MODE(__REG_CONTINUOUS_MODE__) \ ( ((__REG_CONTINUOUS_MODE__) == LL_ADC_REG_CONV_SINGLE) \ || ((__REG_CONTINUOUS_MODE__) == LL_ADC_REG_CONV_CONTINUOUS) \ ) #define IS_LL_ADC_REG_DMA_TRANSFER(__REG_DMA_TRANSFER__) \ ( ((__REG_DMA_TRANSFER__) == LL_ADC_REG_DMA_TRANSFER_NONE) \ || ((__REG_DMA_TRANSFER__) == LL_ADC_REG_DMA_TRANSFER_LIMITED) \ || ((__REG_DMA_TRANSFER__) == LL_ADC_REG_DMA_TRANSFER_UNLIMITED) \ ) #define IS_LL_ADC_REG_OVR_DATA_BEHAVIOR(__REG_OVR_DATA_BEHAVIOR__) \ ( ((__REG_OVR_DATA_BEHAVIOR__) == LL_ADC_REG_OVR_DATA_PRESERVED) \ || ((__REG_OVR_DATA_BEHAVIOR__) == LL_ADC_REG_OVR_DATA_OVERWRITTEN) \ ) #define IS_LL_ADC_REG_SEQ_SCAN_LENGTH(__REG_SEQ_SCAN_LENGTH__) \ ( ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_DISABLE) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_2RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_3RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_4RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_5RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_6RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_7RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_8RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_9RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_10RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_11RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_12RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_13RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_14RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_15RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_16RANKS) \ ) #define IS_LL_ADC_REG_SEQ_SCAN_DISCONT_MODE(__REG_SEQ_DISCONT_MODE__) \ ( ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_DISABLE) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_1RANK) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_2RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_3RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_4RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_5RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_6RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_7RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_8RANKS) \ ) /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC group injected */ #if defined(STM32F303xE) || defined(STM32F398xx) #define IS_LL_ADC_INJ_TRIG_SOURCE(__ADC_INSTANCE__, __INJ_TRIG_SOURCE__) \ ((((__ADC_INSTANCE__) == ADC1) || ((__ADC_INSTANCE__) == ADC2)) \ ? ( ((__INJ_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_CH1_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH4_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_TRGO_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_EXTI_LINE15_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_CH4_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH3_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH1_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM6_TRGO_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM15_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM20_TRGO_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM20_TRGO2_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM20_CH4_ADC12) \ ) \ : \ ( ((__INJ_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_CH3_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_CH2_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_CH4__ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_CH4_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_TRGO__ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH3_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO__ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM7_TRGO_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM15_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM20_TRG_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM20_TRG2_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM20_CH2) \ ) \ ) #elif defined(STM32F303xC) || defined(STM32F358xx) #define IS_LL_ADC_INJ_TRIG_SOURCE(__ADC_INSTANCE__, __INJ_TRIG_SOURCE__) \ ((((__ADC_INSTANCE__) == ADC1) || ((__ADC_INSTANCE__) == ADC2)) \ ? ( ((__INJ_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_CH1_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH4_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_TRGO_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_EXTI_LINE15_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_CH4_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH3_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH1_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM6_TRGO_ADC12) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM15_TRGO) \ ) \ : \ ( ((__INJ_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_CH3_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_CH2_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_CH4__ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_CH4_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_TRGO__ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH3_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO__ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM7_TRGO_ADC34) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM15_TRGO) \ ) \ ) #elif defined(STM32F303x8) || defined(STM32F328xx) #define IS_LL_ADC_INJ_TRIG_SOURCE(__INJ_TRIG_SOURCE__) \ ( ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_EXTI_LINE15) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM8_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH3) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM6_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM15_TRGO) \ ) #elif defined(STM32F334x8) #define IS_LL_ADC_INJ_TRIG_SOURCE(__INJ_TRIG_SOURCE__) \ ( ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_EXTI_LINE15) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_HRTIM_TRG2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_HRTIM_TRG4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH3) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM6_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM15_TRGO) \ ) #elif defined(STM32F302xC) || defined(STM32F302xE) #define IS_LL_ADC_INJ_TRIG_SOURCE(__INJ_TRIG_SOURCE__) \ ( ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_EXTI_LINE15) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH3) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM6_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM15_TRGO) \ ) #elif defined(STM32F301x8) || defined(STM32F302x8) || defined(STM32F318xx) #define IS_LL_ADC_INJ_TRIG_SOURCE(__INJ_TRIG_SOURCE__) \ ( ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_EXTI_LINE15) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM1_TRGO2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM6_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM15_TRGO) \ ) #endif #define IS_LL_ADC_INJ_TRIG_EXT_EDGE(__INJ_TRIG_EXT_EDGE__) \ ( ((__INJ_TRIG_EXT_EDGE__) == LL_ADC_INJ_TRIG_EXT_RISING) \ || ((__INJ_TRIG_EXT_EDGE__) == LL_ADC_INJ_TRIG_EXT_FALLING) \ || ((__INJ_TRIG_EXT_EDGE__) == LL_ADC_INJ_TRIG_EXT_RISINGFALLING) \ ) #define IS_LL_ADC_INJ_TRIG_AUTO(__INJ_TRIG_AUTO__) \ ( ((__INJ_TRIG_AUTO__) == LL_ADC_INJ_TRIG_INDEPENDENT) \ || ((__INJ_TRIG_AUTO__) == LL_ADC_INJ_TRIG_FROM_GRP_REGULAR) \ ) #define IS_LL_ADC_INJ_SEQ_SCAN_LENGTH(__INJ_SEQ_SCAN_LENGTH__) \ ( ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_DISABLE) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_2RANKS) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_3RANKS) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_4RANKS) \ ) #define IS_LL_ADC_INJ_SEQ_SCAN_DISCONT_MODE(__INJ_SEQ_DISCONT_MODE__) \ ( ((__INJ_SEQ_DISCONT_MODE__) == LL_ADC_INJ_SEQ_DISCONT_DISABLE) \ || ((__INJ_SEQ_DISCONT_MODE__) == LL_ADC_INJ_SEQ_DISCONT_1RANK) \ ) #if defined(ADC_MULTIMODE_SUPPORT) /* Check of parameters for configuration of ADC hierarchical scope: */ /* multimode. */ #define IS_LL_ADC_MULTI_MODE(__MULTI_MODE__) \ ( ((__MULTI_MODE__) == LL_ADC_MULTI_INDEPENDENT) \ || ((__MULTI_MODE__) == LL_ADC_MULTI_DUAL_REG_SIMULT) \ || ((__MULTI_MODE__) == LL_ADC_MULTI_DUAL_REG_INTERL) \ || ((__MULTI_MODE__) == LL_ADC_MULTI_DUAL_INJ_SIMULT) \ || ((__MULTI_MODE__) == LL_ADC_MULTI_DUAL_INJ_ALTERN) \ || ((__MULTI_MODE__) == LL_ADC_MULTI_DUAL_REG_SIM_INJ_SIM) \ || ((__MULTI_MODE__) == LL_ADC_MULTI_DUAL_REG_SIM_INJ_ALT) \ || ((__MULTI_MODE__) == LL_ADC_MULTI_DUAL_REG_INT_INJ_SIM) \ ) #define IS_LL_ADC_MULTI_DMA_TRANSFER(__MULTI_DMA_TRANSFER__) \ ( ((__MULTI_DMA_TRANSFER__) == LL_ADC_MULTI_REG_DMA_EACH_ADC) \ || ((__MULTI_DMA_TRANSFER__) == LL_ADC_MULTI_REG_DMA_LIMIT_RES12_10B) \ || ((__MULTI_DMA_TRANSFER__) == LL_ADC_MULTI_REG_DMA_LIMIT_RES8_6B) \ || ((__MULTI_DMA_TRANSFER__) == LL_ADC_MULTI_REG_DMA_UNLMT_RES12_10B) \ || ((__MULTI_DMA_TRANSFER__) == LL_ADC_MULTI_REG_DMA_UNLMT_RES8_6B) \ ) #define IS_LL_ADC_MULTI_TWOSMP_DELAY(__MULTI_TWOSMP_DELAY__) \ ( ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_1CYCLE) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_2CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_3CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_4CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_5CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_6CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_7CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_8CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_9CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_10CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_11CYCLES) \ || ((__MULTI_TWOSMP_DELAY__) == LL_ADC_MULTI_TWOSMP_DELAY_12CYCLES) \ ) #define IS_LL_ADC_MULTI_MASTER_SLAVE(__MULTI_MASTER_SLAVE__) \ ( ((__MULTI_MASTER_SLAVE__) == LL_ADC_MULTI_MASTER) \ || ((__MULTI_MASTER_SLAVE__) == LL_ADC_MULTI_SLAVE) \ || ((__MULTI_MASTER_SLAVE__) == LL_ADC_MULTI_MASTER_SLAVE) \ ) #endif /* ADC_MULTIMODE_SUPPORT */ /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup ADC_LL_Exported_Functions * @{ */ /** @addtogroup ADC_LL_EF_Init * @{ */ /** * @brief De-initialize registers of all ADC instances belonging to * the same ADC common instance to their default reset values. * @note This function is performing a hard reset, using high level * clock source RCC ADC reset. * Caution: On this STM32 serie, if several ADC instances are available * on the selected device, RCC ADC reset will reset * all ADC instances belonging to the common ADC instance. * To de-initialize only 1 ADC instance, use * function @ref LL_ADC_DeInit(). * @param ADCxy_COMMON ADC common instance * (can be set directly from CMSIS definition or by using helper macro @ref __LL_ADC_COMMON_INSTANCE() ) * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC common registers are de-initialized * - ERROR: not applicable */ ErrorStatus LL_ADC_CommonDeInit(ADC_Common_TypeDef *ADCxy_COMMON) { /* Check the parameters */ assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); /* Force reset of ADC clock (core clock) */ #if defined(ADC1) && defined(ADC2) && defined(ADC3) && defined(ADC4) if(ADCxy_COMMON == ADC12_COMMON) { LL_AHB1_GRP1_ForceReset (LL_AHB1_GRP1_PERIPH_ADC12); } else { LL_AHB1_GRP1_ForceReset (LL_AHB1_GRP1_PERIPH_ADC34); } #elif defined(ADC1) && defined(ADC2) LL_AHB1_GRP1_ForceReset (LL_AHB1_GRP1_PERIPH_ADC12); #elif defined(ADC1) LL_AHB1_GRP1_ForceReset (LL_AHB1_GRP1_PERIPH_ADC1); #endif /* Release reset of ADC clock (core clock) */ #if defined(ADC1) && defined(ADC2) && defined(ADC3) && defined(ADC4) if(ADCxy_COMMON == ADC12_COMMON) { LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_ADC12); } else { LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_ADC34); } #elif defined(ADC1) && defined(ADC2) LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_ADC12); #elif defined(ADC1) LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_ADC1); #endif return SUCCESS; } /** * @brief Initialize some features of ADC common parameters * (all ADC instances belonging to the same ADC common instance) * and multimode (for devices with several ADC instances available). * @note The setting of ADC common parameters is conditioned to * ADC instances state: * All ADC instances belonging to the same ADC common instance * must be disabled. * @param ADCxy_COMMON ADC common instance * (can be set directly from CMSIS definition or by using helper macro @ref __LL_ADC_COMMON_INSTANCE() ) * @param ADC_CommonInitStruct Pointer to a @ref LL_ADC_CommonInitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC common registers are initialized * - ERROR: ADC common registers are not initialized */ ErrorStatus LL_ADC_CommonInit(ADC_Common_TypeDef *ADCxy_COMMON, LL_ADC_CommonInitTypeDef *ADC_CommonInitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); assert_param(IS_LL_ADC_COMMON_CLOCK(ADC_CommonInitStruct->CommonClock)); #if defined(ADC_MULTIMODE_SUPPORT) assert_param(IS_LL_ADC_MULTI_MODE(ADC_CommonInitStruct->Multimode)); if(ADC_CommonInitStruct->Multimode != LL_ADC_MULTI_INDEPENDENT) { assert_param(IS_LL_ADC_MULTI_DMA_TRANSFER(ADC_CommonInitStruct->MultiDMATransfer)); assert_param(IS_LL_ADC_MULTI_TWOSMP_DELAY(ADC_CommonInitStruct->MultiTwoSamplingDelay)); } #endif /* ADC_MULTIMODE_SUPPORT */ /* Note: Hardware constraint (refer to description of functions */ /* "LL_ADC_SetCommonXXX()" and "LL_ADC_SetMultiXXX()"): */ /* On this STM32 serie, setting of these features is conditioned to */ /* ADC state: */ /* All ADC instances of the ADC common group must be disabled. */ if(__LL_ADC_IS_ENABLED_ALL_COMMON_INSTANCE(ADCxy_COMMON) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - common to several ADC */ /* (all ADC instances belonging to the same ADC common instance) */ /* - Set ADC clock (conversion clock) */ /* - multimode (if several ADC instances available on the */ /* selected device) */ /* - Set ADC multimode configuration */ /* - Set ADC multimode DMA transfer */ /* - Set ADC multimode: delay between 2 sampling phases */ #if defined(ADC_MULTIMODE_SUPPORT) if(ADC_CommonInitStruct->Multimode != LL_ADC_MULTI_INDEPENDENT) { MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_CKMODE | ADC_CCR_DUAL | ADC_CCR_MDMA | ADC_CCR_DELAY , ADC_CommonInitStruct->CommonClock | ADC_CommonInitStruct->Multimode | ADC_CommonInitStruct->MultiDMATransfer | ADC_CommonInitStruct->MultiTwoSamplingDelay ); } else { MODIFY_REG(ADCxy_COMMON->CCR, ADC_CCR_CKMODE | ADC_CCR_DUAL | ADC_CCR_MDMA | ADC_CCR_DELAY , ADC_CommonInitStruct->CommonClock | LL_ADC_MULTI_INDEPENDENT ); } #else LL_ADC_SetCommonClock(ADCxy_COMMON, ADC_CommonInitStruct->CommonClock); #endif } else { /* Initialization error: One or several ADC instances belonging to */ /* the same ADC common instance are not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_CommonInitTypeDef field to default value. * @param ADC_CommonInitStruct Pointer to a @ref LL_ADC_CommonInitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_CommonStructInit(LL_ADC_CommonInitTypeDef *ADC_CommonInitStruct) { /* Set ADC_CommonInitStruct fields to default values */ /* Set fields of ADC common */ /* (all ADC instances belonging to the same ADC common instance) */ ADC_CommonInitStruct->CommonClock = LL_ADC_CLOCK_SYNC_PCLK_DIV2; #if defined(ADC_MULTIMODE_SUPPORT) /* Set fields of ADC multimode */ ADC_CommonInitStruct->Multimode = LL_ADC_MULTI_INDEPENDENT; ADC_CommonInitStruct->MultiDMATransfer = LL_ADC_MULTI_REG_DMA_EACH_ADC; ADC_CommonInitStruct->MultiTwoSamplingDelay = LL_ADC_MULTI_TWOSMP_DELAY_1CYCLE; #endif /* ADC_MULTIMODE_SUPPORT */ } /** * @brief De-initialize registers of the selected ADC instance * to their default reset values. * @note To reset all ADC instances quickly (perform a hard reset), * use function @ref LL_ADC_CommonDeInit(). * @note If this functions returns error status, it means that ADC instance * is in an unknown state. * In this case, perform a hard reset using high level * clock source RCC ADC reset. * Caution: On this STM32 serie, if several ADC instances are available * on the selected device, RCC ADC reset will reset * all ADC instances belonging to the common ADC instance. * Refer to function @ref LL_ADC_CommonDeInit(). * @param ADCx ADC instance * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are de-initialized * - ERROR: ADC registers are not de-initialized */ ErrorStatus LL_ADC_DeInit(ADC_TypeDef *ADCx) { ErrorStatus status = SUCCESS; __IO uint32_t timeout_cpu_cycles = 0U; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); /* Disable ADC instance if not already disabled. */ if(LL_ADC_IsEnabled(ADCx) == 1U) { /* Set ADC group regular trigger source to SW start to ensure to not */ /* have an external trigger event occurring during the conversion stop */ /* ADC disable process. */ LL_ADC_REG_SetTriggerSource(ADCx, LL_ADC_REG_TRIG_SOFTWARE); /* Stop potential ADC conversion on going on ADC group regular. */ if(LL_ADC_REG_IsConversionOngoing(ADCx) != 0U) { if(LL_ADC_REG_IsStopConversionOngoing(ADCx) == 0U) { LL_ADC_REG_StopConversion(ADCx); } } /* Set ADC group injected trigger source to SW start to ensure to not */ /* have an external trigger event occurring during the conversion stop */ /* ADC disable process. */ LL_ADC_INJ_SetTriggerSource(ADCx, LL_ADC_INJ_TRIG_SOFTWARE); /* Stop potential ADC conversion on going on ADC group injected. */ if(LL_ADC_INJ_IsConversionOngoing(ADCx) != 0U) { if(LL_ADC_INJ_IsStopConversionOngoing(ADCx) == 0U) { LL_ADC_INJ_StopConversion(ADCx); } } /* Wait for ADC conversions are effectively stopped */ timeout_cpu_cycles = ADC_TIMEOUT_STOP_CONVERSION_CPU_CYCLES; while (( LL_ADC_REG_IsStopConversionOngoing(ADCx) | LL_ADC_INJ_IsStopConversionOngoing(ADCx)) == 1U) { if(timeout_cpu_cycles-- == 0U) { /* Time-out error */ status = ERROR; } } /* Flush group injected contexts queue (register JSQR): */ /* Note: Bit JQM must be set to empty the contexts queue (otherwise */ /* contexts queue is maintained with the last active context). */ LL_ADC_INJ_SetQueueMode(ADCx, LL_ADC_INJ_QUEUE_2CONTEXTS_END_EMPTY); /* Disable the ADC instance */ LL_ADC_Disable(ADCx); /* Wait for ADC instance is effectively disabled */ timeout_cpu_cycles = ADC_TIMEOUT_DISABLE_CPU_CYCLES; while (LL_ADC_IsDisableOngoing(ADCx) == 1U) { if(timeout_cpu_cycles-- == 0U) { /* Time-out error */ status = ERROR; } } } /* Check whether ADC state is compliant with expected state */ if(READ_BIT(ADCx->CR, ( ADC_CR_JADSTP | ADC_CR_ADSTP | ADC_CR_JADSTART | ADC_CR_ADSTART | ADC_CR_ADDIS | ADC_CR_ADEN ) ) == 0U) { /* ========== Reset ADC registers ========== */ /* Reset register IER */ CLEAR_BIT(ADCx->IER, ( LL_ADC_IT_ADRDY | LL_ADC_IT_EOC | LL_ADC_IT_EOS | LL_ADC_IT_OVR | LL_ADC_IT_EOSMP | LL_ADC_IT_JEOC | LL_ADC_IT_JEOS | LL_ADC_IT_JQOVF | LL_ADC_IT_AWD1 | LL_ADC_IT_AWD2 | LL_ADC_IT_AWD3 ) ); /* Reset register ISR */ SET_BIT(ADCx->ISR, ( LL_ADC_FLAG_ADRDY | LL_ADC_FLAG_EOC | LL_ADC_FLAG_EOS | LL_ADC_FLAG_OVR | LL_ADC_FLAG_EOSMP | LL_ADC_FLAG_JEOC | LL_ADC_FLAG_JEOS | LL_ADC_FLAG_JQOVF | LL_ADC_FLAG_AWD1 | LL_ADC_FLAG_AWD2 | LL_ADC_FLAG_AWD3 ) ); /* Reset register CR */ /* - Bits ADC_CR_JADSTP, ADC_CR_ADSTP, ADC_CR_JADSTART, ADC_CR_ADSTART, */ /* ADC_CR_ADCAL, ADC_CR_ADDIS, ADC_CR_ADEN are in */ /* access mode "read-set": no direct reset applicable. */ /* - Reset Calibration mode to default setting (single ended). */ /* - Disable ADC internal voltage regulator. */ /* Note: ADC internal voltage regulator disable is conditioned to */ /* ADC state disabled: already done above. */ /* Sequence to disable voltage regulator: */ /* 1. Set the intermediate state before moving the ADC voltage regulator */ /* to disable state. */ CLEAR_BIT(ADCx->CR, ADC_CR_ADVREGEN_1 | ADC_CR_ADVREGEN_0 | ADC_CR_ADCALDIF); /* 2. Set ADVREGEN bits to 0x10 */ SET_BIT(ADCx->CR, ADC_CR_ADVREGEN_1); /* Reset register CFGR */ CLEAR_BIT(ADCx->CFGR, ( ADC_CFGR_AWD1CH | ADC_CFGR_JAUTO | ADC_CFGR_JAWD1EN | ADC_CFGR_AWD1EN | ADC_CFGR_AWD1SGL | ADC_CFGR_JQM | ADC_CFGR_JDISCEN | ADC_CFGR_DISCNUM | ADC_CFGR_DISCEN | ADC_CFGR_AUTDLY | ADC_CFGR_CONT | ADC_CFGR_OVRMOD | ADC_CFGR_EXTEN | ADC_CFGR_EXTSEL | ADC_CFGR_ALIGN | ADC_CFGR_RES | ADC_CFGR_DMACFG | ADC_CFGR_DMAEN ) ); /* Reset register SMPR1 */ CLEAR_BIT(ADCx->SMPR1, ( ADC_SMPR1_SMP9 | ADC_SMPR1_SMP8 | ADC_SMPR1_SMP7 | ADC_SMPR1_SMP6 | ADC_SMPR1_SMP5 | ADC_SMPR1_SMP4 | ADC_SMPR1_SMP3 | ADC_SMPR1_SMP2 | ADC_SMPR1_SMP1) ); /* Reset register SMPR2 */ CLEAR_BIT(ADCx->SMPR2, ( ADC_SMPR2_SMP18 | ADC_SMPR2_SMP17 | ADC_SMPR2_SMP16 | ADC_SMPR2_SMP15 | ADC_SMPR2_SMP14 | ADC_SMPR2_SMP13 | ADC_SMPR2_SMP12 | ADC_SMPR2_SMP11 | ADC_SMPR2_SMP10) ); /* Reset register TR1 */ MODIFY_REG(ADCx->TR1, ADC_TR1_HT1 | ADC_TR1_LT1, ADC_TR1_HT1); /* Reset register TR2 */ MODIFY_REG(ADCx->TR2, ADC_TR2_HT2 | ADC_TR2_LT2, ADC_TR2_HT2); /* Reset register TR3 */ MODIFY_REG(ADCx->TR3, ADC_TR3_HT3 | ADC_TR3_LT3, ADC_TR3_HT3); /* Reset register SQR1 */ CLEAR_BIT(ADCx->SQR1, ( ADC_SQR1_SQ4 | ADC_SQR1_SQ3 | ADC_SQR1_SQ2 | ADC_SQR1_SQ1 | ADC_SQR1_L) ); /* Reset register SQR2 */ CLEAR_BIT(ADCx->SQR2, ( ADC_SQR2_SQ9 | ADC_SQR2_SQ8 | ADC_SQR2_SQ7 | ADC_SQR2_SQ6 | ADC_SQR2_SQ5) ); /* Reset register SQR3 */ CLEAR_BIT(ADCx->SQR3, ( ADC_SQR3_SQ14 | ADC_SQR3_SQ13 | ADC_SQR3_SQ12 | ADC_SQR3_SQ11 | ADC_SQR3_SQ10) ); /* Reset register SQR4 */ CLEAR_BIT(ADCx->SQR4, ADC_SQR4_SQ16 | ADC_SQR4_SQ15); /* Reset register JSQR */ CLEAR_BIT(ADCx->JSQR, ( ADC_JSQR_JL | ADC_JSQR_JEXTSEL | ADC_JSQR_JEXTEN | ADC_JSQR_JSQ4 | ADC_JSQR_JSQ3 | ADC_JSQR_JSQ2 | ADC_JSQR_JSQ1 ) ); /* Flush ADC group injected contexts queue */ SET_BIT(ADCx->CFGR, ADC_CFGR_JQM); CLEAR_BIT(ADCx->CFGR, ADC_CFGR_JQM); /* Reset register ISR bit JQOVF (set by previous operation on JSQR) */ SET_BIT(ADCx->ISR, LL_ADC_FLAG_JQOVF); /* Reset register DR */ /* Note: bits in access mode read only, no direct reset applicable */ /* Reset register OFR1 */ CLEAR_BIT(ADCx->OFR1, ADC_OFR1_OFFSET1_EN | ADC_OFR1_OFFSET1_CH | ADC_OFR1_OFFSET1); /* Reset register OFR2 */ CLEAR_BIT(ADCx->OFR2, ADC_OFR2_OFFSET2_EN | ADC_OFR2_OFFSET2_CH | ADC_OFR2_OFFSET2); /* Reset register OFR3 */ CLEAR_BIT(ADCx->OFR3, ADC_OFR3_OFFSET3_EN | ADC_OFR3_OFFSET3_CH | ADC_OFR3_OFFSET3); /* Reset register OFR4 */ CLEAR_BIT(ADCx->OFR4, ADC_OFR4_OFFSET4_EN | ADC_OFR4_OFFSET4_CH | ADC_OFR4_OFFSET4); /* Reset registers JDR1, JDR2, JDR3, JDR4 */ /* Note: bits in access mode read only, no direct reset applicable */ /* Reset register AWD2CR */ CLEAR_BIT(ADCx->AWD2CR, ADC_AWD2CR_AWD2CH); /* Reset register AWD3CR */ CLEAR_BIT(ADCx->AWD3CR, ADC_AWD3CR_AWD3CH); /* Reset register DIFSEL */ CLEAR_BIT(ADCx->DIFSEL, ADC_DIFSEL_DIFSEL); /* Reset register CALFACT */ CLEAR_BIT(ADCx->CALFACT, ADC_CALFACT_CALFACT_D | ADC_CALFACT_CALFACT_S); } else { /* ADC instance is in an unknown state */ /* Need to performing a hard reset of ADC instance, using high level */ /* clock source RCC ADC reset. */ /* Caution: On this STM32 serie, if several ADC instances are available */ /* on the selected device, RCC ADC reset will reset */ /* all ADC instances belonging to the common ADC instance. */ /* Caution: On this STM32 serie, if several ADC instances are available */ /* on the selected device, RCC ADC reset will reset */ /* all ADC instances belonging to the common ADC instance. */ status = ERROR; } return status; } /** * @brief Initialize some features of ADC instance. * @note These parameters have an impact on ADC scope: ADC instance. * Affects both group regular and group injected (availability * of ADC group injected depends on STM32 families). * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Instance . * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, some other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group regular or group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_REG_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @param ADCx ADC instance * @param ADC_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_Init(ADC_TypeDef *ADCx, LL_ADC_InitTypeDef *ADC_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); assert_param(IS_LL_ADC_RESOLUTION(ADC_InitStruct->Resolution)); assert_param(IS_LL_ADC_DATA_ALIGN(ADC_InitStruct->DataAlignment)); assert_param(IS_LL_ADC_LOW_POWER(ADC_InitStruct->LowPowerMode)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC instance */ /* - Set ADC data resolution */ /* - Set ADC conversion data alignment */ /* - Set ADC low power mode */ MODIFY_REG(ADCx->CFGR, ADC_CFGR_RES | ADC_CFGR_ALIGN | ADC_CFGR_AUTDLY , ADC_InitStruct->Resolution | ADC_InitStruct->DataAlignment | ADC_InitStruct->LowPowerMode ); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_InitTypeDef field to default value. * @param ADC_InitStruct Pointer to a @ref LL_ADC_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_StructInit(LL_ADC_InitTypeDef *ADC_InitStruct) { /* Set ADC_InitStruct fields to default values */ /* Set fields of ADC instance */ ADC_InitStruct->Resolution = LL_ADC_RESOLUTION_12B; ADC_InitStruct->DataAlignment = LL_ADC_DATA_ALIGN_RIGHT; ADC_InitStruct->LowPowerMode = LL_ADC_LP_MODE_NONE; } /** * @brief Initialize some features of ADC group regular. * @note These parameters have an impact on ADC scope: ADC group regular. * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Group_Regular * (functions with prefix "REG"). * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group regular or group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_REG_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @param ADCx ADC instance * @param ADC_REG_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_REG_Init(ADC_TypeDef *ADCx, LL_ADC_REG_InitTypeDef *ADC_REG_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); #if defined(ADC1) && defined(ADC2) && defined(ADC3) && defined(ADC4) assert_param(IS_LL_ADC_REG_TRIG_SOURCE(ADCx, ADC_REG_InitStruct->TriggerSource)); #else assert_param(IS_LL_ADC_REG_TRIG_SOURCE(ADC_REG_InitStruct->TriggerSource)); #endif assert_param(IS_LL_ADC_REG_SEQ_SCAN_LENGTH(ADC_REG_InitStruct->SequencerLength)); if(ADC_REG_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { assert_param(IS_LL_ADC_REG_SEQ_SCAN_DISCONT_MODE(ADC_REG_InitStruct->SequencerDiscont)); } assert_param(IS_LL_ADC_REG_CONTINUOUS_MODE(ADC_REG_InitStruct->ContinuousMode)); assert_param(IS_LL_ADC_REG_DMA_TRANSFER(ADC_REG_InitStruct->DMATransfer)); assert_param(IS_LL_ADC_REG_OVR_DATA_BEHAVIOR(ADC_REG_InitStruct->Overrun)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC group regular */ /* - Set ADC group regular trigger source */ /* - Set ADC group regular sequencer length */ /* - Set ADC group regular sequencer discontinuous mode */ /* - Set ADC group regular continuous mode */ /* - Set ADC group regular conversion data transfer: no transfer or */ /* transfer by DMA, and DMA requests mode */ /* - Set ADC group regular overrun behavior */ /* Note: On this STM32 serie, ADC trigger edge is set to value 0x0 by */ /* setting of trigger source to SW start. */ if(ADC_REG_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { MODIFY_REG(ADCx->CFGR, ADC_CFGR_EXTSEL | ADC_CFGR_EXTEN | ADC_CFGR_DISCEN | ADC_CFGR_DISCNUM | ADC_CFGR_CONT | ADC_CFGR_DMAEN | ADC_CFGR_DMACFG | ADC_CFGR_OVRMOD , ADC_REG_InitStruct->TriggerSource | ADC_REG_InitStruct->SequencerDiscont | ADC_REG_InitStruct->ContinuousMode | ADC_REG_InitStruct->DMATransfer | ADC_REG_InitStruct->Overrun ); } else { MODIFY_REG(ADCx->CFGR, ADC_CFGR_EXTSEL | ADC_CFGR_EXTEN | ADC_CFGR_DISCEN | ADC_CFGR_DISCNUM | ADC_CFGR_CONT | ADC_CFGR_DMAEN | ADC_CFGR_DMACFG | ADC_CFGR_OVRMOD , ADC_REG_InitStruct->TriggerSource | LL_ADC_REG_SEQ_DISCONT_DISABLE | ADC_REG_InitStruct->ContinuousMode | ADC_REG_InitStruct->DMATransfer | ADC_REG_InitStruct->Overrun ); } /* Set ADC group regular sequencer length and scan direction */ LL_ADC_REG_SetSequencerLength(ADCx, ADC_REG_InitStruct->SequencerLength); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_REG_InitTypeDef field to default value. * @param ADC_REG_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_REG_StructInit(LL_ADC_REG_InitTypeDef *ADC_REG_InitStruct) { /* Set ADC_REG_InitStruct fields to default values */ /* Set fields of ADC group regular */ /* Note: On this STM32 serie, ADC trigger edge is set to value 0x0 by */ /* setting of trigger source to SW start. */ ADC_REG_InitStruct->TriggerSource = LL_ADC_REG_TRIG_SOFTWARE; ADC_REG_InitStruct->SequencerLength = LL_ADC_REG_SEQ_SCAN_DISABLE; ADC_REG_InitStruct->SequencerDiscont = LL_ADC_REG_SEQ_DISCONT_DISABLE; ADC_REG_InitStruct->ContinuousMode = LL_ADC_REG_CONV_SINGLE; ADC_REG_InitStruct->DMATransfer = LL_ADC_REG_DMA_TRANSFER_NONE; ADC_REG_InitStruct->Overrun = LL_ADC_REG_OVR_DATA_OVERWRITTEN; } /** * @brief Initialize some features of ADC group injected. * @note These parameters have an impact on ADC scope: ADC group injected. * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Group_Regular * (functions with prefix "INJ"). * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_INJ_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @note Caution to ADC group injected contexts queue: On this STM32 serie, * using successively several times this function will appear has * having no effect. * This is due to ADC group injected contexts queue (this feature * cannot be disabled on this STM32 serie). * To set several features of ADC group injected, use * function @ref LL_ADC_INJ_ConfigQueueContext(). * @param ADCx ADC instance * @param ADC_INJ_InitStruct Pointer to a @ref LL_ADC_INJ_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_INJ_Init(ADC_TypeDef *ADCx, LL_ADC_INJ_InitTypeDef *ADC_INJ_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); #if defined(ADC1) && defined(ADC2) && defined(ADC3) && defined(ADC4) assert_param(IS_LL_ADC_INJ_TRIG_SOURCE(ADCx, ADC_INJ_InitStruct->TriggerSource)); #else assert_param(IS_LL_ADC_INJ_TRIG_SOURCE(ADC_INJ_InitStruct->TriggerSource)); #endif assert_param(IS_LL_ADC_INJ_SEQ_SCAN_LENGTH(ADC_INJ_InitStruct->SequencerLength)); if(ADC_INJ_InitStruct->SequencerLength != LL_ADC_INJ_SEQ_SCAN_DISABLE) { assert_param(IS_LL_ADC_INJ_SEQ_SCAN_DISCONT_MODE(ADC_INJ_InitStruct->SequencerDiscont)); } assert_param(IS_LL_ADC_INJ_TRIG_AUTO(ADC_INJ_InitStruct->TrigAuto)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC group injected */ /* - Set ADC group injected trigger source */ /* - Set ADC group injected sequencer length */ /* - Set ADC group injected sequencer discontinuous mode */ /* - Set ADC group injected conversion trigger: independent or */ /* from ADC group regular */ /* Note: On this STM32 serie, ADC trigger edge is set to value 0x0 by */ /* setting of trigger source to SW start. */ if(ADC_INJ_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { MODIFY_REG(ADCx->CFGR, ADC_CFGR_JDISCEN | ADC_CFGR_JAUTO , ADC_INJ_InitStruct->SequencerDiscont | ADC_INJ_InitStruct->TrigAuto ); } else { MODIFY_REG(ADCx->CFGR, ADC_CFGR_JDISCEN | ADC_CFGR_JAUTO , LL_ADC_REG_SEQ_DISCONT_DISABLE | ADC_INJ_InitStruct->TrigAuto ); } MODIFY_REG(ADCx->JSQR, ADC_JSQR_JEXTSEL | ADC_JSQR_JEXTEN | ADC_JSQR_JL , ADC_INJ_InitStruct->TriggerSource | ADC_INJ_InitStruct->SequencerLength ); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_INJ_InitTypeDef field to default value. * @param ADC_INJ_InitStruct Pointer to a @ref LL_ADC_INJ_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_INJ_StructInit(LL_ADC_INJ_InitTypeDef *ADC_INJ_InitStruct) { /* Set ADC_INJ_InitStruct fields to default values */ /* Set fields of ADC group injected */ ADC_INJ_InitStruct->TriggerSource = LL_ADC_INJ_TRIG_SOFTWARE; ADC_INJ_InitStruct->SequencerLength = LL_ADC_INJ_SEQ_SCAN_DISABLE; ADC_INJ_InitStruct->SequencerDiscont = LL_ADC_INJ_SEQ_DISCONT_DISABLE; ADC_INJ_InitStruct->TrigAuto = LL_ADC_INJ_TRIG_INDEPENDENT; } /** * @} */ /** * @} */ /** * @} */ #endif /* ADC1 || ADC2 || ADC3 || ADC4 */ #endif /* STM32F301x8 || STM32F302x8 || STM32F302xC || STM32F302xE || STM32F303x8 || STM32F303xC || STM32F303xE || STM32F318xx || STM32F328xx || STM32F334x8 || STM32F358xx || STM32F398xx */ #if defined (ADC1_V2_5) #if defined (ADC1) /** @addtogroup ADC_LL ADC * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /* Private macros ------------------------------------------------------------*/ /** @addtogroup ADC_LL_Private_Macros * @{ */ /* Check of parameters for configuration of ADC hierarchical scope: */ /* common to several ADC instances. */ /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC instance. */ #define IS_LL_ADC_DATA_ALIGN(__DATA_ALIGN__) \ ( ((__DATA_ALIGN__) == LL_ADC_DATA_ALIGN_RIGHT) \ || ((__DATA_ALIGN__) == LL_ADC_DATA_ALIGN_LEFT) ) #define IS_LL_ADC_SCAN_SELECTION(__SCAN_SELECTION__) \ ( ((__SCAN_SELECTION__) == LL_ADC_SEQ_SCAN_DISABLE) \ || ((__SCAN_SELECTION__) == LL_ADC_SEQ_SCAN_ENABLE) ) #define IS_LL_ADC_SEQ_SCAN_MODE(__SEQ_SCAN_MODE__) \ ( ((__SCAN_MODE__) == LL_ADC_SEQ_SCAN_DISABLE) \ || ((__SCAN_MODE__) == LL_ADC_SEQ_SCAN_ENABLE) ) /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC group regular */ #define IS_LL_ADC_REG_TRIG_SOURCE(__REG_TRIG_SOURCE__) \ ( ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_SOFTWARE) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM2_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM3_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM4_CH2) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM19_TRGO) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM19_CH3) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_TIM19_CH4) \ || ((__REG_TRIG_SOURCE__) == LL_ADC_REG_TRIG_EXT_EXTI_LINE11)) #define IS_LL_ADC_REG_CONTINUOUS_MODE(__REG_CONTINUOUS_MODE__) \ ( ((__REG_CONTINUOUS_MODE__) == LL_ADC_REG_CONV_SINGLE) \ || ((__REG_CONTINUOUS_MODE__) == LL_ADC_REG_CONV_CONTINUOUS)) #define IS_LL_ADC_REG_DMA_TRANSFER(__REG_DMA_TRANSFER__) \ ( ((__REG_DMA_TRANSFER__) == LL_ADC_REG_DMA_TRANSFER_NONE) \ || ((__REG_DMA_TRANSFER__) == LL_ADC_REG_DMA_TRANSFER_UNLIMITED)) #define IS_LL_ADC_REG_SEQ_SCAN_LENGTH(__REG_SEQ_SCAN_LENGTH__) \ ( ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_DISABLE) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_2RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_3RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_4RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_5RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_6RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_7RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_8RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_9RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_10RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_11RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_12RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_13RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_14RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_15RANKS) \ || ((__REG_SEQ_SCAN_LENGTH__) == LL_ADC_REG_SEQ_SCAN_ENABLE_16RANKS)) #define IS_LL_ADC_REG_SEQ_SCAN_DISCONT_MODE(__REG_SEQ_DISCONT_MODE__) \ ( ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_DISABLE) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_1RANK) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_2RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_3RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_4RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_5RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_6RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_7RANKS) \ || ((__REG_SEQ_DISCONT_MODE__) == LL_ADC_REG_SEQ_DISCONT_8RANKS) ) /* Check of parameters for configuration of ADC hierarchical scope: */ /* ADC group injected */ #define IS_LL_ADC_INJ_TRIG_SOURCE(__INJ_TRIG_SOURCE__) \ ( ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_SOFTWARE) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM2_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM3_CH4) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM4_TRGO) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM19_CH1) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_TIM19_CH2) \ || ((__INJ_TRIG_SOURCE__) == LL_ADC_INJ_TRIG_EXT_EXTI_LINE15)) #define IS_LL_ADC_INJ_TRIG_AUTO(__INJ_TRIG_AUTO__) \ ( ((__INJ_TRIG_AUTO__) == LL_ADC_INJ_TRIG_INDEPENDENT) \ || ((__INJ_TRIG_AUTO__) == LL_ADC_INJ_TRIG_FROM_GRP_REGULAR)) #define IS_LL_ADC_INJ_SEQ_SCAN_LENGTH(__INJ_SEQ_SCAN_LENGTH__) \ ( ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_DISABLE) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_2RANKS) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_3RANKS) \ || ((__INJ_SEQ_SCAN_LENGTH__) == LL_ADC_INJ_SEQ_SCAN_ENABLE_4RANKS)) #define IS_LL_ADC_INJ_SEQ_SCAN_DISCONT_MODE(__INJ_SEQ_DISCONT_MODE__) \ ( ((__INJ_SEQ_DISCONT_MODE__) == LL_ADC_INJ_SEQ_DISCONT_DISABLE) \ || ((__INJ_SEQ_DISCONT_MODE__) == LL_ADC_INJ_SEQ_DISCONT_1RANK) ) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup ADC_LL_Exported_Functions * @{ */ /** @addtogroup ADC_LL_EF_Init * @{ */ /** * @brief De-initialize registers of all ADC instances belonging to * the same ADC common instance to their default reset values. * @param ADCxy_COMMON ADC common instance * (can be set directly from CMSIS definition or by using helper macro @ref __LL_ADC_COMMON_INSTANCE() ) * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC common registers are de-initialized * - ERROR: not applicable */ ErrorStatus LL_ADC_CommonDeInit(ADC_Common_TypeDef *ADCxy_COMMON) { /* Check the parameters */ assert_param(IS_ADC_COMMON_INSTANCE(ADCxy_COMMON)); /* Force reset of ADC clock (core clock) */ LL_APB2_GRP1_ForceReset (LL_APB2_GRP1_PERIPH_ADC1); /* Release reset of ADC clock (core clock) */ LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_ADC1); return SUCCESS; } /** * @brief De-initialize registers of the selected ADC instance * to their default reset values. * @note To reset all ADC instances quickly (perform a hard reset), * use function @ref LL_ADC_CommonDeInit(). * @param ADCx ADC instance * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are de-initialized * - ERROR: ADC registers are not de-initialized */ ErrorStatus LL_ADC_DeInit(ADC_TypeDef *ADCx) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); /* Disable ADC instance if not already disabled. */ if(LL_ADC_IsEnabled(ADCx) == 1U) { /* Set ADC group regular trigger source to SW start to ensure to not */ /* have an external trigger event occurring during the conversion stop */ /* ADC disable process. */ LL_ADC_REG_SetTriggerSource(ADCx, LL_ADC_REG_TRIG_SOFTWARE); /* Set ADC group injected trigger source to SW start to ensure to not */ /* have an external trigger event occurring during the conversion stop */ /* ADC disable process. */ LL_ADC_INJ_SetTriggerSource(ADCx, LL_ADC_INJ_TRIG_SOFTWARE); /* Disable the ADC instance */ LL_ADC_Disable(ADCx); } /* Check whether ADC state is compliant with expected state */ /* (hardware requirements of bits state to reset registers below) */ if(READ_BIT(ADCx->CR2, ADC_CR2_ADON) == 0U) { /* ========== Reset ADC registers ========== */ /* Reset register SR */ CLEAR_BIT(ADCx->SR, ( LL_ADC_FLAG_STRT | LL_ADC_FLAG_JSTRT | LL_ADC_FLAG_EOS | LL_ADC_FLAG_JEOS | LL_ADC_FLAG_AWD1 ) ); /* Reset register CR1 */ CLEAR_BIT(ADCx->CR1, ( ADC_CR1_AWDEN | ADC_CR1_JAWDEN | ADC_CR1_DISCNUM | ADC_CR1_JDISCEN | ADC_CR1_DISCEN | ADC_CR1_JAUTO | ADC_CR1_AWDSGL | ADC_CR1_SCAN | ADC_CR1_JEOCIE | ADC_CR1_AWDIE | ADC_CR1_EOCIE | ADC_CR1_AWDCH ) ); /* Reset register CR2 */ CLEAR_BIT(ADCx->CR2, ( ADC_CR2_TSVREFE | ADC_CR2_SWSTART | ADC_CR2_EXTTRIG | ADC_CR2_EXTSEL | ADC_CR2_JSWSTART | ADC_CR2_JEXTTRIG | ADC_CR2_JEXTSEL | ADC_CR2_ALIGN | ADC_CR2_DMA | ADC_CR2_RSTCAL | ADC_CR2_CAL | ADC_CR2_CONT | ADC_CR2_ADON ) ); /* Reset register SMPR1 */ CLEAR_BIT(ADCx->SMPR1, ( ADC_SMPR1_SMP17 | ADC_SMPR1_SMP16 | ADC_SMPR1_SMP15 | ADC_SMPR1_SMP14 | ADC_SMPR1_SMP13 | ADC_SMPR1_SMP12 | ADC_SMPR1_SMP11 | ADC_SMPR1_SMP10) ); /* Reset register SMPR2 */ CLEAR_BIT(ADCx->SMPR2, ( ADC_SMPR2_SMP9 | ADC_SMPR2_SMP8 | ADC_SMPR2_SMP7 | ADC_SMPR2_SMP6 | ADC_SMPR2_SMP5 | ADC_SMPR2_SMP4 | ADC_SMPR2_SMP3 | ADC_SMPR2_SMP2 | ADC_SMPR2_SMP1 | ADC_SMPR2_SMP0) ); /* Reset register JOFR1 */ CLEAR_BIT(ADCx->JOFR1, ADC_JOFR1_JOFFSET1); /* Reset register JOFR2 */ CLEAR_BIT(ADCx->JOFR2, ADC_JOFR2_JOFFSET2); /* Reset register JOFR3 */ CLEAR_BIT(ADCx->JOFR3, ADC_JOFR3_JOFFSET3); /* Reset register JOFR4 */ CLEAR_BIT(ADCx->JOFR4, ADC_JOFR4_JOFFSET4); /* Reset register HTR */ SET_BIT(ADCx->HTR, ADC_HTR_HT); /* Reset register LTR */ CLEAR_BIT(ADCx->LTR, ADC_LTR_LT); /* Reset register SQR1 */ CLEAR_BIT(ADCx->SQR1, ( ADC_SQR1_L | ADC_SQR1_SQ16 | ADC_SQR1_SQ15 | ADC_SQR1_SQ14 | ADC_SQR1_SQ13) ); /* Reset register SQR2 */ CLEAR_BIT(ADCx->SQR2, ( ADC_SQR2_SQ12 | ADC_SQR2_SQ11 | ADC_SQR2_SQ10 | ADC_SQR2_SQ9 | ADC_SQR2_SQ8 | ADC_SQR2_SQ7) ); /* Reset register JSQR */ CLEAR_BIT(ADCx->JSQR, ( ADC_JSQR_JL | ADC_JSQR_JSQ4 | ADC_JSQR_JSQ3 | ADC_JSQR_JSQ2 | ADC_JSQR_JSQ1 ) ); /* Reset register DR */ /* bits in access mode read only, no direct reset applicable */ /* Reset registers JDR1, JDR2, JDR3, JDR4 */ /* bits in access mode read only, no direct reset applicable */ } return status; } /** * @brief Initialize some features of ADC instance. * @note These parameters have an impact on ADC scope: ADC instance. * Affects both group regular and group injected (availability * of ADC group injected depends on STM32 families). * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Instance . * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, some other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group regular or group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_REG_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @param ADCx ADC instance * @param ADC_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_Init(ADC_TypeDef *ADCx, LL_ADC_InitTypeDef *ADC_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); assert_param(IS_LL_ADC_DATA_ALIGN(ADC_InitStruct->DataAlignment)); assert_param(IS_LL_ADC_SCAN_SELECTION(ADC_InitStruct->SequencersScanMode)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC instance */ /* - Set ADC conversion data alignment */ MODIFY_REG(ADCx->CR1, ADC_CR1_SCAN , ADC_InitStruct->SequencersScanMode ); MODIFY_REG(ADCx->CR2, ADC_CR2_ALIGN , ADC_InitStruct->DataAlignment ); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_InitTypeDef field to default value. * @param ADC_InitStruct Pointer to a @ref LL_ADC_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_StructInit(LL_ADC_InitTypeDef *ADC_InitStruct) { /* Set ADC_InitStruct fields to default values */ /* Set fields of ADC instance */ ADC_InitStruct->DataAlignment = LL_ADC_DATA_ALIGN_RIGHT; /* Enable scan mode to have a generic behavior with ADC of other */ /* STM32 families, without this setting available: */ /* ADC group regular sequencer and ADC group injected sequencer depend */ /* only of their own configuration. */ ADC_InitStruct->SequencersScanMode = LL_ADC_SEQ_SCAN_ENABLE; } /** * @brief Initialize some features of ADC group regular. * @note These parameters have an impact on ADC scope: ADC group regular. * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Group_Regular * (functions with prefix "REG"). * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group regular or group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_REG_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @param ADCx ADC instance * @param ADC_REG_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_REG_Init(ADC_TypeDef *ADCx, LL_ADC_REG_InitTypeDef *ADC_REG_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); assert_param(IS_LL_ADC_REG_TRIG_SOURCE(ADC_REG_InitStruct->TriggerSource)); assert_param(IS_LL_ADC_REG_SEQ_SCAN_LENGTH(ADC_REG_InitStruct->SequencerLength)); if(ADC_REG_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { assert_param(IS_LL_ADC_REG_SEQ_SCAN_DISCONT_MODE(ADC_REG_InitStruct->SequencerDiscont)); } assert_param(IS_LL_ADC_REG_CONTINUOUS_MODE(ADC_REG_InitStruct->ContinuousMode)); assert_param(IS_LL_ADC_REG_DMA_TRANSFER(ADC_REG_InitStruct->DMATransfer)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC group regular */ /* - Set ADC group regular trigger source */ /* - Set ADC group regular sequencer length */ /* - Set ADC group regular sequencer discontinuous mode */ /* - Set ADC group regular continuous mode */ /* - Set ADC group regular conversion data transfer: no transfer or */ /* transfer by DMA, and DMA requests mode */ /* Note: On this STM32 serie, ADC trigger edge is set when starting */ /* ADC conversion. */ /* Refer to function @ref LL_ADC_REG_StartConversionExtTrig(). */ if(ADC_REG_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { MODIFY_REG(ADCx->CR1, ADC_CR1_DISCEN | ADC_CR1_DISCNUM , ADC_REG_InitStruct->SequencerLength | ADC_REG_InitStruct->SequencerDiscont ); } else { MODIFY_REG(ADCx->CR1, ADC_CR1_DISCEN | ADC_CR1_DISCNUM , ADC_REG_InitStruct->SequencerLength | LL_ADC_REG_SEQ_DISCONT_DISABLE ); } MODIFY_REG(ADCx->CR2, ADC_CR2_EXTSEL | ADC_CR2_CONT | ADC_CR2_DMA , ADC_REG_InitStruct->TriggerSource | ADC_REG_InitStruct->ContinuousMode | ADC_REG_InitStruct->DMATransfer ); /* Set ADC group regular sequencer length and scan direction */ /* Note: Hardware constraint (refer to description of this function): */ /* Note: If ADC instance feature scan mode is disabled */ /* (refer to ADC instance initialization structure */ /* parameter @ref SequencersScanMode */ /* or function @ref LL_ADC_SetSequencersScanMode() ), */ /* this parameter is discarded. */ LL_ADC_REG_SetSequencerLength(ADCx, ADC_REG_InitStruct->SequencerLength); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_REG_InitTypeDef field to default value. * @param ADC_REG_InitStruct Pointer to a @ref LL_ADC_REG_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_REG_StructInit(LL_ADC_REG_InitTypeDef *ADC_REG_InitStruct) { /* Set ADC_REG_InitStruct fields to default values */ /* Set fields of ADC group regular */ /* Note: On this STM32 serie, ADC trigger edge is set when starting */ /* ADC conversion. */ /* Refer to function @ref LL_ADC_REG_StartConversionExtTrig(). */ ADC_REG_InitStruct->TriggerSource = LL_ADC_REG_TRIG_SOFTWARE; ADC_REG_InitStruct->SequencerLength = LL_ADC_REG_SEQ_SCAN_DISABLE; ADC_REG_InitStruct->SequencerDiscont = LL_ADC_REG_SEQ_DISCONT_DISABLE; ADC_REG_InitStruct->ContinuousMode = LL_ADC_REG_CONV_SINGLE; ADC_REG_InitStruct->DMATransfer = LL_ADC_REG_DMA_TRANSFER_NONE; } /** * @brief Initialize some features of ADC group injected. * @note These parameters have an impact on ADC scope: ADC group injected. * Refer to corresponding unitary functions into * @ref ADC_LL_EF_Configuration_ADC_Group_Regular * (functions with prefix "INJ"). * @note The setting of these parameters by function @ref LL_ADC_Init() * is conditioned to ADC state: * ADC instance must be disabled. * This condition is applied to all ADC features, for efficiency * and compatibility over all STM32 families. However, the different * features can be set under different ADC state conditions * (setting possible with ADC enabled without conversion on going, * ADC enabled with conversion on going, ...) * Each feature can be updated afterwards with a unitary function * and potentially with ADC in a different state than disabled, * refer to description of each function for setting * conditioned to ADC state. * @note After using this function, other features must be configured * using LL unitary functions. * The minimum configuration remaining to be done is: * - Set ADC group injected sequencer: * map channel on the selected sequencer rank. * Refer to function @ref LL_ADC_INJ_SetSequencerRanks(). * - Set ADC channel sampling time * Refer to function LL_ADC_SetChannelSamplingTime(); * @param ADCx ADC instance * @param ADC_INJ_InitStruct Pointer to a @ref LL_ADC_INJ_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: ADC registers are initialized * - ERROR: ADC registers are not initialized */ ErrorStatus LL_ADC_INJ_Init(ADC_TypeDef *ADCx, LL_ADC_INJ_InitTypeDef *ADC_INJ_InitStruct) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(ADCx)); assert_param(IS_LL_ADC_INJ_TRIG_SOURCE(ADC_INJ_InitStruct->TriggerSource)); assert_param(IS_LL_ADC_INJ_SEQ_SCAN_LENGTH(ADC_INJ_InitStruct->SequencerLength)); if(ADC_INJ_InitStruct->SequencerLength != LL_ADC_INJ_SEQ_SCAN_DISABLE) { assert_param(IS_LL_ADC_INJ_SEQ_SCAN_DISCONT_MODE(ADC_INJ_InitStruct->SequencerDiscont)); } assert_param(IS_LL_ADC_INJ_TRIG_AUTO(ADC_INJ_InitStruct->TrigAuto)); /* Note: Hardware constraint (refer to description of this function): */ /* ADC instance must be disabled. */ if(LL_ADC_IsEnabled(ADCx) == 0U) { /* Configuration of ADC hierarchical scope: */ /* - ADC group injected */ /* - Set ADC group injected trigger source */ /* - Set ADC group injected sequencer length */ /* - Set ADC group injected sequencer discontinuous mode */ /* - Set ADC group injected conversion trigger: independent or */ /* from ADC group regular */ /* Note: On this STM32 serie, ADC trigger edge is set when starting */ /* ADC conversion. */ /* Refer to function @ref LL_ADC_INJ_StartConversionExtTrig(). */ if(ADC_INJ_InitStruct->SequencerLength != LL_ADC_REG_SEQ_SCAN_DISABLE) { MODIFY_REG(ADCx->CR1, ADC_CR1_JDISCEN | ADC_CR1_JAUTO , ADC_INJ_InitStruct->SequencerDiscont | ADC_INJ_InitStruct->TrigAuto ); } else { MODIFY_REG(ADCx->CR1, ADC_CR1_JDISCEN | ADC_CR1_JAUTO , LL_ADC_REG_SEQ_DISCONT_DISABLE | ADC_INJ_InitStruct->TrigAuto ); } MODIFY_REG(ADCx->CR2, ADC_CR2_JEXTSEL , ADC_INJ_InitStruct->TriggerSource ); /* Note: Hardware constraint (refer to description of this function): */ /* Note: If ADC instance feature scan mode is disabled */ /* (refer to ADC instance initialization structure */ /* parameter @ref SequencersScanMode */ /* or function @ref LL_ADC_SetSequencersScanMode() ), */ /* this parameter is discarded. */ LL_ADC_INJ_SetSequencerLength(ADCx, ADC_INJ_InitStruct->SequencerLength); } else { /* Initialization error: ADC instance is not disabled. */ status = ERROR; } return status; } /** * @brief Set each @ref LL_ADC_INJ_InitTypeDef field to default value. * @param ADC_INJ_InitStruct Pointer to a @ref LL_ADC_INJ_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_ADC_INJ_StructInit(LL_ADC_INJ_InitTypeDef *ADC_INJ_InitStruct) { /* Set ADC_INJ_InitStruct fields to default values */ /* Set fields of ADC group injected */ ADC_INJ_InitStruct->TriggerSource = LL_ADC_INJ_TRIG_SOFTWARE; ADC_INJ_InitStruct->SequencerLength = LL_ADC_INJ_SEQ_SCAN_DISABLE; ADC_INJ_InitStruct->SequencerDiscont = LL_ADC_INJ_SEQ_DISCONT_DISABLE; ADC_INJ_InitStruct->TrigAuto = LL_ADC_INJ_TRIG_INDEPENDENT; } /** * @} */ /** * @} */ /** * @} */ #endif /* ADC1 */ #endif /* STM32F373xC || STM32F378xx */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
the_stack_data/109943.c
#include <stdio.h> #include <string.h> #include <ctype.h> #include <stdlib.h> #include <math.h> struct Node { char *val; int freq; struct Node *lch,*rch; }; struct Node *root=NULL; void ins(const char *str) { if(root==NULL) { struct Node *tmp; tmp=malloc(sizeof(struct Node)); int n=strlen(str); tmp->val=malloc(sizeof(char)*(n+1)); strcpy(tmp->val,str); tmp->freq=1; tmp->lch=NULL; tmp->rch=NULL; root=tmp; } else { struct Node *p=root,*q=NULL; while(p) { q=p; int cmp=strcmp(str,p->val); if(cmp<0) { p=p->lch; } else if(cmp>0) { p=p->rch; } else { p->freq++; return; } } struct Node *tmp; tmp=malloc(sizeof(struct Node)); int n=strlen(str); tmp->val=malloc(sizeof(char)*(n+1)); strcpy(tmp->val,str); tmp->freq=1; tmp->lch=NULL; tmp->rch=NULL; if(strcmp(str,q->val)<0) { q->lch=tmp; } else { q->rch=tmp; } } } char buf[1024]; int getword() { int ch=getchar(); while(!isalpha(ch)) { if(ch==EOF) return 0; ch=getchar(); } int p=0; while(isalpha(ch)) { buf[p++]=tolower(ch); ch=getchar(); } buf[p]=0; return 1; } void dump(struct Node* u) { if(u) { dump(u->lch); printf("%s %d\n", u->val,u->freq); dump(u->rch); } } int main() { //freopen("article.txt","r",stdin); while(getword()) { //printf("$$%s$$\n",buf); ins(buf); } printf("%s ",root->val); if(root->rch) { printf("%s ",root->rch->val); } if(root->rch && root->rch->rch) { printf("%s",root->rch->rch->val); } printf("\n"); dump(root); return 0; }
the_stack_data/20451442.c
/* $Id: fitsmd5.c,v 1.7 2006/02/17 10:26:07 yjung Exp $ * * This file is part of the ESO QFITS Library * Copyright (C) 2001-2004 European Southern Observatory * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* * $Author: yjung $ * $Date: 2006/02/17 10:26:07 $ * $Revision: 1.7 $ * $Name: qfits-6_2_0 $ */ /*----------------------------------------------------------------------------- Includes -----------------------------------------------------------------------------*/ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <sys/mman.h> /*----------------------------------------------------------------------------- Support for gzipped files if linked against zlib. -----------------------------------------------------------------------------*/ #if HAVE_ZLIB #include "zlib.h" #define FILE gzFile #define fopen gzopen #define fclose gzclose #define fread(b,s,n,f) gzread(f,b,n*s) #define GZIP_MAGIC1 0x1f #define GZIP_MAGIC2 0x8b static is_gzipped(char * filename) { FILE * in ; unsigned char b1, b2 ; int r1, r2 ; if ((in=fopen(filename, "r"))==NULL) { return -1 ; } r1 = fread(&b1, 1, 1, in); r2 = fread(&b2, 1, 1, in); fclose(in); if (r1!=1 || r2!=1) return 0 ; if ((int)b1!=GZIP_MAGIC1 || (int)b2!=GZIP_MAGIC2) { return 0 ; } return 1 ; } #endif /*----------------------------------------------------------------------------- Define -----------------------------------------------------------------------------*/ /* Definitions related to FITS */ #define FITSLINESZ 80 /* a FITS line is 80 chars */ #define FITSCARDS 36 /* 36 cards per block */ #define FITSBLOCKSZ (FITSLINESZ*FITSCARDS) /* FITS block size=2880 */ /* Definitions related to MD5 */ #define MD5HASHSZ 32 /* an MD5 key length is 32 bytes = 128 bits */ /* FITS keyword used to store MD5 key */ #define FITSMD5KEY "DATAMD5 " /*----------------------------------------------------------------------------- New types -----------------------------------------------------------------------------*/ /* The following types defined for MD5 computation only */ typedef unsigned int word32 ; struct MD5Context { word32 buf[4]; word32 bits[2]; unsigned char in[64]; }; /*----------------------------------------------------------------------------- Private function prototypes -----------------------------------------------------------------------------*/ static void MD5Init(struct MD5Context *); static void MD5Update(struct MD5Context *, unsigned char *, unsigned); static void MD5Final(unsigned char *, struct MD5Context *); static void MD5Transform(word32 *, word32 *); static void byteReverse(unsigned char *, unsigned); static int fits_md5_check(char *, int); static char * fits_pretty_string(char *); static char * fits_getvalue(char *); static void usage(void); /*----------------------------------------------------------------------------- Global variables -----------------------------------------------------------------------------*/ static char * pname = NULL ; static char prog_desc[] = "Compute/Update the DATAMD5 keyword/value" ; static int silent_process=0 ; /*----------------------------------------------------------------------------- MD5 function code -----------------------------------------------------------------------------*/ /* Reverse bytes in a 32-bit word. Harmless on little endian machines */ static void byteReverse(unsigned char *buf, unsigned longs) { word32 t; do { t = (word32) ((unsigned) buf[3] << 8 | buf[2]) << 16 | ((unsigned) buf[1] << 8 | buf[0]); *(word32 *) buf = t; buf += 4; } while (--longs); } /* Start MD5 accumulation. Set bit count to 0 and buffer to MD5 init. const. */ static void MD5Init(struct MD5Context *ctx) { ctx->buf[0] = 0x67452301; ctx->buf[1] = 0xefcdab89; ctx->buf[2] = 0x98badcfe; ctx->buf[3] = 0x10325476; ctx->bits[0] = 0; ctx->bits[1] = 0; } /* Update to reflect the concatenation of another buffer full of bytes. */ static void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len) { register word32 t; /* Update bitcount */ t = ctx->bits[0]; if ((ctx->bits[0] = t + ((word32) len << 3)) < t) ctx->bits[1]++; /* Carry from low to high */ ctx->bits[1] += len >> 29; t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ /* Handle any leading odd-sized chunks */ if (t) { unsigned char *p = (unsigned char *) ctx->in + t; t = 64 - t; if (len < t) { memmove(p, buf, len); return; } memmove(p, buf, t); byteReverse(ctx->in, 16); MD5Transform(ctx->buf, (word32 *) ctx->in); buf += t; len -= t; } /* Process data in 64-byte chunks */ while (len >= 64) { memmove(ctx->in, buf, 64); byteReverse(ctx->in, 16); MD5Transform(ctx->buf, (word32 *) ctx->in); buf += 64; len -= 64; } /* Handle any remaining bytes of data. */ memmove(ctx->in, buf, len); } /* Final wrapup - pad to 64-byte boundary with the bit pattern 1 0* */ /* (64-bit count of bits processed, MSB-first) */ static void MD5Final(unsigned char digest[16], struct MD5Context *ctx) { unsigned int count ; unsigned char * p ; /* Compute number of bytes mod 64 */ count = (ctx->bits[0] >> 3) & 0x3F; /* Set the first char of padding to 0x80. This is safe since there is always at least one byte free */ p = ctx->in + count; *p++ = 0x80; /* Bytes of padding needed to make 64 bytes */ count = 64 - 1 - count; /* Pad out to 56 mod 64 */ if (count < 8) { /* Two lots of padding: Pad the first block to 64 bytes */ memset(p, 0, count); byteReverse(ctx->in, 16); MD5Transform(ctx->buf, (word32 *) ctx->in); /* Now fill the next block with 56 bytes */ memset(ctx->in, 0, 56); } else { /* Pad block to 56 bytes */ memset(p, 0, count - 8); } byteReverse(ctx->in, 14); /* Append length in bits and transform */ ((word32 *) ctx->in)[14] = ctx->bits[0]; ((word32 *) ctx->in)[15] = ctx->bits[1]; MD5Transform(ctx->buf, (word32 *) ctx->in); byteReverse((unsigned char *) ctx->buf, 4); memmove(digest, ctx->buf, 16); memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */ } /* The four core functions - F1 is optimized somewhat */ /* #define F1(x, y, z) (x & y | ~x & z) */ #define F1(x, y, z) (z ^ (x & (y ^ z))) #define F2(x, y, z) F1(z, x, y) #define F3(x, y, z) (x ^ y ^ z) #define F4(x, y, z) (y ^ (x | ~z)) /* This is the central step in the MD5 algorithm. */ #define MD5STEP(f, w, x, y, z, data, s) \ ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) /* * The core of the MD5 algorithm, this alters an existing MD5 hash to * reflect the addition of 16 longwords of new data. MD5Update blocks * the data and converts bytes into longwords for this routine. */ static void MD5Transform(word32 buf[4], word32 in[16]) { register word32 a, b, c, d; a = buf[0]; b = buf[1]; c = buf[2]; d = buf[3]; MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7); MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12); MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17); MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22); MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7); MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12); MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17); MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22); MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14); MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9); MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9); MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14); MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20); MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5); MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9); MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14); MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20); MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11); MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16); MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23); MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4); MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11); MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16); MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23); MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6); MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10); MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15); MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21); MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6); MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15); MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21); MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6); MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10); MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15); MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21); MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6); MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10); MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15); MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21); buf[0] += a; buf[1] += b; buf[2] += c; buf[3] += d; } /*----------------------------------------------------------------------------- FITS-related functions -----------------------------------------------------------------------------*/ /* Pretty-print a FITS string value */ static char * fits_pretty_string(char * s) { static char pretty[FITSLINESZ+1] ; int i,j ; if (s==NULL) return NULL ; pretty[0] = (char)0 ; if (s[0]!='\'') return s ; /* skip first quote */ i=1 ; j=0 ; /* trim left-side blanks */ while (s[i]==' ') { if (i==(int)strlen(s)) break ; i++ ; } if (i>=(int)(strlen(s)-1)) return pretty ; /* copy string, changing double quotes to single ones */ while (i<(int)strlen(s)) { if (s[i]=='\'') i++ ; pretty[j]=s[i]; i++ ; j++ ; } /* NULL-terminate the pretty string */ pretty[j+1]=(char)0; /* trim right-side blanks */ j = (int)strlen(pretty)-1; while (pretty[j]==' ') j-- ; pretty[j+1]=(char)0; return pretty; } /* Get the FITS value in a FITS card */ static char * fits_getvalue(char * line) { static char value[FITSLINESZ+1] ; int from, to ; int inq ; int i ; if (line==NULL) return NULL ; memset(value, 0, FITSLINESZ+1); /* Get past the keyword */ i=0 ; while (line[i]!='=' && i<FITSLINESZ) i++ ; if (i>FITSLINESZ) return NULL ; i++ ; while (line[i]==' ' && i<FITSLINESZ) i++ ; if (i>FITSLINESZ) return NULL ; from=i; /* Now in the value section */ /* Look for the first slash '/' outside of a string */ inq = 0 ; while (i<FITSLINESZ) { if (line[i]=='\'') inq=!inq ; if (line[i]=='/') if (!inq) break ; i++; } i-- ; /* Backtrack on blanks */ while (line[i]==' ' && i>=0) i-- ; if (i<0) return NULL ; to=i ; if (to<from) return NULL ; /* Copy relevant characters into output buffer */ strncpy(value, line+from, to-from+1); /* Null-terminate the string */ value[to-from+1] = (char)0; /* * Make it pretty: remove head and tail quote, change double * quotes to simple ones. */ strcpy(value, fits_pretty_string(value)); return value ; } /* Replace the MD5 card in the input header */ static int fits_replace_card(char * filename, int off_md5, char * datamd5) { char * buf ; int fd ; struct stat sta ; char card[FITSLINESZ]; int i ; int err ; /* Get file size */ if (stat(filename, &sta)==-1) { fprintf(stderr, "%s: cannot stat file [%s]: no update done\n", pname, filename); return 1 ; } /* Open file */ fd = open(filename, O_RDWR); if (fd==-1) { fprintf(stderr, "%s: cannot open file [%s] for modification: no update done\n", pname, filename); return 1 ; } /* Memory-map the file */ buf = (char*)mmap(0, sta.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if (buf==(char*)-1 || buf==NULL) { perror("mmap"); close(fd); return 1 ; } /* sprintf should be safe, the MD5 signature size is 32 chars */ sprintf(card, "%s= '%s' / data MD5 signature", FITSMD5KEY, datamd5); i=FITSLINESZ-1 ; while (card[i]!='e') { card[i]=' '; i-- ; } /* Copy card into file */ memcpy(buf+off_md5, card, FITSLINESZ); /* flush output, unmap buffer, close file and quit */ err=0 ; sync(); if (close(fd)==-1) { fprintf(stderr, "%s: error closing modified file [%s]", pname, filename); err++ ; } if (munmap(buf, sta.st_size)==-1) { perror("munmap"); err++ ; } return err; } /* Display or modify the DATAMD5 value. Returns the number of errors. */ static int fits_md5_check(char * filename, int update_header) { FILE * in ; char buf[FITSBLOCKSZ]; char * buf_c ; int i ; int in_header ; char * hdrmd5 ; struct MD5Context ctx ; unsigned char digest[16] ; static char datamd5[MD5HASHSZ+1]; int off_md5 ; int cur_off ; int md5keysz ; int err ; int check_fits ; struct stat sta ; if (filename==NULL) return 1 ; /* Try to stat file */ if (stat(filename, &sta)!=0) { fprintf(stderr, "%s: cannot stat file %s\n", pname, filename); return 1 ; } /* See if this is a regular file */ if (!S_ISREG(sta.st_mode)) { fprintf(stderr, "%s: not a regular file: %s\n", pname, filename); return 1 ; } /* Open input file */ if ((in=fopen(filename, "r"))==NULL) { fprintf(stderr, "%s: cannot open file [%s]\n", pname, filename); return 1 ; } /* Initialize all variables */ MD5Init(&ctx); in_header=1 ; hdrmd5=NULL ; off_md5=0; cur_off=0; md5keysz = (int)strlen(FITSMD5KEY) ; check_fits=0 ; /* Loop over input file */ while (fread(buf, 1, FITSBLOCKSZ, in)==FITSBLOCKSZ) { /* First time in the loop: check the file is FITS */ if (check_fits==0) { /* Examine first characters in block */ if (buf[0]!='S' || buf[1]!='I' || buf[2]!='M' || buf[3]!='P' || buf[4]!='L' || buf[5]!='E' || buf[6]!=' ' || buf[7]!=' ' || buf[8]!='=') { fprintf(stderr, "%s: file [%s] is not FITS\n", pname, filename); fclose(in); return 1 ; } else { check_fits=1 ; } } /* If current block is a header block */ if (in_header) { buf_c = buf ; for (i=0 ; i<FITSCARDS ; i++) { /* Try to locate MD5 keyword if not located already */ if (hdrmd5==NULL) { if (!strncmp(buf_c, FITSMD5KEY, md5keysz)) { hdrmd5 = fits_getvalue(buf_c) ; off_md5 = cur_off ; } } /* Try to locate an END key */ if (buf_c[0]=='E' && buf_c[1]=='N' && buf_c[2]=='D' && buf_c[3]==' ') { in_header=0 ; break ; } buf_c += FITSLINESZ ; cur_off += FITSLINESZ ; } } else { /* If current block is a data block */ /* Try to locate an extension header */ if (buf[0]=='X' && buf[1]=='T' && buf[2]=='E' && buf[3]=='N' && buf[4]=='S' && buf[5]=='I' && buf[6]=='O' && buf[7]=='N' && buf[8]=='=') { in_header=1 ; buf_c = buf ; for (i=0 ; i<FITSCARDS ; i++) { /* Try to find an END marker in this block */ if (buf_c[0]=='E' && buf_c[1]=='N' && buf_c[2]=='D' && buf_c[3]==' ') { /* Found END marker in same block as XTENSION */ in_header=0 ; break ; } buf_c += FITSLINESZ ; } } else { /* Data block: accumulate for MD5 */ MD5Update(&ctx, (unsigned char *)buf, FITSBLOCKSZ); } } } fclose(in); if (check_fits==0) { /* Never went through the read loop: file is not FITS */ fprintf(stderr, "%s: file [%s] is not FITS\n", pname, filename); return 1 ; } /* Got to the end of file: summarize */ MD5Final(digest, &ctx); /* Write digest into a string */ sprintf(datamd5, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", digest[ 0], digest[ 1], digest[ 2], digest[ 3], digest[ 4], digest[ 5], digest[ 6], digest[ 7], digest[ 8], digest[ 9], digest[10], digest[11], digest[12], digest[13], digest[14], digest[15]); if (!silent_process) { printf("%s %s", datamd5, filename); if (hdrmd5) { if (!strcmp(hdrmd5, datamd5)) { printf(" (header Ok)"); } else { printf(" (header is wrong)"); } } printf("\n"); } /* Update header if requested */ err=0 ; if (update_header) { if (hdrmd5==NULL) { fprintf(stderr, "%s: cannot update header: missing %s\n", pname, FITSMD5KEY); return 1 ; } #if HAVE_ZLIB if (is_gzipped(filename)) { fprintf(stderr, "%s: cannot update header in gzipped file\n"); return 1 ; } #endif err = fits_replace_card(filename, off_md5, datamd5); } return err ; } /* Compute MD5 sum on the whole file and print out results on stdout */ static int compute_md5(char * filename) { struct MD5Context ctx ; unsigned char digest[16] ; struct stat sta ; int fd ; unsigned char * buf ; /* Try to stat file */ if (stat(filename, &sta)!=0) { fprintf(stderr, "%s: cannot stat file %s\n", pname, filename); return 1 ; } /* See if this is a regular file */ if (!S_ISREG(sta.st_mode)) { fprintf(stderr, "%s: not a regular file: %s\n", pname, filename); return 1 ; } /* Open file */ if ((fd = open(filename, O_RDONLY))==-1) { fprintf(stderr, "%s: cannot open file %s\n", pname, filename); return 1 ; } /* Memory-map the file */ buf = (unsigned char*)mmap(0, sta.st_size, PROT_READ, MAP_PRIVATE, fd, 0); if (buf==(unsigned char*)-1 || buf==NULL) { perror("mmap"); close(fd); return 1 ; } /* Initialize MD5 context */ MD5Init(&ctx); /* Compute MD5 on all bits in the file */ MD5Update(&ctx, buf, sta.st_size); /* Finalize and print results */ close(fd); munmap((char*)buf, sta.st_size); MD5Final(digest, &ctx); printf( "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x %s\n", digest[ 0], digest[ 1], digest[ 2], digest[ 3], digest[ 4], digest[ 5], digest[ 6], digest[ 7], digest[ 8], digest[ 9], digest[10], digest[11], digest[12], digest[13], digest[14], digest[15], filename); return 0 ; } static void usage(void) { printf( "%s -- %s\n" "version: $Revision: 1.7 $\n", pname, prog_desc); printf( "\n" "use : %s [-u] [-s] [-a] <FITS files...>\n" "options are:\n" "\t-u update MD5 keyword in the file: %s\n" "\t-s silent mode\n" "\n" "\t-a compute MD5 sum of the complete file (incl.header)\n" "\n" "This utility computes the MD5 checksum of all data sections\n" "in a given FITS file, and compares it against the value\n" "declared in DATAMD5 if present. It can also update the value\n" "of this keyword (if present) with its own computed MD5 sum.\n" "\n", pname, FITSMD5KEY) ; printf( "You can also use it with the -a option to compute the MD5 sum\n" "on the complete file (all bits). In this case, the file needs\n" "not be FITS. This option is only provided to check this program\n" "against other MD5 computation tools.\n" "NB: Other options cannot be used together with -a.\n" "\n"); #if HAVE_ZLIB printf( "\n" "This program was compiled against zlib %s\n" "which allows to process gzipped FITS files\n" "as if they were normal FITS files.\n" "Notice that you cannot use the -u option on\n" "gzipped files, though.\n" "\n" "\n", ZLIB_VERSION ); #endif exit(0) ; } /*----------------------------------------------------------------------------- Main -----------------------------------------------------------------------------*/ int main(int argc, char *argv[]) { int i ; int update_header ; int total_md5 ; int err ; /* Initialize */ pname=argv[0]; update_header = 0 ; total_md5 = 0 ; if (argc<2) usage(); /* Parse arguments for options */ for (i=1 ; i<argc ; i++) { if (!strcmp(argv[i], "-u")) { update_header=1 ; } else if (!strcmp(argv[i], "-s")) { silent_process=1; } else if (!strcmp(argv[i], "-a")) { total_md5=1 ; } } /* Loop on input file names */ err=0 ; for (i=1 ; i<argc ; i++) { /* If not a command-line option */ if (strcmp(argv[i], "-u") && strcmp(argv[i], "-s") && strcmp(argv[i], "-a")) { /* Launch MD5 process on this file */ if (total_md5) { err+=compute_md5(argv[i]); } else { err += fits_md5_check(argv[i], update_header); } } } if (err>0) { fprintf(stderr, "%s: %d error(s) during process\n", pname, err); } return err ; }
the_stack_data/61075038.c
#include <stdio.h> int level; int arrayFish[6]; int* cursor; void initData(); int main(void) { long startTime = 0; long totalElapsedTime = 0; long prevElapsedTime = 0; int num = 0; initData(); cursor = arrayFish; return 0; } void initData() { level = 1 ; for (int i = 0; i < 6; i++) { arrayFish[i] = 100; } }
the_stack_data/111078131.c
#include <stdio.h> int main(int argc, char *argv[]) { FILE *f; if (1 > argc || NULL == (f = fopen(argv[1], "w"))) return 1; fprintf(f, "/* a silly generated file */\n"); fprintf(f, "int generated_value = 10;\n"); fclose(f); return 0; }
the_stack_data/321153.c
#include <assert.h> #include <stdlib.h> void main() { char *p = NULL; assert(!__CPROVER_r_ok(p, 10)); }
the_stack_data/146447.c
/* * http://codegolf.stackexchange.com/a/76778 * * run: * ./qemu.sh ./echo_srv 1234 * telnet localhost 1234 */ #include <stdio.h> #include <netdb.h> #include <netinet/in.h> #include <string.h> int main(int c,char**v) { int f,l; char b[99]; struct sockaddr_in d,e; f=socket(AF_INET,SOCK_STREAM,0); bzero(&d,sizeof(d)); d.sin_family=AF_INET; d.sin_addr.s_addr=INADDR_ANY; d.sin_port=htons(atoi(v[1])); bind(f,&d, sizeof(d)); listen(f,5); l=sizeof(e); f=accept(f,&e,&l); bzero(b,99); int p,q,r,s; char g[INET_ADDRSTRLEN]; inet_ntop(AF_INET,&(e.sin_addr),g,INET_ADDRSTRLEN); sscanf(g,"%d.%d.%d.%d",&p,&q,&r,&s); sprintf(b,"%d\n",p+q+r+s); write(f,b,strlen(b)); return 0; }
the_stack_data/348899.c
#include <stdio.h> #include <math.h> int main() { double x, y, s=0; int a=0; a = scanf("%lf%lf", &x,&y); s = pow(x,y); printf("%lf", s); return a; }
the_stack_data/154827728.c
#define _GNU_SOURCE #include <stdio.h> #include <stdarg.h> #include <stdlib.h> #include <dlfcn.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <limits.h> #include <string.h> #include <spawn.h> #define MAX_REDIRECTS 128 static int nrRedirects = 0; static char * from[MAX_REDIRECTS]; static char * to[MAX_REDIRECTS]; // FIXME: might run too late. static void init() __attribute__((constructor)); static void init() { char * spec = getenv("NIX_REDIRECTS"); if (!spec) return; unsetenv("NIX_REDIRECTS"); char * spec2 = malloc(strlen(spec) + 1); strcpy(spec2, spec); char * pos = spec2, * eq; while ((eq = strchr(pos, '='))) { *eq = 0; from[nrRedirects] = pos; pos = eq + 1; to[nrRedirects] = pos; nrRedirects++; if (nrRedirects == MAX_REDIRECTS) break; char * end = strchr(pos, ':'); if (!end) break; *end = 0; pos = end + 1; } } static const char * rewrite(const char * path, char * buf) { if (path == NULL) return path; for (int n = 0; n < nrRedirects; ++n) { int len = strlen(from[n]); if (strncmp(path, from[n], len) != 0) continue; if (snprintf(buf, PATH_MAX, "%s%s", to[n], path + len) >= PATH_MAX) abort(); return buf; } return path; } static int open_needs_mode(int flags) { #ifdef O_TMPFILE return (flags & O_CREAT) || (flags & O_TMPFILE) == O_TMPFILE; #else return flags & O_CREAT; #endif } /* The following set of Glibc library functions is very incomplete - it contains only what we needed for programs in Nixpkgs. Just add more functions as needed. */ int open(const char * path, int flags, ...) { int (*open_real) (const char *, int, mode_t) = dlsym(RTLD_NEXT, "open"); mode_t mode = 0; if (open_needs_mode(flags)) { va_list ap; va_start(ap, flags); mode = va_arg(ap, mode_t); va_end(ap); } char buf[PATH_MAX]; return open_real(rewrite(path, buf), flags, mode); } int open64(const char * path, int flags, ...) { int (*open64_real) (const char *, int, mode_t) = dlsym(RTLD_NEXT, "open64"); mode_t mode = 0; if (open_needs_mode(flags)) { va_list ap; va_start(ap, flags); mode = va_arg(ap, mode_t); va_end(ap); } char buf[PATH_MAX]; return open64_real(rewrite(path, buf), flags, mode); } int openat(int dirfd, const char * path, int flags, ...) { int (*openat_real) (int, const char *, int, mode_t) = dlsym(RTLD_NEXT, "openat"); mode_t mode = 0; if (open_needs_mode(flags)) { va_list ap; va_start(ap, flags); mode = va_arg(ap, mode_t); va_end(ap); } char buf[PATH_MAX]; return openat_real(dirfd, rewrite(path, buf), flags, mode); } FILE * fopen(const char * path, const char * mode) { FILE * (*fopen_real) (const char *, const char *) = dlsym(RTLD_NEXT, "fopen"); char buf[PATH_MAX]; return fopen_real(rewrite(path, buf), mode); } FILE * fopen64(const char * path, const char * mode) { FILE * (*fopen64_real) (const char *, const char *) = dlsym(RTLD_NEXT, "fopen64"); char buf[PATH_MAX]; return fopen64_real(rewrite(path, buf), mode); } int __xstat(int ver, const char * path, struct stat * st) { int (*__xstat_real) (int ver, const char *, struct stat *) = dlsym(RTLD_NEXT, "__xstat"); char buf[PATH_MAX]; return __xstat_real(ver, rewrite(path, buf), st); } int __xstat64(int ver, const char * path, struct stat64 * st) { int (*__xstat64_real) (int ver, const char *, struct stat64 *) = dlsym(RTLD_NEXT, "__xstat64"); char buf[PATH_MAX]; return __xstat64_real(ver, rewrite(path, buf), st); } int stat(const char * path, struct stat * st) { int (*__stat_real) (const char *, struct stat *) = dlsym(RTLD_NEXT, "stat"); char buf[PATH_MAX]; return __stat_real(rewrite(path, buf), st); } int access(const char * path, int mode) { int (*access_real) (const char *, int mode) = dlsym(RTLD_NEXT, "access"); char buf[PATH_MAX]; return access_real(rewrite(path, buf), mode); } int posix_spawn(pid_t * pid, const char * path, const posix_spawn_file_actions_t * file_actions, const posix_spawnattr_t * attrp, char * const argv[], char * const envp[]) { int (*posix_spawn_real) (pid_t *, const char *, const posix_spawn_file_actions_t *, const posix_spawnattr_t *, char * const argv[], char * const envp[]) = dlsym(RTLD_NEXT, "posix_spawn"); char buf[PATH_MAX]; return posix_spawn_real(pid, rewrite(path, buf), file_actions, attrp, argv, envp); } int posix_spawnp(pid_t * pid, const char * file, const posix_spawn_file_actions_t * file_actions, const posix_spawnattr_t * attrp, char * const argv[], char * const envp[]) { int (*posix_spawnp_real) (pid_t *, const char *, const posix_spawn_file_actions_t *, const posix_spawnattr_t *, char * const argv[], char * const envp[]) = dlsym(RTLD_NEXT, "posix_spawnp"); char buf[PATH_MAX]; return posix_spawnp_real(pid, rewrite(file, buf), file_actions, attrp, argv, envp); } int execv(const char *path, char *const argv[]) { int (*execv_real) (const char *path, char *const argv[]) = dlsym(RTLD_NEXT, "execv"); char buf[PATH_MAX]; return execv_real(rewrite(path, buf), argv); }
the_stack_data/98573933.c
void main() { int x = 0; printf("%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i", x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x); }
the_stack_data/59511899.c
/* Public domain. */ typedef int SItype __attribute__ ((mode (SI))); typedef unsigned int USItype __attribute__ ((mode (SI))); typedef float DFtype __attribute__ ((mode (DF))); DFtype __floatunsidf (USItype u) { SItype s = (SItype) u; DFtype r = (DFtype) s; if (s < 0) r += (DFtype)2.0 * (DFtype) ((USItype) 1 << (sizeof (USItype) * __CHAR_BIT__ - 1)); return r; }
the_stack_data/132951870.c
int foo_14(){ return 789; } void function_14() { int n; for(int I = 0, p = foo_14(); I < n; ++I) { int n_1 = n; for (int j = foo_14(), J = 0; J < n; ++J) { } } }
the_stack_data/62637449.c
/* Copyright 2001, 2002 Georges Menie (www.menie.org) stdarg version contributed by Christian Ettinger This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* putchar is the only external dependency for this file, if you have a working putchar, leave it commented out. If not, uncomment the define below and replace outbyte(c) by your own function call. */ #define putchar(c) c #include <stdarg.h> static void printchar(char **str, int c) { //extern int putchar(int c); if (str) { **str = (char)c; ++(*str); } else { (void)putchar(c); } } #define PAD_RIGHT 1 #define PAD_ZERO 2 static int prints(char **out, const char *string, int width, int pad) { register int pc = 0, padchar = ' '; if (width > 0) { register int len = 0; register const char *ptr; for (ptr = string; *ptr; ++ptr) ++len; if (len >= width) width = 0; else width -= len; if (pad & PAD_ZERO) padchar = '0'; } if (!(pad & PAD_RIGHT)) { for ( ; width > 0; --width) { printchar (out, padchar); ++pc; } } for ( ; *string ; ++string) { printchar (out, *string); ++pc; } for ( ; width > 0; --width) { printchar (out, padchar); ++pc; } return pc; } /* the following should be enough for 32 bit int */ #define PRINT_BUF_LEN 12 static int printi(char **out, int i, int b, int sg, int width, int pad, int letbase) { char print_buf[PRINT_BUF_LEN]; register char *s; register int t, neg = 0, pc = 0; register unsigned int u = (unsigned int)i; if (i == 0) { print_buf[0] = '0'; print_buf[1] = '\0'; return prints (out, print_buf, width, pad); } if (sg && b == 10 && i < 0) { neg = 1; u = (unsigned int) - i; } s = print_buf + PRINT_BUF_LEN - 1; *s = '\0'; while (u) { t = (unsigned int)u % b; if( t >= 10 ) t += letbase - '0' - 10; *--s = (char)(t + '0'); u /= b; } if (neg) { if( width && (pad & PAD_ZERO) ) { printchar (out, '-'); ++pc; --width; } else { *--s = '-'; } } return pc + prints (out, s, width, pad); } static int print( char **out, const char *format, va_list args ) { register int width, pad; register int pc = 0; char scr[2]; for (; *format != 0; ++format) { if (*format == '%') { ++format; width = pad = 0; if (*format == '\0') break; if (*format == '%') goto out; if (*format == '-') { ++format; pad = PAD_RIGHT; } while (*format == '0') { ++format; pad |= PAD_ZERO; } for ( ; *format >= '0' && *format <= '9'; ++format) { width *= 10; width += *format - '0'; } if( *format == 's' ) { register char *s = (char *)va_arg( args, int ); pc += prints (out, s ? s : "(null)", width, pad); continue; } if( *format == 'd' ) { pc += printi (out, va_arg( args, int ), 10, 1, width, pad, 'a'); continue; } if( *format == 'x' ) { pc += printi (out, va_arg( args, int ), 16, 0, width, pad, 'a'); continue; } if( *format == 'X' ) { pc += printi (out, va_arg( args, int ), 16, 0, width, pad, 'A'); continue; } if( *format == 'u' ) { pc += printi (out, va_arg( args, int ), 10, 0, width, pad, 'a'); continue; } if( *format == 'c' ) { /* char are converted to int then pushed on the stack */ scr[0] = (char)va_arg( args, int ); scr[1] = '\0'; pc += prints (out, scr, width, pad); continue; } } else { out: printchar (out, *format); ++pc; } } if (out) **out = '\0'; va_end( args ); return pc; } int printf(const char *format, ...) { va_list args; va_start( args, format ); return print( 0, format, args ); } int sprintf(char *out, const char *format, ...) { va_list args; va_start( args, format ); return print( &out, format, args ); } int snprintf( char *buf, unsigned int count, const char *format, ... ) { va_list args; ( void ) count; va_start( args, format ); return print( &buf, format, args ); } #ifdef TEST_PRINTF int main(void) { char *ptr = "Hello world!"; char *np = 0; int i = 5; unsigned int bs = sizeof(int) * 8; int mi; char buf[80]; mi = (1 << (bs - 1)) + 1; printf("%s\n", ptr); printf("printf test\n"); printf("%s is null pointer\n", np); printf("%d = 5\n", i); printf("%d = - max int\n", mi); printf("char %c = 'a'\n", 'a'); printf("hex %x = ff\n", 0xff); printf("hex %02x = 00\n", 0); printf("signed %d = unsigned %u = hex %x\n", -3, -3, -3); printf("%d %s(s)%", 0, "message"); printf("\n"); printf("%d %s(s) with %%\n", 0, "message"); sprintf(buf, "justif: \"%-10s\"\n", "left"); printf("%s", buf); sprintf(buf, "justif: \"%10s\"\n", "right"); printf("%s", buf); sprintf(buf, " 3: %04d zero padded\n", 3); printf("%s", buf); sprintf(buf, " 3: %-4d left justif.\n", 3); printf("%s", buf); sprintf(buf, " 3: %4d right justif.\n", 3); printf("%s", buf); sprintf(buf, "-3: %04d zero padded\n", -3); printf("%s", buf); sprintf(buf, "-3: %-4d left justif.\n", -3); printf("%s", buf); sprintf(buf, "-3: %4d right justif.\n", -3); printf("%s", buf); return 0; } /* * if you compile this file with * gcc -Wall $(YOUR_C_OPTIONS) -DTEST_PRINTF -c printf.c * you will get a normal warning: * printf.c:214: warning: spurious trailing `%' in format * this line is testing an invalid % at the end of the format string. * * this should display (on 32bit int machine) : * * Hello world! * printf test * (null) is null pointer * 5 = 5 * -2147483647 = - max int * char a = 'a' * hex ff = ff * hex 00 = 00 * signed -3 = unsigned 4294967293 = hex fffffffd * 0 message(s) * 0 message(s) with % * justif: "left " * justif: " right" * 3: 0003 zero padded * 3: 3 left justif. * 3: 3 right justif. * -3: -003 zero padded * -3: -3 left justif. * -3: -3 right justif. */ #endif /* To keep linker happy. */ int write( int i, char* c, int n) { (void)i; (void)n; (void)c; return 0; }
the_stack_data/77474.c
/* { dg-do compile } */ /* { dg-options "-std=gnu99 -O0" } */ /* N1150 5.1 Conversion between decimal floating integer. C99 6.3.1.4(1a) New. */ extern void abort (void); _Decimal32 d32; _Decimal64 d64; _Decimal128 d128; unsigned int ui; unsigned long ul; unsigned long long ull; int si; long sl; long long sll; _Bool b; void init_dfp_1 (void) { d32 = 456.789df; d64 = 23.456789dd; d128 = 1234.5678dl; } void init_dfp_2 (void) { d32 = 1.23df; d64 = -3.4dd; d128 = 0.00003dl; } void init_dfp_3 (void) { d32 = 0.0DF; d64 = 0.0DD; d128 = 0.0DL; } void init_unsigned_int (void) { ui = 987U; ul = 345678UL; ull = 1234567ULL; } void init_signed_int (void) { si = -987; sl = -345678; sll = -1234567; } int main () { /* C99 Section 6.7.2 Type specifiers. Type _Bool is mentioned in this section. Conversions between _Bool and DFP types. */ /* Decimal float to unsigned integer. */ init_dfp_1 (); ui = d32; if (ui != 456U) abort (); ul = d32; if (ul != 456UL) abort (); ull = d32; if (ull != 456ULL) abort (); ui = d64; if (ui != 23U) abort (); ul = d64; if (ul != 23UL) abort (); ull = d64; if (ull != 23ULL) abort (); ui = d128; if (ui != 1234U) abort (); ul = d128; if (ul != 1234UL) abort (); ull = d128; if (ull != 1234ULL) abort (); /* Decimal float to signed integer. */ /* Decimal float to _Bool. */ init_dfp_2 (); b = d32; if (!b) abort (); b = d64; if (!b) abort (); b = d128; if (!b) abort (); /* Unsigned integer to decimal float. */ init_unsigned_int (); d32 = ui; if (d32 != 987.0df) abort (); d32 = ul; if (d32 != 345678.0df) abort (); d32 = ull; if (d32 != 1234567.df) abort (); d64 = ui; if (d64 != 987.0dd) abort (); d64 = ul; if (d64 != 345678.0dd) abort (); d64 = ull; if (d64 != 1234567.dd) abort (); d128 = ui; if (d128 != 987.0dl) abort (); d128 = ul; if (d128 != 345678.0dl) abort (); d128 = ull; if (d128 != 1234567.dl) abort (); /* Signed integer to decimal float. */ init_signed_int (); d32 = si; if (d32 != -987.0df) abort (); d32 = sl; if (d32 != -345678.0df) abort (); d32 = sll; if (d32 != -1234567.df) abort (); d64 = si; if (d64 != -987.0dd) abort (); d64 = sl; if (d64 != -345678.0dd) abort (); d64 = sll; if (d64 != -1234567.dd) abort (); d128 = si; if (d128 != -987.0dl) abort (); d128 = sl; if (d128 != -345678.0dl) abort (); d128 = sll; if (d128 != -1234567.dl) abort (); /* _Bool to decimal float. */ init_dfp_3 (); b = d32; if (b) abort (); b = d64; if (b) abort (); b = d128; if (b) abort (); return 0; }
the_stack_data/50332.c
/* pr#1102 - Passing structs/unions <= 4 bytes to/from functions */ #include <stdlib.h> #include <stdio.h> typedef struct test1_s { char a; int b; char c; } test1_t; test1_t test1(int a, int b, int c) { test1_t res; res.a = a; res.b = b; res.c = c; return res; } int test2(test1_t s) { printf("a: %d b: %d c: %d\n", s.a, s.b, s.c); if ((s.a != 13) || (s.b != 4711) || (s.c != 99)) { return 0; } return 1; } typedef struct test2_s { char a; char b; char c; char d; } test2_t; test2_t test3(test1_t s) { test2_t ret; printf("a: %d b: %d c: %d\n", s.a, s.b, s.c); ret.a = s.c; ret.b = s.b & 0xff; ret.c = s.b >> 8; ret.d = s.a; return ret; } int main(void) { test1_t t1; test2_t t2; t1 = test1(12, 1842, 23); printf("a: %d b: %d c: %d\n", t1.a, t1.b, t1.c); if ((t1.a != 12) || (t1.b != 1842) || (t1.c != 23)) { return EXIT_FAILURE; } t1.a = 13; t1.b = 4711; t1.c = 99; if (test2(t1) != 1) { return EXIT_FAILURE; } t1.a = 66; t1.b = 0x7788; t1.c = 22; t2 = test3(t1); printf("a: %d b: %d c: %d d: %d\n", t2.a, t2.b, t2.c, t2.d); if ((t2.a != 22) || (t2.b != 0x88) || (t2.c != 0x77) || (t2.d != 66)) { return EXIT_FAILURE; } printf("all fine\n"); return EXIT_SUCCESS; }
the_stack_data/8235.c
#include<stdio.h> int main() { int m, n, x, i, j, k, c, d, e, f; printf("Enter the numbers: "); scanf("%d %d %d", &m, &n, &x); for(i=m, e=0, f=0; i>=m&&i<=n; i++){ if(i%x==0){ for(k=1, c=0, d=0; k<=i; k++){ if(i%k==0){ c=c+k; d=d+1; } } e=e+d; f=f+c; } } printf("%d %d", e, f); return 0; }
the_stack_data/167330025.c
/* By: Date: Kattis - Cold-puter Science problem https://open.kattis.com/problems/cold */ #include "stdio.h" #include "string.h" #include "assert.h" void test(); int answer(int); void solve(); int main(int argc, char* argv[]) { if (argc > 1 && (strncmp(argv[1], "test", 4) == 0)) test(); else solve(); return 0; } int answer(int temp) { return (temp < 0) ? 1:0; } void test() { int t = -100000; int expected = 1; int ans = answer(t); assert(ans == expected); assert(answer(1000000) == 0); assert(answer(0) == 0); printf("%s\n", "all test cases passed..."); } void solve() { int n, t, cold=0; scanf("%d", &n); for (int i=0; i<n; i++) { scanf("%d", &t); cold += answer(t); } printf("%d\n", cold); }
the_stack_data/97132.c
/* * Copyright (c) 2016, 2018, Oracle and/or its affiliates. * * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other materials provided * with the distribution. * * 3. Neither the name of the copyright holder 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 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ int main() { unsigned int arg = 0x1234; unsigned int out = 0; __asm__("xchgb %%al, %%ah" : "=a"(out) : "a"(arg)); return (out == 0x3412); }
the_stack_data/38970.c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> char flag[31]; char banner[] ={0x20, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x5F, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5F, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x5C, 0x20, 0x5C, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2F, 0x20, 0x2F, 0x5F, 0x5F, 0x7C, 0x20, 0x7C, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x20, 0x7C, 0x20, 0x7C, 0x5F, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x5C, 0x20, 0x5C, 0x20, 0x2F, 0x5C, 0x20, 0x2F, 0x20, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x7C, 0x2F, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x7C, 0x20, 0x27, 0x5F, 0x20, 0x60, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x7C, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x5C, 0x20, 0x56, 0x20, 0x20, 0x56, 0x20, 0x2F, 0x20, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x7C, 0x20, 0x28, 0x5F, 0x7C, 0x20, 0x28, 0x5F, 0x29, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x7C, 0x20, 0x7C, 0x7C, 0x20, 0x28, 0x5F, 0x29, 0x20, 0x7C, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x5F, 0x5F, 0x5C, 0x5F, 0x2F, 0x5C, 0x5F, 0x2F, 0x20, 0x5C, 0x5F, 0x5F, 0x5F, 0x7C, 0x5F, 0x7C, 0x5C, 0x5F, 0x5F, 0x5F, 0x5C, 0x5F, 0x5F, 0x5F, 0x2F, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x5C, 0x5F, 0x5F, 0x5F, 0x7C, 0x20, 0x20, 0x5C, 0x5F, 0x5F, 0x5C, 0x5F, 0x5F, 0x5F, 0x2F, 0x20, 0x20, 0x20, 0x5F, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x7C, 0x20, 0x5F, 0x5F, 0x20, 0x29, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x5F, 0x5F, 0x5F, 0x5F, 0x5F, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x7C, 0x20, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x5F, 0x5F, 0x20, 0x5F, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x5F, 0x5F, 0x7C, 0x20, 0x7C, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x7C, 0x20, 0x20, 0x5F, 0x20, 0x5C, 0x7C, 0x20, 0x27, 0x5F, 0x5F, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x7C, 0x20, 0x7C, 0x2F, 0x20, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x27, 0x5F, 0x20, 0x5C, 0x20, 0x20, 0x7C, 0x20, 0x7C, 0x5F, 0x29, 0x20, 0x2F, 0x20, 0x5F, 0x60, 0x20, 0x7C, 0x20, 0x27, 0x5F, 0x20, 0x5C, 0x20, 0x2F, 0x20, 0x5F, 0x60, 0x20, 0x7C, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x7C, 0x20, 0x27, 0x5F, 0x20, 0x60, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x7C, 0x20, 0x7C, 0x5F, 0x29, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x28, 0x5F, 0x29, 0x20, 0x7C, 0x20, 0x20, 0x20, 0x3C, 0x20, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x20, 0x5F, 0x20, 0x3C, 0x20, 0x28, 0x5F, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x28, 0x5F, 0x7C, 0x20, 0x7C, 0x20, 0x28, 0x5F, 0x29, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x7C, 0x5F, 0x5F, 0x5F, 0x5F, 0x2F, 0x7C, 0x5F, 0x7C, 0x20, 0x20, 0x5C, 0x5F, 0x5F, 0x5F, 0x2F, 0x7C, 0x5F, 0x7C, 0x5C, 0x5F, 0x5C, 0x5F, 0x5F, 0x5F, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x20, 0x5C, 0x5F, 0x5C, 0x5F, 0x5F, 0x2C, 0x5F, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x5C, 0x5F, 0x5F, 0x2C, 0x5F, 0x7C, 0x5C, 0x5F, 0x5F, 0x5F, 0x2F, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x5F, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x20, 0x5F, 0x20, 0x20, 0x20, 0x5F, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x7C, 0x20, 0x7C, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x20, 0x5F, 0x5F, 0x20, 0x5F, 0x20, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x20, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x20, 0x5F, 0x5F, 0x5F, 0x20, 0x20, 0x5F, 0x20, 0x5F, 0x5F, 0x20, 0x0A, 0x20, 0x7C, 0x20, 0x27, 0x5F, 0x20, 0x5C, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x27, 0x5F, 0x20, 0x60, 0x20, 0x5F, 0x20, 0x5C, 0x7C, 0x20, 0x27, 0x5F, 0x20, 0x5C, 0x20, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x27, 0x5F, 0x5F, 0x7C, 0x20, 0x20, 0x2F, 0x20, 0x5F, 0x60, 0x20, 0x7C, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x27, 0x5F, 0x20, 0x5C, 0x20, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x20, 0x27, 0x5F, 0x5F, 0x2F, 0x20, 0x5F, 0x60, 0x20, 0x7C, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x5F, 0x20, 0x5C, 0x7C, 0x20, 0x27, 0x5F, 0x5F, 0x7C, 0x0A, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x5F, 0x29, 0x20, 0x7C, 0x20, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x7C, 0x20, 0x20, 0x20, 0x20, 0x7C, 0x20, 0x28, 0x5F, 0x7C, 0x20, 0x7C, 0x20, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x20, 0x5F, 0x5F, 0x2F, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x28, 0x5F, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x7C, 0x20, 0x28, 0x5F, 0x29, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x5C, 0x5F, 0x5F, 0x2C, 0x5F, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x5F, 0x2E, 0x5F, 0x5F, 0x2F, 0x20, 0x5C, 0x5F, 0x5F, 0x5F, 0x7C, 0x5F, 0x7C, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5C, 0x5F, 0x5F, 0x2C, 0x20, 0x7C, 0x5C, 0x5F, 0x5F, 0x5F, 0x7C, 0x5F, 0x7C, 0x20, 0x7C, 0x5F, 0x7C, 0x5C, 0x5F, 0x5F, 0x5F, 0x7C, 0x5F, 0x7C, 0x20, 0x20, 0x5C, 0x5F, 0x5F, 0x2C, 0x5F, 0x7C, 0x5C, 0x5F, 0x5F, 0x5C, 0x5F, 0x5F, 0x5F, 0x2F, 0x7C, 0x5F, 0x7C, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7C, 0x5F, 0x5F, 0x5F, 0x2F, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20}; int main() { srand(time(NULL)); int fd = open("flag", O_RDONLY); if (fd < 0) { puts("Something goes wrong, tell admin..."); exit(1); } else { ssize_t result = read(fd, flag, 30); if (result < 0) { puts("Something goes wrong, tell admin..."); exit(1); } } puts(banner); while(1) { int option, tmp1, tmp2; puts("What you want to do?\n" "1) Check next 10 random number\n" "2) Guess next random number\n" "3) Read the source code\n" "4) Exit\n" "> "); scanf("%d", &option); switch (option) { case 1: for (int i = 0; i < 10; ++i) { printf("%d ", rand()); } puts(""); break; case 2: printf("So next random number is: "); scanf("%d", &tmp1); tmp2 = rand(); if (tmp1 == tmp2) { puts("WELL DONE!"); puts(flag); } else { printf("Ops, right answer is %d\n", tmp2); } break; case 3: system("cat src.c"); break; case 4: exit(0); default: printf("What's your mean by %d?\n", option); break; } } return 0; }
the_stack_data/87637046.c
#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <string.h> #include <stdlib.h> int main(int argc, char **argv){ unsigned char *buffer = malloc(64 * 1024); struct stat s; unsigned int size_vmlinux = 0, real_size_vmlinux = 0; const unsigned char *magic_str = "ACME_PART_MAGIC"; unsigned int loop; unsigned char *magic; if(argc != 3){ printf("%s in out\n", argv[0]); return 1; } printf("Generating image\n"); FILE *vmlinux = fopen(argv[1], "r"); FILE *vmlinux_out = fopen(argv[2], "w"); if((!vmlinux) || (!vmlinux_out)){ printf("Error opening a file\n"); return 1; } stat(argv[1], &s); size_vmlinux = s.st_size; real_size_vmlinux = (size_vmlinux & 0xffff0000) + 0x10000; printf("vmlinux = 0x%.08X / 0x%.08X\n", size_vmlinux, real_size_vmlinux); unsigned int t = fread(buffer, 1, 64 * 1024, vmlinux); for(loop = 0; loop < (64 * 1024) - sizeof(magic_str); loop++){ if(buffer[loop] == magic_str[0]){ if((magic = strstr(&buffer[loop], magic_str))){ printf("Magic at 0x%.08X %p %p\n", magic - buffer, magic, buffer); printf("Found Magic %X%X%X%X\n", buffer[loop + strlen(magic_str)], buffer[loop + strlen(magic_str) + 2], buffer[loop + strlen(magic_str) + 1], buffer[loop + strlen(magic_str) + 3]); buffer[loop + strlen(magic_str)] = real_size_vmlinux >> 24; buffer[loop + strlen(magic_str) + 2] = (real_size_vmlinux >> 16) & 0xff; buffer[loop + strlen(magic_str) + 1] = (real_size_vmlinux >> 8) & 0xff; buffer[loop + strlen(magic_str) + 3] = (real_size_vmlinux) & 0xff; printf("Replaced with %.02X%.02X%.02X%.02X\n", buffer[loop + strlen(magic_str)], buffer[loop + strlen(magic_str) + 2], buffer[loop + strlen(magic_str) + 1], buffer[loop + strlen(magic_str) + 3]); } } } fwrite(buffer, 1, 64 * 1024, vmlinux_out); real_size_vmlinux -= 64 * 1024; do { real_size_vmlinux -= 64 * 1024; memset(buffer, 0, 64 * 1024); fread(buffer, 1, 64 * 1024, vmlinux); fwrite(buffer, 1, 64 * 1024, vmlinux_out); } while (real_size_vmlinux); return 0; }
the_stack_data/170451984.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #define MAX_NUMBER_CANDIDATE 20 #define MAX_NUMBER_VOTER 30 #define DBFILE "../data/election.txt" #define TEMPFILE "../data/temp.txt" #define CANDIDATE_DBFILE "../data/candidate.txt" #define UPDATE_URL "../../cgi-bin/election/update.cgi" struct election { char eid[30]; char ename[50]; char description[100]; char etype[15]; char startDate[15]; char endsDate[15]; char resultDate[15]; struct ecandidate { char candidateID[30]; char voteCount[20]; char isEmpty[3]; } ecandidate[MAX_NUMBER_CANDIDATE]; struct evoter { char voterID[30]; char votedCandidateID[30]; char voteDateTime[15]; char isEmpty[3]; } evoter[MAX_NUMBER_VOTER]; } election; struct candidate { char id[30]; char firstName[50]; char lastName[50]; char gender[10]; char mobile[20]; char email[50]; char fatherName[50]; char dateOfBirth[15]; char party[50]; char symbol[20]; char address[100]; } candidate; int main() { FILE *fp, *fpc; int i = 0; printf("%s%c%c\n", "Content-Type:text/html;charset=iso-8859-1", 13, 10); printf("<html>" "<head>"); printf("<title>Election List</title>" "</head>" "<body>"); fp = fopen(DBFILE, "rb"); if(fp == NULL) { printf("<p>Oh dear, something went wrong with connecting database! %s %s</p>", DBFILE, strerror(errno)); return 0; } fpc = fopen(CANDIDATE_DBFILE, "rb"); if (fpc == NULL) { printf("<p>Oh dear, something went wrong with connecting database! %s %s</p>", CANDIDATE_DBFILE, strerror(errno)); return 0; } printf("<FORM ACTION=\"%s\" METHOD=\"POST\">", UPDATE_URL); printf("<table border=\"1\">" "<tr>" "<th>Select</th>" "<th>Election ID</th>" "<th>Election Name</th>" "<th>Election Description</th>" "<th>Election Type</th>" "<th>Candidates</th>" "<th>Start Date</th>" "<th>Ends Date</th>" "<th>Result Date</th>" "</tr>"); while (fread(&election, sizeof(election), 1, fp) == 1) { printf("<tr>"); printf("<td><input type=\"checkbox\" name=\"selected\" value=\"%s\" /></td>", election.eid); printf("<td>%s</td>", election.eid); printf("<td>%s</td>", election.ename); printf("<td>%s</td>", election.description); printf("<td>%s</td>", election.etype); //Print the candidates info with header here printf("<td><table border=\"1\">"); printf("<tr>" "<th>Voter/Aadhaar ID</th>" "<th>Name</th>" "<th>Gender</th>" "<th>Party</th>" "<th>Symbol</th>" "<th>Vote Received</th>" "</tr>"); for (i = 0; i < MAX_NUMBER_CANDIDATE; i++) { if (strcmp(election.ecandidate[i].isEmpty, "1") == 0) { while (fread(&candidate, sizeof(candidate), 1, fpc) == 1) { if (strcmp(candidate.id, election.ecandidate[i].candidateID) == 0) { printf("<tr>"); printf("<td>%s</td>", election.ecandidate[i].candidateID); printf("<td>%s %s</td>", candidate.firstName, candidate.lastName); printf("<td>%s</td>", candidate.gender); printf("<td>%s</td>", candidate.party); printf("<td>%s</td>", candidate.symbol); printf("<td>%s</td>", election.ecandidate[i].voteCount); printf("</tr>"); } } } rewind(fpc); //set the candidate file pointer to start } printf("</table></td>"); printf("<td>%s</td>", election.startDate); printf("<td>%s</td>", election.endsDate); printf("<td>%s</td>", election.resultDate); //printf("<td>%s</td>", election.dateOfBirth); //printf("<td>%s</td>", election.address); printf("</tr>"); } printf("</table>"); printf("<input type=\"submit\" value=\"Add\" name=\"operation\"/>"); printf("<input type=\"submit\" value=\"Edit\" name=\"operation\"/>"); printf("<input type=\"submit\" value=\"Delete\" name=\"operation\"/>"); //print ends printf("</form>"); printf("</body></html>"); fclose(fp); fclose(fpc); return 0; }
the_stack_data/75927.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_rev_params.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: soumanso <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/09/06 12:27:34 by soumanso #+# #+# */ /* Updated: 2021/09/06 12:29:36 by soumanso ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include <unistd.h> int ft_strlen(char *str) { int i; i = 0; while (str[i]) i += 1; return (i); } int main(int arg_count, char **args) { int i; i = arg_count - 1; while (i > 0) { write (1, args[i], ft_strlen (args[i])); write (1, "\n", 1); i -= 1; } }
the_stack_data/179831862.c
/*Implemente um programa que recebe um vetor de tamanho n alocado dinamicamente e depois incrementa os valores pares. Imprima esse vetor e depois libere da memoria.*/ #include <stdio.h> #include <stdlib.h> int main(){ int tam; scanf("%d", &tam); int *vet = (int*) malloc(tam*sizeof(int)); for(int cont = 0; cont < tam; cont++){ scanf("%d", &vet[cont]); } for(int cont = 0; cont < tam; cont++){ if(vet[cont]%2==0){ vet[cont]++; } } for(int cont = 0; cont < tam; cont++){ printf("%d ", vet[cont]); } free(vet); return 0; }
the_stack_data/6388236.c
// gcc -Wall -pedantic -std=gnu99 -Og -o reader_line reader_line.c #define _GNU_SOURCE #include <stdio.h> #include <stdlib.h> int main(void) { FILE * fp; char * line = NULL; size_t len = 0; ssize_t read; fp = fopen("gen_prices.txt", "r"); if (fp == NULL) exit(EXIT_FAILURE); while ((read = getline(&line, &len, fp)) != -1) { printf("Retrieved line of length %zu:\n", read); printf("%s", line); printf("%f \n", atof(line)); } fclose(fp); if (line) free(line); exit(EXIT_SUCCESS); }
the_stack_data/43887948.c
#include <stdio.h> #define MOD 998244353 long long a[200010], b[200010]; void merge(long long int *array,int l,int m,int r){ int t[r-l+2]; int i =l, j = m+1, k = 0; while (i<=m && j<=r) t[k++] = (array[i]<array[j])?array[i++]:array[j++]; while (i<=m) t[k++] = array[i++]; while (j<=r) t[k++] = array[j++]; for(int i = l;i<=r; i++) array[i] = t[i-l]; } void reverseMerge(long long int *array,int l,int m,int r){ long long int t[r-l+2]; int i =l, j = m+1, k = 0; while (i<=m && j<=r) t[k++] = (array[i]>array[j])?array[i++]:array[j++]; while (i<=m) t[k++] = array[i++]; while (j<=r) t[k++] = array[j++]; for(int i = l;i<=r; i++) array[i] = t[i-l]; } void sort(long long int *array,int l,int r){ if(l<r){ int m = (l+r)/2; sort(array,l,m); sort(array,m+1,r); merge(array,l,m,r); } } void reverseSort(long long int *array,int l,int r){ if(l<r){ int m = (l+r)/2; reverseSort(array,l,m); reverseSort(array,m+1,r); reverseMerge(array,l,m,r); } } void solve(){ int n; scanf("%d",&n); for(int i = 0;i<n;i++) scanf("%lld", a+i); for(int i = 0;i<n;i++) scanf("%lld", b+i); sort(b,0,n-1); long long Ans = 0; for(int i = 0;i<n;i++){ a[i] = a[i]*(i+1)*(n-i); } reverseSort(a,0,n-1); for(int i = 0;i<n;i++) Ans += (a[i]%MOD*b[i])%MOD, Ans%=MOD; printf("%lld\n", Ans); } int main(){ solve(); return 0; }
the_stack_data/64200440.c
#include <stdio.h> int main() { int arr[]={23,45,132,90,345,1,45,8}; printf(" given array is :"); for (int x = 0;x < 8; x++){ printf(" %d ",arr[x]); } int sum=sum_arr(arr,8); printf("\n Sum of the given array is = %d",sum); return 0; } int sum_arr(int arr[],int n) { int sum = 0; int i; for(i=0;i<n;i++) { sum=sum+arr[i]; } return sum; }
the_stack_data/132953523.c
#include <stdlib.h> char *secure_getenv(const char *name) { if (issetugid()) return NULL; return getenv(name); }
the_stack_data/735564.c
#include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { /* cast to void to suppress compiler warnings about unused variables */ (void)argc; (void)argv; printf("Hello, World!\n"); exit(EXIT_SUCCESS); }
the_stack_data/150141109.c
#include <stdio.h> #include <stdlib.h> typedef struct node{ int key; int value; struct node* next; }Node; typedef struct{ Node* node; int size; }LinkedSymbolTable; typedef int Key; typedef int Value; LinkedSymbolTable linkedSymbolTable; void put(Key key, Value value){ Node* newNode = malloc(sizeof(Node)); newNode->key = key; newNode->value = value; newNode->next = NULL; if(linkedSymbolTable.node == NULL){ linkedSymbolTable.node = newNode; }else{ Node* temp = linkedSymbolTable.node; while(temp->next != NULL){ if(temp->key == key){ temp->value = value; // match update value break; } temp = temp->next; } temp->next = newNode; // miss match -> insert } } Value get(Key key){ Node* temp = linkedSymbolTable.node; while(temp != NULL){ if(temp->key == key){ return temp->value; } temp = temp->next; } return -1; } void initLinkedSymbolTable(LinkedSymbolTable* t){ printf("============ INIT LinkedSymbolTable ================\n"); t->node = NULL; t->size = 0; } int main(){ initLinkedSymbolTable(&linkedSymbolTable); put(1,5); put(2,6); put(3,10); put(4,12); put(5,14); put(6,67); printf("Search Key 4\n"); printf("\tValue => %d\n", get(4)); printf("Search Key 3\n"); printf("\tValue => %d\n", get(3)); return EXIT_SUCCESS; }
the_stack_data/200144145.c
#include <stdio.h> void upper_string(char []); int main() { char string[100]; printf("Enter a string to convert it into upper case\n"); gets(string); upper_string(string); printf("The string in upper case: %s\n", string); return 0; } void upper_string(char s[]) { int c = 0; while (s[c] != '\0') { if (s[c] >= 'a' && s[c] <= 'z') { s[c] = s[c] - 32; } c++; } }
the_stack_data/40761763.c
/* * Copyright (c) 2017, 2018, Oracle and/or its affiliates. * * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other materials provided * with the distribution. * * 3. Neither the name of the copyright holder 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 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ double foo() { double a[3]; a[0] = 1.0; a[1] = 2.0; a[2] = 3.0; return a[0] + a[1] + a[2]; } int main() { int i = 0; double sum = 0; for (i = 0; i < 5; i++) { sum += foo(); } return sum; }
the_stack_data/161080823.c
void parallel_0(short x[800], short y[800], int sum_array[50]) { // Step 2: Initialize local variables int sum_w1; int sum_w10; int sum_w11; int sum_w12; int sum_w13; int sum_w14; int sum_w2; int sum_w3; int sum_w4; int sum_w5; int sum_w6; int sum_w7; int sum_w8; int sum_w9; int temp_l83_i14_w1; int temp_l83_i15_w1; int temp_l83_i16_w1; int temp_l83_i17_w1; int temp_l83_i18_w1; int temp_l83_i19_w1; int temp_l83_i20_w1; int temp_l83_i21_w1; int temp_l83_i22_w1; int temp_l83_i23_w1; int temp_l83_i24_w1; int temp_l83_i25_w1; int temp_l83_i26_w1; int temp_l83_i27_w1; int temp_l83_i28_w1; int temp_l83_i29_w1; // Initialization done // starting Loop for( int i = 0; i < 50;i=i+1){ #pragma HLS pipeline temp_l83_i14_w1 = x[(16)*i] * y[(16)*i]; temp_l83_i15_w1 = x[(16)*i+1] * y[(16)*i+1]; temp_l83_i16_w1 = x[(16)*i+2] * y[(16)*i+2]; temp_l83_i17_w1 = x[(16)*i+3] * y[(16)*i+3]; temp_l83_i18_w1 = x[(16)*i+4] * y[(16)*i+4]; temp_l83_i19_w1 = x[(16)*i+5] * y[(16)*i+5]; temp_l83_i20_w1 = x[(16)*i+6] * y[(16)*i+6]; temp_l83_i21_w1 = x[(16)*i+7] * y[(16)*i+7]; temp_l83_i22_w1 = x[(16)*i+8] * y[(16)*i+8]; temp_l83_i23_w1 = x[(16)*i+9] * y[(16)*i+9]; temp_l83_i24_w1 = x[(16)*i+10] * y[(16)*i+10]; temp_l83_i25_w1 = x[(16)*i+11] * y[(16)*i+11]; temp_l83_i26_w1 = x[(16)*i+12] * y[(16)*i+12]; temp_l83_i27_w1 = x[(16)*i+13] * y[(16)*i+13]; temp_l83_i28_w1 = x[(16)*i+14] * y[(16)*i+14]; temp_l83_i29_w1 = x[(16)*i+15] * y[(16)*i+15]; sum_w13 = temp_l83_i14_w1 + temp_l83_i15_w1; sum_w14 = temp_l83_i16_w1 + temp_l83_i17_w1; sum_w11 = temp_l83_i18_w1 + temp_l83_i19_w1; sum_w12 = temp_l83_i20_w1 + temp_l83_i21_w1; sum_w1 = temp_l83_i22_w1 + temp_l83_i23_w1; sum_w2 = temp_l83_i24_w1 + temp_l83_i25_w1; sum_w5 = temp_l83_i26_w1 + temp_l83_i27_w1; sum_w6 = temp_l83_i28_w1 + temp_l83_i29_w1; sum_w3 = sum_w1 + sum_w2; sum_w8 = sum_w11 + sum_w12; sum_w7 = sum_w13 + sum_w14; sum_w4 = sum_w5 + sum_w6; sum_w10 = sum_w3 + sum_w4; sum_w9 = sum_w7 + sum_w8; sum_array[i] = sum_w9 + sum_w10; } } void parallel_1(short x[784], short y[784], int sum_array[49]) { // Step 2: Initialize local variables int sum_w1; int sum_w10; int sum_w11; int sum_w12; int sum_w13; int sum_w14; int sum_w2; int sum_w3; int sum_w4; int sum_w5; int sum_w6; int sum_w7; int sum_w8; int sum_w9; int temp_l83_i3214_w1; int temp_l83_i3215_w1; int temp_l83_i3216_w1; int temp_l83_i3217_w1; int temp_l83_i3218_w1; int temp_l83_i3219_w1; int temp_l83_i3220_w1; int temp_l83_i3221_w1; int temp_l83_i3222_w1; int temp_l83_i3223_w1; int temp_l83_i3224_w1; int temp_l83_i3225_w1; int temp_l83_i3226_w1; int temp_l83_i3227_w1; int temp_l83_i3228_w1; int temp_l83_i3229_w1; // Initialization done // starting Loop for( int i = 0; i < 49;i=i+1){ #pragma HLS pipeline temp_l83_i3214_w1 = x[(16)*i] * y[(16)*i]; temp_l83_i3215_w1 = x[(16)*i+1] * y[(16)*i+1]; temp_l83_i3216_w1 = x[(16)*i+2] * y[(16)*i+2]; temp_l83_i3217_w1 = x[(16)*i+3] * y[(16)*i+3]; temp_l83_i3218_w1 = x[(16)*i+4] * y[(16)*i+4]; temp_l83_i3219_w1 = x[(16)*i+5] * y[(16)*i+5]; temp_l83_i3220_w1 = x[(16)*i+6] * y[(16)*i+6]; temp_l83_i3221_w1 = x[(16)*i+7] * y[(16)*i+7]; temp_l83_i3222_w1 = x[(16)*i+8] * y[(16)*i+8]; temp_l83_i3223_w1 = x[(16)*i+9] * y[(16)*i+9]; temp_l83_i3224_w1 = x[(16)*i+10] * y[(16)*i+10]; temp_l83_i3225_w1 = x[(16)*i+11] * y[(16)*i+11]; temp_l83_i3226_w1 = x[(16)*i+12] * y[(16)*i+12]; temp_l83_i3227_w1 = x[(16)*i+13] * y[(16)*i+13]; temp_l83_i3228_w1 = x[(16)*i+14] * y[(16)*i+14]; temp_l83_i3229_w1 = x[(16)*i+15] * y[(16)*i+15]; sum_w13 = temp_l83_i3214_w1 + temp_l83_i3215_w1; sum_w14 = temp_l83_i3216_w1 + temp_l83_i3217_w1; sum_w11 = temp_l83_i3218_w1 + temp_l83_i3219_w1; sum_w12 = temp_l83_i3220_w1 + temp_l83_i3221_w1; sum_w3 = temp_l83_i3222_w1 + temp_l83_i3223_w1; sum_w4 = temp_l83_i3224_w1 + temp_l83_i3225_w1; sum_w5 = temp_l83_i3226_w1 + temp_l83_i3227_w1; sum_w6 = temp_l83_i3228_w1 + temp_l83_i3229_w1; sum_w10 = sum_w11 + sum_w12; sum_w9 = sum_w13 + sum_w14; sum_w7 = sum_w3 + sum_w4; sum_w8 = sum_w5 + sum_w6; sum_w2 = sum_w7 + sum_w8; sum_w1 = sum_w9 + sum_w10; sum_array[i] = sum_w1 + sum_w2; } } void epilogue(int sum_array_3[50], int sum_array_2[50], short y_6[3], int sum_array_4[49], short x_0[13], short y_0[13], int sum_array_1[50], short x_6[3], int sum_array_0[50], int *out) { // Step 2: Initialize local variables int sum_w1; int sum_w10; int sum_w100; int sum_w101; int sum_w102; int sum_w103; int sum_w104; int sum_w105; int sum_w106; int sum_w107; int sum_w108; int sum_w109; int sum_w11; int sum_w110; int sum_w111; int sum_w112; int sum_w113; int sum_w114; int sum_w115; int sum_w116; int sum_w117; int sum_w118; int sum_w119; int sum_w12; int sum_w120; int sum_w121; int sum_w122; int sum_w123; int sum_w124; int sum_w125; int sum_w126; int sum_w127; int sum_w128; int sum_w129; int sum_w13; int sum_w130; int sum_w131; int sum_w132; int sum_w133; int sum_w134; int sum_w135; int sum_w136; int sum_w137; int sum_w138; int sum_w139; int sum_w14; int sum_w140; int sum_w141; int sum_w142; int sum_w143; int sum_w144; int sum_w145; int sum_w146; int sum_w147; int sum_w148; int sum_w149; int sum_w15; int sum_w150; int sum_w151; int sum_w152; int sum_w153; int sum_w154; int sum_w155; int sum_w156; int sum_w157; int sum_w158; int sum_w159; int sum_w16; int sum_w160; int sum_w161; int sum_w162; int sum_w163; int sum_w164; int sum_w165; int sum_w166; int sum_w167; int sum_w168; int sum_w169; int sum_w17; int sum_w170; int sum_w171; int sum_w172; int sum_w173; int sum_w174; int sum_w175; int sum_w176; int sum_w177; int sum_w178; int sum_w179; int sum_w18; int sum_w180; int sum_w181; int sum_w182; int sum_w183; int sum_w184; int sum_w185; int sum_w186; int sum_w187; int sum_w188; int sum_w189; int sum_w19; int sum_w190; int sum_w191; int sum_w192; int sum_w193; int sum_w194; int sum_w195; int sum_w196; int sum_w197; int sum_w198; int sum_w199; int sum_w2; int sum_w20; int sum_w200; int sum_w201; int sum_w202; int sum_w203; int sum_w204; int sum_w205; int sum_w206; int sum_w207; int sum_w208; int sum_w209; int sum_w21; int sum_w210; int sum_w211; int sum_w212; int sum_w213; int sum_w214; int sum_w215; int sum_w216; int sum_w217; int sum_w218; int sum_w219; int sum_w22; int sum_w220; int sum_w221; int sum_w222; int sum_w223; int sum_w224; int sum_w225; int sum_w226; int sum_w227; int sum_w228; int sum_w229; int sum_w23; int sum_w230; int sum_w231; int sum_w232; int sum_w233; int sum_w234; int sum_w235; int sum_w236; int sum_w237; int sum_w238; int sum_w239; int sum_w24; int sum_w240; int sum_w241; int sum_w242; int sum_w243; int sum_w244; int sum_w245; int sum_w246; int sum_w247; int sum_w248; int sum_w249; int sum_w25; int sum_w250; int sum_w251; int sum_w252; int sum_w253; int sum_w254; int sum_w255; int sum_w256; int sum_w257; int sum_w258; int sum_w259; int sum_w26; int sum_w260; int sum_w261; int sum_w262; int sum_w263; int sum_w264; int sum_w27; int sum_w28; int sum_w29; int sum_w3; int sum_w30; int sum_w31; int sum_w32; int sum_w33; int sum_w34; int sum_w35; int sum_w36; int sum_w37; int sum_w38; int sum_w39; int sum_w4; int sum_w40; int sum_w41; int sum_w42; int sum_w43; int sum_w44; int sum_w45; int sum_w46; int sum_w47; int sum_w48; int sum_w49; int sum_w5; int sum_w50; int sum_w51; int sum_w52; int sum_w53; int sum_w54; int sum_w55; int sum_w56; int sum_w57; int sum_w58; int sum_w59; int sum_w6; int sum_w60; int sum_w61; int sum_w62; int sum_w63; int sum_w64; int sum_w65; int sum_w66; int sum_w67; int sum_w68; int sum_w69; int sum_w7; int sum_w70; int sum_w71; int sum_w72; int sum_w73; int sum_w74; int sum_w75; int sum_w76; int sum_w77; int sum_w78; int sum_w79; int sum_w8; int sum_w80; int sum_w81; int sum_w82; int sum_w83; int sum_w84; int sum_w85; int sum_w86; int sum_w87; int sum_w88; int sum_w89; int sum_w9; int sum_w90; int sum_w91; int sum_w92; int sum_w93; int sum_w94; int sum_w95; int sum_w96; int sum_w97; int sum_w98; int sum_w99; int temp_l83_i10_w1; int temp_l83_i11_w1; int temp_l83_i12_w1; int temp_l83_i13_w1; int temp_l83_i1_w1; int temp_l83_i2_w1; int temp_l83_i3998_w1; int temp_l83_i3999_w1; int temp_l83_i3_w1; int temp_l83_i4000_w1; int temp_l83_i4_w1; int temp_l83_i5_w1; int temp_l83_i6_w1; int temp_l83_i7_w1; int temp_l83_i8_w1; int temp_l83_i9_w1; // Initialization done sum_w112 = sum_array_0[0] + sum_array_0[1]; sum_w93 = sum_array_0[2] + sum_array_0[3]; sum_w94 = sum_array_0[4] + sum_array_0[5]; sum_w187 = sum_array_0[6] + sum_array_0[7]; sum_w188 = sum_array_0[8] + sum_array_0[9]; sum_w255 = sum_array_0[10] + sum_array_0[11]; sum_w256 = sum_array_0[12] + sum_array_0[13]; sum_w181 = sum_array_0[14] + sum_array_0[15]; sum_w182 = sum_array_0[16] + sum_array_0[17]; sum_w133 = sum_array_0[18] + sum_array_0[19]; sum_w134 = sum_array_0[20] + sum_array_0[21]; sum_w19 = sum_array_0[22] + sum_array_0[23]; sum_w20 = sum_array_0[24] + sum_array_0[25]; sum_w55 = sum_array_0[26] + sum_array_0[27]; sum_w56 = sum_array_0[28] + sum_array_0[29]; sum_w153 = sum_array_0[30] + sum_array_0[31]; sum_w154 = sum_array_0[32] + sum_array_0[33]; sum_w3 = sum_array_0[34] + sum_array_0[35]; sum_w4 = sum_array_0[36] + sum_array_0[37]; sum_w243 = sum_array_0[38] + sum_array_0[39]; sum_w244 = sum_array_0[40] + sum_array_0[41]; sum_w257 = sum_array_0[42] + sum_array_0[43]; sum_w258 = sum_array_0[44] + sum_array_0[45]; sum_w71 = sum_array_0[46] + sum_array_0[47]; sum_w72 = sum_array_0[48] + sum_array_0[49]; sum_w208 = sum_array_1[0] + sum_array_1[1]; sum_w209 = sum_array_1[2] + sum_array_1[3]; sum_w61 = sum_array_1[4] + sum_array_1[5]; sum_w62 = sum_array_1[6] + sum_array_1[7]; sum_w141 = sum_array_1[8] + sum_array_1[9]; sum_w142 = sum_array_1[10] + sum_array_1[11]; sum_w210 = sum_array_1[12] + sum_array_1[13]; sum_w211 = sum_array_1[14] + sum_array_1[15]; sum_w155 = sum_array_1[16] + sum_array_1[17]; sum_w156 = sum_array_1[18] + sum_array_1[19]; sum_w29 = sum_array_1[20] + sum_array_1[21]; sum_w30 = sum_array_1[22] + sum_array_1[23]; sum_w149 = sum_array_1[24] + sum_array_1[25]; sum_w150 = sum_array_1[26] + sum_array_1[27]; sum_w163 = sum_array_1[28] + sum_array_1[29]; sum_w164 = sum_array_1[30] + sum_array_1[31]; sum_w83 = sum_array_1[32] + sum_array_1[33]; sum_w84 = sum_array_1[34] + sum_array_1[35]; sum_w47 = sum_array_1[36] + sum_array_1[37]; sum_w48 = sum_array_1[38] + sum_array_1[39]; sum_w173 = sum_array_1[40] + sum_array_1[41]; sum_w174 = sum_array_1[42] + sum_array_1[43]; sum_w199 = sum_array_1[44] + sum_array_1[45]; sum_w200 = sum_array_1[46] + sum_array_1[47]; sum_w171 = sum_array_1[48] + sum_array_1[49]; sum_w172 = sum_array_2[0] + sum_array_2[1]; sum_w214 = sum_array_2[2] + sum_array_2[3]; sum_w215 = sum_array_2[4] + sum_array_2[5]; sum_w5 = sum_array_2[6] + sum_array_2[7]; sum_w6 = sum_array_2[8] + sum_array_2[9]; sum_w129 = sum_array_2[10] + sum_array_2[11]; sum_w130 = sum_array_2[12] + sum_array_2[13]; sum_w127 = sum_array_2[14] + sum_array_2[15]; sum_w128 = sum_array_2[16] + sum_array_2[17]; sum_w157 = sum_array_2[18] + sum_array_2[19]; sum_w158 = sum_array_2[20] + sum_array_2[21]; sum_w131 = sum_array_2[22] + sum_array_2[23]; sum_w132 = sum_array_2[24] + sum_array_2[25]; sum_w101 = sum_array_2[26] + sum_array_2[27]; sum_w102 = sum_array_2[28] + sum_array_2[29]; sum_w17 = sum_array_2[30] + sum_array_2[31]; sum_w18 = sum_array_2[32] + sum_array_2[33]; sum_w201 = sum_array_2[34] + sum_array_2[35]; sum_w202 = sum_array_2[36] + sum_array_2[37]; sum_w145 = sum_array_2[38] + sum_array_2[39]; sum_w146 = sum_array_2[40] + sum_array_2[41]; sum_w203 = sum_array_2[42] + sum_array_2[43]; sum_w204 = sum_array_2[44] + sum_array_2[45]; sum_w35 = sum_array_2[46] + sum_array_2[47]; sum_w36 = sum_array_2[48] + sum_array_2[49]; sum_w261 = sum_array_3[0] + sum_array_3[1]; sum_w262 = sum_array_3[2] + sum_array_3[3]; sum_w239 = sum_array_3[4] + sum_array_3[5]; sum_w240 = sum_array_3[6] + sum_array_3[7]; sum_w189 = sum_array_3[8] + sum_array_3[9]; sum_w190 = sum_array_3[10] + sum_array_3[11]; sum_w218 = sum_array_3[12] + sum_array_3[13]; sum_w219 = sum_array_3[14] + sum_array_3[15]; sum_w67 = sum_array_3[16] + sum_array_3[17]; sum_w68 = sum_array_3[18] + sum_array_3[19]; sum_w259 = sum_array_3[20] + sum_array_3[21]; sum_w260 = sum_array_3[22] + sum_array_3[23]; sum_w85 = sum_array_3[24] + sum_array_3[25]; sum_w86 = sum_array_3[26] + sum_array_3[27]; sum_w167 = sum_array_3[28] + sum_array_3[29]; sum_w168 = sum_array_3[30] + sum_array_3[31]; sum_w87 = sum_array_3[32] + sum_array_3[33]; sum_w88 = sum_array_3[34] + sum_array_3[35]; sum_w237 = sum_array_3[36] + sum_array_3[37]; sum_w238 = sum_array_3[38] + sum_array_3[39]; sum_w117 = sum_array_3[40] + sum_array_3[41]; sum_w118 = sum_array_3[42] + sum_array_3[43]; sum_w81 = sum_array_3[44] + sum_array_3[45]; sum_w82 = sum_array_3[46] + sum_array_3[47]; sum_w109 = sum_array_3[48] + sum_array_3[49]; sum_w110 = sum_array_4[0] + sum_array_4[1]; sum_w75 = sum_array_4[2] + sum_array_4[3]; sum_w76 = sum_array_4[4] + sum_array_4[5]; sum_w11 = sum_array_4[6] + sum_array_4[7]; sum_w12 = sum_array_4[8] + sum_array_4[9]; sum_w137 = sum_array_4[10] + sum_array_4[11]; sum_w138 = sum_array_4[12] + sum_array_4[13]; sum_w37 = sum_array_4[14] + sum_array_4[15]; sum_w38 = sum_array_4[16] + sum_array_4[17]; sum_w253 = sum_array_4[18] + sum_array_4[19]; sum_w254 = sum_array_4[20] + sum_array_4[21]; sum_w183 = sum_array_4[22] + sum_array_4[23]; sum_w184 = sum_array_4[24] + sum_array_4[25]; sum_w89 = sum_array_4[26] + sum_array_4[27]; sum_w90 = sum_array_4[28] + sum_array_4[29]; sum_w73 = sum_array_4[30] + sum_array_4[31]; sum_w74 = sum_array_4[32] + sum_array_4[33]; sum_w39 = sum_array_4[34] + sum_array_4[35]; sum_w40 = sum_array_4[36] + sum_array_4[37]; sum_w161 = sum_array_4[38] + sum_array_4[39]; sum_w162 = sum_array_4[40] + sum_array_4[41]; sum_w165 = sum_array_4[42] + sum_array_4[43]; sum_w166 = sum_array_4[44] + sum_array_4[45]; sum_w241 = sum_array_4[46] + sum_array_4[47]; temp_l83_i1_w1 = x_0[0] * y_0[0]; temp_l83_i2_w1 = x_0[1] * y_0[1]; temp_l83_i3_w1 = x_0[2] * y_0[2]; temp_l83_i4_w1 = x_0[3] * y_0[3]; temp_l83_i5_w1 = x_0[4] * y_0[4]; temp_l83_i6_w1 = x_0[5] * y_0[5]; temp_l83_i7_w1 = x_0[6] * y_0[6]; temp_l83_i8_w1 = x_0[7] * y_0[7]; temp_l83_i9_w1 = x_0[8] * y_0[8]; temp_l83_i10_w1 = x_0[9] * y_0[9]; temp_l83_i11_w1 = x_0[10] * y_0[10]; temp_l83_i12_w1 = x_0[11] * y_0[11]; temp_l83_i13_w1 = x_0[12] * y_0[12]; temp_l83_i3998_w1 = x_6[0] * y_6[0]; temp_l83_i3999_w1 = x_6[1] * y_6[1]; temp_l83_i4000_w1 = x_6[2] * y_6[2]; sum_w116 = sum_w101 + sum_w102; sum_w234 = sum_w109 + sum_w110; sum_w92 = sum_w11 + sum_w12; sum_w106 = sum_w117 + sum_w118; sum_w177 = sum_w127 + sum_w128; sum_w64 = sum_w129 + sum_w130; sum_w115 = sum_w131 + sum_w132; sum_w205 = sum_w133 + sum_w134; sum_w9 = sum_w137 + sum_w138; sum_w121 = sum_w141 + sum_w142; sum_w195 = sum_w145 + sum_w146; sum_w191 = sum_w149 + sum_w150; sum_w34 = sum_w153 + sum_w154; sum_w113 = sum_w155 + sum_w156; sum_w178 = sum_w157 + sum_w158; sum_w44 = sum_w161 + sum_w162; sum_w192 = sum_w163 + sum_w164; sum_w79 = sum_w165 + sum_w166; sum_w226 = sum_w167 + sum_w168; sum_w193 = sum_w17 + sum_w18; sum_w53 = sum_w171 + sum_w172; sum_w147 = sum_w173 + sum_w174; sum_w78 = sum_w181 + sum_w182; sum_w26 = sum_w183 + sum_w184; sum_w124 = sum_w187 + sum_w188; sum_w2 = sum_w189 + sum_w190; sum_w206 = sum_w19 + sum_w20; sum_w148 = sum_w199 + sum_w200; sum_w194 = sum_w201 + sum_w202; sum_w196 = sum_w203 + sum_w204; sum_w99 = sum_w208 + sum_w209; sum_w122 = sum_w210 + sum_w211; sum_w54 = sum_w214 + sum_w215; sum_w31 = sum_w218 + sum_w219; sum_w105 = sum_w237 + sum_w238; sum_w1 = sum_w239 + sum_w240; sum_w22 = sum_w243 + sum_w244; sum_w25 = sum_w253 + sum_w254; sum_w77 = sum_w255 + sum_w256; sum_w247 = sum_w257 + sum_w258; sum_w143 = sum_w259 + sum_w260; sum_w16 = sum_w261 + sum_w262; sum_w114 = sum_w29 + sum_w30; sum_w21 = sum_w3 + sum_w4; sum_w15 = sum_w35 + sum_w36; sum_w10 = sum_w37 + sum_w38; sum_w43 = sum_w39 + sum_w40; sum_w160 = sum_w47 + sum_w48; sum_w63 = sum_w5 + sum_w6; sum_w33 = sum_w55 + sum_w56; sum_w100 = sum_w61 + sum_w62; sum_w32 = sum_w67 + sum_w68; sum_w248 = sum_w71 + sum_w72; sum_w264 = sum_w73 + sum_w74; sum_w91 = sum_w75 + sum_w76; sum_w233 = sum_w81 + sum_w82; sum_w159 = sum_w83 + sum_w84; sum_w144 = sum_w85 + sum_w86; sum_w227 = sum_w87 + sum_w88; sum_w263 = sum_w89 + sum_w90; sum_w123 = sum_w93 + sum_w94; sum_w251 = temp_l83_i10_w1 + temp_l83_i11_w1; sum_w252 = temp_l83_i12_w1 + temp_l83_i13_w1; sum_w222 = 0 + temp_l83_i1_w1; sum_w232 = temp_l83_i3998_w1 + temp_l83_i3999_w1; sum_w107 = temp_l83_i2_w1 + temp_l83_i3_w1; sum_w108 = temp_l83_i4_w1 + temp_l83_i5_w1; sum_w212 = temp_l83_i6_w1 + temp_l83_i7_w1; sum_w213 = temp_l83_i8_w1 + temp_l83_i9_w1; sum_w46 = sum_w1 + sum_w2; sum_w217 = sum_w105 + sum_w106; sum_w223 = sum_w107 + sum_w108; sum_w119 = sum_w113 + sum_w114; sum_w126 = sum_w115 + sum_w116; sum_w186 = sum_w121 + sum_w122; sum_w95 = sum_w123 + sum_w124; sum_w221 = sum_w143 + sum_w144; sum_w60 = sum_w147 + sum_w148; sum_w45 = sum_w15 + sum_w16; sum_w59 = sum_w159 + sum_w160; sum_w125 = sum_w177 + sum_w178; sum_w120 = sum_w191 + sum_w192; sum_w57 = sum_w193 + sum_w194; sum_w58 = sum_w195 + sum_w196; sum_w230 = sum_w205 + sum_w206; sum_w51 = sum_w21 + sum_w22; sum_w224 = sum_w212 + sum_w213; sum_w216 = sum_w226 + sum_w227; sum_w242 = sum_array_4[48] + sum_w232; sum_w228 = sum_w233 + sum_w234; sum_w52 = sum_w247 + sum_w248; sum_w180 = sum_w25 + sum_w26; sum_w225 = sum_w251 + sum_w252; sum_w41 = sum_w263 + sum_w264; sum_w220 = sum_w31 + sum_w32; sum_w231 = sum_w33 + sum_w34; sum_w42 = sum_w43 + sum_w44; sum_w13 = sum_w53 + sum_w54; sum_w14 = sum_w63 + sum_w64; sum_w96 = sum_w77 + sum_w78; sum_w179 = sum_w9 + sum_w10; sum_w229 = sum_w91 + sum_w92; sum_w185 = sum_w99 + sum_w100; sum_w135 = sum_w119 + sum_w120; sum_w198 = sum_w125 + sum_w126; sum_w197 = sum_w13 + sum_w14; sum_w152 = sum_w179 + sum_w180; sum_w250 = sum_w185 + sum_w186; sum_w98 = sum_w216 + sum_w217; sum_w97 = sum_w220 + sum_w221; sum_w169 = sum_w222 + sum_w223; sum_w170 = sum_w224 + sum_w225; sum_w151 = sum_w228 + sum_w229; sum_w176 = sum_w230 + sum_w231; sum_w80 = sum_w241 + sum_w242; sum_w104 = sum_w41 + sum_w42; sum_w236 = sum_w45 + sum_w46; sum_w249 = sum_w51 + sum_w52; sum_w235 = sum_w57 + sum_w58; sum_w136 = sum_w59 + sum_w60; sum_w175 = sum_w95 + sum_w96; sum_w49 = sum_w135 + sum_w136; sum_w23 = sum_w151 + sum_w152; sum_w111 = sum_w169 + sum_w170; sum_w245 = sum_w175 + sum_w176; sum_w50 = sum_w197 + sum_w198; sum_w7 = sum_w235 + sum_w236; sum_w246 = sum_w249 + sum_w250; sum_w103 = sum_w79 + sum_w80; sum_w8 = sum_w97 + sum_w98; sum_w24 = sum_w104 + sum_w103; sum_w69 = sum_w111 + sum_w112; sum_w139 = sum_w245 + sum_w246; sum_w140 = sum_w49 + sum_w50; sum_w65 = sum_w7 + sum_w8; sum_w27 = sum_w139 + sum_w140; sum_w66 = sum_w23 + sum_w24; sum_w28 = sum_w65 + sum_w66; sum_w70 = sum_w27 + sum_w28; sum_w207 = sum_w69 + sum_w70; *out = sum_w207 + temp_l83_i4000_w1; } void n4000_maxNodes_100_dotprod_parallel5(short x_0[13], short x_1[800], short x_2[800], short x_3[800], short x_4[800], short x_5[784], short x_6[3], short y_0[13], short y_1[800], short y_2[800], short y_3[800], short y_4[800], short y_5[784], short y_6[3], int *out) { // Step 2: Initialize local variables int sum_array_0[50]; int sum_array_1[50]; int sum_array_2[50]; int sum_array_3[50]; int sum_array_4[49]; #pragma HLS ARRAY_PARTITION variable=x_0 cyclic factor=13 dim=0 #pragma HLS ARRAY_PARTITION variable=x_1 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_2 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_3 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_4 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_5 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=x_6 cyclic factor=3 dim=0 #pragma HLS ARRAY_PARTITION variable=y_0 cyclic factor=13 dim=0 #pragma HLS ARRAY_PARTITION variable=y_1 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_2 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_3 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_4 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_5 cyclic factor=16 dim=0 #pragma HLS ARRAY_PARTITION variable=y_6 cyclic factor=3 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_0 cyclic factor=2 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_1 cyclic factor=2 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_2 cyclic factor=2 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_3 cyclic factor=2 dim=0 #pragma HLS ARRAY_PARTITION variable=sum_array_4 cyclic factor=2 dim=0 // Initialization done #pragma HLS dataflow parallel_0(x_1,y_1,sum_array_0); parallel_0(x_2,y_2,sum_array_1); parallel_0(x_3,y_3,sum_array_2); parallel_0(x_4,y_4,sum_array_3); parallel_1(x_5,y_5,sum_array_4); epilogue(sum_array_3,sum_array_2,y_6,sum_array_4,x_0,y_0,sum_array_1,x_6,sum_array_0,out); }
the_stack_data/132192.c
#include <stdio.h> #include <stdlib.h> int media(int v[10]){ int i,soma=0; float total; for(i=0;i<10;i++){ soma=v[i]+soma; } total=(float)soma/10.0; return total; } int main() {int a,z[10]; float k; for(a=0;a<10;a++){ printf("Digite o vetor na posicao v[%d]:",a+1); scanf("%d",&z[a]);} k=media(z); printf("A media sera:%f",k); }
the_stack_data/198579522.c
/******************************************************************************* * The confidential and proprietary information contained in this file may * * only be used by a person authorised under and to the extent permitted * * by a subsisting licensing agreement from ARM Limited or its affiliates. * * (C) COPYRIGHT [2001-2017] ARM Limited or its affiliates. * * ALL RIGHTS RESERVED * * This entire notice must be reproduced on all copies of this file * * and copies of this file may only be made by a person if such person is * * permitted to do so under the terms of a subsisting license agreement * * from ARM Limited or its affiliates. * *******************************************************************************/ #include <stdio.h> #include <stdint.h> #ifdef TZM #include "FreeRTOS.h" #include "test_pal_log.h" #include "test_pal_mem.h" #include "test_pal_mem_s.h" #include <arm_cmse.h> #endif #ifndef TZM /******************************************************************************/ void *Test_PalMalloc_s(size_t size) { (void)size; return NULL; } /******************************************************************************/ void Test_PalFree_s(void *pvAddress) { (void)pvAddress; } /******************************************************************************/ void *Test_PalRealloc_s(void *pvAddress, size_t newSize) { (void)pvAddress; (void)newSize; return NULL; } /******************************************************************************/ void *Test_PalDMAContigBufferAlloc_s(size_t size) { (void)size; return NULL; } /******************************************************************************/ void Test_PalDMAContigBufferFree_s(void *pvAddress) { (void)pvAddress; } /******************************************************************************/ void *Test_PalDMAContigBufferRealloc_s(void *pvAddress, size_t newSize) { (void)pvAddress; (void)newSize; return NULL; } /******************************************************************************/ unsigned long Test_PalGetDMABaseAddr_s(void) { return 0; } /******************************************************************************/ unsigned long Test_PalGetUnmanagedBaseAddr_s(void) { return 0; } /******************************************************************************/ uint32_t Test_PalMemInit_s(unsigned long newDMABaseAddr, unsigned long newUnmanagedBaseAddr, size_t DMAsize) { (void)newDMABaseAddr; (void)newUnmanagedBaseAddr; (void)DMAsize; return 1; } /******************************************************************************/ uint32_t Test_PalMemFin_s(void) { return 1; } #else static unsigned long unmanagedBaseAddr_s = 0; static uint8_t memInitialised_s = 0; /******************************************************************************/ void *Test_PalMalloc_s(size_t size) { /* A non-secure caller */ if (cmse_is_nsfptr(&Test_PalMalloc_s)) return NULL; /* A secure caller */ if (!size) return NULL; return pvPortMalloc(size); } /******************************************************************************/ void Test_PalFree_s(void *pvAddress) { /* A non-secure caller */ if (cmse_is_nsfptr(&Test_PalFree_s)) return; /* A secure caller */ if (pvAddress == NULL) return; vPortFree(pvAddress); } /******************************************************************************/ void *Test_PalRealloc_s(void *pvAddress, size_t newSize) { /* A non-secure caller */ if (cmse_is_nsfptr(&Test_PalRealloc_s)) return NULL; /* A secure caller */ if (pvAddress == NULL) return NULL; return pvPortRealloc(pvAddress, newSize); } /******************************************************************************/ void *Test_PalDMAContigBufferAlloc_s(size_t size) { return Test_PalMalloc_s(size); } /******************************************************************************/ void Test_PalDMAContigBufferFree_s(void *pvAddress) { Test_PalFree_s(pvAddress); } /******************************************************************************/ void *Test_PalDMAContigBufferRealloc_s(void *pvAddress, size_t newSize) { return Test_PalRealloc_s(pvAddress, newSize); } /******************************************************************************/ unsigned long Test_PalGetDMABaseAddr_s(void) { return 0; } /******************************************************************************/ unsigned long Test_PalGetUnmanagedBaseAddr_s(void) { return unmanagedBaseAddr_s; } /******************************************************************************/ uint32_t Test_PalMemInit_s(unsigned long newDMABaseAddr_s, unsigned long newUnmanagedBaseAddr_s, size_t SDMAsize) { /* A non-secure caller */ if (cmse_is_nsfptr(&Test_PalMemInit_s)) return 1; /* A secure caller */ if(memInitialised_s) { TEST_PRINTF_ERROR("Secure memory is already initialised"); return 1; } (void)newDMABaseAddr_s; (void)SDMAsize; unmanagedBaseAddr_s = newUnmanagedBaseAddr_s; memInitialised_s = 1; return 0; } /******************************************************************************/ uint32_t Test_PalMemFin_s(void) { /* A non-secure caller */ if (cmse_is_nsfptr(&Test_PalMemFin_s)) return 1; /* A secure caller */ unmanagedBaseAddr_s = 0; memInitialised_s = 0; return 0; } #endif
the_stack_data/23576029.c
/* Database "voter_2" contains tables: student voting_record */ #ifndef VOTER_2 #define VOTER_2 struct T_student { double student_id; char last_name[9]; char first_name[8]; double age; char sex[2]; double major; double advisor; char city_code[4]; }; struct T_voting_record { double student_id; // --> student.student_id char registration_date[11]; char election_cycle[7]; double president_vote; // --> student.student_id double vice_president_vote; // --> student.student_id double secretary_vote; // --> student.student_id double treasurer_vote; // --> student.student_id double class_president_vote; // --> student.student_id double class_senator_vote; // --> student.student_id }; struct T_student student[] = { { 1001, "Smith", "Linda", 18, "F", 600, 1121, "BAL" }, { 1002, "Kim", "Tracy", 19, "F", 600, 7712, "HKG" }, { 1003, "Jones", "Shiela", 21, "F", 600, 7792, "WAS" }, { 1004, "Kumar", "Dinesh", 20, "M", 600, 8423, "CHI" }, { 1005, "Gompers", "Paul", 26, "M", 600, 1121, "YYZ" }, { 1006, "Schultz", "Andy", 18, "M", 600, 1148, "BAL" }, { 1007, "Apap", "Lisa", 18, "F", 600, 8918, "PIT" }, { 1008, "Nelson", "Jandy", 20, "F", 600, 9172, "BAL" }, { 1009, "Tai", "Eric", 19, "M", 600, 2192, "YYZ" }, { 1010, "Lee", "Derek", 17, "M", 600, 2192, "HOU" }, { 1011, "Adams", "David", 22, "M", 600, 1148, "PHL" }, { 1012, "Davis", "Steven", 20, "M", 600, 7723, "PIT" }, { 1014, "Norris", "Charles", 18, "M", 600, 8741, "DAL" }, { 1015, "Lee", "Susan", 16, "F", 600, 8721, "HKG" }, { 1016, "Schwartz", "Mark", 17, "M", 600, 2192, "DET" }, { 1017, "Wilson", "Bruce", 27, "M", 600, 1148, "LON" }, { 1018, "Leighton", "Michael", 20, "M", 600, 1121, "PIT" }, { 1019, "Pang", "Arthur", 18, "M", 600, 2192, "WAS" }, { 1020, "Thornton", "Ian", 22, "M", 520, 7271, "NYC" }, { 1021, "Andreou", "George", 19, "M", 520, 8722, "NYC" }, { 1022, "Woods", "Michael", 17, "M", 540, 8722, "PHL" }, { 1023, "Shieber", "David", 20, "M", 520, 8722, "NYC" }, { 1024, "Prater", "Stacy", 18, "F", 540, 7271, "BAL" }, { 1025, "Goldman", "Mark", 18, "M", 520, 7134, "PIT" }, { 1026, "Pang", "Eric", 19, "M", 520, 7134, "HKG" }, { 1027, "Brody", "Paul", 18, "M", 520, 8723, "LOS" }, { 1028, "Rugh", "Eric", 20, "M", 550, 2311, "ROC" }, { 1029, "Han", "Jun", 17, "M", 100, 2311, "PEK" }, { 1030, "Cheng", "Lisa", 21, "F", 550, 2311, "SFO" }, { 1031, "Smith", "Sarah", 20, "F", 550, 8772, "PHL" }, { 1032, "Brown", "Eric", 20, "M", 550, 8772, "ATL" }, { 1033, "Simms", "William", 18, "M", 550, 8772, "NAR" }, { 1034, "Epp", "Eric", 18, "M", 50, 5718, "BOS" }, { 1035, "Schmidt", "Sarah", 26, "F", 50, 5718, "WAS" } }; struct T_voting_record voting_record[] = { { 1001, "08/30/2015", "Spring", 1004, 1007, 1010, 1035, 1001, 1028 }, { 1002, "08/30/2014", "Spring", 1014, 1007, 1020, 1025, 1021, 1028 }, { 1003, "08/30/2013", "Spring", 1004, 1017, 1030, 1035, 1031, 1028 }, { 1004, "08/30/2013", "Spring", 1024, 1017, 1020, 1035, 1011, 1028 }, { 1005, "08/30/2012", "Spring", 1024, 1017, 1010, 1035, 1021, 1028 }, { 1001, "08/30/2015", "Fall", 1004, 1007, 1010, 1035, 1021, 1028 }, { 1002, "08/30/2014", "Fall", 1004, 1007, 1020, 1035, 1021, 1028 }, { 1003, "08/30/2013", "Fall", 1004, 1017, 1020, 1035, 1031, 1028 }, { 1004, "08/30/2013", "Fall", 1024, 1017, 1020, 1035, 1011, 1018 }, { 1005, "08/30/2012", "Fall", 1024, 1017, 1010, 1035, 1021, 1028 } }; #endif
the_stack_data/59512642.c
// RUN: %clang_cc1 %s -verify -fsyntax-only void f1(void) __attribute__((ownership_takes("foo"))); // expected-error {{'ownership_takes' attribute requires parameter 1 to be an identifier}} void *f2(void) __attribute__((ownership_returns(foo, 1, 2))); // expected-error {{'ownership_returns' attribute takes no more than 1 argument}} void f3(void) __attribute__((ownership_holds(foo, 1))); // expected-error {{'ownership_holds' attribute parameter 1 is out of bounds}} void *f4(void) __attribute__((ownership_returns(foo))); void f5(void) __attribute__((ownership_holds(foo))); // expected-error {{'ownership_holds' attribute takes at least 2 arguments}} void f6(void) __attribute__((ownership_holds(foo, 1, 2, 3))); // expected-error {{'ownership_holds' attribute parameter 1 is out of bounds}} void f7(void) __attribute__((ownership_takes(foo))); // expected-error {{'ownership_takes' attribute takes at least 2 arguments}} void f8(int *i, int *j, int k) __attribute__((ownership_holds(foo, 1, 2, 4))); // expected-error {{'ownership_holds' attribute parameter 3 is out of bounds}} int f9 __attribute__((ownership_takes(foo, 1))); // expected-warning {{'ownership_takes' attribute only applies to non-K&R-style functions}} void f10(int i) __attribute__((ownership_holds(foo, 1))); // expected-error {{'ownership_holds' attribute only applies to pointer arguments}} void *f11(float i) __attribute__((ownership_returns(foo, 1))); // expected-error {{'ownership_returns' attribute only applies to integer arguments}} void *f12(float i, int k, int f, int *j) __attribute__((ownership_returns(foo, 4))); // expected-error {{'ownership_returns' attribute only applies to integer arguments}} void f13(int *i, int *j) __attribute__((ownership_holds(foo, 1))) __attribute__((ownership_takes(foo, 2))); void f14(int i, int j, int *k) __attribute__((ownership_holds(foo, 3))) __attribute__((ownership_takes(foo, 3))); // expected-error {{'ownership_holds' and 'ownership_takes' attributes are not compatible}} void f15(int, int) __attribute__((ownership_returns(foo, 1))) // expected-note {{declared with index 1 here}} __attribute__((ownership_returns(foo, 2))); // expected-error {{'ownership_returns' attribute index does not match; here it is 2}} void f16(int *i, int *j) __attribute__((ownership_holds(foo, 1))) __attribute__((ownership_holds(foo, 1))); // OK, same index void f17(void*) __attribute__((ownership_takes(__, 1))); void f18() __attribute__((ownership_takes(foo, 1))); // expected-warning {{'ownership_takes' attribute only applies to non-K&R-style functions}}
the_stack_data/150140281.c
extern int nondet_int(void); void __VERIFIER_assert(int cond) { if (!(cond)) { ERROR: goto ERROR; } return; } /* emulates multi-precision addition */ #include <assert.h> // @ensures \result == a + b unsigned int mp_add(unsigned int a, unsigned int b) { unsigned char a0, a1, a2, a3; unsigned char b0, b1, b2, b3; unsigned char r0, r1, r2, r3; unsigned short carry; unsigned short partial_sum; unsigned int r; unsigned char i; unsigned char na, nb; a0 = a; a1 = a >> 8; a2 = a >> 16U; a3 = a >> 24U; b0 = b; b1 = b >> 8U; b2 = b >> 16U; b3 = b >> 24U; na = (unsigned char)4; /* num of components of a */ if (a3 == (unsigned char)0) { na = na - 1; if (a2 == (unsigned char)0) { na = na - 1; if (a1 == (unsigned char)0) { na = na - 1; } } } nb = (unsigned char)4; /* num of components of b */ if (b3 == (unsigned char)0) { nb = nb - 1; if (b2 == (unsigned char)0) { nb = nb - 1; if (b1 == (unsigned char)0) { nb = nb - 1; } } } carry = (unsigned short)0; i = (unsigned char)0; while ((i < na) || (i < nb) || (carry != (unsigned short)0)) { partial_sum = carry; carry = (unsigned short)0; if (i < na) { if (i == (unsigned char)0) { partial_sum = partial_sum + a0; } if (i == (unsigned char)1) { partial_sum = partial_sum + a1; } if (i == (unsigned char)2) { partial_sum = partial_sum + a2; } if (i == (unsigned char)3) { partial_sum = partial_sum + a3; } } if (i < nb) { if (i == (unsigned char)0) { partial_sum = partial_sum + b0; } if (i == (unsigned char)1) { partial_sum = partial_sum + b1; } if (i == (unsigned char)2) { partial_sum = partial_sum + b2; } if (i == (unsigned char)3) { partial_sum = partial_sum + b3; } } if (partial_sum > ((unsigned char)255)) { partial_sum = partial_sum & ((unsigned char)255); carry = (unsigned short)1; } if (i == (unsigned char)0) { r0 = (unsigned char)partial_sum; } if (i == (unsigned char)1) { r1 = (unsigned char)partial_sum; } if (i == (unsigned char)2) { r2 = (unsigned char)partial_sum; } if (i == (unsigned char)3) { r3 = (unsigned char)partial_sum; } i = i + (unsigned char)1; } while (i < (unsigned char)4) { if (i == (unsigned char)0) { r0 = (unsigned char)0; } if (i == (unsigned char)1) { r1 = (unsigned char)0; } if (i == (unsigned char)2) { r2 = (unsigned char)0; } if (i == (unsigned char)3) { r3 = (unsigned char)0; } i = i + (unsigned char)1; } r = r0 | (r1 << 8U) | (r2 << 16U) | (r3 << 24U); return r; } int main() { unsigned int a, b, r; b = 234770789; r = mp_add(a, b); __VERIFIER_assert(r == a + b); return 0; }
the_stack_data/800608.c
#include <stdio.h> #include <stdlib.h> typedef struct node { int n; struct node *next; } node; void print_list(node*); void add_node(node* list, int value); int main(void) { node *list = NULL, *tmp = NULL; tmp = malloc(sizeof(node)); list = tmp; // new node is the head of the list tmp->n = 42; printf("list->n = %d\n", list->n); tmp = malloc(sizeof(node)); tmp->n = 666; list->next = tmp; printf("list->next->n = %d\n", list->next->n); tmp = malloc(sizeof(node)); tmp->n = 69; list->next->next = tmp; printf("list->next->next->n = %d\n", list->next->next->n); // now we use the function add_node add_node(list, 10); add_node(list, 20); add_node(list, 30); add_node(list, 40); add_node(list, 50); print_list(list); return 0; } void print_list(node *list) { printf("Items on the list are: "); node *cur = list; while(cur->next) { printf("%d, ", cur->n); cur = cur->next; } printf("%d\n", cur->n); } void add_node(node* list, int value) { node *cur, *tmp; tmp = malloc(sizeof(node)); tmp->n = value; cur = list; // find the last node while (cur->next) { cur = cur->next; } // place the new node in the end of the list cur->next = tmp; }
the_stack_data/68888965.c
#if defined (_MSC_VER) #include <windows.h> #else #include <sys/time.h> #include <unistd.h> #endif #ifdef __cplusplus extern "C" { #endif /** * @brief Sleep the current thread for specific number of milliseconds * @param millis The number of milliseconds to sleep the thread. */ void msleep(int millis); #ifdef __cplusplus } #endif #if defined (_MSC_VER) void msleep(int millis) { Sleep(millis); } #else void msleep(int millis) { // This call actually takes a microsecond argument so make the adjustment usleep(millis * 1000); } #endif
the_stack_data/1195287.c
//62) Write a program to swap two numbers using bitwise operators. #include <stdio.h> #include <stdlib.h> int main() { int n1, n2; printf("Enter first and second number:"); scanf("\n%d%d", &n1, &n2); n1 = n1 ^ n2; n2 = n1 ^ n2; n1 = n1 ^ n2; printf("After swapping first number is:%d \n second number is:%d", n1, n2); return 0; }
the_stack_data/165768946.c
/* Standard include files. stdio.h is required. */ #include <stdlib.h> #include <unistd.h> #include <string.h> /* Used for select(2) */ #include <sys/types.h> #include <sys/select.h> #include <stdio.h> /* Standard readline include files. */ #if defined (READLINE_LIBRARY) # include "readline.h" # include "history.h" #else # include <readline/readline.h> # include <readline/history.h> #endif static void cb_linehandler (char *); int running; const char *prompt = "rltest$ "; /* Callback function called for each line when accept-line executed, EOF seen, or EOF character read. This sets a flag and returns; it could also call exit(3). */ static void cb_linehandler (char *line) { /* Can use ^D (stty eof) or `exit' to exit. */ if (line == NULL || strcmp (line, "exit") == 0) { if (line == 0) printf ("\n"); printf ("exit\n"); /* This function needs to be called to reset the terminal settings, and calling it from the line handler keeps one extra prompt from being displayed. */ rl_callback_handler_remove (); running = 0; } else { if (*line) add_history (line); printf ("input line: %s\n", line); free (line); } } int main (int c, char **v) { fd_set fds; int r; /* Install the line handler. */ rl_callback_handler_install (prompt, cb_linehandler); /* Enter a simple event loop. This waits until something is available to read on readline's input stream (defaults to standard input) and calls the builtin character read callback to read it. It does not have to modify the user's terminal settings. */ running = 1; while (running) { FD_ZERO (&fds); FD_SET (fileno (rl_instream), &fds); r = select (FD_SETSIZE, &fds, NULL, NULL, NULL); if (r < 0) { perror ("rltest: select"); rl_callback_handler_remove (); break; } if (FD_ISSET (fileno (rl_instream), &fds)) rl_callback_read_char (); } printf ("rltest: Event loop has exited\n"); return 0; }
the_stack_data/89199045.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: ioleinik <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/05/14 09:09:42 by ioleinik #+# #+# */ /* Updated: 2021/05/14 09:13:06 by ioleinik ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isprint(int ch) { if (ch >= 32 && ch <= 126) return (1); return (0); }
the_stack_data/86076467.c
// Basic Queue Operations // Author @AmitManna99 #include<stdio.h> #include<stdlib.h> #define SIZE 10 typedef struct queue { int front,rear; int arr[SIZE]; } queue; int isFull(queue *); int isEmpty(queue *); void insert(queue *, int); int del(queue *); void display(queue *); int main() { int ch, n, data; char c; queue Q = {-1,-1}; do { printf("\n\n------MENU------\n"); printf("1. INSERT\n"); printf("2. DELETE\n"); printf("3. DISPLAY\n"); printf("Enter Choice : "); scanf("%d", &ch); switch (ch) { case 1: printf("\nEnter the element to insert : "); scanf("%d", &data); insert(&Q, data); break; case 2: data = del(&Q); if (data == -9999) break; printf("\n%d Deleted.", data); break; case 3: display(&Q); break; default: printf("\nInvalid option"); break; } printf("\nDo you want to continue? (y/n) : "); c = getche(); } while (c == 'y' || c == 'Y'); return 0; } int isFull(queue *qp) //If the Queue was Full { if (qp->rear == SIZE - 1) return 1; return 0; } int isEmpty(queue *qp) //If the Queue was empty { if (qp->rear == qp->front) return 1; return 0; } void insert(queue *qp, int item) //inserting elements into Queue { if (isFull(qp)) printf("\nQueue is Full"); else { qp->rear++; qp->arr[qp->rear] = item; } } int del(queue *qp) //Deleting elements from queue { if (isEmpty(qp)) { printf("\nQueue is Empty"); return -9999; } else { qp->front++; return qp->arr[qp->front]; } } void display(queue *qp) //Printing the Queue { for (int i = qp->front + 1; i <= qp->rear; i++) printf("(%d) -", qp->arr[i]); }
the_stack_data/45450339.c
#include<stdio.h> int main() { char c = 83; //char * c_point = &c; // if c_point is always point to c char * const c_point = &c ; printf("%c\n",*c_point); char d = 84; //if we set c_point = &d ,its error; //c_point = &d ; const char * d_point = &d ; //*d_point = 87; its error but as follow d = 70; char e = 84; d_point = &e ; // also can be modify by point to other variables printf("%c\n",*d_point); }
the_stack_data/144914.c
#ifndef THCS_GENERIC_FILE #define THCS_GENERIC_FILE "generic/THCSTensor.c" #else /****************************************************************************** * access methods ******************************************************************************/ int THCSTensor_(nDimension)(THCState *state, const THCSTensor *self) { return self->nDimensionI + self->nDimensionV; } int THCSTensor_(nDimensionI)(THCState *state, const THCSTensor *self) { return self->nDimensionI; } int THCSTensor_(nDimensionV)(THCState *state, const THCSTensor *self) { return self->nDimensionV; } int64_t THCSTensor_(size)(THCState *state, const THCSTensor *self, int dim) { THArgCheck((dim >= 0) && (dim < self->nDimensionI + self->nDimensionV), 1, "dimension %d out of range of %dD tensor", dim+1, THCSTensor_(nDimension)(state, self)); return self->size[dim]; } ptrdiff_t THCSTensor_(nnz)(THCState *state, const THCSTensor *self) { return self->nnz; } THLongStorage *THCSTensor_(newSizeOf)(THCState *state, THCSTensor *self) { THLongStorage *size = THLongStorage_newWithSize(self->nDimensionI + self->nDimensionV); THLongStorage_rawCopy(size, self->size); return size; } /*** TODO: watch out for memory leaks ***/ THCIndexTensor *THCSTensor_(newIndices)(THCState *state, const THCSTensor *self) { if (self->nnz == 0) { // Narrows don't work on 0-length tensors THCIndexTensor_(retain)(state, self->indices); return self->indices; } return THCIndexTensor_(newNarrow)(state, self->indices, 1, 0, self->nnz); } THCTensor *THCSTensor_(newValues)(THCState *state, const THCSTensor *self) { if (self->nnz == 0) { THCTensor_(retain)(state, self->values); return self->values; } return THCTensor_(newNarrow)(state, self->values, 0, 0, self->nnz); } /****************************************************************************** * creation methods ******************************************************************************/ /*** Helper methods ***/ static void THCSTensor_(rawInit)(THCState *state, THCSTensor *self) { self->size = NULL; self->indices = THCIndexTensor_(new)(state); self->values = THCTensor_(new)(state); self->nDimensionI = 0; self->nDimensionV = 0; self->coalesced = 0; self->nnz = 0; // self->flag = TH_TENSOR_REFCOUNTED; self->refcount = 1; } void THCSTensor_(rawResize)(THCState *state, THCSTensor *self, int nDimI, int nDimV, int64_t *size) { // Only resize valid sizes into tensor. self->size = THRealloc(self->size, sizeof(int64_t)*(nDimI + nDimV)); for (int64_t d = 0; d < nDimI + nDimV; d++) { self->size[d] = size[d]; } self->nDimensionI = nDimI; self->nDimensionV = nDimV; self->coalesced = 0; } // directly assign without cloning or retaining (internal method) THCSTensor* THCSTensor_(_move)(THCState *state, THCSTensor *self, THCIndexTensor *indices, THCTensor *values) { int empty = THCTensor_(nDimension)(state, values) == 0; if (!empty) { THArgCheck(THCIndexTensor_(nDimension)(state, indices) == 2, 2, "indices must be nDim x nnz"); THArgCheck(THCIndexTensor_(size)(state, indices, 1) == THCTensor_(size)(state, values, 0), 2, "indices and values must have same nnz"); THArgCheck(THCIndexTensor_(size)(state, indices, 0) == self->nDimensionI, 2, "indices has incorrect first dimension, expected %d, got %d", self->nDimensionI, THCIndexTensor_(size)(state, indices, 0)); THArgCheck(THCTensor_(nDimension)(state, values) == self->nDimensionV + 1, 3, "values has incorrect number of dimensions, expected %d, got %d", self->nDimensionV + 1, THCTensor_(nDimension)(state, values)); } else { THArgCheck(THCIndexTensor_(nDimension)(state, indices) == 0, 2, "if values is empty, indices must be empty too"); } THCIndexTensor_(free)(state, self->indices); THCTensor_(free)(state, self->values); self->indices = indices; self->values = values; self->nnz = empty ? 0 : THCTensor_(size)(state, values, 0); self->coalesced = 0; return self; } THCSTensor* THCSTensor_(_set)(THCState *state, THCSTensor *self, THCIndexTensor *indices, THCTensor *values) { // Note: Not like torch.set, this is an internal method return THCSTensor_(_move)(state, self, THCIndexTensor_(newClone)(state, indices), THCTensor_(newClone)(state, values)); } /*** end helper methods ***/ /* Empty init */ THCSTensor *THCSTensor_(new)(THCState *state) { THCSTensor *self = THAlloc(sizeof(THCSTensor)); THCSTensor_(rawInit)(state, self); return self; } /* Pointer-copy init */ THCSTensor *THCSTensor_(newWithTensor)(THCState *state, THCIndexTensor *indices, THCTensor *values) { return THCSTensor_(newWithTensorAndSize)(state, indices, values, NULL); } THCSTensor *THCSTensor_(newWithTensorAndSize)(THCState *state, THCIndexTensor *indices, THCTensor *values, THLongStorage *sizes) { // If sizes are not given, it is inferred as max index of each dim. int64_t nDimI, nDimV; THCSTensor *self = THAlloc(sizeof(THCSTensor)); THCSTensor_(rawInit)(state, self); nDimI = THCIndexTensor_(size)(state, indices, 0); nDimV = THCTensor_(nDimension)(state, values) - 1; if (!sizes) { // TODO Make it work with N-dimensional values THArgCheck(nDimV > 0, 3, "size must be provided when nDimV > 0"); THLongTensor *computed_sizes; THCudaLongTensor *ignore = THCudaLongTensor_new(state); THCIndexTensor *s = THCIndexTensor_(new)(state); THCIndexTensor_(max)(state, s, ignore, indices, 1); THCIndexTensor_(add)(state, s, s, 1); // TODO make sure this doesn't sync the hell out of everything // Should be fine according to sam's memory manager. THLongStorage *newSize = THCIndexTensor_(newSizeOf)(state, s); computed_sizes = THLongTensor_newWithSize(newSize, NULL); THLongStorage_free(newSize); THLongTensor_copyCudaLong(state, computed_sizes, s); THCSTensor_(rawResize)(state, self, nDimI, nDimV, THLongTensor_data(computed_sizes)); THCIndexTensor_(free)(state, s); THCudaLongTensor_free(state, ignore); THLongTensor_free(computed_sizes); } else { THArgCheck(THLongStorage_size(sizes) == nDimI + nDimV, 3, "number of dimensions must be nDimI + nDimV"); THCSTensor_(rawResize)(state, self, nDimI, nDimV, THLongStorage_data(sizes)); } THCSTensor_(_set)(state, self, indices, values); return self; } THCSTensor *THCSTensor_(newWithSize)(THCState *state, THLongStorage *size) { THCSTensor *self = THAlloc(sizeof(THCSTensor)); THCSTensor_(rawInit)(state, self); THCSTensor_(rawResize)(state, self, size->size, 0, size->data); return self; } THCSTensor *THCSTensor_(newWithSize1d)(THCState *state, int64_t size0) { int64_t size[1] = {size0}; THCSTensor *self = THAlloc(sizeof(THCSTensor)); THCSTensor_(rawInit)(state, self); THCSTensor_(rawResize)(state, self, 1, 0, size); return self; } THCSTensor *THCSTensor_(newWithSize2d)(THCState *state, int64_t size0, int64_t size1) { int64_t size[2] = {size0, size1}; THCSTensor *self = THAlloc(sizeof(THCSTensor)); THCSTensor_(rawInit)(state, self); THCSTensor_(rawResize)(state, self, 2, 0, size); return self; } THCSTensor *THCSTensor_(newWithSize3d)(THCState *state, int64_t size0, int64_t size1, int64_t size2) { int64_t size[3] = {size0, size1, size2}; THCSTensor *self = THAlloc(sizeof(THCSTensor)); THCSTensor_(rawInit)(state, self); THCSTensor_(rawResize)(state, self, 3, 0, size); return self; } THCSTensor *THCSTensor_(newWithSize4d)(THCState *state, int64_t size0, int64_t size1, int64_t size2, int64_t size3) { int64_t size[4] = {size0, size1, size2, size3}; THCSTensor *self = THAlloc(sizeof(THCSTensor)); THCSTensor_(rawInit)(state, self); THCSTensor_(rawResize)(state, self, 4, 0, size); return self; } THCSTensor *THCSTensor_(newClone)(THCState *state, THCSTensor *self) { THCSTensor *other = THCSTensor_(new)(state); THCSTensor_(rawResize)(state, other, self->nDimensionI, self->nDimensionV, self->size); THCSTensor_(_set)(state, other, self->indices, self->values); other->nnz = self->nnz; other->coalesced = self->coalesced; return other; } THCSTensor *THCSTensor_(newTranspose)(THCState *state, THCSTensor *self, int d1, int d2) { THCSTensor *other = THCSTensor_(newClone)(state, self); THCSTensor_(transpose)(state, other, d1, d2); return other; } THCTensor *THCSTensor_(newValuesWithSizeOf)(THCState *state, THCTensor *values, int64_t nnz) { THCTensor *new_values; if (THCTensor_(nDimension)(state, values) == 0) { // values tensor uninitialized new_values = THCTensor_(newWithSize1d)(state, nnz); } else { THLongStorage *size = THCTensor_(newSizeOf)(state, values); size->data[0] = nnz; new_values = THCTensor_(newWithSize)(state, size, NULL); THLongStorage_free(size); } return new_values; } /****************************************************************************** * reshaping methods ******************************************************************************/ int THCSTensor_(isSameSizeAs)(THCState *state, const THCSTensor *self, const THCSTensor* src) { if (self->nDimensionI != src->nDimensionI || self->nDimensionV != src->nDimensionV) return 0; for(int d = 0; d < self->nDimensionI + self->nDimensionV; ++d) { if(self->size[d] != src->size[d]) { return 0; } } return 1; } int THCSTensor_(isSameSizeAsDense)(THCState *state, const THCSTensor *self, const THCTensor* src) { if (self->nDimensionI + self->nDimensionV != src->nDimension) return 0; for(int d = 0; d < src->nDimension; ++d) { if(self->size[d] != src->size[d]) { return 0; } } return 1; } THCSTensor *THCSTensor_(resize)(THCState *state, THCSTensor *self, THLongStorage *size) { THCSTensor_(rawResize)(state, self, size->size, 0, size->data); return self; } THCSTensor *THCSTensor_(resizeAs)(THCState *state, THCSTensor *self, THCSTensor *src) { if(!THCSTensor_(isSameSizeAs)(state, self, src)) { THCSTensor_(rawResize)(state, self, src->nDimensionI, src->nDimensionV, src->size); } return self; } THCSTensor *THCSTensor_(resize1d)(THCState *state, THCSTensor *self, int64_t size0) { int64_t size[1] = {size0}; THCSTensor_(rawResize)(state, self, 1, 0, size); return self; } THCSTensor *THCSTensor_(resize2d)(THCState *state, THCSTensor *self, int64_t size0, int64_t size1) { int64_t size[2] = {size0, size1}; THCSTensor_(rawResize)(state, self, 2, 0, size); return self; } THCSTensor *THCSTensor_(resize3d)(THCState *state, THCSTensor *self, int64_t size0, int64_t size1, int64_t size2) { int64_t size[3] = {size0, size1, size2}; THCSTensor_(rawResize)(state, self, 3, 0, size); return self; } THCSTensor *THCSTensor_(resize4d)(THCState *state, THCSTensor *self, int64_t size0, int64_t size1, int64_t size2, int64_t size3) { int64_t size[4] = {size0, size1, size2, size3}; THCSTensor_(rawResize)(state, self, 4, 0, size); return self; } void THCSTensor_(copy)(THCState *state, THCSTensor *self, THCSTensor *src) { if (self == src) return; THCSTensor_(rawResize)(state, self, src->nDimensionI, src->nDimensionV, src->size); THCSTensor_(_set)(state, self, src->indices, src->values); self->nnz = src->nnz; self->coalesced = src->coalesced; } int THCSTensor_(isCoalesced)(THCState *state, const THCSTensor *self) { return self->coalesced; } void THCSTensor_(free)(THCState *state, THCSTensor *self) { if(!self) return; if(THAtomicDecrementRef(&self->refcount)) { THFree(self->size); THCIndexTensor_(free)(state, self->indices); THCTensor_(free)(state, self->values); THFree(self); } } void THCSTensor_(retain)(THCState *state, THCSTensor *self) { THAtomicIncrementRef(&self->refcount); } int THCSTensor_(checkGPU)(THCState *state, unsigned int nSparseTensors, unsigned int nTensors, ...) { /* FIXME: remove this flag after any users stop using it since it is now superseded by the runtime option */ #ifdef DISABLE_CHECK_GPU return 1; #else int kernelP2PEnabled = THCState_getKernelPeerToPeerAccessEnabled(state); int curDev = -1; unsigned int nDenseTensors = nTensors - nSparseTensors; THCudaCheck(cudaGetDevice(&curDev)); va_list(args); va_start(args, nTensors); int valid = 1; int sparse = 1; for (unsigned int i = 0; i < nSparseTensors + nDenseTensors; i++) { THCSTensor *sparseTensor; THCTensor *denseTensor; if (i < nSparseTensors) { sparseTensor = va_arg(args, THCSTensor*); if (sparseTensor == NULL) { continue; } } else { denseTensor = va_arg(args, THCTensor*); if (denseTensor == NULL) { continue; } } int tensorDev = i < nSparseTensors ? THCSTensor_(getDevice)(state, sparseTensor) : THCTensor_(getDevice)(state, denseTensor); if (tensorDev == -1) { /* This tensor does not have GPU memory (empty) */ continue; } if (tensorDev != curDev) { if (kernelP2PEnabled) { /* Kernel p2p access is allowed */ /* Can `curDev` access `tensorDev` directly? */ if (!THCState_getPeerToPeerAccess(state, curDev, tensorDev)) { valid = 0; break; } } else { /* No kernel p2p access allowed */ valid = 0; break; } } } va_end(args); return valid; #endif // DISABLE_CHECK_GPU } void THCTensor_(sparseMask)(THCState *state, THCSTensor *r_, THCTensor *t, THCSTensor *mask) { THArgCheck(mask->coalesced, 2, "mask is uncoalesced"); THCAssertSameGPU(THCSTensor_(checkGPU)(state, 2, 3, r_, mask, t)); if(!THCSTensor_(isSameSizeAsDense)(state, mask, t)) { THError("sparseMask operands have incompatible sizes"); } THCSTensor_(resizeAs)(state, r_, mask); if (mask->nnz == 0) { THCSTensor_(zero)(state, r_); return; } THCIndexTensor *maskIndices = THCSTensor_(newIndices)(state, mask); THCTensor *maskValues = THCSTensor_(newValues)(state, mask); THCTensor *rValues = THCTensor_(new)(state); THCTensor_(resizeAs)(state, rValues, maskValues); THCSTensor_(_move)(state, r_, THCIndexTensor_(newClone)(state, maskIndices), rValues); r_->coalesced = mask->coalesced; r_->nnz = mask->nnz; THCudaLongTensor *indices = THCudaLongTensor_newWithSize1d(state, mask->nnz); THCudaLongTensor *indicesBuffer = THCudaLongTensor_new(state); THCudaLongTensor_zero(state, indices); for (int64_t d = 0; d < mask->nDimensionI; d++) { THCudaLongTensor_mul(state, indices, indices, mask->size[d]); THCudaLongTensor_select(state, indicesBuffer, maskIndices, 0, d); THCudaLongTensor_cadd(state, indices, indices, 1, indicesBuffer); } THLongStorage *viewSize = THLongStorage_newWithSize(1 + mask->nDimensionV); viewSize->data[0] = -1; for (int64_t d = 0; d < mask->nDimensionV; d++) { viewSize->data[1 + d] = mask->size[mask->nDimensionI + d]; } THCTensor *t_view = THCTensor_(newView)(state, t, viewSize); THCTensor_(indexSelect)(state, rValues, t_view, 0, indices); THCudaLongTensor_free(state, indices); THCudaLongTensor_free(state, indicesBuffer); THLongStorage_free(viewSize); THCTensor_(free)(state, t_view); THCIndexTensor_(free)(state, maskIndices); THCTensor_(free)(state, maskValues); } #endif
the_stack_data/181394263.c
void main(){ int i,found; int UNK1,UNK2; i=0; /*IN*/ while (UNK1) /*IN*/{ if (i==5) /*IN*/ break /*IN*/; while (UNK2) /*IN*/{ if (i==10) /*IN*/{found=1 /*IN*/; break /*IN*/;} /*else IN */ i++; /*IN*/ } } return; /*OUT*/ _SLICE(found); }
the_stack_data/104406.c
#include<stdio.h> int main() { int x,i,j,a,flag; scanf("%d",&x); for(i=x+1; i<2*x; i+=1) { for(j=2; j<i; j++) { if(i%j!=0) { if(j==i-1) { a=i; flag=1; break; } else continue; } else { flag=0; break; } } if(flag) break; else continue; } printf("%d",a); }
the_stack_data/123340.c
struct node { struct node *next; int value; }; /*@ predicate nodes(struct node *node, int count) = node == 0 ? count == 0 : 0 < count &*& node->next |-> ?next &*& node->value |-> ?value &*& malloc_block_node(node) &*& nodes(next, count - 1); @*/ struct stack { struct node *head; }; /*@ predicate stack(struct stack *stack, int count) = stack->head |-> ?head &*& malloc_block_stack(stack) &*& 0 <= count &*& nodes(head, count); @*/ int stack_get_count(struct stack *stack) //@ requires stack(stack, ?count); //@ ensures stack(stack, count) &*& result == count; { //@ open stack(stack, count); struct node *n = stack->head; int i = 0; for (;;) //@ requires nodes(n, ?count1); //@ ensures nodes(old_n, count1) &*& i == old_i + count1; { //@ open nodes(n, count1); if (n == 0) { //@ close nodes(n, count1); break; } n = n->next; i++; //@ recursive_call(); //@ close nodes(old_n, count1); } //@ close stack(stack, count); return i; }
the_stack_data/165767950.c
// WARNING in handle_desc // https://syzkaller.appspot.com/bug?id=e75ca1ea244632cb84462c23ff0dba7eaf78e0ad // status:open // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <endian.h> #include <errno.h> #include <fcntl.h> #include <setjmp.h> #include <signal.h> #include <stdarg.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/ioctl.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/types.h> #include <unistd.h> #include <linux/kvm.h> static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; if (__atomic_load_n(&skip_segv, __ATOMIC_RELAXED) && (addr < prog_start || addr > prog_end)) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ { \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ } const char kvm_asm16_cpl3[] = "\x0f\x20\xc0\x66\x83\xc8\x01\x0f\x22\xc0\xb8\xa0" "\x00\x0f\x00\xd8\xb8\x2b\x00\x8e\xd8\x8e\xc0\x8e" "\xe0\x8e\xe8\xbc\x00\x01\xc7\x06\x00\x01\x1d\xba" "\xc7\x06\x02\x01\x23\x00\xc7\x06\x04\x01\x00\x01" "\xc7\x06\x06\x01\x2b\x00\xcb"; const char kvm_asm32_paged[] = "\x0f\x20\xc0\x0d\x00\x00\x00\x80\x0f\x22\xc0"; const char kvm_asm32_vm86[] = "\x66\xb8\xb8\x00\x0f\x00\xd8\xea\x00\x00\x00\x00\xd0\x00"; const char kvm_asm32_paged_vm86[] = "\x0f\x20\xc0\x0d\x00\x00\x00\x80\x0f\x22" "\xc0\x66\xb8\xb8\x00\x0f\x00\xd8\xea\x00" "\x00\x00\x00\xd0\x00"; const char kvm_asm64_enable_long[] = "\x0f\x20\xc0\x0d\x00\x00\x00\x80\x0f\x22" "\xc0\xea\xde\xc0\xad\x0b\x50\x00\x48\xc7" "\xc0\xd8\x00\x00\x00\x0f\x00\xd8"; const char kvm_asm64_init_vm[] = "\x0f\x20\xc0\x0d\x00\x00\x00\x80\x0f\x22\xc0\xea\xde\xc0\xad\x0b\x50\x00" "\x48\xc7\xc0\xd8\x00\x00\x00\x0f\x00\xd8\x48\xc7\xc1\x3a\x00\x00\x00\x0f" "\x32\x48\x83\xc8\x05\x0f\x30\x0f\x20\xe0\x48\x0d\x00\x20\x00\x00\x0f\x22" "\xe0\x48\xc7\xc1\x80\x04\x00\x00\x0f\x32\x48\xc7\xc2\x00\x60\x00\x00\x89" "\x02\x48\xc7\xc2\x00\x70\x00\x00\x89\x02\x48\xc7\xc0\x00\x5f\x00\x00\xf3" "\x0f\xc7\x30\x48\xc7\xc0\x08\x5f\x00\x00\x66\x0f\xc7\x30\x0f\xc7\x30\x48" "\xc7\xc1\x81\x04\x00\x00\x0f\x32\x48\x83\xc8\x3f\x48\x21\xd0\x48\xc7\xc2" "\x00\x40\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x02\x40\x00\x00\x48\xb8\x84\x9e" "\x99\xf3\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x1e\x40\x00\x00\x48\xc7" "\xc0\x81\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc1\x83\x04\x00\x00\x0f\x32\x48" "\x0d\xff\x6f\x03\x00\x48\x21\xd0\x48\xc7\xc2\x0c\x40\x00\x00\x0f\x79\xd0" "\x48\xc7\xc1\x84\x04\x00\x00\x0f\x32\x48\x0d\xff\x17\x00\x00\x48\x21\xd0" "\x48\xc7\xc2\x12\x40\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x04\x2c\x00\x00\x48" "\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x00\x28\x00\x00\x48\xc7" "\xc0\xff\xff\xff\xff\x0f\x79\xd0\x48\xc7\xc2\x02\x0c\x00\x00\x48\xc7\xc0" "\x50\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc0\x58\x00\x00\x00\x48\xc7\xc2\x00" "\x0c\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x04\x0c\x00\x00\x0f\x79\xd0\x48\xc7" "\xc2\x06\x0c\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x08\x0c\x00\x00\x0f\x79\xd0" "\x48\xc7\xc2\x0a\x0c\x00\x00\x0f\x79\xd0\x48\xc7\xc0\xd8\x00\x00\x00\x48" "\xc7\xc2\x0c\x0c\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x02\x2c\x00\x00\x48\xc7" "\xc0\x00\x05\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x00\x4c\x00\x00\x48\xc7\xc0" "\x50\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x10\x6c\x00\x00\x48\xc7\xc0\x00" "\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x12\x6c\x00\x00\x48\xc7\xc0\x00\x00" "\x00\x00\x0f\x79\xd0\x0f\x20\xc0\x48\xc7\xc2\x00\x6c\x00\x00\x48\x89\xc0" "\x0f\x79\xd0\x0f\x20\xd8\x48\xc7\xc2\x02\x6c\x00\x00\x48\x89\xc0\x0f\x79" "\xd0\x0f\x20\xe0\x48\xc7\xc2\x04\x6c\x00\x00\x48\x89\xc0\x0f\x79\xd0\x48" "\xc7\xc2\x06\x6c\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7" "\xc2\x08\x6c\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2" "\x0a\x6c\x00\x00\x48\xc7\xc0\x00\x3a\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x0c" "\x6c\x00\x00\x48\xc7\xc0\x00\x10\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x0e\x6c" "\x00\x00\x48\xc7\xc0\x00\x38\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x14\x6c\x00" "\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x16\x6c\x00\x00" "\x48\x8b\x04\x25\x10\x5f\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x00\x00\x00\x00" "\x48\xc7\xc0\x01\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x02\x00\x00\x00\x48" "\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x00\x20\x00\x00\x48\xc7" "\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x02\x20\x00\x00\x48\xc7\xc0" "\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x04\x20\x00\x00\x48\xc7\xc0\x00" "\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x06\x20\x00\x00\x48\xc7\xc0\x00\x00" "\x00\x00\x0f\x79\xd0\x48\xc7\xc1\x77\x02\x00\x00\x0f\x32\x48\xc1\xe2\x20" "\x48\x09\xd0\x48\xc7\xc2\x00\x2c\x00\x00\x48\x89\xc0\x0f\x79\xd0\x48\xc7" "\xc2\x04\x40\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2" "\x0a\x40\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x0e" "\x40\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x10\x40" "\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x16\x40\x00" "\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x14\x40\x00\x00" "\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x00\x60\x00\x00\x48" "\xc7\xc0\xff\xff\xff\xff\x0f\x79\xd0\x48\xc7\xc2\x02\x60\x00\x00\x48\xc7" "\xc0\xff\xff\xff\xff\x0f\x79\xd0\x48\xc7\xc2\x1c\x20\x00\x00\x48\xc7\xc0" "\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x1e\x20\x00\x00\x48\xc7\xc0\x00" "\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x20\x20\x00\x00\x48\xc7\xc0\x00\x00" "\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x22\x20\x00\x00\x48\xc7\xc0\x00\x00\x00" "\x00\x0f\x79\xd0\x48\xc7\xc2\x00\x08\x00\x00\x48\xc7\xc0\x58\x00\x00\x00" "\x0f\x79\xd0\x48\xc7\xc2\x02\x08\x00\x00\x48\xc7\xc0\x50\x00\x00\x00\x0f" "\x79\xd0\x48\xc7\xc2\x04\x08\x00\x00\x48\xc7\xc0\x58\x00\x00\x00\x0f\x79" "\xd0\x48\xc7\xc2\x06\x08\x00\x00\x48\xc7\xc0\x58\x00\x00\x00\x0f\x79\xd0" "\x48\xc7\xc2\x08\x08\x00\x00\x48\xc7\xc0\x58\x00\x00\x00\x0f\x79\xd0\x48" "\xc7\xc2\x0a\x08\x00\x00\x48\xc7\xc0\x58\x00\x00\x00\x0f\x79\xd0\x48\xc7" "\xc2\x0c\x08\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2" "\x0e\x08\x00\x00\x48\xc7\xc0\xd8\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x12" "\x68\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x14\x68" "\x00\x00\x48\xc7\xc0\x00\x3a\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x16\x68\x00" "\x00\x48\xc7\xc0\x00\x10\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x18\x68\x00\x00" "\x48\xc7\xc0\x00\x38\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x00\x48\x00\x00\x48" "\xc7\xc0\xff\xff\x0f\x00\x0f\x79\xd0\x48\xc7\xc2\x02\x48\x00\x00\x48\xc7" "\xc0\xff\xff\x0f\x00\x0f\x79\xd0\x48\xc7\xc2\x04\x48\x00\x00\x48\xc7\xc0" "\xff\xff\x0f\x00\x0f\x79\xd0\x48\xc7\xc2\x06\x48\x00\x00\x48\xc7\xc0\xff" "\xff\x0f\x00\x0f\x79\xd0\x48\xc7\xc2\x08\x48\x00\x00\x48\xc7\xc0\xff\xff" "\x0f\x00\x0f\x79\xd0\x48\xc7\xc2\x0a\x48\x00\x00\x48\xc7\xc0\xff\xff\x0f" "\x00\x0f\x79\xd0\x48\xc7\xc2\x0c\x48\x00\x00\x48\xc7\xc0\x00\x00\x00\x00" "\x0f\x79\xd0\x48\xc7\xc2\x0e\x48\x00\x00\x48\xc7\xc0\xff\x1f\x00\x00\x0f" "\x79\xd0\x48\xc7\xc2\x10\x48\x00\x00\x48\xc7\xc0\xff\x1f\x00\x00\x0f\x79" "\xd0\x48\xc7\xc2\x12\x48\x00\x00\x48\xc7\xc0\xff\x1f\x00\x00\x0f\x79\xd0" "\x48\xc7\xc2\x14\x48\x00\x00\x48\xc7\xc0\x93\x40\x00\x00\x0f\x79\xd0\x48" "\xc7\xc2\x16\x48\x00\x00\x48\xc7\xc0\x9b\x20\x00\x00\x0f\x79\xd0\x48\xc7" "\xc2\x18\x48\x00\x00\x48\xc7\xc0\x93\x40\x00\x00\x0f\x79\xd0\x48\xc7\xc2" "\x1a\x48\x00\x00\x48\xc7\xc0\x93\x40\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x1c" "\x48\x00\x00\x48\xc7\xc0\x93\x40\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x1e\x48" "\x00\x00\x48\xc7\xc0\x93\x40\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x20\x48\x00" "\x00\x48\xc7\xc0\x82\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x22\x48\x00\x00" "\x48\xc7\xc0\x8b\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x1c\x68\x00\x00\x48" "\xc7\xc0\x00\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x1e\x68\x00\x00\x48\xc7" "\xc0\x00\x91\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x20\x68\x00\x00\x48\xc7\xc0" "\x02\x00\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x06\x28\x00\x00\x48\xc7\xc0\x00" "\x05\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x0a\x28\x00\x00\x48\xc7\xc0\x00\x00" "\x00\x00\x0f\x79\xd0\x48\xc7\xc2\x0c\x28\x00\x00\x48\xc7\xc0\x00\x00\x00" "\x00\x0f\x79\xd0\x48\xc7\xc2\x0e\x28\x00\x00\x48\xc7\xc0\x00\x00\x00\x00" "\x0f\x79\xd0\x48\xc7\xc2\x10\x28\x00\x00\x48\xc7\xc0\x00\x00\x00\x00\x0f" "\x79\xd0\x0f\x20\xc0\x48\xc7\xc2\x00\x68\x00\x00\x48\x89\xc0\x0f\x79\xd0" "\x0f\x20\xd8\x48\xc7\xc2\x02\x68\x00\x00\x48\x89\xc0\x0f\x79\xd0\x0f\x20" "\xe0\x48\xc7\xc2\x04\x68\x00\x00\x48\x89\xc0\x0f\x79\xd0\x48\xc7\xc0\x18" "\x5f\x00\x00\x48\x8b\x10\x48\xc7\xc0\x20\x5f\x00\x00\x48\x8b\x08\x48\x31" "\xc0\x0f\x78\xd0\x48\x31\xc8\x0f\x79\xd0\x0f\x01\xc2\x48\xc7\xc2\x00\x44" "\x00\x00\x0f\x78\xd0\xf4"; const char kvm_asm64_vm_exit[] = "\x48\xc7\xc3\x00\x44\x00\x00\x0f\x78\xda\x48" "\xc7\xc3\x02\x44\x00\x00\x0f\x78\xd9\x48\xc7" "\xc0\x00\x64\x00\x00\x0f\x78\xc0\x48\xc7\xc3" "\x1e\x68\x00\x00\x0f\x78\xdb\xf4"; const char kvm_asm64_cpl3[] = "\x0f\x20\xc0\x0d\x00\x00\x00\x80\x0f\x22\xc0\xea\xde\xc0\xad\x0b\x50\x00" "\x48\xc7\xc0\xd8\x00\x00\x00\x0f\x00\xd8\x48\xc7\xc0\x6b\x00\x00\x00\x8e" "\xd8\x8e\xc0\x8e\xe0\x8e\xe8\x48\xc7\xc4\x80\x0f\x00\x00\x48\xc7\x04\x24" "\x1d\xba\x00\x00\x48\xc7\x44\x24\x04\x63\x00\x00\x00\x48\xc7\x44\x24\x08" "\x80\x0f\x00\x00\x48\xc7\x44\x24\x0c\x6b\x00\x00\x00\xcb"; #define ADDR_TEXT 0x0000 #define ADDR_GDT 0x1000 #define ADDR_LDT 0x1800 #define ADDR_PML4 0x2000 #define ADDR_PDP 0x3000 #define ADDR_PD 0x4000 #define ADDR_STACK0 0x0f80 #define ADDR_VAR_HLT 0x2800 #define ADDR_VAR_SYSRET 0x2808 #define ADDR_VAR_SYSEXIT 0x2810 #define ADDR_VAR_IDT 0x3800 #define ADDR_VAR_TSS64 0x3a00 #define ADDR_VAR_TSS64_CPL3 0x3c00 #define ADDR_VAR_TSS16 0x3d00 #define ADDR_VAR_TSS16_2 0x3e00 #define ADDR_VAR_TSS16_CPL3 0x3f00 #define ADDR_VAR_TSS32 0x4800 #define ADDR_VAR_TSS32_2 0x4a00 #define ADDR_VAR_TSS32_CPL3 0x4c00 #define ADDR_VAR_TSS32_VM86 0x4e00 #define ADDR_VAR_VMXON_PTR 0x5f00 #define ADDR_VAR_VMCS_PTR 0x5f08 #define ADDR_VAR_VMEXIT_PTR 0x5f10 #define ADDR_VAR_VMWRITE_FLD 0x5f18 #define ADDR_VAR_VMWRITE_VAL 0x5f20 #define ADDR_VAR_VMXON 0x6000 #define ADDR_VAR_VMCS 0x7000 #define ADDR_VAR_VMEXIT_CODE 0x9000 #define ADDR_VAR_USER_CODE 0x9100 #define ADDR_VAR_USER_CODE2 0x9120 #define SEL_LDT (1 << 3) #define SEL_CS16 (2 << 3) #define SEL_DS16 (3 << 3) #define SEL_CS16_CPL3 ((4 << 3) + 3) #define SEL_DS16_CPL3 ((5 << 3) + 3) #define SEL_CS32 (6 << 3) #define SEL_DS32 (7 << 3) #define SEL_CS32_CPL3 ((8 << 3) + 3) #define SEL_DS32_CPL3 ((9 << 3) + 3) #define SEL_CS64 (10 << 3) #define SEL_DS64 (11 << 3) #define SEL_CS64_CPL3 ((12 << 3) + 3) #define SEL_DS64_CPL3 ((13 << 3) + 3) #define SEL_CGATE16 (14 << 3) #define SEL_TGATE16 (15 << 3) #define SEL_CGATE32 (16 << 3) #define SEL_TGATE32 (17 << 3) #define SEL_CGATE64 (18 << 3) #define SEL_CGATE64_HI (19 << 3) #define SEL_TSS16 (20 << 3) #define SEL_TSS16_2 (21 << 3) #define SEL_TSS16_CPL3 ((22 << 3) + 3) #define SEL_TSS32 (23 << 3) #define SEL_TSS32_2 (24 << 3) #define SEL_TSS32_CPL3 ((25 << 3) + 3) #define SEL_TSS32_VM86 (26 << 3) #define SEL_TSS64 (27 << 3) #define SEL_TSS64_HI (28 << 3) #define SEL_TSS64_CPL3 ((29 << 3) + 3) #define SEL_TSS64_CPL3_HI (30 << 3) #define MSR_IA32_FEATURE_CONTROL 0x3a #define MSR_IA32_VMX_BASIC 0x480 #define MSR_IA32_SMBASE 0x9e #define MSR_IA32_SYSENTER_CS 0x174 #define MSR_IA32_SYSENTER_ESP 0x175 #define MSR_IA32_SYSENTER_EIP 0x176 #define MSR_IA32_STAR 0xC0000081 #define MSR_IA32_LSTAR 0xC0000082 #define MSR_IA32_VMX_PROCBASED_CTLS2 0x48B #define NEXT_INSN $0xbadc0de #define PREFIX_SIZE 0xba1d #define KVM_SMI _IO(KVMIO, 0xb7) #define CR0_PE 1 #define CR0_MP (1 << 1) #define CR0_EM (1 << 2) #define CR0_TS (1 << 3) #define CR0_ET (1 << 4) #define CR0_NE (1 << 5) #define CR0_WP (1 << 16) #define CR0_AM (1 << 18) #define CR0_NW (1 << 29) #define CR0_CD (1 << 30) #define CR0_PG (1 << 31) #define CR4_VME 1 #define CR4_PVI (1 << 1) #define CR4_TSD (1 << 2) #define CR4_DE (1 << 3) #define CR4_PSE (1 << 4) #define CR4_PAE (1 << 5) #define CR4_MCE (1 << 6) #define CR4_PGE (1 << 7) #define CR4_PCE (1 << 8) #define CR4_OSFXSR (1 << 8) #define CR4_OSXMMEXCPT (1 << 10) #define CR4_UMIP (1 << 11) #define CR4_VMXE (1 << 13) #define CR4_SMXE (1 << 14) #define CR4_FSGSBASE (1 << 16) #define CR4_PCIDE (1 << 17) #define CR4_OSXSAVE (1 << 18) #define CR4_SMEP (1 << 20) #define CR4_SMAP (1 << 21) #define CR4_PKE (1 << 22) #define EFER_SCE 1 #define EFER_LME (1 << 8) #define EFER_LMA (1 << 10) #define EFER_NXE (1 << 11) #define EFER_SVME (1 << 12) #define EFER_LMSLE (1 << 13) #define EFER_FFXSR (1 << 14) #define EFER_TCE (1 << 15) #define PDE32_PRESENT 1 #define PDE32_RW (1 << 1) #define PDE32_USER (1 << 2) #define PDE32_PS (1 << 7) #define PDE64_PRESENT 1 #define PDE64_RW (1 << 1) #define PDE64_USER (1 << 2) #define PDE64_ACCESSED (1 << 5) #define PDE64_DIRTY (1 << 6) #define PDE64_PS (1 << 7) #define PDE64_G (1 << 8) struct tss16 { uint16_t prev; uint16_t sp0; uint16_t ss0; uint16_t sp1; uint16_t ss1; uint16_t sp2; uint16_t ss2; uint16_t ip; uint16_t flags; uint16_t ax; uint16_t cx; uint16_t dx; uint16_t bx; uint16_t sp; uint16_t bp; uint16_t si; uint16_t di; uint16_t es; uint16_t cs; uint16_t ss; uint16_t ds; uint16_t ldt; } __attribute__((packed)); struct tss32 { uint16_t prev, prevh; uint32_t sp0; uint16_t ss0, ss0h; uint32_t sp1; uint16_t ss1, ss1h; uint32_t sp2; uint16_t ss2, ss2h; uint32_t cr3; uint32_t ip; uint32_t flags; uint32_t ax; uint32_t cx; uint32_t dx; uint32_t bx; uint32_t sp; uint32_t bp; uint32_t si; uint32_t di; uint16_t es, esh; uint16_t cs, csh; uint16_t ss, ssh; uint16_t ds, dsh; uint16_t fs, fsh; uint16_t gs, gsh; uint16_t ldt, ldth; uint16_t trace; uint16_t io_bitmap; } __attribute__((packed)); struct tss64 { uint32_t reserved0; uint64_t rsp[3]; uint64_t reserved1; uint64_t ist[7]; uint64_t reserved2; uint32_t reserved3; uint32_t io_bitmap; } __attribute__((packed)); static void fill_segment_descriptor(uint64_t* dt, uint64_t* lt, struct kvm_segment* seg) { uint16_t index = seg->selector >> 3; uint64_t limit = seg->g ? seg->limit >> 12 : seg->limit; uint64_t sd = (limit & 0xffff) | (seg->base & 0xffffff) << 16 | (uint64_t)seg->type << 40 | (uint64_t)seg->s << 44 | (uint64_t)seg->dpl << 45 | (uint64_t)seg->present << 47 | (limit & 0xf0000ULL) << 48 | (uint64_t)seg->avl << 52 | (uint64_t)seg->l << 53 | (uint64_t)seg->db << 54 | (uint64_t)seg->g << 55 | (seg->base & 0xff000000ULL) << 56; NONFAILING(dt[index] = sd); NONFAILING(lt[index] = sd); } static void fill_segment_descriptor_dword(uint64_t* dt, uint64_t* lt, struct kvm_segment* seg) { fill_segment_descriptor(dt, lt, seg); uint16_t index = seg->selector >> 3; NONFAILING(dt[index + 1] = 0); NONFAILING(lt[index + 1] = 0); } static void setup_syscall_msrs(int cpufd, uint16_t sel_cs, uint16_t sel_cs_cpl3) { char buf[sizeof(struct kvm_msrs) + 5 * sizeof(struct kvm_msr_entry)]; memset(buf, 0, sizeof(buf)); struct kvm_msrs* msrs = (struct kvm_msrs*)buf; struct kvm_msr_entry* entries = msrs->entries; msrs->nmsrs = 5; entries[0].index = MSR_IA32_SYSENTER_CS; entries[0].data = sel_cs; entries[1].index = MSR_IA32_SYSENTER_ESP; entries[1].data = ADDR_STACK0; entries[2].index = MSR_IA32_SYSENTER_EIP; entries[2].data = ADDR_VAR_SYSEXIT; entries[3].index = MSR_IA32_STAR; entries[3].data = ((uint64_t)sel_cs << 32) | ((uint64_t)sel_cs_cpl3 << 48); entries[4].index = MSR_IA32_LSTAR; entries[4].data = ADDR_VAR_SYSRET; ioctl(cpufd, KVM_SET_MSRS, msrs); } static void setup_32bit_idt(struct kvm_sregs* sregs, char* host_mem, uintptr_t guest_mem) { sregs->idt.base = guest_mem + ADDR_VAR_IDT; sregs->idt.limit = 0x1ff; uint64_t* idt = (uint64_t*)(host_mem + sregs->idt.base); int i; for (i = 0; i < 32; i++) { struct kvm_segment gate; gate.selector = i << 3; switch (i % 6) { case 0: gate.type = 6; gate.base = SEL_CS16; break; case 1: gate.type = 7; gate.base = SEL_CS16; break; case 2: gate.type = 3; gate.base = SEL_TGATE16; break; case 3: gate.type = 14; gate.base = SEL_CS32; break; case 4: gate.type = 15; gate.base = SEL_CS32; break; case 6: gate.type = 11; gate.base = SEL_TGATE32; break; } gate.limit = guest_mem + ADDR_VAR_USER_CODE2; gate.present = 1; gate.dpl = 0; gate.s = 0; gate.g = 0; gate.db = 0; gate.l = 0; gate.avl = 0; fill_segment_descriptor(idt, idt, &gate); } } static void setup_64bit_idt(struct kvm_sregs* sregs, char* host_mem, uintptr_t guest_mem) { sregs->idt.base = guest_mem + ADDR_VAR_IDT; sregs->idt.limit = 0x1ff; uint64_t* idt = (uint64_t*)(host_mem + sregs->idt.base); int i; for (i = 0; i < 32; i++) { struct kvm_segment gate; gate.selector = (i * 2) << 3; gate.type = (i & 1) ? 14 : 15; gate.base = SEL_CS64; gate.limit = guest_mem + ADDR_VAR_USER_CODE2; gate.present = 1; gate.dpl = 0; gate.s = 0; gate.g = 0; gate.db = 0; gate.l = 0; gate.avl = 0; fill_segment_descriptor_dword(idt, idt, &gate); } } struct kvm_text { uintptr_t typ; const void* text; uintptr_t size; }; struct kvm_opt { uint64_t typ; uint64_t val; }; #define KVM_SETUP_PAGING (1 << 0) #define KVM_SETUP_PAE (1 << 1) #define KVM_SETUP_PROTECTED (1 << 2) #define KVM_SETUP_CPL3 (1 << 3) #define KVM_SETUP_VIRT86 (1 << 4) #define KVM_SETUP_SMM (1 << 5) #define KVM_SETUP_VM (1 << 6) static long syz_kvm_setup_cpu(volatile long a0, volatile long a1, volatile long a2, volatile long a3, volatile long a4, volatile long a5, volatile long a6, volatile long a7) { const int vmfd = a0; const int cpufd = a1; char* const host_mem = (char*)a2; const struct kvm_text* const text_array_ptr = (struct kvm_text*)a3; const uintptr_t text_count = a4; const uintptr_t flags = a5; const struct kvm_opt* const opt_array_ptr = (struct kvm_opt*)a6; uintptr_t opt_count = a7; const uintptr_t page_size = 4 << 10; const uintptr_t ioapic_page = 10; const uintptr_t guest_mem_size = 24 * page_size; const uintptr_t guest_mem = 0; (void)text_count; int text_type = 0; const void* text = 0; uintptr_t text_size = 0; NONFAILING(text_type = text_array_ptr[0].typ); NONFAILING(text = text_array_ptr[0].text); NONFAILING(text_size = text_array_ptr[0].size); uintptr_t i; for (i = 0; i < guest_mem_size / page_size; i++) { struct kvm_userspace_memory_region memreg; memreg.slot = i; memreg.flags = 0; memreg.guest_phys_addr = guest_mem + i * page_size; if (i == ioapic_page) memreg.guest_phys_addr = 0xfec00000; memreg.memory_size = page_size; memreg.userspace_addr = (uintptr_t)host_mem + i * page_size; ioctl(vmfd, KVM_SET_USER_MEMORY_REGION, &memreg); } struct kvm_userspace_memory_region memreg; memreg.slot = 1 + (1 << 16); memreg.flags = 0; memreg.guest_phys_addr = 0x30000; memreg.memory_size = 64 << 10; memreg.userspace_addr = (uintptr_t)host_mem; ioctl(vmfd, KVM_SET_USER_MEMORY_REGION, &memreg); struct kvm_sregs sregs; if (ioctl(cpufd, KVM_GET_SREGS, &sregs)) return -1; struct kvm_regs regs; memset(&regs, 0, sizeof(regs)); regs.rip = guest_mem + ADDR_TEXT; regs.rsp = ADDR_STACK0; sregs.gdt.base = guest_mem + ADDR_GDT; sregs.gdt.limit = 256 * sizeof(uint64_t) - 1; uint64_t* gdt = (uint64_t*)(host_mem + sregs.gdt.base); struct kvm_segment seg_ldt; seg_ldt.selector = SEL_LDT; seg_ldt.type = 2; seg_ldt.base = guest_mem + ADDR_LDT; seg_ldt.limit = 256 * sizeof(uint64_t) - 1; seg_ldt.present = 1; seg_ldt.dpl = 0; seg_ldt.s = 0; seg_ldt.g = 0; seg_ldt.db = 1; seg_ldt.l = 0; sregs.ldt = seg_ldt; uint64_t* ldt = (uint64_t*)(host_mem + sregs.ldt.base); struct kvm_segment seg_cs16; seg_cs16.selector = SEL_CS16; seg_cs16.type = 11; seg_cs16.base = 0; seg_cs16.limit = 0xfffff; seg_cs16.present = 1; seg_cs16.dpl = 0; seg_cs16.s = 1; seg_cs16.g = 0; seg_cs16.db = 0; seg_cs16.l = 0; struct kvm_segment seg_ds16 = seg_cs16; seg_ds16.selector = SEL_DS16; seg_ds16.type = 3; struct kvm_segment seg_cs16_cpl3 = seg_cs16; seg_cs16_cpl3.selector = SEL_CS16_CPL3; seg_cs16_cpl3.dpl = 3; struct kvm_segment seg_ds16_cpl3 = seg_ds16; seg_ds16_cpl3.selector = SEL_DS16_CPL3; seg_ds16_cpl3.dpl = 3; struct kvm_segment seg_cs32 = seg_cs16; seg_cs32.selector = SEL_CS32; seg_cs32.db = 1; struct kvm_segment seg_ds32 = seg_ds16; seg_ds32.selector = SEL_DS32; seg_ds32.db = 1; struct kvm_segment seg_cs32_cpl3 = seg_cs32; seg_cs32_cpl3.selector = SEL_CS32_CPL3; seg_cs32_cpl3.dpl = 3; struct kvm_segment seg_ds32_cpl3 = seg_ds32; seg_ds32_cpl3.selector = SEL_DS32_CPL3; seg_ds32_cpl3.dpl = 3; struct kvm_segment seg_cs64 = seg_cs16; seg_cs64.selector = SEL_CS64; seg_cs64.l = 1; struct kvm_segment seg_ds64 = seg_ds32; seg_ds64.selector = SEL_DS64; struct kvm_segment seg_cs64_cpl3 = seg_cs64; seg_cs64_cpl3.selector = SEL_CS64_CPL3; seg_cs64_cpl3.dpl = 3; struct kvm_segment seg_ds64_cpl3 = seg_ds64; seg_ds64_cpl3.selector = SEL_DS64_CPL3; seg_ds64_cpl3.dpl = 3; struct kvm_segment seg_tss32; seg_tss32.selector = SEL_TSS32; seg_tss32.type = 9; seg_tss32.base = ADDR_VAR_TSS32; seg_tss32.limit = 0x1ff; seg_tss32.present = 1; seg_tss32.dpl = 0; seg_tss32.s = 0; seg_tss32.g = 0; seg_tss32.db = 0; seg_tss32.l = 0; struct kvm_segment seg_tss32_2 = seg_tss32; seg_tss32_2.selector = SEL_TSS32_2; seg_tss32_2.base = ADDR_VAR_TSS32_2; struct kvm_segment seg_tss32_cpl3 = seg_tss32; seg_tss32_cpl3.selector = SEL_TSS32_CPL3; seg_tss32_cpl3.base = ADDR_VAR_TSS32_CPL3; struct kvm_segment seg_tss32_vm86 = seg_tss32; seg_tss32_vm86.selector = SEL_TSS32_VM86; seg_tss32_vm86.base = ADDR_VAR_TSS32_VM86; struct kvm_segment seg_tss16 = seg_tss32; seg_tss16.selector = SEL_TSS16; seg_tss16.base = ADDR_VAR_TSS16; seg_tss16.limit = 0xff; seg_tss16.type = 1; struct kvm_segment seg_tss16_2 = seg_tss16; seg_tss16_2.selector = SEL_TSS16_2; seg_tss16_2.base = ADDR_VAR_TSS16_2; seg_tss16_2.dpl = 0; struct kvm_segment seg_tss16_cpl3 = seg_tss16; seg_tss16_cpl3.selector = SEL_TSS16_CPL3; seg_tss16_cpl3.base = ADDR_VAR_TSS16_CPL3; seg_tss16_cpl3.dpl = 3; struct kvm_segment seg_tss64 = seg_tss32; seg_tss64.selector = SEL_TSS64; seg_tss64.base = ADDR_VAR_TSS64; seg_tss64.limit = 0x1ff; struct kvm_segment seg_tss64_cpl3 = seg_tss64; seg_tss64_cpl3.selector = SEL_TSS64_CPL3; seg_tss64_cpl3.base = ADDR_VAR_TSS64_CPL3; seg_tss64_cpl3.dpl = 3; struct kvm_segment seg_cgate16; seg_cgate16.selector = SEL_CGATE16; seg_cgate16.type = 4; seg_cgate16.base = SEL_CS16 | (2 << 16); seg_cgate16.limit = ADDR_VAR_USER_CODE2; seg_cgate16.present = 1; seg_cgate16.dpl = 0; seg_cgate16.s = 0; seg_cgate16.g = 0; seg_cgate16.db = 0; seg_cgate16.l = 0; seg_cgate16.avl = 0; struct kvm_segment seg_tgate16 = seg_cgate16; seg_tgate16.selector = SEL_TGATE16; seg_tgate16.type = 3; seg_cgate16.base = SEL_TSS16_2; seg_tgate16.limit = 0; struct kvm_segment seg_cgate32 = seg_cgate16; seg_cgate32.selector = SEL_CGATE32; seg_cgate32.type = 12; seg_cgate32.base = SEL_CS32 | (2 << 16); struct kvm_segment seg_tgate32 = seg_cgate32; seg_tgate32.selector = SEL_TGATE32; seg_tgate32.type = 11; seg_tgate32.base = SEL_TSS32_2; seg_tgate32.limit = 0; struct kvm_segment seg_cgate64 = seg_cgate16; seg_cgate64.selector = SEL_CGATE64; seg_cgate64.type = 12; seg_cgate64.base = SEL_CS64; int kvmfd = open("/dev/kvm", O_RDWR); char buf[sizeof(struct kvm_cpuid2) + 128 * sizeof(struct kvm_cpuid_entry2)]; memset(buf, 0, sizeof(buf)); struct kvm_cpuid2* cpuid = (struct kvm_cpuid2*)buf; cpuid->nent = 128; ioctl(kvmfd, KVM_GET_SUPPORTED_CPUID, cpuid); ioctl(cpufd, KVM_SET_CPUID2, cpuid); close(kvmfd); const char* text_prefix = 0; int text_prefix_size = 0; char* host_text = host_mem + ADDR_TEXT; if (text_type == 8) { if (flags & KVM_SETUP_SMM) { if (flags & KVM_SETUP_PROTECTED) { sregs.cs = seg_cs16; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds16; sregs.cr0 |= CR0_PE; } else { sregs.cs.selector = 0; sregs.cs.base = 0; } NONFAILING(*(host_mem + ADDR_TEXT) = 0xf4); host_text = host_mem + 0x8000; ioctl(cpufd, KVM_SMI, 0); } else if (flags & KVM_SETUP_VIRT86) { sregs.cs = seg_cs32; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds32; sregs.cr0 |= CR0_PE; sregs.efer |= EFER_SCE; setup_syscall_msrs(cpufd, SEL_CS32, SEL_CS32_CPL3); setup_32bit_idt(&sregs, host_mem, guest_mem); if (flags & KVM_SETUP_PAGING) { uint64_t pd_addr = guest_mem + ADDR_PD; uint64_t* pd = (uint64_t*)(host_mem + ADDR_PD); NONFAILING(pd[0] = PDE32_PRESENT | PDE32_RW | PDE32_USER | PDE32_PS); sregs.cr3 = pd_addr; sregs.cr4 |= CR4_PSE; text_prefix = kvm_asm32_paged_vm86; text_prefix_size = sizeof(kvm_asm32_paged_vm86) - 1; } else { text_prefix = kvm_asm32_vm86; text_prefix_size = sizeof(kvm_asm32_vm86) - 1; } } else { sregs.cs.selector = 0; sregs.cs.base = 0; } } else if (text_type == 16) { if (flags & KVM_SETUP_CPL3) { sregs.cs = seg_cs16; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds16; text_prefix = kvm_asm16_cpl3; text_prefix_size = sizeof(kvm_asm16_cpl3) - 1; } else { sregs.cr0 |= CR0_PE; sregs.cs = seg_cs16; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds16; } } else if (text_type == 32) { sregs.cr0 |= CR0_PE; sregs.efer |= EFER_SCE; setup_syscall_msrs(cpufd, SEL_CS32, SEL_CS32_CPL3); setup_32bit_idt(&sregs, host_mem, guest_mem); if (flags & KVM_SETUP_SMM) { sregs.cs = seg_cs32; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds32; NONFAILING(*(host_mem + ADDR_TEXT) = 0xf4); host_text = host_mem + 0x8000; ioctl(cpufd, KVM_SMI, 0); } else if (flags & KVM_SETUP_PAGING) { sregs.cs = seg_cs32; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds32; uint64_t pd_addr = guest_mem + ADDR_PD; uint64_t* pd = (uint64_t*)(host_mem + ADDR_PD); NONFAILING(pd[0] = PDE32_PRESENT | PDE32_RW | PDE32_USER | PDE32_PS); sregs.cr3 = pd_addr; sregs.cr4 |= CR4_PSE; text_prefix = kvm_asm32_paged; text_prefix_size = sizeof(kvm_asm32_paged) - 1; } else if (flags & KVM_SETUP_CPL3) { sregs.cs = seg_cs32_cpl3; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds32_cpl3; } else { sregs.cs = seg_cs32; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds32; } } else { sregs.efer |= EFER_LME | EFER_SCE; sregs.cr0 |= CR0_PE; setup_syscall_msrs(cpufd, SEL_CS64, SEL_CS64_CPL3); setup_64bit_idt(&sregs, host_mem, guest_mem); sregs.cs = seg_cs32; sregs.ds = sregs.es = sregs.fs = sregs.gs = sregs.ss = seg_ds32; uint64_t pml4_addr = guest_mem + ADDR_PML4; uint64_t* pml4 = (uint64_t*)(host_mem + ADDR_PML4); uint64_t pdpt_addr = guest_mem + ADDR_PDP; uint64_t* pdpt = (uint64_t*)(host_mem + ADDR_PDP); uint64_t pd_addr = guest_mem + ADDR_PD; uint64_t* pd = (uint64_t*)(host_mem + ADDR_PD); NONFAILING(pml4[0] = PDE64_PRESENT | PDE64_RW | PDE64_USER | pdpt_addr); NONFAILING(pdpt[0] = PDE64_PRESENT | PDE64_RW | PDE64_USER | pd_addr); NONFAILING(pd[0] = PDE64_PRESENT | PDE64_RW | PDE64_USER | PDE64_PS); sregs.cr3 = pml4_addr; sregs.cr4 |= CR4_PAE; if (flags & KVM_SETUP_VM) { sregs.cr0 |= CR0_NE; NONFAILING(*((uint64_t*)(host_mem + ADDR_VAR_VMXON_PTR)) = ADDR_VAR_VMXON); NONFAILING(*((uint64_t*)(host_mem + ADDR_VAR_VMCS_PTR)) = ADDR_VAR_VMCS); NONFAILING(memcpy(host_mem + ADDR_VAR_VMEXIT_CODE, kvm_asm64_vm_exit, sizeof(kvm_asm64_vm_exit) - 1)); NONFAILING(*((uint64_t*)(host_mem + ADDR_VAR_VMEXIT_PTR)) = ADDR_VAR_VMEXIT_CODE); text_prefix = kvm_asm64_init_vm; text_prefix_size = sizeof(kvm_asm64_init_vm) - 1; } else if (flags & KVM_SETUP_CPL3) { text_prefix = kvm_asm64_cpl3; text_prefix_size = sizeof(kvm_asm64_cpl3) - 1; } else { text_prefix = kvm_asm64_enable_long; text_prefix_size = sizeof(kvm_asm64_enable_long) - 1; } } struct tss16 tss16; memset(&tss16, 0, sizeof(tss16)); tss16.ss0 = tss16.ss1 = tss16.ss2 = SEL_DS16; tss16.sp0 = tss16.sp1 = tss16.sp2 = ADDR_STACK0; tss16.ip = ADDR_VAR_USER_CODE2; tss16.flags = (1 << 1); tss16.cs = SEL_CS16; tss16.es = tss16.ds = tss16.ss = SEL_DS16; tss16.ldt = SEL_LDT; struct tss16* tss16_addr = (struct tss16*)(host_mem + seg_tss16_2.base); NONFAILING(memcpy(tss16_addr, &tss16, sizeof(tss16))); memset(&tss16, 0, sizeof(tss16)); tss16.ss0 = tss16.ss1 = tss16.ss2 = SEL_DS16; tss16.sp0 = tss16.sp1 = tss16.sp2 = ADDR_STACK0; tss16.ip = ADDR_VAR_USER_CODE2; tss16.flags = (1 << 1); tss16.cs = SEL_CS16_CPL3; tss16.es = tss16.ds = tss16.ss = SEL_DS16_CPL3; tss16.ldt = SEL_LDT; struct tss16* tss16_cpl3_addr = (struct tss16*)(host_mem + seg_tss16_cpl3.base); NONFAILING(memcpy(tss16_cpl3_addr, &tss16, sizeof(tss16))); struct tss32 tss32; memset(&tss32, 0, sizeof(tss32)); tss32.ss0 = tss32.ss1 = tss32.ss2 = SEL_DS32; tss32.sp0 = tss32.sp1 = tss32.sp2 = ADDR_STACK0; tss32.ip = ADDR_VAR_USER_CODE; tss32.flags = (1 << 1) | (1 << 17); tss32.ldt = SEL_LDT; tss32.cr3 = sregs.cr3; tss32.io_bitmap = offsetof(struct tss32, io_bitmap); struct tss32* tss32_addr = (struct tss32*)(host_mem + seg_tss32_vm86.base); NONFAILING(memcpy(tss32_addr, &tss32, sizeof(tss32))); memset(&tss32, 0, sizeof(tss32)); tss32.ss0 = tss32.ss1 = tss32.ss2 = SEL_DS32; tss32.sp0 = tss32.sp1 = tss32.sp2 = ADDR_STACK0; tss32.ip = ADDR_VAR_USER_CODE; tss32.flags = (1 << 1); tss32.cr3 = sregs.cr3; tss32.es = tss32.ds = tss32.ss = tss32.gs = tss32.fs = SEL_DS32; tss32.cs = SEL_CS32; tss32.ldt = SEL_LDT; tss32.cr3 = sregs.cr3; tss32.io_bitmap = offsetof(struct tss32, io_bitmap); struct tss32* tss32_cpl3_addr = (struct tss32*)(host_mem + seg_tss32_2.base); NONFAILING(memcpy(tss32_cpl3_addr, &tss32, sizeof(tss32))); struct tss64 tss64; memset(&tss64, 0, sizeof(tss64)); tss64.rsp[0] = ADDR_STACK0; tss64.rsp[1] = ADDR_STACK0; tss64.rsp[2] = ADDR_STACK0; tss64.io_bitmap = offsetof(struct tss64, io_bitmap); struct tss64* tss64_addr = (struct tss64*)(host_mem + seg_tss64.base); NONFAILING(memcpy(tss64_addr, &tss64, sizeof(tss64))); memset(&tss64, 0, sizeof(tss64)); tss64.rsp[0] = ADDR_STACK0; tss64.rsp[1] = ADDR_STACK0; tss64.rsp[2] = ADDR_STACK0; tss64.io_bitmap = offsetof(struct tss64, io_bitmap); struct tss64* tss64_cpl3_addr = (struct tss64*)(host_mem + seg_tss64_cpl3.base); NONFAILING(memcpy(tss64_cpl3_addr, &tss64, sizeof(tss64))); if (text_size > 1000) text_size = 1000; if (text_prefix) { NONFAILING(memcpy(host_text, text_prefix, text_prefix_size)); void* patch = 0; NONFAILING(patch = memmem(host_text, text_prefix_size, "\xde\xc0\xad\x0b", 4)); if (patch) NONFAILING(*((uint32_t*)patch) = guest_mem + ADDR_TEXT + ((char*)patch - host_text) + 6); uint16_t magic = PREFIX_SIZE; patch = 0; NONFAILING(patch = memmem(host_text, text_prefix_size, &magic, sizeof(magic))); if (patch) NONFAILING(*((uint16_t*)patch) = guest_mem + ADDR_TEXT + text_prefix_size); } NONFAILING(memcpy((void*)(host_text + text_prefix_size), text, text_size)); NONFAILING(*(host_text + text_prefix_size + text_size) = 0xf4); NONFAILING(memcpy(host_mem + ADDR_VAR_USER_CODE, text, text_size)); NONFAILING(*(host_mem + ADDR_VAR_USER_CODE + text_size) = 0xf4); NONFAILING(*(host_mem + ADDR_VAR_HLT) = 0xf4); NONFAILING(memcpy(host_mem + ADDR_VAR_SYSRET, "\x0f\x07\xf4", 3)); NONFAILING(memcpy(host_mem + ADDR_VAR_SYSEXIT, "\x0f\x35\xf4", 3)); NONFAILING(*(uint64_t*)(host_mem + ADDR_VAR_VMWRITE_FLD) = 0); NONFAILING(*(uint64_t*)(host_mem + ADDR_VAR_VMWRITE_VAL) = 0); if (opt_count > 2) opt_count = 2; for (i = 0; i < opt_count; i++) { uint64_t typ = 0; uint64_t val = 0; NONFAILING(typ = opt_array_ptr[i].typ); NONFAILING(val = opt_array_ptr[i].val); switch (typ % 9) { case 0: sregs.cr0 ^= val & (CR0_MP | CR0_EM | CR0_ET | CR0_NE | CR0_WP | CR0_AM | CR0_NW | CR0_CD); break; case 1: sregs.cr4 ^= val & (CR4_VME | CR4_PVI | CR4_TSD | CR4_DE | CR4_MCE | CR4_PGE | CR4_PCE | CR4_OSFXSR | CR4_OSXMMEXCPT | CR4_UMIP | CR4_VMXE | CR4_SMXE | CR4_FSGSBASE | CR4_PCIDE | CR4_OSXSAVE | CR4_SMEP | CR4_SMAP | CR4_PKE); break; case 2: sregs.efer ^= val & (EFER_SCE | EFER_NXE | EFER_SVME | EFER_LMSLE | EFER_FFXSR | EFER_TCE); break; case 3: val &= ((1 << 8) | (1 << 9) | (1 << 10) | (1 << 12) | (1 << 13) | (1 << 14) | (1 << 15) | (1 << 18) | (1 << 19) | (1 << 20) | (1 << 21)); regs.rflags ^= val; NONFAILING(tss16_addr->flags ^= val); NONFAILING(tss16_cpl3_addr->flags ^= val); NONFAILING(tss32_addr->flags ^= val); NONFAILING(tss32_cpl3_addr->flags ^= val); break; case 4: seg_cs16.type = val & 0xf; seg_cs32.type = val & 0xf; seg_cs64.type = val & 0xf; break; case 5: seg_cs16_cpl3.type = val & 0xf; seg_cs32_cpl3.type = val & 0xf; seg_cs64_cpl3.type = val & 0xf; break; case 6: seg_ds16.type = val & 0xf; seg_ds32.type = val & 0xf; seg_ds64.type = val & 0xf; break; case 7: seg_ds16_cpl3.type = val & 0xf; seg_ds32_cpl3.type = val & 0xf; seg_ds64_cpl3.type = val & 0xf; break; case 8: NONFAILING(*(uint64_t*)(host_mem + ADDR_VAR_VMWRITE_FLD) = (val & 0xffff)); NONFAILING(*(uint64_t*)(host_mem + ADDR_VAR_VMWRITE_VAL) = (val >> 16)); break; default: exit(1); } } regs.rflags |= 2; fill_segment_descriptor(gdt, ldt, &seg_ldt); fill_segment_descriptor(gdt, ldt, &seg_cs16); fill_segment_descriptor(gdt, ldt, &seg_ds16); fill_segment_descriptor(gdt, ldt, &seg_cs16_cpl3); fill_segment_descriptor(gdt, ldt, &seg_ds16_cpl3); fill_segment_descriptor(gdt, ldt, &seg_cs32); fill_segment_descriptor(gdt, ldt, &seg_ds32); fill_segment_descriptor(gdt, ldt, &seg_cs32_cpl3); fill_segment_descriptor(gdt, ldt, &seg_ds32_cpl3); fill_segment_descriptor(gdt, ldt, &seg_cs64); fill_segment_descriptor(gdt, ldt, &seg_ds64); fill_segment_descriptor(gdt, ldt, &seg_cs64_cpl3); fill_segment_descriptor(gdt, ldt, &seg_ds64_cpl3); fill_segment_descriptor(gdt, ldt, &seg_tss32); fill_segment_descriptor(gdt, ldt, &seg_tss32_2); fill_segment_descriptor(gdt, ldt, &seg_tss32_cpl3); fill_segment_descriptor(gdt, ldt, &seg_tss32_vm86); fill_segment_descriptor(gdt, ldt, &seg_tss16); fill_segment_descriptor(gdt, ldt, &seg_tss16_2); fill_segment_descriptor(gdt, ldt, &seg_tss16_cpl3); fill_segment_descriptor_dword(gdt, ldt, &seg_tss64); fill_segment_descriptor_dword(gdt, ldt, &seg_tss64_cpl3); fill_segment_descriptor(gdt, ldt, &seg_cgate16); fill_segment_descriptor(gdt, ldt, &seg_tgate16); fill_segment_descriptor(gdt, ldt, &seg_cgate32); fill_segment_descriptor(gdt, ldt, &seg_tgate32); fill_segment_descriptor_dword(gdt, ldt, &seg_cgate64); if (ioctl(cpufd, KVM_SET_SREGS, &sregs)) return -1; if (ioctl(cpufd, KVM_SET_REGS, &regs)) return -1; return 0; } uint64_t r[5] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0x0, 0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0); install_segv_handler(); intptr_t res = 0; NONFAILING(memcpy((void*)0x20000400, "/dev/kvm\000", 9)); res = syscall(__NR_openat, 0xffffffffffffff9c, 0x20000400, 0, 0); if (res != -1) r[0] = res; res = syscall(__NR_ioctl, r[0], 0xae01, 0); if (res != -1) r[1] = res; res = syscall(__NR_socket, 2, 2, 0x88); if (res != -1) r[2] = res; NONFAILING(*(uint32_t*)0x20000280 = 5); res = syscall(__NR_getsockopt, r[2], 1, 0x11, 0x20000240, 0x20000280); if (res != -1) NONFAILING(r[3] = *(uint32_t*)0x20000244); syscall(__NR_setuid, r[3]); res = syscall(__NR_ioctl, r[1], 0xae41, 0); if (res != -1) r[4] = res; NONFAILING(*(uint64_t*)0x200000c0 = 0x40); NONFAILING(*(uint64_t*)0x200000c8 = 0x200002c0); NONFAILING(memcpy((void*)0x200002c0, "\xb9\x59\x08\x00\x00\xb8\x68\xcd\x67\x8d\xba\x00\x00\x00" "\x00\x0f\x30\x0f\x01\xb0\x00\x00\x00\x00\x48\xb8\x0c\x00" "\x00\x00\x00\x00\x00\x00\x0f\x23\xd8\x0f\x21\xf8\x35\x80" "\x00\x00\xa0\x0f\x23\xf8\x66\x44\x0f\x38\x81\xbf\x10\xf6" "\x4b\x39\x66\xb8\xc3\x00\x8e\xe8\xb9\x80\x00\x00\xc0\x0f" "\x32\x35\x00\x04\x00\x00\x0f\x30\xc4\x43\x89\x5d\xe0\x00" "\x48\x0f\xc7\x28\x4a\x0f\xc7\x2c\xa9\xc7\x44\x24\x00\x9d" "\x00\x00\x00\xc7\x44\x24\x02\xcd\x00\x00\x00\xff\x2c\x24", 112)); NONFAILING(*(uint64_t*)0x200000d0 = 0x70); NONFAILING(*(uint64_t*)0x20000080 = 7); NONFAILING(*(uint64_t*)0x20000088 = 0); syz_kvm_setup_cpu(-1, r[4], 0x20000000, 0x200000c0, 1, 8, 0x20000080, 1); syz_kvm_setup_cpu(r[1], -1, 0x20000000, 0, 0, 0, 0, 0); NONFAILING(memcpy((void*)0x20000000, "./file0\000", 8)); syscall(__NR_lsetxattr, 0x20000000, 0, 0, 0, 0); syscall(__NR_ioctl, r[4], 0xae80, 0); return 0; }
the_stack_data/231393616.c
/* Copyright (c) 2021, Thierry Tremblay All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <wchar.h> size_t wcslen(const wchar_t* string) { size_t length = 0; while (*string++) { ++length; } return length; }
the_stack_data/12373.c
#include <stdio.h> int main () { int chute, sorteado; printf("********************************************\n"); printf("**** Bem-vindo ao Jogo Da Adivinhacao! *****\n"); printf("********************************************\n"); printf("Digite um numero: \n"); scanf("%d",&chute); sorteado=42; if(chute==sorteado){ printf("Voce Acertou!!!\n"); } else{ if(chute<sorteado){ printf("Voce Perdeu!!! seu chute %d, e menor que o sorteado!!!\n",chute); } else{ printf("Voce Perdeu!!! seu chute %d, e maior que o sorteado!!!\n",chute); } } Printf("*** GAME OVER ***/n"); return 0; }
the_stack_data/35435.c
// RUN: %clang_cc1 -std=c89 -w -emit-llvm -o /dev/null %s // PR2264. unsigned foo = 8L; unsigned bar = 0L; volatile unsigned char baz = 6L; int test(void) { char qux = 1L; for (; baz >= -29; baz--) bork(bar && foo, qux); }
the_stack_data/242332014.c
#include <stdio.h> #include <time.h> #include <stdlib.h> #define ARRAY_LENGTH 100000 int inputArray[ARRAY_LENGTH]; void init(){ //ソートする配列の用意 int s; srand(time(NULL)); for (int i = 0; i < ARRAY_LENGTH; i++) { inputArray[i] = rand() % 1000; //0~1000 } } void bubbleSort(){ int j, flag; do { flag = 0; for (int i = 0; i < ARRAY_LENGTH - 1; i++) { if(inputArray[i] > inputArray[i+1]){ flag = 1; j = inputArray[i]; inputArray[i] = inputArray[i+1]; inputArray[i+1] = j; } } } while(flag == 1); } int main(){ init(); printf("元データ: [ "); for (int i = 0; i < ARRAY_LENGTH; i++) { printf("%d ", inputArray[i]); } printf("]\n"); bubbleSort(); printf("ソート済みデータ: [ "); for (int i = 0; i < ARRAY_LENGTH; i++) { printf("%d ", inputArray[i]); } printf("]\n"); }
the_stack_data/68887973.c
#define N 2 #define T int static unsigned long foo(int x) { T a[x]; return sizeof(a) == (x * sizeof(T)); } /* * check-name: vla-sizeof var * check-command: test-linearize -Wvla $file * * check-output-ignore * check-output-contains: ret\\..*\\$1 * * check-error-start vla-sizeof2.c:6:13: warning: Variable length array is used. * check-error-end */
the_stack_data/140766637.c
#include <sys/stat.h> #include <errno.h> #include <fcntl.h> #include "syscall.h" void __procfdname(char *, unsigned); int fchmod(int fd, mode_t mode) { int ret = __syscall(SYS_fchmod, fd, mode); if (ret != -EBADF || __syscall(SYS_fcntl, fd, F_GETFD) < 0) return __syscall_ret(ret); char buf[15+3*sizeof(int)]; __procfdname(buf, fd); #ifdef SYS_chmod return syscall(SYS_chmod, buf, mode); #else return syscall(SYS_fchmodat, AT_FDCWD, buf, mode); #endif }
the_stack_data/6387220.c
#include <stdio.h> void ft_ft(int *nbr); int main(void) { int a; a = 20; printf("%d\n", a); ft_ft(&a); printf("%d\n", a); return (0); }
the_stack_data/1164513.c
/* { dg-do compile } */ /* { dg-options "-O -fno-early-inlining -fdump-tree-ccp2" } */ int *p; int inline bar(void) { return 0; } int foo(int x) { int i; int *q; if (bar()) q = &i; else q = p; return *q + *p; } /* { dg-final { scan-tree-dump-not "NOTE: no flow-sensitive alias info for" "ccp2" } } */
the_stack_data/315994.c
#include <math.h> #include <stdio.h> #define e 0.00001 double getF(double x) { return pow(x, 2) - 3; // change function here } int checkForRoots(double left, double right) { //-2 = no roots, -1 = left is root, 1 = right is root, 0 = have roots if (getF(left) == 0) { return -1; } if (getF(right) == 0) { return 1; } if ((getF(left) < 0) && (getF(right) < 0)) { return -2; } if ((getF(left) > 0) && (getF(right) > 0)) { return -2; } return 0; } int main() { double left, right, x; int check; FILE* in; FILE* out; in = fopen("input.txt", "r"); out = fopen("output.txt", "w"); if (in == NULL || out == NULL) { fprintf(out, "ошибка открытия файла"); return -1; } fscanf(in, "%lf", &left); fscanf(in, "%lf", &right); check = checkForRoots(left, right); if (check == -2) { fprintf(out, "Корней нет"); return -1; } if (check == -1) { x = left; fprintf(out, "x = %.8lf", x); return x; } if (check == 1) { x = right; fprintf(out, "x = %.8lf", x); return x; } do { x = (left + right) / 2; if ((checkForRoots(left, x) * checkForRoots(x, right)) == -1) { fprintf(out, "x = %.8lf", x); return x; } if (checkForRoots(left, x) == -2) { left = x; } else { right = x; } } while (fabs(right - left) > e); fprintf(out, "x = %.8lf", x); return x; }
the_stack_data/87638050.c
/* This file was automatically generated by CasADi. The CasADi copyright holders make no ownership claim of its contents. */ #ifdef __cplusplus extern "C" { #endif /* How to prefix internal symbols */ #ifdef CODEGEN_PREFIX #define NAMESPACE_CONCAT(NS, ID) _NAMESPACE_CONCAT(NS, ID) #define _NAMESPACE_CONCAT(NS, ID) NS ## ID #define CASADI_PREFIX(ID) NAMESPACE_CONCAT(CODEGEN_PREFIX, ID) #else #define CASADI_PREFIX(ID) impl_ode_fun_jac_x_xdot_ ## ID #endif #include <math.h> #ifndef casadi_real #define casadi_real double #endif #ifndef casadi_int #define casadi_int int #endif /* Add prefix to internal symbols */ #define casadi_c0 CASADI_PREFIX(c0) #define casadi_c1 CASADI_PREFIX(c1) #define casadi_c2 CASADI_PREFIX(c2) #define casadi_c3 CASADI_PREFIX(c3) #define casadi_c4 CASADI_PREFIX(c4) #define casadi_c5 CASADI_PREFIX(c5) #define casadi_copy CASADI_PREFIX(copy) #define casadi_de_boor CASADI_PREFIX(de_boor) #define casadi_f0 CASADI_PREFIX(f0) #define casadi_f1 CASADI_PREFIX(f1) #define casadi_f2 CASADI_PREFIX(f2) #define casadi_f3 CASADI_PREFIX(f3) #define casadi_f4 CASADI_PREFIX(f4) #define casadi_fill CASADI_PREFIX(fill) #define casadi_fill_casadi_int CASADI_PREFIX(fill_casadi_int) #define casadi_low CASADI_PREFIX(low) #define casadi_mtimes CASADI_PREFIX(mtimes) #define casadi_nd_boor_eval CASADI_PREFIX(nd_boor_eval) #define casadi_s0 CASADI_PREFIX(s0) #define casadi_s1 CASADI_PREFIX(s1) #define casadi_s10 CASADI_PREFIX(s10) #define casadi_s11 CASADI_PREFIX(s11) #define casadi_s12 CASADI_PREFIX(s12) #define casadi_s13 CASADI_PREFIX(s13) #define casadi_s14 CASADI_PREFIX(s14) #define casadi_s15 CASADI_PREFIX(s15) #define casadi_s16 CASADI_PREFIX(s16) #define casadi_s17 CASADI_PREFIX(s17) #define casadi_s18 CASADI_PREFIX(s18) #define casadi_s19 CASADI_PREFIX(s19) #define casadi_s2 CASADI_PREFIX(s2) #define casadi_s3 CASADI_PREFIX(s3) #define casadi_s4 CASADI_PREFIX(s4) #define casadi_s5 CASADI_PREFIX(s5) #define casadi_s6 CASADI_PREFIX(s6) #define casadi_s7 CASADI_PREFIX(s7) #define casadi_s8 CASADI_PREFIX(s8) #define casadi_s9 CASADI_PREFIX(s9) #define casadi_sq CASADI_PREFIX(sq) #define casadi_trans CASADI_PREFIX(trans) /* Symbol visibility in DLLs */ #ifndef CASADI_SYMBOL_EXPORT #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) #if defined(STATIC_LINKED) #define CASADI_SYMBOL_EXPORT #else #define CASADI_SYMBOL_EXPORT __declspec(dllexport) #endif #elif defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) #define CASADI_SYMBOL_EXPORT __attribute__ ((visibility ("default"))) #else #define CASADI_SYMBOL_EXPORT #endif #endif static const casadi_int casadi_s0[2] = {0, 0}; static const casadi_int casadi_s1[2] = {1, 55}; static const casadi_int casadi_s2[2] = {3, 3}; static const casadi_int casadi_s3[3] = {0, 59, 131}; static const casadi_int casadi_s4[2] = {1, 54}; static const casadi_int casadi_s5[2] = {2, 3}; static const casadi_int casadi_s6[3] = {0, 57, 129}; static const casadi_int casadi_s7[2] = {3, 2}; static const casadi_int casadi_s8[3] = {0, 59, 129}; static const casadi_int casadi_s9[13] = {1, 5, 0, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0}; static const casadi_int casadi_s10[13] = {2, 5, 0, 1, 2, 3, 4, 5, 1, 1, 1, 1, 0}; static const casadi_int casadi_s11[7] = {1, 2, 0, 1, 2, 0, 0}; static const casadi_int casadi_s12[4] = {2, 3, 8, 11}; static const casadi_int casadi_s13[3] = {0, 4, 9}; static const casadi_int casadi_s14[21] = {6, 6, 0, 2, 5, 6, 8, 10, 12, 1, 2, 0, 1, 3, 1, 0, 1, 1, 4, 0, 5}; static const casadi_int casadi_s15[21] = {6, 6, 0, 3, 8, 9, 10, 11, 12, 1, 3, 5, 0, 1, 2, 3, 4, 0, 1, 4, 5}; static const casadi_int casadi_s16[15] = {6, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5}; static const casadi_int casadi_s17[10] = {6, 1, 0, 6, 0, 1, 2, 3, 4, 5}; static const casadi_int casadi_s18[6] = {2, 1, 0, 2, 0, 1}; static const casadi_int casadi_s19[5] = {1, 1, 0, 1, 0}; static const casadi_real casadi_c0[3740] = {1.8184086601773187e-03, 1.0904223423495404e-03, 2.1284991539426783e-03, 2.4183297386224383e-03, 2.9292756796894717e-03, 3.2948060866679267e-03, 3.7315668141347912e-03, 4.1343263986859313e-03, 4.5563053496223867e-03, 4.9713728384279347e-03, 5.3907646264113500e-03, 5.8073290007822527e-03, 6.2231609676950267e-03, 6.6378402735228553e-03, 7.0511163999661258e-03, 7.4616134713547328e-03, 7.8714853236313033e-03, 8.2809581949205308e-03, 8.6874696441523493e-03, 9.0923302948452567e-03, 9.4955165822850594e-03, 9.8936956957241251e-03, 1.0289518246109745e-02, 1.0679678042924228e-02, 1.1071326415580255e-02, 1.1458679274212335e-02, 1.1844285428821743e-02, 1.2225826669718144e-02, 1.2599696779551962e-02, 1.2969225412061020e-02, 1.3335272827729425e-02, 1.3698516866381271e-02, 1.4060708568523475e-02, 1.4413909439722985e-02, 1.4764406279404703e-02, 1.5111627753613547e-02, 1.5449419489704604e-02, 1.5779118407517112e-02, 1.6105920324379467e-02, 1.6435191584132119e-02, 1.6750196790189940e-02, 1.7069047253462508e-02, 1.7362301504420041e-02, 1.7688279675615693e-02, 1.7933284783715350e-02, 1.8382805036747767e-02, 1.8215306098602762e-02, 1.8262857646411765e-02, 1.8232271944510312e-02, 1.8249189624503084e-02, 1.8239674629467205e-02, 1.8251039072585646e-02, 1.8220269373502820e-02, 1.8267428421928512e-02, 1.8132711378110813e-02, 8.3085952623944013e-04, 1.8359830088230124e-03, 1.7956821082281470e-03, 2.5333472147936438e-03, 2.8738841151270508e-03, 3.3237144634793848e-03, 3.7197847610549815e-03, 4.1429966739586748e-03, 4.5553330041380215e-03, 4.9752663564854634e-03, 5.3924894384507057e-03, 5.8102875766167256e-03, 6.2260437237284111e-03, 6.6410016435829479e-03, 7.0541333913303481e-03, 7.4651429546108558e-03, 7.8751585801590685e-03, 8.2840970319735495e-03, 8.6908520800561100e-03, 9.0957081511521803e-03, 9.4980722455570432e-03, 9.8966972647818782e-03, 1.0291164636052709e-02, 1.0682748342503514e-02, 1.1072297530362858e-02, 1.1459981765592023e-02, 1.1844739387864543e-02, 1.2224971523868819e-02, 1.2598762336953444e-02, 1.2967445583110299e-02, 1.3332723435120234e-02, 1.3695559712480985e-02, 1.4055067374954183e-02, 1.4408825736522173e-02, 1.4758153541920109e-02, 1.5103242399836347e-02, 1.5440071090258989e-02, 1.5769308696990020e-02, 1.6096807816507453e-02, 1.6420630908989122e-02, 1.6740894403525112e-02, 1.7049346259408335e-02, 1.7361510283680583e-02, 1.7654267568851918e-02, 1.7989278130116016e-02, 1.8251978448535558e-02, 1.8273132606509819e-02, 1.8228099098711200e-02, 1.8233584900392442e-02, 1.8227120832387450e-02, 1.8232741798215126e-02, 1.8229194641150269e-02, 1.8227725197522422e-02, 1.8232732494755037e-02, 1.8084198674117806e-02, 1.4260148873143791e-03, 1.3774451961144035e-03, 1.9855018454883466e-03, 2.4524310347448326e-03, 2.8948805932027784e-03, 3.2906510565985725e-03, 3.7102710166742412e-03, 4.1189141288687650e-03, 4.5352236439490179e-03, 4.9499870802985017e-03, 5.3664718747950986e-03, 5.7814612134081287e-03, 6.1954938190694952e-03, 6.6082825456011138e-03, 7.0196429130457184e-03, 7.4295474841089794e-03, 7.8389510782056887e-03, 8.2482172620348508e-03, 8.6560965679520711e-03, 9.0625191584863141e-03, 9.4670574687036636e-03, 9.8685636903891403e-03, 1.0267149703944876e-02, 1.0662666896616881e-02, 1.1058688731478802e-02, 1.1452491421781752e-02, 1.1844039222776990e-02, 1.2232051753501713e-02, 1.2614590938931868e-02, 1.2992897781685248e-02, 1.3368214423737451e-02, 1.3741955929623384e-02, 1.4113282307222223e-02, 1.4478985272299010e-02, 1.4841110041514999e-02, 1.5198764441702723e-02, 1.5549019315604143e-02, 1.5891472275106400e-02, 1.6230171757868693e-02, 1.6566644833444413e-02, 1.6893510944815896e-02, 1.7214976220536273e-02, 1.7526518746467882e-02, 1.7843126375422964e-02, 1.8146853800514239e-02, 1.8422984907889736e-02, 1.8429506204680215e-02, 1.8417439573032844e-02, 1.8401886545152606e-02, 1.8402803658265000e-02, 1.8402948942210940e-02, 1.8403358308662472e-02, 1.8415752477090774e-02, 1.8418095689239748e-02, 1.8581211756580639e-02, 1.1890863167041061e-03, 1.5720948087278349e-03, 1.9151102539217656e-03, 2.4917493155122432e-03, 2.8943588825649544e-03, 3.3132153534572721e-03, 3.7244461203582639e-03, 4.1403101187719596e-03, 4.5560982967091492e-03, 4.9740853112396526e-03, 5.3919347025508475e-03, 5.8091894770553407e-03, 6.2250130433831796e-03, 6.6396786864199508e-03, 7.0526497473931624e-03, 7.4636452663832311e-03, 7.8735715667087643e-03, 8.2824707338611282e-03, 8.6893309770602924e-03, 9.0942499521325330e-03, 9.4967104387622455e-03, 9.8954114589935339e-03, 1.0290462245976555e-02, 1.0682192098683076e-02, 1.1072509482788645e-02, 1.1460484708642546e-02, 1.1845658434027045e-02, 1.2226390944019521e-02, 1.2600948119477135e-02, 1.2970593508390020e-02, 1.3336747743493296e-02, 1.3700283716929357e-02, 1.4060713569719998e-02, 1.4415474912679218e-02, 1.4765946732377954e-02, 1.5111712964162447e-02, 1.5449749392942380e-02, 1.5780739497112683e-02, 1.6108818914085159e-02, 1.6434302767421527e-02, 1.6753608194343596e-02, 1.7066572259807424e-02, 1.7375928916857984e-02, 1.7685213906389718e-02, 1.7994365959108315e-02, 1.8261760927701362e-02, 1.8278585036349996e-02, 1.8260218857540894e-02, 1.8249091229132167e-02, 1.8247142416302799e-02, 1.8247686951102432e-02, 1.8249048622869756e-02, 1.8243057244703827e-02, 1.8254356106326187e-02, 1.8220771557418265e-02, 1.2917423945598358e-03, 1.5095105130214245e-03, 1.9510852388274779e-03, 2.4877392763556268e-03, 2.9071413110243961e-03, 3.3191483639899849e-03, 3.7355232633908175e-03, 4.1505847663347644e-03, 4.5685077902003959e-03, 4.9871702362239093e-03, 5.4064140501891870e-03, 5.8247306551549999e-03, 6.2417718448860710e-03, 6.6575390384948051e-03, 7.0715653432949039e-03, 7.4833133376064984e-03, 7.8936892314475197e-03, 8.3025739352116674e-03, 8.7090587335081609e-03, 9.1133543668436810e-03, 9.5149369193859232e-03, 9.9122913360103343e-03, 1.0305772078411872e-02, 1.0695611722214454e-02, 1.1083221060468300e-02, 1.1468274962358541e-02, 1.1850360242752385e-02, 1.2227493058795069e-02, 1.2598030605910571e-02, 1.2963328978634656e-02, 1.3324864536191810e-02, 1.3683182959038509e-02, 1.4038103091063396e-02, 1.4387220399640297e-02, 1.4731747076910889e-02, 1.5071366266783195e-02, 1.5403030227062088e-02, 1.5728176574727328e-02, 1.6050514066639116e-02, 1.6370740527450738e-02, 1.6685356786855818e-02, 1.6995126294834243e-02, 1.7300890146081990e-02, 1.7610154836838289e-02, 1.7916670960234606e-02, 1.8187323442709642e-02, 1.8201853263940377e-02, 1.8185789829218778e-02, 1.8173202523590688e-02, 1.8171531073365971e-02, 1.8171886027759775e-02, 1.8168525477880025e-02, 1.8163967015769399e-02, 1.8102683185725603e-02, 1.8066001072359360e-02, 1.2425869394019681e-03, 1.5325730445849830e-03, 1.9235544607098085e-03, 2.4771719030035710e-03, 2.8860422382735841e-03, 3.2993812193301028e-03, 3.7111932144932780e-03, 4.1247671177941474e-03, 4.5398092902077507e-03, 4.9564272851261295e-03, 5.3733511113113995e-03, 5.7896141343461707e-03, 6.2046488496964904e-03, 6.6186506134176763e-03, 7.0312415203207940e-03, 7.4421782969762065e-03, 7.8525054030219137e-03, 8.2622623634228485e-03, 8.6704441816139281e-03, 9.0771042755716947e-03, 9.4817586190490133e-03, 9.8830894013814900e-03, 1.0281305725069642e-02, 1.0676834704567300e-02, 1.1071497162366353e-02, 1.1464402744525896e-02, 1.1854976632445778e-02, 1.2241540142361234e-02, 1.2622404463562780e-02, 1.2998799244091922e-02, 1.3372213043611473e-02, 1.3743430537548456e-02, 1.4111954188859127e-02, 1.4475091957640383e-02, 1.4834086030291904e-02, 1.5188481803609259e-02, 1.5534958943294061e-02, 1.5874168004316423e-02, 1.6209849585064273e-02, 1.6542182188449012e-02, 1.6867017441704268e-02, 1.7184472837268712e-02, 1.7496106479415068e-02, 1.7807647781488047e-02, 1.8115432350818524e-02, 1.8383903624808118e-02, 1.8398681607861792e-02, 1.8381519204316989e-02, 1.8369371526665158e-02, 1.8367190465370161e-02, 1.8366377702969647e-02, 1.8363592063642992e-02, 1.8360988646817292e-02, 1.8360613916913737e-02, 1.8216704212256615e-02, 1.2282669296476197e-03, 1.4872997150881396e-03, 1.9065758804584936e-03, 2.4444128654649445e-03, 2.8522736022403594e-03, 3.2587026934209644e-03, 3.6668457559830459e-03, 4.0754749880262372e-03, 4.4866029278565565e-03, 4.8991739715189197e-03, 5.3124649029557608e-03, 5.7251749007184109e-03, 6.1369441221706591e-03, 6.5479561322170279e-03, 6.9579194868595647e-03, 7.3672404428532469e-03, 7.7768544965928490e-03, 8.1873593772466020e-03, 8.5973671265676677e-03, 9.0065958702651664e-03, 9.4146003520117795e-03, 9.8206689174303152e-03, 1.0224525725063629e-02, 1.0626282346191590e-02, 1.1030110152503190e-02, 1.1432476352027456e-02, 1.1833136992854876e-02, 1.2231319544984848e-02, 1.2624965277891621e-02, 1.3015186535134247e-02, 1.3403156428088465e-02, 1.3790770204469087e-02, 1.4176614422930531e-02, 1.4557215652880554e-02, 1.4934530360368627e-02, 1.5307368993610043e-02, 1.5672801911175260e-02, 1.6029109166279150e-02, 1.6380727320290351e-02, 1.6728004524298512e-02, 1.7063612057960875e-02, 1.7389132855767396e-02, 1.7705226740628004e-02, 1.8017730848859943e-02, 1.8323125895087066e-02, 1.8586305536984832e-02, 1.8598835946331615e-02, 1.8580578185940312e-02, 1.8567669315557516e-02, 1.8565724923683323e-02, 1.8564590421932821e-02, 1.8567707410792961e-02, 1.8586394084643187e-02, 1.8792224283614253e-02, 1.8944753437773517e-02, 1.2119266560927317e-03, 1.5047211746179155e-03, 1.9238363084110568e-03, 2.4728948519911207e-03, 2.8833177421891043e-03, 3.2953076784660021e-03, 3.7079142091405747e-03, 4.1219359311165001e-03, 4.5381119193306993e-03, 4.9559085453083681e-03, 5.3743477036397235e-03, 5.7922224946934707e-03, 6.2088950357154921e-03, 6.6243013924924612e-03, 7.0375369595456934e-03, 7.4481168815136870e-03, 7.8564064627978502e-03, 8.2624777957852735e-03, 8.6651799004236734e-03, 9.0647597208410712e-03, 9.4606030010681054e-03, 9.8514307868616362e-03, 1.0237223746387128e-02, 1.0617398668452337e-02, 1.0994777685174524e-02, 1.1367771283735348e-02, 1.1736735906798738e-02, 1.2100014275964893e-02, 1.2455814450432716e-02, 1.2805635758676321e-02, 1.3150419401325475e-02, 1.3491527140446788e-02, 1.3828522502096792e-02, 1.4158753250462506e-02, 1.4483968494648570e-02, 1.4803300166904881e-02, 1.5114901291594787e-02, 1.5419104666249428e-02, 1.5720541294821637e-02, 1.6020539824009739e-02, 1.6314994832450094e-02, 1.6605380250889010e-02, 1.6893611748031626e-02, 1.7187525466994508e-02, 1.7484911404577523e-02, 1.7746543339095609e-02, 1.7756422474392086e-02, 1.7735093735471670e-02, 1.7720845607780283e-02, 1.7719403633114465e-02, 1.7720662592150348e-02, 1.7729425455305869e-02, 1.7754714025328598e-02, 1.7970502230074920e-02, 1.8624335254012248e-02, 1.3023863147950446e-03, 1.5929110084396605e-03, 2.0343114034508843e-03, 2.6087480815437133e-03, 3.0401392920669764e-03, 3.4712714815803829e-03, 3.9028789348848195e-03, 4.3344547457094713e-03, 4.7665348129183180e-03, 5.1984203718174748e-03, 5.6294702178170562e-03, 6.0585410062087000e-03, 6.4846681375881491e-03, 6.9073828630842301e-03, 7.3252207662726793e-03, 7.7349762660350345e-03, 8.1373306250337001e-03, 8.5300502036194520e-03, 8.9134293774004343e-03, 9.2893443592322635e-03, 9.6571617619951727e-03, 1.0012922003524882e-02, 1.0357840991346869e-02, 1.0691654221944203e-02, 1.1008228779733349e-02, 1.1316935231250363e-02, 1.1617512329165143e-02, 1.1905165822648231e-02, 1.2180354007892713e-02, 1.2444461400035724e-02, 1.2698269674923291e-02, 1.2939774173428382e-02, 1.3172943531782956e-02, 1.3398209413583719e-02, 1.3614985110986102e-02, 1.3825995308929955e-02, 1.4028584856334346e-02, 1.4232191602114919e-02, 1.4438012975975332e-02, 1.4649337543825284e-02, 1.4876083833069145e-02, 1.5115027929406865e-02, 1.5370880758873920e-02, 1.5657939049477210e-02, 1.5970115898758300e-02, 1.6260869389137116e-02, 1.6273423375169030e-02, 1.6249183076808896e-02, 1.6232829756560877e-02, 1.6230810028726492e-02, 1.6237612742648216e-02, 1.6241469780266537e-02, 1.6230951360564797e-02, 1.5942361100025140e-02, 1.5792991990867006e-02, 1.4180538917131071e-03, 1.7180860005641238e-03, 2.1786525576628695e-03, 2.7897685529608899e-03, 3.2444765877902562e-03, 3.6952095055639276e-03, 4.1415946115584993e-03, 4.5837079750838550e-03, 5.0203173922150563e-03, 5.4515107974211349e-03, 5.8774509753408396e-03, 6.2972473853384718e-03, 6.7107971354271731e-03, 7.1187035474830403e-03, 7.5209118906097465e-03, 7.9166991946869152e-03, 8.3089367982247930e-03, 8.6964514184589090e-03, 9.0789893715712087e-03, 9.4590126601451618e-03, 9.8372236460460595e-03, 1.0210110635581389e-02, 1.0575647443951362e-02, 1.0934812122334256e-02, 1.1283591040471313e-02, 1.1630703812680717e-02, 1.1974104313424565e-02, 1.2310665773362796e-02, 1.2645356663972859e-02, 1.2975535885506559e-02, 1.3294378357561872e-02, 1.3607109457951875e-02, 1.3917527296092498e-02, 1.4223916687815308e-02, 1.4528963083353002e-02, 1.4837564269039342e-02, 1.5146859352894065e-02, 1.5458779904736436e-02, 1.5773195966931778e-02, 1.6093325278169673e-02, 1.6439152850656984e-02, 1.6799544713308388e-02, 1.7178974361309891e-02, 1.7596844300948673e-02, 1.8030767098456007e-02, 1.8420534848264659e-02, 1.8452265538236177e-02, 1.8430138623947698e-02, 1.8411849198328622e-02, 1.8409000460294579e-02, 1.8415774810156289e-02, 1.8418473605647086e-02, 1.8360417426155264e-02, 1.7781529152783408e-02, 1.6395720146299513e-02, 1.4669618551833609e-03, 1.7751320405316783e-03, 2.2655203685333202e-03, 2.9194480539389001e-03, 3.4010295896935001e-03, 3.8710520635108071e-03, 4.3312982346951920e-03, 4.7830473195374281e-03, 5.2241942131977829e-03, 5.6560581257435599e-03, 6.0806821537055548e-03, 6.4975855644801312e-03, 6.9089158950036396e-03, 7.3181985565135173e-03, 7.7284367032145413e-03, 8.1486196510134924e-03, 8.5811987537448859e-03, 9.0321082093089509e-03, 9.4963981821967070e-03, 9.9767578347494355e-03, 1.0476654235795146e-02, 1.1000085596665083e-02, 1.1534525332877158e-02, 1.2082011950962077e-02, 1.2668499802984406e-02, 1.3272966706282835e-02, 1.3889209438536053e-02, 1.4520065653605186e-02, 1.5177383072221877e-02, 1.5852839574517663e-02, 1.6516724689748626e-02, 1.7201789220629555e-02, 1.7900093236384081e-02, 1.8597758830083157e-02, 1.9310861811011808e-02, 2.0038193281537268e-02, 2.0784000504253504e-02, 2.1514404337394183e-02, 2.2234971859882206e-02, 2.2944187805244175e-02, 2.3653223595060235e-02, 2.4351041964644254e-02, 2.5030789132324694e-02, 2.5716241487146907e-02, 2.6353801646642482e-02, 2.6884542050079726e-02, 2.6942639703299211e-02, 2.6935038687647021e-02, 2.6918256305866011e-02, 2.6914011522858518e-02, 2.6916228637326713e-02, 2.6916594973306646e-02, 2.6907791643286074e-02, 2.6741464314398788e-02, 2.6647756238251191e-02, 1.3658539230676332e-03, 1.6615718282394539e-03, 2.2605954188217774e-03, 3.0285271540821564e-03, 3.5938141975989748e-03, 4.1514007076943679e-03, 4.7060045071285915e-03, 5.2618321974679579e-03, 5.8233256699621941e-03, 6.3900301839001717e-03, 6.9648089009768316e-03, 7.5529211750612465e-03, 8.1522821889670003e-03, 8.7675949047644457e-03, 9.4070095690792065e-03, 1.0073075500578423e-02, 1.0757107768656059e-02, 1.1463248140624738e-02, 1.2186055645084157e-02, 1.2935896941828517e-02, 1.3719123565040733e-02, 1.4536938702963811e-02, 1.5377985336106731e-02, 1.6247526896858450e-02, 1.7196259111608641e-02, 1.8183155807882941e-02, 1.9191006754169602e-02, 2.0191638760322945e-02, 2.1223347118324444e-02, 2.2277866240622422e-02, 2.3304419767152220e-02, 2.4343417463348536e-02, 2.5384023551472536e-02, 2.6403508209179759e-02, 2.7417222463598179e-02, 2.8419230310831670e-02, 2.9414792786865037e-02, 3.0377443171901438e-02, 3.1306965114834648e-02, 3.2179800808154489e-02, 3.3009674234101706e-02, 3.3797806069681538e-02, 3.4531216851747974e-02, 3.5215449337989910e-02, 3.5805125819103098e-02, 3.6279187853690276e-02, 3.6345320895770056e-02, 3.6362818616279415e-02, 3.6356053483721854e-02, 3.6352760535180328e-02, 3.6346703404870402e-02, 3.6346334183116745e-02, 3.6381525573196231e-02, 3.6765387194715941e-02, 3.7730421174586248e-02, 1.0087434984848889e-03, 1.5355401205010470e-03, 2.4104930500987473e-03, 3.4610006792987467e-03, 4.2541736435168925e-03, 5.0634421967802323e-03, 5.8971189164786940e-03, 6.7554693746128651e-03, 7.6600480566105531e-03, 8.6008992635640720e-03, 9.5799452363459249e-03, 1.0616413031967229e-02, 1.1690837693851057e-02, 1.2804648622710331e-02, 1.3976852891107184e-02, 1.5175044401354875e-02, 1.6375253266181958e-02, 1.7561233967007372e-02, 1.8734042894310163e-02, 1.9916977173527101e-02, 2.1115217156040929e-02, 2.2298056467923134e-02, 2.3483860281425090e-02, 2.4681518102823395e-02, 2.5926311836217280e-02, 2.7204507099772544e-02, 2.8494221163470612e-02, 2.9677089659710179e-02, 3.0852459852365042e-02, 3.2012057409211959e-02, 3.3106633069392759e-02, 3.4129561335359750e-02, 3.5090173584401300e-02, 3.5971193136393076e-02, 3.6753167598430538e-02, 3.7456119013737403e-02, 3.8046222122737117e-02, 3.8606019178719572e-02, 3.9088517973190247e-02, 3.9459258710753356e-02, 3.9751377231423669e-02, 4.0002988269798680e-02, 4.0192037871232329e-02, 4.0263143293533067e-02, 4.0259414105762503e-02, 4.0237672011263485e-02, 4.0265500902563298e-02, 4.0307620830701649e-02, 4.0323776098776166e-02, 4.0323673867069296e-02, 4.0313689489204774e-02, 4.0306139246369846e-02, 4.0323639667291043e-02, 4.0712799577125924e-02, 4.0928142996292348e-02, 1.3953716510723873e-03, 2.3213364489006487e-03, 3.6092884471297030e-03, 5.2238942660468770e-03, 6.4682025619017093e-03, 7.7693112941337140e-03, 9.1132364869456750e-03, 1.0489732191411012e-02, 1.1913595154280646e-02, 1.3370679822669727e-02, 1.4866055755428306e-02, 1.6424848461315950e-02, 1.8006948007774370e-02, 1.9615248320012584e-02, 2.1273085409359741e-02, 2.2939465443746150e-02, 2.4602282043301837e-02, 2.6239540331096562e-02, 2.7834008350339605e-02, 2.9400878508452456e-02, 3.0930534785717098e-02, 3.2345413953099068e-02, 3.3699840411618359e-02, 3.4999768378426305e-02, 3.6229769250710434e-02, 3.7433070480167183e-02, 3.8607144100178535e-02, 3.9620697603104452e-02, 4.0590728946511626e-02, 4.1504757938432474e-02, 4.2314123083984509e-02, 4.2976478619587886e-02, 4.3504585913212955e-02, 4.3855344737156028e-02, 4.4020535641171782e-02, 4.4060143190908667e-02, 4.3922090919569758e-02, 4.3671448147239660e-02, 4.3296851018665941e-02, 4.2774568940880463e-02, 4.2191114596812102e-02, 4.1570879970585797e-02, 4.0888266326750841e-02, 3.9969966022581759e-02, 3.8941404777045108e-02, 3.8003711969431322e-02, 3.7925859307364869e-02, 3.7988740682824526e-02, 3.8032844858700614e-02, 3.8039977929645398e-02, 3.8030453667692754e-02, 3.8017311411764544e-02, 3.8018545266536932e-02, 3.8171535930902521e-02, 3.8180059571682794e-02, 3.7045073163119594e-03, 4.9583561955433919e-03, 6.8035509740745860e-03, 9.2399071558422283e-03, 1.1141503170500227e-02, 1.3119665441967169e-02, 1.5120821240315272e-02, 1.7123893657704104e-02, 1.9091691203716312e-02, 2.1025886613588708e-02, 2.2943889348515514e-02, 2.4857111713052042e-02, 2.6713548638957387e-02, 2.8529779841110693e-02, 3.0305953328970299e-02, 3.2056146452236145e-02, 3.3814729609827406e-02, 3.5594440050510878e-02, 3.7320125693917378e-02, 3.8974841468478280e-02, 4.0530703830860437e-02, 4.1874677057482310e-02, 4.3073926236833732e-02, 4.4119999274864138e-02, 4.4923056340356704e-02, 4.5591950122551288e-02, 4.6141490717972876e-02, 4.6610451359711355e-02, 4.7025334195150342e-02, 4.7383505561354948e-02, 4.7605258877286477e-02, 4.7693121098920099e-02, 4.7617997647244587e-02, 4.7251666574667617e-02, 4.6694841755925545e-02, 4.6048499534379124e-02, 4.5306928651436450e-02, 4.4238210617503257e-02, 4.2978207625985192e-02, 4.1605300132640195e-02, 4.0172109708502574e-02, 3.8696658769648638e-02, 3.7103225630918973e-02, 3.5151077741478326e-02, 3.3026012112785157e-02, 3.0963704281593049e-02, 3.0800761706203415e-02, 3.0860029502545742e-02, 3.0934815585175184e-02, 3.0945576002055605e-02, 3.0942630656261721e-02, 3.0930670205316989e-02, 3.0945121723808235e-02, 3.1063810635903185e-02, 3.1180100111323644e-02, 8.0942375003881951e-03, 9.8622524407957855e-03, 1.2228165611482756e-02, 1.5481872558265627e-02, 1.7965038138659812e-02, 2.0467494711988495e-02, 2.2937800699000289e-02, 2.5362110352856401e-02, 2.7661055947225576e-02, 2.9862975192984861e-02, 3.1997702677767338e-02, 3.4063304449161301e-02, 3.6015057410878154e-02, 3.7868588334858913e-02, 3.9581287003386180e-02, 4.1194070251655550e-02, 4.2767301199691694e-02, 4.4325045032075870e-02, 4.5777060062717354e-02, 4.7122785513898473e-02, 4.8345113988126090e-02, 4.9367825562183026e-02, 5.0204979792981844e-02, 5.0822895363357538e-02, 5.1078088872829795e-02, 5.1121214316367417e-02, 5.0951847845638248e-02, 5.0661780648542508e-02, 5.0307405664711403e-02, 4.9901566930492254e-02, 4.9310334757132916e-02, 4.8626843902565470e-02, 4.7792924127779274e-02, 4.6606658548044161e-02, 4.5292667866430263e-02, 4.3936129645665171e-02, 4.2620459324842097e-02, 4.0813641724793445e-02, 3.8803732875938600e-02, 3.6576078758004713e-02, 3.4237207114536490e-02, 3.1723018051109296e-02, 2.9083339276986236e-02, 2.6122908161554572e-02, 2.3203141936542708e-02, 2.0627482208033305e-02, 2.0440852674436599e-02, 2.0506021288214240e-02, 2.0590128732435587e-02, 2.0607072754082020e-02, 2.0601768030491945e-02, 2.0612467413164734e-02, 2.0593666164722153e-02, 2.0749201333180253e-02, 2.0990297806968046e-02, 1.4877167359098753e-02, 1.6733215046879042e-02, 1.9492815577270586e-02, 2.3241247517050031e-02, 2.5992731041510144e-02, 2.8597010732117154e-02, 3.1113831223423209e-02, 3.3547243683113917e-02, 3.5841555766171124e-02, 3.8045200830013122e-02, 4.0184290309004216e-02, 4.2249802934638925e-02, 4.4229849968077634e-02, 4.6108754202350527e-02, 4.7811368968590361e-02, 4.9303173966178705e-02, 5.0617452097454156e-02, 5.1702733157925014e-02, 5.2547205791301198e-02, 5.3261386959161244e-02, 5.3860457381250601e-02, 5.4410552047044758e-02, 5.4789551643937590e-02, 5.4956235940311481e-02, 5.4777316636451953e-02, 5.4394622511746808e-02, 5.3779368047151353e-02, 5.2679460935495671e-02, 5.1501418177485797e-02, 5.0242421174516119e-02, 4.8717354124878876e-02, 4.7106824449854430e-02, 4.5366700398375738e-02, 4.3346512056533559e-02, 4.1211467190138691e-02, 3.9069766544844890e-02, 3.6891286866201495e-02, 3.4391936701486131e-02, 3.1583652715330417e-02, 2.8628231170981785e-02, 2.5225505789372819e-02, 2.1671551783652945e-02, 1.7853757200601499e-02, 1.4145776581031822e-02, 1.1230823836340295e-02, 9.2602713757120609e-03, 9.1594352078656384e-03, 9.2352144944411914e-03, 9.3128110578447852e-03, 9.3195995458490929e-03, 9.3324631420855075e-03, 9.3149917946095031e-03, 9.3536045810567823e-03, 8.9596949695477622e-03, 9.0413125458370051e-03, 2.2434492108769400e-02, 2.4222075629071572e-02, 2.7169030098467686e-02, 3.1071537576123669e-02, 3.3852363542404833e-02, 3.6359282077284519e-02, 3.8745858073917901e-02, 4.1038115765271797e-02, 4.3227778733895959e-02, 4.5369832274320072e-02, 4.7455512975934040e-02, 4.9423557634778063e-02, 5.1292590813711125e-02, 5.3054939570915942e-02, 5.4644908955350076e-02, 5.5960315703123709e-02, 5.7012540412723127e-02, 5.7678966677475463e-02, 5.7934365978109879e-02, 5.8019000618800901e-02, 5.7967671457523143e-02, 5.7843907135675929e-02, 5.7540715591266375e-02, 5.7051916304612517e-02, 5.6286921068346485e-02, 5.5383924446491054e-02, 5.4288313038346490e-02, 5.2429725414849006e-02, 5.0459088643765478e-02, 4.8373202817770258e-02, 4.5983706412338357e-02, 4.3505422577757927e-02, 4.0937685769748211e-02, 3.8175125356060310e-02, 3.5346620112422698e-02, 3.2308078407002477e-02, 2.9049468844954653e-02, 2.5539780540796943e-02, 2.2075222877811822e-02, 1.8393944426024055e-02, 1.4836444291482754e-02, 1.1103499301441409e-02, 7.4721939010366769e-03, 4.1504804903980353e-03, 1.9202415230840206e-03, 1.3284489450061127e-03, 1.2888803242727838e-03, 1.4061183199858053e-03, 1.4342902466962140e-03, 1.4504691731703811e-03, 1.4383033360572928e-03, 1.4717939695711147e-03, 1.3428346299969814e-03, 1.1179744071399881e-03, -3.0193847036068559e-04, 2.9083324793687040e-02, 3.0997861335946938e-02, 3.3942114384628748e-02, 3.7779500841157776e-02, 4.0521083415307767e-02, 4.3037576966512475e-02, 4.5439336195880815e-02, 4.7763602650766603e-02, 5.0012054405711610e-02, 5.2221445648094972e-02, 5.4331277429605349e-02, 5.6157180778936597e-02, 5.7712223876391237e-02, 5.9072616973316845e-02, 6.0234828988696927e-02, 6.1151594698259107e-02, 6.1875342336864592e-02, 6.2323694060970672e-02, 6.2217462043073220e-02, 6.1874241143109993e-02, 6.1334882089175209e-02, 6.0296057303730312e-02, 5.9017040033342689e-02, 5.7538134702773649e-02, 5.5807080620396930e-02, 5.4005955259603625e-02, 5.2071611777444855e-02, 4.9565107261403223e-02, 4.6893388363689816e-02, 4.4088209773631176e-02, 4.1070366305725525e-02, 3.7961636192376219e-02, 3.4756831362672026e-02, 3.1466556816752096e-02, 2.7943844450109431e-02, 2.4279273296788053e-02, 1.9919453051670265e-02, 1.5522451671456959e-02, 1.1122205161355071e-02, 7.9856717680884797e-03, 5.3992948673711304e-03, 3.4299088286501573e-03, 1.2902179756261755e-03, -2.1577843266077802e-04, -5.6508473346164893e-04, -4.1621052732359123e-04, -2.1836406202003423e-04, -1.8584882814037961e-04, -1.6192453222248462e-04, -1.7811441150084601e-04, -1.5767305200527242e-04, -1.9684109428007120e-04, -8.4684228336506269e-05, -5.3534704625950939e-04, -2.8973608089161007e-05, 3.4895713808106882e-02, 3.6801240432538990e-02, 3.9743298629226757e-02, 4.3505606509406429e-02, 4.6252537529505082e-02, 4.8906748007476505e-02, 5.1501002455493293e-02, 5.4044710587191111e-02, 5.6475146703838679e-02, 5.8772384378893046e-02, 6.0883399615200520e-02, 6.2572017800530330e-02, 6.3760877027399368e-02, 6.4582553349157135e-02, 6.5057334588607338e-02, 6.5308876117584833e-02, 6.5452183567599437e-02, 6.5464791917216006e-02, 6.4874270078740567e-02, 6.4012449626284829e-02, 6.2912292314665400e-02, 6.0955845450556295e-02, 5.8709047004302663e-02, 5.6243379745591279e-02, 5.3530490334166007e-02, 5.0786136973361373e-02, 4.7966590562096324e-02, 4.4922776825913446e-02, 4.1676888008740663e-02, 3.8313977333385298e-02, 3.4827327462871219e-02, 3.1239077327578458e-02, 2.7477177161222235e-02, 2.3366839286298333e-02, 1.9325195645700399e-02, 1.4994825509169214e-02, 1.0852411272792878e-02, 6.5046323300230954e-03, 3.2947355390252593e-03, 1.2035942919900322e-04, -5.1148180080685284e-04, -9.7249025009558065e-04, -3.0524602790263659e-04, 7.1208669342534818e-06, 1.7435531348676132e-04, 1.2978288986617917e-03, 1.3496380448905813e-03, 1.4264991528793185e-03, 1.3814065887823022e-03, 1.3876082027965701e-03, 1.3669263493281405e-03, 1.4029780836680558e-03, 1.3422761432565025e-03, 1.7937006127085903e-03, 2.0281381374611346e-03, 3.9819954430654975e-02, 4.1797194645922020e-02, 4.4886684879804031e-02, 4.8832155064098048e-02, 5.1740473790565684e-02, 5.4626155076778857e-02, 5.7497093698906009e-02, 6.0292298595276031e-02, 6.2807898883821267e-02, 6.4959553150052043e-02, 6.6826154782930719e-02, 6.8327146445403011e-02, 6.9191871511790001e-02, 6.9517784491618217e-02, 6.9200461694126358e-02, 6.8596354827847206e-02, 6.7833804850272642e-02, 6.6867946628950806e-02, 6.5377773156907515e-02, 6.3652913279714701e-02, 6.1713551813821023e-02, 5.9086465265672440e-02, 5.6187221371625642e-02, 5.3095146415858156e-02, 4.9797165635666718e-02, 4.6462732071605971e-02, 4.3089443289097709e-02, 3.9591146338554345e-02, 3.5928301575232489e-02, 3.2087706227787789e-02, 2.8190967179084505e-02, 2.4066372732624994e-02, 1.9678647638501561e-02, 1.4875938037270596e-02, 9.7193630873781411e-03, 6.0170875571396417e-03, 3.5115017342070404e-03, 1.3995334487824534e-03, -1.0316198027935540e-03, 1.0861302931493577e-05, 1.3991155930992378e-04, 2.7547114813294038e-04, 7.8868693754156598e-05, -8.2618363054884388e-05, 1.3160779706079769e-03, 2.0101826915411144e-03, 2.2728371835150133e-03, 2.2052497899138143e-03, 2.1937349791427371e-03, 2.1698226777017741e-03, 2.1780130140102594e-03, 2.1599082911256092e-03, 2.2241994425461382e-03, 2.2907261540652084e-03, 2.6323119248148280e-03, 4.3953402557334091e-02, 4.6151705031116631e-02, 4.9607732208337009e-02, 5.4173781070783307e-02, 5.7571051026831029e-02, 6.0826982034545438e-02, 6.3931794702092246e-02, 6.6755080820539200e-02, 6.8898138295286973e-02, 7.0423529419261180e-02, 7.1590393507492078e-02, 7.2530101696614363e-02, 7.2895560102807372e-02, 7.2692635190157270e-02, 7.1659022236769482e-02, 7.0215943267637651e-02, 6.8519322639273017e-02, 6.6516273511363952e-02, 6.4071981759832031e-02, 6.1456183976449669e-02, 5.8704869229184421e-02, 5.5614164680318788e-02, 5.2316140574470850e-02, 4.8872451188041774e-02, 4.5284772528722886e-02, 4.1646427511183512e-02, 3.7928275927520308e-02, 3.4048443413880358e-02, 2.9965924872324426e-02, 2.5727341894008500e-02, 2.1113338269668373e-02, 1.6524128275418038e-02, 1.1881148862613202e-02, 6.8534235054311587e-03, 3.1555963791100915e-03, -7.0300695925442562e-04, -8.9556084918617222e-04, -3.8657198203876866e-04, 2.8669633398090079e-04, -1.3739378258486716e-05, -9.2581564910926794e-05, -9.7243076447410228e-05, -8.8331571365795854e-05, 6.1811934936478166e-04, 1.0122978792137867e-03, 2.0227888732309140e-03, 2.0375731515810879e-03, 2.0379677383552670e-03, 1.9816938654960833e-03, 1.9804549814208842e-03, 1.9718765640160643e-03, 1.9798211840043696e-03, 1.9503779310249708e-03, 2.0070364453516989e-03, 1.7573949215246949e-03, 4.7617385624547259e-02, 5.0402511473758606e-02, 5.4402777348478676e-02, 5.9859192941428621e-02, 6.3949900856900901e-02, 6.7538720109797362e-02, 7.0607344320492274e-02, 7.3022194901345427e-02, 7.4157638855232355e-02, 7.4579449962084113e-02, 7.4625315421932473e-02, 7.4492947564983827e-02, 7.4050719948888316e-02, 7.3193492436136542e-02, 7.1647569281631601e-02, 6.9559307092995404e-02, 6.7212146324244756e-02, 6.4643278993212080e-02, 6.1619332239900959e-02, 5.8465381611757246e-02, 5.5247531268926973e-02, 5.1797138194362394e-02, 4.8191517819783390e-02, 4.4453130818895369e-02, 4.0641687946100791e-02, 3.6723196025153178e-02, 3.2695883164325118e-02, 2.8326779120278089e-02, 2.3857206792622005e-02, 1.9014398869753119e-02, 1.3882551680733617e-02, 8.7406553542897867e-03, 4.5850938186864677e-03, 2.2327149832805501e-03, -1.0735899459979636e-03, 2.5315389839554778e-04, 2.3782238487298965e-04, 1.1222603478124992e-04, -1.0493490368364832e-04, 4.7503025138358147e-05, 2.1650518414109623e-04, 1.9386064568110233e-04, 2.7154758016668533e-04, 3.6803816064890228e-04, 1.0961471201867104e-03, 1.7911906559614915e-03, 1.9025240380842283e-03, 1.8418358197472904e-03, 1.8124648055769801e-03, 1.7996146659472344e-03, 1.8045086195579562e-03, 1.7975875686403922e-03, 1.8054145028745222e-03, 1.7286169137242507e-03, 1.7397441650733824e-03, 5.2608107981922933e-02, 5.5999436174418056e-02, 6.0362848655236175e-02, 6.6083422973100520e-02, 7.0122555868523520e-02, 7.3305770763075401e-02, 7.5686174317334889e-02, 7.7205666320705024e-02, 7.7206521086194344e-02, 7.6618021407543063e-02, 7.5717407541262299e-02, 7.4619648420774329e-02, 7.3397168541695076e-02, 7.1918063566213830e-02, 6.9985601126165295e-02, 6.7465562308993074e-02, 6.4726450183033302e-02, 6.1881618423437514e-02, 5.8596530944066527e-02, 5.5193142264664291e-02, 5.1728077455486000e-02, 4.7997596365692473e-02, 4.4121350474521780e-02, 4.0117787292762698e-02, 3.6020308553738993e-02, 3.1789116681495241e-02, 2.7299298883047281e-02, 2.2477798903969642e-02, 1.7258041479753045e-02, 1.2331703009580310e-02, 6.8218780984747058e-03, 3.1993397379852652e-03, -2.8753170901208331e-04, -8.1617485270230386e-04, 3.5298781369430039e-04, -9.6347657522047176e-05, -1.1541290486870951e-04, -3.0972946643098044e-05, 7.6352896901556120e-05, 8.8898187686247296e-05, 3.4971085836255219e-05, 6.1318727531186714e-05, 9.9097787179706703e-05, 4.9007718013142096e-04, 1.0423675449409478e-03, 1.8659221765417776e-03, 1.9147682098499131e-03, 1.8858884038295864e-03, 1.8442486596359916e-03, 1.8405368982459965e-03, 1.8400418298830381e-03, 1.8446145658341786e-03, 1.8366587229818119e-03, 1.8525374252783258e-03, 1.8604748561122340e-03, 6.0730483811722191e-02, 6.3206456856778545e-02, 6.7459514279905278e-02, 7.2132675377848884e-02, 7.4786152946421755e-02, 7.6504652199477149e-02, 7.7508006453249179e-02, 7.7840560862007468e-02, 7.7180734039375282e-02, 7.6202601136484277e-02, 7.5038359087486378e-02, 7.3641403520523938e-02, 7.1998501284721017e-02, 7.0099399521957859e-02, 6.7809287146682107e-02, 6.5025669501687686e-02, 6.2021912441727840e-02, 5.8867035262550542e-02, 5.5428795163616304e-02, 5.1854714636072552e-02, 4.8156002081217550e-02, 4.4192706335117550e-02, 4.0091935219396156e-02, 3.5845965580703833e-02, 3.1417619789076832e-02, 2.6700718901403200e-02, 2.1778158068506158e-02, 1.6259721817597363e-02, 1.0871547610705508e-02, 5.2290018919169262e-03, 2.6837874709602491e-03, -5.5006912290169136e-04, -6.0505525668434070e-06, 2.5664380999077728e-04, -1.2757675171722418e-04, 8.1342465523520456e-05, 2.2795686855935153e-04, 1.1114862387857046e-04, 4.8283337307770452e-05, 4.0956682247553637e-05, 5.4429336928823278e-05, 3.5020309160267584e-05, 1.0727841984376183e-04, 4.3410128840586337e-04, 1.0938491273205144e-03, 1.8748139187070795e-03, 1.9565699084126359e-03, 1.9156232154687043e-03, 1.8821509967073822e-03, 1.8747840591061275e-03, 1.8777018090907439e-03, 1.8784602953050304e-03, 1.8835044640333053e-03, 1.8848613130378331e-03, 1.9091215740505271e-03, 6.7433386632592907e-02, 6.8579470460255490e-02, 7.2159419747161238e-02, 7.5223136867830553e-02, 7.6335483114856550e-02, 7.6645069406082025e-02, 7.6518236422572286e-02, 7.6070026801633092e-02, 7.5317681659827690e-02, 7.4425157374531647e-02, 7.3388495935441944e-02, 7.2025326195785541e-02, 7.0193404018271288e-02, 6.8026592016286136e-02, 6.5456943167811948e-02, 6.2512985198904428e-02, 5.9323349484447355e-02, 5.5874399957793752e-02, 5.2286912785770030e-02, 4.8537164155113929e-02, 4.4586588786099043e-02, 4.0401343026453942e-02, 3.6061568417785447e-02, 3.1578648616828402e-02, 2.6677135873875792e-02, 2.1486928474934580e-02, 1.5815799994412971e-02, 1.0380905613496628e-02, 4.8206184492747030e-03, 1.1625143398337901e-03, -9.7793331213542152e-04, 2.1895095060960900e-04, -1.5876888433094754e-05, -1.0078514601939612e-04, 5.6597641643485720e-05, 9.1406525868604777e-05, 3.2154184178854735e-05, 6.0132188788961101e-05, 5.7042545082310824e-05, 5.4502162264537833e-05, 4.0100905747345234e-05, 5.1482238181874003e-05, 1.0762167431252638e-04, 4.5165435323452123e-04, 1.0677799892103987e-03, 1.8689518923297810e-03, 1.9390712371529473e-03, 1.9051488880305299e-03, 1.8685043242487388e-03, 1.8629897858891903e-03, 1.8641229841945064e-03, 1.8666423037945463e-03, 1.8659162748897976e-03, 1.8695095934832091e-03, 1.8554842981294592e-03, 6.7852153823607111e-02, 6.8969667274845076e-02, 7.1403309586536359e-02, 7.3354573989914504e-02, 7.4027297062926434e-02, 7.4092460638636587e-02, 7.3918472862651144e-02, 7.3599121228103415e-02, 7.3174001210120396e-02, 7.2483390344990295e-02, 7.1511133906783306e-02, 7.0047054378388526e-02, 6.8035593427113572e-02, 6.5668900674530906e-02, 6.2951903865956629e-02, 5.9904801311744110e-02, 5.6600232675139438e-02, 5.2994106852845370e-02, 4.9234861134097314e-02, 4.5286536713750609e-02, 4.1101578574685931e-02, 3.6658286659455579e-02, 3.2051857416444209e-02, 2.7167849251654639e-02, 2.1841190782616347e-02, 1.5902670599198216e-02, 1.0078790056839730e-02, 4.5562734233897837e-03, 1.5278355173613421e-03, -1.0312805910202825e-03, 4.5981701670163346e-04, -1.1322154508007395e-04, 2.0636846363542930e-05, 1.4616578124022474e-04, 4.5473263417457514e-05, 4.4982249387994275e-05, 6.6578953171180275e-05, 5.3565258799131024e-05, 5.2235555627851275e-05, 5.7957067481872609e-05, 5.3364146054986525e-05, 5.9822864929258617e-05, 1.2143997309060813e-04, 4.4396636413411545e-04, 1.0684162314805467e-03, 1.8571341574240734e-03, 1.9323100264037002e-03, 1.8952900735088782e-03, 1.8601542538617215e-03, 1.8535746242126895e-03, 1.8553966348545147e-03, 1.8566063407040000e-03, 1.8578351242153522e-03, 1.8531193670475806e-03, 1.8540201734560616e-03, 6.4327931022366683e-02, 6.5400347771114503e-02, 6.7003706475805447e-02, 6.8590943095732201e-02, 6.9604334846362678e-02, 7.0247615311034017e-02, 7.0714842196772709e-02, 7.1002561821278537e-02, 7.0997251198168090e-02, 7.0459372424878083e-02, 6.9454391868376361e-02, 6.7823248349837939e-02, 6.5670294132336521e-02, 6.3192232528840195e-02, 6.0418572503402018e-02, 5.7298303768491876e-02, 5.3911273551561979e-02, 5.0213767584295715e-02, 4.6254550404295540e-02, 4.2089937210168467e-02, 3.7676434215433270e-02, 3.2969177538547056e-02, 2.7974499212380446e-02, 2.2674804381322192e-02, 1.6602957996214873e-02, 1.0687880412876142e-02, 4.5526493008899056e-03, 1.2996774725842378e-03, -1.0375998560417418e-03, 4.4972721583418464e-04, -1.7837285029271706e-04, 2.8723306088593784e-05, 8.8558515790808530e-05, 3.5316216826421833e-05, 6.1960287350163070e-05, 5.6375749824208144e-05, 4.9064341258267829e-05, 5.2282083161904363e-05, 5.2985331947205809e-05, 5.1256938627592228e-05, 4.4946538392146857e-05, 5.4350684319896301e-05, 1.1525064743559129e-04, 4.4809593293619653e-04, 1.0691285491356826e-03, 1.8628849482062713e-03, 1.9354864759300119e-03, 1.8998079382796125e-03, 1.8638614270931179e-03, 1.8577135403878109e-03, 1.8590950668967094e-03, 1.8609021708466871e-03, 1.8609874779088793e-03, 1.8617167553181071e-03, 1.8633624869058554e-03, 5.9240101154865721e-02, 6.0284120631743071e-02, 6.1897693623136650e-02, 6.3755559673071727e-02, 6.5148845767154781e-02, 6.6452183519357513e-02, 6.7535787434169950e-02, 6.8335417061156103e-02, 6.8558830835188947e-02, 6.8107951208761786e-02, 6.7100611634022977e-02, 6.5440174689407493e-02, 6.3279916078307089e-02, 6.0801876976136565e-02, 5.8003848557121263e-02, 5.4808481001274105e-02, 5.1321538573504022e-02, 4.7502482467257898e-02, 4.3314139849143236e-02, 3.8911459326689858e-02, 3.4281980751170504e-02, 2.9242330761128834e-02, 2.3834938242929198e-02, 1.7892379150351845e-02, 1.1504309516620933e-02, 5.4116131178702249e-03, 1.6611306668538662e-03, -1.0564967700785780e-03, 4.7439477755938949e-04, -1.8560134328914036e-04, 9.2304076720891117e-05, 7.7275731517352980e-05, 3.7310702334837884e-05, 6.5492285019406679e-05, 5.0908857052658994e-05, 6.2101044314414233e-05, 6.0403173065487205e-05, 5.5900036531728865e-05, 5.2383873835260000e-05, 5.0875733661935867e-05, 4.4857282116331179e-05, 5.1806974040954391e-05, 1.1404071512436092e-04, 4.4705737124639956e-04, 1.0718194562040052e-03, 1.8646309118401992e-03, 1.9384435956423883e-03, 1.9021794496978056e-03, 1.8665674723578659e-03, 1.8601976684363163e-03, 1.8617813971124764e-03, 1.8633532738907990e-03, 1.8641548602402350e-03, 1.8640862336733782e-03, 1.8661373194051752e-03, 5.3869908018851553e-02, 5.5202189078640336e-02, 5.7199271790378044e-02, 5.9547948211065890e-02, 6.1212620650411761e-02, 6.2951271299896763e-02, 6.4405863886966522e-02, 6.5504157292660029e-02, 6.5858819796913215e-02, 6.5508661770887433e-02, 6.4589040231995923e-02, 6.3034923334207626e-02, 6.0954453102996464e-02, 5.8514606893189734e-02, 5.5676900288258481e-02, 5.2388763895047902e-02, 4.8775934022611156e-02, 4.4799734234623828e-02, 4.0390356994087315e-02, 3.5762503871527920e-02, 3.0868920837969108e-02, 2.5451177368640266e-02, 1.9412451395211288e-02, 1.3107988521203252e-02, 6.4047125551153043e-03, 2.4277144654836990e-03, -1.1719916795828722e-03, 4.8106505342189991e-04, -1.8824885108503409e-04, 6.9743357688481305e-05, 6.1716090840334593e-05, 4.4206387023144479e-05, 6.3541432391100647e-05, 4.9246753211723301e-05, 5.4190250235131167e-05, 5.2818577752197085e-05, 5.2980109272843504e-05, 5.3098146681066204e-05, 5.2858942984552403e-05, 5.0809952379692709e-05, 4.4492223151656225e-05, 5.3444485900746510e-05, 1.1498499050107945e-04, 4.4732162438413005e-04, 1.0706143801644001e-03, 1.8638203745213492e-03, 1.9372157596978315e-03, 1.9011989867418785e-03, 1.8654384637755840e-03, 1.8591704205084018e-03, 1.8606685372695659e-03, 1.8623524098760329e-03, 1.8628342871268562e-03, 1.8627100501788999e-03, 1.8624387364861263e-03, 4.9535216669018015e-02, 5.0909474747443138e-02, 5.3097248680463602e-02, 5.5784131508176245e-02, 5.7683923956238774e-02, 5.9587635696861874e-02, 6.1191917035033162e-02, 6.2439250960782927e-02, 6.3002796162075020e-02, 6.2840183897736560e-02, 6.2097707941487564e-02, 6.0711878556626735e-02, 5.8712124288775702e-02, 5.6280439934833740e-02, 5.3361630237296370e-02, 4.9964447517922755e-02, 4.6215311176361136e-02, 4.2060432801489897e-02, 3.7481940410608337e-02, 3.2633820773139977e-02, 2.7429564184170308e-02, 2.1469484744920466e-02, 1.4918086546182568e-02, 8.0017617713880832e-03, 3.1186764868375038e-03, -2.9993625311767580e-04, 2.2215528083939444e-04, -1.0543075034140019e-04, 5.1631809981590914e-05, 6.7162090578179267e-05, 4.3049895849769042e-05, 6.2287058733047893e-05, 5.6154370615261812e-05, 5.7808543987413437e-05, 5.2221175851676625e-05, 5.2847029157410926e-05, 5.2889216250521960e-05, 5.2902975069293390e-05, 5.2696217883926692e-05, 5.1519124942597154e-05, 4.5261759796539621e-05, 5.3987459902299793e-05, 1.1564440401746347e-04, 4.4714010014632787e-04, 1.0703176398796290e-03, 1.8630472381919105e-03, 1.9365750969430784e-03, 1.9004380209809079e-03, 1.8647453943590492e-03, 1.8584321890776391e-03, 1.8599760676863682e-03, 1.8615939087620406e-03, 1.8621876888900441e-03, 1.8615970256823597e-03, 1.8622382966736910e-03, 4.5689250858039862e-02, 4.7131266881281476e-02, 4.9372017997089727e-02, 5.2296707926287121e-02, 5.4399446651398710e-02, 5.6280157315148911e-02, 5.7880752061464043e-02, 5.9197152626284305e-02, 6.0020524891930452e-02, 6.0114693744376557e-02, 5.9603064638966030e-02, 5.8394892253607784e-02, 5.6484583649617073e-02, 5.4068987968536590e-02, 5.1071604279080876e-02, 4.7558312618668358e-02, 4.3671666029380288e-02, 3.9345353731472563e-02, 3.4599277740205554e-02, 2.9483865033550313e-02, 2.3893231004640626e-02, 1.7341642447961374e-02, 1.0522182986007326e-02, 3.7097272391973151e-03, 6.8000829832140280e-04, -3.2010325574892905e-04, 5.4538525886331923e-05, -2.1956946681740131e-05, 7.6294825387762869e-05, 4.2137350058108341e-05, 6.2061017616971766e-05, 5.0299430946734333e-05, 5.4188500643247348e-05, 5.2415649834680809e-05, 5.2962236183745405e-05, 5.2580606987222849e-05, 5.2705665794397029e-05, 5.2888365570279146e-05, 5.2768762683947187e-05, 5.0937490127691990e-05, 4.4732506869614136e-05, 5.3603989261699130e-05, 1.1530015950766642e-04, 4.4725087758041340e-04, 1.0704631081353319e-03, 1.8633723418335201e-03, 1.9368173686121716e-03, 1.9007331031643130e-03, 1.8650095105683989e-03, 1.8587195612347431e-03, 1.8602417207748731e-03, 1.8618955496164072e-03, 1.8624329995137888e-03, 1.8621871633587388e-03, 1.8629718942048932e-03, 4.1820710713252614e-02, 4.3408319148066789e-02, 4.5806629497781998e-02, 4.8984839724223905e-02, 5.1265280095748392e-02, 5.3029840785177404e-02, 5.4559581136383768e-02, 5.5902335252985949e-02, 5.6957351046497039e-02, 5.7318120871804462e-02, 5.7054496255638111e-02, 5.6002535269667496e-02, 5.4219010991395110e-02, 5.1871941923359949e-02, 4.8842123003849582e-02, 4.5215987644257258e-02, 4.1188893319078719e-02, 3.6721909936433803e-02, 3.1733258490053533e-02, 2.6296094465095024e-02, 2.0174737746883321e-02, 1.3248278285213435e-02, 6.3711934227910702e-03, 1.2051093100398525e-03, -7.0566133215480464e-04, 2.3204181001824274e-04, -6.7998125956952966e-05, 7.3335474610858184e-05, 4.1334700677131422e-05, 6.4536289355067013e-05, 5.3725701107413782e-05, 5.4570151276219478e-05, 5.2405812854649961e-05, 5.2864055780351496e-05, 5.2604625561988149e-05, 5.3456343452463739e-05, 5.3285736040770368e-05, 5.3161016944513651e-05, 5.2733704676915627e-05, 5.0937054438822479e-05, 4.4702211648424406e-05, 5.3416653651992821e-05, 1.1516519666157029e-04, 4.4723543538056692e-04, 1.0706059809141705e-03, 1.8635270215511983e-03, 1.9370183899096304e-03, 1.9009161745788647e-03, 1.8652070420122166e-03, 1.8589070116175742e-03, 1.8604394015583334e-03, 1.8620803936152455e-03, 1.8626576750414938e-03, 1.8623815926303309e-03, 1.8631506579471285e-03, 3.8003675588820854e-02, 3.9726196421844981e-02, 4.2328325071556407e-02, 4.5737827757547339e-02, 4.8155475668268513e-02, 4.9880676233630773e-02, 5.1377999060753250e-02, 5.2734163977196290e-02, 5.3959965605582361e-02, 5.4553144566294530e-02, 5.4526161448268752e-02, 5.3629228290405652e-02, 5.1974286051094200e-02, 4.9702693739650236e-02, 4.6657197523395540e-02, 4.2927898389066597e-02, 3.8766281230420120e-02, 3.4131172646978833e-02, 2.8879162290248128e-02, 2.3001687804851203e-02, 1.6479760441764687e-02, 9.0481248084097448e-03, 3.4791767604902680e-03, -9.9184150436144370e-04, 3.7106098942591521e-04, -1.1884541938624630e-04, 5.7151133028968424e-05, 5.1153783001115839e-05, 5.6777383755638746e-05, 5.3096824912782689e-05, 5.3522990508956072e-05, 5.2629433779456549e-05, 5.2700381863606091e-05, 5.2661375655929062e-05, 5.2786417166233794e-05, 5.2757183026070316e-05, 5.2851041985704490e-05, 5.2958995261766532e-05, 5.2758092446430365e-05, 5.0920937356361225e-05, 4.4680845670066342e-05, 5.3533634680276993e-05, 1.1524903460382295e-04, 4.4723132734207096e-04, 1.0705414577592558e-03, 1.8634598967900344e-03, 1.9369406339088935e-03, 1.9008465810385147e-03, 1.8651317618483452e-03, 1.8588359471173727e-03, 1.8603635997823428e-03, 1.8620096129501455e-03, 1.8625685892270914e-03, 1.8622745412042972e-03, 1.8628960589343083e-03, 3.4354584802722597e-02, 3.6160554296162363e-02, 3.8937209414941852e-02, 4.2495683257078531e-02, 4.4978832963940334e-02, 4.6857274759042160e-02, 4.8418081754380733e-02, 4.9805320845713354e-02, 5.1132435778180170e-02, 5.1908487834101909e-02, 5.2095014538899476e-02, 5.1376929608937486e-02, 4.9813103181553249e-02, 4.7573642482101039e-02, 4.4490588103573141e-02, 4.0675000586900566e-02, 3.6377715709177430e-02, 3.1527765283519457e-02, 2.5956106406235507e-02, 1.9655624974620881e-02, 1.2647252803443294e-02, 5.4832503486942344e-03, 7.9484453384560309e-04, -1.9473480944564371e-04, 2.7755235275812997e-05, -1.1221457529240641e-05, 7.3166326139345996e-05, 4.7608918070587376e-05, 5.9822906241222755e-05, 5.2358065126158199e-05, 5.3024265607951824e-05, 5.2579340294811304e-05, 5.3203237286948396e-05, 5.2994175582765234e-05, 5.2750424505564315e-05, 5.2780666006076304e-05, 5.2817874880580212e-05, 5.2940320902928753e-05, 5.2746174681282540e-05, 5.0973102026311886e-05, 4.4734026672117730e-05, 5.3573135067942904e-05, 1.1529104972263709e-04, 4.4722851631593996e-04, 1.0705132936755263e-03, 1.8634106977488735e-03, 1.9368928664032792e-03, 1.9007944337088285e-03, 1.8650819715328650e-03, 1.8587840174983643e-03, 1.8603137832664935e-03, 1.8619560580725206e-03, 1.8625201117268421e-03, 1.8621985176105454e-03, 1.8628756896190951e-03, 3.0788491480175723e-02, 3.2678947724648168e-02, 3.5640989818266931e-02, 3.9328433709457752e-02, 4.1847247351092763e-02, 4.3882977444641619e-02, 4.5550808965360373e-02, 4.7010668068468819e-02, 4.8382811650447680e-02, 4.9315692277235236e-02, 4.9716840279937724e-02, 4.9183387150759872e-02, 4.7698151326939733e-02, 4.5475108734761113e-02, 4.2355989116405236e-02, 3.8455281725773942e-02, 3.4022285625060662e-02, 2.8928023796083054e-02, 2.2958751044745124e-02, 1.6129954715071768e-02, 8.6550834759552588e-03, 2.7071080177450148e-03, -8.6949131921294559e-04, 2.3280380311900304e-04, -7.1261240728675079e-05, 6.9693514045922079e-05, 4.5250582250993468e-05, 5.8617004223435232e-05, 5.2275962315226545e-05, 5.3207797875422213e-05, 5.2563010378932846e-05, 5.2756728262873334e-05, 5.2735884370131491e-05, 5.2780091702927274e-05, 5.2774285716758419e-05, 5.2754822728553027e-05, 5.2808455935614905e-05, 5.2938257745328390e-05, 5.2750198844194916e-05, 5.0930824849157566e-05, 4.4696769228170311e-05, 5.3545471142248692e-05, 1.1526872194257996e-04, 4.4723308883371930e-04, 1.0705270965934558e-03, 1.8634319396308512e-03, 1.9369114669714202e-03, 1.9008147841798903e-03, 1.8651010891667795e-03, 1.8588041456408914e-03, 1.8603328211751870e-03, 1.8619770974386603e-03, 1.8625384406072932e-03, 1.8622385084503500e-03, 1.8629307253119590e-03, 2.7214987955934637e-02, 2.9212492284657866e-02, 3.2419330923553334e-02, 3.6287761546394737e-02, 3.8871825237951206e-02, 4.0894091141848783e-02, 4.2656700543543001e-02, 4.4249542261346891e-02, 4.5626028086205611e-02, 4.6707540203828966e-02, 4.7330881348013547e-02, 4.6966268206405606e-02, 4.5582648176832989e-02, 4.3401566333960175e-02, 4.0270034155715013e-02, 3.6274314219303549e-02, 3.1685250219703052e-02, 2.6364763159915618e-02, 1.9883186561510401e-02, 1.2499376241910391e-02, 4.6532587018159053e-03, 6.2541933472598716e-04, -1.2669726388866490e-04, 3.4397427305476928e-05, -3.0278137199602228e-06, 6.5198591694882213e-05, 5.4488618440735557e-05, 5.4810864405356767e-05, 5.2707080237357003e-05, 5.3018812015082981e-05, 5.2867082973790389e-05, 5.2796598064444804e-05, 5.2768394112974074e-05, 5.2768712119231917e-05, 5.2753547721227281e-05, 5.2816381820984366e-05, 5.2846677342528096e-05, 5.2957450811188619e-05, 5.2747932388233117e-05, 5.0931030263162043e-05, 4.4694464421978511e-05, 5.3532191977547400e-05, 1.1525821728598020e-04, 4.4723332125605621e-04, 1.0705359879766045e-03, 1.8634438196531683e-03, 1.9369251898576671e-03, 1.9008280462705751e-03, 1.8651149026371111e-03, 1.8588175372043420e-03, 1.8603467374986031e-03, 1.8619904127511974e-03, 1.8625540136021892e-03, 1.8622534293089191e-03, 1.8629423614949297e-03, 2.3630642246556345e-02, 2.5748043123561208e-02, 2.9182415274958379e-02, 3.3268433010207238e-02, 3.5961125201497732e-02, 3.7970492524705766e-02, 3.9849539810440204e-02, 4.1609968368396963e-02, 4.2999542521044265e-02, 4.4175335829075006e-02, 4.4953508948345836e-02, 4.4753848488348298e-02, 4.3498829575943310e-02, 4.1379163387963679e-02, 3.8222619699366002e-02, 3.4109221979076926e-02, 2.9351475379143361e-02, 2.3722531173120152e-02, 1.6825263938363838e-02, 9.0556049991372348e-03, 1.7358628663038712e-03, -5.9683853620117518e-04, 1.5396631248263255e-04, -5.6779346267236455e-05, 6.9547289933492555e-05, 4.7648025991522785e-05, 5.6700728991044351e-05, 5.2723750521257464e-05, 5.2907401142596245e-05, 5.2636640472289416e-05, 5.2760620481824222e-05, 5.2761344160533072e-05, 5.2762862948316423e-05, 5.2759962832324633e-05, 5.2763434995071298e-05, 5.2764293206990607e-05, 5.2816157932941041e-05, 5.2942978717466564e-05, 5.2749711743014107e-05, 5.0929880929287301e-05, 4.4693007279308497e-05, 5.3540530251209300e-05, 1.1526452673011543e-04, 4.4723246015010583e-04, 1.0705318212053383e-03, 1.8634385672902528e-03, 1.9369197813279419e-03, 1.9008228559514542e-03, 1.8651095276808935e-03, 1.8588123392386611e-03, 1.8603413230645132e-03, 1.8619852294191554e-03, 1.8625478445696213e-03, 1.8622452793244505e-03, 1.8629246845760124e-03, 2.0052873382876063e-02, 2.2274625090535190e-02, 2.5876546694223203e-02, 3.0171922225834129e-02, 3.3026143287628193e-02, 3.5205237404993713e-02, 3.7265545441224728e-02, 3.9184821303877460e-02, 4.0634859256633016e-02, 4.1816722757538713e-02, 4.2624411206091686e-02, 4.2594288248961380e-02, 4.1474346999764267e-02, 3.9424949459052470e-02, 3.6186374935230615e-02, 3.1957366284416304e-02, 2.6952802451584622e-02, 2.0990628928372369e-02, 1.3605686424393438e-02, 6.4543809552081999e-03, -4.5594044403834265e-05, 4.9927432049852063e-05, -1.3623219485823970e-05, 1.7319890799002262e-05, 5.8518664840399366e-05, 5.4012912826779101e-05, 5.4517565159872596e-05, 5.2679181127670813e-05, 5.2967994696895844e-05, 5.2694278495752996e-05, 5.2765812411753932e-05, 5.2758046743519752e-05, 5.2799315383886867e-05, 5.2781110899871455e-05, 5.2759420432781926e-05, 5.2766321167487627e-05, 5.2813533482008729e-05, 5.2941740889181399e-05, 5.2748909085955416e-05, 5.0933649477882745e-05, 4.4696805450734565e-05, 5.3543390062162405e-05, 1.1526741806440266e-04, 4.4723245276737404e-04, 1.0705295838468647e-03, 1.8634351840014795e-03, 1.9369162485214553e-03, 1.9008191735299512e-03, 1.8651059214476184e-03, 1.8588086450717447e-03, 1.8603377286873137e-03, 1.8619814362768254e-03, 1.8625442656282144e-03, 1.8622400664488939e-03, 1.8629229598739598e-03, 1.6444299014758863e-02, 1.8812689747126937e-02, 2.2570048872566521e-02, 2.7103193413506498e-02, 3.0138345255189842e-02, 3.2601500407270688e-02, 3.4855223795559949e-02, 3.6884522659063002e-02, 3.8400240998225116e-02, 3.9572150548897692e-02, 4.0373313804331394e-02, 4.0465231950393227e-02, 3.9452251923694913e-02, 3.7465790755389784e-02, 3.4174930238512084e-02, 2.9796446491839254e-02, 2.4524873958197260e-02, 1.8075213857759575e-02, 1.0432117402210860e-02, 3.8707202865657557e-03, -2.6077804403231168e-04, 6.3128662680312164e-05, -2.8459918129432822e-05, 5.5719401154675463e-05, 5.2016485593647329e-05, 5.5461383633429911e-05, 5.2884832073259175e-05, 5.2858008187491485e-05, 5.2664344827243856e-05, 5.2759459559578259e-05, 5.2754905844412904e-05, 5.2767835202233211e-05, 5.2764140899099156e-05, 5.2764414752369525e-05, 5.2761218283702710e-05, 5.2764338611292642e-05, 5.2813024859925530e-05, 5.2941618214068723e-05, 5.2749202745395192e-05, 5.0930611218844257e-05, 4.4694135788875603e-05, 5.3541391042832482e-05, 1.1526585855862323e-04, 4.4723270280384246e-04, 1.0705306598889979e-03, 1.8634366495194734e-03, 1.9369176335276494e-03, 1.9008206161973786e-03, 1.8651073193175736e-03, 1.8588100864035653e-03, 1.8603391165677948e-03, 1.8619829333296396e-03, 1.8625456392235610e-03, 1.8622428295121435e-03, 1.8629270410138168e-03, 1.2876248122036920e-02, 1.5326759677370717e-02, 1.9378555420750378e-02, 2.4171903204155534e-02, 2.7380120550006753e-02, 3.0116250411609230e-02, 3.2509167802371300e-02, 3.4578842420240959e-02, 3.6131930612612773e-02, 3.7346451171858280e-02, 3.8200645697781685e-02, 3.8331479057278454e-02, 3.7376574272406891e-02, 3.5444752525357365e-02, 3.2185448397999999e-02, 2.7648611011933250e-02, 2.2021988438300871e-02, 1.5197803870814817e-02, 7.1522667375836547e-03, 1.6382485459320358e-03, -5.6504882011109477e-04, 1.5582745254012127e-04, -4.3383189652588530e-05, 7.4091541261184750e-05, 4.9173703109169253e-05, 5.5747355482662200e-05, 5.2543291706740355e-05, 5.2848147626159391e-05, 5.2688291972412774e-05, 5.2781801779690588e-05, 5.2775576686546337e-05, 5.2769301013936578e-05, 5.2765137156563464e-05, 5.2763359475384988e-05, 5.2759679163287100e-05, 5.2768866087193188e-05, 5.2815775879460453e-05, 5.2943005379174161e-05, 5.2749041460321063e-05, 5.0930624657343180e-05, 4.4693967091367607e-05, 5.3540441933625544e-05, 1.1526508782998363e-04, 4.4723275154276356e-04, 1.0705312674858926e-03, 1.8634375317656555e-03, 1.9369186035922039e-03, 1.9008215830571935e-03, 1.8651083064263644e-03, 1.8588110561307577e-03, 1.8603401111402622e-03, 1.8619839002959621e-03, 1.8625467317582552e-03, 1.8622439538834752e-03, 1.8629278126879945e-03, 9.3587214365224401e-03, 1.2065054360087825e-02, 1.6226562587134473e-02, 2.1340779730302142e-02, 2.4732062685539145e-02, 2.7653447319475871e-02, 3.0143563464002106e-02, 3.2267777856104858e-02, 3.3853435510542082e-02, 3.5128346769555827e-02, 3.6051845955633752e-02, 3.6202482663008906e-02, 3.5297426905627718e-02, 3.3417554107802047e-02, 3.0201279325358408e-02, 2.5467400811192979e-02, 1.9531476238454866e-02, 1.2306173719667307e-02, 4.6855912625121902e-03, -3.2209155888084638e-04, 1.2328178195647964e-04, -4.1560284413268492e-05, 4.2557541117190077e-05, 5.4770723135043693e-05, 5.4390178536568240e-05, 5.3460862563253211e-05, 5.2696599902952873e-05, 5.2737134146187356e-05, 5.2732828955216410e-05, 5.2763875628504806e-05, 5.2765360473757554e-05, 5.2765961757691506e-05, 5.2764041802506855e-05, 5.2762742797907066e-05, 5.2760439764399832e-05, 5.2765155364469107e-05, 5.2813598770335069e-05, 5.2941966826742899e-05, 5.2749166470385693e-05, 5.0930541020800570e-05, 4.4693862898143442e-05, 5.3541038695748843e-05, 1.1526554760332040e-04, 4.4723267825265005e-04, 1.0705309820014919e-03, 1.8634371441783721e-03, 1.9369182233728692e-03, 1.9008212055216006e-03, 1.8651079239747964e-03, 1.8588106799928559e-03, 1.8603397253595707e-03, 1.8619835227585474e-03, 1.8625463015521813e-03, 1.8622433406702459e-03, 1.8629265746231498e-03, 6.4141322510607585e-03, 8.9321228821969412e-03, 1.3220128254233411e-02, 1.8482646149513428e-02, 2.2170467615760046e-02, 2.5125601957230698e-02, 2.7738078728830655e-02, 3.0007297391148050e-02, 3.1652908126856283e-02, 3.2960139354450080e-02, 3.3905398256117596e-02, 3.4113082783765729e-02, 3.3282999434211660e-02, 3.1457483197822676e-02, 2.8187145827618460e-02, 2.3236550288755098e-02, 1.6981267018146944e-02, 9.5302434913135444e-03, 3.0510766057878112e-03, -6.0490864307457442e-04, 1.5628584577655696e-04, -5.2249101880281854e-05, 7.5807159947313519e-05, 4.7443663053774205e-05, 5.6447004942634860e-05, 5.2285603315219294e-05, 5.2934480915948928e-05, 5.2663189741896661e-05, 5.2786216264936785e-05, 5.2758884945181945e-05, 5.2767462997127282e-05, 5.2764038851598023e-05, 5.2766774824629373e-05, 5.2764220783568218e-05, 5.2760205380409914e-05, 5.2765310397459594e-05, 5.2813411560974805e-05, 5.2941875812292189e-05, 5.2749108195285392e-05, 5.0930811242631206e-05, 4.4694135294550299e-05, 5.3541244801507598e-05, 1.1526575273414978e-04, 4.4723268236196862e-04, 1.0705308160228592e-03, 1.8634369056156528e-03, 1.9369179661827892e-03, 1.9008209430719538e-03, 1.8651076630577218e-03, 1.8588104158757616e-03, 1.8603394650446238e-03, 1.8619832531586117e-03, 1.8625460362608774e-03, 1.8622429829827144e-03, 1.8629264315256002e-03, 3.5621865794431655e-03, 6.5984118917273701e-03, 1.0280824841520484e-02, 1.5693480505953435e-02, 1.9562920360964586e-02, 2.2623737140062928e-02, 2.5376337213146142e-02, 2.7824871100433027e-02, 2.9589006927442076e-02, 3.0920105557044619e-02, 3.1846560495130398e-02, 3.2109831455504272e-02, 3.1342445879596739e-02, 2.9542757506956861e-02, 2.6143750182106108e-02, 2.0922732612060561e-02, 1.4276216072204461e-02, 6.6608656778629370e-03, 1.8510195918972447e-03, -4.0160776468086182e-04, 1.0510749492450052e-04, -1.0886040530306735e-05, 6.9598085640890125e-05, 5.0275392945029910e-05, 5.4798662690386493e-05, 5.2368563572536421e-05, 5.2831430348099458e-05, 5.2706804631570120e-05, 5.2770201150462008e-05, 5.2763159107990573e-05, 5.2765602966968795e-05, 5.2764422579637439e-05, 5.2764231268321678e-05, 5.2763057609678756e-05, 5.2760354176267412e-05, 5.2765170709441294e-05, 5.2813374483528338e-05, 5.2941866010266923e-05, 5.2749128823902588e-05, 5.0930593050370980e-05, 4.4693943753570180e-05, 5.3541101008860592e-05, 1.1526564173025100e-04, 4.4723269845406524e-04, 1.0705308952937355e-03, 1.8634370088490952e-03, 1.9369180669041822e-03, 1.9008210454204177e-03, 1.8651077642046284e-03, 1.8588105181394522e-03, 1.8603395662262032e-03, 1.8619833577300981e-03, 1.8625461424868935e-03, 1.8622431655831093e-03, 1.8629267426555731e-03, 2.3514368911920786e-03, 4.1142661839193339e-03, 7.9487405360018464e-03, 1.2895832106606619e-02, 1.6905431728487692e-02, 2.0200318784988111e-02, 2.3147829850116756e-02, 2.5698741410456759e-02, 2.7659050794639595e-02, 2.9029639409889563e-02, 2.9933181341264808e-02, 3.0209069073738347e-02, 2.9453806196929232e-02, 2.7617830500819961e-02, 2.4093550625824151e-02, 1.8500081111279671e-02, 1.1527072700577639e-02, 3.6075719219049555e-03, 6.7213420362941575e-04, -1.8092014324151196e-04, 4.4213790690973049e-05, 4.0668901462938013e-05, 6.0168700567404412e-05, 5.3025112169161920e-05, 5.3280782018158215e-05, 5.2609023395609977e-05, 5.2763202836968741e-05, 5.2746844763419359e-05, 5.2766945676425314e-05, 5.2765912512062820e-05, 5.2765868343043954e-05, 5.2764577350369226e-05, 5.2764272656085465e-05, 5.2763021663991764e-05, 5.2760246546339310e-05, 5.2765497291993690e-05, 5.2813570544974977e-05, 5.2941965211560180e-05, 5.2749117148885596e-05, 5.0930594057515726e-05, 4.4693931629215668e-05, 5.3541032994143788e-05, 1.1526558602797810e-04, 4.4723270262555734e-04, 1.0705309380649364e-03, 1.8634370729343312e-03, 1.9369181358554084e-03, 1.9008211154740624e-03, 1.8651078342265149e-03, 1.8588105890860684e-03, 1.8603396352917904e-03, 1.8619834314280927e-03, 1.8625462093546793e-03, 1.8622432703839394e-03, 1.8629267706187444e-03, -3.2600115372295583e-04, 3.0859865393329518e-03, 5.3730983336219207e-03, 1.0391756033021010e-02, 1.4149086283142270e-02, 1.7847250517553721e-02, 2.0967709804752856e-02, 2.3603913700291759e-02, 2.5710603305254983e-02, 2.7157397662398653e-02, 2.8087404859481288e-02, 2.8352249167706050e-02, 2.7566267727520796e-02, 2.5682298385986502e-02, 2.1988718440689843e-02, 1.6147898358690720e-02, 8.8993291877930772e-03, 1.5631715987407054e-03, -5.6870816941074868e-04, 1.5609464409325748e-04, -3.6309431804258522e-05, 9.2414585476419096e-05, 4.8215035336777617e-05, 5.5845498475801548e-05, 5.1840464074166172e-05, 5.2892426980978014e-05, 5.2677811335715602e-05, 5.2783411851776132e-05, 5.2760725688035010e-05, 5.2766515905909175e-05, 5.2764035422020018e-05, 5.2764510505359196e-05, 5.2764162428050615e-05, 5.2763006547304409e-05, 5.2760299523281879e-05, 5.2765231293654152e-05, 5.2813413348528227e-05, 5.2941890560378954e-05, 5.2749126099288305e-05, 5.0930588083918384e-05, 4.4693924170699082e-05, 5.3541075806947689e-05, 1.1526561915318161e-04, 4.4723269713666810e-04, 1.0705309178453970e-03, 1.8634370448003430e-03, 1.9369181089640367e-03, 1.9008210877154144e-03, 1.8651078080108685e-03, 1.8588105597620974e-03, 1.8603396119994480e-03, 1.8619833961917060e-03, 1.8625462007591941e-03, 1.8622431800595456e-03, 1.8629267347091730e-03, 9.1350645308890468e-05, 4.1590821205380837e-04, 3.6719426365278062e-03, 7.8646966191331571e-03, 1.1539872465489803e-02, 1.5449910516954605e-02, 1.8789722849115877e-02, 2.1531083041494731e-02, 2.3662960009186822e-02, 2.5214240428104325e-02, 2.6255886816436633e-02, 2.6492685989032299e-02, 2.5683096291677501e-02, 2.3715593953941894e-02, 1.9897748242363442e-02, 1.3748399719187692e-02, 6.9876030525545278e-03, 4.2743832853209864e-04, -6.3993734944040883e-05, 2.6497473734547991e-06, 4.8138413352444557e-05, 8.3186770502814477e-05, 5.2580869559467686e-05, 5.3749691076648865e-05, 5.2025249165993696e-05, 5.2783768404967326e-05, 5.2728604532747199e-05, 5.2780245980791284e-05, 5.2764964989734962e-05, 5.2765302768973101e-05, 5.2764062626595551e-05, 5.2764356640703723e-05, 5.2764383170459932e-05, 5.2763118494429312e-05, 5.2760283519000503e-05, 5.2765241669758248e-05, 5.2813399619658759e-05, 5.2941883965096495e-05, 5.2749121942838293e-05, 5.0930607497204466e-05, 4.4693943732465019e-05, 5.3541090599345613e-05, 1.1526563389027601e-04, 4.4723269739734700e-04, 1.0705309059690620e-03, 1.8634370277325833e-03, 1.9369180901403300e-03, 1.9008210699044651e-03, 1.8651077869810267e-03, 1.8588105454536974e-03, 1.8603395843709665e-03, 1.8619833935622633e-03, 1.8625461358193149e-03, 1.8622432499497377e-03, 1.8629266149160237e-03, -2.3769360111293381e-05, -1.2652511744191350e-03, 2.1522749050061538e-03, 5.5566013857502152e-03, 9.1144240519332679e-03, 1.3078463353656079e-02, 1.6614393956855496e-02, 1.9554901653094890e-02, 2.1713260348362445e-02, 2.3354074007106946e-02, 2.4490003727703689e-02, 2.4705908468046888e-02, 2.3849154309144478e-02, 2.1787294003132847e-02, 1.7744140324907891e-02, 1.1389523776162742e-02, 5.0194197610703775e-03, 4.6942967316568264e-04, -1.2761300737156150e-04, 1.9809934077933832e-05, 9.4332069833077611e-05, 7.4068725359107722e-05, 5.5406158114280957e-05, 5.1827847765927490e-05, 5.2339409713165638e-05, 5.2668763021634304e-05, 5.2782444976376801e-05, 5.2772573021637771e-05, 5.2766996491915720e-05, 5.2764050379587931e-05, 5.2764146878292472e-05, 5.2764310665246707e-05, 5.2764239005291197e-05, 5.2763031735223576e-05, 5.2760295851373466e-05, 5.2765230657474593e-05, 5.2813396949217702e-05, 5.2941883223201539e-05, 5.2749123446801229e-05, 5.0930591841233237e-05, 4.4693929967835731e-05, 5.3541080323871775e-05, 1.1526562578644633e-04, 4.4723269889804099e-04, 1.0705309112436934e-03, 1.8634370354106244e-03, 1.9369180978042033e-03, 1.9008210753876089e-03, 1.8651077988396476e-03, 1.8588105432407844e-03, 1.8603396102113998e-03, 1.8619833661447217e-03, 1.8625462395280693e-03, 1.8622430625704126e-03, 1.8629268674248477e-03, 6.9095880844109798e-06, -7.4063965346394557e-04, 6.0912396975306479e-04, 3.5937946915799734e-03, 6.9028054906128018e-03, 1.0734371080522418e-02, 1.4398172429012287e-02, 1.7639542337432836e-02, 1.9936729299725363e-02, 2.1621266711033583e-02, 2.2751890023548018e-02, 2.2968192358214842e-02, 2.2045231284567583e-02, 1.9824393275868643e-02, 1.5551775877570140e-02, 8.8696807360748448e-03, 2.9973466449009678e-03, 2.2940430631783761e-04, -3.5056943960912601e-05, 5.8602449550069797e-05, 1.0411358270917113e-04, 7.6193134222308568e-05, 5.3300225022502193e-05, 5.1744904481105381e-05, 5.2194226294149959e-05, 5.2728600085381858e-05, 5.2784951200110385e-05, 5.2777398510279199e-05, 5.2765716224265450e-05, 5.2764019326631873e-05, 5.2764099193360751e-05, 5.2764346084001224e-05, 5.2764249515124686e-05, 5.2763031354739947e-05, 5.2760287559061852e-05, 5.2765253837316144e-05, 5.2813410946677197e-05, 5.2941890352068663e-05, 5.2749122622637582e-05, 5.0930591902376127e-05, 4.4693929141902944e-05, 5.3541075330718857e-05, 1.1526562223037745e-04, 4.4723269833425744e-04, 1.0705309156799942e-03, 1.8634370390692232e-03, 1.9369181023893419e-03, 1.9008210839472745e-03, 1.8651077946203328e-03, 1.8588105680834067e-03, 1.8603395764497730e-03, 1.8619834445812611e-03, 1.8625460425249392e-03, 1.8622434920417673e-03, 1.8629263839489377e-03, 2.7331214967874488e-07, 2.0192086287269419e-05, -2.1787077095657178e-04, 1.9061846087818327e-03, 4.7924713434149583e-03, 8.3017121854689936e-03, 1.1997546295253080e-02, 1.5447018199111697e-02, 1.7913110562711266e-02, 1.9635659583485114e-02, 2.0751966854619310e-02, 2.1003703320238817e-02, 2.0028850655385608e-02, 1.7638782871263654e-02, 1.3153516995650103e-02, 6.4753985929355082e-03, 1.3178822534362876e-03, -1.3138651150929336e-04, 4.9450817206175982e-05, 7.0287389808526915e-05, 1.2409060050508184e-04, 7.0869755821701316e-05, 5.3719170143855661e-05, 5.1037218881354460e-05, 5.2323577339432806e-05, 5.2716885879209671e-05, 5.2802329897231664e-05, 5.2775321219804379e-05, 5.2765863758743926e-05, 5.2763509402447588e-05, 5.2764049273006206e-05, 5.2764332808801634e-05, 5.2764254595856060e-05, 5.2763029153948301e-05, 5.2760291448775456e-05, 5.2765234448221437e-05, 5.2813399691107750e-05, 5.2941885027890790e-05, 5.2749123296027162e-05, 5.0930591543779877e-05, 4.4693928558340652e-05, 5.3541078743298274e-05, 1.1526562381084715e-04, 4.4723270036563570e-04, 1.0705309108111111e-03, 1.8634370401985508e-03, 1.9369181003984516e-03, 1.9008210756142293e-03, 1.8651078114489594e-03, 1.8588105253058637e-03, 1.8603396555145098e-03, 1.8619832889099081e-03, 1.8625464657690831e-03, 1.8622425972135725e-03, 1.8629274058832082e-03, 5.3251831562486276e-06, 2.6518215019901017e-04, -4.7525742258846724e-04, 7.6908620278350634e-04, 2.6784586084535114e-03, 5.9634080815459843e-03, 9.5108165758733751e-03, 1.2950393442033060e-02, 1.5504570211868435e-02, 1.7297694219991111e-02, 1.8477346642551008e-02, 1.8806923003462487e-02, 1.7816693675488562e-02, 1.5327483752132815e-02, 1.0610990918492762e-02, 4.6655947447623251e-03, 3.6579678787058658e-04, -7.9469364798056259e-05, 3.1850854943397837e-05, 1.2500464757788122e-04, 1.2001690419878705e-04, 7.2705626617073377e-05, 5.2057001107275445e-05, 5.1154730098971912e-05, 5.2266544563788164e-05, 5.2758663878183633e-05, 5.2801617488712911e-05, 5.2776735618158588e-05, 5.2765029222053055e-05, 5.2763458504906266e-05, 5.2764013483838556e-05, 5.2764347169229438e-05, 5.2764271254703952e-05, 5.2763038060229287e-05, 5.2760289689528926e-05, 5.2765235091371487e-05, 5.2813398649798093e-05, 5.2941884532601800e-05, 5.2749122998177181e-05, 5.0930592851058978e-05, 4.4693930169107835e-05, 5.3541079150005012e-05, 1.1526562661991397e-04, 4.4723269427552877e-04, 1.0705309188139387e-03, 1.8634370300456983e-03, 1.9369181015882512e-03, 1.9008210855770628e-03, 1.8651077726930807e-03, 1.8588106081386534e-03, 1.8603394856881021e-03, 1.8619836092225862e-03, 1.8625455715935563e-03, 1.8622444717330501e-03, 1.8629252354345550e-03, 1.3615158910612867e-04, 2.8058963459953150e-05, -9.8110807208620808e-06, 6.3269146264529710e-05, 1.3175644516926102e-03, 4.3737388547403742e-03, 7.8073855463542995e-03, 1.1127586337124523e-02, 1.3712021571862864e-02, 1.5564817401103798e-02, 1.6826784500024963e-02, 1.7228500014352863e-02, 1.6246540650133253e-02, 1.3700493823120817e-02, 8.8521069593147511e-03, 3.6471308481739778e-03, 1.2633055804409993e-04, -1.0095021373831257e-05, 5.3840499631806332e-05, 1.5835794535960953e-04, 1.1767981861732323e-04, 7.2981119018859436e-05, 5.1078927222048925e-05, 5.1223445446756758e-05, 5.2247203276143181e-05, 5.2786078059834149e-05, 5.2800338004488177e-05, 5.2777438682398959e-05, 5.2764222084951014e-05, 5.2763468641307235e-05, 5.2763986709954685e-05, 5.2764367567797710e-05, 5.2764259569053492e-05, 5.2763032747030161e-05, 5.2760290111290388e-05, 5.2765234409042301e-05, 5.2813398545223994e-05, 5.2941884621334905e-05, 5.2749123178609632e-05, 5.0930591998080198e-05, 4.4693928652373398e-05, 5.3541079244003538e-05, 1.1526562079694239e-04, 4.4723270683467997e-04, 1.0705308942748364e-03, 1.8634370532158574e-03, 1.9369180900049307e-03, 1.9008210668933984e-03, 1.8651078469112173e-03, 1.8588104358043239e-03, 1.8603398361545325e-03, 1.8619829378311160e-03, 1.8625474443899072e-03, 1.8622405269194185e-03, 1.8629298144775181e-03, 2.1309862210177325e-04, 7.3340824207033636e-05, -1.0443795465811051e-05, 3.0701045528532783e-05, 1.0457045817005644e-03, 4.0824154802626966e-03, 7.4801109291369478e-03, 1.0781265503998407e-02, 1.3362646178040269e-02, 1.5233068614453747e-02, 1.6518124345977329e-02, 1.6939880191718597e-02, 1.5960210175048971e-02, 1.3376150695173998e-02, 8.5238310517141650e-03, 3.4752843395803646e-03, 1.7220730456272770e-04, -9.2140022645489273e-06, 1.0185899328129094e-04, 1.5834604815672166e-04, 1.2070752129241481e-04, 7.0863054916419464e-05, 5.1169912870656959e-05, 5.1081949642904882e-05, 5.2308070134652163e-05, 5.2783804403273720e-05, 5.2804865074196540e-05, 5.2775914355633738e-05, 5.2764240680107766e-05, 5.2763343116302382e-05, 5.2764025612058032e-05, 5.2764367998507336e-05, 5.2764262262770615e-05, 5.2763030469914999e-05, 5.2760288173664757e-05, 5.2765234689573169e-05, 5.2813398283352808e-05, 5.2941883810319235e-05, 5.2749121866410984e-05, 5.0930590114169195e-05, 4.4693927909531391e-05, 5.3541075321773403e-05, 1.1526562339336738e-04, 4.4723267092396497e-04, 1.0705309516072189e-03, 1.8634369878532103e-03, 1.9369181258426875e-03, 1.9008210925261760e-03, 1.8651077012956272e-03, 1.8588107881339442e-03, 1.8603391102788552e-03, 1.8619843393351352e-03, 1.8625435238083853e-03, 1.8622488199928164e-03, 1.8629201614182593e-03, 2.0631554834897906e-04, 1.5540130697500070e-04, -7.3548853570355708e-05, 1.8062565059967316e-04, 1.3482555745856994e-03, 4.4107758850341220e-03, 7.8542201927243975e-03, 1.1182113353279460e-02, 1.3761909113086640e-02, 1.5622070676136010e-02, 1.6894169068627559e-02, 1.7304810322983703e-02, 1.6319661624211047e-02, 1.3720524471862703e-02, 8.8838969754267156e-03, 3.6926915878159640e-03, 2.5870337499224515e-04, 8.3424234956791757e-06, 1.0775161008810631e-04, 1.5934455154797446e-04, 1.1899630043441791e-04, 7.0421265556620959e-05, 5.0997215976883811e-05, 5.1111341487952925e-05, 5.2320859555520294e-05, 5.2790065847770651e-05, 5.2804505119429815e-05, 5.2775562733123854e-05, 5.2764047348413837e-05, 5.2763332272438076e-05, 5.2764031860738750e-05, 5.2764374715886051e-05, 5.2764264479214156e-05, 5.2763032033525398e-05, 5.2760290272188003e-05, 5.2765235274558171e-05, 5.2813399446429036e-05, 5.2941885390228812e-05, 5.2749123370382689e-05, 5.0930592276637560e-05, 4.4693926996285777e-05, 5.3541077446982442e-05, 1.1526562178472489e-04, 4.4723275384495867e-04, 1.0705308049568491e-03, 1.8634371561802442e-03, 1.9369180154716374e-03, 1.9008210661862794e-03, 1.8651079796402231e-03, 1.8588100684415179e-03, 1.8603406085388947e-03, 1.8619814186722494e-03, 1.8625517230520053e-03, 1.8622314068233268e-03, 1.8629405151884236e-03, 2.0023108075173081e-04, 1.6637180300153523e-04, -9.4905481594792013e-05, 2.5597941733080347e-04, 1.4778051290801984e-03, 4.5771415245807311e-03, 8.0358959013343487e-03, 1.1376758734670350e-02, 1.3956335130667815e-02, 1.5811197065465115e-02, 1.7076021243249900e-02, 1.7481595007189342e-02, 1.6493706659765465e-02, 1.3894162013420619e-02, 9.0451001645560115e-03, 3.7961768133754968e-03, 3.0198984045560465e-04, 8.9289173951627962e-06, 1.0835655372328037e-04, 1.5648571787669878e-04, 1.1829836527153153e-04, 7.0078427342618027e-05, 5.1011960411820978e-05, 5.1128531913433617e-05, 5.2333094836231291e-05, 5.2791735179802456e-05, 5.2804150553586584e-05, 5.2775224295525650e-05, 5.2763959163032619e-05, 5.2763331709799896e-05, 5.2764034988345464e-05, 5.2764372448274965e-05, 5.2764260292674565e-05, 5.2763027188090662e-05, 5.2760284870275646e-05, 5.2765230108222360e-05, 5.2813394059423375e-05, 5.2941879501117260e-05, 5.2749117733786979e-05, 5.0930584458407617e-05, 4.4693926442339863e-05, 5.3541091406693454e-05, 1.1526563397311098e-04, 4.4723261304716798e-04, 1.0705312141960775e-03, 1.8634367522833157e-03, 1.9369183442251943e-03, 1.9008210598114410e-03, 1.8651074579541776e-03, 1.8588115265197021e-03, 1.8603375151969473e-03, 1.8619874828233380e-03, 1.8625345925813966e-03, 1.8622679287181700e-03, 1.8628976058279948e-03, 1.9466549882315578e-04, 1.5444295409185237e-04, -8.7146698556321778e-05, 2.3537008427414223e-04, 1.4342510796700888e-03, 4.5322128876275451e-03, 7.9865983624649237e-03, 1.1320894651002861e-02, 1.3900978037067585e-02, 1.5756925056936603e-02, 1.7024176869062609e-02, 1.7432394489867092e-02, 1.6445769589980064e-02, 1.3848193860749983e-02, 8.9887113698740636e-03, 3.7694206789713218e-03, 2.9606095768049394e-04, 7.8987740063329522e-06, 1.0576453856615951e-04, 1.5561569172697510e-04, 1.1781546331450412e-04, 7.0081671362521046e-05, 5.1029109779258467e-05, 5.1148730598635910e-05, 5.2337486103714001e-05, 5.2792038171353223e-05, 5.2803736009684794e-05, 5.2775081476559530e-05, 5.2763984466304426e-05, 5.2763399895895020e-05, 5.2764100852580449e-05, 5.2764433419266539e-05, 5.2764318809236855e-05, 5.2763086086868539e-05, 5.2760344381791418e-05, 5.2765289333700208e-05, 5.2813452773309531e-05, 5.2941938173023792e-05, 5.2749175573307892e-05, 5.0930647241222059e-05, 4.4693989094793950e-05, 5.3541103948892796e-05, 1.1526589397098353e-04, 4.4723309064916927e-04, 1.0705303437382680e-03, 1.8634378938459778e-03, 1.9369175268645865e-03, 1.9008212847339563e-03, 1.8651084472300614e-03, 1.8588086132491255e-03, 1.8603438927163837e-03, 1.8619749113735560e-03, 1.8625702967677898e-03, 1.8621913805655145e-03, 1.8629880132574473e-03, 1.9537204632818155e-04, 1.4790308908609216e-04, -8.1921186502615561e-05, 2.1799590482966688e-04, 1.4038888095982247e-03, 4.4951320184327855e-03, 7.9451385380633621e-03, 1.1276332513874100e-02, 1.3855732183150086e-02, 1.5712651613441726e-02, 1.6981441605358197e-02, 1.7391150348523367e-02, 1.6405787944745343e-02, 1.3808638847571067e-02, 8.9518523149521596e-03, 3.7459022404196943e-03, 2.8600804034936852e-04, 6.5930276491204159e-06, 1.0464028127439970e-04, 1.5544220270695676e-04, 1.1776860112114971e-04, 7.0133575550177952e-05, 5.1048568120548845e-05, 5.1158443691040465e-05, 5.2337864428565319e-05, 5.2791642851391819e-05, 5.2803256851966863e-05, 5.2774911782523750e-05, 5.2763883362294069e-05, 5.2763314506730388e-05, 5.2764008583700968e-05, 5.2764338017969712e-05, 5.2764222685227840e-05, 5.2762990003139249e-05, 5.2760248043990536e-05, 5.2765192404920691e-05, 5.2813354879746626e-05, 5.2941839145751638e-05, 5.2749081673905024e-05, 5.0930563195696204e-05, 4.4693909529584894e-05, 5.3541282489353017e-05, 1.1526518591392340e-04, 4.4723217779127480e-04, 1.0705326609380516e-03, 1.8634351117689134e-03, 1.9369197647807381e-03, 1.9008204501638740e-03, 1.8651067429387752e-03, 1.8588145188517396e-03, 1.8603308976940019e-03, 1.8620009775472681e-03, 1.8624960205930882e-03, 1.8623515723028470e-03, 1.8627975040808968e-03, 1.9628456441416785e-04, 1.5013939056360550e-04, -8.3898729380565523e-05, 2.2089610092934463e-04, 1.4137223379101472e-03, 4.5038708916654560e-03, 7.9549962660120481e-03, 1.1287317970490216e-02, 1.3866444321218745e-02, 1.5722898196163373e-02, 1.6991037618115885e-02, 1.7400187795763900e-02, 1.6414860371094148e-02, 1.3817735038463338e-02, 8.9642366296498500e-03, 3.7509258553851594e-03, 2.8542346346133635e-04, 6.3037318996790706e-06, 1.0453103182820601e-04, 1.5548764093818094e-04, 1.1783607579632478e-04, 7.0163111694987676e-05, 5.1059851567874945e-05, 5.1159827105919700e-05, 5.2337756431267826e-05, 5.2791413824268462e-05, 5.2803384064690332e-05, 5.2775168163011750e-05, 5.2764171952212768e-05, 5.2763597688793311e-05, 5.2764287252769400e-05, 5.2764615443031443e-05, 5.2764500067409497e-05, 5.2763267103777121e-05, 5.2760524055670146e-05, 5.2765466478416435e-05, 5.2813628578728365e-05, 5.2942122416501173e-05, 5.2749383987956509e-05, 5.0930873113348990e-05, 4.4694271338535770e-05, 5.3540517919883330e-05, 1.1526707125953422e-04, 4.4723316973362543e-04, 1.0705261678579589e-03, 1.8634416214446229e-03, 1.9369136438738867e-03, 1.9008229841337579e-03, 1.8651094999164487e-03, 1.8588028237882246e-03, 1.8603576012097272e-03, 1.8619473851588144e-03, 1.8626503252349956e-03, 1.8620168924328555e-03, 1.8631987785806376e-03, 1.9625115107014884e-04, 1.5156254139121135e-04, -8.5130119594981372e-05, 2.2463421146762973e-04, 1.4201123626850966e-03, 4.5118319264165502e-03, 7.9636968535816612e-03, 1.1296723910432523e-02, 1.3875972006098029e-02, 1.5732157531493630e-02, 1.6999928196910024e-02, 1.7408721287572686e-02, 1.6423180794006877e-02, 1.3826186734757866e-02, 8.9722180088903404e-03, 3.7558479910672288e-03, 2.8707806557569854e-04, 6.4169919645957697e-06, 1.0471048303137356e-04, 1.5552006638919297e-04, 1.1787708166468982e-04, 7.0166555429418826e-05, 5.1059514837784343e-05, 5.1155950773334284e-05, 5.2334515740002731e-05, 5.2788539776472749e-05, 5.2800777556973909e-05, 5.2772604941861099e-05, 5.2761608556632589e-05, 5.2761024070279378e-05, 5.2761710552233241e-05, 5.2762038227833436e-05, 5.2761922769552988e-05, 5.2760688509558133e-05, 5.2757942881146271e-05, 5.2762884853908265e-05, 5.2811055013295195e-05, 5.2939567985073466e-05, 5.2746847439457793e-05, 5.0928490818046970e-05, 4.4691496586062834e-05, 5.3540751024712281e-05, 1.1525468869921089e-04, 4.4722711986667352e-04, 1.0705389659023221e-03, 1.8634233088402291e-03, 1.9369282480450670e-03, 1.9008146146979237e-03, 1.8651047547292620e-03, 1.8588254223509014e-03, 1.8603031471337273e-03, 1.8620577716116223e-03, 1.8623311534076996e-03, 1.8627153298827383e-03, 1.8623542610319605e-03, 1.9611550732548272e-04, 1.5107566516646786e-04, -8.4570005158461845e-05, 2.2371275756758645e-04, 1.4170926744066731e-03, 4.5091145659180085e-03, 7.9604844286351832e-03, 1.1293327064522529e-02, 1.3872559294719138e-02, 1.5728974842161774e-02, 1.6996868186409955e-02, 1.7405864280444883e-02, 1.6420305479934613e-02, 1.3823252779814960e-02, 8.9686462820687401e-03, 3.7539938323407282e-03, 2.8731330395008524e-04, 6.3926402253905399e-06, 1.0481010087430904e-04, 1.5555601057755137e-04, 1.1790083948938788e-04, 7.0173898757218720e-05, 5.1061375485392105e-05, 5.1158680118191800e-05, 5.2338069327497945e-05, 5.2792656989905416e-05, 5.2805060386584757e-05, 5.2776921608626875e-05, 5.2765910945846296e-05, 5.2765317255649364e-05, 5.2766000670176624e-05, 5.2766328110932300e-05, 5.2766211551856188e-05, 5.2764974043510154e-05, 5.2762226293800546e-05, 5.2767177570961114e-05, 5.2815390070647042e-05, 5.2943983257378185e-05, 5.2751380355121670e-05, 5.0932310464500225e-05, 4.4696215259885465e-05, 5.3534698339883051e-05, 1.1528346749835803e-04, 4.4723339564110137e-04, 1.0705018220245807e-03, 1.8634671681241107e-03, 1.9368908582460822e-03, 1.9008375554042222e-03, 1.8651093328970472e-03, 1.8587792478137054e-03, 1.8604118190256322e-03, 1.8618308240938703e-03, 1.8629898541439904e-03, 1.8612625682059157e-03, 1.8641322272451215e-03, 1.9610707531240366e-04, 1.5058303615274850e-04, -8.4067805266670301e-05, 2.2253933029472327e-04, 1.4157128282870698e-03, 4.5067593056803525e-03, 7.9584800031851245e-03, 1.1290755614007731e-02, 1.3870284400722965e-02, 1.5726576390553602e-02, 1.6994758154556786e-02, 1.7403718618363873e-02, 1.6418238653312097e-02, 1.3821252798971411e-02, 8.9662603993714701e-03, 3.7532717416709585e-03, 2.8626606446908130e-04, 6.6789975678500104e-06, 1.0467277193721873e-04, 1.5558959024970838e-04, 1.1787730092738426e-04, 7.0172369458947951e-05, 5.1053107050268051e-05, 5.1146166710383875e-05, 5.2324228223123846e-05, 5.2779136233167973e-05, 5.2791869346012627e-05, 5.2763826031508889e-05, 5.2752819008624882e-05, 5.2752212048235293e-05, 5.2752889633130895e-05, 5.2753215396933892e-05, 5.2753095901527958e-05, 5.2751855567218394e-05, 5.2749118450079395e-05, 5.2754124185948719e-05, 5.2802437237716438e-05, 5.2931065886866348e-05, 5.2737805954207534e-05, 5.0919566820754495e-05, 4.4678384860871587e-05, 5.3551166603920285e-05, 1.1520149231418367e-04, 4.4723416472041853e-04, 1.0706051904259364e-03, 1.8633673473945165e-03, 1.9369946467446752e-03, 1.9007816585855247e-03, 1.8651092052186491e-03, 1.8588640388256918e-03, 1.8601868669473063e-03, 1.8622897626809499e-03, 1.8616349791235659e-03, 1.8642765051889094e-03, 1.8603976150981395e-03, 1.9624322970958357e-04, 1.5121509639586444e-04, -8.4721907411234820e-05, 2.2355749813669806e-04, 1.4158595464564010e-03, 4.5083739142886348e-03, 7.9588537805281925e-03, 1.1292225407059965e-02, 1.3871099733433784e-02, 1.5727927902791747e-02, 1.6995682992643930e-02, 1.7404883348270551e-02, 1.6419153731365977e-02, 1.3821838073186758e-02, 8.9680842033749639e-03, 3.7525706655277178e-03, 2.8802195232347123e-04, 5.9208135099351827e-06, 1.0502135100411906e-04, 1.5564162894928941e-04, 1.1812720785273671e-04, 7.0320907287401463e-05, 5.1166818287595348e-05, 5.1251584864584600e-05, 5.2428122420170443e-05, 5.2882854872602638e-05, 5.2895746564733219e-05, 5.2867909431307287e-05, 5.2856927645051340e-05, 5.2856309595311420e-05, 5.2856975105361097e-05, 5.2857295823136697e-05, 5.2857172509930534e-05, 5.2855936014257674e-05, 5.2853244613128293e-05, 5.2858382413562094e-05, 5.2906925420373678e-05, 5.3035421722203006e-05, 5.2842095083087176e-05, 5.1013809138885845e-05, 4.4781861610246038e-05, 5.3569359972599507e-05, 1.1558363770647684e-04, 4.4732803042613609e-04, 1.0704106764419445e-03, 1.8636478789978816e-03, 1.9367526162861965e-03, 1.9009539390940065e-03, 1.8651052474931225e-03, 1.8587049664626550e-03, 1.8606288187216404e-03, 1.8613481310944448e-03, 1.8644011478630813e-03, 1.8580504260927327e-03, 1.8682311716762099e-03, 1.9577367064361253e-04, 1.5007320059376425e-04, -8.3715583851212528e-05, 2.2246846088224472e-04, 1.4186558008384953e-03, 4.5073914144638039e-03, 7.9608868930535343e-03, 1.1291872153452467e-02, 1.3872469086173997e-02, 1.5728227687356950e-02, 1.6996882884507840e-02, 1.7404975578750835e-02, 1.6419505821311093e-02, 1.3822675591997614e-02, 8.9671678852767805e-03, 3.7565972788827884e-03, 2.8463684611570685e-04, 8.0314789168827407e-06, 1.0407067294076454e-04, 1.5550485183893323e-04, 1.1760734069329081e-04, 7.0159994299975041e-05, 5.1039120245453477e-05, 5.1112998018413227e-05, 5.2269300480828408e-05, 5.2720211724489208e-05, 5.2733388089249117e-05, 5.2706082235617194e-05, 5.2695286288027142e-05, 5.2694650275828783e-05, 5.2695289052735797e-05, 5.2695596242445949e-05, 5.2695471274043034e-05, 5.2694270028503058e-05, 5.2691719540277961e-05, 5.2697103050948600e-05, 5.2745335032541217e-05, 5.2872436432448399e-05, 5.2671382557614545e-05, 5.0861660286712825e-05, 4.4592293840664463e-05, 5.3643868330416462e-05, 1.1483042652833558e-04, 4.4734912830160262e-04, 1.0710440390515258e-03, 1.8629156405211992e-03, 1.9373208288020870e-03, 1.9005332288359101e-03, 1.8652294811978146e-03, 1.8590467052944928e-03, 1.8597561933999692e-03, 1.8632376676476648e-03, 1.8587814055436274e-03, 1.8708264804527571e-03, 1.8518746940862792e-03, 1.9703743469857743e-04, 1.5391516727099073e-04, -8.6928981693821535e-05, 2.2749185499742057e-04, 1.4147299679886888e-03, 4.5120985619730245e-03, 7.9568901218600822e-03, 1.1293037822380385e-02, 1.3870045653160622e-02, 1.5728901156734997e-02, 1.6995055064417935e-02, 1.7404440035685361e-02, 1.6416376840201523e-02, 1.3819403999342351e-02, 8.9700360618342866e-03, 3.7510308377225196e-03, 2.9736470622287488e-04, 3.7232577762038628e-06, 1.0628507818845596e-04, 1.5447672036298009e-04, 1.1820929704809061e-04, 7.0460193717259356e-05, 5.1505454366100722e-05, 5.1598115485828118e-05, 5.2764155482800590e-05, 5.3205740825419730e-05, 5.3217368626375602e-05, 5.3190734524828457e-05, 5.3180310272645842e-05, 5.3179745548062367e-05, 5.3180346756555147e-05, 5.3180633885761917e-05, 5.3180516104464865e-05, 5.3179395293292125e-05, 5.3177035080441952e-05, 5.3182352591529636e-05, 5.3229714583286845e-05, 5.3350810631864330e-05, 5.3156018604730052e-05, 5.1292304931319354e-05, 4.5172619075345661e-05, 5.3556875587384186e-05, 1.1707535465051319e-04, 4.4755039417781307e-04, 1.0693216134612677e-03, 1.8642905554100623e-03, 1.9354142541229420e-03, 1.9015407985447656e-03, 1.8650452422018199e-03, 1.8586247707123862e-03, 1.8615671278678623e-03, 1.8594707142496176e-03, 1.8700877875612695e-03, 1.8448926003095047e-03, 1.8857642269393758e-03, 1.9188804163353923e-04, 1.4306946401739683e-04, -8.1205287607640346e-05, 2.1685633001839195e-04, 1.4266739172027357e-03, 4.5018813439188761e-03, 7.9652001319269264e-03, 1.1287016283397013e-02, 1.3872420799327944e-02, 1.5724579928094805e-02, 1.6995564088640176e-02, 1.7398101046751331e-02, 1.6415568300793847e-02, 1.3819441733730621e-02, 8.9639373418017500e-03, 3.7669314883747615e-03, 2.7447238816255521e-04, 1.5149150089701472e-05, 9.9721476653303880e-05, 1.5090306163229064e-04, 1.1067868235150748e-04, 6.5952820793956275e-05, 4.7902349142068158e-05, 4.8153588035569319e-05, 4.9206320033902837e-05, 4.9622607426933317e-05, 4.9631707088836125e-05, 4.9608427746471879e-05, 4.9599336753756286e-05, 4.9598921660961718e-05, 4.9599447690851822e-05, 4.9599690391576696e-05, 4.9599591490273580e-05, 4.9598676543681986e-05, 4.9596564296812746e-05, 4.9601614757236363e-05, 4.9640676165722513e-05, 4.9751539003275205e-05, 4.9514879252767139e-05, 4.7898452774396719e-05, 4.1730155139124382e-05, 5.1709058978545723e-05, 1.0879258207222810e-04, 4.4546838873662961e-04, 1.0727548824916991e-03, 1.8596343455541502e-03, 1.9391675641376208e-03, 1.8982773194423520e-03, 1.8658599054137196e-03, 1.8597745517944251e-03, 1.8583289245480130e-03, 1.8669743264165906e-03, 1.8476561370842283e-03, 1.8967543650224056e-03, 1.8166886857155877e-03, 2.1742067349690160e-04, 1.6711142629718048e-04, -9.9301176013844061e-05, 2.4275836154964676e-04, 1.3788147168192313e-03, 4.5360467165383774e-03, 7.9447730645893291e-03, 1.1309546741329932e-02, 1.3862732594325423e-02, 1.5730395536483793e-02, 1.6982811153783684e-02, 1.7407751056816009e-02, 1.6409785310140017e-02, 1.3837190761710631e-02, 8.9848564926752542e-03, 3.7106164973131645e-03, 3.2005689915016354e-04, -1.1762862343107751e-05, 1.2387637068527800e-04, 1.5162318296586892e-04, 1.1924726511060740e-04, 6.9735149215390527e-05, 5.2513789151763810e-05, 5.2505081597446159e-05, 5.3829208190670530e-05, 5.4184664316397866e-05, 5.4197338333152025e-05, 5.4171798720878560e-05, 5.4165014712169201e-05, 5.4164855184991539e-05, 5.4165424947554312e-05, 5.4165600563286975e-05, 5.4165603674824010e-05, 5.4164653923223112e-05, 5.4163290890551748e-05, 5.4163537426693889e-05, 5.4205904862127338e-05, 5.4266083895239136e-05, 5.4170698302366375e-05, 5.2044797351721106e-05, 4.7533599990288261e-05, 5.3279645985170171e-05, 1.2355694582788041e-04, 4.4439349044291025e-04, 1.0566345089074332e-03, 1.8807181402187105e-03, 1.9259865025535797e-03, 1.9053506673771879e-03, 1.8614146664119274e-03, 1.8580889611362872e-03, 1.8671653089793465e-03, 1.8478428853693368e-03, 1.9048999582283563e-03, 1.7627304172439801e-03, 1.9982757146222289e-03, 1.3808548940662225e-04, 1.1889197488242184e-04, -1.3567593910239986e-06, 1.0570149155238674e-04, 1.3811013124063059e-03, 4.4131643786810022e-03, 8.0698133157557621e-03, 1.1304822143497407e-02, 1.3916550061472552e-02, 1.5679469050270182e-02, 1.6998024518489582e-02, 1.7379199925778032e-02, 1.6534144336195992e-02, 1.3975520200079194e-02, 9.0386974994914396e-03, 3.6269101933658547e-03, -5.0560803478998216e-05, 7.6819181082594934e-05, 1.6404575298761636e-04, 1.8020044480094417e-04, 1.0204299851629968e-04, 5.8403540211684606e-05, 4.0774896755148416e-05, 4.2594018045917048e-05, 4.3257441755387427e-05, 4.3498483806038684e-05, 4.3440476284975202e-05, 4.3423123494165219e-05, 4.3418464069983149e-05, 4.3419511600935483e-05, 4.3419911970858801e-05, 4.3420077745129563e-05, 4.3419989113551608e-05, 4.3419966908692983e-05, 4.3416395620321394e-05, 4.3420305121574092e-05, 4.3419548113501281e-05, 4.3597251996345750e-05, 4.3395814012748863e-05, 4.3601637981375463e-05, 3.6805589906743039e-05, 5.5506970632529267e-05, 7.8082982079777136e-05, 3.9547712965752970e-04, 1.1007128604764817e-03, 1.8820906361242803e-03, 1.9869342085540205e-03, 1.8559641234666209e-03, 1.8670084980000120e-03, 1.8592493260250682e-03, 1.8476353205674721e-03, 1.8951862240662260e-03, 1.7641968394625774e-03, 2.0824381648996940e-03, 1.5588916170893128e-03, 6.9587131646531070e-04, 2.6326630672536755e-04, -2.4933992602606605e-05, 4.1623822535381279e-04, 6.8103339204867125e-04, 4.8736123319618229e-03, 7.8361209751231491e-03, 1.1529210160859891e-02, 1.3864069894643637e-02, 1.5668359181618338e-02, 1.6895052633848478e-02, 1.7548942494628603e-02, 1.6294333874716314e-02, 1.4505991099787584e-02, 9.0051153825949377e-03, 3.5072316073699759e-03, -5.6739795462399680e-04, 4.8661510935222668e-04, 2.3689225387805310e-04, 2.7321810728572505e-04, 1.9539659214778556e-04, 1.5584424506735081e-04, 1.3533083854941030e-04, 1.3900988180806534e-04, 1.3924655062716177e-04, 1.3937053162467987e-04, 1.3929820502113822e-04, 1.3928477260582422e-04, 1.3928258219787383e-04, 1.3928392579334642e-04, 1.3928423606520939e-04, 1.3928433385494742e-04, 1.3928432378418839e-04, 1.3928438010658549e-04, 1.3928165757548931e-04, 1.3928145430925948e-04, 1.3927801542673482e-04, 1.3941672548600640e-04, 1.3941032950292963e-04, 1.4008195470501845e-04, 1.3371982406971183e-04, 1.5494609264068423e-04, 1.8600506633100595e-04, 4.3145516751200272e-04, 8.4315012019652621e-04, 2.2826371041625962e-03, 1.7704628202846915e-03, 1.9217844160657224e-03, 1.8316369379314970e-03, 1.8616806018752939e-03, 1.8794531227876192e-03, 1.8196718222934500e-03, 1.9956284473911742e-03, 1.5607165638406521e-03, 2.2535623208596572e-03}; static const casadi_real casadi_c1[131] = {-5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -4.3181818181818183e+00, -3.6363636363636367e+00, -2.9545454545454550e+00, -2.2727272727272734e+00, -1.5909090909090917e+00, -9.0909090909091006e-01, -2.2727272727272840e-01, 4.5454545454545325e-01, 1.1363636363636349e+00, 1.8181818181818166e+00, 2.4999999999999982e+00, 3.1818181818181799e+00, 3.8636363636363615e+00, 4.5454545454545432e+00, 5.2272727272727249e+00, 5.9090909090909065e+00, 6.5909090909090882e+00, 7.2727272727272698e+00, 7.9545454545454515e+00, 8.6363636363636331e+00, 9.3181818181818148e+00, 9.9999999999999964e+00, 1.0681818181818178e+01, 1.1363636363636358e+01, 1.2045454545454541e+01, 1.2727272727272727e+01, 1.3409090909090910e+01, 1.4090909090909093e+01, 1.4772727272727273e+01, 1.5454545454545455e+01, 1.6136363636363637e+01, 1.6818181818181820e+01, 1.7500000000000000e+01, 1.8181818181818180e+01, 1.8863636363636363e+01, 1.9545454545454547e+01, 2.0227272727272727e+01, 2.0909090909090907e+01, 2.1590909090909090e+01, 2.2272727272727273e+01, 2.2954545454545453e+01, 2.3636363636363633e+01, 2.4318181818181817e+01, 25., 2.5681818181818180e+01, 2.6363636363636360e+01, 2.7045454545454543e+01, 2.7727272727272727e+01, 2.8409090909090907e+01, 2.9090909090909086e+01, 2.9772727272727270e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -1.6934090909090913e+00, -1.3527272727272732e+00, -1.0120454545454551e+00, -6.7136363636363705e-01, -3.3068181818181897e-01, 9.9999999999988987e-03, 3.5068181818181721e-01, 6.9136363636363551e-01, 1.0320454545454534e+00, 1.3727272727272712e+00, 1.7134090909090895e+00, 2.0540909090909079e+00, 2.3947727272727253e+00, 2.7354545454545436e+00, 3.0761363636363619e+00, 3.4168181818181802e+00, 3.7574999999999985e+00, 4.0981818181818159e+00, 4.4388636363636342e+00, 4.7795454545454525e+00, 5.1202272727272700e+00, 5.4609090909090883e+00, 5.8015909090909066e+00, 6.1422727272727240e+00, 6.4829545454545432e+00, 6.8236363636363606e+00, 7.1643181818181780e+00, 7.5049999999999972e+00, 7.8456818181818146e+00, 8.1863636363636338e+00, 8.5270454545454513e+00, 8.8677272727272687e+00, 9.2084090909090932e+00, 9.5490909090909106e+00, 9.8897727272727280e+00, 1.0230454545454547e+01, 1.0571136363636365e+01, 1.0911818181818184e+01, 1.1252500000000001e+01, 1.1593181818181819e+01, 1.1933863636363638e+01, 1.2274545454545455e+01, 1.2615227272727275e+01, 1.2955909090909092e+01, 1.3296590909090909e+01, 1.3637272727272727e+01, 1.3977954545454546e+01, 1.4318636363636363e+01, 1.4659318181818183e+01, 15., 1.5340681818181817e+01, 1.5681363636363637e+01, 1.6022045454545456e+01, 1.6362727272727273e+01, 1.6703409090909091e+01, 1.7044090909090908e+01, 1.7384772727272725e+01, 1.7725454545454546e+01, 1.8066136363636364e+01, 1.8406818181818181e+01, 1.8747499999999999e+01, 1.9088181818181816e+01, 1.9428863636363634e+01, 1.9769545454545455e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01}; static const casadi_real casadi_c2[3672] = {-1.6015698992211127e-03, 1.5225126570032692e-03, 3.1881364314773628e-04, 7.4938738023164891e-04, 5.3611126356840118e-04, 6.4058240028473483e-04, 5.9071405734167221e-04, 6.1890246137346824e-04, 6.0876565024813728e-04, 6.1510795570900948e-04, 6.1096108241065657e-04, 6.0988688480540301e-04, 6.0819631521414827e-04, 6.0613831878346403e-04, 6.0206237136995605e-04, 6.0114538333897079e-04, 6.0056021122419957e-04, 5.9621679220666843e-04, 5.9379562101626385e-04, 5.9133988824504498e-04, 5.8399603304396322e-04, 5.8053974056557385e-04, 5.7223436866124348e-04, 5.7441761322883991e-04, 5.6811752599371726e-04, 5.6555569342713052e-04, 5.5959381998138547e-04, 5.4834282775626311e-04, 5.4197532767995271e-04, 5.3686954298032621e-04, 5.3275792335604269e-04, 5.3121449647523453e-04, 5.1802794442594793e-04, 5.1406203153318494e-04, 5.0925816217297498e-04, 4.9542787960021525e-04, 4.8355841279167783e-04, 4.7930947806478982e-04, 4.8293118097055693e-04, 4.6200763555146948e-04, 4.6764734613310294e-04, 4.3010623473771492e-04, 4.7810131775362363e-04, 3.5934082521283175e-04, 6.5929637111420900e-04, -2.4566510927933813e-04, 6.9742270119868555e-05, -4.4859029455463634e-05, 2.4812597322732000e-05, -1.3955326052621925e-05, 1.6667849907045507e-05, -3.3846668991109607e-05, 6.9166604357684403e-05, -2.9637749639893629e-04, 2.2112716616838595e-03, -5.9107987539136052e-05, 8.1143161722204652e-04, 4.9945412048899712e-04, 6.5975117758342375e-04, 5.8090310311087467e-04, 6.2071080559208350e-04, 6.0475995092970896e-04, 6.1590225010958125e-04, 6.1192718688235590e-04, 6.1277060264349620e-04, 6.0977568243047141e-04, 6.0860494911998790e-04, 6.0592656336285432e-04, 6.0281402614474448e-04, 6.0135625080404501e-04, 5.9977639599457198e-04, 5.9657407052108972e-04, 5.9378890427423670e-04, 5.9013400512713220e-04, 5.8465002819642516e-04, 5.7855214453055200e-04, 5.7432276946118091e-04, 5.7133880886037214e-04, 5.6860354500277641e-04, 5.6431117933302896e-04, 5.5767379947293735e-04, 5.4822652585744674e-04, 5.4073542769671884e-04, 5.3574084961457297e-04, 5.3215987346243512e-04, 5.2727790496069279e-04, 5.1884559696638646e-04, 5.1234744791697415e-04, 5.0613032494381885e-04, 4.9401541261987272e-04, 4.8288182320551515e-04, 4.8033204195890161e-04, 4.7494053563977914e-04, 4.6971979198611596e-04, 4.5239605529539401e-04, 4.5784056893263120e-04, 4.2937735158462761e-04, 4.9134882318734377e-04, 3.8529380034866070e-04, 3.1026098362248872e-05, -6.6049144771308105e-05, 8.0458424658209904e-06, -9.4806330739882760e-06, 8.2440832139228648e-06, -5.2024970284558769e-06, -1.6163879906321010e-06, 7.3440359411695855e-06, -3.2677440540190839e-04, -1.0685332063994609e-04, 8.9181641908178330e-04, 5.1362210818213473e-04, 6.4892601907165373e-04, 5.8046334631383159e-04, 6.1544260811098074e-04, 5.9934323121863583e-04, 6.1058728878437066e-04, 6.0831970664590972e-04, 6.1084436526167522e-04, 6.0865102996577811e-04, 6.0724782163667015e-04, 6.0542346557970750e-04, 6.0332853891875357e-04, 6.0119337089278337e-04, 6.0045860467517441e-04, 6.0025706961610442e-04, 5.9822298201192212e-04, 5.9608646611689076e-04, 5.9332285498544558e-04, 5.8887579180536692e-04, 5.8459281988174593e-04, 5.8009188258560836e-04, 5.8083202446414933e-04, 5.7757727911099399e-04, 5.7427010812634641e-04, 5.6908504506292604e-04, 5.6105747196422487e-04, 5.5485003603828950e-04, 5.5046440834323127e-04, 5.4815420863270348e-04, 5.4461202047829602e-04, 5.3636434877928768e-04, 5.3111632818345425e-04, 5.2455978694199504e-04, 5.1370714838874787e-04, 5.0226434060331171e-04, 4.9675924138469635e-04, 4.9349384417772535e-04, 4.7940363001150801e-04, 4.7148240438988839e-04, 4.5692903803302640e-04, 4.6435785580078645e-04, 4.4546689013386792e-04, 4.0499229081739432e-04, 9.5645686260387164e-06, -1.7697726416146531e-05, -2.2811107557682564e-05, 1.3450992315117150e-06, 2.1308312071408042e-07, 6.0040412891079753e-07, 1.3633585271132648e-05, 3.4367111518308902e-06, 3.5885534814995845e-04, 8.4261868245220396e-04, 5.0308931961776495e-04, 6.3430296774952570e-04, 5.9049403167730965e-04, 6.1432282397539967e-04, 6.0313845812145529e-04, 6.0993386434008649e-04, 6.0982266097454538e-04, 6.1304762131140535e-04, 6.1284577392308609e-04, 6.1197366927325664e-04, 6.0987456394749617e-04, 6.0817627645393287e-04, 6.0569088942737624e-04, 6.0279342785210174e-04, 6.0122524047744735e-04, 5.9971877849013429e-04, 5.9672835669210764e-04, 5.9388116343928737e-04, 5.9027538039024482e-04, 5.8476149633922281e-04, 5.7940782090843204e-04, 5.7453711730289653e-04, 5.7246549668817093e-04, 5.6903033125238825e-04, 5.6492146389726383e-04, 5.5840768132229754e-04, 5.4935052400450005e-04, 5.4214657040556335e-04, 5.3702621148480484e-04, 5.3318609437289291e-04, 5.2863045075960541e-04, 5.2031663634018871e-04, 5.1402533555814506e-04, 5.0712380661725731e-04, 4.9578676221057050e-04, 4.8545215278310988e-04, 4.8118314489296529e-04, 4.7737631822667229e-04, 4.6831462615236699e-04, 4.5901396268028041e-04, 4.5372309700748847e-04, 4.5361798464654476e-04, 4.5342301065394094e-04, 3.9217928726980114e-04, 2.4675359351328252e-05, -2.6937062253349492e-05, -1.6320521666134125e-05, -2.8582588164072220e-06, 7.9865103946169524e-07, 1.9971185920737711e-06, -6.5905159825213611e-06, 1.6571663712796475e-05, -7.3886007597431802e-05, 4.7908986061549535e-04, 6.4764293118221199e-04, 5.9031944128096377e-04, 6.1512298418086144e-04, 6.0427701101619692e-04, 6.1068318578788843e-04, 6.0875687098445579e-04, 6.1295376833625948e-04, 6.1403825416781951e-04, 6.1489092714907354e-04, 6.1353102061652634e-04, 6.1166041160557079e-04, 6.0979188395947695e-04, 6.0723858037347797e-04, 6.0389705832367309e-04, 6.0188464430016402e-04, 5.9969756552074975e-04, 5.9617770416819059e-04, 5.9296692889209725e-04, 5.8898774372862124e-04, 5.8278647771580275e-04, 5.7710508885558919e-04, 5.7176481091045402e-04, 5.6849369610564165e-04, 5.6474572277235083e-04, 5.6039174457763949e-04, 5.5312813019593385e-04, 5.4345506910273567e-04, 5.3577094666198977e-04, 5.3025215108382442e-04, 5.2553368684182464e-04, 5.2054952696983445e-04, 5.1203871924612385e-04, 5.0530579333020464e-04, 4.9810814514604854e-04, 4.8644047507570912e-04, 4.7688130990902050e-04, 4.7276165480395621e-04, 4.6966547585704579e-04, 4.6143718046078377e-04, 4.5432861170168967e-04, 4.4845364849669528e-04, 4.5358821310923989e-04, 4.4955698098126523e-04, 3.9695697429671661e-04, 2.1310404471744371e-05, -2.3559704258345471e-05, -1.8461381587866338e-05, -2.4514603295840154e-06, 5.2059977758214804e-07, -4.9288064903028894e-06, -5.0143083216852569e-06, -8.9882950730903188e-05, -8.0700649405733571e-05, 6.3796943140263318e-04, 5.7343941031641086e-04, 6.0897918652313889e-04, 5.9967649172935292e-04, 6.0623050554956068e-04, 6.0399092623932352e-04, 6.0657505817460905e-04, 6.0872851953995121e-04, 6.1103972588028976e-04, 6.1148827840506320e-04, 6.1051910045099682e-04, 6.0871758251380276e-04, 6.0720258679107172e-04, 6.0513333012457426e-04, 6.0270727242793705e-04, 6.0181308886703838e-04, 6.0097687525470511e-04, 5.9866666668025037e-04, 5.9643480447139040e-04, 5.9349303710006657e-04, 5.8861848075430004e-04, 5.8405060807595680e-04, 5.8010916992989880e-04, 5.7883827143860936e-04, 5.7626152050066493e-04, 5.7284170228249012e-04, 5.6695981454266825e-04, 5.5860100442893176e-04, 5.5204567810940644e-04, 5.4767357262867564e-04, 5.4445232444090899e-04, 5.4050135525565007e-04, 5.3260206087917678e-04, 5.2652463988889925e-04, 5.1978046753212159e-04, 5.0816647153770905e-04, 4.9750662283279748e-04, 4.9233298509684595e-04, 4.8742115163095262e-04, 4.7642503810770703e-04, 4.6560124682785281e-04, 4.5706267514798726e-04, 4.5692724304037188e-04, 4.5141736835136587e-04, 3.9375786851807149e-04, 2.1674375145389752e-05, -2.5171525199044892e-05, -1.7816593889351251e-05, -3.1988898993307036e-06, -1.1920515207534954e-06, -4.0856043457618285e-06, -2.8637585082688655e-06, -5.4960385854549432e-07, -3.1660135024567243e-04, 5.6987212796914388e-04, 6.1493837587651935e-04, 5.9162068350709614e-04, 5.9819574727060839e-04, 5.9609600039822134e-04, 5.9860982509105272e-04, 5.9932287366334762e-04, 6.0298764508446862e-04, 6.0510419737146593e-04, 6.0616003277403317e-04, 6.0530799671855429e-04, 6.0392819146329671e-04, 6.0281761473467491e-04, 6.0127958680905418e-04, 6.0033740212406782e-04, 6.0076727881808352e-04, 6.0207382495883720e-04, 6.0134469900422968e-04, 6.0020215742299758e-04, 5.9840657322836679e-04, 5.9556722928051989e-04, 5.9232331786219193e-04, 5.8924304432101011e-04, 5.9228078259034554e-04, 5.9013709263559117e-04, 5.8763560654688171e-04, 5.8400107645728908e-04, 5.7734707492993267e-04, 5.7232451062251902e-04, 5.6902250966618662e-04, 5.6850020535824733e-04, 5.6590485374345342e-04, 5.5821513726003399e-04, 5.5339490431584315e-04, 5.4682999542074451e-04, 5.3596827909565062e-04, 5.2258397415237343e-04, 5.1570662588309654e-04, 5.0933989921196979e-04, 4.9222438270479785e-04, 4.7743050344956420e-04, 4.6360436446222369e-04, 4.5833935874017850e-04, 4.4791273446644769e-04, 3.8599680811672241e-04, 1.8377933708617344e-05, -2.6778048573913860e-05, -1.8933009894767788e-05, -2.8517747488153444e-06, -1.6639359007343535e-06, 4.5715836615375927e-06, 2.0555341235246882e-05, 3.0188429182423024e-04, 3.3556413915038219e-04, 6.4414794075540443e-04, 6.1470219622994111e-04, 6.0396439793807075e-04, 6.0195357229037580e-04, 6.0425190653945037e-04, 6.0515624498937333e-04, 6.0723185889802449e-04, 6.1039144938082514e-04, 6.1276838476724809e-04, 6.1371076555265421e-04, 6.1288302687883059e-04, 6.1111972683229772e-04, 6.0926265660622182e-04, 6.0607883167807311e-04, 6.0218388555305716e-04, 5.9882471921677248e-04, 5.9557128838155435e-04, 5.9062975346965349e-04, 5.8605040327885070e-04, 5.8057014433298380e-04, 5.7321408583051181e-04, 5.6582967397072158e-04, 5.5758988569564079e-04, 5.5348922452587435e-04, 5.4705727788920827e-04, 5.4114811382630426e-04, 5.3280827477702325e-04, 5.2184025588614125e-04, 5.1307125209061957e-04, 5.0568267588542784e-04, 5.0029135071125858e-04, 4.9425986375334005e-04, 4.8433843093638115e-04, 4.7698235813956394e-04, 4.6835311930925466e-04, 4.5701498287852721e-04, 4.4616494949347232e-04, 4.4210705523924088e-04, 4.3999784280921578e-04, 4.3186734571252008e-04, 4.2589861371040982e-04, 4.2273952914250248e-04, 4.3107345447889606e-04, 4.3616604178842514e-04, 3.8372683729319054e-04, 1.4489398434829742e-05, -3.1282150416606785e-05, -2.0897253947365496e-05, -2.1148961765332652e-06, 1.8464732526278504e-06, 1.2852199294765415e-05, 2.7817427025001590e-05, 3.1648936696127006e-04, 1.4384326526621152e-03, 6.3915432601815503e-04, 6.4738724601646211e-04, 6.3188034590211254e-04, 6.3270710876745309e-04, 6.3232721128632981e-04, 6.3302426484650696e-04, 6.3297785587615625e-04, 6.3371743190630825e-04, 6.3343215305209678e-04, 6.3220644079938545e-04, 6.2930382297441204e-04, 6.2498645935652603e-04, 6.1998159739425074e-04, 6.1282892467639377e-04, 6.0097473298478636e-04, 5.9011972653137679e-04, 5.7598871525910318e-04, 5.6228945487877408e-04, 5.5134197335334964e-04, 5.3946552405226625e-04, 5.2178168757690754e-04, 5.0588118213891475e-04, 4.8959273820942291e-04, 4.6430935142408383e-04, 4.5276946222495493e-04, 4.4084641027501009e-04, 4.2189179044186190e-04, 4.0360933835857302e-04, 3.8735750847641512e-04, 3.7225213650176475e-04, 3.5420659780746599e-04, 3.4198172558670692e-04, 3.3038995997445100e-04, 3.1793768952349463e-04, 3.0948162365098536e-04, 2.9713133619310370e-04, 2.9862322714484246e-04, 3.0187134832860424e-04, 3.0994269951326384e-04, 3.3256122422432866e-04, 3.5045134129532349e-04, 3.7525081655168102e-04, 4.2101882621815509e-04, 4.5785937894560202e-04, 4.2643845255559490e-04, 1.8412512846809059e-05, -3.5552437594864317e-05, -2.3984869697093320e-05, -2.9622674904347668e-06, 9.9773137518625876e-06, 5.6569885068698256e-06, -1.1570261671915716e-05, -4.2326571545816399e-04, -3.2861204014789785e-04, 6.6007063947223690e-04, 6.7549761707816043e-04, 6.7222759482782248e-04, 6.6690511774973767e-04, 6.6107494606805137e-04, 6.5469815545870537e-04, 6.4843293317052176e-04, 6.4036047845909567e-04, 6.3241699430224840e-04, 6.2471226094890087e-04, 6.1570140132986145e-04, 6.0653963346342724e-04, 5.9826273768193855e-04, 5.8990556991916909e-04, 5.8048804597984893e-04, 5.7528181852222089e-04, 5.6835477634336988e-04, 5.6105566456470662e-04, 5.5736748990846408e-04, 5.5470944598798311e-04, 5.4690091798515091e-04, 5.3612065227595998e-04, 5.2677486162824340e-04, 5.1154241326768421e-04, 5.0909873257379279e-04, 5.0365406775764246e-04, 4.9362347457607147e-04, 4.9087997289475743e-04, 4.8426285824942558e-04, 4.6763562568112593e-04, 4.5867228057200338e-04, 4.5527949593958048e-04, 4.4937110786012063e-04, 4.4740138012195133e-04, 4.5261507233996384e-04, 4.5363278965359494e-04, 4.5748347603547651e-04, 4.6114355788650155e-04, 4.6952298981558019e-04, 5.0721377298138665e-04, 5.2857473188872711e-04, 5.5649681706887444e-04, 6.1287591147021411e-04, 6.3642010301075830e-04, 5.7165936638602088e-04, 4.6538345291561450e-05, -3.2452807623102597e-05, -2.6824490907979143e-05, -4.1781491165980567e-06, 9.9357131305086166e-06, 3.9582333865029184e-06, -6.3861797441003981e-05, -8.4903613427872102e-04, -3.0487798142645739e-03, 6.7797440776629862e-04, 7.1923621440240842e-04, 7.1932045394613835e-04, 7.0631958577341367e-04, 6.8936629493205042e-04, 6.7502771773709797e-04, 6.6256532443527937e-04, 6.4701544403518788e-04, 6.3340040506713879e-04, 6.2278190767759388e-04, 6.1145833580271078e-04, 6.0328448476781350e-04, 6.0028123688115297e-04, 6.0168261516150255e-04, 6.1626832343846145e-04, 6.3444935067271183e-04, 6.6133386816062852e-04, 6.8095862690204130e-04, 7.0452749041066860e-04, 7.3318138820037577e-04, 7.6769932927591052e-04, 7.8384494644437655e-04, 8.0298037319121232e-04, 8.6018218296608426e-04, 8.8655145817102821e-04, 9.0382267397138422e-04, 9.2525578210139389e-04, 9.6406554730447611e-04, 9.9066953670048918e-04, 9.7369816900541237e-04, 1.0047613119586983e-03, 1.0241792231066409e-03, 1.0232428707586463e-03, 1.0458843720286895e-03, 1.0667528234373433e-03, 1.0938505933171458e-03, 1.0712589552729947e-03, 1.0568323663157700e-03, 1.0401833865308907e-03, 1.0399191583968861e-03, 1.0234669420565584e-03, 9.9696251259798196e-04, 1.0053301204059131e-03, 9.3508823392684376e-04, 7.7841925837462272e-04, 8.5209891388576819e-05, -1.1148156289879363e-05, -2.4614159945479663e-05, -6.2256817443262502e-06, 3.2517678866805788e-06, 5.3729277057351643e-07, -9.6836630226262987e-06, -2.4394674903468333e-04, -2.0615776752470893e-04, 6.5057939137800605e-04, 8.7856793285407461e-04, 8.4472490878641747e-04, 8.2908766382466716e-04, 8.1779354813991002e-04, 8.1341890583686190e-04, 8.1521394583107098e-04, 8.2352375965821355e-04, 8.3116662044236712e-04, 8.4300878504576723e-04, 8.6256466865714324e-04, 8.7906282039510591e-04, 9.0245864983625260e-04, 9.3780817432831572e-04, 9.7689669953218532e-04, 1.0032473265138651e-03, 1.0356725455540651e-03, 1.0601176732071456e-03, 1.0997672352250631e-03, 1.1487323807112503e-03, 1.1994622022871819e-03, 1.2335350619429482e-03, 1.2753276224358560e-03, 1.3914739149669467e-03, 1.4474484878689714e-03, 1.4781813878870995e-03, 1.4675936090248996e-03, 1.5131722584021921e-03, 1.5466280460370331e-03, 1.5056118389103756e-03, 1.5238632877545982e-03, 1.5262222625818667e-03, 1.4952441646372619e-03, 1.4867809064803492e-03, 1.4696115092757908e-03, 1.4601582981822667e-03, 1.4118872313867228e-03, 1.3632988496353748e-03, 1.2801590168690993e-03, 1.2171476913892462e-03, 1.1559266921837563e-03, 1.0756691470307708e-03, 1.0035409798215059e-03, 8.6485883896601085e-04, 6.9529098406119483e-04, 9.6995128383681184e-05, 2.5663323413728512e-05, -9.9221944177552146e-06, -4.8296578609025032e-06, -8.8837911212252818e-06, -5.4152523869255287e-07, 3.8710529087430945e-05, 5.6299704489557595e-04, 2.1230747557146740e-03, 1.1589525684355482e-03, 1.2832642967432941e-03, 1.1555583921199998e-03, 1.1633203475199475e-03, 1.1869272114528994e-03, 1.2227258555577427e-03, 1.2589140052634527e-03, 1.3267154002632748e-03, 1.3799151035318279e-03, 1.4359340934133862e-03, 1.5201527669112449e-03, 1.5758228374296163e-03, 1.6335893623269336e-03, 1.7192329269820547e-03, 1.7573475483632778e-03, 1.7603063350797241e-03, 1.7394383612106060e-03, 1.7201197600440962e-03, 1.7349702761848412e-03, 1.7574186410202822e-03, 1.7348309907605670e-03, 1.7391789264695340e-03, 1.7565648047175170e-03, 1.8256974756443653e-03, 1.8746863865477179e-03, 1.8915806267571639e-03, 1.7348737944846912e-03, 1.7238762825604603e-03, 1.7007430833754777e-03, 1.6053776349318413e-03, 1.5002947900849203e-03, 1.4088979652609399e-03, 1.2921620095879341e-03, 1.1468958776549437e-03, 1.0309954091167403e-03, 8.6548455986624334e-04, 8.2103568210760425e-04, 7.0766489855698944e-04, 5.4375308175923232e-04, 4.2844049698312348e-04, 3.6902952295001651e-04, 2.7727274876935409e-04, 1.0428795270774754e-04, -5.4694753968270726e-06, -3.1888405265224906e-05, 4.0815707239724719e-05, 6.1775894602912607e-05, 2.3694393175961725e-05, -1.4993983674799205e-07, -1.4643754201300319e-05, -1.1073689491228333e-05, 1.9250463013320562e-05, 5.7076786775782373e-04, 4.7375552216612216e-04, 2.0371225552221757e-03, 1.8889962640692803e-03, 1.7760664008088910e-03, 1.8249855005870869e-03, 1.9082928072736080e-03, 1.9710902827908758e-03, 2.0188603665491616e-03, 2.0883323455421314e-03, 2.1370575136373179e-03, 2.1932180347125838e-03, 2.2862293019685447e-03, 2.3204126681390172e-03, 2.3588404579493807e-03, 2.4314943977091635e-03, 2.4440240504334000e-03, 2.4387976793483410e-03, 2.4013121554322669e-03, 2.3385530948897976e-03, 2.2980762318988435e-03, 2.2434958733214758e-03, 2.0751561121602272e-03, 1.9864921391616261e-03, 1.9065610179849896e-03, 1.8040012793500634e-03, 1.7648418032032293e-03, 1.7219746426833174e-03, 1.4865451376246674e-03, 1.4227126369971838e-03, 1.3405758548172414e-03, 1.1870688801429857e-03, 9.7145478555162035e-04, 7.7455736398343578e-04, 5.1444627511650076e-04, 2.4227999255645172e-04, 5.8091072947422107e-05, -2.0247666463039937e-04, -3.6760939941747617e-04, -5.4940912190812319e-04, -7.6601371408537011e-04, -8.5573303796693256e-04, -9.0967745179858228e-04, -1.0011666776246070e-03, -1.3468404461146541e-03, -1.5085564934537513e-03, -1.3752827845002202e-03, -1.1418390436412906e-04, 9.2226017340830968e-05, 6.4686124618261454e-05, 1.0461837385684902e-05, -1.3968917530547686e-05, -1.9275308694707838e-05, 1.3572402496261904e-06, 2.2438630773619767e-04, 1.8752009716599405e-05, 2.7584675343091530e-03, 2.7062856751790846e-03, 2.6799917999444063e-03, 2.7890074881650653e-03, 2.9013046648181801e-03, 2.9350285042438889e-03, 2.9378395455036191e-03, 2.8861030674845710e-03, 2.8368199344795154e-03, 2.8130706778926491e-03, 2.8060594679869127e-03, 2.7227741579945036e-03, 2.6638057631581807e-03, 2.6050544488607566e-03, 2.5669499141232413e-03, 2.5792552978005159e-03, 2.6102419796690951e-03, 2.5310056103295328e-03, 2.4269164693559928e-03, 2.2819314648271638e-03, 1.9711607323787475e-03, 1.7588987963820871e-03, 1.5342404557779216e-03, 1.1778170293890861e-03, 9.8104421388539587e-04, 8.0599287328499136e-04, 6.8780894121643621e-04, 6.0849482531051546e-04, 5.2531800376676152e-04, 3.2523819669956489e-04, 1.2886459172931075e-04, -1.1018106245742898e-04, -5.3728557311288894e-04, -8.1667640082171145e-04, -9.4796859160141411e-04, -1.0876372949825963e-03, -1.5674531164353439e-03, -1.8480043875598318e-03, -2.0135976569060007e-03, -2.1020126220685081e-03, -2.1639947103191046e-03, -2.3370352701368446e-03, -2.8631502378462861e-03, -3.1167629220833076e-03, -3.0247181524150901e-03, -2.3898244390480050e-04, 8.6926101302078895e-05, 1.0968625452318498e-04, 1.5781944757951860e-05, -4.3198404977018434e-06, -1.7541994718935083e-05, 1.5896670340367902e-05, 1.7407707107259390e-04, 2.5583684592500600e-04, 3.8896328688966982e-03, 3.4700059836742236e-03, 3.5790776414611584e-03, 3.6419761845781357e-03, 3.6702696408820699e-03, 3.6231154476172971e-03, 3.5556541589889662e-03, 3.3717868717414584e-03, 3.2294815604469521e-03, 3.1309336443476332e-03, 3.0295492647111483e-03, 2.8625710105180530e-03, 2.7185120218384470e-03, 2.5119580471733224e-03, 2.3654154307950759e-03, 2.3074053904530087e-03, 2.2846909541634625e-03, 2.1296220449408404e-03, 1.9737306617323147e-03, 1.7927484288671747e-03, 1.4999769752835068e-03, 1.2278262051715894e-03, 9.0627616988435411e-04, 3.7428381389265075e-04, 6.3250650521845531e-05, -2.4840415706944841e-04, -4.2543188907374907e-04, -5.1974997628562170e-04, -5.9523014352141912e-04, -8.6714052092703997e-04, -1.0024532533655928e-03, -1.2230823363530846e-03, -1.7398561836115128e-03, -1.9271863330337230e-03, -1.9895893904554734e-03, -1.9296498038738480e-03, -2.6499991467380177e-03, -2.9478663116537726e-03, -3.2672260396363756e-03, -3.4303450770867203e-03, -3.6874772930265490e-03, -3.8715288687138291e-03, -4.3419656359664424e-03, -4.2823237966840635e-03, -3.7776342684804586e-03, -2.7372331594183522e-04, 9.5580633540540832e-05, 1.2335758485797557e-04, 2.4851231748099223e-05, -7.7802612654422065e-06, 1.5692427920089430e-05, -2.0681373286840499e-05, 2.2811824707187969e-04, 5.3041224233314754e-04, 4.0833049131166338e-03, 4.0474141112409323e-03, 4.1232751337573932e-03, 4.0355091692081610e-03, 3.8196102128902829e-03, 3.6913367205822153e-03, 3.5690049408797081e-03, 3.3649910551505693e-03, 3.2320127603015988e-03, 3.1373312358536076e-03, 3.0294185175975749e-03, 2.9040689823767729e-03, 2.7557262102669150e-03, 2.4971683238184106e-03, 2.1879806631295851e-03, 1.9276079258706558e-03, 1.5917455553572518e-03, 1.2385598622850769e-03, 1.0474657128614062e-03, 8.7863661906438517e-04, 8.0680550983143473e-04, 5.5586607544282074e-04, 2.4447030134837344e-04, -2.6241497899397170e-04, -5.6128471623420606e-04, -9.0237321473998766e-04, -1.6131970970949955e-03, -1.7277960450811369e-03, -1.8465289376888711e-03, -2.2367650061346223e-03, -2.3621101900358626e-03, -2.5521819421687464e-03, -2.9629429013685316e-03, -3.1313991373791428e-03, -3.1411609464309098e-03, -3.1951035286769749e-03, -3.6657135749158659e-03, -4.1188165130283880e-03, -4.3346182650446652e-03, -4.9906638930264785e-03, -5.2124658750558120e-03, -5.5994320551421249e-03, -5.4383715753688645e-03, -4.2752640255475718e-03, -2.8901436089214076e-03, -1.4789304617475463e-04, 1.1114295364414613e-04, 1.1380829299193623e-04, 9.9564490729855959e-06, 1.8866607813408307e-05, -2.5624642964806529e-05, 4.2474065092007116e-05, -5.7773409687989635e-04, 1.7955866783633465e-04, 3.9326837446647805e-03, 4.3221998884476337e-03, 4.2927582254215814e-03, 4.0785447505457054e-03, 3.6768138511568751e-03, 3.5003114617289596e-03, 3.3619779473190448e-03, 3.2115056873154371e-03, 3.1416785259553714e-03, 3.0589983623671574e-03, 2.8864654996378913e-03, 2.7412486624351640e-03, 2.5847781772337375e-03, 2.3319550971700603e-03, 1.9292632300679929e-03, 1.5432629074124821e-03, 9.7742518830341851e-04, 3.7458564093048596e-04, 1.2413080634682272e-04, -7.5282769874035482e-05, -1.8152100537591198e-04, -4.4468093180068113e-04, -7.1690562042565908e-04, -1.1219930131901729e-03, -1.3243950453879633e-03, -1.6068967319453481e-03, -2.7259285144629608e-03, -2.8902672642558414e-03, -3.0592992114596568e-03, -3.5045947279667838e-03, -3.6348162907179626e-03, -3.7660139850809182e-03, -4.0517552734089246e-03, -4.1484743573351746e-03, -4.4565278346163292e-03, -4.7792940243368068e-03, -5.1475428460979675e-03, -5.0813512390448512e-03, -5.3992083959553995e-03, -5.2176668639939069e-03, -5.4749859853939695e-03, -5.3259145872602796e-03, -4.8718463356033463e-03, -3.2710171520605531e-03, -8.6796244784759788e-04, -5.8033977075549244e-05, 1.7194906037909844e-04, 4.1318825841932857e-05, 2.3729092162111387e-05, -1.7843227765863053e-05, 4.9119595820272272e-05, -1.4185527353154678e-04, -3.2979499352359001e-04, -3.1238083305014830e-03, 4.2119803929717842e-03, 4.3182378047333173e-03, 4.2211251021819288e-03, 4.0209877754199888e-03, 3.6908572084335747e-03, 3.5225802030735692e-03, 3.4089241338324805e-03, 3.2977292405860226e-03, 3.2404404888289190e-03, 3.0944199462152322e-03, 2.6779915790191566e-03, 2.2807298762668043e-03, 1.9952432088242295e-03, 1.7045776225574488e-03, 1.3445897073578739e-03, 1.0614965366213674e-03, 6.5758252868892975e-04, -1.5580695958293533e-04, -5.0339065327939525e-04, -7.9105994577102767e-04, -1.5236096853191716e-03, -1.8758919965685128e-03, -2.1690611515012698e-03, -2.5388793208191984e-03, -2.6416505291635139e-03, -2.8370371071661793e-03, -3.6762066235277169e-03, -3.9185210499796536e-03, -4.1142619320859997e-03, -4.4261704195949630e-03, -4.5594708329123185e-03, -4.7003804168994842e-03, -4.8257360006825692e-03, -5.1666448044092456e-03, -5.3747043582046961e-03, -6.3944030261727548e-03, -6.4489353576461794e-03, -6.4536948814827751e-03, -4.6002489767910069e-03, -3.7933527877187772e-03, -2.8884328567907588e-03, -3.1382132511018437e-03, -2.2087947321542010e-03, -5.1231590784127704e-04, 2.1834883566915111e-04, 2.9017481577855059e-04, 4.7689009690160197e-05, 3.5088967346245953e-05, -2.3745156274930019e-05, 2.9980660593507963e-05, -5.7446462003038289e-05, 1.2337255253792146e-04, -6.6097213295373755e-04, 1.1140215639747666e-03, 4.1921585737506317e-03, 4.3150186884753916e-03, 4.1385386681976402e-03, 4.0288321628113577e-03, 3.8928420343580794e-03, 3.8049065237579643e-03, 3.7307719264901285e-03, 3.5646396377497641e-03, 3.3692819234130700e-03, 3.0961556799176393e-03, 2.4766400051503823e-03, 1.7436601994079287e-03, 1.2051252719113836e-03, 6.9634581786030825e-04, 3.6892757583364966e-04, 2.1018426002142321e-04, 1.8492246104298560e-05, -8.6609869643064497e-04, -1.2640033302684095e-03, -1.6135640570418275e-03, -2.8694554006933604e-03, -3.2953043878386629e-03, -3.6163119794433568e-03, -3.9789044700904025e-03, -4.0250515958468042e-03, -4.1353347365220561e-03, -4.4642601464015413e-03, -4.7606369318534056e-03, -4.9322689905211964e-03, -5.1137531434206490e-03, -5.2627668650960524e-03, -5.5174535773224592e-03, -6.0284955498883935e-03, -5.9277440062103087e-03, -6.3512095335790768e-03, -6.0755408800186213e-03, -6.3767424493956781e-03, -4.7078486267968320e-03, -4.6557516277451810e-03, -9.2670047067525509e-04, -6.7614572562346698e-04, 9.7862485921631896e-04, 4.5813811242743929e-04, 2.4527718827701135e-04, 1.6477612582567103e-03, 7.5986747802224766e-05, 1.1272962505014814e-04, -6.6135760675623771e-05, 9.0957005542593311e-06, -3.0333385087029981e-05, 5.2875877031875913e-05, -6.6772134452708614e-05, 6.6208922186306160e-04, 5.1576255445559722e-04, 4.3499284735875055e-03, 4.5312523430269536e-03, 4.3400172027234230e-03, 4.2655341321525403e-03, 4.2323325531126443e-03, 4.2107099791198338e-03, 4.0996338480093625e-03, 3.6895470898663518e-03, 3.1557595904718044e-03, 2.7376823948887241e-03, 2.2014544382926854e-03, 1.2682634307009250e-03, 4.7800570374804952e-04, -4.6540676965473038e-04, -8.8602340387608503e-04, -1.1184066337760340e-03, -1.4165920579386898e-03, -2.1855877589968264e-03, -2.5297944865494554e-03, -2.8443968166440708e-03, -3.8530602706179223e-03, -4.2522243779352931e-03, -4.5350432684589798e-03, -4.8370384776141168e-03, -4.8905025606224284e-03, -4.9474902143454430e-03, -5.1308355274635800e-03, -5.3721723195387025e-03, -5.6328731762522247e-03, -5.7152172714314831e-03, -6.0494051881406219e-03, -6.4353301380476943e-03, -7.0439740818054181e-03, -7.5629765931756101e-03, -5.4300041110164725e-03, -3.6748592069678135e-03, -3.0975534852893927e-03, -3.5656914356448147e-03, 1.5289722883967381e-03, 1.8927370935503088e-04, 1.9882073027375756e-04, -2.8835026642221658e-04, -2.3684768331992705e-04, 2.0514212893721954e-03, 1.0180202573686012e-03, 3.8522658822838550e-04, -9.9128177281758694e-05, -1.6888389130913315e-05, -3.5071375446745542e-05, 1.2012493252445012e-05, -2.6553593564153464e-05, 7.0720266562581714e-05, 9.7572510227969447e-05, 7.5148869564916308e-04, 4.8362654423215884e-03, 5.0688398599232215e-03, 5.0226537486909306e-03, 4.9826626022033277e-03, 4.7753654779811444e-03, 4.5537252457353156e-03, 4.1408196403888708e-03, 3.1431509629634008e-03, 2.2372403151621617e-03, 1.7114006627386574e-03, 1.3782386773793509e-03, 5.3600566241640557e-04, -2.9762320522014329e-04, -1.5159656649687547e-03, -2.1165158213933555e-03, -2.4883769216014623e-03, -2.9378053875999677e-03, -3.5849612355801502e-03, -3.8365034156274680e-03, -4.0352616293223564e-03, -4.5330333383362675e-03, -4.8371020219103028e-03, -5.0507444334293161e-03, -5.2619287003343868e-03, -5.3362393590577484e-03, -5.4532889893726885e-03, -5.6904210200052416e-03, -5.9876938609486757e-03, -6.2165883681966905e-03, -6.7672053156988508e-03, -6.7308413249005002e-03, -6.8097031387804249e-03, -7.3739971905336654e-03, -5.4234797852709040e-03, -5.6592848962679649e-03, -2.8241237189989489e-04, 7.4651700514952494e-04, 9.8746019682884956e-04, -4.4063904461776884e-04, -1.1563520709024537e-04, -6.8368835868423650e-06, 1.3070207453034415e-05, 1.0361280170715149e-03, 5.7812851044520706e-04, 1.4820534578917860e-03, 2.1683608246921785e-05, 5.7872726879617739e-07, -8.2535013526802408e-05, -1.8170299769587270e-06, -1.2581678860402578e-05, 1.1652109316181124e-05, -3.2387578277338815e-05, 8.3099154345868224e-05, -5.4921135241940873e-04, 6.1272768682649609e-03, 5.8670566162560972e-03, 6.0020571522449440e-03, 5.9997049426926824e-03, 5.2636015709148082e-03, 4.5006488423525448e-03, 3.5417808519179611e-03, 1.6653177990341578e-03, 6.1865629004924372e-04, 6.7269341110925973e-05, -1.9413952352467789e-04, -6.4860050360675270e-04, -1.2572670187026014e-03, -2.2673539599405712e-03, -3.0627845433330997e-03, -3.4425024608342736e-03, -3.7676720855145951e-03, -4.4351219048563151e-03, -4.6257942546107794e-03, -4.7195138361510736e-03, -5.0605765093613836e-03, -5.2882432160492043e-03, -5.4829676013024298e-03, -5.5901162134320559e-03, -5.7471214840565041e-03, -5.9067255292144794e-03, -6.4080192646022924e-03, -6.5553727472289006e-03, -7.1027849535410317e-03, -7.5267092105619354e-03, -7.5414479454509586e-03, -6.0948235855515310e-03, -3.4501556252620131e-03, -4.8492472296084920e-03, 1.9458909717771521e-03, -2.2486219833085276e-05, -1.8420798013455149e-04, -3.1850270974851779e-04, 2.2357562893894308e-04, 2.4786983320401572e-04, -3.3211989741324384e-05, 1.1394083724552186e-04, 1.4151951804058498e-04, 1.0678931406554516e-03, 1.0193971858030117e-03, 1.6328896044668067e-04, -8.9009386894175254e-05, -4.3077487449788305e-05, -1.8846871456960727e-05, 7.1777986290584225e-06, -1.0150874679093914e-05, 8.6096276575428274e-06, -1.1263646408706451e-04, 2.4479952968089851e-05, 7.4609220234892748e-03, 6.3996716385332358e-03, 6.2926317496507789e-03, 5.9240615799537322e-03, 4.6687151786760916e-03, 3.4912585462472528e-03, 2.2285882716095301e-03, 1.2536560509979200e-06, -8.6313286202187312e-04, -1.3209003372117861e-03, -1.6100467100490234e-03, -1.7929704893162451e-03, -2.1693539640391529e-03, -2.8342782454045257e-03, -3.6960569318525843e-03, -4.0173644514076706e-03, -4.1724199140738272e-03, -4.8181283030774430e-03, -4.9916367297899444e-03, -5.0820950534614939e-03, -5.4713722650305135e-03, -5.6851606403836852e-03, -5.8718926665799892e-03, -6.0096354839014390e-03, -6.2057480792908418e-03, -6.5850661043903302e-03, -7.0715333026471761e-03, -7.6556442221843192e-03, -7.2252964229200071e-03, -8.0810765362882217e-03, -5.3130562620511855e-03, -5.1140781222627748e-03, -7.7534327741232375e-04, 1.7147719107150215e-03, -6.5902535778397729e-04, -2.7962362775104744e-05, 1.2384527206423009e-04, 1.5741123719882630e-04, 1.8399759817547067e-05, -7.9093082713321662e-05, 3.8643207819232840e-05, 5.5409287484496032e-05, 5.7343644299584821e-04, 8.1002586838730556e-04, 1.2078801263478833e-03, 7.1640848851932306e-05, -4.2357048829812834e-05, -6.1071624817272355e-05, -5.4439167053261725e-06, -7.2610026567200558e-07, 6.7066793950059517e-06, -8.7514271376034833e-06, 2.3288763368220413e-05, 1.7462347834598137e-05, 5.4471406991239701e-03, 6.2378175539192088e-03, 5.1404772077379701e-03, 3.8917671005735399e-03, 2.5204655711479201e-03, 1.4715862388656326e-03, 4.8774646617882889e-04, -9.6774600652720089e-04, -1.4345949242401401e-03, -1.7075550051969257e-03, -2.0488681648782453e-03, -2.4095899458442815e-03, -2.7853492520526352e-03, -3.3588314837377647e-03, -4.0826392126584871e-03, -4.4055103546077751e-03, -4.6271531961267071e-03, -5.0427521451035517e-03, -5.2419847737308345e-03, -5.4247784137873428e-03, -5.8128337609466701e-03, -6.0144643030580411e-03, -6.2274221367487406e-03, -6.4949071610529430e-03, -6.9181213019213275e-03, -7.2197558882489826e-03, -8.0937065013328702e-03, -7.9026555034413630e-03, -8.2757337208899159e-03, -3.7329811507364604e-03, -4.7429896709975184e-03, 7.9789390315777658e-04, 3.8528506508451045e-04, -5.6352349050506941e-04, 3.0641485195309246e-04, 2.1503445778588544e-04, -1.7131875886514545e-04, -9.2202420303840122e-05, -1.0745760754984676e-05, 1.9759893532528795e-05, -2.8466574060548339e-05, 1.0597856233579170e-04, 4.7934020722441615e-04, 9.6763016374148763e-04, 1.1454150273669614e-03, 1.1990878490148295e-04, -6.0055149651099936e-05, -4.9092587516605824e-05, -1.0804841815173234e-05, 4.2793666441042280e-06, 1.1124464476203536e-06, 5.5485856011025167e-06, 1.9900452066408392e-06, 5.3372574227926808e-05, 2.5213844208576974e-03, 5.2505922874617611e-03, 3.3700888327362483e-03, 1.6314411623047920e-03, 4.5405989379736222e-04, -1.8602170914761018e-04, -6.5737411071081775e-04, -1.1034395413146020e-03, -1.3090356184341928e-03, -1.5204367773315602e-03, -1.9993156181627308e-03, -2.6868191936875729e-03, -3.1779909362448927e-03, -3.7688183110954759e-03, -4.3178050210643526e-03, -4.6781323812037090e-03, -5.0584593057586280e-03, -5.2616478523014598e-03, -5.4996313249622841e-03, -5.7941772078884957e-03, -6.1383604474794795e-03, -6.3650027593804628e-03, -6.5749490414036688e-03, -7.1888853563304989e-03, -7.6123041851137857e-03, -8.3176551047650163e-03, -7.9711784253439447e-03, -8.1550878408587959e-03, -5.3652193605133363e-03, -3.1393232228881778e-03, 1.7554302520260468e-03, -3.4441416392929866e-04, -1.2453211112657540e-04, 2.3082808857222695e-04, 5.1053030196841352e-05, -8.6903434478300008e-05, 4.1034406761489312e-05, -4.5314774364204100e-06, -3.7258947994003964e-06, -2.1121842891882461e-05, 1.6692620903975514e-05, 8.2337839658290239e-05, 5.0458126241892636e-04, 9.0365093276461987e-04, 1.1750521245750935e-03, 1.0284170574064409e-04, -4.9752778712879031e-05, -5.3745360213293663e-05, -8.0879895940047693e-06, 1.6620241811301194e-06, 3.6950020800585216e-06, -7.9863179522354777e-07, 5.2702006036703213e-06, -3.0855649778250074e-05, 2.4585295927235240e-03, 3.5693420571472206e-03, 2.1463908437159562e-03, 9.8666050708416664e-04, 9.5573244374883015e-05, -2.5518207144531457e-04, -4.6838239733666687e-04, -6.2350935970842403e-04, -1.0128959355241440e-03, -1.4259761093702583e-03, -2.1473166416456774e-03, -2.9501427285365950e-03, -3.4711493704545765e-03, -3.9849286525756172e-03, -4.4690837461783539e-03, -4.8467006670201845e-03, -5.2889845393646329e-03, -5.5135603874971600e-03, -5.7908758165085006e-03, -6.1379386039615291e-03, -6.5168281423378521e-03, -6.7560962230833396e-03, -7.1632119750247095e-03, -7.8124324212561699e-03, -8.7098296023465915e-03, -8.5416914621257688e-03, -8.0996910623932286e-03, -4.4417089288417005e-03, -3.7533702922930472e-03, 2.1869431579921439e-03, -8.4045655727983844e-04, 1.9632564078397134e-04, 1.8410910448580001e-04, -1.4768235947339208e-04, -7.2015390987942253e-07, 3.1675165548672790e-05, -1.9086751745672222e-05, -1.9502313178769692e-06, 8.3915507192313077e-06, -6.7362847594329097e-06, 9.4727876822657195e-06, 9.0371758636646063e-05, 4.7303870686381125e-04, 9.1585980544143196e-04, 1.1567862913838389e-03, 1.1025794117011959e-04, -5.4295930912405966e-05, -5.1532535482496852e-05, -9.6501234852467040e-06, 2.6722822746771610e-06, 1.7742352459116859e-06, 1.3516618624872558e-06, -6.9164438460649763e-06, 1.9817740986582955e-06, 2.3593168472452186e-03, 2.3515927668800590e-03, 1.7459602819194231e-03, 1.4863079009246882e-03, 9.4347801485129834e-04, 6.8526609908342584e-04, 4.2198878260854555e-04, -7.7889138953290971e-06, -7.8888886749201026e-04, -1.4739714828691935e-03, -2.3923438271896830e-03, -3.1576661856687477e-03, -3.6344903517946114e-03, -4.0680347039759868e-03, -4.5763941445348816e-03, -4.9676443181638497e-03, -5.4230087519905185e-03, -5.8068518640002620e-03, -6.1080993513863771e-03, -6.4731377256116232e-03, -6.9039764594331157e-03, -7.3255282117110285e-03, -7.7728857522187736e-03, -8.9053746981574110e-03, -8.6754471222301420e-03, -8.9983389642464690e-03, -4.7710253481816310e-03, -3.4280067486514255e-03, 2.1814130387513577e-03, -9.2121343031945600e-04, 3.0374102935925624e-04, 8.7758307563248262e-05, -7.8088705147767165e-05, 3.9077970101487190e-05, -8.1906550380672323e-06, -1.0723399230045790e-05, 4.7193547920002427e-06, 1.0314315517754457e-06, -2.5349768687665824e-06, -9.2552536786532030e-06, 1.3792747360699171e-05, 8.9319945903019407e-05, 4.8817308540088824e-04, 9.1084783709257917e-04, 1.1641760519701962e-03, 1.0648224066148659e-04, -5.2328521887252521e-05, -5.2721549740192102e-05, -9.0169005011169617e-06, 2.0262388797181140e-06, 2.6504191266338815e-06, 9.3837768411556000e-08, 1.0696068668677658e-06, 3.6206094930456290e-06, 2.2968428491301762e-03, 2.3665737207105852e-03, 2.0436526549285905e-03, 2.0434862713218094e-03, 1.9115620365640074e-03, 1.5892857417249134e-03, 1.1727901195796864e-03, 3.2767353524817966e-04, -6.6129011875984411e-04, -1.4774313762835750e-03, -2.4353075187693862e-03, -3.1683792962805962e-03, -3.6344573498501009e-03, -4.1037750145557772e-03, -4.6865390819091635e-03, -5.1141822273961246e-03, -5.6012822891609859e-03, -6.1429025065681681e-03, -6.4572647662649515e-03, -6.7899019107617239e-03, -7.3914866520611161e-03, -7.9308423600261344e-03, -8.7157533357801222e-03, -9.3691687961386834e-03, -8.9359547181677070e-03, -5.5007075948239840e-03, -3.9858535741675721e-03, 2.2453076032023450e-03, -9.6799431057784330e-04, 4.0759461601471293e-04, -2.2041572965189306e-05, -5.8615376134355440e-05, 4.1332987937367571e-05, -2.1389027684563295e-05, 1.6415207983907709e-05, -2.4902111650929780e-06, -6.6046002495122243e-06, -5.1570386214876726e-06, -2.2119389208753981e-06, -8.8270622668868798e-06, 1.0192881489447380e-05, 9.1276153588996351e-05, 4.8842442897899057e-04, 9.1631772460448778e-04, 1.1627901349330839e-03, 1.0825860290987737e-04, -5.3187414052054474e-05, -5.2230900098578035e-05, -9.3423790849395116e-06, 2.3228020583679863e-06, 2.3054192748732556e-06, 8.8174498437919302e-07, -1.0065229805655482e-07, 4.5123886099531635e-06, 2.9310183315353205e-03, 2.9290546438819759e-03, 2.5835440627566403e-03, 2.4415195777072740e-03, 2.5500209525780027e-03, 2.1334024610356467e-03, 1.6108303283504793e-03, 5.2017167290467625e-04, -5.1356510483781259e-04, -1.3487782570408835e-03, -2.2793714500895096e-03, -3.0513563391097037e-03, -3.5784411077165318e-03, -4.1619696872325085e-03, -4.8226000433755217e-03, -5.2988171462405587e-03, -5.8317596890480744e-03, -6.4670866194535617e-03, -6.7875179130871127e-03, -7.1772551158862594e-03, -7.9460237550156368e-03, -8.8567980943625030e-03, -9.2465455485451209e-03, -9.8314714169290014e-03, -5.8329305314596888e-03, -5.2795690127642970e-03, 2.4244832084069912e-03, -9.8166039327683349e-04, 3.7838857286782242e-04, -1.1773324710615178e-05, -2.5680898931878856e-05, 2.8358066539669027e-05, -2.0965529463086777e-05, 7.2504623009982100e-06, -2.0117863083033181e-06, 2.3691289694808778e-07, 1.7312153205995538e-07, -3.5083208822024765e-07, -3.0051862204608884e-06, -9.2660028677868345e-06, 1.3129985365332409e-05, 9.0259406747155086e-05, 4.8742706302847482e-04, 9.1416270847772879e-04, 1.1633687917235248e-03, 1.0764656492550729e-04, -5.2824600335397640e-05, -5.2448767017231925e-05, -9.1931301252003335e-06, 2.1972379163738912e-06, 2.4696798228184338e-06, 5.3006497590562043e-07, -1.8221419033608716e-07, -5.9689012410144016e-07, 3.0233677725352848e-03, 3.2087351017633381e-03, 2.9555711104839039e-03, 2.7863622571583785e-03, 2.7921105529138818e-03, 2.3529459626512178e-03, 1.8294230910996523e-03, 8.2653296189506842e-04, -2.3849798769640107e-04, -1.0889647358318655e-03, -2.0325497644625434e-03, -2.9329729261815124e-03, -3.5664703857815477e-03, -4.2809208897214845e-03, -4.9825346550813054e-03, -5.4987333009570427e-03, -6.0938216164778125e-03, -6.7151221732929534e-03, -7.1105754682869310e-03, -7.6329096638221849e-03, -8.7414498442331054e-03, -9.6087173581489160e-03, -1.0143943003031916e-02, -7.1618584173408590e-03, -5.0139653519342652e-03, 7.6573424980370193e-04, -4.8045951239849725e-04, 2.3035842180705286e-04, 2.2777744874996240e-05, -3.5364552268335009e-05, 2.8214505562142346e-05, -8.9946092394195765e-06, 2.4261209458223746e-06, -8.1948065990806687e-06, 9.1791818174364063e-07, 6.1874403229508442e-08, 2.0179600864768908e-08, -3.0324387187115678e-07, -1.7264029806166666e-06, -9.1774688808843790e-06, 1.2797693488448246e-05, 9.0430184702240142e-05, 4.8619368765566830e-04, 9.1399372494217464e-04, 1.1626700775246787e-03, 1.0784085950171296e-04, -5.3001044744516689e-05, -5.2349185712059158e-05, -9.2593677460681492e-06, 2.2643552928026424e-06, 2.3728335776527013e-06, 6.5315814080403600e-07, -8.6630603793715413e-07, 1.4107961809296451e-06, 3.1724352511315612e-03, 3.2864349698521061e-03, 3.2171589221171304e-03, 3.0840167968303328e-03, 2.7583756401669546e-03, 2.3475389612621911e-03, 1.9307208284030514e-03, 1.2076126562810263e-03, 1.3811431692094256e-04, -7.5038935460210177e-04, -1.7719861651920993e-03, -2.8017859525197031e-03, -3.5428736655847143e-03, -4.3961627445350399e-03, -5.1528277686050256e-03, -5.7004149976225132e-03, -6.3452580369313324e-03, -6.9609114538582775e-03, -7.5026053030943576e-03, -8.1995965757342068e-03, -9.6089965497962414e-03, -1.0001873877532604e-02, -9.9916017619880188e-03, -4.4435877799513437e-03, -1.4668302793031537e-03, 5.4947461306504870e-04, -1.1219335976650531e-04, 1.4410259903527062e-04, -5.0097630483493272e-05, 2.9221379086333027e-05, -1.7250327116348249e-05, 5.7039688882190814e-06, -2.6001811858975931e-06, 8.0165997862807130e-07, -5.5972282156641474e-07, 1.8341958385546114e-07, 2.6795967129376939e-07, -1.7541756662020137e-07, -2.6858664158409604e-06, -9.1006421118475163e-06, 1.3011507508391325e-05, 9.0487716360752133e-05, 4.8686105317336285e-04, 9.1404460481388000e-04, 1.1629335427573422e-03, 1.0771937260868917e-04, -5.2923589323526036e-05, -5.2394602474007193e-05, -9.2252590226950780e-06, 2.2325006588572692e-06, 2.4256156342500855e-06, 5.9119488711976975e-07, -3.6055969407323626e-07, 1.7264078615393183e-06, 3.4927385565911850e-03, 3.5175218462489832e-03, 3.4960312490861026e-03, 3.3446458782359217e-03, 2.5880223444958855e-03, 2.2436191817693379e-03, 1.9693727043498671e-03, 1.5473564971495990e-03, 5.2912907711755164e-04, -3.8664943704398713e-04, -1.5428761127568996e-03, -2.6158356081328327e-03, -3.4423679664515733e-03, -4.4437344152818692e-03, -5.3183318607354091e-03, -5.9064050102618643e-03, -6.5515756278792109e-03, -7.3166887880243975e-03, -7.9745072366058101e-03, -8.9779898533771697e-03, -1.0158807210449167e-02, -1.0086391131552805e-02, -7.5769233653684544e-03, -2.8024636085521668e-03, 1.3752979418538030e-03, -4.4005857276361974e-04, 2.0728928083278903e-04, -4.6934468436132435e-05, 3.4028996727638854e-05, -1.5855529429891410e-05, 1.2385269142483620e-06, -3.1743630183019494e-06, 6.7208962436224925e-07, -3.8049765359956958e-07, 1.2491862393641958e-06, -2.5022420381693572e-07, -1.8292134117652145e-07, -6.2672465914377119e-07, -2.6350870158699507e-06, -9.1444360925838303e-06, 1.2781181605233671e-05, 9.0564529747380384e-05, 4.8703635012119564e-04, 9.1427680011595147e-04, 1.1629508596009736e-03, 1.0778734025903344e-04, -5.2949915818456279e-05, -5.2373394431083804e-05, -9.2400445788087295e-06, 2.2475052464466030e-06, 2.4067883501377105e-06, 6.3500956887273599e-07, -4.0492086970543226e-07, 1.6919436969546273e-06, 3.7895458326530768e-03, 3.8164553529100934e-03, 3.7504529545900264e-03, 3.5458836023910534e-03, 2.5302941625313102e-03, 2.1960734797796394e-03, 1.9890418774497903e-03, 1.7978423882995670e-03, 8.6999580904452423e-04, -3.9575239771147408e-05, -1.3155019648658783e-03, -2.4272486176567937e-03, -3.3316687234511561e-03, -4.4667277838402186e-03, -5.4696387303491134e-03, -6.1037051660148348e-03, -6.7981592557138926e-03, -7.7029485232050360e-03, -8.6202959119154876e-03, -9.5654934658602267e-03, -1.0899732262253919e-02, -8.1677904702819014e-03, -6.5574934551158454e-03, 1.9989236575547954e-03, -7.1852939959117035e-04, 2.5812827687564789e-04, -8.7961133741837544e-06, 8.2479477733002349e-06, -5.3981529695222265e-06, 6.2504287438762201e-07, -1.3105498699326400e-06, 1.0405719008599790e-07, -5.7209104592978173e-08, 1.8339421511360458e-07, -4.2876738906433829e-08, 1.3765980746345574e-07, 1.5833147155766124e-07, -2.9465746249303837e-07, -2.6944941321014183e-06, -9.1521344732324860e-06, 1.2984090548308946e-05, 9.0515919887867508e-05, 4.8690736268276432e-04, 9.1418819127853730e-04, 1.1629470439118079e-03, 1.0777174777432683e-04, -5.2937944209888958e-05, -5.2381734812248591e-05, -9.2338616054263127e-06, 2.2405572419562786e-06, 2.4141526461106573e-06, 6.1487390464040267e-07, -4.3127043343124671e-07, 1.3673390060241555e-06, 3.9731328855674847e-03, 4.0724275075432539e-03, 3.9143212263503466e-03, 3.6419529033973053e-03, 2.7550479661493515e-03, 2.2891835931632409e-03, 2.0346173339545054e-03, 1.9464352342846714e-03, 1.1382096820185400e-03, 2.7357250036977310e-04, -1.0531912306109142e-03, -2.2936120934968912e-03, -3.2845423591965767e-03, -4.5218130885075758e-03, -5.5961950244531183e-03, -6.3026844873272647e-03, -7.1132606242983593e-03, -8.1717663533497978e-03, -9.2407060997014533e-03, -1.0278945851060463e-02, -1.0507203600298625e-02, -6.8763285284446606e-03, -1.4513830368271623e-03, 3.2631873225813686e-04, -5.7165816114078687e-05, 1.2376874938059356e-04, -3.7484198500845842e-05, 1.7913849316931823e-05, -1.0948433635428012e-05, 9.7709403996398153e-07, -6.5255712593943716e-07, 9.1504892180105900e-07, -3.0662383280197821e-07, -3.5750157989468054e-07, 4.4354200750925028e-08, 5.4573015939070194e-08, 1.7958749944453265e-07, -2.8474779174778042e-07, -2.6005065606236297e-06, -9.1506438528180851e-06, 1.2964025647210247e-05, 9.0519608160218262e-05, 4.8684161767017809e-04, 9.1415100679405955e-04, 1.1629161926409084e-03, 1.0777384735979499e-04, -5.2944367951860902e-05, -5.2378277858079920e-05, -9.2369992506008067e-06, 2.2436564599227424e-06, 2.4086697155063265e-06, 6.2045901975341794e-07, -4.7167137056866593e-07, 1.4897784188097965e-06, 4.1590037378393813e-03, 4.3443284039741820e-03, 4.0561882803099025e-03, 3.6942600077313481e-03, 2.9857374705383188e-03, 2.4461528970541740e-03, 2.1411266845590554e-03, 2.0124772535689978e-03, 1.3682249192884105e-03, 5.8835040396365557e-04, -7.8239792279417852e-04, -2.1783458749362050e-03, -3.2604624685286521e-03, -4.5747087735886136e-03, -5.7210375062592342e-03, -6.5017276143794767e-03, -7.4715840158338306e-03, -8.7549333686289671e-03, -1.0015567950187588e-02, -1.0963144484037551e-02, -8.7236973387083590e-03, -5.2456790275383428e-03, 1.6166995127535251e-03, -4.4596206430992842e-04, 2.0673364033607587e-04, -3.5849633299228585e-05, 1.9604085559581200e-05, -9.3001947987060514e-06, 1.3666921549536457e-06, -9.4568832818440682e-07, 2.8411956311271921e-07, -3.0571042688027879e-08, 6.4837421433823917e-08, -8.5154463809889846e-09, -2.8545716034583560e-08, 7.8662037024087098e-08, 1.9037598757977133e-07, -2.7581972166243549e-07, -2.6684151927214398e-06, -9.1432815774479802e-06, 1.2978096140648296e-05, 9.0527434507152639e-05, 4.8688107144033833e-04, 9.1416454471427973e-04, 1.1629271031215129e-03, 1.0776997343283452e-04, -5.2941801427577005e-05, -5.2380086019228941e-05, -9.2355171713025437e-06, 2.2420574503001153e-06, 2.4116051864277871e-06, 6.1747748549651968e-07, -4.3990049685034560e-07, 1.5228770955397555e-06, 4.3945095231911063e-03, 4.7033633370466912e-03, 4.2552736851255435e-03, 3.7899600809494852e-03, 2.9659899923831154e-03, 2.5851604558181848e-03, 2.3361678527790419e-03, 2.0188458764594519e-03, 1.5862177725142618e-03, 9.1423367813737999e-04, -5.3476594102497277e-04, -2.0293093767065062e-03, -3.1989200362134707e-03, -4.5929138614262330e-03, -5.8603892400701449e-03, -6.7306271994140646e-03, -7.8033810210215715e-03, -9.5063123443276561e-03, -1.0829588468746685e-02, -1.1507639058805249e-02, -5.9074977383985474e-03, -1.1031043446348232e-03, 2.3627221375140808e-04, -5.4890353503974545e-05, 1.0006539460843559e-04, -1.5707960772748405e-05, 4.7262741477777028e-07, -3.0855501130663078e-06, 4.5720660733143507e-07, -2.2253592722913467e-07, -1.0337786704019765e-07, -4.1365795490409894e-08, 4.6640917817915122e-10, -2.2241117073472003e-08, 9.2156679643731298e-08, 4.4433431597472252e-08, 1.6246775403543166e-07, -3.0729368700140361e-07, -2.6647897834375833e-06, -9.1469632337358393e-06, 1.2962000414834361e-05, 9.0531503785701528e-05, 4.8689681915611209e-04, 9.1417724452347022e-04, 1.1629314864589596e-03, 1.0777267629993176e-04, -5.2942477261068606e-05, -5.2379277329080674e-05, -9.2361359680611689e-06, 2.2428270982496543e-06, 2.4107237038047818e-06, 6.1996093609099565e-07, -4.4085696346285452e-07, 1.5156508092238966e-06, 4.6582819294107014e-03, 5.0370791553825192e-03, 4.4946195087737437e-03, 3.9492818805593882e-03, 2.9470720740384510e-03, 2.7559360190771778e-03, 2.5819618850032450e-03, 2.0380420905493773e-03, 1.7244968517784176e-03, 1.1413205749305488e-03, -2.9283534132971967e-04, -1.8406944048606488e-03, -3.1088437423701237e-03, -4.6295974099432591e-03, -6.0329833230906502e-03, -6.9780283465692289e-03, -8.2557848355007055e-03, -1.0115991944309264e-02, -1.1395499777532354e-02, -1.0735621794822268e-02, -3.4212953903407358e-03, 1.1011804447362517e-03, -3.0909363283314128e-04, 1.8527906642773609e-04, -3.2118920448222341e-05, 1.3277297732631614e-05, -5.8329017556874090e-06, 2.6935424463020517e-07, -3.9711564978334570e-07, 1.8183734731772180e-07, 1.0613954396377495e-09, 2.2275554155821694e-09, -4.2535034546192091e-09, 5.0925053617800363e-09, 1.2587108149801933e-09, 7.6068264727316773e-08, 1.8600381730409941e-07, -2.8345822919693421e-07, -2.6690851934659812e-06, -9.1474146866355745e-06, 1.2976367025454509e-05, 9.0528528169062425e-05, 4.8688630234931980e-04, 9.1417239621434040e-04, 1.1629298942578740e-03, 1.0777244725527742e-04, -5.2942157218848884e-05, -5.2379548130155381e-05, -9.2358763819407746e-06, 2.2425096112498565e-06, 2.4110626534751961e-06, 6.1887666551272563e-07, -4.4376235958359239e-07, 1.4946915534363656e-06, 4.8878537568500802e-03, 5.2828183520757521e-03, 4.7249130847720200e-03, 4.1861908906312972e-03, 3.1960047054694282e-03, 3.0217851198054840e-03, 2.8149379318906792e-03, 2.1267223307081459e-03, 1.7333998013283614e-03, 1.1846097245443651e-03, -4.4180337124458124e-05, -1.6425804988224324e-03, -3.0057830597106372e-03, -4.7499093016053831e-03, -6.2025460211943273e-03, -7.3400269548197991e-03, -8.7445211673779742e-03, -1.0831249005835770e-02, -1.0488581354805017e-02, -9.5332966660976529e-03, 1.4009816546540663e-04, -9.3207622252324866e-05, 4.5383228417745150e-05, 6.0424868594049147e-05, -6.6084362866430452e-06, 7.4015675520378433e-07, -2.6962965805626152e-06, 4.2359323486337928e-07, -4.0145042834284299e-07, 1.0491641013470499e-07, -1.1389646743456419e-08, 6.0527339205108878e-08, -2.6699909889271603e-08, -3.1812685064629902e-08, 1.0121077568349185e-08, 6.9244727964282052e-08, 1.8803753051991657e-07, -2.8281997806477209e-07, -2.6623807585065884e-06, -9.1473712398173286e-06, 1.2974990763427492e-05, 9.0528574403285811e-05, 4.8688205089769199e-04, 9.1416912558325261e-04, 1.1629282135601012e-03, 1.0777222796263131e-04, -5.2942376654205921e-05, -5.2379436387421392e-05, -9.2360053512811902e-06, 2.2426559695013296e-06, 2.4107711312838266e-06, 6.1911228652804587e-07, -4.4615879633662370e-07, 1.5023655351451351e-06, 5.2104596112097640e-03, 5.5107933839780576e-03, 4.9864589950339745e-03, 4.4515560344689023e-03, 3.6126275563852436e-03, 3.3054609694909212e-03, 2.9763049998044744e-03, 2.2230535641044324e-03, 1.7188006743197801e-03, 1.1750394413027679e-03, 1.3481328089068323e-04, -1.4857040391575288e-03, -2.9134763801808503e-03, -4.8265954247539641e-03, -6.4217761617868171e-03, -7.7316397160082581e-03, -9.4595014806419450e-03, -1.1209874801471450e-02, -9.6233824362794880e-03, -6.0595308848771668e-03, 4.7506316984518172e-04, -1.3432991852095936e-04, 1.2346300161669217e-04, -5.4309428228412635e-06, 5.0525171250144458e-06, -3.7789422882504012e-06, -3.9341699125948243e-08, -2.8403959502986374e-07, 1.3950160742378975e-07, -6.6787822425171594e-09, 1.8963058136451695e-08, -5.4183112632841170e-09, 4.0165146321456246e-10, -4.6881540446616632e-09, 4.5764804652338471e-09, 7.1406497994898669e-08, 1.8860358607667371e-07, -2.8220935405451363e-07, -2.6672675722747008e-06, -9.1468306306206784e-06, 1.2975974372470082e-05, 9.0529219023159879e-05, 4.8688470489298874e-04, 9.1417033705822753e-04, 1.1629287847913633e-03, 1.0777210987865816e-04, -5.2942292084397300e-05, -5.2379502090380524e-05, -9.2359416072121392e-06, 2.2425775742032639e-06, 2.4109312507054545e-06, 6.1897648331345201e-07, -4.4412091007887608e-07, 1.5052653036815369e-06, 5.3911254217343524e-03, 5.9426337569568367e-03, 5.2726825617456750e-03, 4.7053854405817858e-03, 4.0129904636836342e-03, 3.5096121731177030e-03, 3.0355227728754985e-03, 2.2778626821453318e-03, 1.7812968202267424e-03, 1.2528186380209930e-03, 1.9188892726192813e-04, -1.4005270178116258e-03, -2.8333385623393048e-03, -4.7803127201241358e-03, -6.6540281662312364e-03, -8.2523797746608257e-03, -1.0008804032312878e-02, -1.1800121128739042e-02, -8.0872266810890422e-03, -3.2315028035299256e-03, 1.0572851998884504e-03, -2.9217560854930777e-04, 1.7229627200686750e-04, -3.6546162622956102e-05, 9.6413568144563297e-06, -4.6992935380187111e-06, 4.4712201514792186e-07, -2.3445495882836722e-07, 1.3714771734078942e-07, -9.1301366115760984e-09, -9.2043198276510864e-09, -6.1069908138995394e-09, -2.6072657284298851e-09, -5.3977910769039371e-09, 1.3474155062260639e-08, 6.8801028658659600e-08, 1.8660326624677270e-07, -2.8448041431787779e-07, -2.6670113110342423e-06, -9.1470977634308269e-06, 1.2974829768644963e-05, 9.0529480647991961e-05, 4.8688590677874448e-04, 9.1417115671658868e-04, 1.1629291876103184e-03, 1.0777223867893763e-04, -5.2942296784682166e-05, -5.2379472391882523e-05, -9.2359671002230533e-06, 2.2426140139399087e-06, 2.4108907616931380e-06, 6.1911460852220532e-07, -4.4407421634362620e-07, 1.5044893699424008e-06, 5.9539324318438475e-03, 6.1035453996684183e-03, 5.6256388574844364e-03, 4.9738816676809378e-03, 4.2846974631071955e-03, 3.6521703453051488e-03, 3.1155144417506983e-03, 2.3256312265079321e-03, 1.8698698465534902e-03, 1.3544654729142902e-03, 2.2093383748356121e-04, -1.3274151108257429e-03, -2.7571467701443184e-03, -4.7172030142506732e-03, -6.9430218207759617e-03, -8.7060227066825674e-03, -1.0597110360888423e-02, -1.1176854270494172e-02, -7.3446014713764553e-03, 6.5321423322807829e-04, -2.4176836400896398e-04, 1.2337281077800594e-04, 1.7912666959518634e-05, -5.5813207776399915e-07, -1.3629967608620318e-06, -1.1209185684404980e-06, 5.9450223410575909e-08, -6.3142800907210099e-09, 4.5535120822982455e-08, 2.1777730373570168e-09, 8.8188310313716024e-10, -2.8159342708224686e-09, -1.9052067463541569e-09, -3.3777824772775709e-09, 6.9162134349269990e-09, 7.1050328603406224e-08, 1.8827314939815236e-07, -2.8277385599056754e-07, -2.6673173260581914e-06, -9.1471279132304489e-06, 1.2975857836487910e-05, 9.0529279731105060e-05, 4.8688512495235066e-04, 9.1417084549830089e-04, 1.1629290378594235e-03, 1.0777224948526265e-04, -5.2942292848527379e-05, -5.2379479601979625e-05, -9.2359578401793666e-06, 2.2425998711817635e-06, 2.4109028518323576e-06, 6.1905667299733819e-07, -4.4434262683841139e-07, 1.5031146963885925e-06, 5.5395793884996051e-03, 6.2890745456534898e-03, 5.7887696848080202e-03, 5.4088048171617061e-03, 4.3341970341569599e-03, 3.8316325983466029e-03, 3.3281873713988455e-03, 2.4135624123720750e-03, 1.9172724671375693e-03, 1.3863797224456936e-03, 3.0460397388392541e-04, -1.2174555793459663e-03, -2.6774238133705081e-03, -4.7964948096328522e-03, -7.2608734569995989e-03, -9.1744154635586307e-03, -1.0928167839355655e-02, -9.5027780987710780e-03, -5.3621116983314995e-03, 1.1164185836483264e-03, -3.0585125656336365e-04, 1.8781585068047325e-04, -4.1599795443857666e-05, 1.3204901436995637e-05, -6.1033890535428328e-06, 9.5168714773679393e-07, -3.9789372194332410e-07, 1.8043890045885223e-07, -4.0085935640432461e-08, 1.2581142853158780e-08, -5.0220801095751492e-09, 4.0127604459747057e-09, -3.7459268896933469e-09, -5.8892579655198465e-09, 7.4873583395319073e-09, 7.0548373155645302e-08, 1.8841423526549299e-07, -2.8272583827663057e-07, -2.6668355305594716e-06, -9.1471247238520000e-06, 1.2975760610204029e-05, 9.0529278301208630e-05, 4.8688483012080156e-04, 9.1417059603597238e-04, 1.1629289314027632e-03, 1.0777222216513341e-04, -5.2942300562558615e-05, -5.2379477354206911e-05, -9.2359625335413850e-06, 2.2426054476646154e-06, 2.4108892338488806e-06, 6.1906141249259278e-07, -4.4447814130568059e-07, 1.5035867943491432e-06, 6.6796956870252520e-03, 5.4008723263632361e-03, 5.9539212308762478e-03, 5.6751784540163587e-03, 4.4891979426775683e-03, 4.0371467738553810e-03, 3.5911830346874313e-03, 2.5873992129466089e-03, 1.9522779900837256e-03, 1.3588005758591454e-03, 3.8613074188167951e-04, -1.1254988446643757e-03, -2.6395429465384881e-03, -4.9852107431144418e-03, -7.6574924360668026e-03, -9.7482242584556178e-03, -1.1169180578367570e-02, -7.0544409260830179e-03, -3.3038534563145571e-03, 7.4318238075453164e-04, -1.7012385200038403e-04, 1.1804338505108876e-04, -2.8339949287261660e-05, 6.6341289598563209e-06, -3.5641453728467714e-06, 6.7887127082578655e-07, -1.8278438424302928e-07, 9.2981561041442914e-08, -1.0328328958105208e-08, 3.5843265013896708e-09, -1.7312347526556157e-09, -2.8058992977665013e-10, -1.7213660096122591e-09, -3.9650356699664178e-09, 7.0642486550226641e-09, 7.0698868660998824e-08, 1.8845423921659955e-07, -2.8268120666768862e-07, -2.6671858011796922e-06, -9.1470856353078445e-06, 1.2975830641092601e-05, 9.0529326391372697e-05, 4.8688501652826150e-04, 9.1417068869818253e-04, 1.1629289665478603e-03, 1.0777221848079412e-04, -5.2942298176188000e-05, -5.2379479116490806e-05, -9.2359608955916266e-06, 2.2426038605682756e-06, 2.4108942057125132e-06, 6.1906323247469183e-07, -4.4436612555006846e-07, 1.5038695594200499e-06, 3.8782244439999622e-03, 5.6238957163876856e-03, 5.4418007276652511e-03, 5.8807461120922444e-03, 4.8325010162006132e-03, 4.3230162288553503e-03, 3.7413369551653336e-03, 2.8751204301348254e-03, 2.0101966356999568e-03, 1.3251948326836946e-03, 4.0463534096119025e-04, -1.1077188859867013e-03, -2.6927643542936017e-03, -5.1689438166605192e-03, -8.2037552879985730e-03, -1.0227079002362985e-02, -1.1615267808719937e-02, -4.3053086534707930e-03, -1.2511463754106944e-03, 3.3019643643431143e-04, -5.1991708677847265e-06, 2.8599705353217391e-05, -1.0477262984088988e-05, 3.7498244519456724e-07, -9.8524597973741114e-07, 2.2612984732619048e-07, -2.3991841205760873e-08, 2.9481339075405053e-08, -1.5153077316683826e-09, -6.4781227677632690e-11, -1.8934559229360050e-09, -4.4688494950980567e-10, -1.8347884040949758e-09, -4.0701725569287136e-09, 7.7010936264202421e-09, 7.0507437705886111e-08, 1.8831217765829535e-07, -2.8284382525605649e-07, -2.6671672006758240e-06, -9.1471048948400731e-06, 1.2975748668561231e-05, 9.0529344449623745e-05, 4.8688510434311677e-04, 9.1417074531108874e-04, 1.1629289978084452e-03, 1.0777222561758008e-04, -5.2942296559307760e-05, -5.2379479163069433e-05, -9.2359595393214956e-06, 2.2426011017256421e-06, 2.4109009999100962e-06, 6.1905571924507005e-07, -4.4431049041858406e-07, 1.5037005165708869e-06, 7.5063729247229986e-03, 3.3544306316238212e-03, 5.5205234693389994e-03, 5.5107510335111846e-03, 5.4239742104701290e-03, 4.5766736212253974e-03, 3.8664323801237271e-03, 3.0898114206127300e-03, 2.1219650571440499e-03, 1.3640105557211971e-03, 3.8843831872965168e-04, -1.1527727789383754e-03, -2.7631550342502934e-03, -5.4172505864351073e-03, -8.5665361202653806e-03, -1.0631234783983212e-02, -1.0759697797276814e-02, -3.1267569932888002e-03, 1.0630441264725427e-03, -2.8219264464969019e-04, 1.8879522534499387e-04, -6.4826006871474180e-05, 1.1191345937235097e-05, -5.8740504557318964e-06, 1.5428789299906984e-06, -3.1476961305153489e-07, 1.5488075688877988e-07, -3.3273040153642243e-08, 8.4923195487797160e-09, -3.6380430374239204e-09, 6.9678889746830133e-10, -5.1051338591896148e-10, -1.6952917610983708e-09, -3.9703018997065730e-09, 7.2332632126617799e-09, 7.0667013815306164e-08, 1.8843324404773927e-07, -2.8272120959961804e-07, -2.6671890892092224e-06, -9.1471070727216326e-06, 1.2975822399831276e-05, 9.0529330241143188e-05, 4.8688504770911411e-04, 9.1417072370613512e-04, 1.1629289862005870e-03, 1.0777222744008446e-04, -5.2942297831312830e-05, -5.2379476900000794e-05, -9.2359640981973419e-06, 2.2426099481145413e-06, 2.4108834819781128e-06, 6.1908502423709683e-07, -4.4443035948421236e-07, 1.5038202291805039e-06, 7.1402664683881958e-04, 4.7755171558951986e-03, 4.6120293808658884e-03, 5.3902579079897484e-03, 5.7347224754817107e-03, 4.8983914205032002e-03, 4.0206616154889845e-03, 3.1267528859484015e-03, 2.2752112810790065e-03, 1.5277480362207163e-03, 3.4730545314030914e-04, -1.1873982227870311e-03, -2.8856700953455577e-03, -5.5995070436484010e-03, -9.0190445006577691e-03, -9.9158351110619752e-03, -9.6215749285662316e-03, -7.2076702643167139e-04, 9.7743774065660354e-05, 6.6716710102518320e-05, 5.1404257153875896e-05, -4.4888654716908626e-05, 1.7142715585323926e-06, -2.5291814689609135e-06, 1.1124948838279943e-06, -8.0907012589518800e-08, 7.5740790464657627e-08, -2.2412120215945029e-08, 4.9540954926699174e-10, -1.8188754870741147e-09, 4.3122069199393216e-10, 3.8910309111024610e-11, -1.8548581782388933e-09, -4.1579639622454966e-09, 7.2719544446834357e-09, 7.0631659854078965e-08, 1.8844370664201763e-07, -2.8271763264536062e-07, -2.6671545202629519e-06, -9.1471068549511830e-06, 1.2975815404758204e-05, 9.0529330160031354e-05, 4.8688502647703806e-04, 9.1417070590518160e-04, 1.1629289785864973e-03, 1.0777222486469534e-04, -5.2942296345935471e-05, -5.2379481621042927e-05, -9.2359542400830170e-06, 2.2425904119948575e-06, 2.4109201472353146e-06, 6.1901648275644594e-07, -4.4423260871315901e-07, 1.5034029258289075e-06, -2.7312599914772525e-03, 5.0123715831570919e-03, 3.7447591288184688e-03, 5.2181399104018113e-03, 5.8139243091934554e-03, 5.1860315513591465e-03, 4.3127446211511135e-03, 3.1655927530590787e-03, 2.4065266994919357e-03, 1.6660302568752283e-03, 3.1666028583669098e-04, -1.2565727663901988e-03, -3.0240617821503946e-03, -5.9299587280632719e-03, -9.3201042714928864e-03, -9.3428192221354719e-03, -6.6733187955935547e-03, -8.7566259812129157e-04, 2.1622031412592654e-04, 1.0929913244087756e-04, -2.9719571895155843e-05, -2.7371765292412591e-05, -5.2481885109184243e-06, 7.5029085594928826e-07, 4.8305151908737873e-07, 1.6673353362233715e-07, -1.4478866950572373e-08, -8.1789102590075621e-09, -4.3209647474239153e-09, 1.4153143332871002e-10, 2.4022086621592557e-10, -1.0510126807489889e-10, -1.7706627658509947e-09, -4.0126296468352826e-09, 7.2377156149893568e-09, 7.0643894556560779e-08, 1.8844653517629943e-07, -2.8271433872045402e-07, -2.6671796881663849e-06, -9.1471040809830076e-06, 1.2975820522186197e-05, 9.0529333345109450e-05, 4.8688504056367270e-04, 9.1417071144028977e-04, 1.1629289821114984e-03, 1.0777222484391596e-04, -5.2942299544338385e-05, -5.2379472270343459e-05, -9.2359748783323731e-06, 2.2426315569026509e-06, 2.4108420355389501e-06, 6.1916072168237066e-07, -4.4465953789657106e-07, 1.5043706797571166e-06, -1.6446083314063849e-03, 1.9796533140516159e-03, 3.2831377940096005e-03, 4.8532158385814830e-03, 5.6196295318674365e-03, 5.3735753111184767e-03, 4.7540091990168065e-03, 3.3692075446957077e-03, 2.4706548699187231e-03, 1.6582475250211740e-03, 3.1724342417800699e-04, -1.3536762413493136e-03, -3.2572290794251127e-03, -6.2665055175044719e-03, -9.8004062075264364e-03, -8.6127566670550215e-03, -4.0596487632552592e-03, -3.8787650040883373e-04, 1.3736711048277422e-04, 6.6749661966681957e-05, -4.0949991114065090e-05, -3.3576266826382690e-05, -2.2811367940486505e-06, 6.5900532579871618e-07, 7.8374822714011316e-07, 8.2648301601845331e-08, -1.1077278419080287e-08, -1.7134019486829714e-08, -2.4887831959153825e-09, 1.1713786902533153e-10, 3.6210627270098772e-10, -1.4163435226347779e-10, -1.7866352309550085e-09, -4.0242336612019737e-09, 7.2838747729604128e-09, 7.0630427062879655e-08, 1.8843646124081209e-07, -2.8272600316557996e-07, -2.6671783897168100e-06, -9.1471053820273222e-06, 1.2975814410263325e-05, 9.0529335452832721e-05, 4.8688504495235786e-04, 9.1417071877374664e-04, 1.1629289809708687e-03, 1.0777222620284065e-04, -5.2942293715032163e-05, -5.2379491012847536e-05, -9.2359322541582176e-06, 2.2425456040037726e-06, 2.4110065928494365e-06, 6.1885773804592689e-07, -4.4374070865211071e-07, 1.5023621957755556e-06, 4.3821303102699494e-05, -3.4915885729096719e-04, 2.3364609177122454e-03, 4.2332205441285853e-03, 5.1468865683459196e-03, 5.4205566943499942e-03, 5.0592254589926396e-03, 3.6169354666127015e-03, 2.5264052304683135e-03, 1.6372506643301532e-03, 3.6921348290860911e-04, -1.4297839084513736e-03, -3.5054327500455319e-03, -6.5783899508998767e-03, -9.7945736573147417e-03, -7.5643572979321918e-03, -2.1255941885868525e-03, 2.6522808211602178e-04, 3.0560306483448042e-05, 7.8911375688280592e-05, -7.8057238868958130e-05, -2.5154192327506972e-05, -3.9335285183350990e-06, 1.8866590718482463e-06, 5.7685252500606389e-07, 1.2531789309891894e-07, -3.9612726893356555e-08, -1.3870942888665285e-08, -3.4530559013003486e-09, 7.9181015264189868e-10, 4.1585249996409657e-10, -1.1471232018206608e-10, -1.7973147980489528e-09, -4.0153009201804920e-09, 7.2497325207839100e-09, 7.0642356233259029e-08, 1.8844516061512220e-07, -2.8271720673332874e-07, -2.6671799032960161e-06, -9.1471057119775278e-06, 1.2975820271271172e-05, 9.0529332765738454e-05, 4.8688504561369050e-04, 9.1417070865336349e-04, 1.1629289897682441e-03, 1.0777222162652129e-04, -5.2942303016859267e-05, -5.2379454109062386e-05, -9.2360196765404849e-06, 2.2427243060139934e-06, 2.4106623132511169e-06, 6.1949454509269142e-07, -4.4567388141547246e-07, 1.5065790731991907e-06, 5.7168532749407553e-04, -1.0859780400883003e-03, 1.3687779879091714e-03, 2.8004128616493417e-03, 4.8179258938689604e-03, 5.2028657916801755e-03, 5.0447127370342060e-03, 3.7461259290918827e-03, 2.6299152119132578e-03, 1.7301568864211830e-03, 4.8337866267017179e-04, -1.4523363476950900e-03, -3.6508412209217654e-03, -6.9175228226720786e-03, -8.7199143881379754e-03, -6.3063703367745513e-03, -6.5305702391400963e-04, 1.6326965562079939e-04, 1.3662556253057567e-04, -7.3153569560048006e-06, -6.9389873786513396e-05, -3.0284650747703645e-05, -1.3233308121785140e-06, 1.6306612150638315e-06, 7.2177499444669145e-07, 6.2998628776284277e-08, -3.6493410146329190e-08, -1.7169380954788153e-08, -2.3037184819686305e-09, 8.1396910068534060e-10, 4.8940523996680169e-10, -1.1134130404222460e-10, -1.8086852295008064e-09, -4.0309436938643995e-09, 7.2532560357597932e-09, 7.0639885692356640e-08, 1.8844596144544439e-07, -2.8271691715610152e-07, -2.6671775491067035e-06, -9.1471052668616734e-06, 1.2975818505315856e-05, 9.0529336289199924e-05, 4.8688503256156894e-04, 9.1417072932300060e-04, 1.1629289631399134e-03, 1.0777223826241101e-04, -5.2942290149743040e-05, -5.2379525563173678e-05, -9.2358413464931413e-06, 2.2423537391915403e-06, 2.4113811839098637e-06, 6.1815860806675726e-07, -4.4161312874255176e-07, 1.4976801433102052e-06, -2.3780377642158623e-04, -5.5542731465195683e-05, 8.0388249683930991e-05, 1.8396331146278517e-03, 4.4823891244700547e-03, 5.0360151477004253e-03, 4.8696278264629949e-03, 3.7905050109495672e-03, 2.7174338828867030e-03, 1.8508850784177099e-03, 5.8918275434758846e-04, -1.4402070675220945e-03, -3.7342020129515728e-03, -7.1109674002489010e-03, -7.6339649630064689e-03, -5.1638404255238222e-03, -2.0009084981296581e-04, 9.3772097474935156e-05, 1.5329225373411138e-04, -5.9661252555353228e-05, -6.5558092744413588e-05, -3.2123214635322093e-05, 2.1196006290482856e-07, 1.5015114831000805e-06, 7.9034968274675895e-07, 2.0914585492575019e-08, -3.3585672397519863e-08, -1.9384342923658439e-08, -1.1050506775503151e-09, 7.5983401626286869e-10, 5.5859150310355425e-10, -1.5839815818306704e-10, -1.7993389675501287e-09, -4.0225324183227641e-09, 7.2516367027961742e-09, 7.0640733066475213e-08, 1.8844624496267264e-07, -2.8271678266373582e-07, -2.6671790647765089e-06, -9.1471062403699753e-06, 1.2975820867724207e-05, 9.0529327610977084e-05, 4.8688505952201573e-04, 9.1417067491222893e-04, 1.1629290331134970e-03, 1.0777218729064123e-04, -5.2942300563580801e-05, -5.2379389307198859e-05, -9.2362029567769587e-06, 2.2431205136392955e-06, 2.4098824589892202e-06, 6.2095721467016196e-07, -4.5014562338350703e-07, 1.5164326278190032e-06, -3.0746715536842729e-04, -1.2288410885350558e-04, 4.5259325093778233e-05, 1.4886718530523135e-03, 4.4538426512244619e-03, 4.9832866583489031e-03, 4.8416933764634743e-03, 3.7860249885947328e-03, 2.7432862400731013e-03, 1.8847484062345862e-03, 6.1857524042052692e-04, -1.4368493577821204e-03, -3.7899539038166244e-03, -7.1167354770744241e-03, -7.4045351777962433e-03, -4.8445129846925354e-03, -2.6608458334667244e-04, 1.6290706013389852e-04, 8.2847680483965063e-05, -5.5203172734316711e-05, -7.3105217351459854e-05, -2.8883275000451692e-05, -1.2901273403637136e-07, 1.7983100545626845e-06, 6.9774359397828595e-07, 3.0888984020130427e-08, -4.2461053892110432e-08, -1.7121390771427736e-08, -1.3164269145664277e-09, 1.0009937749565559e-09, 5.0216679232039600e-10, -1.5507908051790552e-10, -1.8066295215748724e-09, -4.0220345003452989e-09, 7.2548899990017377e-09, 7.0639937543471730e-08, 1.8844543955076956e-07, -2.8271751773210050e-07, -2.6671799032879659e-06, -9.1471045668021020e-06, 1.2975816204621607e-05, 9.0529337171671266e-05, 4.8688500304487701e-04, 9.1417081166877186e-04, 1.1629288531607867e-03, 1.0777233571790000e-04, -5.2942315530883806e-05, -5.2379640471471398e-05, -9.2354726371349574e-06, 2.2415391458694908e-06, 2.4130026158777212e-06, 6.1510292057509117e-07, -4.3223226283426244e-07, 1.4769511359749229e-06, -1.1201133102275247e-04, -3.3579356879985615e-04, 2.7959195458703186e-04, 1.7125238885128387e-03, 4.4916964553243545e-03, 5.0503849846124061e-03, 4.8809099688140907e-03, 3.7837004477172011e-03, 2.7282369591390757e-03, 1.8657443089876054e-03, 6.0227383972234413e-04, -1.4448847581998957e-03, -3.8120678234442387e-03, -7.0937203281061165e-03, -7.6137679018291040e-03, -5.0365160454747884e-03, -3.6719606219496351e-04, 1.4580014033555984e-04, 7.5669647474473284e-05, -5.9177434966549615e-05, -7.1243384487435551e-05, -2.8488606050281156e-05, 1.6738408290137513e-07, 1.7739598324321336e-06, 6.8816922863386377e-07, 2.1177598433442168e-08, -4.2448833248749239e-08, -1.6889230908018367e-08, -1.0487780977740590e-09, 1.0260628409880556e-09, 5.0285421604402605e-10, -1.6168045212112264e-10, -1.8075870101663238e-09, -4.0212499615159981e-09, 7.2526701429075470e-09, 7.0640785410604136e-08, 1.8844605090634022e-07, -2.8271762910764958e-07, -2.6671789374928544e-06, -9.1471090778492774e-06, 1.2975820661021768e-05, 9.0529331695355685e-05, 4.8688512702167676e-04, 9.1417047496410555e-04, 1.1629293151276456e-03, 1.0777192696071001e-04, -5.2942192285191508e-05, -5.2379193600882688e-05, -9.2369364247672954e-06, 2.2447921428194254e-06, 2.4065215289202462e-06, 6.2733481773127181e-07, -4.6979713539535561e-07, 1.5600384032131778e-06, -7.4490411050430266e-05, -3.8320668407461339e-04, 3.8597338881815515e-04, 1.7920110438991127e-03, 4.5456933800674497e-03, 5.0728397525719735e-03, 4.8999321555594690e-03, 3.7833787141296170e-03, 2.7204641710360418e-03, 1.8550754607510184e-03, 5.9484152044451261e-04, -1.4489029095550200e-03, -3.8126654813057728e-03, -7.1119573783347597e-03, -7.6984209150647567e-03, -5.1248075602825099e-03, -4.2982268715531481e-04, 1.4582719994790579e-04, 7.0589440758347027e-05, -5.6008117154245313e-05, -7.0722575629073153e-05, -2.7964151498502347e-05, 1.7097153569853654e-07, 1.7666922867699256e-06, 6.7267250390436715e-07, 1.8209214883385758e-08, -4.2425178489377807e-08, -1.6522194323109621e-08, -9.2026474133688300e-10, 1.0314752001610921e-09, 4.9494122994107274e-10, -1.6449488058028865e-10, -1.8085533897170330e-09, -4.0220661286910746e-09, 7.2530156551819372e-09, 7.0640461761496947e-08, 1.8844531448436268e-07, -2.8271725875107215e-07, -2.6671821372230758e-06, -9.1470984235660356e-06, 1.2975841947718592e-05, 9.0529329097412462e-05, 4.8688490264195086e-04, 9.1417128168506685e-04, 1.1629281225279486e-03, 1.0777300151475514e-04, -5.2942683806838243e-05, -5.2379949390652866e-05, -9.2340327705639318e-06, 2.2381167266260875e-06, 2.4199525187063031e-06, 6.0182073386436455e-07, -3.9110699939911772e-07, 1.3852896416149604e-06, -8.8489598408867515e-05, -3.5433149055065548e-04, 3.5476846111351048e-04, 1.7583587932473886e-03, 4.5436773183376040e-03, 5.0664320297614902e-03, 4.8903012231889739e-03, 3.7841222995615952e-03, 2.7220556291412297e-03, 1.8586359911181398e-03, 5.9871917717991066e-04, -1.4470498531676430e-03, -3.8097777362041188e-03, -7.1272409866180164e-03, -7.6549596799906890e-03, -5.0942609245598824e-03, -4.2263786938876959e-04, 1.4353645468774564e-04, 7.3115024635862883e-05, -5.5440335004957448e-05, -7.0009561529575185e-05, -2.7943756988785132e-05, 1.7544386842025406e-07, 1.7435080741145322e-06, 6.6667636587085959e-07, 1.7156829552962181e-08, -4.2026648583713992e-08, -1.6275615040821389e-08, -8.5736993379718646e-10, 1.0280698052849563e-09, 4.8776447292254391e-10, -1.6809471020250589e-10, -1.8079928068597722e-09, -4.0211674464394123e-09, 7.2525961328820084e-09, 7.0639711427010021e-08, 1.8844525291424248e-07, -2.8271847958331821e-07, -2.6671748870592276e-06, -9.1470986147612263e-06, 1.2975768452678298e-05, 9.0529692032399850e-05, 4.8688522179467296e-04, 9.1416930453067753e-04, 1.1629310734913071e-03, 1.0777012842729276e-04, -5.2941155124924550e-05, -5.2378828339045853e-05, -9.2397565053725303e-06, 2.2517432186454703e-06, 2.3921606971859591e-06, 6.5492393365711860e-07, -5.5574376333711664e-07, 1.7525919222523625e-06, -1.0443170593259666e-04, -3.3707560419677138e-04, 3.2990880046551078e-04, 1.7393095936605518e-03, 4.5338233729573570e-03, 5.0600095621248474e-03, 4.8857511645224172e-03, 3.7831195149381144e-03, 2.7234818310944049e-03, 1.8608919881441567e-03, 6.0090615664224953e-04, -1.4451981922077688e-03, -3.8091520091889375e-03, -7.1232869145077329e-03, -7.6353934426476181e-03, -5.0745114934364786e-03, -4.0980868529369734e-04, 1.4380263865040966e-04, 7.4509484767750357e-05, -5.5254615659183678e-05, -6.9864704170758603e-05, -2.7991344230122702e-05, 1.6115083672104378e-07, 1.7298170817031292e-06, 6.6554168681219410e-07, 1.7033867510057128e-08, -4.1572768516570722e-08, -1.6175016336866647e-08, -8.3432149340298412e-10, 1.0179795568510727e-09, 4.8317026081327614e-10, -1.6915468808650913e-10, -1.8079337299437784e-09, -4.0215400847880842e-09, 7.2517293642297134e-09, 7.0638296411363048e-08, 1.8844359014068594e-07, -2.8271095870837704e-07, -2.6671604347062712e-06, -9.1470920436299190e-06, 1.2976147007659917e-05, 9.0528391689369996e-05, 4.8688492142011602e-04, 9.1417404194860563e-04, 1.1629235945519300e-03, 1.0777749108400927e-04, -5.2945661438067500e-05, -5.2380103930144747e-05, -9.2285953276522066e-06, 2.2240223019848009e-06, 2.4494504514572385e-06, 5.4454735040187358e-07, -2.1185749235399370e-07, 9.8104991170990669e-07, -1.0151938247123725e-04, -3.4325590925145092e-04, 3.3527431334090128e-04, 1.7494784809051775e-03, 4.5322178788411204e-03, 5.0616505490416706e-03, 4.8874051665679791e-03, 3.7827186477351754e-03, 2.7227990165854567e-03, 1.8599378188636842e-03, 6.0008692721709098e-04, -1.4451468895156361e-03, -3.8091171545251920e-03, -7.1184643329264500e-03, -7.6461891355882137e-03, -5.0827368414882749e-03, -4.0937560629043075e-04, 1.4406670656183954e-04, 7.4736360027963250e-05, -5.5222295541389058e-05, -6.9920347348627760e-05, -2.8018114853098686e-05, 1.4663078913230759e-07, 1.7276296771772537e-06, 6.6536417640093042e-07, 1.7556352618742859e-08, -4.1383322461915439e-08, -1.6127775838501845e-08, -8.4225301520246109e-10, 1.0113604982647925e-09, 4.8134571766541689e-10, -1.6921757885982741e-10, -1.8083466608230471e-09, -4.0231372235640262e-09, 7.2488866945672262e-09, 7.0637747124171254e-08, 1.8845762873344329e-07, -2.8268302853217948e-07, -2.6671492827576982e-06, -9.1470159363927209e-06, 1.2974494985976416e-05, 9.0532278231488067e-05, 4.8688361109533430e-04, 9.1416306391568867e-04, 1.1629426652604400e-03, 1.0775896622958712e-04, -5.2932967618855593e-05, -5.2379776852053139e-05, -9.2497916547289866e-06, 2.2803402182037733e-06, 2.3316831253279539e-06, 7.7323408379913888e-07, -9.2903477647184041e-07, 2.6001495251207554e-06, -9.8314941293662489e-05, -3.4714923611308275e-04, 3.4074076416887230e-04, 1.7533679551189521e-03, 4.5345220268061329e-03, 5.0627352265088296e-03, 4.8884396833812661e-03, 3.7828972069760755e-03, 2.7224054372468817e-03, 1.8593969759440471e-03, 5.9956319963857044e-04, -1.4454593905631891e-03, -3.8089246202318815e-03, -7.1191541312723740e-03, -7.6506760261405649e-03, -5.0875292240542451e-03, -4.1163624129628417e-04, 1.4416378689794079e-04, 7.4520722258135147e-05, -5.5209710929271310e-05, -6.9975438478397464e-05, -2.8023659534397256e-05, 1.4143937213991896e-07, 1.7285619511137290e-06, 6.6590192015602689e-07, 1.7948744735033243e-08, -4.1319835498792278e-08, -1.6128031668486320e-08, -8.5724665137721506e-10, 1.0068401990094436e-09, 4.8059088028358076e-10, -1.6933881132454118e-10, -1.8102479924542473e-09, -4.0269216707255985e-09, 7.2482267175842229e-09, 7.0649567100822892e-08, 1.8848569194146426e-07, -2.8265680023633135e-07, -2.6669230447358649e-06, -9.1475915402433827e-06, 1.2978906510019173e-05, 9.0513775255931410e-05, 4.8689289904561242e-04, 9.1419070751895071e-04, 1.1628970363089296e-03, 1.0780724416709552e-04, -5.2966662242476779e-05, -5.2374461287370278e-05, -9.2096874882625392e-06, 2.1673296814778316e-06, 2.5734492342462285e-06, 3.0071997568492659e-07, 5.6345883005714734e-07, -7.9435147171211945e-07, -9.9087652749832683e-05, -3.4561364980989701e-04, 3.3911103899865322e-04, 1.7502905446973274e-03, 4.5349654408832927e-03, 5.0620091319851911e-03, 4.8881691993014394e-03, 3.7828739376216947e-03, 2.7227428029158694e-03, 1.8595769048973324e-03, 5.9986093791789333e-04, -1.4454862407483962e-03, -3.8090106268421596e-03, -7.1200895300277903e-03, -7.6481569262677514e-03, -5.0844647749729447e-03, -4.1201697346288568e-04, 1.4434560895174717e-04, 7.4427334231422091e-05, -5.5227584262639793e-05, -6.9999513073848115e-05, -2.8031700798679033e-05, 1.4271346143954482e-07, 1.7297708403156875e-06, 6.6672857153095614e-07, 1.8191648463035089e-08, -4.1270207671567486e-08, -1.6148972078184449e-08, -8.7074562217146455e-10, 1.0023413066483642e-09, 4.8024644165394446e-10, -1.7095331163315911e-10, -1.8150122408440352e-09, -4.0300329074306057e-09, 7.2618731688356810e-09, 7.0711666206032067e-08, 1.8860334053900690e-07, -2.8248425664289113e-07, -2.6679691729114601e-06, -9.1462729667683126e-06, 1.2963108517329797e-05, 9.0564861432430077e-05, 4.8685989460935743e-04, 9.1412702536243604e-04, 1.1630158409459766e-03, 1.0768807884555800e-04, -5.2878177501394785e-05, -5.2401393010523527e-05, -9.2841247889010291e-06, 2.3944377774928229e-06, 2.0812074334156279e-06, 1.2749330551321825e-06, -2.5333527091759775e-06, 6.3132498862522937e-06, -1.0015288615124136e-04, -3.4415456741514764e-04, 3.3726784911753305e-04, 1.7499877970554418e-03, 4.5335348335101486e-03, 5.0625236896736673e-03, 4.8873375625398240e-03, 3.7833088871823441e-03, 2.7225615850849337e-03, 1.8599999205380045e-03, 5.9980868025039449e-04, -1.4453706154092735e-03, -3.8089125863663385e-03, -7.1206555194132486e-03, -7.6457166979607520e-03, -5.0849416598960882e-03, -4.1006103145513930e-04, 1.4372420240840749e-04, 7.4678000191651496e-05, -5.5311357672742064e-05, -6.9967232820373253e-05, -2.8041584866063862e-05, 1.3648750150320932e-07, 1.7278235520186192e-06, 6.6719841473139401e-07, 1.8675232172163121e-08, -4.1130194605471394e-08, -1.6143633563221781e-08, -8.9020857139520803e-10, 9.9379118022118688e-10, 4.7778691106856262e-10, -1.7525992870783425e-10, -1.8191569873610624e-09, -4.0144384705288663e-09, 7.3417459416736741e-09, 7.0859142592657781e-08, 1.8865535208654159e-07, -2.8344790123293207e-07, -2.6667507290644490e-06, -9.1537335411615950e-06, 1.3013413223138086e-05, 9.0420477708386390e-05, 4.8698125286247840e-04, 9.1427750436809223e-04, 1.1627178302205834e-03, 1.0798670571356616e-04, -5.3112382633420732e-05, -5.2319598271417540e-05, -9.1595773763371822e-06, 1.9401479117013044e-06, 3.0842470760106787e-06, -7.2026191312276125e-07, 3.8742382291703965e-06, -8.5335581996937374e-06, -9.9061893290182119e-05, -3.4604093891707900e-04, 3.3910734610272624e-04, 1.7487096708688980e-03, 4.5356877394872770e-03, 5.0607038038180197e-03, 4.8889450522465999e-03, 3.7823490120149350e-03, 2.7233479817250147e-03, 1.8593741317832028e-03, 6.0016052158570754e-04, -1.4457367714600412e-03, -3.8093962986628545e-03, -7.1188390090573001e-03, -7.6494198555092955e-03, -5.0813381126995627e-03, -4.1374833692651964e-04, 1.4534745499146973e-04, 7.4243074319583216e-05, -5.5021150941610651e-05, -7.0115907495825044e-05, -2.8092663866382305e-05, 1.2432431291755936e-07, 1.7255884148592376e-06, 6.6694093023388480e-07, 1.8907815124843356e-08, -4.0827795691361656e-08, -1.6106619842059296e-08, -9.0647295188973648e-10, 9.7608140619848561e-10, 4.7038607088752647e-10, -1.8085936903926986e-10, -1.8135269868533839e-09, -3.9473883230850808e-09, 7.5354406362345598e-09, 7.1196409990315610e-08, 1.8846124268300987e-07, -2.8354573736988332e-07, -2.6814860514952864e-06, -9.1401897086717154e-06, 1.2888330931451746e-05, 9.0954274009686858e-05, 4.8655844265550079e-04, 9.1385454748985182e-04, 1.1634145637487072e-03, 1.0722028135619560e-04, -5.2504726548545377e-05, -5.2578081014630074e-05, -9.3870788446855785e-06, 2.8216499798451936e-06, 1.0549914801131870e-06, 3.3583184455001844e-06, -9.3143919298443317e-06, 2.2397640283649406e-05, -1.0054103410966621e-04, -3.4289021718596603e-04, 3.3680244920680308e-04, 1.7544080986025014e-03, 4.5301455666504533e-03, 5.0651267019316054e-03, 4.8854450485851034e-03, 3.7848755013249122e-03, 2.7217792817349970e-03, 1.8606942891546373e-03, 5.9853595155639344e-04, -1.4453556442449549e-03, -3.8086843363264351e-03, -7.1214113031905588e-03, -7.6421702227111900e-03, -5.0922086347250537e-03, -4.0568787189160883e-04, 1.4085748456836003e-04, 7.5436795717314102e-05, -5.5583016346942246e-05, -6.9589441376863146e-05, -2.8043948613298294e-05, 1.0835406700762586e-07, 1.6959102782089329e-06, 6.6133649070251551e-07, 1.9325334981205259e-08, -4.0048585326821727e-08, -1.5834056465405429e-08, -9.3281789093741484e-10, 9.3687279695232537e-10, 4.5054490822556744e-10, -1.8328699094485174e-10, -1.7618267919740490e-09, -3.7407160634838049e-09, 7.8958156502715584e-09, 7.0740239669167017e-08, 1.8641538653053923e-07, -2.9487901642298499e-07, -2.6542593306558591e-06, -9.1950707875375977e-06, 1.3275642584969593e-05, 8.9740285356948145e-05, 4.8769409593412555e-04, 9.1475253576655353e-04, 1.1614116821555202e-03, 1.0912760947863562e-04, -5.3955146617059701e-05, -5.1778829869206493e-05, -9.0680713248718868e-06, 1.0405825546988198e-06, 5.1061622299533767e-06, -4.9018883144409664e-06, 1.7666109866723741e-05, -4.1693930006251462e-05, -9.4868988340690769e-05, -3.5323808514839140e-04, 3.4586292036036643e-04, 1.7412825657205271e-03, 4.5428072711770264e-03, 5.0523609545010187e-03, 4.8930166274297783e-03, 3.7796114851443505e-03, 2.7263214052424163e-03, 1.8570257312683081e-03, 6.0043129119222508e-04, -1.4491593533762955e-03, -3.8088934999267847e-03, -7.1124063083451636e-03, -7.6545409953639272e-03, -5.0653769928661468e-03, -4.3067412438845096e-04, 1.5042400327130309e-04, 7.0681075189302087e-05, -5.3192220861837908e-05, -7.0032018218552531e-05, -2.7800284381699340e-05, 1.3590297560018736e-07, 1.7101919955596237e-06, 6.4765850250806496e-07, 1.7054108068608170e-08, -3.9063348935815343e-08, -1.5288903201172619e-08, -8.2826272243216072e-10, 8.8177245607706962e-10, 4.2112283659431846e-10, -1.7274590234010821e-10, -1.6438563866789761e-09, -3.4616455135846012e-09, 7.7990162619288265e-09, 6.9464254577234386e-08, 1.7760753791364904e-07, -2.8569497313027446e-07, -2.7334467210023686e-06, -8.9755392554280732e-06, 1.2296909550989828e-05, 9.3160435959255996e-05, 4.8469672464004042e-04, 9.1193112161573294e-04, 1.1659544481915649e-03, 1.0431475811222392e-04, -4.9681068181325373e-05, -5.3526815969653745e-05, -9.4166915178359872e-06, 4.3154571613651486e-06, -3.0747399734254617e-06, 1.1678780642817091e-05, -3.6952941302588645e-05, 8.9917578585715918e-05, -1.0740087075551333e-04, -3.2893630238338796e-04, 3.2786777938863563e-04, 1.7743991278703713e-03, 4.5103042258503399e-03, 5.0795342224118079e-03, 4.8719970221561288e-03, 3.7919266233653673e-03, 2.7165000555247273e-03, 1.8641101021332138e-03, 5.9038753856302875e-04, -1.4410480274043118e-03, -3.8076522983593979e-03, -7.1214064414956806e-03, -7.6222752516929186e-03, -5.1222733469779031e-03, -3.8034074917351886e-04, 1.2403941229328358e-04, 7.5066324635847246e-05, -5.8995756278481978e-05, -6.5597930284408442e-05, -2.6474025089435918e-05, 3.6848371046837485e-07, 1.5440069308891554e-06, 6.1055484311137924e-07, 1.3346170790778022e-08, -3.4143035467550922e-08, -1.3333455982865970e-08, -6.0880276536202926e-10, 7.7151050547903232e-10, 3.5596106315630930e-10, -1.4505524457638936e-10, -1.3419216676714089e-09, -3.0979620748870697e-09, 7.4073419546429519e-09, 5.7290065779680411e-08, 1.6259882841062159e-07, -3.4710096741182852e-07, -2.3707588349432929e-06, -9.0468365317327673e-06, 1.4635725631151301e-05, 8.3722500537400911e-05, 4.9379118310778950e-04, 9.2002019084076790e-04, 1.1540898791582612e-03, 1.1664872058909058e-04, -5.9972358886394277e-05, -4.7545540575327522e-05, -8.9251853082985590e-06, -2.1202532947376014e-06, 1.2679922740580375e-05, -2.1250008265598710e-05, 7.2010734309326408e-05, -1.7614449447499961e-04, -1.1068034383938648e-04, -3.9073848338950275e-04, 3.7626549131983999e-04, 1.6662159877287243e-03, 4.6306069329214153e-03, 4.9994653104747308e-03, 4.9350013925528857e-03, 3.7446725843933888e-03, 2.7392389818322732e-03, 1.8368762387065106e-03, 6.2324519111407739e-04, -1.4636830951247903e-03, -3.7731386710297687e-03, -7.1167569279185529e-03, -7.7355519931977335e-03, -4.9728207439724021e-03, -4.8666898352346471e-04, 1.9893754177496581e-04, 4.0695324678200032e-05, -4.7484679521050250e-05, -7.2617769979651422e-05, -2.5257994759985870e-05, -1.2771079665883011e-08, 1.9420523367290831e-06, 5.2133565106675915e-07, 1.8588557906105041e-08, -3.7458098001087910e-08, -9.9498794403960313e-09, -2.3397319390099092e-10, 8.3565175872796216e-10, 2.5756974123805534e-10, 4.5635876533885872e-12, -1.3929690146442580e-09, -1.9991145846739219e-09, 3.6158634181444882e-10, 6.2138905302394783e-08, 8.8262581897296057e-08, -1.3989886954671334e-07, -3.1179880609463924e-06, -6.6164227967681691e-06, 8.4275341258267984e-06, 1.0307337310264179e-04, 4.7056026543537764e-04, 8.9795349374796661e-04, 1.2086559925898728e-03, 6.6393598091141811e-05, -3.0265891592041322e-05, -6.4439468082382219e-05, -4.8777010709386351e-06, 1.3311976836486925e-05, -2.8339554628014144e-05, 6.2762780144921815e-05, -2.0851532677708482e-04, 5.1819965423214763e-04, -4.2225731953240921e-05, -1.7636481026772060e-04, 1.1776407603775185e-04, 1.8705864039190818e-03, 4.4470258305362225e-03, 5.3630851077096494e-03, 4.7446796140210822e-03, 3.8305342796968768e-03, 2.5856145169031904e-03, 1.9338813533884558e-03, 5.5905726402305858e-04, -1.2394148647203243e-03, -3.7526487329713025e-03, -7.2406732941953759e-03, -7.9372880489841941e-03, -5.3936241287057853e-03, 1.8682397735700332e-04, 1.2793230546069811e-04, 2.3693547992880787e-05, -1.1463092121747861e-04, -6.4004538846768792e-05, -2.5855343736253080e-05, 2.6680445597939944e-06, 9.7302144055655708e-07, 3.5352834095517531e-07, -8.5077697559767787e-08, -2.5450759854640792e-08, -6.8338221336937312e-09, 1.5363787300893975e-09, 5.8720922086396773e-10, 2.4313559711830902e-10, -1.2999298099264974e-10, -3.2567125970821287e-11, -5.2378896116662922e-09, 5.7339351706243774e-09, -1.1102785067875322e-09, 2.6063236150521499e-07, -2.9544237594209444e-07, 3.0187515398567995e-07, -9.9675371761275488e-06, 2.7428691731153120e-05, 3.3111483455963578e-05, 4.6551141644737089e-04, 1.0343457385344622e-03, 1.1460207376167708e-03, 1.5377057289695266e-04, -1.9208945812818632e-04, 1.6198415982306581e-05, -1.1380118896584055e-05, -1.7033874671140703e-05, 6.9741325131505820e-05, -1.4408832306401337e-04, 4.6675394397443755e-04, -1.1518024051828391e-03, -9.5173102142787525e-04, -4.2269377234769554e-04, 4.8528943975206145e-04, 3.8836624448579252e-04, 6.1491157785392905e-03, 4.3450126766366136e-03, 5.4165308057472217e-03, 3.4244609428828281e-03, 2.6462909542295625e-03, 1.7991503966042072e-03, 9.5903846247751695e-04, -1.8400926425380243e-03, -2.6229027365621410e-03, -8.0679510518825472e-03, -8.0635628703299468e-03, -5.9761233575911614e-03, 1.5458858271651282e-03, -3.6626018802878805e-04, 5.3277918331252200e-05, -1.1413822220231125e-04, -5.8010109051304332e-05, -3.0086329559646089e-05, 5.3959301126940565e-06, 3.4711426800810284e-07, 1.8183879635987488e-07, -1.0607901852776637e-07, -1.9700875793845097e-08, -3.2125983272549789e-09, 1.9706066931241342e-09, 4.5506539901878258e-10, 1.4342494910907916e-10, -1.4770446557467107e-11, 8.2606182419571461e-11, -3.9930456077329635e-09, -2.9812380374690667e-10, -5.0436943694904396e-09, 2.0344142026497598e-07, -9.3807751792699713e-09, 9.8505029639693511e-07, -9.3311249317830542e-06, 3.1131860570759507e-05, 4.5553161412471892e-05, 3.5999348173212903e-04, 6.0381926393730085e-04, 2.1112475764835680e-03, -7.5118894968759448e-04, 2.2193834047884572e-04, -1.3221630126353029e-04, 4.4064040450901652e-05, 2.6066364004743818e-05, -8.7679240724781483e-05, 1.9355228760749646e-04, -6.3787076254076536e-04, 1.5242606654418114e-03}; static const casadi_real casadi_c3[129] = {-5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -4.3181818181818183e+00, -3.6363636363636367e+00, -2.9545454545454550e+00, -2.2727272727272734e+00, -1.5909090909090917e+00, -9.0909090909091006e-01, -2.2727272727272840e-01, 4.5454545454545325e-01, 1.1363636363636349e+00, 1.8181818181818166e+00, 2.4999999999999982e+00, 3.1818181818181799e+00, 3.8636363636363615e+00, 4.5454545454545432e+00, 5.2272727272727249e+00, 5.9090909090909065e+00, 6.5909090909090882e+00, 7.2727272727272698e+00, 7.9545454545454515e+00, 8.6363636363636331e+00, 9.3181818181818148e+00, 9.9999999999999964e+00, 1.0681818181818178e+01, 1.1363636363636358e+01, 1.2045454545454541e+01, 1.2727272727272727e+01, 1.3409090909090910e+01, 1.4090909090909093e+01, 1.4772727272727273e+01, 1.5454545454545455e+01, 1.6136363636363637e+01, 1.6818181818181820e+01, 1.7500000000000000e+01, 1.8181818181818180e+01, 1.8863636363636363e+01, 1.9545454545454547e+01, 2.0227272727272727e+01, 2.0909090909090907e+01, 2.1590909090909090e+01, 2.2272727272727273e+01, 2.2954545454545453e+01, 2.3636363636363633e+01, 2.4318181818181817e+01, 25., 2.5681818181818180e+01, 2.6363636363636360e+01, 2.7045454545454543e+01, 2.7727272727272727e+01, 2.8409090909090907e+01, 2.9090909090909086e+01, 2.9772727272727270e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -1.6934090909090913e+00, -1.3527272727272732e+00, -1.0120454545454551e+00, -6.7136363636363705e-01, -3.3068181818181897e-01, 9.9999999999988987e-03, 3.5068181818181721e-01, 6.9136363636363551e-01, 1.0320454545454534e+00, 1.3727272727272712e+00, 1.7134090909090895e+00, 2.0540909090909079e+00, 2.3947727272727253e+00, 2.7354545454545436e+00, 3.0761363636363619e+00, 3.4168181818181802e+00, 3.7574999999999985e+00, 4.0981818181818159e+00, 4.4388636363636342e+00, 4.7795454545454525e+00, 5.1202272727272700e+00, 5.4609090909090883e+00, 5.8015909090909066e+00, 6.1422727272727240e+00, 6.4829545454545432e+00, 6.8236363636363606e+00, 7.1643181818181780e+00, 7.5049999999999972e+00, 7.8456818181818146e+00, 8.1863636363636338e+00, 8.5270454545454513e+00, 8.8677272727272687e+00, 9.2084090909090932e+00, 9.5490909090909106e+00, 9.8897727272727280e+00, 1.0230454545454547e+01, 1.0571136363636365e+01, 1.0911818181818184e+01, 1.1252500000000001e+01, 1.1593181818181819e+01, 1.1933863636363638e+01, 1.2274545454545455e+01, 1.2615227272727275e+01, 1.2955909090909092e+01, 1.3296590909090909e+01, 1.3637272727272727e+01, 1.3977954545454546e+01, 1.4318636363636363e+01, 1.4659318181818183e+01, 15., 1.5340681818181817e+01, 1.5681363636363637e+01, 1.6022045454545456e+01, 1.6362727272727273e+01, 1.6703409090909091e+01, 1.7044090909090908e+01, 1.7384772727272725e+01, 1.7725454545454546e+01, 1.8066136363636364e+01, 1.8406818181818181e+01, 1.8747499999999999e+01, 1.9088181818181816e+01, 1.9428863636363634e+01, 1.9769545454545455e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01}; static const casadi_real casadi_c4[3685] = {-4.3481149326150765e-03, 3.2826553693962078e-03, -1.4653719157544411e-03, 5.0641450482318690e-04, -2.4388547439091121e-04, 1.2728171244537866e-04, -5.1875617296026633e-05, 3.8174660974051727e-05, -4.2811742473718162e-06, 1.7142908058501161e-05, 7.5942357970308627e-06, 1.3026417950316033e-05, 1.2692588272404659e-05, 1.3919307802943981e-05, 1.3283617747741200e-05, 1.5540086384525920e-05, 1.6173110796033341e-05, 1.3820096430902651e-05, 1.4892646407485555e-05, 1.4872482738959025e-05, 1.1252420010064712e-05, 1.3215714330327977e-05, 7.2489483812984701e-06, 1.3518330369104159e-05, 4.2757555471506503e-06, 5.7347852608011229e-06, 1.9987522898445853e-06, -3.7651518382531002e-06, -4.1142902936774917e-06, -7.8364716976364601e-06, -1.1224810687569808e-05, -1.3020157266105392e-05, -2.4837810245044445e-05, -2.2383216227717107e-05, -2.7530398531233624e-05, -3.6920170066401248e-05, -4.1160397825923400e-05, -4.3191520666313599e-05, -4.0121782491867042e-05, -6.4109710436147105e-05, -4.0957806529601237e-05, -8.6742201973008526e-05, -3.4836937160970249e-06, -1.4975310516406048e-04, 2.4653508088351428e-04, -5.7602100213513530e-04, 2.5460637237262329e-04, -1.5303963630668160e-04, 5.7808597879044354e-06, -9.7167463617861549e-05, -3.0524807380735708e-05, -9.6179618061034700e-05, 3.2827510693389517e-05, -1.5276392217807022e-04, -2.1359829643352590e-04, 1.7469536949497877e-03, -1.3459415449752366e-03, 5.5717601330545607e-04, -2.3751246978970676e-04, 6.1630756192929473e-05, -9.7050693979701397e-05, -2.7925600583894941e-05, -7.0689258436026567e-05, -5.9026807759583397e-05, -7.4202011489414230e-05, -7.6369099456085471e-05, -8.4613741239376178e-05, -8.9672835556522251e-05, -9.6040047445008353e-05, -1.0123956267669640e-04, -1.0448303549583440e-04, -1.0627952541352251e-04, -1.0531753684474635e-04, -1.0201751384774499e-04, -9.7419324703008903e-05, -9.1037370350148528e-05, -8.2580205022046715e-05, -7.0490794712788074e-05, -5.8944871181576541e-05, -3.9945773909172422e-05, -2.1986332731947777e-05, -2.0551877152955034e-06, 2.0782528608889739e-05, 4.6461540163487969e-05, 7.4709588879097455e-05, 1.0417635084439963e-04, 1.3618636119182986e-04, 1.7087771979944905e-04, 2.0593859734361480e-04, 2.4350139974484153e-04, 2.8038491274987032e-04, 3.1979465745075181e-04, 3.5858555284327964e-04, 3.9146186923912779e-04, 4.2859324056256087e-04, 4.4797383701097870e-04, 4.8617200064238197e-04, 4.8434772265784631e-04, 5.5435540287698121e-04, 4.6253032004815731e-04, 5.0195358316103278e-04, 4.5900188922598506e-04, 5.5576923750182139e-04, 4.9401416740808834e-04, 5.1568007595811927e-04, 4.9960736062813760e-04, 5.1122090530600350e-04, 5.5191462982037698e-04, 5.4409476699981973e-04, 1.4588776269756284e-03, -5.2159058239753227e-04, 4.2851482429908218e-04, -1.5496481132069168e-04, 8.6557922970283661e-05, -1.1485290892726888e-06, 4.9674569468785047e-05, 3.1206032126267561e-05, 4.7102579506699827e-05, 4.5954872654057483e-05, 5.3051475721011335e-05, 5.6055591456952159e-05, 6.1042875274048419e-05, 6.4985617234928142e-05, 6.9117588193568988e-05, 7.2663477882964692e-05, 7.5065164446320304e-05, 7.6215885296965213e-05, 7.5407909957782293e-05, 7.3164476355656871e-05, 6.9854315565394398e-05, 6.5280054164989360e-05, 5.9104493925616480e-05, 5.1321807007700254e-05, 4.2984100612705051e-05, 3.0425936839547502e-05, 1.7596962402013916e-05, 3.5646411775738795e-06, -1.2462088920105197e-05, -3.0034225617488197e-05, -4.9102136006836522e-05, -6.9272878456112102e-05, -9.1740027945489550e-05, -1.1572837475472969e-04, -1.3981600183143178e-04, -1.6546959316360993e-04, -1.9164101126278171e-04, -2.1853952287112510e-04, -2.4377462800484473e-04, -2.6715435922992914e-04, -2.9134677643464363e-04, -3.0799137862481257e-04, -3.2670651794877020e-04, -3.3151863756682165e-04, -3.4763919133402876e-04, -3.3569704912578269e-04, -3.5492937599842372e-04, -3.3224806903917742e-04, -3.4611631829448153e-04, -3.3637394454132802e-04, -3.4268318777536111e-04, -3.4180424993867503e-04, -3.3970778059770612e-04, -3.8018296656232992e-04, -3.6046739400583810e-04, -7.9349743644819420e-04, 3.0132537862922635e-04, -1.8370306945177193e-04, 1.0559702040369243e-04, -1.1770628611815735e-05, 3.7520136905633619e-05, 1.7415107634380367e-05, 3.2514629315033225e-05, 3.0159072232381623e-05, 3.6425464550690970e-05, 3.8408051988477951e-05, 4.2501087130549647e-05, 4.5617867670780243e-05, 4.9191945705618495e-05, 5.2425316297101399e-05, 5.5522763153879190e-05, 5.7731496585975567e-05, 5.9051184023030390e-05, 5.9008729781435953e-05, 5.7906690040441383e-05, 5.6077001153471279e-05, 5.3500009836011941e-05, 4.9547337474264291e-05, 4.4938801010935975e-05, 3.9390489351608104e-05, 3.1441588919600694e-05, 2.2866655337142050e-05, 1.3801173043025139e-05, 3.2350266927355653e-06, -8.5637489612294670e-06, -2.1323502951038631e-05, -3.4880661858929796e-05, -5.0195686937780370e-05, -6.6368316270208616e-05, -8.2935195044195331e-05, -1.0038591331226754e-04, -1.1842926515590740e-04, -1.3713430945515998e-04, -1.5428743061745437e-04, -1.7114164693968204e-04, -1.8657361966075564e-04, -2.0033768708887373e-04, -2.0971464034823251e-04, -2.2026056798824661e-04, -2.2032015078471412e-04, -2.2805736827506001e-04, -2.1849561972219628e-04, -2.2523001908093809e-04, -2.1847079694283650e-04, -2.2275537317045790e-04, -2.2194123343698829e-04, -2.2249770694308946e-04, -2.3635879783510255e-04, -2.3215277338991397e-04, -4.4520403645267881e-04, -4.5429628703080871e-04, -1.4428552548006535e-04, 6.7695222734928152e-05, -8.0810823027182600e-05, -3.1018307370944513e-05, -6.1931901336605491e-05, -5.8022305872901248e-05, -7.1415753935405446e-05, -7.5782290579529121e-05, -8.4238425595489774e-05, -9.0239482875403496e-05, -9.7049320255015309e-05, -1.0307717915867057e-04, -1.0896676373192693e-04, -1.1414881276809036e-04, -1.1836212213881675e-04, -1.2074328136977078e-04, -1.2088648770691365e-04, -1.1832616135477175e-04, -1.1334491550008333e-04, -1.0640453742277386e-04, -9.7387939614678593e-05, -8.5716152346173441e-05, -7.1815847035232999e-05, -5.5115995762161640e-05, -3.4413043127796972e-05, -1.1366083031108531e-05, 1.3550443396216638e-05, 4.1232266638512038e-05, 7.1544345343371729e-05, 1.0411552235622262e-04, 1.3898160950401306e-04, 1.7684412638009628e-04, 2.1677440313623564e-04, 2.5792852248190251e-04, 3.0039452626849650e-04, 3.4376808674761727e-04, 3.8724906699177941e-04, 4.2852721160241414e-04, 4.6769598470359358e-04, 5.0323102627913147e-04, 5.3322673871459420e-04, 5.5578704917388921e-04, 5.7301658883625317e-04, 5.7969910370842676e-04, 5.8342236061990904e-04, 5.7701988074269212e-04, 5.7774830770795926e-04, 5.7452251529828413e-04, 5.7581295098577123e-04, 5.7431709460870062e-04, 5.7088950695359519e-04, 5.7257703626221318e-04, 5.7831566151482494e-04, 7.5710154584909123e-04, 4.4235744866439469e-04, -4.2033384202223335e-05, -1.3289036009747277e-04, -4.9837060110596680e-05, -9.6157281634394118e-05, -9.9120746194921242e-05, -1.1940327818559665e-04, -1.3017266007006069e-04, -1.4468670512261805e-04, -1.5617611363926212e-04, -1.6805508997446567e-04, -1.7871869030340951e-04, -1.8914785054179040e-04, -1.9873302275761132e-04, -2.0750881740016699e-04, -2.1522144578346031e-04, -2.1996434832623202e-04, -2.2205736376777058e-04, -2.1986200078417950e-04, -2.1450236304439152e-04, -2.0696263065292028e-04, -1.9712900264431260e-04, -1.8322223441305518e-04, -1.6666577720244116e-04, -1.4838584179661246e-04, -1.2148288418806913e-04, -9.3713226813299522e-05, -6.4105679919927716e-05, -3.0000419250234001e-05, 7.5167331867256881e-06, 4.8101454693950940e-05, 9.0827813007850200e-05, 1.3895566007390142e-04, 1.8979655097677017e-04, 2.4105687728936259e-04, 2.9483325706310126e-04, 3.4896840293759113e-04, 4.0460911185942472e-04, 4.5479727327284863e-04, 5.0157574049015247e-04, 5.4544248014529173e-04, 5.7706224918550181e-04, 6.0073654529300274e-04, 6.1382865199260950e-04, 6.1665476746920744e-04, 6.0964082373687889e-04, 5.9410834795033118e-04, 5.8751106688940263e-04, 5.8429587667953309e-04, 5.8206155512099261e-04, 5.8275624855097519e-04, 5.8181185019210574e-04, 5.9913777682446545e-04, 6.6163037120342549e-04, 1.2669016767726943e-03, 2.1370357520175895e-03, -4.7963444724154463e-05, 5.1137039313552124e-05, 5.0664364904121420e-05, 8.3602895740610486e-05, 9.1123559556021555e-05, 1.0744625363453240e-04, 1.2054782781396010e-04, 1.3637635063185917e-04, 1.5119383754918538e-04, 1.6653243807443138e-04, 1.8164397799161867e-04, 1.9680414509023678e-04, 2.1119681093880252e-04, 2.2409549380380742e-04, 2.3370038680384578e-04, 2.3739581728214609e-04, 2.3350810627218582e-04, 2.2049435728496020e-04, 1.9905017009100995e-04, 1.7072778020946200e-04, 1.3503112464832365e-04, 9.0295013674322744e-05, 3.7272377467242879e-05, -2.6076172149908788e-05, -1.0371104486066318e-04, -1.8992815242513394e-04, -2.8296516253969312e-04, -3.8541906850420721e-04, -4.9650676505615804e-04, -6.1509233916936384e-04, -7.4185651618222798e-04, -8.7836523128626692e-04, -1.0217508016467300e-03, -1.1696027822811275e-03, -1.3225298259961632e-03, -1.4795882838577190e-03, -1.6376002175811089e-03, -1.7905402269051199e-03, -1.9378375664191733e-03, -2.0766141969783825e-03, -2.1974088006987552e-03, -2.3005413352000653e-03, -2.3823255286351333e-03, -2.4368937159492399e-03, -2.4604027740106685e-03, -2.4649457443045933e-03, -2.4727280030246365e-03, -2.4817422161854744e-03, -2.4856733250298996e-03, -2.4841985847251363e-03, -2.4771730827504237e-03, -2.4606008032976648e-03, -2.4412223222042700e-03, -2.4119926855057164e-03, -9.4052035260145522e-04, 2.6552534909284661e-04, 2.5886275438003880e-04, 3.2427646309222177e-04, 3.9876865245590861e-04, 4.6031675748007747e-04, 5.1650482568597368e-04, 5.7227804754815016e-04, 6.2380439240098187e-04, 6.7048747951002109e-04, 7.1184258615081437e-04, 7.4885861399617490e-04, 7.8172211518813192e-04, 8.0947408154749198e-04, 8.3092626457890659e-04, 8.4443545670362732e-04, 8.4201553828814474e-04, 8.2459393851750523e-04, 7.8540266475676107e-04, 7.2868425530203326e-04, 6.5922108667194543e-04, 5.7695700338832381e-04, 4.7402358460192293e-04, 3.5404661629277051e-04, 2.1796159797478690e-04, 3.9482865949853896e-05, -1.4921856633350744e-04, -3.4995579825738282e-04, -5.7193675423169305e-04, -8.0855633567445545e-04, -1.0601515530477834e-03, -1.3271906578849954e-03, -1.6195550733028585e-03, -1.9243145226023259e-03, -2.2324168660885005e-03, -2.5507184043461403e-03, -2.8686733656368771e-03, -3.1886539794169014e-03, -3.4839342776463236e-03, -3.7645927971472620e-03, -4.0248766062785934e-03, -4.2236213457479480e-03, -4.3746165540503243e-03, -4.4696573397557740e-03, -4.4897800113916642e-03, -4.4463643933319447e-03, -4.3608841759955816e-03, -4.3530327128628726e-03, -4.3615789847339589e-03, -4.3677583358007893e-03, -4.3694542090107272e-03, -4.3531816796593611e-03, -4.3675817012495469e-03, -4.4726856070451820e-03, -5.9531827699926820e-03, -8.3108141146358006e-03, 3.3951790422913570e-04, 3.6742492684965853e-04, 4.2368317447147134e-04, 5.3134761456676265e-04, 5.9978926029515163e-04, 6.5732308574222541e-04, 7.0069978476597176e-04, 7.3163055987143961e-04, 7.4492551628128727e-04, 7.4289384433362526e-04, 7.2789548572691626e-04, 7.0067249377651561e-04, 6.6375422981434715e-04, 6.2028753259157215e-04, 5.7441023821420967e-04, 5.3340953039911557e-04, 5.0371391730540810e-04, 4.8843585409847484e-04, 4.8596662731914889e-04, 4.9802569981104508e-04, 5.2853388247091695e-04, 5.7880585793771214e-04, 6.3932514440278101e-04, 7.1373900047781019e-04, 8.0826814359375582e-04, 9.2100184008909319e-04, 1.0467009544639500e-03, 1.1902600287819129e-03, 1.3649177363259796e-03, 1.5588577292005787e-03, 1.7497519703867648e-03, 1.9588227164131916e-03, 2.1855694215890537e-03, 2.4236904647224750e-03, 2.6827905793291307e-03, 2.9692484486199475e-03, 3.2824601633507436e-03, 3.6003926161005118e-03, 3.9191495398321341e-03, 4.2385230361009427e-03, 4.5880611590303488e-03, 4.9445455965088023e-03, 5.3072794200922438e-03, 5.6912495706967561e-03, 6.0486092586190185e-03, 6.3392448433363530e-03, 6.3955340343532022e-03, 6.4017374298937432e-03, 6.3960543987845730e-03, 6.3936210132752372e-03, 6.3935377565280324e-03, 6.3901379797694571e-03, 6.2506008596384666e-03, 5.3984919493905159e-03, 1.7691820439646663e-03, 1.4355906555644886e-04, 1.6744668169262154e-04, 2.5498223337557229e-04, 3.8064696751383999e-04, 4.5952849124367839e-04, 5.1614893593480288e-04, 5.5683518465740427e-04, 5.8511882294577829e-04, 5.9843763330486889e-04, 6.0040576692373115e-04, 5.9654248485973768e-04, 5.8805069261060744e-04, 5.8153605212572096e-04, 5.8557574365183246e-04, 6.0914554733896079e-04, 6.8075384111870862e-04, 7.9916784809100014e-04, 9.8525008655115515e-04, 1.2252159884937920e-03, 1.5197323337283568e-03, 1.8769143394903147e-03, 2.3188057563497330e-03, 2.8145848640917306e-03, 3.3673644069128830e-03, 4.0651091094447075e-03, 4.8205181666773275e-03, 5.6213892931891579e-03, 6.4852298019122886e-03, 7.4322322857209369e-03, 8.4457213019672184e-03, 9.4585215888070215e-03, 1.0551428256025217e-02, 1.1689986749354883e-02, 1.2838495947950994e-02, 1.4036260441426793e-02, 1.5265355340220742e-02, 1.6546645140748190e-02, 1.7775015012471050e-02, 1.8967187410928552e-02, 2.0109269592480196e-02, 2.1175391110990205e-02, 2.2165835827803744e-02, 2.3047354898242264e-02, 2.3832786937473142e-02, 2.4430521689139770e-02, 2.4844317336882138e-02, 2.4921712025535274e-02, 2.4964349753353592e-02, 2.4968773364352582e-02, 2.4964675567232392e-02, 2.4951298758872503e-02, 2.4944452313343607e-02, 2.5089023719396648e-02, 2.6300009813947756e-02, 3.0092701003727421e-02, -2.9678112162054814e-04, -3.3333217750886393e-04, -1.4456156591586417e-05, 3.2017881296219318e-04, 5.6587876903541751e-04, 8.2290462602246060e-04, 1.0998716469025737e-03, 1.4053725569675331e-03, 1.7586246896353630e-03, 2.1544209845824475e-03, 2.5951685710431105e-03, 3.0977162685503074e-03, 3.6496408895522262e-03, 4.2543988874610347e-03, 4.9270984721844734e-03, 5.6488363829791180e-03, 6.3869243933350021e-03, 7.1361011993258672e-03, 7.8949251745862453e-03, 8.6859320021000393e-03, 9.5175884247368850e-03, 1.0381690238635367e-02, 1.1281670456444383e-02, 1.2226995171410307e-02, 1.3290287496962400e-02, 1.4412829917972297e-02, 1.5562313668303955e-02, 1.6647712921653200e-02, 1.7746658974550571e-02, 1.8859317765751137e-02, 1.9923854796915164e-02, 2.0962751346206496e-02, 2.1967507262434439e-02, 2.2912139605086770e-02, 2.3794520928205498e-02, 2.4600775803132344e-02, 2.5333879948959817e-02, 2.6015590975204755e-02, 2.6628932836418123e-02, 2.7109204278055646e-02, 2.7463897806392593e-02, 2.7728994037467702e-02, 2.7886512318520643e-02, 2.7882931650239653e-02, 2.7742379158656919e-02, 2.7576011698389871e-02, 2.7599597896512160e-02, 2.7673269970635461e-02, 2.7702673504046510e-02, 2.7705467414420273e-02, 2.7681180104864742e-02, 2.7679021029462611e-02, 2.7808158299936436e-02, 2.9423122530617407e-02, 3.2530837705052884e-02, -1.0482227272608905e-03, -3.6993963578985361e-04, 4.3999304711051825e-04, 1.2694352975003310e-03, 1.9383466057630670e-03, 2.6771064389444991e-03, 3.4962664450570047e-03, 4.3842585586641690e-03, 5.3913132096416148e-03, 6.4895423285664840e-03, 7.6761840397758553e-03, 8.9922376053277672e-03, 1.0386687272508237e-02, 1.1849924188767107e-02, 1.3413816288807941e-02, 1.4975759281798791e-02, 1.6490887384332187e-02, 1.7899357996053099e-02, 1.9220242759569330e-02, 2.0491496343878431e-02, 2.1709680987592302e-02, 2.2781132865791212e-02, 2.3793095236424804e-02, 2.4756211678616254e-02, 2.5625238150952648e-02, 2.6480283978862075e-02, 2.7307634023298492e-02, 2.7842551005539583e-02, 2.8264240179972408e-02, 2.8572675878448278e-02, 2.8772340580292433e-02, 2.8725172139325780e-02, 2.8490367007929659e-02, 2.8083931740986390e-02, 2.7403708200975568e-02, 2.6525890789049517e-02, 2.5335749885148195e-02, 2.4153258458972496e-02, 2.2841115795039779e-02, 2.1367321395220157e-02, 1.9788854695274596e-02, 1.8214010460650715e-02, 1.6616152425437736e-02, 1.4816446567304811e-02, 1.3074628726685383e-02, 1.1619299728700544e-02, 1.1506865930547214e-02, 1.1579139255141979e-02, 1.1646417282347554e-02, 1.1655782962182420e-02, 1.1644255350948124e-02, 1.1623176970189220e-02, 1.1571248841906065e-02, 1.1586800855639706e-02, 9.3862415046743475e-03, 1.1348658248065335e-03, 2.3065402568100387e-03, 3.5188123728727202e-03, 5.1746042572993842e-03, 6.4988173721769165e-03, 7.9425110262543869e-03, 9.4402383656135604e-03, 1.0961145025958539e-02, 1.2485395083221097e-02, 1.4000690100110003e-02, 1.5516268368220475e-02, 1.7049443555126338e-02, 1.8539616665285245e-02, 1.9991086503088673e-02, 2.1416559760047540e-02, 2.2790828943643517e-02, 2.4148716890812195e-02, 2.5473347566372546e-02, 2.6711039363928997e-02, 2.7838002584170497e-02, 2.8810805584106182e-02, 2.9491909896447052e-02, 2.9986866292762107e-02, 3.0287058847666998e-02, 3.0243637507518281e-02, 3.0023801783680068e-02, 2.9684363523358820e-02, 2.9187374883879125e-02, 2.8584645773345546e-02, 2.7863830772895448e-02, 2.7026655146233300e-02, 2.5968269546767050e-02, 2.4698741992509196e-02, 2.3142272877489670e-02, 2.1331834148139758e-02, 1.9384727404638813e-02, 1.7247380057414025e-02, 1.4868503976976921e-02, 1.2352678719208185e-02, 9.7313976067773672e-03, 7.1613371632482381e-03, 4.6022171337313650e-03, 2.0436325578929021e-03, -8.6056036836941463e-04, -3.8687398574760168e-03, -6.5573210033765955e-03, -6.8675270306024633e-03, -6.8065861578781445e-03, -6.7245480028902127e-03, -6.7033102899700797e-03, -6.7019597162460975e-03, -6.7183738974405105e-03, -6.7661209895384100e-03, -7.4593462597618287e-03, -8.0664223270727475e-03, 6.7779832735517815e-03, 7.7404182022869084e-03, 9.3760874706854524e-03, 1.1788163252234526e-02, 1.3717493447520674e-02, 1.5704842061685931e-02, 1.7634004612959463e-02, 1.9473189093855654e-02, 2.1069794941639054e-02, 2.2470253422310557e-02, 2.3710785730209294e-02, 2.4751139631513562e-02, 2.5556399451104272e-02, 2.6166736953189926e-02, 2.6514088623273160e-02, 2.6760104361144760e-02, 2.7041206999808221e-02, 2.7459345407220156e-02, 2.7844507212636566e-02, 2.8102359589135192e-02, 2.8179282053789667e-02, 2.7971152541218333e-02, 2.7515662195428739e-02, 2.6770524312425950e-02, 2.5517320343191194e-02, 2.3948679403929335e-02, 2.2115493741357656e-02, 2.0516955656484592e-02, 1.8887433685130336e-02, 1.7255830247404208e-02, 1.5531019006356672e-02, 1.3844714415651604e-02, 1.2074057124575849e-02, 9.9691901834896568e-03, 7.8498645129529976e-03, 5.8364028760974074e-03, 4.0649006138848975e-03, 1.6636123209872178e-03, -9.3531082574738189e-04, -3.4321432663490109e-03, -5.9263652492074215e-03, -8.4366733049523052e-03, -1.1110192836331037e-02, -1.4144835514913343e-02, -1.7363394077881109e-02, -2.0664465528010947e-02, -2.0914229116151040e-02, -2.0924836019497448e-02, -2.0834775719487594e-02, -2.0824128406534428e-02, -2.0804817378450011e-02, -2.0801348437871417e-02, -2.0762550759176976e-02, -2.0863236356235548e-02, -2.0546912358625935e-02, 1.2885131961264475e-02, 1.4394358558445992e-02, 1.5922818148496300e-02, 1.8321979833664421e-02, 2.0029055276785980e-02, 2.1568011199528919e-02, 2.2945103147574447e-02, 2.4181556676898010e-02, 2.5153572295824406e-02, 2.5939419445859292e-02, 2.6575569478791222e-02, 2.7022847257425445e-02, 2.7302627482622674e-02, 2.7412112990321674e-02, 2.7225795975603664e-02, 2.6822458117041620e-02, 2.6278395593997916e-02, 2.5626859185380921e-02, 2.4823556519492945e-02, 2.3916580253401501e-02, 2.2937561502314116e-02, 2.1994565324004775e-02, 2.0931711572416078e-02, 1.9674945156351542e-02, 1.8066806633009747e-02, 1.6229994965170774e-02, 1.4119794103887695e-02, 1.1891827131992716e-02, 9.6338321988450049e-03, 7.3912408433650101e-03, 5.0048925092223695e-03, 2.7407473889523859e-03, 5.1345998289034633e-04, -1.8932857352523258e-03, -4.1157872673643903e-03, -6.2004186193071464e-03, -7.8855670693896984e-03, -1.0052103487607197e-02, -1.2253294796667785e-02, -1.4762224181718561e-02, -1.7420661383222666e-02, -2.0469659213857974e-02, -2.3540693767380966e-02, -2.6500297632864933e-02, -2.8832974499977848e-02, -3.0339811289968578e-02, -3.0409339386106744e-02, -3.0392018774555447e-02, -3.0364657873285017e-02, -3.0346507198855094e-02, -3.0353432657362928e-02, -3.0286919469959941e-02, -3.0384525990646290e-02, -3.0276371535677742e-02, -2.9910026777294624e-02, 1.9909867497215773e-02, 2.0168269157282401e-02, 2.1323855803513307e-02, 2.2776017223916853e-02, 2.3563608253863548e-02, 2.3862488651478379e-02, 2.3999022219787086e-02, 2.4025741596486364e-02, 2.4012140896171041e-02, 2.4017206673064936e-02, 2.4030010391889414e-02, 2.4029748723216504e-02, 2.4112800034474788e-02, 2.4187278063350970e-02, 2.4157678883854825e-02, 2.3802572611008571e-02, 2.3042470947401472e-02, 2.1655655606228313e-02, 1.9872342365422874e-02, 1.8018576623853366e-02, 1.6189133375415499e-02, 1.4801865599327307e-02, 1.3457048795333743e-02, 1.2132554061772743e-02, 1.0858306977943627e-02, 9.6084029750962696e-03, 8.2995923193179832e-03, 5.9224771598358206e-03, 3.5047732196179793e-03, 1.0005061198832543e-03, -1.7405702347683405e-03, -4.4616981934146593e-03, -7.1216707200637552e-03, -9.5694760257816203e-03, -1.1979508322670390e-02, -1.4284187887664612e-02, -1.6816783734502086e-02, -1.8849567780221593e-02, -2.1193030491444956e-02, -2.3329239081321465e-02, -2.6451958526164193e-02, -2.9503970364781806e-02, -3.2962082145492219e-02, -3.5156356874116126e-02, -3.5142227912535427e-02, -3.3366062483131058e-02, -3.3114234057980127e-02, -3.3083088654170381e-02, -3.3102199978785531e-02, -3.3132009417094641e-02, -3.3078680126076260e-02, -3.3161369394024684e-02, -3.2992842540445377e-02, -3.4605622414931918e-02, -3.5073739258823594e-02, 2.2182941226518232e-02, 2.1981979027116155e-02, 2.2531917206982811e-02, 2.2984173622364240e-02, 2.3070302204093798e-02, 2.2784518958463243e-02, 2.2402213570498083e-02, 2.1987883363238606e-02, 2.1680707843888772e-02, 2.1499918849199842e-02, 2.1343148588719968e-02, 2.1057051821622555e-02, 2.0731193943153675e-02, 2.0389069794321424e-02, 2.0058422909768336e-02, 1.9540642856943319e-02, 1.8771440018134411e-02, 1.7541979643777156e-02, 1.5812878466950092e-02, 1.3964976719422595e-02, 1.2055865200533145e-02, 1.0077893522332987e-02, 8.0754645552012227e-03, 6.1514300219643325e-03, 4.4311270849472506e-03, 2.9038882674280730e-03, 1.4939012416668451e-03, -7.3304622471334624e-04, -3.0595396586854118e-03, -5.4866983119958579e-03, -8.0240493230008536e-03, -1.0571159597881657e-02, -1.3000443206111476e-02, -1.5179520668500535e-02, -1.7215028113375816e-02, -1.9847516882259247e-02, -2.3018011536681843e-02, -2.5983647169467924e-02, -2.7910000857292727e-02, -3.0040601519555704e-02, -3.0494910334033544e-02, -3.1020300815030523e-02, -3.0472900946020811e-02, -2.9339094595589491e-02, -2.7329260959524745e-02, -2.3282200597135531e-02, -2.3102362566916976e-02, -2.2980669224552160e-02, -2.3125744875953105e-02, -2.3098181214000212e-02, -2.3171649864258927e-02, -2.3022061661220079e-02, -2.3513934479428358e-02, -2.3017725466707266e-02, -2.7425153082901818e-02, 1.9516253378010426e-02, 1.9888897338393344e-02, 1.9880967884662232e-02, 1.9689818789960026e-02, 1.9574628045879200e-02, 1.9602733497400285e-02, 1.9647300691552266e-02, 1.9741255701252278e-02, 1.9913817849225385e-02, 2.0111473545436659e-02, 2.0182363973418105e-02, 1.9765137981519382e-02, 1.8843485974511326e-02, 1.7663629466687120e-02, 1.6408037456121544e-02, 1.5237910325947818e-02, 1.4273734800682086e-02, 1.3633622740079343e-02, 1.2572129877143901e-02, 1.1316249704442977e-02, 9.8837403464103468e-03, 7.1977723411869865e-03, 4.3334406571953199e-03, 1.4271920960033102e-03, -1.4084709612929014e-03, -4.0447394411639026e-03, -6.5066614729601124e-03, -8.4084855738235098e-03, -1.0466365064931898e-02, -1.2577698061515652e-02, -1.4422079032085700e-02, -1.6272621811660795e-02, -1.8142601328309013e-02, -1.9691595445601173e-02, -2.1729294805989577e-02, -2.3566872905232489e-02, -2.6799245824183665e-02, -2.9403767194860535e-02, -3.2150285491934438e-02, -3.0551300663720179e-02, -2.7700772158833327e-02, -2.2524214863429971e-02, -1.8145893310077529e-02, -1.2816236998971839e-02, -7.2951537883928956e-03, -5.1210818400605077e-03, -4.4241996662364256e-03, -4.6728855582089503e-03, -4.6853535872196641e-03, -4.7803654253191471e-03, -4.6846538408774445e-03, -4.8979281393897404e-03, -4.1901821058487982e-03, -4.8529782488043972e-03, 8.0123108338539604e-04, 1.7061048474614621e-02, 1.7034601751170803e-02, 1.7028159223636596e-02, 1.6807781814739214e-02, 1.6823481055682585e-02, 1.7227720200294699e-02, 1.7792749527881874e-02, 1.8436874529865144e-02, 1.8971051442134179e-02, 1.9228906214484004e-02, 1.9232379997744353e-02, 1.8829408202143044e-02, 1.7754552277809060e-02, 1.6173262210605249e-02, 1.4155453395334083e-02, 1.2202827381609854e-02, 1.0499066988147648e-02, 9.2200337341424299e-03, 7.7985025730062385e-03, 6.2762623922410221e-03, 4.6301567659485232e-03, 1.9366696771409841e-03, -9.0404891779594099e-04, -3.8004815287541183e-03, -6.6824531417051802e-03, -9.4511010403375006e-03, -1.2049428517367261e-02, -1.3626587002104756e-02, -1.5311942336074899e-02, -1.6949047856625668e-02, -1.8325130692834521e-02, -1.9732661110813982e-02, -2.1367897589312276e-02, -2.3775021436955687e-02, -2.5298235316477492e-02, -2.7252548542710406e-02, -2.6614398817251847e-02, -2.6469916679325564e-02, -2.2975894822048822e-02, -2.3086974176860380e-02, -1.7349844789848658e-02, -1.2922318843549869e-02, -4.6831498435802379e-03, 6.5427412823091335e-04, 2.1704711184609782e-03, 5.0312031183026608e-03, 4.6025412077429695e-03, 4.7327092171358743e-03, 4.5301247047505435e-03, 4.5958502354293751e-03, 4.4751416716924744e-03, 4.6959335443440709e-03, 4.1885427851962916e-03, 6.8364307534754124e-03, 6.0382199335699159e-03, 1.4454075209614156e-02, 1.4664575409529923e-02, 1.5097331222508337e-02, 1.5634965737587159e-02, 1.6108685489437391e-02, 1.6788119482942204e-02, 1.7600267825894550e-02, 1.8338483812924383e-02, 1.8588465371529944e-02, 1.8161135819279278e-02, 1.7443710965985904e-02, 1.6892972673408807e-02, 1.5941544850779726e-02, 1.4486335574935810e-02, 1.2161280363097882e-02, 9.6497040194492845e-03, 6.9907495955718046e-03, 4.1186662652655803e-03, 1.4779276477215053e-03, -1.0553435122805654e-03, -3.5186512366345846e-03, -5.4871733245423493e-03, -7.4022900492187460e-03, -9.2409784194968370e-03, -1.0958391376515608e-02, -1.2690448010489491e-02, -1.4315842562504288e-02, -1.5649882684709848e-02, -1.6873769384547016e-02, -1.8275912518098111e-02, -1.9479643261281890e-02, -2.1053969458168953e-02, -2.2890947231468298e-02, -2.4923259169927985e-02, -2.8195906108484291e-02, -2.6352266170066800e-02, -2.1547699779704940e-02, -1.4984946682761064e-02, -1.2699108408274040e-02, -3.2140877623551876e-04, 1.9120285420372372e-03, 3.6631288540396895e-03, 1.1274881756436895e-03, -2.6341068175597519e-04, 3.3512873191016350e-03, 2.0909651025143574e-03, 2.7098573782171464e-03, 2.2858591080398821e-03, 2.3844195580960074e-03, 2.2960264773735153e-03, 2.3807747328894761e-03, 2.2218098150855476e-03, 2.5887008117907936e-03, 1.4589141974443763e-03, 1.7734253931662794e-03, 1.2132869751426356e-02, 1.2781751630991517e-02, 1.3857643926314278e-02, 1.5679222434566459e-02, 1.7114436183834236e-02, 1.8201226560488948e-02, 1.8887714752514662e-02, 1.8970141288297493e-02, 1.7876620020312955e-02, 1.6038355960320355e-02, 1.3984423207518359e-02, 1.2336893332441617e-02, 1.0871400800851527e-02, 9.3191081211286275e-03, 7.2165886508537280e-03, 4.7539620647618075e-03, 2.0121936434967513e-03, -1.0322626533570134e-03, -3.8328766825431182e-03, -6.4480379815651523e-03, -8.8313564859246740e-03, -1.0192209856941997e-02, -1.1362745501988736e-02, -1.2394835892189510e-02, -1.3245183235859131e-02, -1.4137251544935850e-02, -1.5149523943255888e-02, -1.6269441540070415e-02, -1.7501305865774169e-02, -1.8669515055789773e-02, -2.0774894730774519e-02, -2.2138676191935033e-02, -2.2887921690399458e-02, -2.3548408232217172e-02, -1.9266560050953591e-02, -1.9725427533111347e-02, -1.2936007583008767e-02, -5.2427377555793065e-03, 3.8696404281571739e-03, -7.2210138249441857e-05, -6.8243478757287724e-04, -1.0940244083746120e-03, -4.9078129855089465e-04, 2.0568685354546579e-03, -8.9168272323845088e-04, 3.7002801491072684e-05, -6.9056820581005467e-04, -4.9102136548206075e-04, -6.2240220149784985e-04, -5.5584914185184513e-04, -6.0507030018309461e-04, -5.2860791950197061e-04, -8.0374559752711006e-04, -8.3271161997294351e-04, -2.5681352998509592e-03, 1.0754853566202760e-02, 1.2477350465393389e-02, 1.4074848977066956e-02, 1.6688333709699410e-02, 1.8723775351772831e-02, 1.9700898953374596e-02, 1.9594675330860650e-02, 1.8395798502700095e-02, 1.5438160416117203e-02, 1.2198832814156707e-02, 8.9083765333807519e-03, 5.7615222287028811e-03, 3.3907293680828232e-03, 1.4701613624475141e-03, -3.3617746902386836e-05, -1.9274177240999890e-03, -3.8369418186286475e-03, -5.4977824415398391e-03, -7.1992380838536985e-03, -8.7788728516655368e-03, -1.0148290210228644e-02, -1.1204080412413719e-02, -1.2106964723565594e-02, -1.2971987741323687e-02, -1.3628800642786681e-02, -1.4451113101089721e-02, -1.5358591166149987e-02, -1.6794745091294194e-02, -1.7930860273976432e-02, -1.9704435828368040e-02, -2.1224456965518973e-02, -2.2846751736467195e-02, -2.1416038821399367e-02, -1.3563120411916402e-02, -1.2413889146414578e-02, 2.8066095888324783e-03, 3.3268086923684552e-03, 1.4641169272902486e-03, -1.1495513313702580e-03, 1.7976422611482156e-04, 9.0725930342154884e-04, 8.5447390084419992e-04, 1.0563497443248286e-03, -7.3406086080711800e-04, 2.4612185475708127e-04, -6.7980797597428939e-04, -3.9640833848311047e-04, -5.7570409731494149e-04, -4.9673640002938918e-04, -5.3081880459243495e-04, -4.9127348606782962e-04, -5.3490854409706575e-04, -4.2550972906068955e-04, -8.1724212085441776e-04, -5.1810092318729274e-05, 1.4649218393897934e-02, 1.6428598187392673e-02, 1.7494538859061382e-02, 1.8269921373820108e-02, 1.8118533723241848e-02, 1.6927967227767432e-02, 1.4907839883994356e-02, 1.2279702631876055e-02, 8.9493541135642063e-03, 5.9837987725279429e-03, 3.2056072882263031e-03, 3.7190377950513387e-04, -1.9183630364578153e-03, -3.7437538543428628e-03, -4.8783588285868928e-03, -6.1457485320949023e-03, -7.2962395072250774e-03, -8.1062751881308404e-03, -8.8727990004479618e-03, -9.6049720661834648e-03, -1.0330618264936836e-02, -1.1152757869344665e-02, -1.1947122294296925e-02, -1.2725491337547523e-02, -1.3565089610668393e-02, -1.4482954711204088e-02, -1.5840540919027687e-02, -1.7168454270685238e-02, -1.9370465227900889e-02, -1.9615651624256422e-02, -2.0725125925242976e-02, -1.6265369387418214e-02, -1.4302569927867667e-02, -8.9493764365073808e-03, 4.1874197082361333e-03, -1.0258884896847354e-03, -1.0368480819636270e-03, -4.2033056588868000e-04, 5.3213230325210132e-04, 1.2150681468359732e-04, -5.3285525853322266e-04, -3.8904899256813133e-04, -5.0619018621928381e-04, 3.5821993710679289e-04, -1.5785865982745556e-04, 2.1935869950184123e-04, 3.5940197310882840e-05, 1.2930711805343720e-04, 9.3294835129854002e-05, 1.2011862716114312e-04, 1.0430028380944718e-04, 1.3803788369090141e-04, 9.1710852883305702e-05, 3.6374266233350945e-04, 3.5437961345626944e-04, 2.3841530120825044e-02, 2.1154697133012768e-02, 2.0830773014372278e-02, 1.7756311261436175e-02, 1.3689010769014159e-02, 9.3896453103186617e-03, 5.3476060026836914e-03, 1.8635997209678345e-03, -7.5692465646343132e-05, -1.2193790478043087e-03, -1.9932042672542172e-03, -2.8714326625094710e-03, -4.1054942833127772e-03, -5.3383067343070467e-03, -6.3881130818719267e-03, -7.1617934303827291e-03, -7.9386031099026311e-03, -8.8486763895281317e-03, -9.2982237718352290e-03, -9.7992538797889717e-03, -1.0485077816398375e-02, -1.1168456393949061e-02, -1.1827503083757671e-02, -1.2539036379625765e-02, -1.3510227194471994e-02, -1.4935924104339554e-02, -1.6206150489647062e-02, -1.8251860693821245e-02, -1.8746212824422397e-02, -2.0848488937771113e-02, -1.2146496838601478e-02, -1.1005603060642173e-02, 8.2622887815814281e-04, 3.1490340999663505e-03, -1.4105964561779245e-03, 5.2157207565076580e-04, 1.0078899286747626e-03, 4.1716805223171558e-04, -8.2392303010444948e-05, -1.4072223077401749e-04, 5.7115613613942289e-05, -7.7193489547727962e-05, 2.4012530835118497e-05, -1.6430548605233727e-04, 1.5111338390266403e-04, 2.6099843580605457e-05, 1.2270011586122762e-04, 8.7280301008751254e-05, 1.1125435831495570e-04, 1.0052535542666875e-04, 1.1054296765437323e-04, 9.9347037806369644e-05, 1.3750584431392304e-04, 9.4879990755058694e-05, 1.4279223410839856e-04, 1.9674964917832660e-02, 1.5771354139625465e-02, 1.3795586428236306e-02, 9.0714013048161235e-03, 4.5477336498419840e-03, 4.1216524954065803e-04, -2.9052622648287618e-03, -5.1970312646078820e-03, -5.4685993795926535e-03, -5.2173132438903258e-03, -4.8428271307508208e-03, -4.7436559231814057e-03, -5.2984843044554808e-03, -6.0842915443332646e-03, -6.9048122128276823e-03, -7.3754575932263866e-03, -7.9210653849460522e-03, -8.7842530626616733e-03, -9.2223365327042117e-03, -9.7379733930740009e-03, -1.0477263841575352e-02, -1.1128751539773094e-02, -1.1830296148823957e-02, -1.2525813636458896e-02, -1.3914695948555419e-02, -1.5303987909580999e-02, -1.7501251184796535e-02, -1.7256031553064197e-02, -1.7761233028882942e-02, -1.1936321033466172e-02, -1.0748213105817842e-02, 2.2572970803533825e-03, -2.8843147305874524e-05, -1.0491577094361325e-03, 5.4060529071856120e-04, 2.9540937637338911e-05, -5.7473769931566752e-04, -1.4974804162393667e-04, 2.5710816683107151e-05, 3.9759914659593369e-05, -4.2058103534692033e-05, 4.8320538822593882e-05, 1.0075514760267087e-06, 5.1523339056767621e-05, -7.6520485446636942e-05, -1.7206748539101008e-05, -5.1363678147184691e-05, -3.0745190612386543e-05, -4.0056943841248333e-05, -3.4619614512690355e-05, -3.9857791556667348e-05, -3.4689234587144922e-05, -5.1626439113698457e-05, -4.5061751861471405e-05, -1.5744097001514287e-04, 1.2292032291277566e-03, 1.1453408833850542e-03, -2.2194027396594262e-03, -5.4847742914146957e-03, -6.7751958829169734e-03, -7.4926474828284906e-03, -7.6310604827571904e-03, -7.2528248989530419e-03, -6.2923242019427006e-03, -5.6996497198011642e-03, -5.5106023523001924e-03, -5.8068018656083076e-03, -6.3338002675743521e-03, -6.9205082746651159e-03, -7.3530172969735741e-03, -7.6557765867280858e-03, -7.9931380660138995e-03, -8.4544961052520906e-03, -8.9586572830953615e-03, -9.5415348512332132e-03, -1.0229516297676919e-02, -1.0986956647626958e-02, -1.1769665380854874e-02, -1.2946976121924331e-02, -1.4194902202496043e-02, -1.6391417380413616e-02, -1.6839789009554552e-02, -1.7096985748145513e-02, -9.6652734492453599e-03, -6.4394247470032848e-03, 4.2202144408826185e-03, -9.7502266913582756e-04, 1.0717840767525408e-04, 7.2487263505158922e-04, -3.2653278315226253e-05, -1.3626872349211891e-04, 1.0104668683537854e-04, -1.9275845200301776e-05, -1.4109909005751852e-05, 1.0141149403784534e-05, 3.8931459208553490e-05, 2.4482159898927500e-05, 4.0560716893635578e-05, -2.2566479013866238e-05, 1.8675556962312323e-06, -3.4688481377660556e-05, -1.9846115608197074e-05, -2.8938481584568285e-05, -2.4509879721731909e-05, -2.7636231738894720e-05, -2.5614367642403692e-05, -2.9458464041630210e-05, -2.3720522326591345e-05, -4.8110070925127396e-05, -4.2976307958299612e-06, -1.0344616628057302e-02, -1.0476988536634119e-02, -1.2914111866054734e-02, -1.3982639048967405e-02, -1.2982677620333893e-02, -1.1285736785491218e-02, -9.4035856770280923e-03, -7.6216553635953810e-03, -6.3893929637025559e-03, -5.9410799522973401e-03, -6.0371347358176009e-03, -6.5275160277669109e-03, -6.9428398245623968e-03, -7.2697397205064296e-03, -7.4360627052970640e-03, -7.6508266779918843e-03, -7.8928753460579260e-03, -8.1611025894719746e-03, -8.7480768586576385e-03, -9.3829471752911592e-03, -1.0053792648907087e-02, -1.0828605825215151e-02, -1.1968229551621454e-02, -1.3188390546672951e-02, -1.5375733328996992e-02, -1.5306922494874670e-02, -1.6220826768631912e-02, -9.5590541584685846e-03, -7.5302972935113906e-03, 4.3471876919010388e-03, -1.8732724581555327e-03, 4.1664932964785746e-04, 1.9936981019344149e-04, -3.2537563937340424e-04, 4.8394199669049033e-05, 3.3443230099627094e-05, -5.1410468590270045e-05, -3.7664928644411447e-06, 2.2008110774916268e-06, -1.9666822520903056e-05, -2.4708121225146452e-05, -1.6062438079515815e-05, -1.8167466899315628e-05, 1.2121482807976461e-05, 2.0908590277505731e-06, 1.6880239787638897e-05, 9.3238011446110380e-06, 1.3261244156925235e-05, 1.0881629231583416e-05, 1.2148920060396813e-05, 1.0855971304640603e-05, 1.2609508090608880e-05, 9.2530728829347958e-06, 2.5235829479864323e-05, 2.7422401053430953e-05, -1.4934257116080207e-02, -1.5017611349722682e-02, -1.4987629454131207e-02, -1.4193253542165524e-02, -1.3078153401277354e-02, -1.1140693718063116e-02, -9.3314482691475298e-03, -7.8288438589317610e-03, -7.1574713789915034e-03, -6.9021036363653976e-03, -6.9090280394628889e-03, -6.9950127457598099e-03, -7.0164532606601104e-03, -7.0163872127391447e-03, -7.0879155194365218e-03, -7.3083523520734994e-03, -7.6016236847598617e-03, -7.9584086157214184e-03, -8.6309582672916274e-03, -9.3297549615115882e-03, -9.9637059658146537e-03, -1.0939376798292322e-02, -1.2150812718869586e-02, -1.4037805881433989e-02, -1.4966012882063603e-02, -1.5487375649116775e-02, -8.4874462906995192e-03, -6.9160551485766466e-03, 4.4381430205770386e-03, -1.8648736892212350e-03, 7.9451532945955738e-04, 1.4251545822984693e-04, -1.5042720427369644e-04, 8.8575517044118334e-05, -3.2439154975995977e-05, 1.6805400771785739e-05, 3.3282761809049556e-05, 1.0619743046849759e-05, -1.7654540977729007e-06, -1.1189471973902497e-06, -2.6199307110672801e-07, -7.4665278367874613e-06, -3.5515024479076821e-06, -3.0484799433665860e-06, 7.8985931291656805e-06, 5.1249099328109712e-06, 8.6800044926315864e-06, 6.9610742095063682e-06, 7.9430281286797799e-06, 7.2916367000819618e-06, 7.8851587387426467e-06, 7.1946987285475411e-06, 9.2971862961747920e-06, 6.9551065798485745e-06, 8.1449386237532340e-06, -1.5763075249141001e-02, -1.4916943851669140e-02, -1.3791231530445563e-02, -1.2350560662325344e-02, -1.1553962984435839e-02, -1.0276193305955500e-02, -9.1872338943929932e-03, -8.3105690336108817e-03, -7.9253159228907244e-03, -7.6296687969627519e-03, -7.3721909065503910e-03, -7.0601107157300946e-03, -6.8259086666889457e-03, -6.7138014442735539e-03, -6.8302684342869957e-03, -7.1025718928587889e-03, -7.4720880746688423e-03, -7.9333503826483631e-03, -8.5821511422588814e-03, -9.2430980671864837e-03, -1.0018321292919380e-02, -1.1128135374883052e-02, -1.2981282274822419e-02, -1.4043574895432835e-02, -1.4968796951717663e-02, -8.7586084526355707e-03, -8.3160362403746860e-03, 4.5131901423629793e-03, -1.9450513449202568e-03, 7.4951079673217871e-04, -8.9784614992961131e-05, -9.7068122598077021e-05, 7.6994804701505153e-05, -4.7685350202673042e-05, 9.6318412294046473e-06, -2.7246733071217800e-05, -2.1788846355992196e-05, -8.2243598018116708e-06, 1.3944658151344785e-06, -1.9308715268172164e-07, -1.0715539990458877e-06, 4.8065725037260340e-06, 2.7717222532098670e-06, 7.7565964377184805e-07, -3.5372478814294298e-06, -2.3791622434559193e-06, -3.6040548072376749e-06, -2.8779432995860998e-06, -3.3139678199062619e-06, -3.0152707690619951e-06, -3.2665665835934429e-06, -2.9378263275321725e-06, -3.8762653094505037e-06, -4.0394979157467800e-06, -1.0856414171991034e-05, -1.2723577010852277e-02, -1.2600362279698213e-02, -1.2040628207887594e-02, -1.1047894257981611e-02, -1.0357748802108824e-02, -9.8732465999689933e-03, -9.4338666767890267e-03, -8.9963894998393856e-03, -8.3832581676371309e-03, -7.8327569325309099e-03, -7.3127832409851656e-03, -6.8188105546070077e-03, -6.5818857789001761e-03, -6.5579283634198682e-03, -6.7959894758060635e-03, -7.1160720876254913e-03, -7.5161711297532241e-03, -8.0406446336152571e-03, -8.5370466759889796e-03, -9.1835928171493802e-03, -1.0095509857714943e-02, -1.1687423311785919e-02, -1.3192265067195695e-02, -1.4988257304327360e-02, -9.6454694465792565e-03, -8.0064464055010238e-03, 4.0922259011727594e-03, -1.7215353812932068e-03, 7.0411935203011926e-04, -7.5767680355763502e-06, -5.4790699105062261e-05, 5.3072018361290796e-05, -2.1683169989119964e-05, 2.5131340502359260e-05, -5.7798047279519456e-06, 8.3513130714411420e-08, -2.6679739707459937e-07, -5.7288531807897264e-07, -4.7764539209680973e-07, 2.0816272693659481e-06, 2.2588133672361030e-06, 1.5937862620643366e-06, 1.9355700280785054e-06, -5.3282631509656182e-07, -8.7101884789367659e-07, -2.2693794860103797e-06, -1.8805311013435702e-06, -2.2336553357369879e-06, -2.0343598617425518e-06, -2.1669234792232733e-06, -2.0325991768313165e-06, -2.2264208816317674e-06, -1.8979534636247297e-06, -3.2670498897775790e-06, -5.8834901582073551e-07, -1.1289025729355501e-02, -1.1090136498406483e-02, -1.0934633093292234e-02, -1.0236600240368349e-02, -9.6408940235465646e-03, -9.7084088589306505e-03, -9.7192300758533190e-03, -9.5164994474942755e-03, -8.7538316134997129e-03, -8.0001045195357001e-03, -7.3225020220778758e-03, -6.8010271736380079e-03, -6.5384781936611014e-03, -6.4912532699849534e-03, -6.7218907379240633e-03, -7.0627041739288465e-03, -7.4663366555808575e-03, -7.9695449686966596e-03, -8.4614514674931640e-03, -9.2460341922578487e-03, -1.0380164102688869e-02, -1.2116415014422954e-02, -1.2903252611588444e-02, -1.2598366872341152e-02, -7.1581988188598056e-03, -5.9196005055046300e-05, -4.9200381707369947e-04, 2.4501983729319839e-04, 7.2393107262946378e-05, -7.3454875442503082e-05, 5.5803159289988014e-05, -3.5187166284042498e-05, -5.7703988504760780e-06, -1.5829709320896318e-05, 2.1752271254854235e-06, -7.8202638347399877e-07, -5.3877385386904707e-07, -4.2883119187923056e-08, 2.1294004008684596e-07, -1.7072669683673779e-06, -1.5535109262656004e-06, -1.1255976108358312e-06, -1.0104575337605178e-06, 3.2516391592816128e-07, 4.2699154442467704e-07, 9.5427353107545299e-07, 7.1113765444299343e-07, 8.6615183921435329e-07, 7.7525771923891290e-07, 8.4352067462184488e-07, 7.7976890555143952e-07, 8.8540344176952362e-07, 7.2005786822936652e-07, 1.7322253342685542e-06, 2.1533216392859156e-06, -1.1355287950009271e-02, -1.0927931972077809e-02, -1.0465449897901269e-02, -9.7212942555557902e-03, -9.1996883554779085e-03, -9.5406222360738258e-03, -9.7486004472002730e-03, -9.6712451250919040e-03, -8.9913041493709378e-03, -8.2087529281635874e-03, -7.4807877829505265e-03, -7.0222619942209852e-03, -6.6501132062552482e-03, -6.4489677109921539e-03, -6.5441745236942406e-03, -6.8754035272907410e-03, -7.2876583891440389e-03, -7.7005688446768056e-03, -8.4125981992454191e-03, -9.3570316885945859e-03, -1.0914856793950732e-02, -1.2015211685184081e-02, -1.2184358958073072e-02, -7.3517804458257778e-03, -4.0673424777153532e-03, 1.6207059969149812e-03, -3.5968063249529938e-04, 2.7971090973144281e-04, -1.0261811122533584e-04, 6.5747386862320342e-05, -2.4466572809910052e-05, 1.2535803502157863e-05, -5.2327059838749098e-06, 1.3162015750173511e-06, -1.0496909511220382e-06, 2.5705406584789218e-06, 1.7026745056989258e-06, 8.0031090502456379e-07, -1.0290542424207152e-07, -1.2788732660752936e-09, -8.8925265666984837e-08, -5.4988437805722078e-07, -3.9615511862768757e-07, -4.5327337774674070e-08, 4.1937306663767868e-07, 4.5402985842865617e-07, 5.9005584310788117e-07, 5.3736772783700287e-07, 5.7981210993800908e-07, 5.5022127048477698e-07, 5.8025046512782952e-07, 5.4257077711054869e-07, 6.5948787318376861e-07, 5.7070633422643541e-07, 5.2472345953014088e-07, -1.1204105768845674e-02, -1.0808098729403526e-02, -1.0209832872176472e-02, -9.5309223838404566e-03, -9.1281784395673138e-03, -9.2437118257539252e-03, -9.3388666662936604e-03, -9.2995020770343106e-03, -8.7981960907435042e-03, -8.1160078347188858e-03, -7.4213963658606441e-03, -6.9663447023028957e-03, -6.5889191042854955e-03, -6.3673729208290064e-03, -6.4133903362226519e-03, -6.7162059525275875e-03, -7.1110695064027923e-03, -7.6045657595742583e-03, -8.3776005864868025e-03, -9.6700395630905517e-03, -1.0845830648780461e-02, -1.2328669311498435e-02, -8.4889081481810992e-03, -6.4486881810311251e-03, 3.1604924716178420e-03, -1.0299558434821510e-03, 3.6734939262044798e-04, -6.5109701856481560e-05, 4.5328756201088669e-05, -3.3578147795897790e-05, -5.9501443176377105e-07, -5.6965690365289100e-06, 8.6464552328683946e-07, -5.9492498162688474e-07, 5.3361111319600706e-07, -2.0522387432495351e-06, -1.2759531969912176e-06, -5.9299226423437145e-07, 7.1585180697037289e-08, -4.7308314095724719e-08, -6.2715346748145901e-08, 3.4337326514365411e-07, 2.4608868973423782e-07, -1.2058285111735123e-08, -1.8939418387244056e-07, -1.9703065318350810e-07, -2.2823642644581588e-07, -2.0427723651777335e-07, -2.2096912677405101e-07, -2.0859493054473793e-07, -2.2250020971243539e-07, -2.0776179215486329e-07, -2.6149271739259183e-07, -3.1422700103207746e-07, -7.4732198559589874e-07, -1.0711140399487840e-02, -1.0466194364912237e-02, -9.9539085317571496e-03, -9.5166349580137893e-03, -9.3243681781480514e-03, -8.8745606992594039e-03, -8.6882162428545961e-03, -8.5970045220312430e-03, -8.2996205740957785e-03, -7.7628349710790467e-03, -7.1361216819378070e-03, -6.6111502324615878e-03, -6.3436988832422381e-03, -6.2493832776627234e-03, -6.3596273830677230e-03, -6.6129088255707097e-03, -7.0111329509458253e-03, -7.6417561035498349e-03, -8.5800172712845041e-03, -9.8216654122837560e-03, -1.1249522087134124e-02, -1.0463941042527132e-02, -7.8792940608648897e-03, 2.3397394647294884e-03, -1.0077020135159723e-03, 3.1590755982042877e-04, 4.7009239283296204e-05, -1.0405207267728594e-05, 8.9394922859036550e-06, -2.1684743570031778e-06, -1.4639023111532267e-06, -1.4703891423555981e-07, 1.4760265928659953e-06, 9.7686436162716661e-07, -1.0564890389971621e-07, 6.8929360924846559e-08, -9.7355078416819837e-08, -5.4814662365734344e-08, -3.4982099166388668e-08, 1.5311844415137480e-07, 1.5610167379992998e-07, 1.1594510055369330e-07, 1.2332656623232014e-07, -8.2511774357474366e-09, -8.2669758779026215e-08, -1.4441346304731872e-07, -1.4021149079626594e-07, -1.5306754544332918e-07, -1.4614902475815900e-07, -1.5242850142597325e-07, -1.4622593044483906e-07, -1.5719910710469687e-07, -1.4229553108556503e-07, -2.2315130921140430e-07, -5.9789851193300936e-08, -1.0467518758643199e-02, -1.0219525626859488e-02, -9.6753610576181398e-03, -9.2967965373791650e-03, -9.1921125393790853e-03, -8.7304257394011375e-03, -8.4162776995927446e-03, -8.2031168911780583e-03, -8.0709447378405075e-03, -7.6106073717233658e-03, -6.9806315806748842e-03, -6.4386836664319103e-03, -6.2079974384919578e-03, -6.1598055292165776e-03, -6.2656674740084878e-03, -6.5155190053082790e-03, -6.9138708272940136e-03, -7.6309956936091577e-03, -8.7981077989043588e-03, -1.0348865338236174e-02, -1.1718175477616593e-02, -8.1487833596907994e-03, -4.8853087081104606e-03, 1.2549498967874828e-03, -2.9064209100716841e-04, 2.3750892256885542e-04, -8.1940809278686157e-05, 3.2311927333242404e-05, -2.2152470496586516e-05, 2.4942122059784229e-06, -1.3539179504226228e-06, 5.2068516309068040e-07, -1.3718164336186389e-06, -6.2839831306671476e-07, 7.0039579222187613e-08, -7.5857519080986665e-08, -2.7647336789442473e-08, -6.0559662719132136e-09, 1.1812085933584618e-08, -1.2409578350835006e-07, -1.0936140985233055e-07, -8.1201649802868344e-08, -6.5538513843482922e-08, 1.3421666597134702e-08, 4.0515569639694438e-08, 6.2351087860498811e-08, 5.4598065257240036e-08, 5.9734538140551741e-08, 5.6115803351297622e-08, 5.9081939372124248e-08, 5.5881786691948376e-08, 6.1756645106797459e-08, 5.3800583045895967e-08, 1.1738471990610511e-07, 1.6154572955381918e-07, -1.0489269851007857e-02, -1.0175052659077602e-02, -9.4565037603334540e-03, -8.9252551817727011e-03, -8.7337273501153084e-03, -8.7732486539616322e-03, -8.4950480693772035e-03, -8.1047055045607164e-03, -8.0919597616178063e-03, -7.6556832041277945e-03, -7.0034818548808386e-03, -6.5078874951025878e-03, -6.2096156507469580e-03, -6.0864486747992941e-03, -6.1228831401180656e-03, -6.4017725340024950e-03, -6.8598771071204101e-03, -7.5239138086302393e-03, -9.0276742669998522e-03, -1.0656801388865954e-02, -1.1746517015485765e-02, -6.1103603771072226e-03, 2.1803161063554612e-03, -5.8238028924584068e-04, 2.0028490916500699e-04, -1.3193901497381865e-05, 2.7116317034599869e-05, -1.1172124882952118e-05, 1.2654562090553916e-06, -5.5472834255677981e-07, 8.9254130578600649e-07, 1.1702943756802353e-07, 9.5425529357822010e-08, -3.3402380426644698e-08, -6.0872034914625020e-08, 1.8069380033216924e-07, 1.1219092089262243e-07, 5.6337218001990428e-08, -6.6527059585763226e-09, 6.0294971294429234e-10, -6.7652750126165687e-09, -3.8978201925062451e-08, -3.0834215502975690e-08, 6.8222700622469490e-10, 2.6098789762587365e-08, 3.4871313005571669e-08, 4.0280653426476298e-08, 3.8928084731409962e-08, 4.0546544002525997e-08, 3.9308124871392791e-08, 4.0848447652175324e-08, 3.9084306313087736e-08, 4.5711259201441923e-08, 4.3797049835772595e-08, 3.4155573763391955e-08, -1.0521094810716808e-02, -1.0169163648315743e-02, -9.5012867603854606e-03, -8.8626054431120704e-03, -8.5437492731122722e-03, -8.5816103505198665e-03, -8.2398313713491211e-03, -7.7479153628950553e-03, -7.7094973226884134e-03, -7.4327546690576840e-03, -6.9782778909525944e-03, -6.4940939022362643e-03, -6.1166123041458131e-03, -5.9363395346127973e-03, -6.0097555756742221e-03, -6.3551740206785473e-03, -6.8503064032439248e-03, -7.7557176396931687e-03, -8.9758902880886504e-03, -1.0108467957439551e-02, -8.5634033864262563e-03, -3.5876815424146207e-03, 8.2382904338472939e-04, -2.6763028933951907e-04, 2.1302899004349058e-04, -5.1516003398786880e-05, 6.4931864051759292e-06, -6.1262849166357372e-06, 5.8799998869422617e-07, -1.1217843817823230e-06, -3.1249830863985481e-07, -1.0348043843338983e-07, -1.6235573378032631e-08, -2.5681696058746937e-08, 2.9022017954431420e-08, -1.5289519784692971e-07, -8.9583323671150496e-08, -4.2479794781200052e-08, 5.2229226393297763e-09, -3.3736284515484879e-09, -4.2771365897544943e-09, 2.4475252910185130e-08, 1.8520049496371579e-08, -2.5275958515872526e-09, -1.2230682835869672e-08, -1.5417209358117856e-08, -1.5875604263484999e-08, -1.5235092816652529e-08, -1.5777056276006229e-08, -1.5257537689002121e-08, -1.5892935287253884e-08, -1.5214583712688801e-08, -1.8107900800340415e-08, -2.3922569487855316e-08, -5.1886886748980787e-08, -1.0501789860035513e-02, -1.0195489890136397e-02, -9.7036836259071085e-03, -9.0891577393206469e-03, -8.6150236297704852e-03, -8.1168262353122217e-03, -7.5847733319199945e-03, -7.1185103961879936e-03, -6.9410315966707548e-03, -6.9232138190524900e-03, -6.8365777624538049e-03, -6.3389359928635314e-03, -5.9424438526936435e-03, -5.7361849814605154e-03, -5.9769692876555647e-03, -6.3163209182833385e-03, -7.0408011215866845e-03, -8.0189258685058259e-03, -9.4503943038490648e-03, -7.6353474271432555e-03, -5.2290930000759798e-03, 1.8984458040723926e-03, -4.9192390971394785e-04, 2.1750276390356901e-04, -3.2372215083128738e-05, 1.8682789910025175e-05, -6.4082193843600541e-06, -1.3082410392346281e-07, 1.7785966572263614e-07, 1.6918432504318915e-07, 1.5239821007825534e-08, -9.6788758229676957e-09, 1.0699847665776086e-07, 6.2075715280887882e-08, -1.1783905319031566e-08, 5.9526525596459001e-09, -7.7035250848158689e-09, -3.6333852266386309e-09, -2.3560313930923518e-09, 1.1061783735798626e-08, 1.1148735339999933e-08, 8.3943750458213319e-09, 8.4869051792790112e-09, -2.1670460348052756e-11, -6.5672963868272649e-09, -9.9309343578463105e-09, -1.0369812235462572e-08, -1.0808975725758174e-08, -1.0585341167837492e-08, -1.0843451921961622e-08, -1.0550540145530529e-08, -1.1133973483630488e-08, -1.0505231615165478e-08, -1.5301302501088965e-08, -5.0625010216895361e-09, -1.0592212955113860e-02, -1.0161784863906814e-02, -9.7055306306133432e-03, -9.0076095892205471e-03, -8.4765252453160439e-03, -7.6427236757713873e-03, -7.0749934896097572e-03, -6.7520440541585097e-03, -6.5592530600365323e-03, -6.5884707925420172e-03, -6.6076241279154763e-03, -6.2493980745162714e-03, -5.9354358470348062e-03, -5.7506993302974124e-03, -5.9041738929696691e-03, -6.3429266760100106e-03, -7.1266746970676392e-03, -8.5575892666419628e-03, -9.3153460290882895e-03, -7.5837938239004393e-03, -6.3162748389946699e-04, 3.8749442811223783e-05, -4.3550016031940615e-05, 1.1271370618076194e-04, -1.9085782979125394e-05, 4.2516821542785499e-06, -4.7925454176778366e-06, 5.2490931501730982e-07, -8.9130048463561596e-07, 1.9132533744573000e-07, -3.2013940160456871e-08, 2.8731966870721446e-08, -1.0324732025744957e-07, -4.9008038031000999e-08, 5.2772141770666362e-09, -5.8193777571291863e-09, -1.4929534129955440e-09, -3.6008705522547202e-10, 8.6197567380802594e-10, -8.9181719608699261e-09, -7.8362322744813303e-09, -5.8677018356461351e-09, -4.5776020210172054e-09, 7.3392959374848910e-10, 3.1584959214042696e-09, 4.3017205951859094e-09, 4.0653950995547805e-09, 4.2346475527532679e-09, 4.1031539711050558e-09, 4.2307271583622019e-09, 4.0738319662114719e-09, 4.3942844450001184e-09, 4.0319009502604031e-09, 8.1103924600561816e-09, 1.1979329800695937e-08, -1.0473264795181160e-02, -1.0232216348850812e-02, -9.3679594316151069e-03, -8.6041874056999590e-03, -8.0961899284893862e-03, -7.2949299405673240e-03, -6.8863551501201214e-03, -6.7678405942741826e-03, -6.6581492306166251e-03, -6.5330735550189617e-03, -6.3774113868036858e-03, -6.2631839424316244e-03, -6.0927162546146052e-03, -5.9323336972265939e-03, -5.8397065365264761e-03, -6.3045204213385136e-03, -7.3466953219106790e-03, -8.4460333172494614e-03, -9.6273134919010704e-03, -6.5529524074638907e-03, -8.9312302518121834e-04, 2.7209784882132107e-04, -4.3804132556294272e-05, 5.3927562687552315e-05, -8.3443915488349131e-06, 8.3941036465781920e-07, -1.0025200885142220e-06, -2.8943608980131104e-08, 7.0291820375743353e-08, 6.5580899595915751e-08, 6.0674920204870780e-08, 4.3025827183571560e-09, 2.9243047651363735e-09, -3.0975441841216752e-09, -4.5177650624954498e-09, 1.3289455612027802e-08, 8.0750406628829659e-09, 4.0717321307150167e-09, -4.7341849646227729e-10, 3.9445894115105670e-11, -4.9517614089515140e-10, -2.7859109476529708e-09, -2.2623122176057726e-09, 1.4306287708307219e-10, 1.7834732063577718e-09, 2.5896485667670222e-09, 2.8474209734855038e-09, 2.8380141327277730e-09, 2.8974507532836258e-09, 2.8464307187323068e-09, 2.9193588102494061e-09, 2.8383267637252518e-09, 3.2069063741341219e-09, 3.3003561437580653e-09, 2.2650876460930669e-09, -1.0324961585232637e-02, -9.5740516317843471e-03, -9.2520136543762371e-03, -8.3101689692828135e-03, -7.7728182812925178e-03, -7.2290417647676991e-03, -6.9437352160269944e-03, -6.7836451515669444e-03, -6.6880443289600022e-03, -6.5107801001539622e-03, -6.3073508108411613e-03, -6.2492222380160223e-03, -6.1029008764698911e-03, -5.9504156352524346e-03, -5.8241120210960617e-03, -6.4024849121128713e-03, -7.3103760369062284e-03, -8.4877736257832209e-03, -7.2404083324312547e-03, -5.7541670855081294e-03, 2.0204500661089586e-03, -5.7939028858900289e-04, 2.5226098424751566e-04, -5.6712207975330691e-05, 1.5311869166481331e-05, -6.7115202437621974e-06, 4.5000404492000884e-07, -3.2585677910403825e-07, 1.3072896886992774e-07, -5.2618455782143300e-08, -2.9987549213244960e-08, -9.8016861096203271e-09, -3.2151820207409164e-09, -1.8101273534546977e-09, 2.2325849873526277e-09, -1.0892048022656574e-08, -6.3904470658324858e-09, -3.0484527668839505e-09, 3.6694081678874911e-10, -2.4549752335178976e-10, -3.0583734909840274e-10, 1.7516700083432171e-09, 1.3495681665839747e-09, -2.1512775133340767e-10, -8.3797956160897025e-10, -1.1376811524105301e-09, -1.1160540842186650e-09, -1.1081765236356511e-09, -1.1226063368827144e-09, -1.1040738948087103e-09, -1.1323782805536253e-09, -1.1081818709207658e-09, -1.2627796698930216e-09, -1.7999587783798510e-09, -3.6340795971437356e-09, -8.6432237598608429e-03, -9.1960630438424895e-03, -8.8247572146528883e-03, -8.3894514712944263e-03, -7.5190248879439953e-03, -7.4199597023874436e-03, -7.0607957536720362e-03, -6.6351661413008300e-03, -6.4591864497781926e-03, -6.3643179629521707e-03, -6.3004468831695110e-03, -6.1329949757638336e-03, -5.9129292022886276e-03, -5.7533769205531937e-03, -5.9120663042400157e-03, -6.5481936615921776e-03, -7.4856041156470057e-03, -8.1481607770223889e-03, -4.7977748429534825e-03, -8.3015021377745427e-04, 9.6876504875477172e-05, -3.1374781090632970e-05, 9.7597280088421092e-05, -2.1507047603459460e-05, 6.0373823793816812e-06, -3.4497269455298547e-06, 6.9824980465819984e-07, -2.1704828477589152e-07, 1.5670724667755345e-07, -1.4649103816273545e-08, 6.1715162286959859e-09, -5.6442873991454593e-09, 8.0222130347602956e-09, 4.3383168172510343e-09, -6.8798502712939108e-10, 4.5506681664022816e-10, -5.4951379931849134e-10, -2.6715382464288610e-10, -1.7105433042230445e-10, 7.9317948953674944e-10, 7.9956250176533086e-10, 6.0498021249208965e-10, 6.0211851189663143e-10, 1.2062042554009111e-11, -4.8719545281752930e-10, -7.0025081046198867e-10, -7.5492751980266171e-10, -7.7036587439044402e-10, -7.6586733049194278e-10, -7.7526031688063268e-10, -7.6409991094789076e-10, -7.9135404739555382e-10, -7.7870696262721806e-10, -1.0499167039240698e-09, -4.2003283490243959e-10, -8.3712881621863869e-03, -6.8501189847005317e-03, -8.6277084829465417e-03, -8.1870105614836250e-03, -7.6539078859906712e-03, -7.3436992632009146e-03, -6.9323967104815559e-03, -6.4060544890901239e-03, -6.0581489509156095e-03, -5.9880911998559244e-03, -6.0432862897556172e-03, -5.8801239788861953e-03, -5.6960878187495984e-03, -5.6202755435687535e-03, -5.9979591996359854e-03, -6.7917263358611979e-03, -7.9401095144409004e-03, -8.4224565571598790e-03, -3.5225155844686371e-03, 5.9674707467133716e-04, -1.5022331137361445e-04, 1.2141258835216164e-04, -1.8225434922123349e-05, 8.3119489803369618e-06, -4.8383628484942082e-06, 2.4351242975005822e-07, -3.0248332123929784e-07, 1.2802235794745292e-07, -4.7009008464989109e-08, 1.2545908177440243e-08, -5.4597282837321251e-09, 1.1263531510480665e-09, -7.4660758864913447e-09, -3.4142529110197956e-09, 4.3675902133767826e-10, -4.1002487025771327e-10, -1.0883306501017001e-10, -2.8771788662500242e-11, 6.0550977778886864e-11, -6.4045760172050728e-10, -5.6222836057454907e-10, -4.2207314664252822e-10, -3.2582865550599693e-10, 4.7234973311188755e-11, 2.3268302562495791e-10, 3.0302011073957136e-10, 2.9564651681662779e-10, 3.0042244213157598e-10, 2.9689552292350152e-10, 3.0017360819201144e-10, 2.9699729741511360e-10, 3.0694765913025224e-10, 3.1180418316734126e-10, 5.3598514775793360e-10, 9.1325675841136267e-10, -3.5539016866609633e-03, -7.2916885352604169e-03, -6.8453441923162182e-03, -8.2119099113582353e-03, -7.8005003221469846e-03, -7.1134361323076656e-03, -6.5413158087587048e-03, -6.2408076290163955e-03, -5.6649813104275581e-03, -5.5490667428167023e-03, -5.6163230667168884e-03, -5.5792891792995902e-03, -5.5437055395176904e-03, -5.6502193642443965e-03, -6.0179306521952192e-03, -7.1111851924188924e-03, -8.0695335791581210e-03, -8.9623032196231630e-03, -3.4603707193985654e-03, 6.4778221102944626e-04, -1.7874069288026747e-04, 1.5132871565728953e-04, -2.7677981536582493e-05, 8.0712238733694796e-06, -4.4554202520376209e-06, 7.0581936058948243e-07, -2.0026754434632850e-07, 1.1752940636200948e-07, -9.5557610149872053e-09, 8.0820399719200558e-09, 7.7895579098314141e-10, 4.5429701125108968e-10, 1.2148509715564915e-10, -1.0551102252640519e-10, -3.1592507247963676e-10, 9.5861456340701375e-10, 5.7549724165849303e-10, 2.9118458328130509e-10, -3.4269562881883431e-11, 2.9562621068571909e-12, -3.5588498917575248e-11, -1.9964293125574947e-10, -1.6350233536868708e-10, 1.2244539800490561e-11, 1.2554588662075372e-10, 1.8810876467600934e-10, 2.0239185848092145e-10, 2.0562777695853907e-10, 2.0553455725574876e-10, 2.0824890683418529e-10, 2.0272754135131077e-10, 2.1632500131485433e-10, 1.9627635627905704e-10, 3.0762084893276587e-10, 8.2080022466290981e-11, -7.8590576368419984e-03, -3.0182991568913162e-03, -7.5602572985134613e-03, -7.3501899424794417e-03, -8.0906737555169195e-03, -6.9069382099475191e-03, -6.3992849897272636e-03, -6.1489272346404306e-03, -5.7192588080669099e-03, -5.4955728412008076e-03, -5.4178896063025173e-03, -5.4503052612022013e-03, -5.5404731590374540e-03, -5.6813484358020222e-03, -6.1782932719085665e-03, -6.9043389669055238e-03, -7.7131897640107215e-03, -6.0009082200952000e-03, -3.6422324492172953e-03, 9.8923620031553445e-04, -2.3635902533623686e-04, 1.5188859883877038e-04, -3.5087476327390208e-05, 8.2786522676546741e-06, -4.2277511364676530e-06, 8.3187176492285604e-07, -2.5064883623336382e-07, 1.0733501585710107e-07, -1.8257470925505878e-08, 1.7711360399943945e-09, -5.3801551069354667e-09, -1.9620950242153767e-10, -3.2355126973362784e-10, -4.4371864147373097e-11, 1.5550269999073905e-10, -7.8078231754334995e-10, -4.6141718861004120e-10, -2.1912288018679886e-10, 2.6272029311161932e-11, -1.7534241690975866e-11, -2.1892910580115568e-11, 1.2566800345562706e-10, 9.7232085013651548e-11, -1.6111482590772108e-11, -5.9350215714237819e-11, -8.2581420000893413e-11, -7.8933980011963722e-11, -8.1479687580321425e-11, -7.6950530149277885e-11, -8.6074364649690871e-11, -6.8369784660127220e-11, -1.0342902055648917e-10, -2.5230243241858297e-11, -2.6512830732933201e-10, -1.0540501197559005e-10, 1.2250486429220332e-03, -7.8374547298387318e-03, -4.9933856352329005e-03, -7.4176527158816390e-03, -7.6587997316016621e-03, -7.0368885941535231e-03, -6.3930237523700667e-03, -6.0843595054749511e-03, -6.0104272866577241e-03, -5.7037303741794970e-03, -5.3760369508982636e-03, -5.4583575624846808e-03, -5.5276546482391636e-03, -5.7728482328194136e-03, -6.1376043179694403e-03, -7.0432248257594060e-03, -5.6114709773513217e-03, -3.3337067304322083e-03, 1.4814833299890053e-03, -4.5040530057847451e-04, 2.4787893174749458e-04, -2.7086314799106383e-05, 1.2814990380144339e-05, -6.1518029061186281e-06, 5.4239786793938249e-07, -3.1894445259975134e-07, 1.4909277314145188e-07, -9.2927500555943943e-09, 1.2443580706995730e-08, -3.5609089517655255e-09, 7.9853323796006889e-11, -4.5163741434314959e-10, 6.4794302936281925e-10, 3.2859729791768350e-10, -4.6977210153582166e-11, 3.0456876604079142e-11, -4.0298215936082626e-11, -1.9359067924022352e-11, -1.2200386968058696e-11, 5.6983628238119546e-11, 5.7419459703438036e-11, 4.3419980555892829e-11, 4.3257648656667980e-11, 7.6516809381643736e-13, -3.4860489495081026e-11, -5.0098827863997997e-11, -5.5253041725267238e-11, -5.2280305085083967e-11, -6.1728688133255716e-11, -4.1999305942785892e-11, -8.1097611265290581e-11, -7.7181767921263855e-12, -1.9061739079534457e-10, 2.0514799581317078e-10, -3.5162765667923201e-10, -3.3791062298119351e-04, -4.9346906607611431e-03, -4.4606657896566204e-03, -6.7749293041260497e-03, -7.1193949430612136e-03, -6.9608856027441740e-03, -6.3852215650071278e-03, -5.8006658498727867e-03, -5.7229342946145817e-03, -5.4601282537614926e-03, -5.1833793131587369e-03, -5.2447105352473739e-03, -5.3831519167080177e-03, -5.6601199356636489e-03, -6.3214642006700628e-03, -6.9239854231552891e-03, -5.7771891144297975e-03, 1.2325678211325521e-04, -1.8674102647170840e-04, 5.0370127751639610e-05, 1.3559178686776884e-04, -2.6764108493869084e-05, 8.2930417886446848e-06, -5.6411678233315890e-06, 9.2215237328655735e-07, -3.3757417389277799e-07, 1.5803732619762813e-07, -2.2522361758144788e-08, 5.9630484291681163e-09, -3.6761262806885801e-09, 2.4730317975201442e-10, -1.3495130813073568e-10, -4.2316660603131800e-10, -2.5466344576738700e-10, 3.6199093418967654e-11, -3.2324248204311512e-11, -7.8385194656697271e-12, -2.1776769840511911e-12, 4.4145676426476238e-12, -4.5954818807735984e-11, -4.0403181370213606e-11, -3.0161497594199255e-11, -2.3787091762463020e-11, 4.4049724805261814e-12, 1.5482573990227566e-11, 2.2537279334433613e-11, 2.2495691941182283e-11, 1.6094618693340834e-11, 3.4808493760973835e-11, -6.4955419515344559e-12, 7.5849169826891494e-11, -8.0478440751818869e-11, 3.0441528985070132e-10, -5.5001269597815261e-10, 7.4118667453548781e-10, 9.0051615784589209e-05, 1.5398870528371142e-03, -4.5295958072805835e-03, -5.7614072410600847e-03, -6.4917422747231869e-03, -6.8805910619000113e-03, -6.5052533172182264e-03, -5.6221354162195036e-03, -5.2146341654457362e-03, -5.0862922633240909e-03, -5.1018681109305936e-03, -5.1007010562114791e-03, -5.2950375638014247e-03, -5.7616832554786557e-03, -6.4352258627659170e-03, -7.3964705646342582e-03, -5.9353713883558406e-03, -7.0454410549067282e-04, 2.7167890527475340e-04, 1.1386729024509562e-04, 2.8711578822422613e-05, 6.2357565030578667e-06, -6.1815247523859811e-06, -2.4346261055189361e-07, -4.2615546609004666e-07, 1.7563914642376548e-07, 7.3564939478075984e-09, 1.4164209487834952e-08, -3.7579570788212092e-09, -9.1149437390219967e-11, -1.3996911244515235e-10, 1.0396432280064365e-10, 3.0849411160370835e-11, -1.1168298816137401e-12, -2.4340340967808974e-11, 6.8039561587933048e-11, 4.1086605607554630e-11, 2.0925293751439603e-11, -2.4191594636801400e-12, 1.7947213268483531e-13, -2.4243524126155852e-12, -1.4656352791565103e-11, -1.0438094128189385e-11, -1.6548685165262977e-12, 1.3021829708276256e-11, 1.0739049406682799e-11, 1.3458713310487980e-11, 2.5125102519341080e-11, -1.2384913407326170e-11, 7.2920305210777414e-11, -9.9100171645216673e-11, 2.3023400460425725e-10, -5.7826135633348708e-10, 1.2606230564635168e-09, -1.4191420972392566e-09, -1.9479395672329419e-05, 2.2332619445666058e-03, -2.4274695524498973e-03, -4.9536253264254896e-03, -6.1944431271984644e-03, -7.1405597986891646e-03, -7.0465343485927243e-03, -6.4356946021434241e-03, -5.9399082340640535e-03, -5.8283331295618801e-03, -5.8703548654344961e-03, -5.7663454083352259e-03, -5.9186622871251968e-03, -6.4154007873662017e-03, -7.0395857774837589e-03, -7.0279128951388041e-03, -4.9297153585354126e-03, -1.0590257494592224e-03, 2.4805480262520967e-04, 3.4298690551842070e-05, 5.8638344430958652e-05, -1.5625660415391495e-05, 1.2297255063076977e-06, -2.0772626010033752e-06, 3.7968285473283236e-07, -3.4384594501394227e-08, 5.1011519235262537e-08, -6.0974503597252538e-09, 4.3305650786282929e-10, -1.4967754575372950e-09, -1.4653072714075101e-10, -3.8966563184689509e-11, 1.4913420975579128e-11, -6.4599621496259224e-12, 1.1417438202558985e-11, -5.6912619555244889e-11, -3.3038362600183377e-11, -1.5628007080711187e-11, 1.9765938289329626e-12, -1.0525840724202873e-12, -1.7129246697271394e-12, 1.0016910911847532e-11, 4.6391372189071023e-12, 5.9626847730143151e-12, -1.4291584408965274e-11, 3.3149039069257924e-12, -5.8438410360794890e-12, -2.4459905455243014e-11, 4.9396902367104811e-11, -1.2556450237205530e-10, 2.3207794627028155e-10, -4.5694059560424938e-10, 1.2423443853520899e-09, -2.6265804253799985e-09, 2.9996736422913117e-09, 1.4828707424221144e-05, 7.1911693209583704e-04, -7.5550451446320245e-04, -3.3377138001285112e-03, -6.2052408497867730e-03, -6.8636011055778837e-03, -7.2992733590865264e-03, -7.3283181662081448e-03, -7.0697648723872311e-03, -6.8626068041184873e-03, -6.6766704023352511e-03, -6.4481877210245814e-03, -6.4933226894909948e-03, -6.7843336385428263e-03, -7.4630518609021396e-03, -5.3122994876330966e-03, -2.7946471304129998e-03, 1.5239189161403823e-04, -5.1660996635239401e-05, 1.6061103014353503e-04, -1.1957480819010740e-05, 5.3888135421194640e-06, -4.8789484729506137e-06, 3.4492952469429832e-07, -1.6740774705565654e-07, 1.2263055069075914e-07, -2.0911257388222040e-09, 4.1516696187675339e-09, -2.4496073647978494e-09, -1.4939905391910153e-10, -1.0505159285870147e-10, 4.2152022920304705e-11, 4.8898552850069887e-11, 2.6142519220359248e-11, -5.1638990663811085e-12, 1.8878320402152676e-12, -3.0565460102174868e-12, -1.4538169116912886e-12, -8.7427612892321260e-13, 3.8372435383262488e-12, 4.7280691189456603e-12, 1.1938022998533165e-12, 8.2454263143801054e-12, -1.7876231094351991e-11, 2.3490621340466200e-11, -2.9801568331155881e-11, 3.4924068845199052e-12, 2.9243807896095486e-11, -1.1375975075139655e-10, 2.4313827513833264e-10, -4.9848978850991488e-10, 9.4021066279759147e-10, -2.6246646548863661e-09, 5.5022586400305107e-09, -6.3708966470399364e-09, 3.8401346643060198e-04, -6.9602536467768591e-04, 1.3662200828668870e-03, -2.0717778843785846e-03, -3.9946192726804317e-03, -4.6661404922913180e-03, -5.0000643961867486e-03, -5.3504678196114527e-03, -5.2616504443125517e-03, -5.0864963329580945e-03, -4.8448788706568352e-03, -4.6331295210689447e-03, -4.6088547775606156e-03, -4.7756875834908535e-03, -5.1628348368133771e-03, -2.9894870880511869e-03, -7.0290287607507776e-04, 2.0363382993101410e-04, 6.4545988411606007e-05, 9.7901607898335304e-05, -6.8600243885528892e-06, 8.0865014533601487e-07, -2.8709306837869863e-06, 2.0169948649321643e-07, -5.6772291953248758e-08, 8.0468578560541478e-08, -3.7556574975601206e-09, 2.0636975701178364e-09, -2.3691816204186866e-09, 2.9753278372969191e-11, -7.8589118746768064e-11, 5.9875717394169276e-11, -3.4300775192180541e-11, -1.5595781285328292e-11, 1.2379922662095894e-12, -2.0028341778024344e-12, -3.0695533463111213e-13, 2.6045742711026942e-13, 5.2962162108184663e-13, -2.5037402435600792e-12, -4.4520557216948947e-12, 2.7591297302453910e-13, -1.7092111417611050e-11, 3.6864753220552937e-11, -7.2029386361666115e-11, 6.8011140989809871e-11, -3.4000406656797821e-11, -5.4841977313591084e-11, 2.1785176874261625e-10, -5.0585126712410222e-10, 1.0287206754847067e-09, -1.9707287980327837e-09, 5.4972007631701181e-09, -1.1579172768186319e-08, 1.3440819904980694e-08, 2.2586187136813634e-04, 1.3291540179263123e-04, -1.8572013861077201e-06, -9.5596826710064417e-05, -7.9798761038359046e-04, -8.5511864423067421e-04, -9.6064597448722311e-04, -1.0165521452667886e-03, -1.0255181673244976e-03, -9.7377896014691490e-04, -9.0600712328858801e-04, -8.4718293501719749e-04, -8.4046303560430385e-04, -9.5204120277918997e-04, -9.6358505232993844e-04, -5.0441937145557017e-04, 1.3466156416408421e-04, 2.5860467517293210e-06, 1.4094821351416436e-04, -3.4921742966397430e-08, 8.8871859709159246e-06, -6.2171327890166107e-06, 2.6706928210498519e-07, -4.1533124546248488e-07, 1.7866189288827405e-07, -6.6738418051214953e-09, 1.3288263320075785e-08, -4.4743414055726204e-09, 5.4582181276911085e-11, -3.6845231577678668e-10, 1.1418896245772060e-10, 1.2642577685694628e-12, 7.9068414684559107e-12, -6.6839937989775222e-12, -5.6874934991658910e-12, 8.2343948825357172e-13, -7.6866792553427488e-13, -2.3805663386736176e-12, -3.8516838373262030e-12, -5.5298255124264228e-12, -2.1804568784214440e-12, -1.1512883663989185e-11, 7.6212608272896443e-12, -1.0540836953287780e-10, 1.6828718019806788e-10, -1.9185833737694891e-10, 1.0519421531768325e-10, 7.5239640906499261e-11, -4.2742401371725913e-10, 1.0341896792068206e-09, -2.1306557568614992e-09, 4.1138210034666334e-09, -1.1508044493908909e-08, 2.4342577019213774e-08, -2.8334530178739104e-08, -1.9910289868108294e-05, 2.4087133033959618e-04, -1.8523165821213888e-04, 4.4007222302402721e-04, 8.8807496243801989e-04, 9.6383307604687787e-04, 1.0981192526916470e-03, 1.1766047610651323e-03, 1.1719525778545944e-03, 1.1418339368925653e-03, 1.1038003866984739e-03, 1.0711758356013804e-03, 1.0550943137512536e-03, 1.0108369695999292e-03, 1.0568979748733949e-03, 6.3815336373358039e-04, 2.5389106730478741e-04, 5.1533204366246537e-05, 1.7296540326876319e-05, 2.9308972124831830e-06, -5.0229298033264351e-06, -1.2967799753925370e-06, -5.0691549873373241e-07, 8.6273594537296773e-08, 3.7540661654294908e-08, 1.8379156628767690e-08, -1.0565716968328163e-09, -1.0321141050650094e-09, -5.6748462526345911e-10, -3.1829888551271335e-11, 1.8341691230064350e-11, 1.9717455858152266e-11, 6.5059049998445612e-12, 4.5896502744169343e-12, 6.1597747031110622e-12, 1.7171007454450105e-12, 3.4139662668034032e-12, 4.6374930805226366e-12, 4.4145933924492203e-12, 6.3474721897875674e-12, -2.6806408926372677e-12, 6.2381052743070570e-12, -4.7218324627888719e-12, 2.4339717958135609e-10, -4.3046139265937033e-10, 4.9408869270267664e-10, -3.2397106178305712e-10, -7.7315240147590725e-11, 8.1702216259832428e-10, -2.1125061214211094e-09, 4.3978280010736892e-09, -8.5729931270303594e-09, 2.4067159392140991e-08, -5.1112705640003753e-08, 5.9744221963739519e-08, -1.7859678070642013e-05, 3.2201589404104013e-05, -6.2687900805550098e-05, 2.2118517252633289e-04, 3.8026553687511323e-04, 4.8833143029024771e-04, 5.3327092587310276e-04, 5.7134067919940162e-04, 5.7069678275994962e-04, 5.5514083592266006e-04, 5.3378890482874697e-04, 5.1891434990314345e-04, 5.1087268608368541e-04, 5.0967657295185320e-04, 4.7317814020607016e-04, 3.0375916775313150e-04, 1.2705833758424386e-04, 1.7215297916797403e-06, 1.7756851199238221e-06, -8.3915064400353159e-06, -2.0486422392929343e-06, -1.0063296475069201e-06, 4.3279195279199946e-08, 5.0458887334924691e-08, 3.5914099485241831e-08, 4.8999739425735576e-09, -1.0407536425824804e-09, -9.9341256309384493e-10, -2.5884968468800271e-10, -1.6515063242742573e-12, 9.1804333232636814e-12, -6.6560965723480581e-12, -1.2288708597799416e-11, -1.4222757059546495e-11, -1.5856180355256627e-11, -1.5164694857922739e-11, -1.5812424910026032e-11, -1.7286251369121736e-11, -1.6545044116212174e-11, -2.2948773686481266e-11, -1.6259920113895904e-12, 4.0975802828926988e-11, 3.5776450107560115e-11, -4.1328237425190817e-10, 1.2012358941750068e-09, -1.1855546934794181e-09, 9.6498709196979338e-10, -1.8712000698917208e-11, -1.5312999332092736e-09, 4.2798825958950681e-09, -9.0798562835114893e-09, 1.7800043222368500e-08, -5.0282902386983297e-08, 1.0720235978003284e-07, -1.2595142487477340e-07, -1.6336598055857266e-05, -3.5014633223885640e-05, 2.2774279766023372e-05, -6.0494373215016421e-05, -1.2784377411906821e-04, -1.3187858745431456e-04, -1.4470258240525252e-04, -1.6397729695594165e-04, -1.6248913398333314e-04, -1.5930409441324705e-04, -1.5217828313814769e-04, -1.4441779600927324e-04, -1.4070921084440718e-04, -1.3492986774569365e-04, -1.6551747605108094e-04, -7.8537018931535210e-05, -1.7402991467970028e-05, -3.0237697870922728e-06, -7.6083166720025165e-06, -2.5537792253396631e-06, -1.4174573788663112e-06, 9.5221398087449657e-09, 5.0338370063360846e-08, 5.9289002595110238e-08, 1.2889644378862204e-08, 8.8936812767310448e-10, -1.2168066496618443e-09, -4.1921511067751806e-10, 7.4272445588522903e-11, 2.0014597634397321e-10, 1.9333064305276232e-10, 1.7896755366737793e-10, 1.7176309143442439e-10, 1.7288500511291986e-10, 1.7468356866253212e-10, 1.7384396431619799e-10, 1.7234229424427025e-10, 1.7221907187554668e-10, 1.6977577850518788e-10, 1.8428577956176861e-10, 1.8390313409480732e-10, 3.6814994710523616e-11, 7.6316920561954674e-10, 1.4019004709268229e-09, -2.5550462722130629e-09, 3.3508176875557405e-09, -2.3991905771097999e-09, 6.6021285313744293e-10, 2.9038118003893443e-09, -8.5512945544041763e-09, 1.8719870259822913e-08, -3.6900853261911948e-08, 1.0480214818545108e-07, -2.2469104181670890e-07, 2.6537204108733475e-07, 2.0739219627174390e-06, -1.9196401617975283e-05, 1.5338394287062955e-05, -5.0998258542823017e-05, -8.9122073593197147e-05, -1.0884311171243700e-04, -1.2169661598857365e-04, -1.3080280411377487e-04, -1.3280971129886465e-04, -1.2995540452132026e-04, -1.2544040046658794e-04, -1.2106352362400291e-04, -1.1735773117596549e-04, -1.1610544228635167e-04, -1.0819202245255372e-04, -6.9033442046138871e-05, -2.9508229657739795e-05, -3.8327444774750966e-06, -3.3000214034310284e-06, -5.0924061913322494e-07, -1.3755413659732830e-07, 1.5235385302894461e-07, 5.7115878370676918e-08, 2.8510744883296791e-08, 1.1104932260211364e-09, -1.1603788059816409e-09, -1.4064669505539813e-09, -4.9810123910133848e-10, -2.9676961013419198e-10, -2.5064197757746799e-10, -2.7083593709203123e-10, -2.8003049101017925e-10, -2.8215186101149953e-10, -2.8203362833090911e-10, -2.8277940218915908e-10, -2.8451409598510141e-10, -2.8734601520028977e-10, -2.9067378086206248e-10, -2.7562199641758059e-10, -2.4669800783357759e-10, -2.3354697789947955e-10, 5.2406806203149879e-10, -2.0783529449861469e-09, -2.6795028257829701e-09, 6.8016538013783434e-09, -8.1662035241597541e-09, 6.5689333339155609e-09, -2.4497053786529110e-09, -5.0025894997654530e-09, 1.7334657440373769e-08, -3.8144161760601814e-08, 7.6511784078553413e-08, -2.1802212720953285e-07, 4.7020923566593043e-07, -5.5919971769357452e-07, 2.6785053891526097e-06, 6.5641937965701816e-06, -5.8046622167977693e-06, 8.5129171705017803e-06, 2.8864259221120236e-05, 2.5651128901767531e-05, 2.8935292177595384e-05, 3.2245503075990778e-05, 3.1443233823952310e-05, 3.0076693779350350e-05, 2.8167082143981670e-05, 2.6527530259064236e-05, 2.6630204092562004e-05, 2.6699959923943972e-05, 3.6351557484881614e-05, 1.4745767743859842e-05, -1.7159028067655503e-06, -8.4916697634551227e-07, -3.2067882805355283e-07, 1.3337439452062831e-07, 1.9805775234844978e-07, 8.6697156212667747e-08, 3.3120192284759060e-08, 4.0607241285066809e-09, -3.1700340825100738e-10, -6.7226106924061710e-10, 3.7340625966167211e-10, 7.5255113222310634e-10, 8.4709515828706658e-10, 8.3122153225149292e-10, 8.1797458379145177e-10, 8.1432306310949033e-10, 8.1419719764560562e-10, 8.1337078494973444e-10, 8.1017437642558546e-10, 8.0448524434457123e-10, 8.0338593704031361e-10, 8.3148185320465473e-10, 8.8737947065843474e-10, 9.0969824698854986e-10, 1.0620142654291405e-09, -2.2442332665904927e-09, 5.5340364827033243e-09, 2.9116386543546341e-09, -1.9059074321797070e-08, 1.9107787272570897e-08, -1.7966637856289824e-08, 7.4379369512447835e-09, 8.0925295293035604e-09, -3.4328405247759097e-08, 7.8382567839097028e-08, -1.5730921227273542e-07, 4.5292890219622572e-07, -9.8238254033541222e-07, 1.1778571039761099e-06, -9.8077861029714775e-08, 4.1773606680892096e-06, -3.6144876207003110e-06, 1.0972439205106355e-05, 1.8756577057890168e-05, 2.3367947234698497e-05, 2.5538749370446201e-05, 2.7609163272948600e-05, 2.7966519992560224e-05, 2.7178836192881528e-05, 2.6096428748637046e-05, 2.5048274822317418e-05, 2.4422855781185138e-05, 2.4808181251452510e-05, 2.3427664214911714e-05, 1.4447896598469845e-05, 4.8567373603694000e-06, 3.3245115786088993e-07, 5.2674135686271413e-07, 9.5178108374218470e-08, 1.2036412328631082e-07, 1.0108359904648610e-08, -9.8840053280651805e-10, -1.1378161024586282e-08, -9.5123692904746510e-09, -8.4361643102801292e-09, -7.6508565391843024e-09, -7.5237979071766936e-09, -7.5243099084524884e-09, -7.5543171856602264e-09, -7.5633638152894540e-09, -7.5648744971414193e-09, -7.5651171238338109e-09, -7.5689223239124546e-09, -7.5764962675548518e-09, -7.5778171020285476e-09, -7.5541613782186250e-09, -7.4979975196070355e-09, -7.4455059335238293e-09, -6.9927280379436692e-09, -8.1447037230883423e-09, 6.8423031848144529e-10, -3.6346407886992012e-08, -1.7758115135714861e-08, 3.7565974114837225e-08, -5.3752808093499027e-08, 4.2867480449897133e-08, -2.4566722929379725e-08, -1.3928501415606809e-08, 6.6333339411583925e-08, -1.5983851527588688e-07, 3.2401627241863962e-07, -9.3686193469114804e-07, 2.0501165973879631e-06, -2.4789040788389047e-06, -3.9815375352302094e-07, -1.4291230079194997e-06, 1.6440984127324716e-06, -2.7047345965246347e-06, -8.8636613909702164e-06, -7.9762416234710476e-06, -9.4293994426335181e-06, -9.9707284883093772e-06, -1.0017298243569783e-05, -9.3421167846330366e-06, -8.9820188127406886e-06, -8.3861450048891562e-06, -8.4398811994387812e-06, -8.6120091719738001e-06, -1.0484054713169599e-05, -5.4424939270204115e-06, 6.9049289346326259e-07, -7.1479421282861431e-08, 2.9240727746239611e-07, 1.0550662360035755e-07, 6.9736109854225906e-08, 2.1554798078387465e-08, 5.4615406765786030e-09, 8.0114191948444605e-09, 1.0430810526299364e-08, 1.2085216213289680e-08, 1.2571347757000997e-08, 1.2670669626008288e-08, 1.2628760867453882e-08, 1.2601744915234419e-08, 1.2592741128016668e-08, 1.2592051791191199e-08, 1.2588820636481087e-08, 1.2579285783105489e-08, 1.2573059158637722e-08, 1.2600370268527191e-08, 1.2724651332970830e-08, 1.2960105497518502e-08, 1.3305422895946474e-08, 1.1211770776733574e-08, 1.3850676997689826e-08, -1.7766386423368136e-08, 8.4474126916189111e-08, 1.8421219134508518e-08, -1.0902806008147511e-07, 1.2873972586938121e-07, -1.0974991029606002e-07, 6.7337630228758716e-08, 1.3438251003292101e-08, -1.3553566621891250e-07, 3.1898353861341960e-07, -6.6615682328859116e-07, 1.9334778116608664e-06, -4.2642771034152177e-06, 5.2188467897984134e-06, -2.4750405302077089e-08, -1.4460091129854307e-06, 1.4741024175335534e-06, -3.4443495667764749e-06, -4.0502487833587314e-06, -6.9133722786426932e-06, -5.8835703670816197e-06, -7.5479534790562353e-06, -6.6774740381317366e-06, -7.0401514849563473e-06, -6.1935558064996066e-06, -6.2981408648771220e-06, -6.0667359166599599e-06, -5.8705241571810340e-06, -7.0032580840456715e-06, -2.1195456617658509e-06, -3.0739517787974069e-06, 8.4054189914721040e-07, -4.0310028231977735e-07, 9.8566082382166645e-08, -6.9092510217479142e-08, -4.4889342170695637e-09, -2.4270256534922926e-08, -3.6730483225392652e-08, -4.0627657935967103e-08, -3.9687344659613839e-08, -3.8719532032943085e-08, -3.8439319092147374e-08, -3.8428634939447447e-08, -3.8467586805810902e-08, -3.8484698466450780e-08, -3.8489620809203364e-08, -3.8498239789353178e-08, -3.8506534812360414e-08, -3.8475325132120933e-08, -3.8315473018370270e-08, -3.8020323478768882e-08, -3.7916230988716037e-08, -3.9844805885366937e-08, -3.7406292515839053e-08, -5.2337395370951863e-08, 4.8339133931844238e-08, -2.4062095421424710e-07, 2.2574709775124990e-09, 3.0341625481327891e-07, -2.9300280868227446e-07, 3.0464936211400950e-07, -1.6407338376822622e-07, -3.7477314914630133e-10, 2.4888622597758758e-07, -6.6029962950912152e-07, 1.3471179340562509e-06, -3.9769513608192697e-06, 8.8467796698944723e-06, -1.0962170411420863e-05, 3.9965266683886225e-07, 1.8552802332956497e-06, -1.9199796104629177e-06, 2.9886180818473060e-06, 4.3066040364067582e-07, 4.7393448141721389e-06, 1.0971449696459135e-06, 4.3142691326381044e-06, 2.3932381104721512e-06, 3.9670806189703867e-06, 2.7146681677303608e-06, 3.4188202731044726e-06, 2.6860196378070134e-06, 1.7179496647964920e-06, 5.3533940062543139e-06, -2.0578619281241134e-06, 5.1540403998103944e-06, -2.2254902300368591e-06, 1.0231807167187775e-06, 1.5274868456075300e-07, 7.3354934726531720e-07, 4.3600163121776479e-07, 3.3377547981326998e-07, 3.0943287423828517e-07, 3.0495961774850691e-07, 3.0444430521183287e-07, 3.0490978143469312e-07, 3.0551498273045517e-07, 3.0558905955732174e-07, 3.0555650909605330e-07, 3.0552106591920391e-07, 3.0550625436447055e-07, 3.0549504801289577e-07, 3.0550631552556193e-07, 3.0564050528027469e-07, 3.0602815310131707e-07, 3.0670313788650448e-07, 3.0631466009425207e-07, 3.0611885728511852e-07, 2.7662855222010093e-07, 3.0373428769019518e-07, 5.3402816670177801e-08, 1.1217076224749709e-06, 2.7552308549515930e-07, -5.7095498970241923e-07, 8.2344166431411875e-07, -7.1042963129160086e-07, 5.0569328707145145e-07, -1.1617072926892180e-08, -4.6692354727269347e-07, 1.2972567091859566e-06, -2.7639619617223291e-06, 8.1195079745617280e-06, -1.8275348914727728e-05, 2.2993761803541922e-05, -1.3782921215961313e-06, -3.3517955498604877e-06, 2.9538516771835137e-06, -3.1966403733120095e-06, 8.2078180661873668e-06, -2.8839221009047122e-06, 5.9677752578431165e-06, -1.0369018498893046e-06, 4.0194476697424930e-06, 8.7995469438828522e-07, 3.5220308213512741e-06, 2.7072322431737073e-07, 1.0334861631142167e-06, 2.4583607523415152e-06, -2.6896595276895696e-06, 1.1819278694003357e-05, -9.9362690554792793e-06, 6.1954154706933147e-06, -2.7905159965042783e-06, -4.0148051071858815e-07, -1.5259609750246494e-06, -4.7232631399349062e-07, -3.7483081082335663e-07, -4.0679261050969207e-07, -4.6618848105733218e-07, -4.7740483769117756e-07, -4.7656924091399517e-07, -4.7500978054464474e-07, -4.7446429013106323e-07, -4.7451701515918276e-07, -4.7459548469067385e-07, -4.7463519348852853e-07, -4.7464005197131237e-07, -4.7453658260195519e-07, -4.7412296233585228e-07, -4.7340173148726250e-07, -4.7431468076241409e-07, -4.7840912269532109e-07, -5.0109080192099601e-07, -4.4660103373003052e-07, -5.5643641504933452e-07, 2.1870365203108212e-07, -2.2108933848042256e-06, 6.1928386959958157e-08, 1.8591030568095024e-06, -2.1493324198814528e-06, 1.6678686256960118e-06, -1.2349066948790302e-06, 3.6466197507988019e-07, 1.0031026418189440e-06, -2.5614085492680835e-06, 5.5463381148550608e-06, -1.6495574520078264e-05, 3.7501427074120540e-05, -4.8011008269309430e-05, 3.7095142373887429e-06, 1.1277287111271898e-05, -9.4322551751031890e-06, 1.4745119484171941e-05, -1.1523458665209374e-05, 1.3816843922995550e-05, -1.1731683289654959e-05, 3.4215765729386782e-06, -7.1134791586741075e-06, 1.9768280609816502e-06, -5.3651823853084757e-06, -1.5719743082648341e-06, -9.1844675664531916e-06, -9.6030738379951353e-06, 8.4189305223636435e-06, -1.6339120150222000e-05, 3.7359962956330607e-05, -1.2645879265501738e-05, 6.4999220079001293e-06, -3.0178642389552097e-06, 1.7669165851361829e-06, 8.8117240563774708e-07, 1.3688259712127220e-06, 1.4239605447802066e-06, 1.4525430344747129e-06, 1.4251688086019108e-06, 1.4206233244540062e-06, 1.4225951117608968e-06, 1.4236861456452820e-06, 1.4238953954821680e-06, 1.4237851212842731e-06, 1.4237262378854381e-06, 1.4237473341268097e-06, 1.4239834323361792e-06, 1.4245419457782171e-06, 1.4243482178496070e-06, 1.4217945452173382e-06, 1.4041670963509860e-06, 1.4225474364964986e-06, 1.2640670021806118e-06, 1.7034229703784558e-06, -2.5534894552501210e-07, 6.5895155020557431e-06, 5.9077375271898019e-07, -5.0558189440530997e-06, 4.0357741901255254e-06, -5.5963499587981247e-06, 2.9575094856329823e-06, -5.4079491819663400e-07, -1.2385004411396769e-06, 5.3156181846090653e-06, -1.1057101368517827e-05, 3.3187512259923342e-05, -7.6123464062915688e-05, 9.9475613444713340e-05, -1.5114962966089455e-05, -3.1835286401476397e-05, 1.6800703121545824e-05, -3.1218352173266093e-05, 3.5058956999203979e-05, -2.9990499958807565e-05, 2.4392291056780924e-05, -1.7674964327439591e-05, 6.9717432529814438e-06, -1.2684060051261492e-05, 1.4941338077750776e-06, -1.8606772054528820e-05, -2.3732977943793920e-06, 1.1076137984566969e-07, -1.7901513104177924e-05, 4.6673023929194243e-05, -6.7195596708076325e-05, 3.3538309659365861e-05, -1.9266075219926033e-05, -1.0489725426973727e-05, -2.2104539469623599e-05, -1.3230447540049054e-05, -1.0576159430115582e-05, -1.0110687645856350e-05, -1.0443279503102122e-05, -1.0517536326444418e-05, -1.0524957148214592e-05, -1.0515109956483619e-05, -1.0511196453044717e-05, -1.0510757240322102e-05, -1.0510977911337282e-05, -1.0511108321824514e-05, -1.0511052903563469e-05, -1.0510448631277262e-05, -1.0509720779165103e-05, -1.0510504650360487e-05, -1.0534869271036071e-05, -1.0564906715004744e-05, -1.0687800632846426e-05, -9.9619409542759036e-06, -1.0104630633337987e-05, -5.4238779712403114e-06, -2.4312341123718757e-05, -6.1112901542409621e-06, 1.0077640916542757e-05, -1.3667327128761772e-05, 1.1017054079111299e-05, -9.5792582058837686e-06, 2.3912729368641070e-06, 3.3749411347365477e-06, -9.5050664491906980e-06, 2.2025279209260049e-05, -6.5843403668433206e-05, 1.5222932937742750e-04, -2.0275675876228576e-04, 5.6209262941358076e-05, 5.2927602083579692e-05, -3.9837512835538526e-05, 5.7022484358332736e-05, -1.0536048116448638e-04, 7.5213962404506104e-05, -4.4969527827933009e-05, 4.9600074168532765e-05, -2.1328269852113890e-05, 1.2802873704906292e-05, -2.8075173466590719e-05, 2.1244184932246724e-05, -1.2731066816304426e-05, 3.9073910829908604e-05, 4.6052833810917432e-05, -1.2397563075601699e-04, 1.0035282605677610e-04, -5.9245924635270449e-05, 5.3176217682131130e-05, 1.5853238164165173e-06, 1.8863457708492132e-05, 8.3266736429172877e-06, 1.0151935978649530e-05, 9.5796722843185985e-06, 1.0177138704024931e-05, 1.0043220637246847e-05, 1.0051089463804179e-05, 1.0046113552729846e-05, 1.0051192303377326e-05, 1.0051754922814151e-05, 1.0051851198878054e-05, 1.0051703513438236e-05, 1.0051928091405217e-05, 1.0051851469303338e-05, 1.0053500840119222e-05, 1.0042925156244036e-05, 1.0050203267602349e-05, 9.9386245119953117e-06, 1.0249634999117730e-05, 9.1280434324019194e-06, 1.2776096069940483e-05, 3.4575964788930428e-06, 3.2503269108507393e-05, -2.3663538153929561e-06, -3.5488480872633132e-05, 4.6415291789892767e-05, -2.9017680605294451e-05, 1.5571746621052991e-05, -9.7860498371677221e-06, -3.7107732967682841e-06, 1.9453014425217102e-05, -4.2117248469604636e-05, 1.2602042013050169e-04, -2.9504938470233718e-04, 3.9975796890721459e-04, -2.3287178785672365e-04, -1.4153808287187307e-04, 2.8749528561735005e-04, -4.0230168644959528e-04, 6.7118216031548245e-06, -3.6069532126247437e-04, 3.6702942303689506e-04, -1.3868065685859743e-05, 1.5796988355395308e-04, -1.4948401557030727e-04, 4.4655640230789606e-05, -8.3805854948035274e-05, 3.6502982965062186e-04, 4.0603704391039414e-04, 1.5803897931368494e-04, -2.4570229310751264e-04, -1.0878705080509072e-03, 2.6001400338431711e-04, 1.1790879394949204e-04, 8.3882556420501004e-05, -5.0499515019982518e-05, -3.3261560784727146e-05, -3.4457055733894387e-05, -2.9091847649585068e-05, -3.1031202345060434e-05, -3.1367040857625307e-05, -3.1574511682440267e-05, -3.1550480985682877e-05, -3.1544244713554726e-05, -3.1540701647662835e-05, -3.1541198864216274e-05, -3.1541227751762872e-05, -3.1541497044428621e-05, -3.1538774425572046e-05, -3.1545256296873573e-05, -3.1534504431305564e-05, -3.1661087187428034e-05, -3.1316117648519571e-05, -3.1627412191005341e-05, -2.4783122901614948e-05, -3.1489822793594999e-05, 6.5378441950500281e-06, -1.3347927984766787e-04, -1.4358371411319162e-04, 1.2938275310461203e-04, 4.0286737721861518e-06, 1.7889920373711805e-04, -1.4496383802968266e-04, 1.6419519004383896e-05, 3.4060076788758331e-06, -5.7326183463807419e-05, 1.3896643780274276e-04, -4.1300448470275256e-04, 9.3843501646773825e-04, -1.2897198326516533e-03, 2.4558949023264524e-03, 6.3567084066940894e-04, -1.0380903215239863e-04, 1.3672731441557147e-03, -3.0823537520749829e-03, 2.0273225427974786e-03, -1.0289322536192469e-03, 9.8796592034182396e-04, -2.3106677856626900e-04, -4.8916032756626815e-05, -4.5337854478405548e-04, 7.4736554664027455e-04, -1.0558699438064506e-03, 2.3356290447467537e-03, -1.4785988760301211e-04, -5.2693706976171019e-04, -2.2756005320593718e-03, 1.8043049543559546e-03, 3.2073842953761413e-04, 4.0955074876554713e-04, 4.1102983186644973e-04, 4.2902511811033909e-04, 4.1632369302343548e-04, 4.2451280909284865e-04, 4.2263383492575858e-04, 4.2211842268381132e-04, 4.2205537669024498e-04, 4.2207263784986712e-04, 4.2208350876856565e-04, 4.2208481232149005e-04, 4.2208441562556059e-04, 4.2208411629406220e-04, 4.2208446219226426e-04, 4.2208480794268984e-04, 4.2208854496605046e-04, 4.2207043671696129e-04, 4.2205862859729336e-04, 4.2188694131538469e-04, 4.2274569862254472e-04, 4.2479659131157118e-04, 4.2670710171820907e-04, 4.3782401951555986e-04, 4.7517395334096852e-04, 1.5840897254137585e-04, -1.1340320786175518e-03, 1.7635801794882531e-03, -9.5310951472820250e-04, 2.8980248909544343e-04, -1.5573869009486221e-04, 1.0704750241152458e-05, 1.4009172425148188e-04, -3.3248502448320234e-04, 1.0189783938150390e-03, -2.2971064489590957e-03, 3.0585901566939850e-03}; static const casadi_real casadi_c5[129] = {-5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -4.3181818181818183e+00, -3.6363636363636367e+00, -2.9545454545454550e+00, -2.2727272727272734e+00, -1.5909090909090917e+00, -9.0909090909091006e-01, -2.2727272727272840e-01, 4.5454545454545325e-01, 1.1363636363636349e+00, 1.8181818181818166e+00, 2.4999999999999982e+00, 3.1818181818181799e+00, 3.8636363636363615e+00, 4.5454545454545432e+00, 5.2272727272727249e+00, 5.9090909090909065e+00, 6.5909090909090882e+00, 7.2727272727272698e+00, 7.9545454545454515e+00, 8.6363636363636331e+00, 9.3181818181818148e+00, 9.9999999999999964e+00, 1.0681818181818178e+01, 1.1363636363636358e+01, 1.2045454545454541e+01, 1.2727272727272727e+01, 1.3409090909090910e+01, 1.4090909090909093e+01, 1.4772727272727273e+01, 1.5454545454545455e+01, 1.6136363636363637e+01, 1.6818181818181820e+01, 1.7500000000000000e+01, 1.8181818181818180e+01, 1.8863636363636363e+01, 1.9545454545454547e+01, 2.0227272727272727e+01, 2.0909090909090907e+01, 2.1590909090909090e+01, 2.2272727272727273e+01, 2.2954545454545453e+01, 2.3636363636363633e+01, 2.4318181818181817e+01, 25., 2.5681818181818180e+01, 2.6363636363636360e+01, 2.7045454545454543e+01, 2.7727272727272727e+01, 2.8409090909090907e+01, 2.9090909090909086e+01, 2.9772727272727270e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -1.6934090909090913e+00, -1.3527272727272732e+00, -1.0120454545454551e+00, -6.7136363636363705e-01, -3.3068181818181897e-01, 9.9999999999988987e-03, 3.5068181818181721e-01, 6.9136363636363551e-01, 1.0320454545454534e+00, 1.3727272727272712e+00, 1.7134090909090895e+00, 2.0540909090909079e+00, 2.3947727272727253e+00, 2.7354545454545436e+00, 3.0761363636363619e+00, 3.4168181818181802e+00, 3.7574999999999985e+00, 4.0981818181818159e+00, 4.4388636363636342e+00, 4.7795454545454525e+00, 5.1202272727272700e+00, 5.4609090909090883e+00, 5.8015909090909066e+00, 6.1422727272727240e+00, 6.4829545454545432e+00, 6.8236363636363606e+00, 7.1643181818181780e+00, 7.5049999999999972e+00, 7.8456818181818146e+00, 8.1863636363636338e+00, 8.5270454545454513e+00, 8.8677272727272687e+00, 9.2084090909090932e+00, 9.5490909090909106e+00, 9.8897727272727280e+00, 1.0230454545454547e+01, 1.0571136363636365e+01, 1.0911818181818184e+01, 1.1252500000000001e+01, 1.1593181818181819e+01, 1.1933863636363638e+01, 1.2274545454545455e+01, 1.2615227272727275e+01, 1.2955909090909092e+01, 1.3296590909090909e+01, 1.3637272727272727e+01, 1.3977954545454546e+01, 1.4318636363636363e+01, 1.4659318181818183e+01, 15., 1.5340681818181817e+01, 1.5681363636363637e+01, 1.6022045454545456e+01, 1.6362727272727273e+01, 1.6703409090909091e+01, 1.7044090909090908e+01, 1.7384772727272725e+01, 1.7725454545454546e+01, 1.8066136363636364e+01, 1.8406818181818181e+01, 1.8747499999999999e+01, 1.9088181818181816e+01, 1.9428863636363634e+01, 1.9769545454545455e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01}; void casadi_de_boor(casadi_real x, const casadi_real* knots, casadi_int n_knots, casadi_int degree, casadi_real* boor) { casadi_int d, i; for (d=1;d<degree+1;++d) { for (i=0;i<n_knots-d-1;++i) { casadi_real b, bottom; b = 0; bottom = knots[i + d] - knots[i]; if (bottom) b = (x - knots[i]) * boor[i] / bottom; bottom = knots[i + d + 1] - knots[i + 1]; if (bottom) b += (knots[i + d + 1] - x) * boor[i + 1] / bottom; boor[i] = b; } } } void casadi_fill(casadi_real* x, casadi_int n, casadi_real alpha) { casadi_int i; if (x) { for (i=0; i<n; ++i) *x++ = alpha; } } void casadi_fill_casadi_int(casadi_int* x, casadi_int n, casadi_int alpha) { casadi_int i; if (x) { for (i=0; i<n; ++i) *x++ = alpha; } } casadi_int casadi_low(casadi_real x, const double* grid, casadi_int ng, casadi_int lookup_mode) { switch (lookup_mode) { case 1: { double g0, dg; casadi_int ret; g0 = grid[0]; dg = grid[ng-1]-g0; ret = (casadi_int) ((x-g0)*(ng-1)/dg); if (ret<0) ret=0; if (ret>ng-2) ret=ng-2; return ret; } case 2: { casadi_int start, stop, pivot; if (ng<2 || x<grid[1]) return 0; if (x>grid[ng-1]) return ng-2; start = 0; stop = ng-1; while (1) { pivot = (stop+start)/2; if (x < grid[pivot]) { if (pivot==stop) return pivot; stop = pivot; } else { if (pivot==start) return pivot; start = pivot; } } } default: { casadi_int i; for (i=0; i<ng-2; ++i) { if (x < grid[i+1]) break; } return i; } } } void casadi_nd_boor_eval(casadi_real* ret, casadi_int n_dims, const casadi_real* all_knots, const casadi_int* offset, const casadi_int* all_degree, const casadi_int* strides, const casadi_real* c, casadi_int m, const casadi_real* all_x, const casadi_int* lookup_mode, casadi_int reverse, casadi_int* iw, casadi_real* w) { casadi_int n_iter, k, i, pivot; casadi_int *boor_offset, *starts, *index, *coeff_offset; casadi_real *cumprod, *all_boor; boor_offset = iw; iw+=n_dims+1; starts = iw; iw+=n_dims; index = iw; iw+=n_dims; coeff_offset = iw; cumprod = w; w+= n_dims+1; all_boor = w; boor_offset[0] = 0; cumprod[n_dims] = 1; coeff_offset[n_dims] = 0; n_iter = 1; for (k=0;k<n_dims;++k) { casadi_real *boor; const casadi_real* knots; casadi_real x; casadi_int degree, n_knots, n_b, L, start; boor = all_boor+boor_offset[k]; degree = all_degree[k]; knots = all_knots + offset[k]; n_knots = offset[k+1]-offset[k]; n_b = n_knots-degree-1; x = all_x[k]; L = casadi_low(x, knots+degree, n_knots-2*degree, lookup_mode[k]); start = L; if (start>n_b-degree-1) start = n_b-degree-1; starts[k] = start; casadi_fill(boor, 2*degree+1, 0.0); if (x>=knots[0] && x<=knots[n_knots-1]) { if (x==knots[1]) { casadi_fill(boor, degree+1, 1.0); } else if (x==knots[n_knots-1]) { boor[degree] = 1; } else if (knots[L+degree]==x) { boor[degree-1] = 1; } else { boor[degree] = 1; } } casadi_de_boor(x, knots+start, 2*degree+2, degree, boor); boor+= degree+1; n_iter*= degree+1; boor_offset[k+1] = boor_offset[k] + degree+1; } casadi_fill_casadi_int(index, n_dims, 0); for (pivot=n_dims-1;pivot>=0;--pivot) { cumprod[pivot] = (*(all_boor+boor_offset[pivot]))*cumprod[pivot+1]; coeff_offset[pivot] = starts[pivot]*strides[pivot]+coeff_offset[pivot+1]; } for (k=0;k<n_iter;++k) { casadi_int pivot = 0; for (i=0;i<m;++i) { if (reverse) { ret[coeff_offset[0]+i] += c[i]*cumprod[0]; } else { ret[i] += c[coeff_offset[0]+i]*cumprod[0]; } } index[0]++; { while (index[pivot]==boor_offset[pivot+1]-boor_offset[pivot]) { index[pivot] = 0; if (pivot==n_dims-1) break; index[++pivot]++; } while (pivot>0) { cumprod[pivot] = (*(all_boor+boor_offset[pivot]+index[pivot]))*cumprod[pivot+1]; coeff_offset[pivot] = (starts[pivot]+index[pivot])*strides[pivot]+coeff_offset[pivot+1]; pivot--; } } cumprod[0] = (*(all_boor+index[0]))*cumprod[1]; coeff_offset[0] = (starts[0]+index[0])*m+coeff_offset[1]; } } void casadi_copy(const casadi_real* x, casadi_int n, casadi_real* y) { casadi_int i; if (y) { if (x) { for (i=0; i<n; ++i) *y++ = *x++; } else { for (i=0; i<n; ++i) *y++ = 0.; } } } casadi_real casadi_sq(casadi_real x) { return x*x;} void casadi_mtimes(const casadi_real* x, const casadi_int* sp_x, const casadi_real* y, const casadi_int* sp_y, casadi_real* z, const casadi_int* sp_z, casadi_real* w, casadi_int tr) { casadi_int ncol_x, ncol_y, ncol_z, cc; const casadi_int *colind_x, *row_x, *colind_y, *row_y, *colind_z, *row_z; ncol_x = sp_x[1]; colind_x = sp_x+2; row_x = sp_x + 2 + ncol_x+1; ncol_y = sp_y[1]; colind_y = sp_y+2; row_y = sp_y + 2 + ncol_y+1; ncol_z = sp_z[1]; colind_z = sp_z+2; row_z = sp_z + 2 + ncol_z+1; if (tr) { for (cc=0; cc<ncol_z; ++cc) { casadi_int kk; for (kk=colind_y[cc]; kk<colind_y[cc+1]; ++kk) { w[row_y[kk]] = y[kk]; } for (kk=colind_z[cc]; kk<colind_z[cc+1]; ++kk) { casadi_int kk1; casadi_int rr = row_z[kk]; for (kk1=colind_x[rr]; kk1<colind_x[rr+1]; ++kk1) { z[kk] += x[kk1] * w[row_x[kk1]]; } } } } else { for (cc=0; cc<ncol_y; ++cc) { casadi_int kk; for (kk=colind_z[cc]; kk<colind_z[cc+1]; ++kk) { w[row_z[kk]] = z[kk]; } for (kk=colind_y[cc]; kk<colind_y[cc+1]; ++kk) { casadi_int kk1; casadi_int rr = row_y[kk]; for (kk1=colind_x[rr]; kk1<colind_x[rr+1]; ++kk1) { w[row_x[kk1]] += x[kk1]*y[kk]; } } for (kk=colind_z[cc]; kk<colind_z[cc+1]; ++kk) { z[kk] = w[row_z[kk]]; } } } } void casadi_trans(const casadi_real* x, const casadi_int* sp_x, casadi_real* y, const casadi_int* sp_y, casadi_int* tmp) { casadi_int ncol_x, nnz_x, ncol_y, k; const casadi_int* row_x, *colind_y; ncol_x = sp_x[1]; nnz_x = sp_x[2 + ncol_x]; row_x = sp_x + 2 + ncol_x+1; ncol_y = sp_y[1]; colind_y = sp_y+2; for (k=0; k<ncol_y; ++k) tmp[k] = colind_y[k]; for (k=0; k<nnz_x; ++k) { y[tmp[row_x[k]]++] = x[k]; } } /* Spline:(x[2])->(f) */ static int casadi_f1(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { if (res[0]) casadi_fill(res[0], 1, 0.0); if (res[0]) CASADI_PREFIX(nd_boor_eval)(res[0],2,casadi_c1,casadi_s3,casadi_s2,casadi_s1,casadi_c0,1,arg[0],casadi_s0, 0, iw, w); return 0; } /* jac_helper:(i0[2])->(o0) */ static int casadi_f3(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { if (res[0]) casadi_fill(res[0], 1, 0.0); if (res[0]) CASADI_PREFIX(nd_boor_eval)(res[0],2,casadi_c3,casadi_s6,casadi_s5,casadi_s4,casadi_c2,1,arg[0],casadi_s0, 0, iw, w); return 0; } /* jac_helper:(i0[2])->(o0) */ static int casadi_f4(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { if (res[0]) casadi_fill(res[0], 1, 0.0); if (res[0]) CASADI_PREFIX(nd_boor_eval)(res[0],2,casadi_c5,casadi_s8,casadi_s7,casadi_s1,casadi_c4,1,arg[0],casadi_s0, 0, iw, w); return 0; } /* jac_Spline:(i0[2],i1[1x1,0nz])->(o0[1x2]) */ static int casadi_f2(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { casadi_real **res1=res+1; const casadi_real **arg1=arg+2; casadi_real *w0=w+13, w1; /* #0: @0 = input[0][0] */ casadi_copy(arg[0], 2, w0); /* #1: @1 = jac_helper(@0) */ arg1[0]=w0; res1[0]=(&w1); if (casadi_f3(arg1, res1, iw, w, 0)) return 1; /* #2: output[0][0] = @1 */ if (res[0]) res[0][0] = w1; /* #3: @1 = jac_helper(@0) */ arg1[0]=w0; res1[0]=(&w1); if (casadi_f4(arg1, res1, iw, w, 0)) return 1; /* #4: output[0][1] = @1 */ if (res[0]) res[0][1] = w1; return 0; } /* casadi_impl_ode_fun_jac_x_xdot:(i0[6],i1[6],i2[2],i3)->(o0[6],o1[6x6,12nz],o2[6x6,6nz]) */ static int casadi_f0(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { casadi_int i; casadi_real **res1=res+3, *rr, *ss; const casadi_int *cii; const casadi_real **arg1=arg+4, *cs; casadi_real *w0=w+16, w1, *w2=w+23, w3, w4, w5, w6, w7, w8, w9, w10, w11, w12, w13, w14, w15, w16, w17, w18, w19, *w20=w+46, w21, w22, w23, w24, w25, w26, w27, w28, w29, w30, w31, *w32=w+59, w33, w34, w35, w36, w37, w38, w39, w40, w41, *w42=w+70, w43, *w44=w+73, *w45=w+75, *w46=w+87, *w52=w+92, w53, w54, *w55=w+99, *w56=w+103, *w57=w+107, *w58=w+110, *w59=w+113; /* #0: @0 = input[1][0] */ casadi_copy(arg[1], 6, w0); /* #1: @1 = 867637000 */ w1 = 867637000.; /* #2: @2 = input[0][0] */ casadi_copy(arg[0], 6, w2); /* #3: @3 = @2[3] */ for (rr=(&w3), ss=w2+3; ss!=w2+4; ss+=1) *rr++ = *ss; /* #4: @1 = (@1*@3) */ w1 *= w3; /* #5: @4 = 62150000 */ w4 = 62150000.; /* #6: @5 = @2[1] */ for (rr=(&w5), ss=w2+1; ss!=w2+2; ss+=1) *rr++ = *ss; /* #7: @4 = (@4*@5) */ w4 *= w5; /* #8: @1 = (@1+@4) */ w1 += w4; /* #9: @4 = 970000 */ w4 = 970000.; /* #10: @6 = @2[5] */ for (rr=(&w6), ss=w2+5; ss!=w2+6; ss+=1) *rr++ = *ss; /* #11: @4 = (@4*@6) */ w4 *= w6; /* #12: @1 = (@1-@4) */ w1 -= w4; /* #13: @4 = 40589300 */ w4 = 40589300.; /* #14: @1 = (@1/@4) */ w1 /= w4; /* #15: @4 = 31.5 */ w4 = 3.1500000000000000e+01; /* #16: @7 = 5091.5 */ w7 = 5.0915000000000000e+03; /* #17: @8 = 1 */ w8 = 1.; /* #18: @9 = 0.35 */ w9 = 3.4999999999999998e-01; /* #19: @10 = 2.0944 */ w10 = 2.0943999999999998e+00; /* #20: @10 = (@10+@3) */ w10 += w3; /* #21: @11 = @2[2] */ for (rr=(&w11), ss=w2+2; ss!=w2+3; ss+=1) *rr++ = *ss; /* #22: @10 = (@10+@11) */ w10 += w11; /* #23: @12 = cos(@10) */ w12 = cos( w10 ); /* #24: @12 = (@9*@12) */ w12 = (w9*w12); /* #25: @8 = (@8+@12) */ w8 += w12; /* #26: @12 = 0.2 */ w12 = 2.0000000000000001e-01; /* #27: @13 = pow(@8,@12) */ w13 = pow(w8,w12); /* #28: @14 = input[3][0] */ w14 = arg[3] ? arg[3][0] : 0; /* #29: @13 = (@13*@14) */ w13 *= w14; /* #30: @15 = sq(@13) */ w15 = casadi_sq( w13 ); /* #31: @15 = (@7*@15) */ w15 = (w7*w15); /* #32: @16 = @2[4] */ for (rr=(&w16), ss=w2+4; ss!=w2+5; ss+=1) *rr++ = *ss; /* #33: @17 = 63 */ w17 = 63.; /* #34: @18 = @2[0] */ for (rr=(&w18), ss=w2+0; ss!=w2+1; ss+=1) *rr++ = *ss; /* #35: @19 = (@5+@18) */ w19 = (w5+w18); /* #36: @17 = (@17*@19) */ w17 *= w19; /* #37: @17 = (@17/@13) */ w17 /= w13; /* #38: @20 = horzcat(@16, @17) */ rr=w20; *rr++ = w16; *rr++ = w17; /* #39: @20 = @20' */ /* #40: @19 = Spline(@20) */ arg1[0]=w20; res1[0]=(&w19); if (casadi_f1(arg1, res1, iw, w, 0)) return 1; /* #41: @21 = (@15*@19) */ w21 = (w15*w19); /* #42: @21 = (@4*@21) */ w21 = (w4*w21); /* #43: @21 = (-@21) */ w21 = (- w21 ); /* #44: @22 = 31.5 */ w22 = 3.1500000000000000e+01; /* #45: @23 = 5091.5 */ w23 = 5.0915000000000000e+03; /* #46: @24 = 1 */ w24 = 1.; /* #47: @25 = 0.35 */ w25 = 3.4999999999999998e-01; /* #48: @26 = (@3+@11) */ w26 = (w3+w11); /* #49: @27 = cos(@26) */ w27 = cos( w26 ); /* #50: @27 = (@25*@27) */ w27 = (w25*w27); /* #51: @24 = (@24+@27) */ w24 += w27; /* #52: @27 = 0.2 */ w27 = 2.0000000000000001e-01; /* #53: @28 = pow(@24,@27) */ w28 = pow(w24,w27); /* #54: @28 = (@28*@14) */ w28 *= w14; /* #55: @29 = sq(@28) */ w29 = casadi_sq( w28 ); /* #56: @29 = (@23*@29) */ w29 = (w23*w29); /* #57: @30 = 63 */ w30 = 63.; /* #58: @31 = (@5+@18) */ w31 = (w5+w18); /* #59: @30 = (@30*@31) */ w30 *= w31; /* #60: @30 = (@30/@28) */ w30 /= w28; /* #61: @32 = horzcat(@16, @30) */ rr=w32; *rr++ = w16; *rr++ = w30; /* #62: @32 = @32' */ /* #63: @31 = Spline(@32) */ arg1[0]=w32; res1[0]=(&w31); if (casadi_f1(arg1, res1, iw, w, 0)) return 1; /* #64: @33 = (@29*@31) */ w33 = (w29*w31); /* #65: @33 = (@22*@33) */ w33 = (w22*w33); /* #66: @21 = (@21-@33) */ w21 -= w33; /* #67: @33 = 31.5 */ w33 = 3.1500000000000000e+01; /* #68: @34 = 5091.5 */ w34 = 5.0915000000000000e+03; /* #69: @35 = 1 */ w35 = 1.; /* #70: @36 = 0.35 */ w36 = 3.4999999999999998e-01; /* #71: @37 = 4.1888 */ w37 = 4.1887999999999996e+00; /* #72: @37 = (@37+@3) */ w37 += w3; /* #73: @37 = (@37+@11) */ w37 += w11; /* #74: @11 = cos(@37) */ w11 = cos( w37 ); /* #75: @11 = (@36*@11) */ w11 = (w36*w11); /* #76: @35 = (@35+@11) */ w35 += w11; /* #77: @11 = 0.2 */ w11 = 2.0000000000000001e-01; /* #78: @38 = pow(@35,@11) */ w38 = pow(w35,w11); /* #79: @38 = (@38*@14) */ w38 *= w14; /* #80: @39 = sq(@38) */ w39 = casadi_sq( w38 ); /* #81: @39 = (@34*@39) */ w39 = (w34*w39); /* #82: @40 = 63 */ w40 = 63.; /* #83: @41 = (@5+@18) */ w41 = (w5+w18); /* #84: @40 = (@40*@41) */ w40 *= w41; /* #85: @40 = (@40/@38) */ w40 /= w38; /* #86: @42 = horzcat(@16, @40) */ rr=w42; *rr++ = w16; *rr++ = w40; /* #87: @42 = @42' */ /* #88: @41 = Spline(@42) */ arg1[0]=w42; res1[0]=(&w41); if (casadi_f1(arg1, res1, iw, w, 0)) return 1; /* #89: @43 = (@39*@41) */ w43 = (w39*w41); /* #90: @43 = (@33*@43) */ w43 = (w33*w43); /* #91: @21 = (@21-@43) */ w21 -= w43; /* #92: @43 = 867637000 */ w43 = 867637000.; /* #93: @43 = (@43*@3) */ w43 *= w3; /* #94: @21 = (@21+@43) */ w21 += w43; /* #95: @43 = 62150000 */ w43 = 62150000.; /* #96: @43 = (@43*@5) */ w43 *= w5; /* #97: @21 = (@21+@43) */ w21 += w43; /* #98: @43 = 35563800 */ w43 = 35563800.; /* #99: @21 = (@21/@43) */ w21 /= w43; /* #100: @21 = (-@21) */ w21 = (- w21 ); /* #101: @43 = 2.5 */ w43 = 2.5000000000000000e+00; /* #102: @44 = input[2][0] */ casadi_copy(arg[2], 2, w44); /* #103: @3 = @44[0] */ for (rr=(&w3), ss=w44+0; ss!=w44+1; ss+=1) *rr++ = *ss; /* #104: @3 = (@3-@16) */ w3 -= w16; /* #105: @43 = (@43*@3) */ w43 *= w3; /* #106: @3 = 50 */ w3 = 50.; /* #107: @16 = @44[1] */ for (rr=(&w16), ss=w44+1; ss!=w44+2; ss+=1) *rr++ = *ss; /* #108: @16 = (@16-@6) */ w16 -= w6; /* #109: @3 = (@3*@16) */ w3 *= w16; /* #110: @2 = vertcat(@1, @21, @18, @5, @43, @3) */ rr=w2; *rr++ = w1; *rr++ = w21; *rr++ = w18; *rr++ = w5; *rr++ = w43; *rr++ = w3; /* #111: @0 = (@0-@2) */ for (i=0, rr=w0, cs=w2; i<6; ++i) (*rr++) -= (*cs++); /* #112: output[0][0] = @0 */ casadi_copy(w0, 6, res[0]); /* #113: @45 = zeros(6x6,12nz) */ casadi_fill(w45, 12, 0.); /* #114: @1 = -0.0238979 */ w1 = -2.3897923837070362e-02; /* #115: @21 = 2.81185e-08 */ w21 = 2.8118480027443637e-08; /* #116: @46 = zeros(1x5) */ casadi_fill(w46, 5, 0.); /* #117: @47 = 00 */ /* #118: @44 = jac_Spline(@32, @47) */ arg1[0]=w32; arg1[1]=0; res1[0]=w44; if (casadi_f2(arg1, res1, iw, w, 0)) return 1; /* #119: @47 = 00 */ /* #120: @18 = 63 */ w18 = 63.; /* #121: @18 = (@18/@28) */ w18 /= w28; /* #122: @5 = horzcat(@47, @18) */ rr=(&w5); *rr++ = w18; /* #123: @5 = @5' */ /* #124: @48 = 00 */ /* #125: @18 = 63 */ w18 = 63.; /* #126: @18 = (@18/@28) */ w18 /= w28; /* #127: @43 = horzcat(@48, @18) */ rr=(&w43); *rr++ = w18; /* #128: @43 = @43' */ /* #129: @49 = 00 */ /* #130: @30 = (@30/@28) */ w30 /= w28; /* #131: @18 = -0.8 */ w18 = -8.0000000000000004e-01; /* #132: @24 = pow(@24,@18) */ w24 = pow(w24,w18); /* #133: @27 = (@27*@24) */ w27 *= w24; /* #134: @26 = sin(@26) */ w26 = sin( w26 ); /* #135: @24 = (@25*@26) */ w24 = (w25*w26); /* #136: @24 = (@27*@24) */ w24 = (w27*w24); /* #137: @24 = (@14*@24) */ w24 = (w14*w24); /* #138: @18 = (@30*@24) */ w18 = (w30*w24); /* #139: @3 = horzcat(@49, @18) */ rr=(&w3); *rr++ = w18; /* #140: @3 = @3' */ /* #141: @50 = 00 */ /* #142: @25 = (@25*@26) */ w25 *= w26; /* #143: @27 = (@27*@25) */ w27 *= w25; /* #144: @27 = (@14*@27) */ w27 = (w14*w27); /* #145: @30 = (@30*@27) */ w30 *= w27; /* #146: @25 = horzcat(@50, @30) */ rr=(&w25); *rr++ = w30; /* #147: @25 = @25' */ /* #148: @30 = 1 */ w30 = 1.; /* #149: @51 = 00 */ /* #150: @26 = horzcat(@30, @51) */ rr=(&w26); *rr++ = w30; /* #151: @26 = @26' */ /* #152: @52 = horzcat(@5, @43, @3, @25, @26) */ rr=w52; *rr++ = w5; *rr++ = w43; *rr++ = w3; *rr++ = w25; *rr++ = w26; /* #153: @46 = mac(@44,@52,@46) */ casadi_mtimes(w44, casadi_s11, w52, casadi_s10, w46, casadi_s9, w, 0); /* #154: {@5, @43, @3, @25, @26} = horzsplit(@46) */ w5 = w46[0]; w43 = w46[1]; w3 = w46[2]; w25 = w46[3]; w26 = w46[4]; /* #155: @5 = (@29*@5) */ w5 = (w29*w5); /* #156: @5 = (@22*@5) */ w5 = (w22*w5); /* #157: @5 = (-@5) */ w5 = (- w5 ); /* #158: @46 = zeros(1x5) */ casadi_fill(w46, 5, 0.); /* #159: @51 = 00 */ /* #160: @44 = jac_Spline(@20, @51) */ arg1[0]=w20; arg1[1]=0; res1[0]=w44; if (casadi_f2(arg1, res1, iw, w, 0)) return 1; /* #161: @18 = 63 */ w18 = 63.; /* #162: @18 = (@18/@13) */ w18 /= w13; /* #163: @16 = horzcat(@47, @18) */ rr=(&w16); *rr++ = w18; /* #164: @16 = @16' */ /* #165: @18 = 63 */ w18 = 63.; /* #166: @18 = (@18/@13) */ w18 /= w13; /* #167: @6 = horzcat(@48, @18) */ rr=(&w6); *rr++ = w18; /* #168: @6 = @6' */ /* #169: @17 = (@17/@13) */ w17 /= w13; /* #170: @18 = -0.8 */ w18 = -8.0000000000000004e-01; /* #171: @8 = pow(@8,@18) */ w8 = pow(w8,w18); /* #172: @12 = (@12*@8) */ w12 *= w8; /* #173: @10 = sin(@10) */ w10 = sin( w10 ); /* #174: @8 = (@9*@10) */ w8 = (w9*w10); /* #175: @8 = (@12*@8) */ w8 = (w12*w8); /* #176: @8 = (@14*@8) */ w8 = (w14*w8); /* #177: @18 = (@17*@8) */ w18 = (w17*w8); /* #178: @53 = horzcat(@49, @18) */ rr=(&w53); *rr++ = w18; /* #179: @53 = @53' */ /* #180: @9 = (@9*@10) */ w9 *= w10; /* #181: @12 = (@12*@9) */ w12 *= w9; /* #182: @12 = (@14*@12) */ w12 = (w14*w12); /* #183: @17 = (@17*@12) */ w17 *= w12; /* #184: @9 = horzcat(@50, @17) */ rr=(&w9); *rr++ = w17; /* #185: @9 = @9' */ /* #186: @51 = 00 */ /* #187: @17 = horzcat(@30, @51) */ rr=(&w17); *rr++ = w30; /* #188: @17 = @17' */ /* #189: @52 = horzcat(@16, @6, @53, @9, @17) */ rr=w52; *rr++ = w16; *rr++ = w6; *rr++ = w53; *rr++ = w9; *rr++ = w17; /* #190: @46 = mac(@44,@52,@46) */ casadi_mtimes(w44, casadi_s11, w52, casadi_s10, w46, casadi_s9, w, 0); /* #191: {@16, @6, @53, @9, @17} = horzsplit(@46) */ w16 = w46[0]; w6 = w46[1]; w53 = w46[2]; w9 = w46[3]; w17 = w46[4]; /* #192: @16 = (@15*@16) */ w16 = (w15*w16); /* #193: @16 = (@4*@16) */ w16 = (w4*w16); /* #194: @5 = (@5-@16) */ w5 -= w16; /* #195: @46 = zeros(1x5) */ casadi_fill(w46, 5, 0.); /* #196: @51 = 00 */ /* #197: @44 = jac_Spline(@42, @51) */ arg1[0]=w42; arg1[1]=0; res1[0]=w44; if (casadi_f2(arg1, res1, iw, w, 0)) return 1; /* #198: @16 = 63 */ w16 = 63.; /* #199: @16 = (@16/@38) */ w16 /= w38; /* #200: @10 = horzcat(@47, @16) */ rr=(&w10); *rr++ = w16; /* #201: @10 = @10' */ /* #202: @16 = 63 */ w16 = 63.; /* #203: @16 = (@16/@38) */ w16 /= w38; /* #204: @18 = horzcat(@48, @16) */ rr=(&w18); *rr++ = w16; /* #205: @18 = @18' */ /* #206: @40 = (@40/@38) */ w40 /= w38; /* #207: @16 = -0.8 */ w16 = -8.0000000000000004e-01; /* #208: @35 = pow(@35,@16) */ w35 = pow(w35,w16); /* #209: @11 = (@11*@35) */ w11 *= w35; /* #210: @37 = sin(@37) */ w37 = sin( w37 ); /* #211: @35 = (@36*@37) */ w35 = (w36*w37); /* #212: @35 = (@11*@35) */ w35 = (w11*w35); /* #213: @35 = (@14*@35) */ w35 = (w14*w35); /* #214: @16 = (@40*@35) */ w16 = (w40*w35); /* #215: @54 = horzcat(@49, @16) */ rr=(&w54); *rr++ = w16; /* #216: @54 = @54' */ /* #217: @36 = (@36*@37) */ w36 *= w37; /* #218: @11 = (@11*@36) */ w11 *= w36; /* #219: @14 = (@14*@11) */ w14 *= w11; /* #220: @40 = (@40*@14) */ w40 *= w14; /* #221: @11 = horzcat(@50, @40) */ rr=(&w11); *rr++ = w40; /* #222: @11 = @11' */ /* #223: @50 = 00 */ /* #224: @40 = horzcat(@30, @50) */ rr=(&w40); *rr++ = w30; /* #225: @40 = @40' */ /* #226: @52 = horzcat(@10, @18, @54, @11, @40) */ rr=w52; *rr++ = w10; *rr++ = w18; *rr++ = w54; *rr++ = w11; *rr++ = w40; /* #227: @46 = mac(@44,@52,@46) */ casadi_mtimes(w44, casadi_s11, w52, casadi_s10, w46, casadi_s9, w, 0); /* #228: {@10, @18, @54, @11, @40} = horzsplit(@46) */ w10 = w46[0]; w18 = w46[1]; w54 = w46[2]; w11 = w46[3]; w40 = w46[4]; /* #229: @10 = (@39*@10) */ w10 = (w39*w10); /* #230: @10 = (@33*@10) */ w10 = (w33*w10); /* #231: @5 = (@5-@10) */ w5 -= w10; /* #232: @5 = (@21*@5) */ w5 = (w21*w5); /* #233: @5 = (-@5) */ w5 = (- w5 ); /* #234: @10 = 1 */ w10 = 1.; /* #235: @50 = 00 */ /* #236: @49 = 00 */ /* #237: @30 = -50 */ w30 = -50.; /* #238: @55 = vertcat(@1, @5, @10, @50, @49, @30) */ rr=w55; *rr++ = w1; *rr++ = w5; *rr++ = w10; *rr++ = w30; /* #239: @55 = (-@55) */ for (i=0, rr=w55, cs=w55; i<4; ++i) *rr++ = (- *cs++ ); /* #240: @56 = @55[:4] */ for (rr=w56, ss=w55+0; ss!=w55+4; ss+=1) *rr++ = *ss; /* #241: (@45[2, 3, 8, 11] = @56) */ for (cii=casadi_s12, rr=w45, ss=w56; cii!=casadi_s12+4; ++cii, ++ss) if (*cii>=0) rr[*cii] = *ss; /* #242: @1 = 1.53119 */ w1 = 1.5311917180143535e+00; /* #243: @5 = 62150000 */ w5 = 62150000.; /* #244: @43 = (@29*@43) */ w43 = (w29*w43); /* #245: @43 = (@22*@43) */ w43 = (w22*w43); /* #246: @43 = (-@43) */ w43 = (- w43 ); /* #247: @6 = (@15*@6) */ w6 = (w15*w6); /* #248: @6 = (@4*@6) */ w6 = (w4*w6); /* #249: @43 = (@43-@6) */ w43 -= w6; /* #250: @18 = (@39*@18) */ w18 = (w39*w18); /* #251: @18 = (@33*@18) */ w18 = (w33*w18); /* #252: @43 = (@43-@18) */ w43 -= w18; /* #253: @5 = (@5+@43) */ w5 += w43; /* #254: @5 = (@21*@5) */ w5 = (w21*w5); /* #255: @5 = (-@5) */ w5 = (- w5 ); /* #256: @50 = 00 */ /* #257: @43 = 1 */ w43 = 1.; /* #258: @49 = 00 */ /* #259: @48 = 00 */ /* #260: @57 = vertcat(@1, @5, @50, @43, @49, @48) */ rr=w57; *rr++ = w1; *rr++ = w5; *rr++ = w43; /* #261: @57 = (-@57) */ for (i=0, rr=w57, cs=w57; i<3; ++i) *rr++ = (- *cs++ ); /* #262: @58 = @57[:3] */ for (rr=w58, ss=w57+0; ss!=w57+3; ss+=1) *rr++ = *ss; /* #263: (@45[0, 4, 9] = @58) */ for (cii=casadi_s13, rr=w45, ss=w58; cii!=casadi_s13+3; ++cii, ++ss) if (*cii>=0) rr[*cii] = *ss; /* #264: @50 = 00 */ /* #265: @3 = (@29*@3) */ w3 = (w29*w3); /* #266: @28 = (2.*@28) */ w28 = (2.* w28 ); /* #267: @24 = (@28*@24) */ w24 = (w28*w24); /* #268: @24 = (@23*@24) */ w24 = (w23*w24); /* #269: @24 = (@31*@24) */ w24 = (w31*w24); /* #270: @3 = (@3-@24) */ w3 -= w24; /* #271: @3 = (@22*@3) */ w3 = (w22*w3); /* #272: @3 = (-@3) */ w3 = (- w3 ); /* #273: @53 = (@15*@53) */ w53 = (w15*w53); /* #274: @13 = (2.*@13) */ w13 = (2.* w13 ); /* #275: @8 = (@13*@8) */ w8 = (w13*w8); /* #276: @8 = (@7*@8) */ w8 = (w7*w8); /* #277: @8 = (@19*@8) */ w8 = (w19*w8); /* #278: @53 = (@53-@8) */ w53 -= w8; /* #279: @53 = (@4*@53) */ w53 = (w4*w53); /* #280: @3 = (@3-@53) */ w3 -= w53; /* #281: @54 = (@39*@54) */ w54 = (w39*w54); /* #282: @38 = (2.*@38) */ w38 = (2.* w38 ); /* #283: @35 = (@38*@35) */ w35 = (w38*w35); /* #284: @35 = (@34*@35) */ w35 = (w34*w35); /* #285: @35 = (@41*@35) */ w35 = (w41*w35); /* #286: @54 = (@54-@35) */ w54 -= w35; /* #287: @54 = (@33*@54) */ w54 = (w33*w54); /* #288: @3 = (@3-@54) */ w3 -= w54; /* #289: @3 = (@21*@3) */ w3 = (w21*w3); /* #290: @3 = (-@3) */ w3 = (- w3 ); /* #291: @49 = 00 */ /* #292: @48 = 00 */ /* #293: @47 = 00 */ /* #294: @51 = 00 */ /* #295: @54 = vertcat(@50, @3, @49, @48, @47, @51) */ rr=(&w54); *rr++ = w3; /* #296: @54 = (-@54) */ w54 = (- w54 ); /* #297: @3 = @54[0] */ for (rr=(&w3), ss=(&w54)+0; ss!=(&w54)+1; ss+=1) *rr++ = *ss; /* #298: (@45[5] = @3) */ for (rr=w45+5, ss=(&w3); rr!=w45+6; rr+=1) *rr = *ss++; /* #299: @3 = 21.376 */ w3 = 2.1376003035282700e+01; /* #300: @54 = 867637000 */ w54 = 867637000.; /* #301: @25 = (@29*@25) */ w25 = (w29*w25); /* #302: @28 = (@28*@27) */ w28 *= w27; /* #303: @23 = (@23*@28) */ w23 *= w28; /* #304: @31 = (@31*@23) */ w31 *= w23; /* #305: @25 = (@25-@31) */ w25 -= w31; /* #306: @25 = (@22*@25) */ w25 = (w22*w25); /* #307: @25 = (-@25) */ w25 = (- w25 ); /* #308: @9 = (@15*@9) */ w9 = (w15*w9); /* #309: @13 = (@13*@12) */ w13 *= w12; /* #310: @7 = (@7*@13) */ w7 *= w13; /* #311: @19 = (@19*@7) */ w19 *= w7; /* #312: @9 = (@9-@19) */ w9 -= w19; /* #313: @9 = (@4*@9) */ w9 = (w4*w9); /* #314: @25 = (@25-@9) */ w25 -= w9; /* #315: @11 = (@39*@11) */ w11 = (w39*w11); /* #316: @38 = (@38*@14) */ w38 *= w14; /* #317: @34 = (@34*@38) */ w34 *= w38; /* #318: @41 = (@41*@34) */ w41 *= w34; /* #319: @11 = (@11-@41) */ w11 -= w41; /* #320: @11 = (@33*@11) */ w11 = (w33*w11); /* #321: @25 = (@25-@11) */ w25 -= w11; /* #322: @54 = (@54+@25) */ w54 += w25; /* #323: @54 = (@21*@54) */ w54 = (w21*w54); /* #324: @54 = (-@54) */ w54 = (- w54 ); /* #325: @50 = 00 */ /* #326: @49 = 00 */ /* #327: @48 = 00 */ /* #328: @47 = 00 */ /* #329: @44 = vertcat(@3, @54, @50, @49, @48, @47) */ rr=w44; *rr++ = w3; *rr++ = w54; /* #330: @44 = (-@44) */ for (i=0, rr=w44, cs=w44; i<2; ++i) *rr++ = (- *cs++ ); /* #331: @42 = @44[:2] */ for (rr=w42, ss=w44+0; ss!=w44+2; ss+=1) *rr++ = *ss; /* #332: (@45[1:11:5] = @42) */ for (rr=w45+1, ss=w42; rr!=w45+11; rr+=5) *rr = *ss++; /* #333: @50 = 00 */ /* #334: @29 = (@29*@26) */ w29 *= w26; /* #335: @22 = (@22*@29) */ w22 *= w29; /* #336: @22 = (-@22) */ w22 = (- w22 ); /* #337: @15 = (@15*@17) */ w15 *= w17; /* #338: @4 = (@4*@15) */ w4 *= w15; /* #339: @22 = (@22-@4) */ w22 -= w4; /* #340: @39 = (@39*@40) */ w39 *= w40; /* #341: @33 = (@33*@39) */ w33 *= w39; /* #342: @22 = (@22-@33) */ w22 -= w33; /* #343: @21 = (@21*@22) */ w21 *= w22; /* #344: @21 = (-@21) */ w21 = (- w21 ); /* #345: @49 = 00 */ /* #346: @48 = 00 */ /* #347: @22 = -2.5 */ w22 = -2.5000000000000000e+00; /* #348: @47 = 00 */ /* #349: @42 = vertcat(@50, @21, @49, @48, @22, @47) */ rr=w42; *rr++ = w21; *rr++ = w22; /* #350: @42 = (-@42) */ for (i=0, rr=w42, cs=w42; i<2; ++i) *rr++ = (- *cs++ ); /* #351: @44 = @42[:2] */ for (rr=w44, ss=w42+0; ss!=w42+2; ss+=1) *rr++ = *ss; /* #352: (@45[7:13:3] = @44) */ for (rr=w45+7, ss=w44; rr!=w45+13; rr+=3) *rr = *ss++; /* #353: @59 = @45' */ casadi_trans(w45,casadi_s15, w59, casadi_s14, iw); /* #354: output[1][0] = @59 */ casadi_copy(w59, 12, res[1]); /* #355: @0 = zeros(6x6,6nz) */ casadi_fill(w0, 6, 0.); /* #356: @2 = ones(6x1) */ casadi_fill(w2, 6, 1.); /* #357: (@0[:6] = @2) */ for (rr=w0+0, ss=w2; rr!=w0+6; rr+=1) *rr = *ss++; /* #358: @2 = @0' */ casadi_trans(w0,casadi_s16, w2, casadi_s16, iw); /* #359: output[2][0] = @2 */ casadi_copy(w2, 6, res[2]); return 0; } CASADI_SYMBOL_EXPORT int casadi_impl_ode_fun_jac_x_xdot(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem){ return casadi_f0(arg, res, iw, w, mem); } CASADI_SYMBOL_EXPORT void casadi_impl_ode_fun_jac_x_xdot_incref(void) { } CASADI_SYMBOL_EXPORT void casadi_impl_ode_fun_jac_x_xdot_decref(void) { } CASADI_SYMBOL_EXPORT casadi_int casadi_impl_ode_fun_jac_x_xdot_n_in(void) { return 4;} CASADI_SYMBOL_EXPORT casadi_int casadi_impl_ode_fun_jac_x_xdot_n_out(void) { return 3;} CASADI_SYMBOL_EXPORT const char* casadi_impl_ode_fun_jac_x_xdot_name_in(casadi_int i){ switch (i) { case 0: return "i0"; case 1: return "i1"; case 2: return "i2"; case 3: return "i3"; default: return 0; } } CASADI_SYMBOL_EXPORT const char* casadi_impl_ode_fun_jac_x_xdot_name_out(casadi_int i){ switch (i) { case 0: return "o0"; case 1: return "o1"; case 2: return "o2"; default: return 0; } } CASADI_SYMBOL_EXPORT const casadi_int* casadi_impl_ode_fun_jac_x_xdot_sparsity_in(casadi_int i) { switch (i) { case 0: return casadi_s17; case 1: return casadi_s17; case 2: return casadi_s18; case 3: return casadi_s19; default: return 0; } } CASADI_SYMBOL_EXPORT const casadi_int* casadi_impl_ode_fun_jac_x_xdot_sparsity_out(casadi_int i) { switch (i) { case 0: return casadi_s17; case 1: return casadi_s14; case 2: return casadi_s16; default: return 0; } } CASADI_SYMBOL_EXPORT int casadi_impl_ode_fun_jac_x_xdot_work(casadi_int *sz_arg, casadi_int* sz_res, casadi_int *sz_iw, casadi_int *sz_w) { if (sz_arg) *sz_arg = 10; if (sz_res) *sz_res = 8; if (sz_iw) *sz_iw = 14; if (sz_w) *sz_w = 125; return 0; } #ifdef __cplusplus } /* extern "C" */ #endif
the_stack_data/159515716.c
/*************************************************************************/ /* */ /* Cepstral, LLC */ /* Copyright (c) 2001 */ /* All Rights Reserved. */ /* */ /* Permission is hereby granted, free of charge, to use and distribute */ /* this software and its documentation without restriction, including */ /* without limitation the rights to use, copy, modify, merge, publish, */ /* distribute, sublicense, and/or sell copies of this work, and to */ /* permit persons to whom this work is furnished to do so, subject to */ /* the following conditions: */ /* 1. The code must retain the above copyright notice, this list of */ /* conditions and the following disclaimer. */ /* 2. Any modifications must be clearly marked as such. */ /* 3. Original authors' names are not deleted. */ /* 4. The authors' names are not used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* CEPSTRAL, LLC AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ALL */ /* WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED */ /* WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL */ /* CEPSTRAL, LLC NOR THE CONTRIBUTORS BE LIABLE FOR ANY SPECIAL, */ /* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER */ /* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION */ /* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR */ /* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* */ /*************************************************************************/ /* Author: David Huggins-Daines ([email protected]) */ /* Date: October 2001 */ /*************************************************************************/ /* */ /* cst_mmap_none.c: stubs for systems with no memory-mapped I/O support. */ /* */ /*************************************************************************/ #if 0 #include "cst_file.h" #include "cst_error.h" #include "cst_alloc.h" cst_filemap *cst_mmap_file(const char *path) { cst_dbgmsg("cst_mmap_file: unsupported on this platform"); cst_error(); return NULL; } int cst_munmap_file(cst_filemap *fmap) { cst_dbgmsg("cst_munmap_file: unsupported on this platform"); cst_error(); return -1; } cst_filemap *cst_read_whole_file(const char *path) { cst_filemap *fmap; cst_file fh; if ((fh = cst_fopen(path, CST_OPEN_READ)) < 0) { cst_errmsg("cst_read_whole_file: Failed to open file\n"); return NULL; } fmap = cst_alloc(cst_filemap, 1); fmap->fh = fh; fmap->mapsize = cst_filesize(fmap->fh); fmap->mem = cst_alloc(char, fmap->mapsize); if (cst_fread(fmap->fh, fmap->mem, 1, fmap->mapsize) < fmap->mapsize) { cst_errmsg("cst_read_whole_file: read() failed\n"); cst_fclose(fmap->fh); cst_free(fmap->mem); cst_free(fmap); return NULL; } return fmap; } int cst_free_whole_file(cst_filemap *fmap) { if (cst_fclose(fmap->fh) < 0) { cst_errmsg("cst_free_whole_file: close() failed\n"); return -1; } cst_free(fmap->mem); cst_free(fmap); return 0; } cst_filemap *cst_read_part_file(const char *path) { cst_filemap *fmap; cst_file fh; if ((fh = cst_fopen(path, CST_OPEN_READ)) == NULL) { cst_errmsg("cst_read_part_file: Failed to open file\n"); return NULL; } fmap = cst_alloc(cst_filemap, 1); fmap->fh = fh; fmap->mapsize = cst_filesize(fmap->fh); return fmap; } int cst_free_part_file(cst_filemap *fmap) { if (cst_fclose(fmap->fh) < 0) { cst_errmsg("cst_munmap_file: cst_fclose() failed\n"); return -1; } cst_free(fmap); return 0; } #endif
the_stack_data/243892598.c
#include <stdio.h> int main(void) { int count = 0; char ch; while ((ch = getchar()) != EOF) count++; printf("There are %d characters up to the end of file.\n", count); return 0; }
the_stack_data/750263.c
/* Uses an anonymous file descriptor in order to load an ELF from memory. * The memfd_create(2) function is used to create a file descriptor in memory * to which the specified file is copied to. * * More info: http://gg.gg/ok98c */ #define _GNU_SOURCE #include <stdlib.h> #include <stdio.h> #include <fcntl.h> #include <string.h> #include <sys/stat.h> #include <sys/types.h> #include <sys/mman.h> #include <unistd.h> // creates anonymous file descriptor int create_afd(void) { int afd; afd = memfd_create("", MFD_CLOEXEC); // closes file descriptor on execution if (afd < 0) { fprintf(stderr, "error creating file descriptor"); exit(-1); } return afd; } // copy file to anonymous file descriptor int copy_to_mem(int afd, char *file) { int fd; off_t sz; struct stat st; fd = open(file, 0); // get size of binary and use the value for buffer size fstat(fd, &st); sz = (long long int)st.st_size; char *buf[sz]; read(fd, buf, sz); write(afd, buf, sz); close(fd); } int main(int argc, char *argv[]) { int afd; pid_t pid; char *path; char ch; if (argc < 2) { printf("usage: memload [binary]"); exit(-1); } afd = create_afd(); copy_to_mem(afd, argv[1]); // get path to anonymous file descriptor pid = getpid(); asprintf(&path, "/proc/self/fd/%i", afd); /*wait for user input to continue. *leaving the program in this state will keep the file descriptor open and *allow you to execute the binary from memory. */ printf("Created process with PID: %d\n", pid); printf("Binary: /proc/%d/fd/%i\n", pid, afd); ch = getchar(); /*Execute binary closing file descriptor, process name will be second *argument of execl(). */ execl(path, "/bin/date", NULL); return 0; }
the_stack_data/37966.c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <dirent.h> #include <errno.h> #include <string.h> #include <sys/stat.h> #define BUMP_GRANULARITY 10 static int lineno; static void emptylines(int n) { for (int i=0; i<64*n; i++) putchar(' '); } static int getmarker(char *line) // returns -1 on error, blkid otherwise { int blkid; int r = sscanf(line, "( ----- %d )\n", &blkid); if (r == 1) { return blkid; } else { return -1; } } static int expectmarker(char *line) { int blkid = getmarker(line); if (blkid < 0) { // could not scan fprintf( stderr, "Error at line %d: expecting block marker\n", lineno); } return blkid; } static void usage() { fprintf(stderr, "Usage: blkpack < blk.fs > blkfs\n"); } int main(int argc, char *argv[]) { int prevblkid = -1; int blkoff = 0; int blkid; char *line = NULL; if (argc != 1) { usage(); return 1; } lineno = 1; size_t n = 0; ssize_t cnt = getline(&line, &n, stdin); if (cnt <= 0) { fprintf(stderr, "No input\n"); return 1; } while (1) { blkid = expectmarker(line); if (blkid < 0) return 1; if ((blkid == 0) && (prevblkid >= 0)) { blkoff = (prevblkid / BUMP_GRANULARITY + 1) * BUMP_GRANULARITY; fprintf( stderr, "Block 0 encountered. Bumping current blkid to %d.\n", blkoff); } blkid += blkoff; if (blkid <= prevblkid) { fprintf( stderr, "Wrong blkid (%d) at line %d: blocks must be ordered\n", blkid, lineno); return 1; } emptylines((blkid-prevblkid-1)*16); int blkline; for (blkline=0; blkline<16; blkline++) { lineno++; cnt = getline(&line, &n, stdin); if (cnt <= 0) break; // EOF if (cnt > 65) { fprintf(stderr, "Line %d too long (blk %d)\n", lineno, blkid); return 1; } if (getmarker(line) >= 0) break; // we have a marker early line[cnt-1] = '\0'; // remove newline printf("%s", line); // pad line to 64 chars for (int i=cnt-1; i<64; i++) putchar(' '); } if (blkline == 16) { lineno++; cnt = getline(&line, &n, stdin); } else { // fill to 16 lines emptylines(16-blkline); } if (cnt <= 0) break; // EOF prevblkid = blkid; } free(line); return 0; }
the_stack_data/98124.c
#include <stdio.h> int main( int argc, char *argv[] ) { printf("Program name %s\n", argv[0]); if (argc == 1) { printf("No arguments supplied\n"); return -1; } else { for (int i = 1; i < argc; i++) { printf("argc[%d] = %s\n", i, argv[i]); } return 0; } }
the_stack_data/211079334.c
int main() { int a = 100; int b[3] = {3, a}; // should be compiled as `int b[2]; b[0] = 0; b[1] = a;` print(b[0]); return b[1]; }
the_stack_data/243893610.c
/* Autogenerated: ECCKiila https://gitlab.com/nisec/ecckiila */ /*- * MIT License * * Copyright (c) 2020 Luis Rivera-Zamarripa, Jesús-Javier Chi-Domínguez, Billy Bob Brumley * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #if defined(__SIZEOF_INT128__) && !defined(PEDANTIC) #include <stdint.h> #include <string.h> #define LIMB_BITS 64 #define LIMB_CNT 4 /* Field elements */ typedef uint64_t fe_t[LIMB_CNT]; typedef uint64_t limb_t; #ifdef OPENSSL_NO_ASM #define FIAT_ID_GOSTR3410_2001_CRYPTOPRO_B_PARAMSET_NO_ASM #endif #define fe_copy(d, s) memcpy(d, s, sizeof(fe_t)) #define fe_set_zero(d) memset(d, 0, sizeof(fe_t)) /* Projective points */ typedef struct { fe_t X; fe_t Y; fe_t Z; } pt_prj_t; /* Affine points */ typedef struct { fe_t X; fe_t Y; } pt_aff_t; /* BEGIN verbatim fiat code https://github.com/mit-plv/fiat-crypto */ /*- * MIT License * * Copyright (c) 2020 the fiat-crypto authors (see the AUTHORS file) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* Autogenerated: word_by_word_montgomery --static --use-value-barrier id_GostR3410_2001_CryptoPro_B_ParamSet 64 '2^255 + 3225' */ /* curve description: id_GostR3410_2001_CryptoPro_B_ParamSet */ /* machine_wordsize = 64 (from "64") */ /* requested operations: (all) */ /* m = 0x8000000000000000000000000000000000000000000000000000000000000c99 (from "2^255 + 3225") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */ #include <stdint.h> typedef unsigned char fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1; typedef signed char fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int1; typedef signed __int128 fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int128; typedef unsigned __int128 fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint128; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_ID_GOSTR3410_2001_CRYPTOPRO_B_PARAMSET_NO_ASM) && \ (defined(__GNUC__) || defined(__clang__)) static __inline__ uint64_t fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_value_barrier_u64(uint64_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else #define fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_value_barrier_u64(x) (x) #endif /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64 is an addition with carry. * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^64 * out2 = ⌊(arg1 + arg2 + arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( uint64_t *out1, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 *out2, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint128 x1; uint64_t x2; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x3; x1 = ((arg1 + (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint128)arg2) + arg3); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64 is a subtraction with borrow. * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^64 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0x1] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( uint64_t *out1, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 *out2, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int128 x1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int1 x2; uint64_t x3; x1 = ((arg2 - (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int128)arg1) - arg3); x2 = (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int1)(x1 >> 64); x3 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); *out1 = x3; *out2 = (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1)(0x0 - x2); } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64 is a multiplication, returning the full double-width result. * Postconditions: * out1 = (arg1 * arg2) mod 2^64 * out2 = ⌊arg1 * arg2 / 2^64⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffffffffffff] * arg2: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] * out2: [0x0 ~> 0xffffffffffffffff] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( uint64_t *out1, uint64_t *out2, uint64_t arg1, uint64_t arg2) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint128 x1; uint64_t x2; uint64_t x3; x1 = ((fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint128)arg1 * arg2); x2 = (uint64_t)(x1 & UINT64_C(0xffffffffffffffff)); x3 = (uint64_t)(x1 >> 64); *out1 = x2; *out2 = x3; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64 is a single-word conditional move. * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffffffffffff] * arg3: [0x0 ~> 0xffffffffffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64( uint64_t *out1, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 arg1, uint64_t arg2, uint64_t arg3) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x1; uint64_t x2; uint64_t x3; x1 = (!(!arg1)); x2 = ((fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff)); x3 = ((fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_value_barrier_u64(x2) & arg3) | (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_value_barrier_u64((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul multiplies two field elements in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul( uint64_t out1[4], const uint64_t arg1[4], const uint64_t arg2[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x14; uint64_t x15; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x16; uint64_t x17; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x27; uint64_t x28; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x29; uint64_t x30; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x31; uint64_t x32; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x33; uint64_t x34; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x45; uint64_t x46; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x47; uint64_t x48; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x49; uint64_t x50; uint64_t x51; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x52; uint64_t x53; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x54; uint64_t x55; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x56; uint64_t x57; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x58; uint64_t x59; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x68; uint64_t x69; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x70; uint64_t x71; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x72; uint64_t x73; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x74; uint64_t x75; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x87; uint64_t x88; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x89; uint64_t x90; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x91; uint64_t x92; uint64_t x93; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x94; uint64_t x95; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x96; uint64_t x97; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x98; uint64_t x99; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x100; uint64_t x101; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x110; uint64_t x111; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x112; uint64_t x113; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x114; uint64_t x115; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x116; uint64_t x117; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x118; uint64_t x119; uint64_t x120; uint64_t x121; uint64_t x122; uint64_t x123; uint64_t x124; uint64_t x125; uint64_t x126; uint64_t x127; uint64_t x128; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x129; uint64_t x130; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x131; uint64_t x132; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x133; uint64_t x134; uint64_t x135; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x136; uint64_t x137; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x138; uint64_t x139; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x140; uint64_t x141; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x142; uint64_t x143; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x152; uint64_t x153; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x154; uint64_t x155; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x156; uint64_t x157; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x158; uint64_t x159; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x160; uint64_t x161; uint64_t x162; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x163; uint64_t x164; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x165; uint64_t x166; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x167; uint64_t x168; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x169; uint64_t x170; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x171; uint64_t x172; uint64_t x173; uint64_t x174; uint64_t x175; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[0]); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x5, &x6, x4, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x7, &x8, x4, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x9, &x10, x4, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x11, &x12, x4, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x13, &x14, 0x0, x12, x9); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x15, &x16, x14, x10, x7); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x17, &x18, x16, x8, x5); x19 = (x18 + x6); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x20, &x21, x11, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x22, &x23, x20, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x24, &x25, x20, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x26, &x27, 0x0, x11, x24); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x28, &x29, x27, x13, x25); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x30, &x31, x29, x15, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x32, &x33, x31, x17, x22); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x34, &x35, x33, x19, x23); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x36, &x37, x1, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x38, &x39, x1, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x40, &x41, x1, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x42, &x43, x1, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x44, &x45, 0x0, x43, x40); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x46, &x47, x45, x41, x38); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x48, &x49, x47, x39, x36); x50 = (x49 + x37); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x51, &x52, 0x0, x28, x42); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x53, &x54, x52, x30, x44); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x55, &x56, x54, x32, x46); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x57, &x58, x56, x34, x48); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x59, &x60, x58, x35, x50); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x61, &x62, x51, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x63, &x64, x61, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x65, &x66, x61, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x67, &x68, 0x0, x51, x65); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x69, &x70, x68, x53, x66); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x71, &x72, x70, x55, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x73, &x74, x72, x57, x63); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x75, &x76, x74, x59, x64); x77 = ((uint64_t)x76 + x60); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x78, &x79, x2, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x80, &x81, x2, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x82, &x83, x2, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x84, &x85, x2, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x86, &x87, 0x0, x85, x82); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x88, &x89, x87, x83, x80); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x90, &x91, x89, x81, x78); x92 = (x91 + x79); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x93, &x94, 0x0, x69, x84); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x95, &x96, x94, x71, x86); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x97, &x98, x96, x73, x88); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x99, &x100, x98, x75, x90); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x101, &x102, x100, x77, x92); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x103, &x104, x93, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x105, &x106, x103, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x107, &x108, x103, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x109, &x110, 0x0, x93, x107); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x111, &x112, x110, x95, x108); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x113, &x114, x112, x97, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x115, &x116, x114, x99, x105); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x117, &x118, x116, x101, x106); x119 = ((uint64_t)x118 + x102); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x120, &x121, x3, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x122, &x123, x3, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x124, &x125, x3, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x126, &x127, x3, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x128, &x129, 0x0, x127, x124); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x130, &x131, x129, x125, x122); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x132, &x133, x131, x123, x120); x134 = (x133 + x121); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x135, &x136, 0x0, x111, x126); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x137, &x138, x136, x113, x128); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x139, &x140, x138, x115, x130); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x141, &x142, x140, x117, x132); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x143, &x144, x142, x119, x134); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x145, &x146, x135, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x147, &x148, x145, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x149, &x150, x145, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x151, &x152, 0x0, x135, x149); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x153, &x154, x152, x137, x150); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x155, &x156, x154, x139, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x157, &x158, x156, x141, x147); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x159, &x160, x158, x143, x148); x161 = ((uint64_t)x160 + x144); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x162, &x163, 0x0, x153, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x164, &x165, x163, x155, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x166, &x167, x165, x157, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x168, &x169, x167, x159, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x170, &x171, x169, x161, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x172, x171, x162, x153); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x173, x171, x164, x155); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x174, x171, x166, x157); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x175, x171, x168, x159); out1[0] = x172; out1[1] = x173; out1[2] = x174; out1[3] = x175; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square squares a field element in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg1)) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square( uint64_t out1[4], const uint64_t arg1[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x14; uint64_t x15; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x16; uint64_t x17; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint64_t x24; uint64_t x25; uint64_t x26; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x27; uint64_t x28; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x29; uint64_t x30; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x31; uint64_t x32; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x33; uint64_t x34; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x45; uint64_t x46; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x47; uint64_t x48; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x49; uint64_t x50; uint64_t x51; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x52; uint64_t x53; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x54; uint64_t x55; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x56; uint64_t x57; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x58; uint64_t x59; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x60; uint64_t x61; uint64_t x62; uint64_t x63; uint64_t x64; uint64_t x65; uint64_t x66; uint64_t x67; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x68; uint64_t x69; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x70; uint64_t x71; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x72; uint64_t x73; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x74; uint64_t x75; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x76; uint64_t x77; uint64_t x78; uint64_t x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; uint64_t x84; uint64_t x85; uint64_t x86; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x87; uint64_t x88; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x89; uint64_t x90; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x91; uint64_t x92; uint64_t x93; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x94; uint64_t x95; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x96; uint64_t x97; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x98; uint64_t x99; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x100; uint64_t x101; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x102; uint64_t x103; uint64_t x104; uint64_t x105; uint64_t x106; uint64_t x107; uint64_t x108; uint64_t x109; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x110; uint64_t x111; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x112; uint64_t x113; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x114; uint64_t x115; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x116; uint64_t x117; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x118; uint64_t x119; uint64_t x120; uint64_t x121; uint64_t x122; uint64_t x123; uint64_t x124; uint64_t x125; uint64_t x126; uint64_t x127; uint64_t x128; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x129; uint64_t x130; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x131; uint64_t x132; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x133; uint64_t x134; uint64_t x135; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x136; uint64_t x137; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x138; uint64_t x139; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x140; uint64_t x141; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x142; uint64_t x143; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x144; uint64_t x145; uint64_t x146; uint64_t x147; uint64_t x148; uint64_t x149; uint64_t x150; uint64_t x151; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x152; uint64_t x153; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x154; uint64_t x155; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x156; uint64_t x157; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x158; uint64_t x159; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x160; uint64_t x161; uint64_t x162; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x163; uint64_t x164; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x165; uint64_t x166; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x167; uint64_t x168; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x169; uint64_t x170; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x171; uint64_t x172; uint64_t x173; uint64_t x174; uint64_t x175; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[0]); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x5, &x6, x4, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x7, &x8, x4, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x9, &x10, x4, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x11, &x12, x4, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x13, &x14, 0x0, x12, x9); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x15, &x16, x14, x10, x7); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x17, &x18, x16, x8, x5); x19 = (x18 + x6); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x20, &x21, x11, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x22, &x23, x20, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x24, &x25, x20, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x26, &x27, 0x0, x11, x24); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x28, &x29, x27, x13, x25); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x30, &x31, x29, x15, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x32, &x33, x31, x17, x22); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x34, &x35, x33, x19, x23); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x36, &x37, x1, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x38, &x39, x1, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x40, &x41, x1, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x42, &x43, x1, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x44, &x45, 0x0, x43, x40); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x46, &x47, x45, x41, x38); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x48, &x49, x47, x39, x36); x50 = (x49 + x37); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x51, &x52, 0x0, x28, x42); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x53, &x54, x52, x30, x44); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x55, &x56, x54, x32, x46); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x57, &x58, x56, x34, x48); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x59, &x60, x58, x35, x50); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x61, &x62, x51, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x63, &x64, x61, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x65, &x66, x61, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x67, &x68, 0x0, x51, x65); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x69, &x70, x68, x53, x66); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x71, &x72, x70, x55, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x73, &x74, x72, x57, x63); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x75, &x76, x74, x59, x64); x77 = ((uint64_t)x76 + x60); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x78, &x79, x2, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x80, &x81, x2, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x82, &x83, x2, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x84, &x85, x2, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x86, &x87, 0x0, x85, x82); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x88, &x89, x87, x83, x80); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x90, &x91, x89, x81, x78); x92 = (x91 + x79); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x93, &x94, 0x0, x69, x84); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x95, &x96, x94, x71, x86); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x97, &x98, x96, x73, x88); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x99, &x100, x98, x75, x90); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x101, &x102, x100, x77, x92); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x103, &x104, x93, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x105, &x106, x103, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x107, &x108, x103, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x109, &x110, 0x0, x93, x107); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x111, &x112, x110, x95, x108); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x113, &x114, x112, x97, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x115, &x116, x114, x99, x105); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x117, &x118, x116, x101, x106); x119 = ((uint64_t)x118 + x102); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x120, &x121, x3, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x122, &x123, x3, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x124, &x125, x3, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x126, &x127, x3, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x128, &x129, 0x0, x127, x124); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x130, &x131, x129, x125, x122); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x132, &x133, x131, x123, x120); x134 = (x133 + x121); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x135, &x136, 0x0, x111, x126); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x137, &x138, x136, x113, x128); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x139, &x140, x138, x115, x130); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x141, &x142, x140, x117, x132); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x143, &x144, x142, x119, x134); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x145, &x146, x135, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x147, &x148, x145, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x149, &x150, x145, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x151, &x152, 0x0, x135, x149); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x153, &x154, x152, x137, x150); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x155, &x156, x154, x139, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x157, &x158, x156, x141, x147); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x159, &x160, x158, x143, x148); x161 = ((uint64_t)x160 + x144); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x162, &x163, 0x0, x153, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x164, &x165, x163, x155, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x166, &x167, x165, x157, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x168, &x169, x167, x159, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x170, &x171, x169, x161, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x172, x171, x162, x153); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x173, x171, x164, x155); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x174, x171, x166, x157); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x175, x171, x168, x159); out1[0] = x172; out1[1] = x173; out1[2] = x174; out1[3] = x175; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add adds two field elements in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add( uint64_t out1[4], const uint64_t arg1[4], const uint64_t arg2[4]) { uint64_t x1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x2; uint64_t x3; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x4; uint64_t x5; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x6; uint64_t x7; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x8; uint64_t x9; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x10; uint64_t x11; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x12; uint64_t x13; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x14; uint64_t x15; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x16; uint64_t x17; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x9, &x10, 0x0, x1, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x11, &x12, x10, x3, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x13, &x14, x12, x5, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x15, &x16, x14, x7, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x17, &x18, x16, x8, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x19, x18, x9, x1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x20, x18, x11, x3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x21, x18, x13, x5); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x22, x18, x15, x7); out1[0] = x19; out1[1] = x20; out1[2] = x21; out1[3] = x22; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub subtracts two field elements in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) - eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub( uint64_t out1[4], const uint64_t arg1[4], const uint64_t arg2[4]) { uint64_t x1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x2; uint64_t x3; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x4; uint64_t x5; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x6; uint64_t x7; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x8; uint64_t x9; uint64_t x10; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x11; uint64_t x12; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x13; uint64_t x14; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x15; uint64_t x16; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x17; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64( &x9, x8, 0x0, UINT64_C(0xffffffffffffffff)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x10, &x11, 0x0, x1, (x9 & UINT16_C(0xc99))); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x12, &x13, x11, x3, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x14, &x15, x13, x5, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x16, &x17, x15, x7, (x9 & UINT64_C(0x8000000000000000))); out1[0] = x10; out1[1] = x12; out1[2] = x14; out1[3] = x16; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp negates a field element in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp( uint64_t out1[4], const uint64_t arg1[4]) { uint64_t x1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x2; uint64_t x3; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x4; uint64_t x5; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x6; uint64_t x7; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x8; uint64_t x9; uint64_t x10; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x11; uint64_t x12; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x13; uint64_t x14; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x15; uint64_t x16; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x17; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x3, &x4, x2, 0x0, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x5, &x6, x4, 0x0, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x7, &x8, x6, 0x0, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64( &x9, x8, 0x0, UINT64_C(0xffffffffffffffff)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x10, &x11, 0x0, x1, (x9 & UINT16_C(0xc99))); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x12, &x13, x11, x3, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x14, &x15, x13, x5, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x16, &x17, x15, x7, (x9 & UINT64_C(0x8000000000000000))); out1[0] = x10; out1[1] = x12; out1[2] = x14; out1[3] = x16; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery translates a field element out of the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^64)⁻¹ mod m)^4) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery( uint64_t out1[4], const uint64_t arg1[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x9; uint64_t x10; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x19; uint64_t x20; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x21; uint64_t x22; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x23; uint64_t x24; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x25; uint64_t x26; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint64_t x32; uint64_t x33; uint64_t x34; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x35; uint64_t x36; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x37; uint64_t x38; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x39; uint64_t x40; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x41; uint64_t x42; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x43; uint64_t x44; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x45; uint64_t x46; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x55; uint64_t x56; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x57; uint64_t x58; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x59; uint64_t x60; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x61; uint64_t x62; uint64_t x63; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x64; uint64_t x65; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x66; uint64_t x67; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x68; uint64_t x69; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x70; uint64_t x71; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x72; uint64_t x73; uint64_t x74; uint64_t x75; uint64_t x76; x1 = (arg1[0]); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x2, &x3, x1, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x4, &x5, x2, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x6, &x7, x2, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x8, &x9, 0x0, x1, x6); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x10, &x11, 0x0, (x9 + x7), (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x12, &x13, x10, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x14, &x15, x12, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x16, &x17, x12, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x18, &x19, 0x0, x5, x14); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x20, &x21, 0x0, x10, x16); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x22, &x23, 0x0, (((uint64_t)x21 + x11) + x17), (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x24, &x25, x23, x4, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x26, &x27, x25, x18, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x28, &x29, x22, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x30, &x31, x28, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x32, &x33, x28, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x34, &x35, 0x0, x22, x32); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x36, &x37, x35, x24, x33); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x38, &x39, x37, x26, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x40, &x41, x39, (x27 + (x19 + x15)), x30); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x42, &x43, 0x0, x36, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x44, &x45, x43, x38, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x46, &x47, x45, x40, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x48, &x49, x42, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x50, &x51, x48, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x52, &x53, x48, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x54, &x55, 0x0, x42, x52); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x56, &x57, x55, x44, x53); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x58, &x59, x57, x46, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x60, &x61, x59, (x47 + (x41 + x31)), x50); x62 = (x61 + x51); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x63, &x64, 0x0, x56, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x65, &x66, x64, x58, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x67, &x68, x66, x60, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x69, &x70, x68, x62, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x71, &x72, x70, 0x0, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x73, x72, x63, x56); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x74, x72, x65, x58); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x75, x72, x67, x60); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x76, x72, x69, x62); out1[0] = x73; out1[1] = x74; out1[2] = x75; out1[3] = x76; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery translates a field element into the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery( uint64_t out1[4], const uint64_t arg1[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint64_t x8; uint64_t x9; uint64_t x10; uint64_t x11; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x12; uint64_t x13; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x14; uint64_t x15; uint64_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x22; uint64_t x23; uint64_t x24; uint64_t x25; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x26; uint64_t x27; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x28; uint64_t x29; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x30; uint64_t x31; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x40; uint64_t x41; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x42; uint64_t x43; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x44; uint64_t x45; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x46; uint64_t x47; uint64_t x48; uint64_t x49; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x50; uint64_t x51; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x52; uint64_t x53; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; uint64_t x61; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x62; uint64_t x63; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x64; uint64_t x65; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x66; uint64_t x67; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x68; uint64_t x69; uint64_t x70; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x71; uint64_t x72; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x73; uint64_t x74; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x75; uint64_t x76; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x77; uint64_t x78; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x79; uint64_t x80; uint64_t x81; uint64_t x82; uint64_t x83; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x1, &x2, (arg1[0]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x3, &x4, x1, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x5, &x6, x3, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x7, &x8, x3, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x9, &x10, (arg1[1]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x11, &x12, 0x0, x1, x7); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x13, &x14, 0x0, ((x12 + x2) + x8), x9); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x15, &x16, x13, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x17, &x18, x15, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x19, &x20, x15, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x21, &x22, 0x0, x6, x17); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x23, &x24, (arg1[2]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x25, &x26, 0x0, x13, x19); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x27, &x28, 0x0, ((x26 + (x14 + x10)) + x20), x23); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x29, &x30, x28, x5, x24); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x31, &x32, x30, x21, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x33, &x34, x27, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x35, &x36, x33, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x37, &x38, x33, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x39, &x40, 0x0, x27, x37); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x41, &x42, x40, x29, x38); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x43, &x44, x42, x31, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x45, &x46, x44, (x32 + (x22 + x18)), x35); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x47, &x48, (arg1[3]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x49, &x50, 0x0, x41, x47); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x51, &x52, x50, x43, x48); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x53, &x54, x52, x45, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x55, &x56, x49, UINT64_C(0xbd667ab8a3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64( &x57, &x58, x55, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u64(&x59, &x60, x55, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x61, &x62, 0x0, x49, x59); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x63, &x64, x62, x51, x60); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64(&x65, &x66, x64, x53, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u64( &x67, &x68, x66, (x54 + (x46 + x36)), x57); x69 = (x68 + x58); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x70, &x71, 0x0, x63, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x72, &x73, x71, x65, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x74, &x75, x73, x67, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64( &x76, &x77, x75, x69, UINT64_C(0x8000000000000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u64(&x78, &x79, x77, 0x0, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x80, x79, x70, x63); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x81, x79, x72, x65); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x82, x79, x74, x67); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64(&x83, x79, x76, x69); out1[0] = x80; out1[1] = x81; out1[2] = x82; out1[3] = x83; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_nonzero outputs a single non-zero word if the input is non-zero and zero otherwise. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = 0 ↔ eval (from_montgomery arg1) mod m = 0 * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffffffffffff] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_nonzero( uint64_t *out1, const uint64_t arg1[4]) { uint64_t x1; x1 = ((arg1[0]) | ((arg1[1]) | ((arg1[2]) | (arg1[3])))); *out1 = x1; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz is a multi-limb conditional select. * Postconditions: * eval out1 = (if arg1 = 0 then eval arg2 else eval arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * arg3: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( uint64_t out1[4], fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 arg1, const uint64_t arg2[4], const uint64_t arg3[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64( &x1, arg1, (arg2[0]), (arg3[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64( &x2, arg1, (arg2[1]), (arg3[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64( &x3, arg1, (arg2[2]), (arg3[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u64( &x4, arg1, (arg2[3]), (arg3[3])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes( uint8_t out1[32], const uint64_t arg1[4]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint8_t x5; uint64_t x6; uint8_t x7; uint64_t x8; uint8_t x9; uint64_t x10; uint8_t x11; uint64_t x12; uint8_t x13; uint64_t x14; uint8_t x15; uint64_t x16; uint8_t x17; uint8_t x18; uint8_t x19; uint64_t x20; uint8_t x21; uint64_t x22; uint8_t x23; uint64_t x24; uint8_t x25; uint64_t x26; uint8_t x27; uint64_t x28; uint8_t x29; uint64_t x30; uint8_t x31; uint8_t x32; uint8_t x33; uint64_t x34; uint8_t x35; uint64_t x36; uint8_t x37; uint64_t x38; uint8_t x39; uint64_t x40; uint8_t x41; uint64_t x42; uint8_t x43; uint64_t x44; uint8_t x45; uint8_t x46; uint8_t x47; uint64_t x48; uint8_t x49; uint64_t x50; uint8_t x51; uint64_t x52; uint8_t x53; uint64_t x54; uint8_t x55; uint64_t x56; uint8_t x57; uint64_t x58; uint8_t x59; uint8_t x60; x1 = (arg1[3]); x2 = (arg1[2]); x3 = (arg1[1]); x4 = (arg1[0]); x5 = (uint8_t)(x4 & UINT8_C(0xff)); x6 = (x4 >> 8); x7 = (uint8_t)(x6 & UINT8_C(0xff)); x8 = (x6 >> 8); x9 = (uint8_t)(x8 & UINT8_C(0xff)); x10 = (x8 >> 8); x11 = (uint8_t)(x10 & UINT8_C(0xff)); x12 = (x10 >> 8); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (x12 >> 8); x15 = (uint8_t)(x14 & UINT8_C(0xff)); x16 = (x14 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (uint8_t)(x16 >> 8); x19 = (uint8_t)(x3 & UINT8_C(0xff)); x20 = (x3 >> 8); x21 = (uint8_t)(x20 & UINT8_C(0xff)); x22 = (x20 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (x22 >> 8); x25 = (uint8_t)(x24 & UINT8_C(0xff)); x26 = (x24 >> 8); x27 = (uint8_t)(x26 & UINT8_C(0xff)); x28 = (x26 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (x28 >> 8); x31 = (uint8_t)(x30 & UINT8_C(0xff)); x32 = (uint8_t)(x30 >> 8); x33 = (uint8_t)(x2 & UINT8_C(0xff)); x34 = (x2 >> 8); x35 = (uint8_t)(x34 & UINT8_C(0xff)); x36 = (x34 >> 8); x37 = (uint8_t)(x36 & UINT8_C(0xff)); x38 = (x36 >> 8); x39 = (uint8_t)(x38 & UINT8_C(0xff)); x40 = (x38 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (x42 >> 8); x45 = (uint8_t)(x44 & UINT8_C(0xff)); x46 = (uint8_t)(x44 >> 8); x47 = (uint8_t)(x1 & UINT8_C(0xff)); x48 = (x1 >> 8); x49 = (uint8_t)(x48 & UINT8_C(0xff)); x50 = (x48 >> 8); x51 = (uint8_t)(x50 & UINT8_C(0xff)); x52 = (x50 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (x52 >> 8); x55 = (uint8_t)(x54 & UINT8_C(0xff)); x56 = (x54 >> 8); x57 = (uint8_t)(x56 & UINT8_C(0xff)); x58 = (x56 >> 8); x59 = (uint8_t)(x58 & UINT8_C(0xff)); x60 = (uint8_t)(x58 >> 8); out1[0] = x5; out1[1] = x7; out1[2] = x9; out1[3] = x11; out1[4] = x13; out1[5] = x15; out1[6] = x17; out1[7] = x18; out1[8] = x19; out1[9] = x21; out1[10] = x23; out1[11] = x25; out1[12] = x27; out1[13] = x29; out1[14] = x31; out1[15] = x32; out1[16] = x33; out1[17] = x35; out1[18] = x37; out1[19] = x39; out1[20] = x41; out1[21] = x43; out1[22] = x45; out1[23] = x46; out1[24] = x47; out1[25] = x49; out1[26] = x51; out1[27] = x53; out1[28] = x55; out1[29] = x57; out1[30] = x59; out1[31] = x60; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes( uint64_t out1[4], const uint8_t arg1[32]) { uint64_t x1; uint64_t x2; uint64_t x3; uint64_t x4; uint64_t x5; uint64_t x6; uint64_t x7; uint8_t x8; uint64_t x9; uint64_t x10; uint64_t x11; uint64_t x12; uint64_t x13; uint64_t x14; uint64_t x15; uint8_t x16; uint64_t x17; uint64_t x18; uint64_t x19; uint64_t x20; uint64_t x21; uint64_t x22; uint64_t x23; uint8_t x24; uint64_t x25; uint64_t x26; uint64_t x27; uint64_t x28; uint64_t x29; uint64_t x30; uint64_t x31; uint8_t x32; uint64_t x33; uint64_t x34; uint64_t x35; uint64_t x36; uint64_t x37; uint64_t x38; uint64_t x39; uint64_t x40; uint64_t x41; uint64_t x42; uint64_t x43; uint64_t x44; uint64_t x45; uint64_t x46; uint64_t x47; uint64_t x48; uint64_t x49; uint64_t x50; uint64_t x51; uint64_t x52; uint64_t x53; uint64_t x54; uint64_t x55; uint64_t x56; uint64_t x57; uint64_t x58; uint64_t x59; uint64_t x60; x1 = ((uint64_t)(arg1[31]) << 56); x2 = ((uint64_t)(arg1[30]) << 48); x3 = ((uint64_t)(arg1[29]) << 40); x4 = ((uint64_t)(arg1[28]) << 32); x5 = ((uint64_t)(arg1[27]) << 24); x6 = ((uint64_t)(arg1[26]) << 16); x7 = ((uint64_t)(arg1[25]) << 8); x8 = (arg1[24]); x9 = ((uint64_t)(arg1[23]) << 56); x10 = ((uint64_t)(arg1[22]) << 48); x11 = ((uint64_t)(arg1[21]) << 40); x12 = ((uint64_t)(arg1[20]) << 32); x13 = ((uint64_t)(arg1[19]) << 24); x14 = ((uint64_t)(arg1[18]) << 16); x15 = ((uint64_t)(arg1[17]) << 8); x16 = (arg1[16]); x17 = ((uint64_t)(arg1[15]) << 56); x18 = ((uint64_t)(arg1[14]) << 48); x19 = ((uint64_t)(arg1[13]) << 40); x20 = ((uint64_t)(arg1[12]) << 32); x21 = ((uint64_t)(arg1[11]) << 24); x22 = ((uint64_t)(arg1[10]) << 16); x23 = ((uint64_t)(arg1[9]) << 8); x24 = (arg1[8]); x25 = ((uint64_t)(arg1[7]) << 56); x26 = ((uint64_t)(arg1[6]) << 48); x27 = ((uint64_t)(arg1[5]) << 40); x28 = ((uint64_t)(arg1[4]) << 32); x29 = ((uint64_t)(arg1[3]) << 24); x30 = ((uint64_t)(arg1[2]) << 16); x31 = ((uint64_t)(arg1[1]) << 8); x32 = (arg1[0]); x33 = (x31 + (uint64_t)x32); x34 = (x30 + x33); x35 = (x29 + x34); x36 = (x28 + x35); x37 = (x27 + x36); x38 = (x26 + x37); x39 = (x25 + x38); x40 = (x23 + (uint64_t)x24); x41 = (x22 + x40); x42 = (x21 + x41); x43 = (x20 + x42); x44 = (x19 + x43); x45 = (x18 + x44); x46 = (x17 + x45); x47 = (x15 + (uint64_t)x16); x48 = (x14 + x47); x49 = (x13 + x48); x50 = (x12 + x49); x51 = (x11 + x50); x52 = (x10 + x51); x53 = (x9 + x52); x54 = (x7 + (uint64_t)x8); x55 = (x6 + x54); x56 = (x5 + x55); x57 = (x4 + x56); x58 = (x3 + x57); x59 = (x2 + x58); x60 = (x1 + x59); out1[0] = x39; out1[1] = x46; out1[2] = x53; out1[3] = x60; } /* END verbatim fiat code */ /*- * Finite field inversion via FLT. * NB: this is not a real Fiat function, just named that way for consistency. * Autogenerated: ecp/id_GostR3410_2001_CryptoPro_B_ParamSet/fe_inv.op3 * sliding window w=5 */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_inv(fe_t output, const fe_t t1) { int i; /* temporary variables */ fe_t acc, t23, t25; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(acc, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t25, t1, acc); for (i = 0; i < 9; i++) fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t25, t25, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t23, t25, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t25, t23, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(acc, t1); for (i = 0; i < 247; i++) fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(acc, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(acc, acc, t25); for (i = 0; i < 7; i++) fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(acc, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(output, acc, t23); } /* curve coefficient constants */ static const limb_t const_one[4] = { UINT64_C(0xFFFFFFFFFFFFF367), UINT64_C(0xFFFFFFFFFFFFFFFF), UINT64_C(0xFFFFFFFFFFFFFFFF), UINT64_C(0x7FFFFFFFFFFFFFFF)}; static const limb_t const_b[4] = { UINT64_C(0x8DCC455AA9C5A084), UINT64_C(0x91AB42DF6CF438A8), UINT64_C(0x8F8AA907EEAC7D11), UINT64_C(0x3CE5D221F6285375)}; /* LUT for scalar multiplication by comb interleaving */ static const pt_aff_t lut_cmb[27][16] = { { {{UINT64_C(0xFFFFFFFFFFFFF367), UINT64_C(0xFFFFFFFFFFFFFFFF), UINT64_C(0xFFFFFFFFFFFFFFFF), UINT64_C(0x7FFFFFFFFFFFFFFF)}, {UINT64_C(0xDDDC64B3570C7410), UINT64_C(0xA7B0992513172887), UINT64_C(0x0C4E5C4C4B6382DB), UINT64_C(0x2763DB0F124768DE)}}, {{UINT64_C(0xCD3E57B68457D15D), UINT64_C(0xEB688F7FBEA56E83), UINT64_C(0x235A123C6A13C5CE), UINT64_C(0x0CD7EB9D50F57A6D)}, {UINT64_C(0xC0124E91544C1965), UINT64_C(0x4D9C172962AFA35E), UINT64_C(0x0F92F2C30037C554), UINT64_C(0x1D8998680A3F2665)}}, {{UINT64_C(0x9DE4B21355F43EFF), UINT64_C(0x2E110A425C9E63F5), UINT64_C(0x9350A9C31CE5A6DF), UINT64_C(0x377CBF0BA332315E)}, {UINT64_C(0x2805DD4820F0D1B5), UINT64_C(0x3B1975660F9723E5), UINT64_C(0xA1CCA78C84B79937), UINT64_C(0x4F87BB1B94D5E03D)}}, {{UINT64_C(0xE428FBFB5652C96F), UINT64_C(0x2E9A14D2D261BDD1), UINT64_C(0x082D82967453B76A), UINT64_C(0x61EA580E7AC87B02)}, {UINT64_C(0xA0F8C2BACF368FDB), UINT64_C(0xDF093380D73B2A28), UINT64_C(0xFA0928B2EA8FE5D2), UINT64_C(0x77A674925F86D38A)}}, {{UINT64_C(0xDFFAB41027670451), UINT64_C(0xEBC3D0171200AD3A), UINT64_C(0xF68324F325F4F6C4), UINT64_C(0x4A24CD5F7D0EAFD0)}, {UINT64_C(0xF8FBD489D3F6BD1C), UINT64_C(0x0F6B56D567B473DE), UINT64_C(0x6FB063DECACF0D6B), UINT64_C(0x27F2E7E996DC574B)}}, {{UINT64_C(0xA6A1064593937228), UINT64_C(0xAB7550B4A9165BBB), UINT64_C(0xD682D4F1CB0EDBE8), UINT64_C(0x2261FCEC40E5AD8D)}, {UINT64_C(0x9F2119C6CCBD4E18), UINT64_C(0x2FD094E9AAB09697), UINT64_C(0x00331713E700929E), UINT64_C(0x6C5F2EFE54338FE1)}}, {{UINT64_C(0xD631401742FFF78A), UINT64_C(0x38F23A912087E055), UINT64_C(0xE30E809C10EF1CAC), UINT64_C(0x3BCB0A542432FF74)}, {UINT64_C(0x2B4B5B97B31509E6), UINT64_C(0x117FE9D73E54AF47), UINT64_C(0xE513C0BE52F63ACA), UINT64_C(0x41ED8ADAB1C80A6B)}}, {{UINT64_C(0x61A31837E0A79FCD), UINT64_C(0x8F742B5751D3DE38), UINT64_C(0x10635FCD41354B55), UINT64_C(0x61F30C61946510BE)}, {UINT64_C(0x9183D6776C416DAC), UINT64_C(0x391B7B42345431CB), UINT64_C(0xE3D6F0847C254A8D), UINT64_C(0x777E1F6219D320D8)}}, {{UINT64_C(0x090E633FF05BD85D), UINT64_C(0x546C41A0240392ED), UINT64_C(0x6BBCF15D9F4139CA), UINT64_C(0x73F5B6577FFDA5DA)}, {UINT64_C(0xBC04E353E0622A57), UINT64_C(0xCBD8F01E6E6414F4), UINT64_C(0x53377C0B8C3C0CC5), UINT64_C(0x6D302331E0A14548)}}, {{UINT64_C(0x235487F83D6D456E), UINT64_C(0xBD92203DB3FDCDCF), UINT64_C(0x15B13D60CFFDA977), UINT64_C(0x22DCB48731A1C4B5)}, {UINT64_C(0xA367FB4EC76ED9A2), UINT64_C(0x1E4F7956C0C86AF4), UINT64_C(0x6F087C495B012AD7), UINT64_C(0x33437E4A4949B444)}}, {{UINT64_C(0x261B44FEB7CDDB38), UINT64_C(0xDCE2FE47419216AD), UINT64_C(0xA4CE17FF9428657B), UINT64_C(0x7CE64F48F8329049)}, {UINT64_C(0x4CE742117289C114), UINT64_C(0x0E6224098C212A23), UINT64_C(0xCF75BF452096719D), UINT64_C(0x6F5535817BDC1600)}}, {{UINT64_C(0xE776AA0CB941CBC9), UINT64_C(0x16D670E0951AAED3), UINT64_C(0x79C019DF4B1EC097), UINT64_C(0x635A66BB12266D30)}, {UINT64_C(0x030D843E023AAFD2), UINT64_C(0x10FB61576466108F), UINT64_C(0x93774BEC08D568D5), UINT64_C(0x29D2796204C1EE73)}}, {{UINT64_C(0x6F0F4C2EE00BBC21), UINT64_C(0x9EB34C58A30AB92F), UINT64_C(0x2153D901AE34908B), UINT64_C(0x136A7E1F4EDC188F)}, {UINT64_C(0xF709BF5D8BC45EE4), UINT64_C(0xEA6984E44FAD9A54), UINT64_C(0xFC8E6F8AAF5140EB), UINT64_C(0x25EBF0DE87756E47)}}, {{UINT64_C(0x5C2A97265B1D4B9F), UINT64_C(0xBE235DFD68E93FC7), UINT64_C(0x7766BDB9471A4EA0), UINT64_C(0x476D17CCD9909CD9)}, {UINT64_C(0x4960E5B47B398BC4), UINT64_C(0x909D0F170F58F328), UINT64_C(0x1ABF7E02230EF508), UINT64_C(0x6DE6B3E1D29239C9)}}, {{UINT64_C(0xCCF0AA2885A6DBE3), UINT64_C(0xA5E4B325823C606C), UINT64_C(0xADE98B2A15505FC6), UINT64_C(0x4D4E770302E20C3B)}, {UINT64_C(0x241964174730DF64), UINT64_C(0x3DD47817A914A59D), UINT64_C(0x4D7A317EC4FDFD97), UINT64_C(0x3767E545BE12AA72)}}, {{UINT64_C(0xA0C2A028165C7BF4), UINT64_C(0xCD4DA6EA36A0B483), UINT64_C(0x1E1E63323AF53195), UINT64_C(0x7A025E238D77188F)}, {UINT64_C(0xB3CF03B908D2CEF2), UINT64_C(0x8FEE9BB825A0AFA6), UINT64_C(0x855340E088111895), UINT64_C(0x32E3EF014FB8F8A3)}}, }, { {{UINT64_C(0x33EBE39DEBF87807), UINT64_C(0xB048F96CDBDEFF76), UINT64_C(0xA0496C3C342A3087), UINT64_C(0x7623E19250953679)}, {UINT64_C(0x12F767114B932390), UINT64_C(0xF80851EAACECE2F7), UINT64_C(0xE447465BE5B280EA), UINT64_C(0x0412ADE811115958)}}, {{UINT64_C(0x982F1AC8B5EB0DC2), UINT64_C(0x8464E052BBBCC880), UINT64_C(0xC927B59601335D53), UINT64_C(0x4B0C6F5A4DA4D80B)}, {UINT64_C(0x101E1878E04783AF), UINT64_C(0x50458FFC41D8A690), UINT64_C(0x11499D881B77DFBF), UINT64_C(0x46DC7D221F77A937)}}, {{UINT64_C(0xE9AD22CE620E52C0), UINT64_C(0x0990D6AA4140F356), UINT64_C(0x0F6B2EF70CBBEEE5), UINT64_C(0x2C67DC80EAD414C6)}, {UINT64_C(0xE17182BC23D4CD20), UINT64_C(0xFC8FE3CBC13DDEA9), UINT64_C(0xD1E4A7B83BABC06D), UINT64_C(0x52EA05CC71C06DB7)}}, {{UINT64_C(0xF8ABB7700D022B5B), UINT64_C(0x362B8059199DC689), UINT64_C(0x5D887A4D26BBDEC8), UINT64_C(0x7835F183F7FC2A01)}, {UINT64_C(0xEEDE12F5DE99DF34), UINT64_C(0xBE952638A3082301), UINT64_C(0x829FDF804C35A162), UINT64_C(0x205A2252C2B9645E)}}, {{UINT64_C(0xDE284DA91356E14C), UINT64_C(0xE40CEFE0C37415FE), UINT64_C(0x62BE93E947F6016E), UINT64_C(0x2DD989045DBFE2F6)}, {UINT64_C(0x195B0E982EBC70F9), UINT64_C(0x7E52840DF01F4D43), UINT64_C(0x1AFB1FDF4B1F6AB4), UINT64_C(0x050AABB820B3E491)}}, {{UINT64_C(0xC59E1EDBC645DAD4), UINT64_C(0x5AF6B2DC565A286D), UINT64_C(0xC399A48A13076366), UINT64_C(0x19F4881F4AC0E5B9)}, {UINT64_C(0xC07D02A1CD5AC339), UINT64_C(0x18FBD088ED628A55), UINT64_C(0x2D33C6F4FFA4788E), UINT64_C(0x52E9AE42CCB832E7)}}, {{UINT64_C(0xA47091AE4E5E934E), UINT64_C(0x2542CE1391CED3C6), UINT64_C(0xDDE01FD58FC47857), UINT64_C(0x6BA6E5694304EAA9)}, {UINT64_C(0x2FF0278BE24091A9), UINT64_C(0xB895F0AB782BBCE0), UINT64_C(0xA80CCC97AB8B8828), UINT64_C(0x6A54B96168A7D8FE)}}, {{UINT64_C(0x15E1F5ADBAC4581A), UINT64_C(0x91620EF0D4BAA751), UINT64_C(0x4E65731FC7273C4D), UINT64_C(0x14B166CB7EEE33B5)}, {UINT64_C(0x7B0EFFA53CD06080), UINT64_C(0x4491156A8CF95FF9), UINT64_C(0xC8C64C39E2258574), UINT64_C(0x3D48DA9D13315CE9)}}, {{UINT64_C(0x97A098A399866CE5), UINT64_C(0xF4CCDB40023A1167), UINT64_C(0x4BB32981F8094782), UINT64_C(0x7342CC98C7D5FD13)}, {UINT64_C(0x3C1C5B1878B99D4E), UINT64_C(0x1277668FF4762AC9), UINT64_C(0x612431D76AE50E4F), UINT64_C(0x36C174E036F9071C)}}, {{UINT64_C(0x39194E879327BA7F), UINT64_C(0xC4D251FF7237FA1A), UINT64_C(0x55ED3CD42BA5EB8D), UINT64_C(0x0263AF07BA590188)}, {UINT64_C(0xB4853127EFA82CF3), UINT64_C(0x2CC2D2202B8E761D), UINT64_C(0x4582B81E2722B490), UINT64_C(0x1DA7680A610AA621)}}, {{UINT64_C(0x06A669EE30D297D4), UINT64_C(0xC336B048E133D393), UINT64_C(0xB733A2C493B7B41B), UINT64_C(0x427CC233C7A8E721)}, {UINT64_C(0x727C14F12867BB00), UINT64_C(0x756F4C7AA736035E), UINT64_C(0xB72A3EDE26327A22), UINT64_C(0x4AEDE2BB77F73F28)}}, {{UINT64_C(0xC8A3612FA7282ED0), UINT64_C(0xE4AD8B40B0150579), UINT64_C(0xAB1DE11D0C3FEE4B), UINT64_C(0x613AAD4833B31F23)}, {UINT64_C(0xE74AB8565C91BD21), UINT64_C(0x499177357953D695), UINT64_C(0x3831EB601A53D74F), UINT64_C(0x245977A054DEB1A6)}}, {{UINT64_C(0x15972E4DFFFC1468), UINT64_C(0xA758D9CB141DC24C), UINT64_C(0x5E76FCDFED8694C5), UINT64_C(0x5F9DAF35069B7A5E)}, {UINT64_C(0xFE50FCE4501B5415), UINT64_C(0x6442CF6758CFDE50), UINT64_C(0xA89C6DB438E5F4D0), UINT64_C(0x21F012DBF5D4FEFC)}}, {{UINT64_C(0x2A1170AD98CB9A81), UINT64_C(0x934BD9D5036C5E45), UINT64_C(0x27DF152ECA5095B1), UINT64_C(0x682698DBCCEEE508)}, {UINT64_C(0x1F4FE3A2B973FB5F), UINT64_C(0xD33CBEBE792C7D4D), UINT64_C(0x99D37961E7B33A8F), UINT64_C(0x46B8993B7B6D015D)}}, {{UINT64_C(0x93A3809B6FBAC8F7), UINT64_C(0x84861BF097C55DC4), UINT64_C(0xA6F89EEA15BB65E3), UINT64_C(0x66AE1C5DA6E531D1)}, {UINT64_C(0x643A14FCFD83DAEA), UINT64_C(0xA7A46D0DC585947B), UINT64_C(0xFA20CF074FBA1274), UINT64_C(0x5999ED7B93578A7D)}}, {{UINT64_C(0x36C8B6ED78E7C6CE), UINT64_C(0x6D400CA55E325F44), UINT64_C(0xC6AE09B320B7AA5C), UINT64_C(0x1AF261C189EABC17)}, {UINT64_C(0x64D6FFBBB9E778E4), UINT64_C(0x1C9E223E7FC64BEB), UINT64_C(0x4D68B5205D75E6C0), UINT64_C(0x5A72B1D976677A06)}}, }, { {{UINT64_C(0x62DB66406F08BB17), UINT64_C(0xC34F29DFAE75BB73), UINT64_C(0xD501293D7DBD4851), UINT64_C(0x5EAA94CAAD1F604B)}, {UINT64_C(0x39CFE9D1094408A8), UINT64_C(0xC0F6544CE8A476F2), UINT64_C(0x9F6308B6A42D7607), UINT64_C(0x17F82949D727018F)}}, {{UINT64_C(0xC44453CD9C4C4BD2), UINT64_C(0xA895E247EBD0B947), UINT64_C(0x0AEB7AFCAEBC27F4), UINT64_C(0x2472FD08F04ABFAC)}, {UINT64_C(0x319EC67D73E6E994), UINT64_C(0xD6533E4C798C5FC0), UINT64_C(0xF4C3B24D3FB9AA89), UINT64_C(0x3EC580820A3B376B)}}, {{UINT64_C(0x79732D6F144ACF7A), UINT64_C(0xFDD630C3911342DD), UINT64_C(0xC577C4B34A630649), UINT64_C(0x14956A17BBA999D6)}, {UINT64_C(0x523D3CC8A435A559), UINT64_C(0x488DC690ACDA8861), UINT64_C(0x4CF70928F051C69A), UINT64_C(0x2D98D573955394CB)}}, {{UINT64_C(0xEDB7BA2A23A4B840), UINT64_C(0x725EC496F6C2D93B), UINT64_C(0x0C94818B8833BB3F), UINT64_C(0x51281A31B142B12A)}, {UINT64_C(0x2A8A5706659EDA83), UINT64_C(0x3098F7507F9D6877), UINT64_C(0x87AD0FDF2171F69F), UINT64_C(0x6B7067C31A6F2F28)}}, {{UINT64_C(0x3B52107412B1E36F), UINT64_C(0x727A2432F81E4733), UINT64_C(0xB75A2F3553F2CBBD), UINT64_C(0x46DE933854960EB0)}, {UINT64_C(0xAC5344F8E561D908), UINT64_C(0x4BD40ECB12C67430), UINT64_C(0x1698FD62EF499F97), UINT64_C(0x29EBD7AE6AE9FBD1)}}, {{UINT64_C(0x9DEC249B1EC8110D), UINT64_C(0x2D19053AFD2F5C39), UINT64_C(0xB1189807E01522DF), UINT64_C(0x24A04C16C1424C77)}, {UINT64_C(0xA4FC7C7D24F72226), UINT64_C(0x763405FBA8322501), UINT64_C(0xC5443C9A18F015E0), UINT64_C(0x6DEDA19BC55D6CEA)}}, {{UINT64_C(0x4EF309769EAE2FF9), UINT64_C(0x2549B7F25741B21B), UINT64_C(0x859ACD103BC23F01), UINT64_C(0x05C0358FBF5FB0D7)}, {UINT64_C(0x85E53AA8FB6AB34C), UINT64_C(0x8DAAAA698FD2FD20), UINT64_C(0xBE6D4D3416096FC9), UINT64_C(0x27572C88F8B8B831)}}, {{UINT64_C(0xADB98DC547D56A25), UINT64_C(0x0CC764328B8E1DC6), UINT64_C(0x032C738EBE48C4A1), UINT64_C(0x31372DAD94FC9CF0)}, {UINT64_C(0x8E646A0C78A7DCB2), UINT64_C(0xA32F3E9C6ECD9885), UINT64_C(0x280BB4AD6A3AD963), UINT64_C(0x7DEE1BC4817D4327)}}, {{UINT64_C(0x1AE6A27BF8A7C1E1), UINT64_C(0x558C652FCBC527C7), UINT64_C(0x4084B56EA65056F6), UINT64_C(0x3FD454596D4C838B)}, {UINT64_C(0xF5C15AFD56DE792A), UINT64_C(0xF656FAA488959282), UINT64_C(0x7F0D8EF41C07D63F), UINT64_C(0x44EFFF7DCD841ACC)}}, {{UINT64_C(0xAC28F2A68D3695D8), UINT64_C(0x94959EB83F91E781), UINT64_C(0x7693FFF7FEDD6E1F), UINT64_C(0x2512E6E1A9A699EF)}, {UINT64_C(0x823400EB7955FAB7), UINT64_C(0xCF109EF994924C08), UINT64_C(0x12E087793A709F32), UINT64_C(0x187D04139CC6484C)}}, {{UINT64_C(0xD3932AFBEBDE477F), UINT64_C(0x9D5A542244538D8A), UINT64_C(0x40B0B159166A87AF), UINT64_C(0x31294B3D41D5E078)}, {UINT64_C(0x6C49C853E8C48222), UINT64_C(0x8FBE6620DCD0D611), UINT64_C(0x9DDC7EE2F611007B), UINT64_C(0x12289A60E6652172)}}, {{UINT64_C(0x8B85475BDACF80F7), UINT64_C(0xADBAB3539B5CAEF2), UINT64_C(0x7C4090A38D2A7707), UINT64_C(0x271FA4F1DAB97830)}, {UINT64_C(0x141B725253173E04), UINT64_C(0x4B483D6406D0B127), UINT64_C(0x8FD15BCF063A7AF8), UINT64_C(0x59B19EAFE580F34C)}}, {{UINT64_C(0xA7EEA8C49C0D79B6), UINT64_C(0x766FA113B9185109), UINT64_C(0xB42D74F34642CC64), UINT64_C(0x51D0127BBB817476)}, {UINT64_C(0x6DA097F58AB71448), UINT64_C(0x145872E5F95AD0C7), UINT64_C(0xB7E934F3F1759436), UINT64_C(0x4EA883F93160ED1F)}}, {{UINT64_C(0x30DC39B70CEABAE1), UINT64_C(0x49EC5EE8A606D766), UINT64_C(0x230E276297FC46AF), UINT64_C(0x079A531F5BE79B8D)}, {UINT64_C(0x48253BC2EF08C93F), UINT64_C(0x2D32AF02F124D043), UINT64_C(0x85796D0DAF34D231), UINT64_C(0x06A6205C15F8CECD)}}, {{UINT64_C(0x1FA77AFD47B00D1A), UINT64_C(0x429717B0E48CE97A), UINT64_C(0x38FEF11D57433697), UINT64_C(0x3E91BED67D426687)}, {UINT64_C(0x95919BF72AB4BFE9), UINT64_C(0x7A3F33FC97096B3A), UINT64_C(0x0E0BBAC33DD8C82E), UINT64_C(0x2CE9EFCBF8EDB675)}}, {{UINT64_C(0x2D44E99843D8B81D), UINT64_C(0x8ABFF4196D68A95C), UINT64_C(0x639000A03B2A18DD), UINT64_C(0x7CD15413871E3ED3)}, {UINT64_C(0xC059855B148F0378), UINT64_C(0x50147459616B62BF), UINT64_C(0x53B699AF4D461110), UINT64_C(0x6A0D0EC7EC29E48D)}}, }, { {{UINT64_C(0x5173322115797F35), UINT64_C(0x2F2982144BBE6644), UINT64_C(0x7BC8FEC64A5EF621), UINT64_C(0x3D2BE7857F472F05)}, {UINT64_C(0xA1C3A1C92765C427), UINT64_C(0xBACF08FE24155ACF), UINT64_C(0xA9CC1A179D229948), UINT64_C(0x1918C97F27039FD8)}}, {{UINT64_C(0x2CF393387843FF7B), UINT64_C(0x5FCBDE65258997F2), UINT64_C(0x3980BF90165A98A3), UINT64_C(0x2E80607DBF9458E5)}, {UINT64_C(0x5F646EB67019165C), UINT64_C(0xFA091FBEDDE34205), UINT64_C(0x695348B669267AE3), UINT64_C(0x385B0B6AABC22051)}}, {{UINT64_C(0x3CAE0756B537F78C), UINT64_C(0x3012A9588BE30367), UINT64_C(0x32D26C06981A22C3), UINT64_C(0x7D091FAB2950E833)}, {UINT64_C(0xD8E1B638797ACAAF), UINT64_C(0xE7021C8549F2EA10), UINT64_C(0xCA382BC117A7AF3B), UINT64_C(0x08A5A81DBB809976)}}, {{UINT64_C(0x00F499FD4287BB97), UINT64_C(0xFB6791CADAA9DAF2), UINT64_C(0x9A19E4F3057B2B98), UINT64_C(0x6968D2FFC53C0223)}, {UINT64_C(0xDC741EF5CE88509C), UINT64_C(0x38AE355D306A0570), UINT64_C(0xFECF6589C23AF46B), UINT64_C(0x6C0E6ED16AD48836)}}, {{UINT64_C(0x22B68698E363495D), UINT64_C(0x120005D039AF2BE3), UINT64_C(0xE37B19650BF4BA69), UINT64_C(0x3B416E9326E64AE7)}, {UINT64_C(0xFAED5088DEAC5C59), UINT64_C(0x67436ACCEB2518A5), UINT64_C(0x636B52F891FA788D), UINT64_C(0x10B2A57A655153D1)}}, {{UINT64_C(0xB18060A7833A984C), UINT64_C(0x7EF8374674833BAD), UINT64_C(0xCBFAF742C5B3BC88), UINT64_C(0x7981DC36A1A7F135)}, {UINT64_C(0xE70CCAFA5D076280), UINT64_C(0xEBA80EB707009D85), UINT64_C(0x7D99D24C73778DE2), UINT64_C(0x1EFEE1BBA7262D50)}}, {{UINT64_C(0xBC47F4A26A7CAB32), UINT64_C(0x53F290A7DD6E48A3), UINT64_C(0x82257A1B92F35F9E), UINT64_C(0x73D17B318BB0AAB0)}, {UINT64_C(0xBBD4522AC2DFFE96), UINT64_C(0x9C37DAA1E6EB0501), UINT64_C(0xF4D4D568453DB6BE), UINT64_C(0x2868CBF5642AD2E4)}}, {{UINT64_C(0x40A988E6ABE30C59), UINT64_C(0x5ADED92993057DEC), UINT64_C(0x18FD7E04DACD37B0), UINT64_C(0x6E3FB81E8228ACA5)}, {UINT64_C(0xFF3EEFE64104B0C9), UINT64_C(0xD7DD05E731CA120A), UINT64_C(0xAFD3CF1CD01C1CF8), UINT64_C(0x4D0CD264831BC4E9)}}, {{UINT64_C(0x2641B32182CAC14A), UINT64_C(0x34EB149570990E6C), UINT64_C(0x3E5AF58FA1C74CA6), UINT64_C(0x11B50821616B7A2D)}, {UINT64_C(0x891636E3C4FA9719), UINT64_C(0xAEE84C27107DD719), UINT64_C(0xA2B0D83EC1872E75), UINT64_C(0x7DD62CBC7383069E)}}, {{UINT64_C(0xEBA4A024C81B7E15), UINT64_C(0x1CC37E0804516070), UINT64_C(0xEF1F0401F90CE59D), UINT64_C(0x3B4259D5E062E133)}, {UINT64_C(0x87A1DBFACF2CA1DD), UINT64_C(0xCFBFB15F61FD1AFB), UINT64_C(0xFBFD9899ECF4C7BA), UINT64_C(0x57C84CEE2725FA50)}}, {{UINT64_C(0x8B0B7414EFA6E3D0), UINT64_C(0xD9725C5EB3D04224), UINT64_C(0x670E6C508A91371E), UINT64_C(0x4D1304679B25BD3B)}, {UINT64_C(0x18D77D155CF18D4F), UINT64_C(0xEF80DC411CA09677), UINT64_C(0x6F3A961BB9A05CF9), UINT64_C(0x0BB8A5187C1433A4)}}, {{UINT64_C(0xAC0CF52AB33FCF05), UINT64_C(0xAD03692F1CDC7782), UINT64_C(0xB345BAE6AA02B77E), UINT64_C(0x05096694456FCFA9)}, {UINT64_C(0xA898444825D4CF32), UINT64_C(0xD76393E315184188), UINT64_C(0x7D4A8C0CEA069BED), UINT64_C(0x4D22268D11E18347)}}, {{UINT64_C(0xC2A0BB753CB3C0F1), UINT64_C(0x61F4EC4C8EBA58C6), UINT64_C(0x5D3F0D44DFC4A903), UINT64_C(0x0B6CE81BF9B6F79A)}, {UINT64_C(0xF694A44A94E49623), UINT64_C(0xCFCBB7E11BDF75E0), UINT64_C(0x20CEE1BDE0337E13), UINT64_C(0x694EA40BDFF02E18)}}, {{UINT64_C(0xC21BE0FA78D1DC2E), UINT64_C(0x08B4D9A5ED0E49E0), UINT64_C(0x676731AB827F0B4C), UINT64_C(0x674ECC79EBAB5894)}, {UINT64_C(0xB29BD0D439ABB148), UINT64_C(0x8207A8F82378A63A), UINT64_C(0xE36A549D1E4C29C2), UINT64_C(0x380D48DE3F1C255B)}}, {{UINT64_C(0x6AB6F887E5F2C87E), UINT64_C(0xE92C7345A01AEC86), UINT64_C(0x697F45208660C26F), UINT64_C(0x4F2488E09B58015B)}, {UINT64_C(0xB2410B3EBB41900C), UINT64_C(0x31267500BE1A8A39), UINT64_C(0xA7C9997CB9140554), UINT64_C(0x335B18061CD41524)}}, {{UINT64_C(0xB836FD9F14873270), UINT64_C(0x1AE0F512E3243EC5), UINT64_C(0xA743E30483B9AB74), UINT64_C(0x1569C30D3A5758C7)}, {UINT64_C(0x003CEF9A9E8F9E52), UINT64_C(0x557AFB4A8C22119E), UINT64_C(0x66F2487EF223A966), UINT64_C(0x7FA00273A519378F)}}, }, { {{UINT64_C(0x812C024F7B08C1C4), UINT64_C(0xC6017986ADBA8AD9), UINT64_C(0x59C7B16C0601BD82), UINT64_C(0x41B6A45C0CFA5622)}, {UINT64_C(0x353A67D583C1E3E8), UINT64_C(0x9A83438EC65F5059), UINT64_C(0x9995037786EEA346), UINT64_C(0x74E2F4BD330D2570)}}, {{UINT64_C(0xDB8E53C1B4A8BDA8), UINT64_C(0xA850047E2C003C77), UINT64_C(0xFFD48A731B018831), UINT64_C(0x24F96CB68B325062)}, {UINT64_C(0x3779CA4DCD2B821B), UINT64_C(0xC2AFBF6EC3159CE7), UINT64_C(0x8A580B1A10F18DE9), UINT64_C(0x37043D0D8CF75334)}}, {{UINT64_C(0x0451DCDAECCCF2E8), UINT64_C(0xCF7A3AD9752A134F), UINT64_C(0xD5754596FBDAE56C), UINT64_C(0x15237D73F4CDCF6A)}, {UINT64_C(0x1DF5912CECA37967), UINT64_C(0x60934339336CD97E), UINT64_C(0xA4E523FE434DDC01), UINT64_C(0x24E81DC679DBE24C)}}, {{UINT64_C(0x28F0D73BC83B2B7C), UINT64_C(0x45BE220F7B5DE1AA), UINT64_C(0x1B785230B136A877), UINT64_C(0x5A94122AAEFF115B)}, {UINT64_C(0xEF895F0C8E598998), UINT64_C(0xCEE32B3EF4C622C3), UINT64_C(0x2D080B1DB256CFD0), UINT64_C(0x672686D621075E15)}}, {{UINT64_C(0xE85FB5759F9F26FE), UINT64_C(0x1DE57B8393A7966E), UINT64_C(0xA9948DE8DD8CB696), UINT64_C(0x226C95A6758E685D)}, {UINT64_C(0x38B0753B3729C663), UINT64_C(0xD46CA4D9410E4884), UINT64_C(0x1D6FA5F977516FA4), UINT64_C(0x09A0FDB8696CFAFC)}}, {{UINT64_C(0xD1DAD8E9CC7F6FD8), UINT64_C(0x7BB9F606022195A2), UINT64_C(0x1B997396223A9346), UINT64_C(0x6ACD6F7C88DCFB04)}, {UINT64_C(0x9029E5EB3AC52F65), UINT64_C(0xED1D7A0F935A39DE), UINT64_C(0xF1D58C3A538D8914), UINT64_C(0x19153569B36B8342)}}, {{UINT64_C(0xFF600354E2502156), UINT64_C(0xE386A20F733DA5EC), UINT64_C(0xD6FBCBBB9D24D11D), UINT64_C(0x0B57498C0B06C843)}, {UINT64_C(0x98F1FFF87A834667), UINT64_C(0x4AEB8788C7DF05F5), UINT64_C(0x8CFA3B01C2681DA4), UINT64_C(0x1AECC0E82FA2FAEA)}}, {{UINT64_C(0x3827886594C5CBC5), UINT64_C(0x9ADA7CAB041A755A), UINT64_C(0xB38F762A8D891640), UINT64_C(0x28F6FBB200AD88F0)}, {UINT64_C(0x3F9629E33709CD6D), UINT64_C(0xD2435A554912F483), UINT64_C(0x305BEA64DFF5AB69), UINT64_C(0x4D29041A663BB0D9)}}, {{UINT64_C(0xDC4BC9D4E2FD9338), UINT64_C(0x5389390DBA7938FC), UINT64_C(0xC42B812DF329B218), UINT64_C(0x5E809B5EFA9F1956)}, {UINT64_C(0xE2A89BAA523D74C3), UINT64_C(0x97CD9FFB78CBA7B5), UINT64_C(0x25F953015B07BCD2), UINT64_C(0x4042C7052064BB3A)}}, {{UINT64_C(0xD8B6ADA428D53BF9), UINT64_C(0x5E922CA5A4210F2D), UINT64_C(0x9501F46AF05A1629), UINT64_C(0x28094E54C6CD71CD)}, {UINT64_C(0x8D5484D5811285AD), UINT64_C(0xFB2168F41593EE86), UINT64_C(0x693D3B32AC54A41D), UINT64_C(0x3DAFEC0728A5425C)}}, {{UINT64_C(0x0E4CF0D0D12837A8), UINT64_C(0x19FA2CC9CF5273BB), UINT64_C(0x56346BAE116A20C4), UINT64_C(0x4F3597FE0E436A36)}, {UINT64_C(0x459D3FFBE8EB1B85), UINT64_C(0x7C7186725AE04130), UINT64_C(0xA37C258660302740), UINT64_C(0x2871AF37913072D8)}}, {{UINT64_C(0xD77249B78590319D), UINT64_C(0x73F7A684EB06B813), UINT64_C(0x4C9DC5B971D1D580), UINT64_C(0x7C91A9F55A50A95B)}, {UINT64_C(0x4F8F2E890475F161), UINT64_C(0xF34EC1DD538B7F94), UINT64_C(0xB8FF6C65D46F2575), UINT64_C(0x79A2CE2C64433C80)}}, {{UINT64_C(0x38448A531AEB7039), UINT64_C(0xF5EC03F7417189EC), UINT64_C(0xFA095CA1EB92FF2B), UINT64_C(0x4612F720E4FCAEDB)}, {UINT64_C(0xC945E966F30AAE0E), UINT64_C(0xF61CFE85340A7A1D), UINT64_C(0xA2560BC6E42D7920), UINT64_C(0x07D7B321A692E9C7)}}, {{UINT64_C(0xB9C26307592C60C5), UINT64_C(0xCECBC6C30F59D966), UINT64_C(0x8BA31FD65459D89E), UINT64_C(0x1A4AF6B147C7FAE8)}, {UINT64_C(0x66487766B431D720), UINT64_C(0x5D5973095108B845), UINT64_C(0xA3B94FD7CA8E6E0D), UINT64_C(0x639519E355C6A48D)}}, {{UINT64_C(0xAD3EE167052DC195), UINT64_C(0x4DF2BFC70947816B), UINT64_C(0x5D463469ABADBB3C), UINT64_C(0x6F7AA885C33D4F96)}, {UINT64_C(0x3DD27536FE06133C), UINT64_C(0x27A557B22796E7ED), UINT64_C(0x1117CCB73D314A4F), UINT64_C(0x6F0C0AE023968946)}}, {{UINT64_C(0x0A3D4DAEE2110C00), UINT64_C(0x0389D3A54C633A23), UINT64_C(0xE167BDFA83AEC172), UINT64_C(0x067070CEFB38E8F1)}, {UINT64_C(0x411373674DF220C5), UINT64_C(0xB255E5D359C39F05), UINT64_C(0xE437984E043C75B3), UINT64_C(0x01DCD7716A22994A)}}, }, { {{UINT64_C(0xD2880DF24C6FDDCF), UINT64_C(0x76A28FF28A00D80F), UINT64_C(0x257CB1F80792F82C), UINT64_C(0x07938ABC605703EA)}, {UINT64_C(0xD99F0AC95F61B0FE), UINT64_C(0x440DC63C8EC15433), UINT64_C(0xD9BDDFF186AB5DDB), UINT64_C(0x3B8875DC744755EA)}}, {{UINT64_C(0x01D904404938C9FB), UINT64_C(0x900657FD8DB6A890), UINT64_C(0xDCC5068AF60A173A), UINT64_C(0x5F3EB242857C7B2A)}, {UINT64_C(0x634240BDA4F0EB9E), UINT64_C(0xACDDA6C444E85C70), UINT64_C(0x753F02AB0AABE4C5), UINT64_C(0x33D89D21C1D034E1)}}, {{UINT64_C(0x4596B52D1279B25B), UINT64_C(0x494669D9A48014AE), UINT64_C(0x9A26B6FC4FD22150), UINT64_C(0x394DE0BBF07D5A3F)}, {UINT64_C(0x12DFE5A6634C1733), UINT64_C(0x33EC21D21EBC5177), UINT64_C(0x454B4930527514CC), UINT64_C(0x7F23BD0F41405532)}}, {{UINT64_C(0xB2879E7FBAC9DD30), UINT64_C(0x259BB1CB06CE7672), UINT64_C(0x201DB42EBB97BE10), UINT64_C(0x112D60792EA35A8E)}, {UINT64_C(0x7CC756D46B3B9933), UINT64_C(0x4BD24810781CE4DD), UINT64_C(0x53CB4E388733247E), UINT64_C(0x47BD6A309DA66787)}}, {{UINT64_C(0x8A700953BA600C8E), UINT64_C(0xD466F11DCF388C0D), UINT64_C(0xD485F341E4A17A8E), UINT64_C(0x63278918234FC16D)}, {UINT64_C(0xF4DDA875BB82046D), UINT64_C(0xD61E4E582945470A), UINT64_C(0xCDB6C5BD6D0F8976), UINT64_C(0x44CD9E4D10A004A2)}}, {{UINT64_C(0x595CD94249C4AA6E), UINT64_C(0xE5A901363DE400C8), UINT64_C(0x4BCED3BD9DD12D9E), UINT64_C(0x3700CF9278E3D5E4)}, {UINT64_C(0xECFFF49875A32D1A), UINT64_C(0xC28DDE373C4A54B2), UINT64_C(0x8DC22352993CAE6D), UINT64_C(0x46CB540852ED7019)}}, {{UINT64_C(0x71FFAED0EA94E7BF), UINT64_C(0xC0817D2CD5AE6185), UINT64_C(0x7B72B8B95CF23687), UINT64_C(0x61DDE59960A450E1)}, {UINT64_C(0x17CF0B10D13870E6), UINT64_C(0x7D08E1FB5F2930BB), UINT64_C(0x8D0F4F5583807C14), UINT64_C(0x61EBFC1A6E6DB701)}}, {{UINT64_C(0x247A3F650FCAFE68), UINT64_C(0x575480357AC2A25E), UINT64_C(0xB7466CA53CD0FE06), UINT64_C(0x7B0D8B36BCC31AB3)}, {UINT64_C(0x2FAAF49CA6D4358C), UINT64_C(0xD9E5E2FE3E9B4E31), UINT64_C(0xA6A859A0F6086336), UINT64_C(0x0C2A442AA9C19F84)}}, {{UINT64_C(0x66FEA8413BC0AD7D), UINT64_C(0xCD3A546C32C9158E), UINT64_C(0xACD2EE7F8FE1DF7F), UINT64_C(0x10F58C0AEBE9621E)}, {UINT64_C(0x80047C54478B667D), UINT64_C(0x9EAE5FAA89870DCE), UINT64_C(0xC05BEB330520A005), UINT64_C(0x2CFBC921352AC891)}}, {{UINT64_C(0x6842E6B8632F6D73), UINT64_C(0x6F2B57242B9FFAEA), UINT64_C(0x7ACCC9829341D2FA), UINT64_C(0x6DAD9A1188809B65)}, {UINT64_C(0x3411850CB6CC2240), UINT64_C(0x8547BCAFB64937E1), UINT64_C(0x49AEDD5F6978F636), UINT64_C(0x38F5975285A53D2A)}}, {{UINT64_C(0x5C38EB49F5F5A2D0), UINT64_C(0xE028121BE3BF779C), UINT64_C(0x649997C8A783D5E3), UINT64_C(0x04DE984A2C06CC0F)}, {UINT64_C(0x52C834B0A49D6239), UINT64_C(0x070A1B09628413AC), UINT64_C(0x2FBE0CA5A8624A1E), UINT64_C(0x687D93C3268D930A)}}, {{UINT64_C(0xC7CD6805314C47A4), UINT64_C(0x8BD0C630CE7A9A6D), UINT64_C(0xCDB2DAD534F727BA), UINT64_C(0x7814C41425DB0189)}, {UINT64_C(0xD7F9C5DC7DD9CAEE), UINT64_C(0xDA6EACC8798690E4), UINT64_C(0x705794E36B675E01), UINT64_C(0x4A31D71475C5EC38)}}, {{UINT64_C(0xC162A3EA0519D5F2), UINT64_C(0x92146A782958FABF), UINT64_C(0x1E63CBE46CB31EB0), UINT64_C(0x77CE5AADFBC5AD0F)}, {UINT64_C(0x3631E47032605DC6), UINT64_C(0xC7D1C72F43413DD3), UINT64_C(0x171A37940DF6B7C9), UINT64_C(0x6D7117432B5A08BC)}}, {{UINT64_C(0xDDC8057D509EF0F2), UINT64_C(0x05C0B92B6CABB486), UINT64_C(0xD49692B64244D919), UINT64_C(0x4E181744D297F56E)}, {UINT64_C(0x902F6E73F8CBB897), UINT64_C(0xC3B21FE156D01382), UINT64_C(0xA858ABE146890F6D), UINT64_C(0x46B5E2C9506858AF)}}, {{UINT64_C(0x30441281F4DEDE56), UINT64_C(0x13F06FBBA195AEDE), UINT64_C(0xAD5F575B2FDD3BFF), UINT64_C(0x680F656D32ACB590)}, {UINT64_C(0xFB60A8E1E3FAABA7), UINT64_C(0xC8FBC1E489A14827), UINT64_C(0x5835453FA8616136), UINT64_C(0x02826A47E6F4926F)}}, {{UINT64_C(0xAF4319A174F32180), UINT64_C(0x4C9FDD166C2C1712), UINT64_C(0x59CA4FD4AC7E14A7), UINT64_C(0x07AA6E2FABBD4EA4)}, {UINT64_C(0xB4BD441CFE9F121F), UINT64_C(0xDEBB4356CDA452C5), UINT64_C(0xC29F1CFA51C9F451), UINT64_C(0x7E1EEF4C83F598D8)}}, }, { {{UINT64_C(0xFC41A3215014135F), UINT64_C(0xBE95F9BA3EEADF3F), UINT64_C(0x054B12123203A540), UINT64_C(0x6DD2FD173721C745)}, {UINT64_C(0xF86B85785A682B59), UINT64_C(0x872AA481BE801F7D), UINT64_C(0x64C1600C14F865F2), UINT64_C(0x4BDD47AA25365449)}}, {{UINT64_C(0xC96A964CF3A3469F), UINT64_C(0x273C5C859F7DA0E3), UINT64_C(0x88EDC4AC4C1A9DCD), UINT64_C(0x77623444B48E4CAA)}, {UINT64_C(0x7AF34A9C31581FF7), UINT64_C(0x23328C37BB57F7CC), UINT64_C(0xE920D8E98B7C86AB), UINT64_C(0x1C7A7A409DE6D64C)}}, {{UINT64_C(0x0BCDCD2279B9451C), UINT64_C(0x2920B43558F5241B), UINT64_C(0xC24DF7159B33EF3D), UINT64_C(0x15252C5BF2600224)}, {UINT64_C(0xF9C8D8A69A9160B6), UINT64_C(0x3186F2F9A6B9A6B8), UINT64_C(0xC37267DCA377E98A), UINT64_C(0x71319A0A37957189)}}, {{UINT64_C(0x48E5033F6BAF6AE5), UINT64_C(0x72379B2EA460FCE9), UINT64_C(0xFC753D47F3D2FA46), UINT64_C(0x3B67685AED9EDF72)}, {UINT64_C(0x1608E304F712500F), UINT64_C(0xDFA358A49EE1B42A), UINT64_C(0xE7A4B37634B8345C), UINT64_C(0x7D0E0BF306753C17)}}, {{UINT64_C(0xA88526A68FA62042), UINT64_C(0xD6F32BB5393006BD), UINT64_C(0x14804978A5DD5045), UINT64_C(0x34C02662BF0C5E13)}, {UINT64_C(0xF9BEEBF9376E3E3D), UINT64_C(0xFD7740415923DC61), UINT64_C(0xFE77BDFAF9735CF5), UINT64_C(0x2E476E224077CFCC)}}, {{UINT64_C(0xAB8E52EB9BA457EF), UINT64_C(0x95F6C5FE0ABED212), UINT64_C(0x7204B1A6386620FF), UINT64_C(0x463B7474DD180719)}, {UINT64_C(0x7F7D27AAF991D8EE), UINT64_C(0xA7EB10858F67722D), UINT64_C(0x78D7095BE331480A), UINT64_C(0x1DCC8C1266A1C8FA)}}, {{UINT64_C(0xD4C39C183E6A04C1), UINT64_C(0x73DB1C4DB598ABEE), UINT64_C(0x381F9780DF4A7D42), UINT64_C(0x3C19A23152F860CD)}, {UINT64_C(0x7EC899343EF00740), UINT64_C(0x50867788F37FE0D5), UINT64_C(0x502D870B43E84D4A), UINT64_C(0x5F8A84138F744749)}}, {{UINT64_C(0x1C41AAADFAECCFE4), UINT64_C(0xC324F3B921461F41), UINT64_C(0x165ABA3F4E90C0AB), UINT64_C(0x2F96CED55F88E7D3)}, {UINT64_C(0x8CA366FCC0E52768), UINT64_C(0x6CCA017CA55249A7), UINT64_C(0x41ED002F0F7EBCA2), UINT64_C(0x0C33B371A2BAF655)}}, {{UINT64_C(0x3B94CD9C62B928CE), UINT64_C(0x5BC43A6A39729345), UINT64_C(0x044D0C0FC47D223C), UINT64_C(0x3B64B38DB0493367)}, {UINT64_C(0x82AFB645EB74A6C2), UINT64_C(0x0CB01E22D876D71C), UINT64_C(0xCE2A7DCC29C6BCD0), UINT64_C(0x4753DE1CDFD644EC)}}, {{UINT64_C(0xE69FC90362188792), UINT64_C(0xD91DB9BC4914328B), UINT64_C(0x44953F4D3B68F8D0), UINT64_C(0x2950435D0654B283)}, {UINT64_C(0xE599A4AEBE88F609), UINT64_C(0xF801CD9090F5D10E), UINT64_C(0x0AB78DB1D4F1D3D9), UINT64_C(0x3ED9666AC0F71ECB)}}, {{UINT64_C(0x6046A505E1E73E59), UINT64_C(0x8723A3ECF3B5C2E0), UINT64_C(0x4BD95BF6E22C1555), UINT64_C(0x50DC33DB6DA421E9)}, {UINT64_C(0xCFB51E95F1B01327), UINT64_C(0xE7013F2A199A8765), UINT64_C(0xF486FEA777504B0B), UINT64_C(0x2AF0F7E9F9BA61C6)}}, {{UINT64_C(0x9DBA1A02BE00B841), UINT64_C(0x488BA4558BED5F08), UINT64_C(0xF6814A6467F1040E), UINT64_C(0x23AC4762DC252336)}, {UINT64_C(0x25040F02F0ED0577), UINT64_C(0x65209B22C6FFAE9C), UINT64_C(0xCC441A8C485AA0AC), UINT64_C(0x10DFACB659D63A8A)}}, {{UINT64_C(0xBF4A0569C7D86B28), UINT64_C(0x5CDA94C4DBDA9DA4), UINT64_C(0x2235C4CE69058335), UINT64_C(0x68FA5E7CD30C89E2)}, {UINT64_C(0xBB286D3959097B5B), UINT64_C(0x87DA80BB9A20BA7E), UINT64_C(0x85EF865E56F47E54), UINT64_C(0x5BB8786774ABFA5B)}}, {{UINT64_C(0x5DB14FABDE2FA36E), UINT64_C(0x84E3B54677775F09), UINT64_C(0xDA734523DA951D99), UINT64_C(0x04A890973975026E)}, {UINT64_C(0xB5753599C0D12BE1), UINT64_C(0x05670CE9FB864D61), UINT64_C(0xB7153502305BF3CF), UINT64_C(0x7A9BB3572E60AF62)}}, {{UINT64_C(0xF43CDA07C7566DA5), UINT64_C(0x7FC4C7FC53FA4196), UINT64_C(0x1E20E0ED88DCC9F3), UINT64_C(0x7317C7E5FEE23DDA)}, {UINT64_C(0x0305E13F43017070), UINT64_C(0x5568410C6B1CA7C0), UINT64_C(0x0E5D55BA104BA029), UINT64_C(0x118B284E90FD49F8)}}, {{UINT64_C(0xCA0F7B5B8F3C6D8A), UINT64_C(0xAF72DEE0AF7ECBF6), UINT64_C(0x21C86D85BB0EC4F1), UINT64_C(0x0303BC47F0525D17)}, {UINT64_C(0x6ADCAB9F896FFCC0), UINT64_C(0x65764C4524E970CA), UINT64_C(0x0000F14C1C3CA718), UINT64_C(0x01CF1DDBD0292587)}}, }, { {{UINT64_C(0xEC4FABCC86111EBA), UINT64_C(0x599C20B6BBBB793F), UINT64_C(0xF74AE7475657668F), UINT64_C(0x24AF29B277BAE892)}, {UINT64_C(0x47D6876BCFAC9D5E), UINT64_C(0xCACF9F5024369E14), UINT64_C(0x8A231D746F9CAFEF), UINT64_C(0x57645A4EB69AAE58)}}, {{UINT64_C(0x440A3B15489900F6), UINT64_C(0x4B642FD3961AC3C2), UINT64_C(0x3D668599C265B973), UINT64_C(0x5FA0E65D1139CE78)}, {UINT64_C(0x3FF15AF41FAA710E), UINT64_C(0xE45D35CEA9422FC0), UINT64_C(0x56904C06BD7BB349), UINT64_C(0x40C5BEE0E529989D)}}, {{UINT64_C(0x8FA4686170B20298), UINT64_C(0xEC6295384838A136), UINT64_C(0x23ADE0F6137F66D6), UINT64_C(0x1A92E05C8EA53E76)}, {UINT64_C(0x51728E279D51EB7A), UINT64_C(0xA6B0B758C4352E35), UINT64_C(0x84C5933137A11B35), UINT64_C(0x3933EFC1F66B75C7)}}, {{UINT64_C(0x7FB68D6266916D0A), UINT64_C(0x3325D42EF28A9B14), UINT64_C(0x75E83A658592B544), UINT64_C(0x524D1CE02718628F)}, {UINT64_C(0x88A110EA3C584D76), UINT64_C(0x6B034AC44AC09AAC), UINT64_C(0x0648863584FD3A36), UINT64_C(0x516F0EB087D944E1)}}, {{UINT64_C(0xE2016DA0DF11D0BB), UINT64_C(0xB34EB471B01F6540), UINT64_C(0x13E3D330165CBB24), UINT64_C(0x3E755D117CF7F676)}, {UINT64_C(0xD70CF4F84FEA9A69), UINT64_C(0x98F59E0AD18F4337), UINT64_C(0x7CCE7CE6826344BA), UINT64_C(0x30D129D7F4004BBE)}}, {{UINT64_C(0x016EF317BA9CB975), UINT64_C(0x8EEBED19E4B3AB4D), UINT64_C(0x8C597DF0170A2570), UINT64_C(0x451538D85BE6DE70)}, {UINT64_C(0x6C711DAC7A64792F), UINT64_C(0x8F1896EB217EC8FB), UINT64_C(0x82E9C20B7FE18DED), UINT64_C(0x6CEBF4A7B0C5F622)}}, {{UINT64_C(0xD9403EB549CCC64F), UINT64_C(0x807EBD5628B8A3FD), UINT64_C(0xF08BB6590F291E12), UINT64_C(0x020D13E39C3F4432)}, {UINT64_C(0xDA247896752BB92E), UINT64_C(0x9954179486EAFA7A), UINT64_C(0x213E94BA274E36AD), UINT64_C(0x4CC0F1FB61A71333)}}, {{UINT64_C(0x19CC11BD06478801), UINT64_C(0x1251562A6D18216A), UINT64_C(0x7A5F06BBCDD307FC), UINT64_C(0x4285F6ABFAA9CA2A)}, {UINT64_C(0x5A92283181258996), UINT64_C(0x8F7CF8EE27B8B018), UINT64_C(0xF030BEF37F81A62D), UINT64_C(0x417ACBC1CD4FD4E7)}}, {{UINT64_C(0xCFB0EA58EC64412F), UINT64_C(0x9547B64A6091E621), UINT64_C(0x5EA49C7EFD0C9815), UINT64_C(0x6789055AE78B355C)}, {UINT64_C(0x8D743E9877E9A73A), UINT64_C(0xB032EA6A2EA3FA49), UINT64_C(0x52EA3801CEAAA33A), UINT64_C(0x73B3BB8DF2C3E22B)}}, {{UINT64_C(0xAA2A12917DB9E301), UINT64_C(0x7F29770FA1293DD7), UINT64_C(0x3135BB2159683DEC), UINT64_C(0x070F8DF77785B505)}, {UINT64_C(0x8F2158EA37F53677), UINT64_C(0x96CC7B9DABE1AF1C), UINT64_C(0x7F9779156D6477D6), UINT64_C(0x55DB3922DF370EAF)}}, {{UINT64_C(0x3028C03AA9DAC7AE), UINT64_C(0x16F7DF0DBAE06BE0), UINT64_C(0x09548398410D57D9), UINT64_C(0x5E9C7F431510D51F)}, {UINT64_C(0x033B9BE2D07717B3), UINT64_C(0x0D5D8116EF08AB91), UINT64_C(0xD5A172B1EEEFE88F), UINT64_C(0x72B1D29F0996294E)}}, {{UINT64_C(0x9E2B79FBE4D0965C), UINT64_C(0x01F403EEF49D8B8E), UINT64_C(0xBD4D2D48CEB12D6A), UINT64_C(0x4D04DD9A11FB24FB)}, {UINT64_C(0x7E613EC5E5C8D24C), UINT64_C(0x568BEFE8B918E543), UINT64_C(0xD6456D1EE966DF28), UINT64_C(0x2DDEAD63BAFC71E2)}}, {{UINT64_C(0x1D794F92448D72E9), UINT64_C(0x3978052EE7E62BF2), UINT64_C(0xF6C7A72EE2B92538), UINT64_C(0x43879A886EF321F0)}, {UINT64_C(0x2A82314034F6FFBC), UINT64_C(0x26F84E5135F4C485), UINT64_C(0xDEE65540028BFA7E), UINT64_C(0x56216E9D5F033058)}}, {{UINT64_C(0x31CA5470CBC772EE), UINT64_C(0xD3621E11811BB5D0), UINT64_C(0x501C4C4770863D71), UINT64_C(0x0564518ED28D6BDD)}, {UINT64_C(0x60E3B89BD35B64B9), UINT64_C(0xB4F2599A6621A688), UINT64_C(0x1A8C45083B5E116D), UINT64_C(0x633EF5CCFABF3125)}}, {{UINT64_C(0x0DB1D2515D4FF62A), UINT64_C(0x6CBD00EB4B17D658), UINT64_C(0x2FA38212FA1DB737), UINT64_C(0x07B18CB893A7FA03)}, {UINT64_C(0x531E47EF548E5F82), UINT64_C(0xAE7B94FD8276963C), UINT64_C(0x8055D82A6181A13A), UINT64_C(0x5725B51223B6E361)}}, {{UINT64_C(0xD84C70416D8B1FFE), UINT64_C(0xF68ACA0B5D994200), UINT64_C(0x32BF99446BB908E2), UINT64_C(0x1240A3E61AD88DB1)}, {UINT64_C(0xB0BE96AAA92B6472), UINT64_C(0xEF88A155A1B7726C), UINT64_C(0x000FD9ED9349F496), UINT64_C(0x377DCBAD454A05D9)}}, }, { {{UINT64_C(0xD0A092CDC04111D2), UINT64_C(0x5C43A94C338F06D6), UINT64_C(0x697B4C2625E964F3), UINT64_C(0x2CD5A0597572CCFD)}, {UINT64_C(0xA09FC4D4B5B523E4), UINT64_C(0x7D8141E84E1E9042), UINT64_C(0x2462512BD637409E), UINT64_C(0x503F032F7CB2CE75)}}, {{UINT64_C(0xC56F38E3BCBF1450), UINT64_C(0x09F4FC77CF2E5594), UINT64_C(0xF449C3E60FCB653A), UINT64_C(0x6A1FE75264A53C65)}, {UINT64_C(0xFF366FED7C039488), UINT64_C(0x23F58BA58C99A6CB), UINT64_C(0x4B5546C68D67F6D6), UINT64_C(0x03405C85178B1668)}}, {{UINT64_C(0x969F1B33C0C86696), UINT64_C(0x9346D06C13746468), UINT64_C(0x68AED3C8AE0C6D62), UINT64_C(0x7B3D536174FE63D5)}, {UINT64_C(0xFEE8416BC4F4B65D), UINT64_C(0xC79BF488554C6D0A), UINT64_C(0x191D5D27DC402BB0), UINT64_C(0x31B00167E087EB9F)}}, {{UINT64_C(0xD5FE0979E05D281F), UINT64_C(0x8373AB503485446B), UINT64_C(0xCE5258BA9223681F), UINT64_C(0x5F82843EA37BF244)}, {UINT64_C(0x94ED780BCFC16536), UINT64_C(0x6A9739B3BD477733), UINT64_C(0x137D68F2A04A4195), UINT64_C(0x3A0F27E80032BFCE)}}, {{UINT64_C(0x7EADE421358382F9), UINT64_C(0x490B9CA692E3D912), UINT64_C(0x040CE73EF1AFBC2A), UINT64_C(0x5745D47311AE91BA)}, {UINT64_C(0x625BED61CE303B77), UINT64_C(0x85B2A1EB85B03A1D), UINT64_C(0x764F62E43D7C02E0), UINT64_C(0x22C2D16FA7AF6DDE)}}, {{UINT64_C(0x5B985DE6D19377BE), UINT64_C(0x0AF85A06D8E43A10), UINT64_C(0x1465E5040519F4C6), UINT64_C(0x5DA01665E3E20BA3)}, {UINT64_C(0xCD9B8E9B675D9E2A), UINT64_C(0x4C77E1AD6448A2CD), UINT64_C(0xD6094BAD1E5D4465), UINT64_C(0x4C352951C50DB788)}}, {{UINT64_C(0x42581152EE5AB903), UINT64_C(0xDAD2DBC963311418), UINT64_C(0xBCA4F70BB885E56A), UINT64_C(0x1F5DD363B94E0876)}, {UINT64_C(0xF9AD5D043FFF479E), UINT64_C(0xEF1176E5FE06AD2B), UINT64_C(0x46ACB00A216F77AF), UINT64_C(0x709CF4EB857C4F78)}}, {{UINT64_C(0x70CD666ED0D2FF1C), UINT64_C(0x4BAD4A6AE7EFE4AD), UINT64_C(0xB43F6C2D0FA72024), UINT64_C(0x0D78F8E2E90C0617)}, {UINT64_C(0x543B9662F80DCAA7), UINT64_C(0xB02FB3BCF28ADFAF), UINT64_C(0x26C17651C51C54C3), UINT64_C(0x0815F6373D648D88)}}, {{UINT64_C(0xAC4F43C1AEA98FA6), UINT64_C(0x2D223416AC4398C6), UINT64_C(0x48B2EEADDA5C5070), UINT64_C(0x632B65F1BE666F70)}, {UINT64_C(0x971D3BC0952021BE), UINT64_C(0x9FDCB7E023B2C578), UINT64_C(0x476D47153CC21796), UINT64_C(0x4015565F95832A94)}}, {{UINT64_C(0x8913AFAC13CA725C), UINT64_C(0xA56DC461DC18F0D9), UINT64_C(0xAC3AC72010F3AAFE), UINT64_C(0x5D75567EC628D69C)}, {UINT64_C(0xC11BE9DCEEEA4BF7), UINT64_C(0xAD97FBCA1C193BD5), UINT64_C(0xD1EC5BCEC58123E8), UINT64_C(0x0F6DF9309C73D4E5)}}, {{UINT64_C(0xE80A0ADAFD759FFD), UINT64_C(0xE52DF94B239CAFC0), UINT64_C(0x59640161FE7A43E9), UINT64_C(0x7A96995CDB1A38F0)}, {UINT64_C(0xA46A15037CD5011B), UINT64_C(0x75CFB637AC0E9689), UINT64_C(0x27B740CA97AAD2BA), UINT64_C(0x64A0748BEAD2F776)}}, {{UINT64_C(0xB67E5BB50625B3B1), UINT64_C(0x2FE19FFBC66D2832), UINT64_C(0x47815666F70C07CF), UINT64_C(0x5A1AA24AA43E52AB)}, {UINT64_C(0x04EE11F84CAC0E66), UINT64_C(0x51E515833A3A4836), UINT64_C(0x46755F49B44F6DEC), UINT64_C(0x6388408BC1E9B282)}}, {{UINT64_C(0xD47AA9A69DE7A6A7), UINT64_C(0xEC94AD9B189BC9D2), UINT64_C(0xFA89099D8EC0E950), UINT64_C(0x1B9FC2069F64D27F)}, {UINT64_C(0x765724840B729DE1), UINT64_C(0xFE9E8E714BE22EB8), UINT64_C(0x910F0456F9DB5942), UINT64_C(0x4D018459C617D82B)}}, {{UINT64_C(0xB082B58AF5516C6F), UINT64_C(0xFFBA0E73567A8CF5), UINT64_C(0x08FF64CE8A6DD4A0), UINT64_C(0x6CF3C89C69A9F66A)}, {UINT64_C(0x356782BA62FEB0A7), UINT64_C(0x1A18720D3E2907F9), UINT64_C(0xF840FFA30BBD9D92), UINT64_C(0x41D9EECA20926421)}}, {{UINT64_C(0xCF2E8AACB6B08321), UINT64_C(0xC76FBE12010D91C0), UINT64_C(0x5492475068E35E02), UINT64_C(0x74DBA2E19AEE00F8)}, {UINT64_C(0x94C70D6DC5504E82), UINT64_C(0x0BDF415FEA1770F7), UINT64_C(0xDA45B7003CA6DB0A), UINT64_C(0x473C6A04E133A980)}}, {{UINT64_C(0xD1FF6C1E1E188071), UINT64_C(0x621A7D3CEA3F16F8), UINT64_C(0x604673076A160F47), UINT64_C(0x37CA7D3D32DC84EE)}, {UINT64_C(0x54F5F7F667DDFDB5), UINT64_C(0x3A8482F9921BA04B), UINT64_C(0x842F49501A28E238), UINT64_C(0x3A4DC9177214FAFD)}}, }, { {{UINT64_C(0xEDD8360CEEA25E82), UINT64_C(0x3DB6D933FB7B7ED0), UINT64_C(0x882F3C0BABF15199), UINT64_C(0x228664A2516E349D)}, {UINT64_C(0x96E6DCF7E88173DF), UINT64_C(0x382C8D3BD7EC0BC3), UINT64_C(0xFBFF6D216FA5FA58), UINT64_C(0x780039802F41C959)}}, {{UINT64_C(0x713BA43B9D9ACF9C), UINT64_C(0xF59A252D94876559), UINT64_C(0x8B310954437B8ED5), UINT64_C(0x76A83790E474E98E)}, {UINT64_C(0x84C1386AF6040B05), UINT64_C(0x69FA9F43BF3D8189), UINT64_C(0x5584164CA98D4866), UINT64_C(0x6C89CE1D3B9045D0)}}, {{UINT64_C(0xD6EF7540B522FB28), UINT64_C(0xDB561B56BB28D745), UINT64_C(0xC9F7543EEFA58B87), UINT64_C(0x5F02A23BE9062979)}, {UINT64_C(0xFD3C0C196809D624), UINT64_C(0x94481554A92EB229), UINT64_C(0x72D8EC53F5147EFB), UINT64_C(0x143026610D1BA626)}}, {{UINT64_C(0x0B35BD5989020800), UINT64_C(0x3C6F1527430D7DEB), UINT64_C(0x9BEB3C8E2FFFA0E0), UINT64_C(0x7E181B78AFD09A19)}, {UINT64_C(0xE82FD9573B2F0B49), UINT64_C(0x4C9461B10BC0F9DA), UINT64_C(0x87D78C412B1C8B85), UINT64_C(0x775BED20C1F5BDA1)}}, {{UINT64_C(0x883AE89B16350593), UINT64_C(0x85D429CB0C19FEC8), UINT64_C(0x5938BDEC5742C36D), UINT64_C(0x2DDBC7EBDA8A21B7)}, {UINT64_C(0xA249BDE407A2E700), UINT64_C(0x42A3897CE8BD6215), UINT64_C(0x87F30BA7732FF181), UINT64_C(0x5385D7091B912C57)}}, {{UINT64_C(0x2B5C555B288041F5), UINT64_C(0xD3D900401F425866), UINT64_C(0x37E40CD202E0FA71), UINT64_C(0x08B37F263A386038)}, {UINT64_C(0x165BD7FB5DE1ED78), UINT64_C(0x22949E810829ECC9), UINT64_C(0xBB8705CCBCE3D01F), UINT64_C(0x7961BE851D233CDF)}}, {{UINT64_C(0x5D3DBC6B7659B477), UINT64_C(0xFD86577950EF08EB), UINT64_C(0x502729E8F34EA1A5), UINT64_C(0x1548526ED2B64602)}, {UINT64_C(0xB13632FDB91D2675), UINT64_C(0x09A42003F7B37397), UINT64_C(0x37D18F37CCFC4532), UINT64_C(0x3FAEF63B73C7082C)}}, {{UINT64_C(0x3365445FE666DB6D), UINT64_C(0x9051FFF5339A0076), UINT64_C(0x6167FB769BD6D01D), UINT64_C(0x09737137CA087B41)}, {UINT64_C(0xCA2193AEB3270BA7), UINT64_C(0xEF0744C28F2217B3), UINT64_C(0x3E030D58F0DD10D8), UINT64_C(0x667246DBCCB4F2F9)}}, {{UINT64_C(0x31F3030E3773EC8C), UINT64_C(0xAF2B31235AD56010), UINT64_C(0xFC118587B37E9062), UINT64_C(0x52840C2C9C2D5406)}, {UINT64_C(0xA96D3DFF6670ACBB), UINT64_C(0xF469982F772EC6D3), UINT64_C(0x5BE20628A9DF4C88), UINT64_C(0x59D01479673633BC)}}, {{UINT64_C(0xC9223750AFB5083B), UINT64_C(0xF1EB451E191C2160), UINT64_C(0x0D913794A38EC005), UINT64_C(0x31062E9E83FD1D18)}, {UINT64_C(0x070538F55F4816AD), UINT64_C(0x90D4855D925F5DA1), UINT64_C(0xC0BBA87B22F455B6), UINT64_C(0x517B5F80F48D2AE5)}}, {{UINT64_C(0x0D8B670A3F4FA7CA), UINT64_C(0xE29C88493D114EB2), UINT64_C(0x1823780D916A187E), UINT64_C(0x6961C48365EE66A0)}, {UINT64_C(0x2F6FB20A62FDC12C), UINT64_C(0x51414E5F0CFDDE0C), UINT64_C(0x16BD56A7DCA39073), UINT64_C(0x0CFE6DAF648FFD43)}}, {{UINT64_C(0x3789F4CAAEBA9241), UINT64_C(0xE8056BC6107777C6), UINT64_C(0x6EE564C33CB20826), UINT64_C(0x5DF3634745448C69)}, {UINT64_C(0xFD0FA84BB22CE624), UINT64_C(0x2AA19672AC753D50), UINT64_C(0x29A1464F677CC0D0), UINT64_C(0x7C2237B13CEF5493)}}, {{UINT64_C(0x87C2587C24255918), UINT64_C(0x9AA89A0B90B35A37), UINT64_C(0x9932EB7810E7CAEF), UINT64_C(0x49278F16CDE31568)}, {UINT64_C(0xA4D33C6141188ED9), UINT64_C(0xC587BDE005AC3A1D), UINT64_C(0x2A5C5ACC7248B5E0), UINT64_C(0x60026A1D8510D2CB)}}, {{UINT64_C(0xE57CB0C96BAF603C), UINT64_C(0x527F28A6AB770AF0), UINT64_C(0x2850D8E6016F2BC1), UINT64_C(0x0EC2A46C936DC2EC)}, {UINT64_C(0xA0BC5306D4F23FC2), UINT64_C(0x6DBEDA2653A0130F), UINT64_C(0xB1D52F87EE3314B7), UINT64_C(0x17168B126C234CF5)}}, {{UINT64_C(0x8B8BC181DADF17D5), UINT64_C(0x31EC3CADFAFFA918), UINT64_C(0x4611A482274E4658), UINT64_C(0x5A9E365273D35EAD)}, {UINT64_C(0xBA68825BF4028FC7), UINT64_C(0x142859D562E203F5), UINT64_C(0xCE516AC41C817A9E), UINT64_C(0x4201468257223F8D)}}, {{UINT64_C(0x51FBFB2EB4B66798), UINT64_C(0x3A3F15910EA9C4EF), UINT64_C(0x3FD3D026E8814805), UINT64_C(0x3CA531E4B0C8DFD0)}, {UINT64_C(0x69A6B3F8E585A960), UINT64_C(0x1627CC77BD3F567D), UINT64_C(0x6F4EF4305DB9CFD0), UINT64_C(0x05B567078D02278A)}}, }, { {{UINT64_C(0x6663F2F310B96338), UINT64_C(0x69373D1FCE8CA31C), UINT64_C(0x3D31C5CFD67AEC10), UINT64_C(0x2FAF554516F2547E)}, {UINT64_C(0xF6E397D51EA2EA64), UINT64_C(0x2281A0DFEEAEBE7A), UINT64_C(0x72E53254FA2527EC), UINT64_C(0x660D059A76432155)}}, {{UINT64_C(0xD3CA8B132C66D937), UINT64_C(0xC6F34B08CD2DF849), UINT64_C(0x9AF2C9E3A23A9F73), UINT64_C(0x24D44BD9702388E9)}, {UINT64_C(0x8DA4D6A4D1B3DA10), UINT64_C(0xB9FAFBF440B93B10), UINT64_C(0xBBE51BB3EFCFD2A3), UINT64_C(0x68BE03951844581D)}}, {{UINT64_C(0xDECABD8C0EA1FAE1), UINT64_C(0xA7499225FDFED7C2), UINT64_C(0x08489E35FB468B83), UINT64_C(0x5B68934443D95F9C)}, {UINT64_C(0x9FC8364A9D2F522E), UINT64_C(0x114DB31A3A5D27A4), UINT64_C(0xC6A35992E33A9EC8), UINT64_C(0x6FE9EC3BDC9ACAF6)}}, {{UINT64_C(0x98AE2D66DEAFC64C), UINT64_C(0x95AAC8EFABE706B7), UINT64_C(0xB15A6604223DFA3B), UINT64_C(0x77DBC24AE24B43CB)}, {UINT64_C(0x65D6F8718542FA2A), UINT64_C(0x1093B2735D326A1A), UINT64_C(0xBA82D607F137AFEF), UINT64_C(0x502B32E3B9DEA6A7)}}, {{UINT64_C(0x88906BD6885CA6CE), UINT64_C(0x136ADF9A1D36BFEE), UINT64_C(0xF844088C09AA61E3), UINT64_C(0x4E508EA351BAC299)}, {UINT64_C(0x251ACD26EB821936), UINT64_C(0xDF6AD7D543D90E10), UINT64_C(0xEBCD7046DE7F14B9), UINT64_C(0x1DB258B1AB503259)}}, {{UINT64_C(0x348E301890AD5D55), UINT64_C(0x0EF6BE737067806A), UINT64_C(0x072C113441627FCC), UINT64_C(0x48EE7606E904F823)}, {UINT64_C(0xEE6AB582D9FD5EF3), UINT64_C(0x57765D0317AB50BC), UINT64_C(0x1CCFB407FB7DEC68), UINT64_C(0x2E1771C7141DF51D)}}, {{UINT64_C(0xCBDD6235A013284B), UINT64_C(0x4D93FD8720D07125), UINT64_C(0xB3D055B3D485418E), UINT64_C(0x4EFB8763C67ADD2D)}, {UINT64_C(0xEC3693821B2DF427), UINT64_C(0x2500979164D0DDF4), UINT64_C(0x9BD42FFC163056C8), UINT64_C(0x605277925B88BEBA)}}, {{UINT64_C(0x6D5D6A869D82DADF), UINT64_C(0xC3BA9A167C24A1CA), UINT64_C(0x838167EC2E6981CC), UINT64_C(0x7FB5D8577E1E4237)}, {UINT64_C(0x83B2C2FC86A40BC7), UINT64_C(0x679D2DFC6F9AC4FB), UINT64_C(0x0B3714CDE45455EF), UINT64_C(0x1C8D833D394A7797)}}, {{UINT64_C(0x1FBF89614E641C9D), UINT64_C(0x3330DAB0D951DFC8), UINT64_C(0x9D4EBA4D051D96DB), UINT64_C(0x27C6DBF023066924)}, {UINT64_C(0xB950C648DA5D1D79), UINT64_C(0x544D46BA5E9CD783), UINT64_C(0xFA77226FE69BA3EF), UINT64_C(0x0A93D219E4DA8423)}}, {{UINT64_C(0x7C377CC65BDCA76B), UINT64_C(0x7DF505D7DC58D194), UINT64_C(0x18A24C0B13E389E1), UINT64_C(0x5E0782DD6C3972FD)}, {UINT64_C(0x97AD477E6680FCE1), UINT64_C(0x6B07BF223CBAB792), UINT64_C(0xB8DF3C73DC68C9E2), UINT64_C(0x33AB5A4CC04B2749)}}, {{UINT64_C(0xD151C7627E79B5A7), UINT64_C(0xA4356B79C82C7B8A), UINT64_C(0x931DDDE896E0A2E2), UINT64_C(0x40378EB252C54FDC)}, {UINT64_C(0xA6BBD5E340C24003), UINT64_C(0xB4F3246E65C34FEA), UINT64_C(0x780B21ED9C767A23), UINT64_C(0x5F1E95FE52BD7E83)}}, {{UINT64_C(0x4F3453DFCF39F9C4), UINT64_C(0xA3E1CFD1B8CC2CA6), UINT64_C(0xE49BC49C4B898859), UINT64_C(0x4FFD7BD66C0BF055)}, {UINT64_C(0x7DE7604CD139AD1B), UINT64_C(0x6973F5EB2A3CE8FE), UINT64_C(0xAC66FF97F9501ECC), UINT64_C(0x3D96F1E2A97D46CD)}}, {{UINT64_C(0x70D5A0D06106EB96), UINT64_C(0x938E038F398C1FD9), UINT64_C(0xE66B70071F3A1AA9), UINT64_C(0x42BDB264F5BD9308)}, {UINT64_C(0x4B3FD7545AF84957), UINT64_C(0x9E3E17FA4E27DC6B), UINT64_C(0x384FCACD51D8560B), UINT64_C(0x42F00D11F8068C09)}}, {{UINT64_C(0x794C1E6A7D5897D5), UINT64_C(0x4901097FDF72DCA0), UINT64_C(0xDED5B1920B01E4C4), UINT64_C(0x364FF58226DD41E9)}, {UINT64_C(0xA3F92DCC32FCA925), UINT64_C(0x8A1FB329207AA09A), UINT64_C(0xA9274BD3F512AE3A), UINT64_C(0x161C82BCC47B9007)}}, {{UINT64_C(0x482ECE3B7AE1175F), UINT64_C(0x97CAC7E8BDD5DC6C), UINT64_C(0x562253099FDA910D), UINT64_C(0x52A9893B9FC206B9)}, {UINT64_C(0xAD9F2A9205BB5ACA), UINT64_C(0xB9EEFB5BA3B65716), UINT64_C(0xE7BC173B8DB5A8D4), UINT64_C(0x6715EC64399DAE9E)}}, {{UINT64_C(0x780796D15E41AC75), UINT64_C(0x3E165C784FB3A0B4), UINT64_C(0x198599BA237103E9), UINT64_C(0x2C04C3F5FA7ED86B)}, {UINT64_C(0x29547DA8AC9356F0), UINT64_C(0xCB345AB479EADA37), UINT64_C(0x1D15D377A295BF2D), UINT64_C(0x10292C9D2FDC8131)}}, }, { {{UINT64_C(0xADF3B54740E1DC7E), UINT64_C(0x420CE2DD1C345D14), UINT64_C(0xC08E3CBE21DC5C2D), UINT64_C(0x79FDC0006F8FCE80)}, {UINT64_C(0x23EBDF7FCB105CE7), UINT64_C(0x793FC99D7C6794A8), UINT64_C(0x4CA3FB21293E3575), UINT64_C(0x7FB2ACB97BF73CC8)}}, {{UINT64_C(0x67DB6C900FC8FCD4), UINT64_C(0x22A3DF5F7EE3B705), UINT64_C(0xD50EBF8BC7B2EDFF), UINT64_C(0x0C70104599522FB7)}, {UINT64_C(0x1420CF02AD4F9044), UINT64_C(0xD78DBA23E5B59451), UINT64_C(0xDFDC1C7F6AEFD853), UINT64_C(0x560DEE94DEA1DAAB)}}, {{UINT64_C(0x0F2355132167A78B), UINT64_C(0xCF4637029F441927), UINT64_C(0xD0AE2723A3D1505C), UINT64_C(0x3149D858CD9FBFF4)}, {UINT64_C(0x2A73913AF79240FA), UINT64_C(0xC904A575252A958B), UINT64_C(0x10D1819078473D97), UINT64_C(0x42CE7A38203BC8C4)}}, {{UINT64_C(0x1D2AD4F2FA59BB8B), UINT64_C(0x8234964C79F137DD), UINT64_C(0x00B63A305D02679E), UINT64_C(0x506C45BE5DD7543D)}, {UINT64_C(0x4378F900776BF80C), UINT64_C(0x179558B2B312F2BB), UINT64_C(0x5B15368CEA37C183), UINT64_C(0x7593B19FB198E42D)}}, {{UINT64_C(0xED723535DEFA1F48), UINT64_C(0x0DAFC48B87F96EE5), UINT64_C(0x0AEFA3BA91B1B52C), UINT64_C(0x56BA1B33A1ADBEA4)}, {UINT64_C(0x8A0B617030A6C905), UINT64_C(0xC5BA3518B272D12E), UINT64_C(0x782100CF4B6643A9), UINT64_C(0x12DEE80385C5BD2B)}}, {{UINT64_C(0xDD07D2D578FCADD6), UINT64_C(0x8CB8E8A83B25C523), UINT64_C(0x25063508530919CF), UINT64_C(0x45D3DD541E24F7A1)}, {UINT64_C(0x296AE89349DDAF96), UINT64_C(0x7EF3CDE0ACE559F5), UINT64_C(0x9CDF22E40D36F87B), UINT64_C(0x196847654AC9A845)}}, {{UINT64_C(0x3955B5ABC597B7AE), UINT64_C(0x59F3BA053AB49731), UINT64_C(0xBCA5B117F525C6C8), UINT64_C(0x4969C13432050B8D)}, {UINT64_C(0x353183D9970E8E49), UINT64_C(0x3D005213E95300CF), UINT64_C(0x595F9C8E09022378), UINT64_C(0x70FA8B471A445C28)}}, {{UINT64_C(0xECC88EE3BADB79EA), UINT64_C(0x5BDAF68CFBD8464E), UINT64_C(0x24AF6A4CB4280334), UINT64_C(0x17A5DE8B398E5BBE)}, {UINT64_C(0x300B6DEB92999E18), UINT64_C(0xA076691867DEFC2F), UINT64_C(0x4E904450B19F87FF), UINT64_C(0x3010AD94C2871056)}}, {{UINT64_C(0x72E747A1461EFCC3), UINT64_C(0x329EDF18562F923E), UINT64_C(0x65E021D4D081A4E7), UINT64_C(0x4B2DBFFFB727B6F4)}, {UINT64_C(0x5A597A809C8505AC), UINT64_C(0x13486480562B82D2), UINT64_C(0x477FD480CC8234C3), UINT64_C(0x6045ABA404800C00)}}, {{UINT64_C(0x3E0874399C541035), UINT64_C(0x389AA76C6D9D8B6A), UINT64_C(0x68FE5E8336A21299), UINT64_C(0x67AC313D402A32CF)}, {UINT64_C(0x996131D225501A53), UINT64_C(0x5C1B89DEA77A85F4), UINT64_C(0xA9822C84ED6702AD), UINT64_C(0x50F014A456609EA0)}}, {{UINT64_C(0xF0F8B4E6E5A8E91E), UINT64_C(0x734CFF081A2FFEFD), UINT64_C(0x9724EE0B27BCB163), UINT64_C(0x6AF3808B30B8EF68)}, {UINT64_C(0xE5B3829F126E88FC), UINT64_C(0x0F441EE34EE5FD4B), UINT64_C(0x534D2F8CBFEC4D34), UINT64_C(0x3E1F16DE076E6737)}}, {{UINT64_C(0x4DB53E8A4ED36E6A), UINT64_C(0x49A9EFE94352B22F), UINT64_C(0x7829605C39CF005C), UINT64_C(0x190A8E16D85DB959)}, {UINT64_C(0x699810699B073AB3), UINT64_C(0x8C264B878C141AA1), UINT64_C(0x7F614282603ED47C), UINT64_C(0x21FD2E7A9F9B0940)}}, {{UINT64_C(0xC5CA10A01EC6BB3D), UINT64_C(0x9403E3F527A9B02B), UINT64_C(0x9D3D186DFB43F790), UINT64_C(0x7855276E67DC0C00)}, {UINT64_C(0x053DBB2AFFFFB14C), UINT64_C(0x2674666343ACC0A6), UINT64_C(0x1EE7A9467FFC1C68), UINT64_C(0x14BFAF0156DBB0DE)}}, {{UINT64_C(0x11C89A47849EA674), UINT64_C(0x194FAAF094A540E6), UINT64_C(0xE61163F86050E4C0), UINT64_C(0x6939A166B1A07B76)}, {UINT64_C(0x8166CA8E2EF18325), UINT64_C(0x96112E6530C042E2), UINT64_C(0xA805CAE05A394C25), UINT64_C(0x45A0DE010392E6BB)}}, {{UINT64_C(0xB89CEE96B4FAAA56), UINT64_C(0x7A7DC8AE529736DE), UINT64_C(0x9158AA49A727FCF7), UINT64_C(0x621B8B311896B9DA)}, {UINT64_C(0x875930D603BEC74B), UINT64_C(0x1056DB45A7A50309), UINT64_C(0xEE713E04B5657B0E), UINT64_C(0x2D68155E6FCAD967)}}, {{UINT64_C(0x3BB1E9E365B1E2B3), UINT64_C(0x2A61567088425BAB), UINT64_C(0x22F4F32F62F1BA4A), UINT64_C(0x7B5EC25088A59642)}, {UINT64_C(0x7B5BA12A42D30049), UINT64_C(0x4E6AC05586995BE6), UINT64_C(0x04431A0445EC87AC), UINT64_C(0x28974ED7ED94823D)}}, }, { {{UINT64_C(0x5925805712BB5555), UINT64_C(0x03141CD8BB7608EE), UINT64_C(0x84EBDC49EF77714B), UINT64_C(0x6A45FC3AB5DC1A5F)}, {UINT64_C(0x1F6DC2052FBEEC76), UINT64_C(0x17EB733BA920C554), UINT64_C(0xDB022C217A28ACDF), UINT64_C(0x6AF16156A9B62BF1)}}, {{UINT64_C(0x9379D6A880B472CC), UINT64_C(0x6CB08CB07BD92F27), UINT64_C(0x19B3C353147E6E12), UINT64_C(0x3C26CB2F26827839)}, {UINT64_C(0x98AAC9A70CC571E4), UINT64_C(0x075D05F2C3C8FC04), UINT64_C(0x718B55A0D79621AC), UINT64_C(0x149FEECF5B94B41B)}}, {{UINT64_C(0x6A150A64783F9C81), UINT64_C(0x5950C2DF0FB18827), UINT64_C(0xF5D75504F15E3A89), UINT64_C(0x5F92F2F7FCB4406B)}, {UINT64_C(0x665F31E76123E858), UINT64_C(0x4E568EA9A95184A3), UINT64_C(0x851EEADC505FF0AD), UINT64_C(0x62AD5BA6542C3EF8)}}, {{UINT64_C(0x1103859DC55C23FD), UINT64_C(0x06AB0BD6695E4E9B), UINT64_C(0x2CD00D76DD734990), UINT64_C(0x5D59C693B06460E4)}, {UINT64_C(0x3BA8F2F01F9C76DA), UINT64_C(0x08E4A7EC960F5C0E), UINT64_C(0x79C82AD9E4AAB060), UINT64_C(0x093D322C0DF95C43)}}, {{UINT64_C(0x88AF12580C627547), UINT64_C(0x81E5F197889A5E12), UINT64_C(0x99E0E1917CBD84FD), UINT64_C(0x3024BCE8DB0B9711)}, {UINT64_C(0x04075C80DB93B1A2), UINT64_C(0x12F30AF8628B0E63), UINT64_C(0xA3514F26EB25A4ED), UINT64_C(0x3D42E4897BCD0873)}}, {{UINT64_C(0x0F1C16C6754B236F), UINT64_C(0x717CE487594F5D3D), UINT64_C(0x7679C7DAAFAD77B1), UINT64_C(0x51AFD0146F3E724C)}, {UINT64_C(0xAFC9745C3AF6938F), UINT64_C(0xCA12BFA9C4E61CB4), UINT64_C(0x943B56969425CCA7), UINT64_C(0x5BD3E65EB6E48A69)}}, {{UINT64_C(0x2D23CF78DEAE74B1), UINT64_C(0xA686767E043BF2F1), UINT64_C(0x3AFED34DE464ADE9), UINT64_C(0x1E4620735A6AE80B)}, {UINT64_C(0xA86AA408737F7B66), UINT64_C(0xD67A0B49EAB3B6CE), UINT64_C(0x6FF3CA4F275355F3), UINT64_C(0x6F385576688F99AB)}}, {{UINT64_C(0xC9B63343FD2F9A72), UINT64_C(0xBD0A126DAC267E8A), UINT64_C(0x818BD5D85D2839B5), UINT64_C(0x1BBAB4CE0BF5AFCE)}, {UINT64_C(0x2827B24A4D8B67DE), UINT64_C(0x841F6BD3C34E6642), UINT64_C(0xE9F5C1C25E4A34D4), UINT64_C(0x4E98795CFDA4177C)}}, {{UINT64_C(0x3C9FF1C20763AB04), UINT64_C(0x4FC1BE619832FCFD), UINT64_C(0x5FA50C388BD0363A), UINT64_C(0x14C9BB2FF26206BE)}, {UINT64_C(0xAD1A96EB1D31880C), UINT64_C(0xF0A37BC465DFCF8A), UINT64_C(0x389627293D048FE4), UINT64_C(0x017125C06480B254)}}, {{UINT64_C(0x01E819F598D4BAC6), UINT64_C(0xD3686E0436B99D30), UINT64_C(0x0C2876FB200A4A9D), UINT64_C(0x45D50C2FE65782D5)}, {UINT64_C(0xB8316ECE865B7A21), UINT64_C(0xA3ADB90FCC875503), UINT64_C(0xD72E864E98468FB4), UINT64_C(0x13BB23FDDED21F40)}}, {{UINT64_C(0x653C3C15C6B96368), UINT64_C(0x9A42FC2C2B9C381F), UINT64_C(0xF06B41B969534D92), UINT64_C(0x46F7292E3FB7BED2)}, {UINT64_C(0x14A2C42097D1875E), UINT64_C(0x45DFA824D3B2DF55), UINT64_C(0x59CB7E593F2BA72D), UINT64_C(0x2EEC65C9D7D96C98)}}, {{UINT64_C(0x907CD4C849650405), UINT64_C(0xFC29320A37E05E06), UINT64_C(0x99B4C1DF09E29619), UINT64_C(0x74E69BF834DE993F)}, {UINT64_C(0x62C0F296509D9797), UINT64_C(0x2E6BD4E65F1EF554), UINT64_C(0xE30506410D0B71B8), UINT64_C(0x29DA0C9D235DDE6C)}}, {{UINT64_C(0x3CFBCA4B689398C1), UINT64_C(0x11E5880440C9DF13), UINT64_C(0x3923A39BBCDF2489), UINT64_C(0x3805CCC7387C8089)}, {UINT64_C(0xC1B4EB4870319AFA), UINT64_C(0x0A6A5FA4CA089604), UINT64_C(0x16ABDE5473139A20), UINT64_C(0x7C0055E094BD61B5)}}, {{UINT64_C(0xA5AB5CEFCB05A02A), UINT64_C(0xC0B4E1B40BFE903B), UINT64_C(0xBA528329EAC9E7E8), UINT64_C(0x0266C5A70A2456B6)}, {UINT64_C(0x507E9A415E216EEC), UINT64_C(0xFCC06B0AD0F1E440), UINT64_C(0x6FAEFC8EE5C7B26F), UINT64_C(0x4744CF2EB02F85C1)}}, {{UINT64_C(0xF5E2B8121C291BFC), UINT64_C(0xC18E791D2CDCBF7A), UINT64_C(0xC386B96246554345), UINT64_C(0x373E00FB067518CD)}, {UINT64_C(0xC9BA9DF9E950051B), UINT64_C(0x182CB132DD6133EE), UINT64_C(0xD6D7F81570A3C71C), UINT64_C(0x44C5AEBC7FAFE307)}}, {{UINT64_C(0x6C7CE359A9D16080), UINT64_C(0xA874386D1E8B643E), UINT64_C(0xA064812907F48E10), UINT64_C(0x2A40220193E4D619)}, {UINT64_C(0x8B429545BD383EA6), UINT64_C(0xC096D593F2880536), UINT64_C(0xB4057D6C20E299B9), UINT64_C(0x303962CE38A825FA)}}, }, { {{UINT64_C(0x9E426EBF1E1D70D0), UINT64_C(0x6AEA4DDCB83529CA), UINT64_C(0xF3ECD4627CC9A07C), UINT64_C(0x7F255C86C364772E)}, {UINT64_C(0x0DF212CF5613BEF0), UINT64_C(0x771F02A91309F9D0), UINT64_C(0xE97BEE39805FE1F5), UINT64_C(0x54A43430D93522B9)}}, {{UINT64_C(0xC01553BDCDE4EBBE), UINT64_C(0xB1928DDCA02E56C1), UINT64_C(0xB91004BA94A1A417), UINT64_C(0x44F74BE656CB9C88)}, {UINT64_C(0x6A7E3E9B921B62E5), UINT64_C(0xF2BF553B5FBF13C4), UINT64_C(0x51CB776D86D55641), UINT64_C(0x71826BC56425A3AD)}}, {{UINT64_C(0xD6D49F90C6D70EF9), UINT64_C(0x5BD0DA6929EBA0DD), UINT64_C(0x0BBA7571803233EF), UINT64_C(0x0EB0959E679A17D5)}, {UINT64_C(0x97818DC2B8A3D6EC), UINT64_C(0x09497FB0C687EAA2), UINT64_C(0x2E2707EAA65FA4C0), UINT64_C(0x6A74D4C67542F472)}}, {{UINT64_C(0x0D1930061EE0BC40), UINT64_C(0x7D7BEE196DC98BA8), UINT64_C(0x1AD37C98447C38D2), UINT64_C(0x3E163AE1B6B4550A)}, {UINT64_C(0x734E36C95BC93243), UINT64_C(0x54E217FD986C35A8), UINT64_C(0xF0576FF09E3285E3), UINT64_C(0x65C950C8186EE7EB)}}, {{UINT64_C(0x1AB12C042012D277), UINT64_C(0x97CAB84B83872384), UINT64_C(0x479C9CF51C66FCFD), UINT64_C(0x70ABC8B4F276933E)}, {UINT64_C(0xE6B15BF7BA4D14F0), UINT64_C(0xF4060ED322E2F5D5), UINT64_C(0xA53F3CA0CDC5462C), UINT64_C(0x593219D4C6FC3854)}}, {{UINT64_C(0x9DE6993472B6F8A1), UINT64_C(0xECABAEEE19E16B3F), UINT64_C(0x0B537CA5EDA68D7B), UINT64_C(0x744628BDD3CE55B7)}, {UINT64_C(0x3A5B2D8E98A95308), UINT64_C(0x74D0CEF16758C6C8), UINT64_C(0x7538198ADA204834), UINT64_C(0x1E166AAAA644E880)}}, {{UINT64_C(0xE76EE7124674ACF0), UINT64_C(0x40A6F6DEDF9DFB4C), UINT64_C(0x91B0034C40C65721), UINT64_C(0x54FE8B8BF8E0F5E5)}, {UINT64_C(0x6322CA0F75891895), UINT64_C(0x3D1C821E7D20C522), UINT64_C(0x1691407F08043786), UINT64_C(0x02C3083814847D58)}}, {{UINT64_C(0x57DEF069B8F0C372), UINT64_C(0x50375DC30D5ABF2C), UINT64_C(0x2290381475EDFBC9), UINT64_C(0x56E39BD7AE37695A)}, {UINT64_C(0xAB74B187463D13F2), UINT64_C(0xC50CB8A23CDE8886), UINT64_C(0x1EFBD1CFB35F7D59), UINT64_C(0x1296C4821057AE42)}}, {{UINT64_C(0xA350B57BC347E3FB), UINT64_C(0x4312EB75ADF65129), UINT64_C(0xD9A7E2F47F9A6C9E), UINT64_C(0x5493AF7B9BFDCB4D)}, {UINT64_C(0x90A443DD9AC0E58E), UINT64_C(0x9777D58AC6F3BEEF), UINT64_C(0x12F00913965EC900), UINT64_C(0x2F6C5B59480126DA)}}, {{UINT64_C(0x70B907FCBAD8C051), UINT64_C(0x54492D6AD3B4F608), UINT64_C(0xE3B46F1B2E096D9F), UINT64_C(0x522AD6D1747D472A)}, {UINT64_C(0x8FCD161602DAB5E5), UINT64_C(0xD3BA292F357B1C85), UINT64_C(0xA6DB50CD2704F072), UINT64_C(0x63488DDF8341AA73)}}, {{UINT64_C(0x99100A3D0FE2AAAB), UINT64_C(0x7D30C4E98EA44560), UINT64_C(0xBA458C672B4C776D), UINT64_C(0x2EC11420BBA4D85E)}, {UINT64_C(0xB1D9FBA27A7AEC55), UINT64_C(0x432AB2AA7665AAE5), UINT64_C(0xD2755948F3BC7043), UINT64_C(0x2FC331BB82510EAD)}}, {{UINT64_C(0xAAF11CF946253DB1), UINT64_C(0xEB025AEDB0DF307C), UINT64_C(0xCB7C22A57A82ADEE), UINT64_C(0x7316C3909C5FA97B)}, {UINT64_C(0x91620554F518067C), UINT64_C(0x20A438AE3C96A804), UINT64_C(0xC4F9DCDF5B0C090C), UINT64_C(0x77C512DB6E5C1B45)}}, {{UINT64_C(0xC981E682FDD09EDE), UINT64_C(0xC3EB36B7BBB3F57D), UINT64_C(0xA07369C6D12BF450), UINT64_C(0x16627566CE017845)}, {UINT64_C(0xFD8DEC909494AF62), UINT64_C(0x7E79309653FD4B22), UINT64_C(0x21B8E665C8AAEAE9), UINT64_C(0x526FA31818BC33C0)}}, {{UINT64_C(0xF55D32BF853A2647), UINT64_C(0xD873ED6CCDAEE8FE), UINT64_C(0xA3579E2B80E52622), UINT64_C(0x03871ABA33D16FE8)}, {UINT64_C(0x714804AC69925EDF), UINT64_C(0x0340755FF2B964FF), UINT64_C(0x93830F98DA0D1A07), UINT64_C(0x2CAB201EF7FB1E16)}}, {{UINT64_C(0x26DE3A3A22A8AF77), UINT64_C(0x0E77C3DCB45BA630), UINT64_C(0x34F00017FC86E7D1), UINT64_C(0x796ABE2F1B62F7F2)}, {UINT64_C(0x9FA092771663B5B1), UINT64_C(0xFFFDC93F9B2FB9AC), UINT64_C(0x03AECD1A6B340D75), UINT64_C(0x5D55A168314DCCEA)}}, {{UINT64_C(0x678AEF02747DBD0C), UINT64_C(0xF0D47C1CD47A6C09), UINT64_C(0x6C2AC72F3FDD1681), UINT64_C(0x750E70646D789D3A)}, {UINT64_C(0x3F970AFEAEBEDD58), UINT64_C(0x6BBA7956E3540951), UINT64_C(0x7CC461B23E71F6AF), UINT64_C(0x7E51E548C45FED28)}}, }, { {{UINT64_C(0x4A598EFB2CE2CBE5), UINT64_C(0x774CDE0A89C9A51B), UINT64_C(0x2D003680CA907F34), UINT64_C(0x62C32DCA9D3C7D97)}, {UINT64_C(0x37B3A90FB3054D17), UINT64_C(0x1423574C67E58A5A), UINT64_C(0xF1D3BB1A4859FA49), UINT64_C(0x25F0AF1C3F5AFA63)}}, {{UINT64_C(0xD3BF7F621FE53AC9), UINT64_C(0xCE2B67C3CBCE6164), UINT64_C(0xE081C57695341024), UINT64_C(0x32B0EF5D9A70ECAB)}, {UINT64_C(0x3EC93C853BE1E5CE), UINT64_C(0xE25F54EDA0CB7DCD), UINT64_C(0x9D6B57D7517965B2), UINT64_C(0x159F7AB0129B0B27)}}, {{UINT64_C(0xAEF88E95EEFB67F3), UINT64_C(0xEAEB2889E0316AB2), UINT64_C(0x1491881FC2CB6753), UINT64_C(0x67DCDF28702789D0)}, {UINT64_C(0x8282E0A711C0F3FD), UINT64_C(0x9CDCFDB801BA273D), UINT64_C(0x6BF1E04326279B95), UINT64_C(0x0D42AAC685852777)}}, {{UINT64_C(0xC4CE393E608981AB), UINT64_C(0x210E20F852141CB0), UINT64_C(0x22C2586D6B9234B5), UINT64_C(0x52F1B3664366750E)}, {UINT64_C(0xE38ED0D9760AFA55), UINT64_C(0xA43FF25AB5D61A08), UINT64_C(0x0BE3A406B5E21691), UINT64_C(0x37B47A28FD4E17B0)}}, {{UINT64_C(0xC46DC6D44C2C65C2), UINT64_C(0x2A0B452CC54BE778), UINT64_C(0xAF113693F727070E), UINT64_C(0x7B229CD8C68D13A3)}, {UINT64_C(0x0F63097E02D43E4B), UINT64_C(0x912F8D3355627FD8), UINT64_C(0x1EBF39612A0DD9AE), UINT64_C(0x7FD33FDEF0294B2D)}}, {{UINT64_C(0xC72411F5D0CC6D9F), UINT64_C(0x66E04C909B92FF84), UINT64_C(0x0678B4F8E1C033B6), UINT64_C(0x5A99F270E49A972A)}, {UINT64_C(0x3743BCD8D265A4DF), UINT64_C(0x7BD6DDF4CE0404C3), UINT64_C(0x4043767F131750A5), UINT64_C(0x4A7D89839DD65652)}}, {{UINT64_C(0x535BC78412B7822D), UINT64_C(0xDD32DD67F1F9B703), UINT64_C(0xFFDBF0EB2EAA2A1C), UINT64_C(0x497C09FAF64E9822)}, {UINT64_C(0x18E717E932EE2A36), UINT64_C(0xF01CC4F5583949B1), UINT64_C(0x222EE9740A168755), UINT64_C(0x0CD14CD500C81EC9)}}, {{UINT64_C(0x7AE0BD1114C79CDC), UINT64_C(0x67323D1A6DC08C80), UINT64_C(0x2FD1ABC70EF32432), UINT64_C(0x65923246B0E08EBF)}, {UINT64_C(0x0A9FD3D7C0754ECE), UINT64_C(0xE76B26245F8644FA), UINT64_C(0xF1F0BEBA0F8BB385), UINT64_C(0x73251F03FC96778F)}}, {{UINT64_C(0x197150DED08795A9), UINT64_C(0xAD6935AEFBB8B9CF), UINT64_C(0x721186823B2B9EFB), UINT64_C(0x265B288DBC2B7240)}, {UINT64_C(0x7BF2EB362F78C431), UINT64_C(0xF03B83CAF2A6E469), UINT64_C(0x211592564740E74B), UINT64_C(0x35BE57350490F0B9)}}, {{UINT64_C(0x207F33B2806C1CAE), UINT64_C(0x04249127DAC5ADE0), UINT64_C(0xC4CCF33E1CC59DE7), UINT64_C(0x2A17B520272BD6D7)}, {UINT64_C(0xC36F6B3CB48F6585), UINT64_C(0xD32A73790861ACF5), UINT64_C(0x28A12ECB2C3291C6), UINT64_C(0x0E945F95F02A88D0)}}, {{UINT64_C(0x4836EC01D3B3117B), UINT64_C(0x4C197454A4C2FD72), UINT64_C(0x96FCED51F9897721), UINT64_C(0x142028585828C97D)}, {UINT64_C(0xCA7ACED8774755B9), UINT64_C(0x460FF58297252559), UINT64_C(0xAAE457765796DD63), UINT64_C(0x711C916E346DDBF5)}}, {{UINT64_C(0xA60E2E7B5E203692), UINT64_C(0xCFC72FEAF3BF2A45), UINT64_C(0x78729D2872AC0436), UINT64_C(0x3E16DD8B29ABF199)}, {UINT64_C(0xB1705AA615A41F3D), UINT64_C(0x8C7512FE308AB87C), UINT64_C(0xA27411C503995381), UINT64_C(0x3142403CA780CED3)}}, {{UINT64_C(0xE4473E94F1718C7F), UINT64_C(0x601BC194A3CAB6CB), UINT64_C(0x8F3540F8581D491D), UINT64_C(0x456A9B7C43C15321)}, {UINT64_C(0x6F335A2D593BB7ED), UINT64_C(0xB6D5A23F7D791514), UINT64_C(0x976D2F8379235EAD), UINT64_C(0x7D02EA0F44775C97)}}, {{UINT64_C(0x322DBC8CE5EC268E), UINT64_C(0x1F2F6050BE14BF5C), UINT64_C(0x58AC6397EACF6A50), UINT64_C(0x4167CBD5A5401081)}, {UINT64_C(0x8E6F06A1EE5B4BF5), UINT64_C(0x1A6073D56B2F790F), UINT64_C(0x1C09FF3D4F901250), UINT64_C(0x286AF8D7E6B40DF4)}}, {{UINT64_C(0xF74C805706BD53FF), UINT64_C(0x4FCE7281E5788F0D), UINT64_C(0xD6A867AC3D015E6B), UINT64_C(0x04AEC38D6E185A42)}, {UINT64_C(0x8DC12B74083D65CB), UINT64_C(0xDB1AA8AC82966668), UINT64_C(0xBD2233BF28AF1B90), UINT64_C(0x544569A7172CCA11)}}, {{UINT64_C(0x9C56FCA8149BD0BD), UINT64_C(0x2B4EC788A05F8E44), UINT64_C(0x1569CF6D92478943), UINT64_C(0x67E373E857380986)}, {UINT64_C(0xF5CC8232ED3C14DB), UINT64_C(0xE3D184B0F52EAF83), UINT64_C(0x195D41370BC64038), UINT64_C(0x77994388778C3C20)}}, }, { {{UINT64_C(0x3DAA0C47A0CC77AA), UINT64_C(0xB9794E747C69CDF0), UINT64_C(0x3610E50B4549F5D4), UINT64_C(0x262CA564B8A112CA)}, {UINT64_C(0xD5EC795E554E8714), UINT64_C(0x73EE5502717EBEF3), UINT64_C(0xE36E8A1A1947A478), UINT64_C(0x3FBE43A342ADC59D)}}, {{UINT64_C(0x4DE78909021FBCBE), UINT64_C(0xA76A5EE20BBBB324), UINT64_C(0x5B86519ACD67810B), UINT64_C(0x4CCA44A23710A4EE)}, {UINT64_C(0xD79A121DCD1F8BEC), UINT64_C(0x2E12A772DC9CA10E), UINT64_C(0xE301CA3B8C9E9640), UINT64_C(0x4B25FE18B731A957)}}, {{UINT64_C(0xA05DA2CDF4AD7264), UINT64_C(0x31336489076977A5), UINT64_C(0xC1D269BEF2E576A8), UINT64_C(0x1E877ADC7532203F)}, {UINT64_C(0x9C9961BC8B92972C), UINT64_C(0x7BA072726A14D810), UINT64_C(0xE51095A906913136), UINT64_C(0x4674896930E0EA8C)}}, {{UINT64_C(0xDB8EF3463C73BA49), UINT64_C(0xBF2213123720570D), UINT64_C(0xC07B3639605DB0D6), UINT64_C(0x44FCEFA6300336A3)}, {UINT64_C(0x121FAC5C2D234592), UINT64_C(0x901DEE8844E367D7), UINT64_C(0x5B5F3DD61CAA6A3A), UINT64_C(0x72E474ECAC2F6E64)}}, {{UINT64_C(0x15690BEEF55BE61C), UINT64_C(0xE42B945EDF2678A2), UINT64_C(0x60A5C8AA3B7B1776), UINT64_C(0x16103FBCEB9AB938)}, {UINT64_C(0x79722A1E87AD06AB), UINT64_C(0xD7B509F6D6B632A2), UINT64_C(0x8C4E8B2E3B69EB40), UINT64_C(0x6A50958314DB2225)}}, {{UINT64_C(0x169F35D893B78659), UINT64_C(0x989B04D28EFF83AD), UINT64_C(0x72CF7338A6AE4806), UINT64_C(0x6E156C84F4AAA524)}, {UINT64_C(0x33A608EDA1ED5CB2), UINT64_C(0xCE274A64C3D28716), UINT64_C(0xFCF1B17045F0435F), UINT64_C(0x101D1BDB1653D6F6)}}, {{UINT64_C(0x45BC931D2E5A67D9), UINT64_C(0xAFF02C11697DA479), UINT64_C(0x7C7972A32EA3E6E1), UINT64_C(0x71A17D505E97BB90)}, {UINT64_C(0x962E84F219AD4C5E), UINT64_C(0xBB8C9FC7692020BE), UINT64_C(0xA78FDF2CE7B36665), UINT64_C(0x7AC84ED426F92E33)}}, {{UINT64_C(0xBD85A9EEC3C9E5C1), UINT64_C(0x72030BAA6ED2FD6A), UINT64_C(0xB67185AB39CFFB89), UINT64_C(0x3E2E51A4833BF770)}, {UINT64_C(0x248FA3485E27D5BB), UINT64_C(0xF8D435962E6D3DCF), UINT64_C(0x07F5B93C0C8DAF81), UINT64_C(0x6A7FFA1DAD2FC97D)}}, {{UINT64_C(0xFF308FAEFAEA33F1), UINT64_C(0x5F29DFFB3CC4C7CF), UINT64_C(0xB9AD4527ECC5A2B9), UINT64_C(0x08B95AF6048D4B38)}, {UINT64_C(0x56BC43A8DEC152BB), UINT64_C(0xD1147B9A3849D869), UINT64_C(0xFE5020C2D02AF3B7), UINT64_C(0x54C02B44B918496E)}}, {{UINT64_C(0x1611ECFD0B27468D), UINT64_C(0x4AFCE3290513A562), UINT64_C(0x982782FD2FE74EED), UINT64_C(0x66AC58BF17ADD2EA)}, {UINT64_C(0x8277BC2D613581D4), UINT64_C(0x0BF5BF0C988D1498), UINT64_C(0x8A37134D55C984CB), UINT64_C(0x409A79CC92211390)}}, {{UINT64_C(0x8C0081AE816F0462), UINT64_C(0xB431DC245A68BFC2), UINT64_C(0x25C769C65F78C8A1), UINT64_C(0x3BE0458DB382AF14)}, {UINT64_C(0x10583083A171ADF2), UINT64_C(0xBA5D532537F7C39F), UINT64_C(0x76B03B945EAC7585), UINT64_C(0x76159AAC9C2DF2C6)}}, {{UINT64_C(0x886C73BA918E0332), UINT64_C(0xF6FEC62AD24B5B52), UINT64_C(0xB98759B436B4D23A), UINT64_C(0x5EC5B3FE5480ACF3)}, {UINT64_C(0x30FF297D6DD175BF), UINT64_C(0x501DE74475F2B9C3), UINT64_C(0xDEBE47CAF19230C5), UINT64_C(0x7401F20932BBBB62)}}, {{UINT64_C(0x80712E4722496D1E), UINT64_C(0x36A0EF37DA80AF1D), UINT64_C(0xAF6CA51C940E5E9F), UINT64_C(0x74E17B6F722D9D22)}, {UINT64_C(0xCB70B878B8B3AE1B), UINT64_C(0xBF8B9A0B07DF974C), UINT64_C(0x89FCC996F68A4BF4), UINT64_C(0x46F581E86EB0FB2E)}}, {{UINT64_C(0xBCE0BD6C67137153), UINT64_C(0xAD3E92B375F64B78), UINT64_C(0x6454CD1DFD047DD9), UINT64_C(0x181C93EB612AE472)}, {UINT64_C(0xE575307E23A529C3), UINT64_C(0xB9C43A0B59C09EB5), UINT64_C(0xFD233A68AA805840), UINT64_C(0x067C442EA122FFB9)}}, {{UINT64_C(0xE1F3F76F2CD6762E), UINT64_C(0xFB68650F9764B53A), UINT64_C(0x4E90AC72F1224580), UINT64_C(0x2BF68F01127EED48)}, {UINT64_C(0xE6B4B40994D389A0), UINT64_C(0xD7BC8108D44593D6), UINT64_C(0xDCF0399148A86677), UINT64_C(0x4A52D961CEBCE3C7)}}, {{UINT64_C(0x55734AB5BAA873EA), UINT64_C(0x506DE4CF7871F323), UINT64_C(0x7C3F8B00578612C0), UINT64_C(0x730D4B8A9243C9E8)}, {UINT64_C(0xA3290689D385F6BD), UINT64_C(0xAF688C6A913596F5), UINT64_C(0x0A2D89B5B646BE23), UINT64_C(0x31891165F63A6029)}}, }, { {{UINT64_C(0x331F9E57579583C0), UINT64_C(0xE92ABADF69C65DA2), UINT64_C(0xC796FBECA5B8B057), UINT64_C(0x52E6F9C9312D1E89)}, {UINT64_C(0x0318B1DFDA68DFD3), UINT64_C(0x8BAA2EB3A1CAC4F1), UINT64_C(0x0CDC89A2BEE7D6E1), UINT64_C(0x6102DE7A22AB50F4)}}, {{UINT64_C(0x02003D83E20C707A), UINT64_C(0xD819249C28289D89), UINT64_C(0x3FBC00B172053FF8), UINT64_C(0x0249C43CDF40D261)}, {UINT64_C(0x8794EEACD8F064AF), UINT64_C(0xE2359E70DC9F0631), UINT64_C(0xD1603647ADA310D0), UINT64_C(0x6A9E3785EDC888EC)}}, {{UINT64_C(0xF332B384EC41908E), UINT64_C(0xF3274472BDE4760B), UINT64_C(0x96185E89140D0EF4), UINT64_C(0x5646208990E698E7)}, {UINT64_C(0x841A31C5F2E64396), UINT64_C(0x8F494CA503C4118F), UINT64_C(0x0C98A4C31A188305), UINT64_C(0x1C4B5F6298AAB1AB)}}, {{UINT64_C(0xDDEEEBF85D0D8381), UINT64_C(0xD1616F4889044363), UINT64_C(0x2EE41D4721616A13), UINT64_C(0x2DCE61104BC769FC)}, {UINT64_C(0xE3707A0116C1C468), UINT64_C(0x3B674187969AF612), UINT64_C(0xB64BD4D71E0671CC), UINT64_C(0x7EF01DBAB98C297C)}}, {{UINT64_C(0x91DCBF99815381AC), UINT64_C(0x8D711F5838B67B97), UINT64_C(0x9C11F5959C6E322C), UINT64_C(0x4A688D0BE31A782F)}, {UINT64_C(0x1297D9F3DCE93F5B), UINT64_C(0xA79561947C1DC62A), UINT64_C(0x340F217A5F718F63), UINT64_C(0x71F84529FCC0EF6A)}}, {{UINT64_C(0x0D968E503DD00963), UINT64_C(0x5E696D79D7FF66C3), UINT64_C(0xAA52D60D499A9BE2), UINT64_C(0x72482C45CDC289DE)}, {UINT64_C(0xC84968F57FFAAD3A), UINT64_C(0xEE91304CF7CD5BED), UINT64_C(0x684936760A7CC7C0), UINT64_C(0x3411AFA780023968)}}, {{UINT64_C(0xA0AEBC706E3294C0), UINT64_C(0x93263942DC385E50), UINT64_C(0x7B90C0028467FB06), UINT64_C(0x29477CA438CFD0FF)}, {UINT64_C(0xADC04D8192A748D5), UINT64_C(0xAE4F309D76CF3AE5), UINT64_C(0xBDA34BF04BB2C2FF), UINT64_C(0x65138897368536E4)}}, {{UINT64_C(0x9CB8F7D66FE6D4D6), UINT64_C(0x6C2FFBF5AF246792), UINT64_C(0xD5A4F34981524707), UINT64_C(0x3AFE45CE36766D5E)}, {UINT64_C(0x41991B49513BA267), UINT64_C(0x06EF1EEA6C18AA5E), UINT64_C(0x0A51763588EA2099), UINT64_C(0x32D2B5E2D245B88B)}}, {{UINT64_C(0xAE38CDD53F517C5B), UINT64_C(0x1C94FDC5D878FEEE), UINT64_C(0xABF7A41DBEFCE107), UINT64_C(0x33BF3FE9D408DFE8)}, {UINT64_C(0x4F2E6FF0947CB8C4), UINT64_C(0x3A8E86ABF998C5A0), UINT64_C(0x3ADC6ABAE359209F), UINT64_C(0x37A2DE1BD9A50051)}}, {{UINT64_C(0x424F4E34E718F6B9), UINT64_C(0x50B1A03B75C58EB6), UINT64_C(0xB949531491390E27), UINT64_C(0x4AE0CC3A880E78D8)}, {UINT64_C(0x10331AFAF1E4413C), UINT64_C(0xE7A3E554DDFCD2F0), UINT64_C(0x44F6DE850EBF484B), UINT64_C(0x6A762A7E895D0F54)}}, {{UINT64_C(0x8E606B0A8D0558F6), UINT64_C(0xAADA76045C4DD930), UINT64_C(0x5B2FC7ADEF4ACAD0), UINT64_C(0x0D969AD087F5B6E2)}, {UINT64_C(0xF9A182B25974E67B), UINT64_C(0xCD8232E723B4009A), UINT64_C(0x3D8F5DDD285BCC3F), UINT64_C(0x114AC56FEEE1B9BF)}}, {{UINT64_C(0xD3EA1B56AA45085A), UINT64_C(0x5DE7BB70D314CEDF), UINT64_C(0x8A74384C7BCCDCFD), UINT64_C(0x64B80F8A8E0E0367)}, {UINT64_C(0xA9EA432B48884ED1), UINT64_C(0x51957A8F8C0BA810), UINT64_C(0x9E88340039E810E3), UINT64_C(0x0A73ED5A28B2051C)}}, {{UINT64_C(0x655212A313C30826), UINT64_C(0xAE53668EB73E8660), UINT64_C(0x6C33B649FF108CCE), UINT64_C(0x39E0B11821D49681)}, {UINT64_C(0xFE4D215270525312), UINT64_C(0x2EDCE32BFFD18749), UINT64_C(0xFED19B1CB04D3FB8), UINT64_C(0x4DFE216B2B225A9D)}}, {{UINT64_C(0x583E8A6C4C70F8A8), UINT64_C(0xC8206231954A9AE1), UINT64_C(0x9360B592B76517B1), UINT64_C(0x362C5C5CEED10CCA)}, {UINT64_C(0x3DBA95953D607921), UINT64_C(0x0188A5D65A6ECC40), UINT64_C(0x0EAB43C16CFF4ADE), UINT64_C(0x1F3673AEDE3347E0)}}, {{UINT64_C(0x7300C4B3796593EE), UINT64_C(0x607E7E76D8D926C3), UINT64_C(0x1762CE2677F9FD06), UINT64_C(0x0D0478B3CEA891EB)}, {UINT64_C(0xB11297912618B09E), UINT64_C(0x5F9D290D33F928C9), UINT64_C(0xE3192631E6178DB0), UINT64_C(0x21260AC808576D3F)}}, {{UINT64_C(0x899DAF2A76968E1C), UINT64_C(0x0519DEA9F9C2B3E7), UINT64_C(0x5FDADC3893D0BD4E), UINT64_C(0x0467BFF743B4D98F)}, {UINT64_C(0x651C316C6F3936C9), UINT64_C(0xE757689AAF27DF8B), UINT64_C(0x3AB037EAA0FA9188), UINT64_C(0x2F8B039BD927B60A)}}, }, { {{UINT64_C(0x72211BF5DE876A70), UINT64_C(0xA836163173D121CE), UINT64_C(0x2385272123D419E4), UINT64_C(0x3F56D47EDBD03345)}, {UINT64_C(0xFB0E91A5D6F05BAC), UINT64_C(0xA0E02BF6AC9D0F46), UINT64_C(0x5ED9EA2C97F1812F), UINT64_C(0x172F564FEBD5DB5A)}}, {{UINT64_C(0xC790E91281F11E58), UINT64_C(0x14A1763099A5DFF7), UINT64_C(0xF6F30F2F1627516D), UINT64_C(0x522CAD8FEFCF43B7)}, {UINT64_C(0xFFADD45E6EA01128), UINT64_C(0x5D23234CD61D1964), UINT64_C(0xE9212C852802DF86), UINT64_C(0x0A3D237B92AA8DA3)}}, {{UINT64_C(0x2CED05F4E50ED356), UINT64_C(0x1CBC7FB1BFFEEF3A), UINT64_C(0x885991B1BE19F0F0), UINT64_C(0x6DED0794DE44A492)}, {UINT64_C(0x9967E83444CBECFC), UINT64_C(0xB0674A8D6A792ED1), UINT64_C(0x360E2DE4B7DDD557), UINT64_C(0x26852A7470E95D26)}}, {{UINT64_C(0x8CBC15203A6E2116), UINT64_C(0xF09327DFBF285BBE), UINT64_C(0x8C7D9AD54A54D3C5), UINT64_C(0x778F54E66BD2768F)}, {UINT64_C(0x09B489F88FF3DBC0), UINT64_C(0x0A0FA7FBD2871932), UINT64_C(0xABB9DC38E0A8CEC4), UINT64_C(0x2EE092D821E37A50)}}, {{UINT64_C(0xBB9256E7AF6D88D8), UINT64_C(0x3CDCB1CB0A218927), UINT64_C(0x8E5B744AF216D6E6), UINT64_C(0x6F0617F2BC885AFD)}, {UINT64_C(0xFBA9CDA7268397D5), UINT64_C(0xC61547165D4C75D8), UINT64_C(0x9ED8D17B43FB2CD2), UINT64_C(0x4D0CE3FBBE45BC5C)}}, {{UINT64_C(0x4259BB02A38472F5), UINT64_C(0xFAFAAE0315107D0E), UINT64_C(0x2B8E450ECF0CF2B6), UINT64_C(0x788674C3ED887C3A)}, {UINT64_C(0x1F3EBD594B3D2EAC), UINT64_C(0x82CB568475E41B55), UINT64_C(0x005AB76BC02BE49A), UINT64_C(0x6F13ADD2F5F90FEE)}}, {{UINT64_C(0x0116374A7AFA7161), UINT64_C(0x8A1AE4482DB7F824), UINT64_C(0xD3C0DA12DB656A22), UINT64_C(0x7B095B95B989204D)}, {UINT64_C(0x24C35202EF8F21CA), UINT64_C(0x91088DA72DA5A5A1), UINT64_C(0xAAF1944BE3F97D68), UINT64_C(0x245D28487C884134)}}, {{UINT64_C(0xD80C65D668F5C702), UINT64_C(0xE2FE245F021A2974), UINT64_C(0xFB8520E03A11899C), UINT64_C(0x4806D1FA2BE6BF88)}, {UINT64_C(0xF6F8C11A20ED235F), UINT64_C(0x52AC14247F0D651E), UINT64_C(0x44C3C89FDB9CF6D6), UINT64_C(0x6762516DB2E2E41F)}}, {{UINT64_C(0x2743D874FDE91600), UINT64_C(0x60975FD5CDF00100), UINT64_C(0x78ACC8642D2954F4), UINT64_C(0x46B9E60256373454)}, {UINT64_C(0x7586A9706F0FB867), UINT64_C(0x888E3677242DF35A), UINT64_C(0x5A639E79F1460F62), UINT64_C(0x1256517E55297DBC)}}, {{UINT64_C(0x3F78339B7B9294C3), UINT64_C(0x5BA765D1BCE77012), UINT64_C(0xA88E0CD8512E39E2), UINT64_C(0x2D63E14BF6BA6A6A)}, {UINT64_C(0xF849A163EA29071B), UINT64_C(0xF32519B74C0A2E22), UINT64_C(0xEA5D1315561C35F5), UINT64_C(0x7041F515D9267DCA)}}, {{UINT64_C(0xE01E839F1FE56E6B), UINT64_C(0x3E473D8C4A93CE88), UINT64_C(0xC4846ECF89AAFDAE), UINT64_C(0x4111D97A07D946EA)}, {UINT64_C(0xC20881F651A45F02), UINT64_C(0x14C2AC95B9CD841A), UINT64_C(0x2FBE8329F2CBD929), UINT64_C(0x1E8B7469C812608B)}}, {{UINT64_C(0xB36A5D03007F0A5D), UINT64_C(0xA7E7A1A85DCF7AF4), UINT64_C(0x7227F4C5BEB12AFB), UINT64_C(0x462277924D276783)}, {UINT64_C(0x9EA64D4C48403B93), UINT64_C(0x58EA31BC0B333ED5), UINT64_C(0x2D6DD219C5C93119), UINT64_C(0x385023A745069280)}}, {{UINT64_C(0x8AB9B9EAF60C46AF), UINT64_C(0xFA1D3F08E8B827C2), UINT64_C(0x78C6BFBC1BAD41DB), UINT64_C(0x527A0BED23BE0C1E)}, {UINT64_C(0x66212FD26ACCE641), UINT64_C(0x86125B0DEE6F78E7), UINT64_C(0xA2A0271858552A8C), UINT64_C(0x594F2B777E9605C5)}}, {{UINT64_C(0x3FB1F6CF88A27989), UINT64_C(0xBC4962F7D96268B8), UINT64_C(0xBD8761E9B95E2A36), UINT64_C(0x64AB934A046DEC63)}, {UINT64_C(0xC64D1C592E53CF1A), UINT64_C(0xC9865A9B578C5E8C), UINT64_C(0x5ECA62327A0359DE), UINT64_C(0x127DD136FB4685E5)}}, {{UINT64_C(0xB0F7B0711AE320C9), UINT64_C(0x09BF89BB52525203), UINT64_C(0x97B20027709C5692), UINT64_C(0x16A62485EDBF6175)}, {UINT64_C(0x32C18836394C50F9), UINT64_C(0x7D99468FD3B98C19), UINT64_C(0x8EBE50962E8D2729), UINT64_C(0x4E75B3CCE655F093)}}, {{UINT64_C(0xCBEFD1A29EAE827E), UINT64_C(0xDE2D1234FBF4630D), UINT64_C(0x1B3ADCF896086CDA), UINT64_C(0x43D3960E2EA6CBA7)}, {UINT64_C(0x18321D1D1CB5A0F7), UINT64_C(0xDC94C6F947BEABB4), UINT64_C(0xFBACC6D575AF6AB7), UINT64_C(0x0EE5D35789B98E86)}}, }, { {{UINT64_C(0x3F01B4AA062E0994), UINT64_C(0x994B28B05C952259), UINT64_C(0x2678F8B80CDEEC70), UINT64_C(0x4D06AF84212436F3)}, {UINT64_C(0xE9DF52FD1CF27A98), UINT64_C(0xD56B9FD10B7718F7), UINT64_C(0x728BE624D9AEDA0D), UINT64_C(0x098710881A646888)}}, {{UINT64_C(0xB1BC922D9B586B13), UINT64_C(0x6C084C543CA3B1BA), UINT64_C(0x54D196C7CF322698), UINT64_C(0x06EC3A5585D527E1)}, {UINT64_C(0x069187102A57CAA1), UINT64_C(0x6AEAC07D65FD0F6B), UINT64_C(0xB66A34D70F512F84), UINT64_C(0x3860C002A44E6452)}}, {{UINT64_C(0x17263B260881608A), UINT64_C(0x78D556AA56C18A7A), UINT64_C(0xA0826A1CAC3A47AB), UINT64_C(0x61686A58B6933FF5)}, {UINT64_C(0xEA9D8771DBCF2C4F), UINT64_C(0x1C66EB026AB00426), UINT64_C(0xF8DAED2B401C466A), UINT64_C(0x1ED0A99ADAAE8040)}}, {{UINT64_C(0x31EFFC4B7208E58A), UINT64_C(0x28868456B4E4319E), UINT64_C(0x1059C249D46AC4DA), UINT64_C(0x3589D2122279B362)}, {UINT64_C(0xB28B8FAD45552E92), UINT64_C(0xC9E32541C3AB8098), UINT64_C(0x82604904F14B35A1), UINT64_C(0x1E64A89FDB68C214)}}, {{UINT64_C(0xDF0E223DAB6947AF), UINT64_C(0xE74EF1D6771670D0), UINT64_C(0x70A9AD21F429F03B), UINT64_C(0x7CB1FA1F1385B8DC)}, {UINT64_C(0x25ABC0A769053D24), UINT64_C(0x207FE30A6369D02E), UINT64_C(0x57B76E3CC6E4EC2C), UINT64_C(0x2E03D2E3B927CAB2)}}, {{UINT64_C(0xEFA377FF622D57AE), UINT64_C(0x41532F56A885951A), UINT64_C(0x5ED89AA7CC69B9A8), UINT64_C(0x60BFF2EC295F5E84)}, {UINT64_C(0x411D65C31E5C3041), UINT64_C(0xDB533F8B4B7772F8), UINT64_C(0x72CADEB63BDD4AEA), UINT64_C(0x0EC79DF27C49E454)}}, {{UINT64_C(0x0C39332C81D0B84B), UINT64_C(0xA76A9A3A95FF472B), UINT64_C(0xD12FEB9931DB2BA6), UINT64_C(0x4AAB92223683E53A)}, {UINT64_C(0x56CB18AF24FC6271), UINT64_C(0x671581D62544C72D), UINT64_C(0xCD136492FBD6F4D1), UINT64_C(0x6C2023183579EE09)}}, {{UINT64_C(0xEDC5AF02C103C348), UINT64_C(0xDA32344E155A103D), UINT64_C(0xFF3A7679B0D1377E), UINT64_C(0x1609197268F02750)}, {UINT64_C(0xD4C6360DD9E9C143), UINT64_C(0xE0ABA0EF968EE990), UINT64_C(0x5781687897E4C9AE), UINT64_C(0x5A4D167B9D63E32D)}}, {{UINT64_C(0xB04BA52550E25802), UINT64_C(0x011DA36E66912F15), UINT64_C(0x08D8B68019E0A182), UINT64_C(0x66AA4AE82E462B0F)}, {UINT64_C(0x3227C3A6E0B9D283), UINT64_C(0x9BF8C4D0F2B2B096), UINT64_C(0x1E51416CBA809EB7), UINT64_C(0x68411B752A67D346)}}, {{UINT64_C(0xE55B134837A67F3B), UINT64_C(0x5E32D73C96484391), UINT64_C(0xC3F804D56256B91E), UINT64_C(0x67F17A4703B0783B)}, {UINT64_C(0x2010EFEBDD2334AD), UINT64_C(0xBD9965B5B10FF052), UINT64_C(0x519CDA6DF58ACA52), UINT64_C(0x045BEEBE2FD3D394)}}, {{UINT64_C(0x81722E2CEA271BCD), UINT64_C(0x393C082E0A4F1342), UINT64_C(0x573F7CD553B345CE), UINT64_C(0x7AD71FE23D7B4292)}, {UINT64_C(0xDA406D0ADA8BECB8), UINT64_C(0x14FD41CA82FE66BC), UINT64_C(0x80A410620A91DFFC), UINT64_C(0x33E38E10F4F0CDEB)}}, {{UINT64_C(0x0234BF382529532C), UINT64_C(0x9F5D6342A76CAE3B), UINT64_C(0xC9944CB3B3C50442), UINT64_C(0x51752DF08ABFAF17)}, {UINT64_C(0x2BFA58C4A37B13FB), UINT64_C(0x19F80FDEDDB14951), UINT64_C(0xDC7026AA7DCB927B), UINT64_C(0x57907272AAB9FCBA)}}, {{UINT64_C(0xCE38712DF3C046C2), UINT64_C(0x21D1FDB047B29D0E), UINT64_C(0x7F746E0ECD96D414), UINT64_C(0x72F07B52636CFEA4)}, {UINT64_C(0x0D8FE94FECE6382D), UINT64_C(0x9BFB4CBA24229CA4), UINT64_C(0xFAE55B77E54388B0), UINT64_C(0x074EBC32A188299F)}}, {{UINT64_C(0x8AF2EBCDE21DCCA2), UINT64_C(0x9916A6B6377487F2), UINT64_C(0x607DC19AD8051D40), UINT64_C(0x7DFD53F4419DDE12)}, {UINT64_C(0xD17D0D619AD07924), UINT64_C(0x14F7CE0F173E266B), UINT64_C(0x687FB8530281C9EB), UINT64_C(0x6B35CC1A3361B273)}}, {{UINT64_C(0x7CD6369E16E02DE3), UINT64_C(0x118EE0B11F35DFBC), UINT64_C(0x7D8C8DBD98B3EE60), UINT64_C(0x039806FC8D29EA17)}, {UINT64_C(0x3C473872EC2C2597), UINT64_C(0x81294AF45E4EF521), UINT64_C(0x5ED048DBC22A9D7C), UINT64_C(0x3879E95B0A08C4D4)}}, {{UINT64_C(0x0206E47F96A864FE), UINT64_C(0xC94F137AA55D0631), UINT64_C(0x9C1B3D298E8408F8), UINT64_C(0x150A4046B9193A5E)}, {UINT64_C(0x4E8F9345CB1ADF21), UINT64_C(0x6ED14D8A7BD5E1F9), UINT64_C(0x7082532960809F68), UINT64_C(0x0D2F1C3BFA85A06C)}}, }, { {{UINT64_C(0x3C5ABE75B5C810C3), UINT64_C(0xEA2C3EF9E28F1E26), UINT64_C(0xEEB1C5688BF68280), UINT64_C(0x5A165CEB7AE69110)}, {UINT64_C(0xE36C646044550DF1), UINT64_C(0x6FB4B108DB909258), UINT64_C(0xBFA1427717D4D8C5), UINT64_C(0x744CAF23927976D8)}}, {{UINT64_C(0xCBE70DF947EA55C7), UINT64_C(0x8F8119AE535457AE), UINT64_C(0x1E3C69EC7DAFD732), UINT64_C(0x1A2E162D39D409A2)}, {UINT64_C(0xBD7576A15F81C227), UINT64_C(0xA040AF9EC86AC2C3), UINT64_C(0x5690C059C10FC749), UINT64_C(0x20B26E8849CFAEC6)}}, {{UINT64_C(0x87AEBD1EE3EF781E), UINT64_C(0xBC794A621609A1F0), UINT64_C(0x96D8314226E7F61B), UINT64_C(0x5198577FFC51D17D)}, {UINT64_C(0xBFB5FAE28E6D0124), UINT64_C(0x91A7172BFFD5BD72), UINT64_C(0x474B015402832847), UINT64_C(0x4BAF0B4C59827FEB)}}, {{UINT64_C(0x5EADAA8EBA090294), UINT64_C(0x51401BC911A6E9FA), UINT64_C(0x78F117581D2594CD), UINT64_C(0x1811AD3082D203C2)}, {UINT64_C(0x554CC39A53FD07CC), UINT64_C(0x055FC983C7A05601), UINT64_C(0xB3B34E95D5A80B4B), UINT64_C(0x72B4CF941819BC16)}}, {{UINT64_C(0x0750E4F0514FAFD0), UINT64_C(0x297D27E6AD61C7B1), UINT64_C(0x701D743FA2D5D410), UINT64_C(0x535DD97BC83B55C9)}, {UINT64_C(0x2EE96DDE1CB11BB0), UINT64_C(0xECEA32EA0914450F), UINT64_C(0x4FB812364CDBDA6A), UINT64_C(0x5B75B6B2233C8063)}}, {{UINT64_C(0xF0A934A6D69D6C6A), UINT64_C(0x313E89773CC80AC9), UINT64_C(0x74692B171E428B71), UINT64_C(0x0474FEFCE1BE662D)}, {UINT64_C(0xAA2FF6DBAFFBF61B), UINT64_C(0xCE1594E1776983AF), UINT64_C(0xF00C665B4D5A2596), UINT64_C(0x30DD24497D414B9A)}}, {{UINT64_C(0xEF862DA2ACC44AB3), UINT64_C(0xBAD6857F6EE7A44A), UINT64_C(0x57674BF9D2F9027E), UINT64_C(0x4D771CC32ABF816E)}, {UINT64_C(0x27BEFC18AC0F1348), UINT64_C(0xD83112EF5E4F1202), UINT64_C(0x3571BDE38E9AAAE5), UINT64_C(0x07284830C1379B13)}}, {{UINT64_C(0xA4C2F36F72A8890C), UINT64_C(0x22DF0E815824B392), UINT64_C(0x50FAD77F5E720240), UINT64_C(0x1D152A6903278F96)}, {UINT64_C(0x25A3E92EA7D80F17), UINT64_C(0xBBF85B327EF32666), UINT64_C(0xBBB5568727222E52), UINT64_C(0x756D22A67582FE42)}}, {{UINT64_C(0x0AE7493A9BC9EAED), UINT64_C(0x9185F53F0DDBB275), UINT64_C(0x1585D068C3DFDBA7), UINT64_C(0x543208A1562E2455)}, {UINT64_C(0x4C417D81CBCF9535), UINT64_C(0xD2DC38D3E35DD6ED), UINT64_C(0x9DF1E014346F03A4), UINT64_C(0x65736E3FF0E772A6)}}, {{UINT64_C(0x58684A7BCFB7FF06), UINT64_C(0x72CC4AFEC58E6316), UINT64_C(0x2CA9BF30A8BB508A), UINT64_C(0x61576519E2044C8C)}, {UINT64_C(0xE78FAD3D8FF6D2B5), UINT64_C(0x6E5B839FA934C7B2), UINT64_C(0xC1F3D367FAFA9F9B), UINT64_C(0x637CC398F8B2AFA4)}}, {{UINT64_C(0xD6FC1806FE2B2639), UINT64_C(0x1DB199B49E98A7F2), UINT64_C(0x0508763DC794F900), UINT64_C(0x363F1F7D3232E5AC)}, {UINT64_C(0xDCF2AD74BBDBB351), UINT64_C(0x91F2EAF15A506BC6), UINT64_C(0xBDE8459EB850088B), UINT64_C(0x52DF883B3E1135AF)}}, {{UINT64_C(0x12FD053AF93779DC), UINT64_C(0x3E3D87289E319E46), UINT64_C(0x4D631005E5E360AE), UINT64_C(0x4A8B5683B1B29A30)}, {UINT64_C(0x305E5E53A8CA45EF), UINT64_C(0x59EACB45C2914843), UINT64_C(0x83677B7A1988ECEA), UINT64_C(0x63D9CD36D6FD53E8)}}, {{UINT64_C(0xDF2DACF2B77EB45F), UINT64_C(0x3C1303E355BBA70E), UINT64_C(0x5AB8EB424526A06C), UINT64_C(0x4D4FD2167FE06BBC)}, {UINT64_C(0x98C5ADCFE1486ABC), UINT64_C(0x9A503BFF07F86F3A), UINT64_C(0x7CEBAECB56282E44), UINT64_C(0x4FB090371F230DA0)}}, {{UINT64_C(0xD1A3738427210752), UINT64_C(0xD10794D602CF1C74), UINT64_C(0x48A2095A820CC08C), UINT64_C(0x6DCDDE2EE3284B9D)}, {UINT64_C(0xB8C7203E5D40510D), UINT64_C(0x957E89825385E3A7), UINT64_C(0xD220BE2FE27D7C13), UINT64_C(0x2D104AC57B471B5B)}}, {{UINT64_C(0x3B31D52BBA0AFA8D), UINT64_C(0xFA9639F5DCC85F88), UINT64_C(0x150146378861DDD7), UINT64_C(0x31C222DB7B5443B0)}, {UINT64_C(0xE2618546C3CDD689), UINT64_C(0x7F3FB754D528A130), UINT64_C(0xA0915810AC5FAF99), UINT64_C(0x3863B890E9899CE5)}}, {{UINT64_C(0xBDD42CA3579C4353), UINT64_C(0xAD30567D4D65CB5B), UINT64_C(0x0E343F216D91810B), UINT64_C(0x65E0092D42E19816)}, {UINT64_C(0x76154DCCF84E8C8E), UINT64_C(0xBA147CA80BA4AE59), UINT64_C(0xCA8085E756A1A71E), UINT64_C(0x1D90B4B01A158536)}}, }, { {{UINT64_C(0x5C4B7438F8B6C26A), UINT64_C(0x0C17A41B645BBE80), UINT64_C(0xA386062D40CF3D85), UINT64_C(0x563E42D2E78F776D)}, {UINT64_C(0x4BB8E3561F07459B), UINT64_C(0xF01A24B775D222CD), UINT64_C(0xBE3D032B24CF3F61), UINT64_C(0x759B01670AD5F3A3)}}, {{UINT64_C(0x2F5AEBD17D201AAB), UINT64_C(0x7B14CBEEC0AE02AD), UINT64_C(0xB9B54430EDC6388B), UINT64_C(0x69E713FBB622E01F)}, {UINT64_C(0x4630EE8EC5361565), UINT64_C(0x6705961E5C8FB479), UINT64_C(0x125CC97E07C2AA45), UINT64_C(0x4BC459F425AE3B12)}}, {{UINT64_C(0xEF02549628CF94E4), UINT64_C(0x04CFAB259DB24DE6), UINT64_C(0x52B8C734C62254EF), UINT64_C(0x0F2FE922568AB164)}, {UINT64_C(0x48551A05E3F39B40), UINT64_C(0x4A36865F31A7C7F6), UINT64_C(0x4486512C840441AE), UINT64_C(0x559C6CAF8C7C4B4D)}}, {{UINT64_C(0xFCC0D1DA0F103030), UINT64_C(0x7A9F1D5539CD584E), UINT64_C(0x3EFB9B94681D0D37), UINT64_C(0x3AE97CCD4D842332)}, {UINT64_C(0x85A8ECE13C03676B), UINT64_C(0x030F87753AD435A1), UINT64_C(0xF6019B4D7F2D73B5), UINT64_C(0x6B77E31A2F14F911)}}, {{UINT64_C(0x65C8161B9186C671), UINT64_C(0x412C3CC7CDFF2F8C), UINT64_C(0xBFFC17192C2FEA33), UINT64_C(0x75DCF68BC3675845)}, {UINT64_C(0x0476AFBF3B23D576), UINT64_C(0xB20CAEE219315F79), UINT64_C(0x1BC2A8590885471A), UINT64_C(0x410FF6CFC328279C)}}, {{UINT64_C(0x327394D960569D94), UINT64_C(0xFF2AEB6A6EA39D95), UINT64_C(0x1BED71E8EA0CA3AE), UINT64_C(0x1000A81E21072A94)}, {UINT64_C(0x368EA22973C02416), UINT64_C(0xDF5B2A420A4941BC), UINT64_C(0x4FFDC7B8D0D40B3A), UINT64_C(0x7B2C73F148ABAB4E)}}, {{UINT64_C(0x90FE34E481EE1072), UINT64_C(0xAE7A2FF4310E13D8), UINT64_C(0x6213D3B1CAB3927C), UINT64_C(0x44936FBD7DC7E9EF)}, {UINT64_C(0x3B898EF323A1BDBE), UINT64_C(0x3FA6C6A054CC7B1D), UINT64_C(0x41BCC3B5C6AC54F2), UINT64_C(0x1AB5D168DC10AE39)}}, {{UINT64_C(0x1AED113CFEAF67A6), UINT64_C(0x04E3C7A1342AC459), UINT64_C(0x65A392787A99DFBC), UINT64_C(0x03ECBC6B642329FF)}, {UINT64_C(0x799F4EC5A6A4421A), UINT64_C(0x44522C26BEE18B3C), UINT64_C(0x1C7BFF151975C4BB), UINT64_C(0x0FAA03BEE6A27857)}}, {{UINT64_C(0x173AB9E00743FF7B), UINT64_C(0xB11187AE2CFC95AE), UINT64_C(0xCA81BB2E9C112049), UINT64_C(0x6B811DB6C03555D5)}, {UINT64_C(0x76C1FC144FE32256), UINT64_C(0xDA8C5A96D0E47C4E), UINT64_C(0xB645D41329FDB01C), UINT64_C(0x78898447AC39502A)}}, {{UINT64_C(0x4285FF329BF44B35), UINT64_C(0x207F9029E3358C7F), UINT64_C(0x0FE8F03263BAF4CE), UINT64_C(0x698A0398FF15E1F7)}, {UINT64_C(0x548748437E572DF6), UINT64_C(0x746835199F43C07B), UINT64_C(0x47BAB49E0A433D6A), UINT64_C(0x09ED8740FAB5C858)}}, {{UINT64_C(0x8AA5E5C91F6CA820), UINT64_C(0xAD290A94D3C25BEC), UINT64_C(0xDC4C67BF3BA255F0), UINT64_C(0x0D7EF7D91DEDD8A9)}, {UINT64_C(0x0831A26F5EEFD1C3), UINT64_C(0x78CA66F504483E0C), UINT64_C(0x9D5A56122FAAC15A), UINT64_C(0x43B0C7E75D6FACDB)}}, {{UINT64_C(0x34BA537C4503899D), UINT64_C(0x9DEBC8F52AF8ED3B), UINT64_C(0x396995E984F416E6), UINT64_C(0x77F10FEDC7BCE392)}, {UINT64_C(0x065CCB721F8AF262), UINT64_C(0xE220ED60D2F00FC4), UINT64_C(0x41A5FB065EE25B46), UINT64_C(0x22505574DD9070B1)}}, {{UINT64_C(0x571FF15144BFC5C0), UINT64_C(0xBE2558B83138363C), UINT64_C(0xB2211ABD605E356C), UINT64_C(0x0B6435DA176C5F53)}, {UINT64_C(0xF18C917C8DCF484E), UINT64_C(0x45D4120CCD93D65F), UINT64_C(0xEBB0BF9C190AE7F8), UINT64_C(0x3D403DE28D8C8D5A)}}, {{UINT64_C(0xCDE760B4BE656644), UINT64_C(0x99DC5E6D2D21DBC5), UINT64_C(0x644FCAF3B6232D08), UINT64_C(0x52955488859341E3)}, {UINT64_C(0x3AB4580D25763919), UINT64_C(0x82AB0C534EF66999), UINT64_C(0xBD395C740180663E), UINT64_C(0x07974F1AB4756474)}}, {{UINT64_C(0x8C15CFE731588EA6), UINT64_C(0x9629060EF36C882D), UINT64_C(0xDF8E8E9E862B080D), UINT64_C(0x0BD36B48D7A0C5BE)}, {UINT64_C(0xEBD0C6C976DA047B), UINT64_C(0x4F0F08ABBB94FD5A), UINT64_C(0x33D41A4E74910D9F), UINT64_C(0x3D6F8D0BA9583754)}}, {{UINT64_C(0xEC4C896E4E4FC72E), UINT64_C(0xB111210C002ECE31), UINT64_C(0x7204D9372AF11E21), UINT64_C(0x59B9C1EC5D0509E9)}, {UINT64_C(0xBC97644CF9D5BBC0), UINT64_C(0x25B123AF31B4E869), UINT64_C(0x091D7AEC5A6CAAB0), UINT64_C(0x340B9E80ECC911C4)}}, }, { {{UINT64_C(0xE8036B20EC208406), UINT64_C(0xAF46A05A214CEB5A), UINT64_C(0x8672084A46CC8379), UINT64_C(0x7DE0A42F04BA7885)}, {UINT64_C(0xB772BEDCC9D3F32A), UINT64_C(0x7DAE3680534B1520), UINT64_C(0x04CD6203EC7120CC), UINT64_C(0x032F88E3B4E99780)}}, {{UINT64_C(0xB34BDA5CE4A0897E), UINT64_C(0xF7748B26379B2480), UINT64_C(0xF47F6646B2D97522), UINT64_C(0x66AD8DE1F9641DB9)}, {UINT64_C(0x0F8EB919D1BF09C0), UINT64_C(0x7853BB4EB95DC052), UINT64_C(0xBE7EE13D62B1FD4A), UINT64_C(0x2FF7EDC5DC7CE53E)}}, {{UINT64_C(0xE1009AA0EE81DF35), UINT64_C(0x14972F0261D0798B), UINT64_C(0x5A6831A0F1EA1A6A), UINT64_C(0x1DBABA3D0CAB301A)}, {UINT64_C(0x421270E2157D5213), UINT64_C(0xA37BEA956407B790), UINT64_C(0xEAD56B1F103A6073), UINT64_C(0x27534624BAD909F1)}}, {{UINT64_C(0xC92D2209C2621EF1), UINT64_C(0x450710C31D3AD3F3), UINT64_C(0x8CFB8D6C19E481AD), UINT64_C(0x35CACDAEE6DB01BD)}, {UINT64_C(0x2DA4A1D87CDD5B01), UINT64_C(0x3E40C7510F55BA11), UINT64_C(0xA91D9EE7B15C162D), UINT64_C(0x13AD3BE511DBA157)}}, {{UINT64_C(0xAE417DB0E72F64F5), UINT64_C(0x40822279F13352BA), UINT64_C(0xEC43AFD91F2B75B9), UINT64_C(0x14D4BB2BC9CF2972)}, {UINT64_C(0x4A55718A0761B2F1), UINT64_C(0xDAFBF756D81A9307), UINT64_C(0x2DCDFC1C5D3E5A07), UINT64_C(0x696E42ED2EBBDF28)}}, {{UINT64_C(0xF473939968705410), UINT64_C(0xFD581005AF5FFC88), UINT64_C(0x5490A69490A9F517), UINT64_C(0x4A5C8C2E8CF8327E)}, {UINT64_C(0xC203CD35F7D83DA6), UINT64_C(0xECAA6B907282368D), UINT64_C(0x365BB5712AF7EC42), UINT64_C(0x112E7ACDD4099316)}}, {{UINT64_C(0x9ABDE0603AE3C25C), UINT64_C(0xE4C03DADEB9925B2), UINT64_C(0x3C28DCB19E03388B), UINT64_C(0x2337A7CF52B63C06)}, {UINT64_C(0x74DC0F134E1AF2EA), UINT64_C(0xA010E4E3CD0D59AA), UINT64_C(0x6E4DB7BA9FA14C96), UINT64_C(0x5B2C3862557F7CDE)}}, {{UINT64_C(0xC826E567C8C79CA9), UINT64_C(0xE7D110CAE851BE0C), UINT64_C(0xFFD57057A3606499), UINT64_C(0x2E9DBC40C6482504)}, {UINT64_C(0xC9F0C3C2F784D9AF), UINT64_C(0xDD982A05B755172E), UINT64_C(0x6BC6C19DA023997F), UINT64_C(0x4AC177BEE34493C6)}}, {{UINT64_C(0x21C3E0874FA4F134), UINT64_C(0x66E10C3486F9722F), UINT64_C(0xD2927B017398579A), UINT64_C(0x7135B6380352C3D3)}, {UINT64_C(0x2DA620073BB5EE11), UINT64_C(0x8B64F13C3A946236), UINT64_C(0x3A83C85430EAE6DF), UINT64_C(0x31114E2A0EB6F749)}}, {{UINT64_C(0x2C7B52E735BFC72B), UINT64_C(0x6DD29EBD2B0D4C2C), UINT64_C(0xE90D39886C92E82D), UINT64_C(0x0A9249013864D94D)}, {UINT64_C(0x630508249BEE9E78), UINT64_C(0x7929FD62003DD5CF), UINT64_C(0xD04F832CE57507D1), UINT64_C(0x61078BDC37D2C32E)}}, {{UINT64_C(0xB118AFDD2E75264A), UINT64_C(0x3AB692EAEFD65114), UINT64_C(0x58D2CE248B0A2128), UINT64_C(0x4316E6C282ED6D5F)}, {UINT64_C(0x97766FFF46345BE4), UINT64_C(0xD7FF30140A7451AA), UINT64_C(0x078A423FAACE2E37), UINT64_C(0x7F1F90C2A6A78919)}}, {{UINT64_C(0x988FCCB08E9E3D4D), UINT64_C(0xBD003FC0B95C9731), UINT64_C(0x74E40076B0A84E58), UINT64_C(0x5FD1DBE61DF7FDD0)}, {UINT64_C(0xD2C700C74E6CE2FA), UINT64_C(0xA6E042E2903C5AE7), UINT64_C(0x561CC25F3C73822E), UINT64_C(0x651A79392A6A0C0C)}}, {{UINT64_C(0x103E9EC688CD7642), UINT64_C(0x65ED52183C3C86CE), UINT64_C(0x16BAB00282785C8B), UINT64_C(0x0B5C18BBF34723C5)}, {UINT64_C(0x528B0546E724D144), UINT64_C(0x5E582A6B780EEF9E), UINT64_C(0xC08283B8122F17AD), UINT64_C(0x0300EDCD1C22F32D)}}, {{UINT64_C(0x03AC716A38DCFD39), UINT64_C(0xCD88474C94F12C74), UINT64_C(0xB5E8641EE9042CA8), UINT64_C(0x1D5746CC40D10558)}, {UINT64_C(0x7869F45ECB4BB408), UINT64_C(0x28FB091D569489C3), UINT64_C(0xEA371EEC50A46306), UINT64_C(0x2802579675AA224C)}}, {{UINT64_C(0x4EAFA44EF7A5923A), UINT64_C(0xD2427C306B69FD8B), UINT64_C(0x4C4E884A393D83F9), UINT64_C(0x2D34890A6236AB65)}, {UINT64_C(0x80038D4035CC97F5), UINT64_C(0x4FE43C8497897472), UINT64_C(0xE5F56243BEF161AF), UINT64_C(0x3E1BDD6F9372E631)}}, {{UINT64_C(0x06A2B2875732669F), UINT64_C(0x92D00397CDF4D2C0), UINT64_C(0xCD9A25F0454A57F5), UINT64_C(0x23ADB7242F0CDB0B)}, {UINT64_C(0x504DA603FF0F8CB0), UINT64_C(0x14EF9D30D3E24181), UINT64_C(0xB1B1328E47FC1E66), UINT64_C(0x319B2A846C60354D)}}, }, { {{UINT64_C(0xBBF5542EF1D56038), UINT64_C(0xEDE3E637DD71CFC3), UINT64_C(0xFAA81D212E9F6C8B), UINT64_C(0x4DD2D44B69FBD060)}, {UINT64_C(0x71FB623314366A20), UINT64_C(0x155E486F9575451D), UINT64_C(0x001106F0EC7807D9), UINT64_C(0x1C80E5ABC617034C)}}, {{UINT64_C(0xD3E478DB8619F5F4), UINT64_C(0x1DF5C367F68170C2), UINT64_C(0xEAB095243430DE1D), UINT64_C(0x48F09361C3CD4C24)}, {UINT64_C(0xE49DEA4B60644FED), UINT64_C(0x47170F1C758C3679), UINT64_C(0x4CC1E6E8B0382A84), UINT64_C(0x2DBDB9DA10A4465E)}}, {{UINT64_C(0x67BAA79AC8400A4C), UINT64_C(0xFA30675301D28ECE), UINT64_C(0x29DB5B1C6F33289C), UINT64_C(0x4475757326A8FCB4)}, {UINT64_C(0x59616219E1B0A795), UINT64_C(0x3032D939C5B32FA0), UINT64_C(0x3010C9177C3CEA2C), UINT64_C(0x5CF83EF19892BDF4)}}, {{UINT64_C(0x55DE11413C7E83E6), UINT64_C(0x9D03929C74EA0366), UINT64_C(0x5CA60C5083BAF3FE), UINT64_C(0x3D9BCA587F70E905)}, {UINT64_C(0xDB79DF5AFCC5AB59), UINT64_C(0x03CFCF0653F68D30), UINT64_C(0xBE101A784FCFA5F1), UINT64_C(0x115D7078B49E493C)}}, {{UINT64_C(0xF14023AA76A0CCBD), UINT64_C(0x4287F0BC086F2E50), UINT64_C(0xC5EAA559F79A37E7), UINT64_C(0x5D527C0904E4F2A2)}, {UINT64_C(0xEC91461651DAA504), UINT64_C(0x250D90C6EEF1DC95), UINT64_C(0x1B0AA868A50330B2), UINT64_C(0x7B45A78354189BBE)}}, {{UINT64_C(0x0D602E05F019D6FF), UINT64_C(0x563E3893DD1800BA), UINT64_C(0x7146727EF3C7F7E5), UINT64_C(0x59641D984B026635)}, {UINT64_C(0x50BCF90FE91DDBB8), UINT64_C(0x5D43E78E7F8397A6), UINT64_C(0x8734A261EB15896E), UINT64_C(0x4AD1E8649FF6B361)}}, {{UINT64_C(0x1A9B601F320322F1), UINT64_C(0x606D40B391F611C4), UINT64_C(0xB984958BA19C918F), UINT64_C(0x67BFB045776F834E)}, {UINT64_C(0xC59E556968DD85F0), UINT64_C(0xB5642834D4067875), UINT64_C(0x247E7D65CB138DF3), UINT64_C(0x73640A035CB9281D)}}, {{UINT64_C(0xC7C34CCC88639889), UINT64_C(0xD9E44E07A785C707), UINT64_C(0x1BE68EFE32F83073), UINT64_C(0x249902DAAE5317CE)}, {UINT64_C(0xF1F0B86A76CA92FF), UINT64_C(0xA7F502CFC01CB06B), UINT64_C(0x0A8B4766595AA185), UINT64_C(0x614135AAB792DE49)}}, {{UINT64_C(0x5392CAA7564F2BC8), UINT64_C(0x1CDDA684CC894FCD), UINT64_C(0x10AC2378A4EBF82F), UINT64_C(0x6211EA465051BFF9)}, {UINT64_C(0xE53B017430E8E210), UINT64_C(0x2374FEC302C0E381), UINT64_C(0xF8B1506B4DA07224), UINT64_C(0x4E451E0154DA7A08)}}, {{UINT64_C(0xA8404D9C241FC7FB), UINT64_C(0x1D6DBF6EC4406332), UINT64_C(0xFE14231930162118), UINT64_C(0x69DE75CCA7EF5EF5)}, {UINT64_C(0x008D4D09856E26A5), UINT64_C(0x2BC64B65C588ECF6), UINT64_C(0x7A523D0BAA01EE19), UINT64_C(0x213EF390932F0B95)}}, {{UINT64_C(0xA42FE5131CD716FA), UINT64_C(0xFB13B3C60E8001B6), UINT64_C(0xBFDC7998D8F530CB), UINT64_C(0x04F9C05BF1C61761)}, {UINT64_C(0xFB57396FAFED9D64), UINT64_C(0x28CCEE3A421AC123), UINT64_C(0x32590C9BF6C21ACC), UINT64_C(0x503B97CBBCA75AE3)}}, {{UINT64_C(0x745208BC366946ED), UINT64_C(0xA75D88E94C906596), UINT64_C(0x03A30C7EEE043530), UINT64_C(0x5C67C151D11BF4D5)}, {UINT64_C(0x04F75DFAE7AE4BB3), UINT64_C(0xA08136067F8D7404), UINT64_C(0x8B9F921019D68F64), UINT64_C(0x5AB6797106F73B55)}}, {{UINT64_C(0x08064C4AB0687095), UINT64_C(0x27E30DDDB0106DF4), UINT64_C(0x31D29C708482524A), UINT64_C(0x65DD5896D86FDACD)}, {UINT64_C(0x081C013DC647197E), UINT64_C(0x51C10B9ED7A53A45), UINT64_C(0xACB9A4DE0DD7FC53), UINT64_C(0x639997A2F646220B)}}, {{UINT64_C(0x97CCF8251FB93B43), UINT64_C(0xB7D7713DE488D786), UINT64_C(0x4F7595663E4DBB33), UINT64_C(0x13B5D8A1E0F09964)}, {UINT64_C(0xFFDDAD74316CDD97), UINT64_C(0x67C5578252C92EE9), UINT64_C(0x03B50F940AC5D6FD), UINT64_C(0x56C5C0091484DF88)}}, {{UINT64_C(0xDCE199E31778D303), UINT64_C(0x53A2A4C60F1DD4EC), UINT64_C(0x7CC5EE9E370A7B99), UINT64_C(0x4403202B2598744E)}, {UINT64_C(0xCCFAA978228247B6), UINT64_C(0xF50D14BD4A1D0E27), UINT64_C(0x6669506180723ABC), UINT64_C(0x750CCB6A742C0015)}}, {{UINT64_C(0x7B04693681A109F1), UINT64_C(0x6414D9A3D4C1AFE5), UINT64_C(0x35070548DD14AC1F), UINT64_C(0x27172F39DEC0D3F0)}, {UINT64_C(0x4EE0A7BFF2E273F0), UINT64_C(0x028C7813EC82B8E6), UINT64_C(0x907BF09F2081EAE2), UINT64_C(0x72E4C3D3414D6421)}}, }, { {{UINT64_C(0x2064097EA073711C), UINT64_C(0x980D830A5A65EC25), UINT64_C(0x7906A87CF0877567), UINT64_C(0x3E5EAE10F1980A3A)}, {UINT64_C(0x5F51023A9272CE32), UINT64_C(0x71D69E68A437C974), UINT64_C(0x32006EA1D0B579FF), UINT64_C(0x191935FFA436E129)}}, {{UINT64_C(0xE5FE290991C1474C), UINT64_C(0x7350B9FA1F0B10F5), UINT64_C(0x2006F41D6B4AB128), UINT64_C(0x4EBDA6CFCD95FA42)}, {UINT64_C(0x450289385DA9A7F4), UINT64_C(0xD8129DE457FB462B), UINT64_C(0x4F2BF2C9E592EF90), UINT64_C(0x14A1A16BD6751DCC)}}, {{UINT64_C(0x7460BB84DE0CD47A), UINT64_C(0x261F24D6468CBA3D), UINT64_C(0x229D31811E3C2D8A), UINT64_C(0x4AE520C91D19E059)}, {UINT64_C(0x5AC3AEE7DF8DC66E), UINT64_C(0xCB417060299697EE), UINT64_C(0x227C1497CE97514F), UINT64_C(0x2589B8032E991FDE)}}, {{UINT64_C(0x7FE9D585A97A5D03), UINT64_C(0x7333A1EF10D58157), UINT64_C(0x54C1CCD2C94C3DF6), UINT64_C(0x25C1B25228073B4E)}, {UINT64_C(0xEEB29AF90635AD79), UINT64_C(0x880019C19AA38848), UINT64_C(0x1A85994230A9A497), UINT64_C(0x57EDCC2D92B25ABA)}}, {{UINT64_C(0xA98DAE7D65E19DE6), UINT64_C(0x8007DD1746AD8696), UINT64_C(0x61F2E2CFA7F3BBAD), UINT64_C(0x1EFCD38754193858)}, {UINT64_C(0xFB54FD6011666ECF), UINT64_C(0xD97EA5DF36E7D371), UINT64_C(0x944CA1703B9371FF), UINT64_C(0x32A52CAC05DE7FB0)}}, {{UINT64_C(0xB960FFF619ED8B5E), UINT64_C(0xFD6B4C3E660354BB), UINT64_C(0xF8ECAADA1C9E95F0), UINT64_C(0x687A6D29A8E08CC7)}, {UINT64_C(0xD38B7670C6A83D12), UINT64_C(0x1646064C1265BF30), UINT64_C(0x7DE19FFE2464892D), UINT64_C(0x05B57E081BDBB729)}}, {{UINT64_C(0xF3586B04FFB7A98A), UINT64_C(0xF1850CDCCB072826), UINT64_C(0xFA3E66A4CF53BFB0), UINT64_C(0x7C78E56706E07221)}, {UINT64_C(0x21E6F2453B4E72AE), UINT64_C(0x10A0D78BC6A3DBE8), UINT64_C(0xB9FC6D77D618DDAB), UINT64_C(0x33092D1376951DE5)}}, {{UINT64_C(0xCAA1BF9D5A0257CB), UINT64_C(0x1044E224866C505F), UINT64_C(0x9B51410781482E7D), UINT64_C(0x538CB86788940BFB)}, {UINT64_C(0xACE68B78AC21DCC1), UINT64_C(0x57942F3C1609BF8C), UINT64_C(0x30A47F3266E48C7A), UINT64_C(0x170D301DB0DA341F)}}, {{UINT64_C(0x19643EB218ED9863), UINT64_C(0xBBE55BCCD9104F33), UINT64_C(0x77008B6CA15B283C), UINT64_C(0x2A6E0B41873A6A02)}, {UINT64_C(0x517410DF3CB9A225), UINT64_C(0x20D76E38F538730A), UINT64_C(0x76C9CAD69F8724F0), UINT64_C(0x588BA1066BE9A035)}}, {{UINT64_C(0xA059DBECF842F66C), UINT64_C(0x59CA186DB3ED0481), UINT64_C(0xA5B2ABCBD454490F), UINT64_C(0x4A0F600402624902)}, {UINT64_C(0x45AF7B514D2F605F), UINT64_C(0x57E8FE0FC368030F), UINT64_C(0x23B745570C0727AE), UINT64_C(0x7E91EC772B603EC4)}}, {{UINT64_C(0xEDD284CFFD582BE8), UINT64_C(0x3077CB2381093CDA), UINT64_C(0xB1934840FDEA4FCE), UINT64_C(0x00F9B9D1D7F01C9A)}, {UINT64_C(0xA55E5C5B0A1C707B), UINT64_C(0x05CD73CB2F8618A5), UINT64_C(0x7327CECB512EEA05), UINT64_C(0x5130A0998BF2A4D5)}}, {{UINT64_C(0x34D18880FA7A1C7B), UINT64_C(0x5E0D6C53FD4E043F), UINT64_C(0xB4DD80101B4442AE), UINT64_C(0x59D9183E78ED7563)}, {UINT64_C(0x624DDAFCF1FAE158), UINT64_C(0xC08C36535C4C1E92), UINT64_C(0x452FD71FCE3E42EF), UINT64_C(0x175B490820B902EC)}}, {{UINT64_C(0x5F0FDF2418F4CE34), UINT64_C(0xA64A30119B7E61B8), UINT64_C(0x8109ACD5663362E2), UINT64_C(0x4D02F82497F3DF44)}, {UINT64_C(0x2CE27CCE3A4F916A), UINT64_C(0x4A4E6CBB3B85B146), UINT64_C(0xFE7A6199DB8C9E5E), UINT64_C(0x53F5D620D94B8D23)}}, {{UINT64_C(0x37FEBEC3E77610A9), UINT64_C(0xE82D8EAC92245CB0), UINT64_C(0x3FD2CEEAF79A31BC), UINT64_C(0x277ACF32B446850C)}, {UINT64_C(0xD89FF4C7CE1A2786), UINT64_C(0x441781E5FFD3A23C), UINT64_C(0x7876EFC507E85496), UINT64_C(0x0F306C7BE6F41B30)}}, {{UINT64_C(0x3BF2BFD15AB1B92B), UINT64_C(0xDCC3F5A6F373FCF2), UINT64_C(0x27CFC4A6DA53C229), UINT64_C(0x5885737C508E677F)}, {UINT64_C(0x1275D0F17B829F24), UINT64_C(0xBD3C0B024991B75B), UINT64_C(0x3F82ACDFE581C569), UINT64_C(0x123294353F28904E)}}, {{UINT64_C(0xCF7BDCCC99C3A09B), UINT64_C(0x191911075F7D601A), UINT64_C(0xA82F746039FBAA22), UINT64_C(0x3105A6FCD75B5786)}, {UINT64_C(0x9673DAC4932F69A6), UINT64_C(0xF5664B25B57D6EE6), UINT64_C(0x1EDAC1120A3CDD3E), UINT64_C(0x3CF84F8C42778563)}}, }, { {{UINT64_C(0xE36FD1B765DE3040), UINT64_C(0x240EADEA8AA0D3FE), UINT64_C(0x769714317F77F804), UINT64_C(0x6FCC933E591E9694)}, {UINT64_C(0x3218D92B18F48742), UINT64_C(0x215F13E95E1B4001), UINT64_C(0xCDF333CD7A8D69B9), UINT64_C(0x14F159B1D2FD134F)}}, {{UINT64_C(0x2D1228D607A50C16), UINT64_C(0x0DFD80F629AE42FD), UINT64_C(0x6C18B122BB8F3512), UINT64_C(0x0FE61243303F3DCA)}, {UINT64_C(0x43A29F4DDA50709B), UINT64_C(0x3FF58C084B92BF7B), UINT64_C(0x62DC6B41DFCEF797), UINT64_C(0x43F9525AC7B83F32)}}, {{UINT64_C(0x17EBBC9A15F08F5B), UINT64_C(0xBCD3B6408BB3E932), UINT64_C(0xD46FBB9F510BBD36), UINT64_C(0x389ABBA8CF65442B)}, {UINT64_C(0x3A3DAFE4B575545C), UINT64_C(0x6AB985ECE1D0994D), UINT64_C(0xCC2A697B69E1DB27), UINT64_C(0x0D483E18271581DC)}}, {{UINT64_C(0x380D4095C046D968), UINT64_C(0x5303975555D3318B), UINT64_C(0x57FA762991CE6FFC), UINT64_C(0x0A0F2885A4ADB641)}, {UINT64_C(0x8B99AF1B6E5C2909), UINT64_C(0xBDFE7FFDB8794175), UINT64_C(0x2CFB948A795ED786), UINT64_C(0x11FE74650FD0DF66)}}, {{UINT64_C(0xFC2CC2BD22E152E2), UINT64_C(0xCF6AB96BE30BCEB3), UINT64_C(0xAE89C041BC89B689), UINT64_C(0x6813430CE7523AB6)}, {UINT64_C(0x3F49E72840A4FA33), UINT64_C(0x025DE1B7857CB0C9), UINT64_C(0x6D71465A11EA5EA5), UINT64_C(0x6651F7B946C8D7CB)}}, {{UINT64_C(0xD05F1DCE5268098F), UINT64_C(0x891DBB680DC75030), UINT64_C(0xD939E428EA916291), UINT64_C(0x5F8EECCCEA37D060)}, {UINT64_C(0x885F1EA88DC5D544), UINT64_C(0xFD3B3D1757E7448F), UINT64_C(0x5FC791A879531DE0), UINT64_C(0x780C1AAF42E66DAA)}}, {{UINT64_C(0x19697778397BB28F), UINT64_C(0x5EC31D44AAA9069D), UINT64_C(0xDC2DFEAA3CA24A6F), UINT64_C(0x3F66CFCA80BED770)}, {UINT64_C(0x2B6B82151A102662), UINT64_C(0x44B4D7A4C5D34CEB), UINT64_C(0x17E0FDE688AFECF2), UINT64_C(0x0DEFA14BCFF8D214)}}, {{UINT64_C(0x14035AA48365CA84), UINT64_C(0x309CEEF0197CE2B7), UINT64_C(0x21305426ED39AF37), UINT64_C(0x10D01D11D2EA583A)}, {UINT64_C(0x3F2E97499FA5C766), UINT64_C(0x98357584D70549D4), UINT64_C(0x8FF80803D279946D), UINT64_C(0x53DBC43399DF1253)}}, {{UINT64_C(0x1D0D9EFA5329F12F), UINT64_C(0xBC9F74CFBE1F007F), UINT64_C(0xD7F2AA9A18EE4DBC), UINT64_C(0x634BF4CF3A792753)}, {UINT64_C(0xD5DC72AD2FA6255A), UINT64_C(0xEE69EA43F3BC00C5), UINT64_C(0xEA930F61D8147A1A), UINT64_C(0x25E1368DF4E9AD37)}}, {{UINT64_C(0x9422AAF7B7C955EC), UINT64_C(0x7C7107616A74D634), UINT64_C(0x4ED89932305EE420), UINT64_C(0x07E422122E937289)}, {UINT64_C(0x7EBB231328566C88), UINT64_C(0xC7ED9C7AC27ED656), UINT64_C(0xF77F3873BF14FB3B), UINT64_C(0x447AA1E5EB957520)}}, {{UINT64_C(0x3E3CEC7EB5C5E016), UINT64_C(0xB33DDFF7BDE44D26), UINT64_C(0x2056E9C766E820DD), UINT64_C(0x21A9E5D4F8196FE2)}, {UINT64_C(0x86CB0A1788040C97), UINT64_C(0x18AD8AE7FF515D49), UINT64_C(0xCB8A564A226A400A), UINT64_C(0x6DB489798B72A0D2)}}, {{UINT64_C(0x4365074B6324DED2), UINT64_C(0x9EFB5CC6AEDAF0F8), UINT64_C(0xCF952C3CC0792B14), UINT64_C(0x70B82AB997ED965E)}, {UINT64_C(0x931B98863ACEBCE7), UINT64_C(0xDA85049118C2425A), UINT64_C(0xD88E1E27E499F7FB), UINT64_C(0x61D3F246960981DE)}}, {{UINT64_C(0x1D8EA2278393EB0A), UINT64_C(0x9DCC23D27863FB53), UINT64_C(0x961B2337D5EBD297), UINT64_C(0x0A96F8B25BFED1E9)}, {UINT64_C(0x39EA1803FE7DD2B7), UINT64_C(0x7E4817BBE5F7772A), UINT64_C(0x3668C5FFD44A41EF), UINT64_C(0x78227653E11F8E11)}}, {{UINT64_C(0x272D6933D024880B), UINT64_C(0x733C029FF236FD8A), UINT64_C(0xBA5C20BD604868F0), UINT64_C(0x33F211AE321175C2)}, {UINT64_C(0xE40010FB9FD79FE3), UINT64_C(0x9C6EA1DCA685A59F), UINT64_C(0x79963FFC8EB9889D), UINT64_C(0x15434E7D5F67108D)}}, {{UINT64_C(0x42C14BBFD68B670F), UINT64_C(0x2021AC9D23F1AA69), UINT64_C(0xBF4C6D74AEA04636), UINT64_C(0x1E4D2F8EBD1FB11D)}, {UINT64_C(0x4B0CF0E337911AA6), UINT64_C(0x7542D9282C484507), UINT64_C(0x68836751889542DC), UINT64_C(0x05F229F7FE2282A0)}}, {{UINT64_C(0xAF269E8B409B2067), UINT64_C(0x6C749952A860F075), UINT64_C(0xCB7492DA5DF7C7F6), UINT64_C(0x2B010A7FE8E591E1)}, {UINT64_C(0xF744657704D9E871), UINT64_C(0xC2E0A2A35E68408E), UINT64_C(0xD512E9A6D0F0BAAD), UINT64_C(0x3E2F73E1C6BE34A3)}}, }, { {{UINT64_C(0x6C466C8E2EC65BB4), UINT64_C(0x912FFAE5B1FC8F92), UINT64_C(0x7587BE5DB50A522D), UINT64_C(0x15939FF7649847CF)}, {UINT64_C(0x69E81D63F464794E), UINT64_C(0x7BB6EEE36D3F858E), UINT64_C(0x24FE5C0110813BBB), UINT64_C(0x0C491F976D80756C)}}, {{UINT64_C(0xBAD1C256A5FF3510), UINT64_C(0xF06F38A299C1B7B2), UINT64_C(0xF7C0F164049312D6), UINT64_C(0x073C53745749B3E4)}, {UINT64_C(0xD676148055211A81), UINT64_C(0xF34CB5DBDFA98F45), UINT64_C(0xAF59FA47B4AA4967), UINT64_C(0x116935B98214BE48)}}, {{UINT64_C(0x1D86FA009FE10E46), UINT64_C(0x73B8099C0B5B8494), UINT64_C(0x9A6EA98DA1102BE7), UINT64_C(0x3DE1948B5514CA21)}, {UINT64_C(0x5D18ED69D0AAAA53), UINT64_C(0x17BF7DFF3C952B98), UINT64_C(0xC60143FE7DDBD937), UINT64_C(0x214F2F556F2F10C4)}}, {{UINT64_C(0xB2F2869502F047D0), UINT64_C(0x80952DFE923F52BF), UINT64_C(0x56F3306BA5017C3E), UINT64_C(0x5DD62F07052DADFB)}, {UINT64_C(0xDD11592DD5274F90), UINT64_C(0x40632FF3E471965B), UINT64_C(0xAD1939A87E618430), UINT64_C(0x5DD9CAD233F19556)}}, {{UINT64_C(0x7B0AA88CC1094747), UINT64_C(0xCFA6B95DF6753A0C), UINT64_C(0xE81AFADA2A252A4D), UINT64_C(0x364CAB7CD3770570)}, {UINT64_C(0xE99D8252B4610A19), UINT64_C(0xB22B2FEC55ED9AD3), UINT64_C(0x328ACBDDBEBE7FED), UINT64_C(0x1D379D61FBEDFE84)}}, {{UINT64_C(0xD9EFFFFA5EDF8C9C), UINT64_C(0x9BAA71810CE548EC), UINT64_C(0xEB458AEB5FA8FEEB), UINT64_C(0x18C5E6910904D841)}, {UINT64_C(0xFCEFAE288F33D2E5), UINT64_C(0xB3CF853E6FAFDA18), UINT64_C(0x05DE94BA427D6218), UINT64_C(0x021D8AED3731D3E9)}}, {{UINT64_C(0x06C8C318E92719DA), UINT64_C(0x1F7CDE121A65DFDB), UINT64_C(0x9B4D531E4B672A2D), UINT64_C(0x3E39CC63115FAF11)}, {UINT64_C(0xC9C3F3390037AF60), UINT64_C(0xC1C6758702B43D27), UINT64_C(0x46B77CDDC42DF26B), UINT64_C(0x7235F2B0EBFA97A7)}}, {{UINT64_C(0xAF7FFC9AE898094E), UINT64_C(0x8D18AB93146A27E3), UINT64_C(0x1376B7978AEC0416), UINT64_C(0x746A1B1C8D91C25E)}, {UINT64_C(0x16DCCCC10EBDE2E3), UINT64_C(0xFE4ABD418CE7D61E), UINT64_C(0xB9830395E25F1551), UINT64_C(0x543493D7B885A943)}}, {{UINT64_C(0x52C659E624EBCFC0), UINT64_C(0x72E3CA91D38367A4), UINT64_C(0xA3086AAC4D168F4F), UINT64_C(0x656ACFEE5D64207B)}, {UINT64_C(0xBE697CBABA196A9E), UINT64_C(0x6A737ACC97DFFEC2), UINT64_C(0x393E266154F04DBD), UINT64_C(0x4FFF7C244B0E92BD)}}, {{UINT64_C(0xC709CC59828EC659), UINT64_C(0xB275AC8CCBDEACB3), UINT64_C(0xA8D08921F7922523), UINT64_C(0x68B92F96400A6459)}, {UINT64_C(0x45803EC2DFBECB97), UINT64_C(0x49464E057515D696), UINT64_C(0xF39CA9618F03E969), UINT64_C(0x605065A11CD7C79F)}}, {{UINT64_C(0xB91C03DC97F1A97A), UINT64_C(0x2F6D50BB201FFB53), UINT64_C(0x39D67D4046241856), UINT64_C(0x0A2C025674D04805)}, {UINT64_C(0xD289B94C28374A6D), UINT64_C(0x1176C73A10EDD6FC), UINT64_C(0x890E9C3956AE631E), UINT64_C(0x30451CF16027F549)}}, {{UINT64_C(0x0CB33FDCDF8F4DDB), UINT64_C(0xD9C540DE87FF6E63), UINT64_C(0xD844573255A1D8E4), UINT64_C(0x1497403D8AC403A6)}, {UINT64_C(0xA2591C406A4BAAC6), UINT64_C(0xF493CF1F48DD3E5D), UINT64_C(0x7B9AE39FB69AF047), UINT64_C(0x293123C03782B110)}}, {{UINT64_C(0x14921836B7A36B62), UINT64_C(0x5AC824304CA3AA39), UINT64_C(0x01303AA652F601CA), UINT64_C(0x7EE1E6C72B43BB72)}, {UINT64_C(0x7F82B37B64D44957), UINT64_C(0x840D0654DA4A6FEC), UINT64_C(0xFC806FA10290F75D), UINT64_C(0x3027FE4A4C62F0E8)}}, {{UINT64_C(0x34E68AB5CD0D3AC0), UINT64_C(0xE6B0B8C1E9BC85BD), UINT64_C(0xE00F505299533831), UINT64_C(0x11327DA7CDC83750)}, {UINT64_C(0x6D991DF04656A428), UINT64_C(0x6A7BE34986228F26), UINT64_C(0x6BF85E3D3019CDC5), UINT64_C(0x42200D2F576913A4)}}, {{UINT64_C(0x420D9259707B940F), UINT64_C(0x1BB1FFE13C5E39BB), UINT64_C(0x83D6BA36E40D018E), UINT64_C(0x139BD842044EC576)}, {UINT64_C(0x3C79F8D2C6DE63E8), UINT64_C(0x49150B1D96F1FB0B), UINT64_C(0x666160531358A13B), UINT64_C(0x187CA3CFD5DDFD9F)}}, {{UINT64_C(0x0675370F8D5AEE84), UINT64_C(0x30AA7D65DC269114), UINT64_C(0x295F7FE85AFC6DC1), UINT64_C(0x4945202955674339)}, {UINT64_C(0x7EB1926BA6F209EC), UINT64_C(0x5232B9D1DC72C3E3), UINT64_C(0xCD788D79AB52141B), UINT64_C(0x3EB561BEFDD9611F)}}, }, { {{UINT64_C(0x09DB342CE22241AD), UINT64_C(0x2EAB852F2A566653), UINT64_C(0x970843EDCA6E59F3), UINT64_C(0x6490013EA18C2D89)}, {UINT64_C(0x52293350C7A691CC), UINT64_C(0x6544B49DB2079F14), UINT64_C(0xC49C559852DCF090), UINT64_C(0x4069B6FC8817A2C7)}}, {{UINT64_C(0x0E4A4B0CC86B40F4), UINT64_C(0x2B5350E151F6F853), UINT64_C(0xDE26FDE21033BEC4), UINT64_C(0x4DE9D2E7C0E9B971)}, {UINT64_C(0x716605FDD315AD57), UINT64_C(0x5627D732392B101A), UINT64_C(0x628EDFC681A9F40A), UINT64_C(0x4BD2A96C5AB9C99D)}}, {{UINT64_C(0x2C8DF2A1BFBD288A), UINT64_C(0x260C4F1EF4CF7C09), UINT64_C(0x88A2618690E796CB), UINT64_C(0x105ACC3A323E0702)}, {UINT64_C(0xA8ADA467667664CF), UINT64_C(0x41144C1B3B518622), UINT64_C(0x4A532B87D8B99FE1), UINT64_C(0x4A51C2892289C308)}}, {{UINT64_C(0x201DDA611D6F6880), UINT64_C(0x47A964D462029898), UINT64_C(0xE44E2EEE426C8CA5), UINT64_C(0x02A5182109625DBA)}, {UINT64_C(0x170C626EB45B3DFB), UINT64_C(0xFC7F1F715C8343A9), UINT64_C(0xE6CF246FE549F040), UINT64_C(0x4ACF60AE2F903ACE)}}, {{UINT64_C(0x9171535281C807EC), UINT64_C(0x72AC60C347174A58), UINT64_C(0xAD62D06FA0F12F61), UINT64_C(0x325C2792AA899C0D)}, {UINT64_C(0x53A1E3929D8BA267), UINT64_C(0x5DC088A5CDACCB05), UINT64_C(0x5BB9127F5025CB69), UINT64_C(0x25D2B42E69214616)}}, {{UINT64_C(0x4DE5D58ADDB55121), UINT64_C(0x688AA2F584DE0677), UINT64_C(0xF7925A3963AA25E0), UINT64_C(0x4FB42FC785D4DEA5)}, {UINT64_C(0x957B933B8F134390), UINT64_C(0xB360DD2C4B9BF8C2), UINT64_C(0x45E6767FFFFF96CD), UINT64_C(0x26D0A6A91E01D5C3)}}, {{UINT64_C(0xC7FC57145A0A98EA), UINT64_C(0xDBB06F30E7535AF6), UINT64_C(0x555B22E3DF4ACD0D), UINT64_C(0x3A011AAF2EFD2FBE)}, {UINT64_C(0x341C7733E9166B20), UINT64_C(0x84619E8EFB19590A), UINT64_C(0x8EF989FD10574C96), UINT64_C(0x61ACFAAE0F55F9A2)}}, {{UINT64_C(0x8C8A33F26DEAB094), UINT64_C(0x4A8E5D9F96022EBC), UINT64_C(0xA10DF82C7DDA92E8), UINT64_C(0x33A19462D1CF3815)}, {UINT64_C(0xE3FF8E43A489D67F), UINT64_C(0xD4B6136F225064AA), UINT64_C(0xE1721D2A92F5E662), UINT64_C(0x4C4F03D7A90A33C6)}}, {{UINT64_C(0x70885B35A3463B4A), UINT64_C(0x974BC40EDF9D0194), UINT64_C(0x1AF71E18273957F4), UINT64_C(0x58EF684B9900CB0D)}, {UINT64_C(0xB09970C820A49A4A), UINT64_C(0x3F28403F42067458), UINT64_C(0x153FF2C4BD7D1AD5), UINT64_C(0x7912CC2EE97A90F7)}}, {{UINT64_C(0xF653DF598F034D9F), UINT64_C(0xCA1671771C409CCF), UINT64_C(0x21F47005175F3583), UINT64_C(0x13B8A94BFAAFB66F)}, {UINT64_C(0x64534EE396052C8D), UINT64_C(0x09304DD18D674024), UINT64_C(0xEB468AC30D7A7E2A), UINT64_C(0x40347256CD62052C)}}, {{UINT64_C(0x0F089165FFF11C0E), UINT64_C(0x383562C98D69A45C), UINT64_C(0x7AB3EF9D3125FE61), UINT64_C(0x32C042BCE0735F3A)}, {UINT64_C(0x420077C84E268D91), UINT64_C(0x7FB4208244695B4F), UINT64_C(0xFA83216F448A133E), UINT64_C(0x1C66060793062EB3)}}, {{UINT64_C(0xA0FCBACAEF9E04DE), UINT64_C(0xAEF9EECB5B86F69A), UINT64_C(0x73D2E95FC39D4C99), UINT64_C(0x098C74F7923A5BA8)}, {UINT64_C(0x5B8C95C84F68DECF), UINT64_C(0xCFF2E10158976551), UINT64_C(0x5032AE48BE5CAF91), UINT64_C(0x5CCB9008E09BC8AE)}}, {{UINT64_C(0x41A38F203714D3BF), UINT64_C(0x2413653317366520), UINT64_C(0xF12F314CFAE17B01), UINT64_C(0x4AA0C969FC9AD43B)}, {UINT64_C(0xD8AB5F728BBAC026), UINT64_C(0x35128269526992DC), UINT64_C(0xA2EF6E44D19880AA), UINT64_C(0x28BB3623DBF47628)}}, {{UINT64_C(0x294742BA3BA25C35), UINT64_C(0x39D3BC9B061555B7), UINT64_C(0x944E3ABCDE6EA1A0), UINT64_C(0x4FDC641557EBD394)}, {UINT64_C(0xB615C1DAE981E649), UINT64_C(0xAF7EDB348BE3C95F), UINT64_C(0x38573AE871F7221F), UINT64_C(0x1B30FF04668CF414)}}, {{UINT64_C(0x48EFF6A2A57A9A4E), UINT64_C(0x04BA2F7374A59C19), UINT64_C(0x5FDE389D6779C5DA), UINT64_C(0x258E2B246612F160)}, {UINT64_C(0xCE8D7A0B6D116D41), UINT64_C(0xAF660436EE2706C8), UINT64_C(0xFFAD6FE9F81D6398), UINT64_C(0x4FE5EC5414BA128A)}}, {{UINT64_C(0x7D5E8299BD4B886C), UINT64_C(0x5403A46EDB0DB148), UINT64_C(0x32F49FC076A808D7), UINT64_C(0x6D483FD7D3B9A641)}, {UINT64_C(0x731DF1223952C70F), UINT64_C(0xB5CABAC1CB5E6081), UINT64_C(0x12FA297D7AFA8F59), UINT64_C(0x3272360A6AC91952)}}, }}; /*- * Q := 2P, both projective, Q and P same pointers OK * Autogenerated: op3/dbl_proj.op3 * https://eprint.iacr.org/2015/1060 Alg 6 * ASSERT: a = -3 */ static void point_double(pt_prj_t *Q, const pt_prj_t *P) { /* temporary variables */ fe_t t0, t1, t2, t3, t4; /* constants */ const limb_t *b = const_b; /* set pointers for legacy curve arith */ const limb_t *X = P->X; const limb_t *Y = P->Y; const limb_t *Z = P->Z; limb_t *X3 = Q->X; limb_t *Y3 = Q->Y; limb_t *Z3 = Q->Z; /* the curve arith formula */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(t0, X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(t1, Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(t2, Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t3, X, Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, t3, t3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t4, Y, Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, X, Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, b, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, Y3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, X3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, t1, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, t1, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, X3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(X3, X3, t3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, t2, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t2, t2, t3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, b, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Z3, Z3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Z3, Z3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, Z3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, t3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, t0, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t0, t3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t0, t0, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t0, t0, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, Y3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t0, t4, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, t0, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, t0, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, Z3); } /*- * R := Q + P where R and Q are projective, P affine. * R and Q same pointers OK * R and P same pointers not OK * Autogenerated: op3/add_mixed.op3 * https://eprint.iacr.org/2015/1060 Alg 5 * ASSERT: a = -3 */ static void point_add_mixed(pt_prj_t *R, const pt_prj_t *Q, const pt_aff_t *P) { /* temporary variables */ fe_t t0, t1, t2, t3, t4; /* constants */ const limb_t *b = const_b; /* set pointers for legacy curve arith */ const limb_t *X1 = Q->X; const limb_t *Y1 = Q->Y; const limb_t *Z1 = Q->Z; const limb_t *X2 = P->X; const limb_t *Y2 = P->Y; fe_t X3; fe_t Y3; fe_t Z3; limb_t nz; /* check P for affine inf */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_nonzero(&nz, P->Y); /* the curve arith formula */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t0, X1, X2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, Y1, Y2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, X2, Y2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, X1, Y1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t3, t3, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, t0, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t3, t3, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t4, Y2, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, t4, Y1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, X2, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, Y3, X1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, b, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, Y3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, X3, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Z3, t1, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, t1, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, b, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, Z1, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t2, t1, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, Y3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, t1, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, t0, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t0, t1, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t0, t0, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, t4, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t2, t0, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, Y3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(X3, t3, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, X3, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, t4, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, t3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, t1); /* if P is inf, throw all that away and take Q */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(R->X, nz, Q->X, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(R->Y, nz, Q->Y, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(R->Z, nz, Q->Z, Z3); } /*- * R := Q + P all projective. * R and Q same pointers OK * R and P same pointers not OK * Autogenerated: op3/add_proj.op3 * https://eprint.iacr.org/2015/1060 Alg 4 * ASSERT: a = -3 */ static void point_add_proj(pt_prj_t *R, const pt_prj_t *Q, const pt_prj_t *P) { /* temporary variables */ fe_t t0, t1, t2, t3, t4, t5; /* constants */ const limb_t *b = const_b; /* set pointers for legacy curve arith */ const limb_t *X1 = Q->X; const limb_t *Y1 = Q->Y; const limb_t *Z1 = Q->Z; const limb_t *X2 = P->X; const limb_t *Y2 = P->Y; const limb_t *Z2 = P->Z; limb_t *X3 = R->X; limb_t *Y3 = R->Y; limb_t *Z3 = R->Z; /* the curve arith formula */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t0, X1, X2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, Y1, Y2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t2, Z1, Z2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, X1, Y1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, X2, Y2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t3, t3, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, t0, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t3, t3, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, Y1, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t5, Y2, Z2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t4, t4, t5); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t5, t1, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t4, t4, t5); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, X1, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, X2, Z2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(X3, X3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, t0, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, X3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, b, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, Y3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, X3, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Z3, t1, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, t1, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, b, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, t2, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t2, t1, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, Y3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, t1, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, t0, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t0, t1, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t0, t0, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, t4, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t2, t0, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, Y3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(X3, t3, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, X3, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, t4, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, t3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, t1); } /* constants */ #define RADIX 5 #define DRADIX (1 << RADIX) #define DRADIX_WNAF ((DRADIX) << 1) /*- * precomp for wnaf scalar multiplication: * precomp[0] = 1P * precomp[1] = 3P * precomp[2] = 5P * precomp[3] = 7P * precomp[4] = 9P * ... */ static void precomp_wnaf(pt_prj_t precomp[DRADIX / 2], const pt_aff_t *P) { int i; fe_copy(precomp[0].X, P->X); fe_copy(precomp[0].Y, P->Y); fe_copy(precomp[0].Z, const_one); point_double(&precomp[DRADIX / 2 - 1], &precomp[0]); for (i = 1; i < DRADIX / 2; i++) point_add_proj(&precomp[i], &precomp[DRADIX / 2 - 1], &precomp[i - 1]); } /* fetch a scalar bit */ static int scalar_get_bit(const unsigned char in[32], int idx) { int widx, rshift; widx = idx >> 3; rshift = idx & 0x7; if (idx < 0 || widx >= 32) return 0; return (in[widx] >> rshift) & 0x1; } /*- * Compute "regular" wnaf representation of a scalar. * See "Exponent Recoding and Regular Exponentiation Algorithms", * Tunstall et al., AfricaCrypt 2009, Alg 6. * It forces an odd scalar and outputs digits in * {\pm 1, \pm 3, \pm 5, \pm 7, \pm 9, ...} * i.e. signed odd digits with _no zeroes_ -- that makes it "regular". */ static void scalar_rwnaf(int8_t out[52], const unsigned char in[32]) { int i; int8_t window, d; window = (in[0] & (DRADIX_WNAF - 1)) | 1; for (i = 0; i < 51; i++) { d = (window & (DRADIX_WNAF - 1)) - DRADIX; out[i] = d; window = (window - d) >> RADIX; window += scalar_get_bit(in, (i + 1) * RADIX + 1) << 1; window += scalar_get_bit(in, (i + 1) * RADIX + 2) << 2; window += scalar_get_bit(in, (i + 1) * RADIX + 3) << 3; window += scalar_get_bit(in, (i + 1) * RADIX + 4) << 4; window += scalar_get_bit(in, (i + 1) * RADIX + 5) << 5; } out[i] = window; } /*- * Compute "textbook" wnaf representation of a scalar. * NB: not constant time */ static void scalar_wnaf(int8_t out[257], const unsigned char in[32]) { int i; int8_t window, d; window = in[0] & (DRADIX_WNAF - 1); for (i = 0; i < 257; i++) { d = 0; if ((window & 1) && ((d = window & (DRADIX_WNAF - 1)) & DRADIX)) d -= DRADIX_WNAF; out[i] = d; window = (window - d) >> 1; window += scalar_get_bit(in, i + 1 + RADIX) << RADIX; } } /*- * Simultaneous scalar multiplication: interleaved "textbook" wnaf. * NB: not constant time */ static void var_smul_wnaf_two(pt_aff_t *out, const unsigned char a[32], const unsigned char b[32], const pt_aff_t *P) { int i, d, is_neg, is_inf = 1, flipped = 0; int8_t anaf[257] = {0}; int8_t bnaf[257] = {0}; pt_prj_t Q = {0}; pt_prj_t precomp[DRADIX / 2]; precomp_wnaf(precomp, P); scalar_wnaf(anaf, a); scalar_wnaf(bnaf, b); for (i = 256; i >= 0; i--) { if (!is_inf) point_double(&Q, &Q); if ((d = bnaf[i])) { if ((is_neg = d < 0) != flipped) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(Q.Y, Q.Y); flipped ^= 1; } d = (is_neg) ? (-d - 1) >> 1 : (d - 1) >> 1; if (is_inf) { /* initialize accumulator */ fe_copy(Q.X, &precomp[d].X); fe_copy(Q.Y, &precomp[d].Y); fe_copy(Q.Z, &precomp[d].Z); is_inf = 0; } else point_add_proj(&Q, &Q, &precomp[d]); } if ((d = anaf[i])) { if ((is_neg = d < 0) != flipped) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(Q.Y, Q.Y); flipped ^= 1; } d = (is_neg) ? (-d - 1) >> 1 : (d - 1) >> 1; if (is_inf) { /* initialize accumulator */ fe_copy(Q.X, &lut_cmb[0][d].X); fe_copy(Q.Y, &lut_cmb[0][d].Y); fe_copy(Q.Z, const_one); is_inf = 0; } else point_add_mixed(&Q, &Q, &lut_cmb[0][d]); } } if (is_inf) { /* initialize accumulator to inf: all-zero scalars */ fe_set_zero(Q.X); fe_copy(Q.Y, const_one); fe_set_zero(Q.Z); } if (flipped) { /* correct sign */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(Q.Y, Q.Y); } /* convert to affine -- NB depends on coordinate system */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_inv(Q.Z, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->X, Q.X, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->Y, Q.Y, Q.Z); } /*- * Variable point scalar multiplication with "regular" wnaf. */ static void var_smul_rwnaf(pt_aff_t *out, const unsigned char scalar[32], const pt_aff_t *P) { int i, j, d, diff, is_neg; int8_t rnaf[52] = {0}; pt_prj_t Q = {0}, lut = {0}; pt_prj_t precomp[DRADIX / 2]; precomp_wnaf(precomp, P); scalar_rwnaf(rnaf, scalar); #if defined(_MSC_VER) /* result still unsigned: yes we know */ #pragma warning(push) #pragma warning(disable : 4146) #endif /* initialize accumulator to high digit */ d = (rnaf[51] - 1) >> 1; for (j = 0; j < DRADIX / 2; j++) { diff = (1 - (-(d ^ j) >> (8 * sizeof(int) - 1))) & 1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.X, diff, Q.X, precomp[j].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Y, diff, Q.Y, precomp[j].Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Z, diff, Q.Z, precomp[j].Z); } for (i = 50; i >= 0; i--) { for (j = 0; j < RADIX; j++) point_double(&Q, &Q); d = rnaf[i]; /* is_neg = (d < 0) ? 1 : 0 */ is_neg = (d >> (8 * sizeof(int) - 1)) & 1; /* d = abs(d) */ d = (d ^ -is_neg) + is_neg; d = (d - 1) >> 1; for (j = 0; j < DRADIX / 2; j++) { diff = (1 - (-(d ^ j) >> (8 * sizeof(int) - 1))) & 1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.X, diff, lut.X, precomp[j].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.Y, diff, lut.Y, precomp[j].Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.Z, diff, lut.Z, precomp[j].Z); } /* negate lut point if digit is negative */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(out->Y, lut.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(lut.Y, is_neg, lut.Y, out->Y); point_add_proj(&Q, &Q, &lut); } #if defined(_MSC_VER) #pragma warning(pop) #endif /* conditionally subtract P if the scalar was even */ fe_copy(lut.X, precomp[0].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(lut.Y, precomp[0].Y); fe_copy(lut.Z, precomp[0].Z); point_add_proj(&lut, &lut, &Q); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.X, scalar[0] & 1, lut.X, Q.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Y, scalar[0] & 1, lut.Y, Q.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Z, scalar[0] & 1, lut.Z, Q.Z); /* convert to affine -- NB depends on coordinate system */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_inv(Q.Z, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->X, Q.X, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->Y, Q.Y, Q.Z); } /*- * Fixed scalar multiplication: comb with interleaving. */ static void fixed_smul_cmb(pt_aff_t *out, const unsigned char scalar[32]) { int i, j, k, d, diff, is_neg = 0; int8_t rnaf[52] = {0}; pt_prj_t Q = {0}, R = {0}; pt_aff_t lut = {0}; scalar_rwnaf(rnaf, scalar); /* initalize accumulator to inf */ fe_set_zero(Q.X); fe_copy(Q.Y, const_one); fe_set_zero(Q.Z); #if defined(_MSC_VER) /* result still unsigned: yes we know */ #pragma warning(push) #pragma warning(disable : 4146) #endif for (i = 1; i >= 0; i--) { for (j = 0; i != 1 && j < RADIX; j++) point_double(&Q, &Q); for (j = 0; j < 27; j++) { if (j * 2 + i > 51) continue; d = rnaf[j * 2 + i]; /* is_neg = (d < 0) ? 1 : 0 */ is_neg = (d >> (8 * sizeof(int) - 1)) & 1; /* d = abs(d) */ d = (d ^ -is_neg) + is_neg; d = (d - 1) >> 1; for (k = 0; k < DRADIX / 2; k++) { diff = (1 - (-(d ^ k) >> (8 * sizeof(int) - 1))) & 1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.X, diff, lut.X, lut_cmb[j][k].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.Y, diff, lut.Y, lut_cmb[j][k].Y); } /* negate lut point if digit is negative */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(out->Y, lut.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.Y, is_neg, lut.Y, out->Y); point_add_mixed(&Q, &Q, &lut); } } #if defined(_MSC_VER) #pragma warning(pop) #endif /* conditionally subtract P if the scalar was even */ fe_copy(lut.X, lut_cmb[0][0].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(lut.Y, lut_cmb[0][0].Y); point_add_mixed(&R, &Q, &lut); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.X, scalar[0] & 1, R.X, Q.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Y, scalar[0] & 1, R.Y, Q.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Z, scalar[0] & 1, R.Z, Q.Z); /* convert to affine -- NB depends on coordinate system */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_inv(Q.Z, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->X, Q.X, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->Y, Q.Y, Q.Z); } /*- * Wrapper: simultaneous scalar mutiplication. * outx, outy := a * G + b * P * where P = (inx, iny). * Everything is LE byte ordering. */ static void point_mul_two(unsigned char outx[32], unsigned char outy[32], const unsigned char a[32], const unsigned char b[32], const unsigned char inx[32], const unsigned char iny[32]) { pt_aff_t P; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes(P.X, inx); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes(P.Y, iny); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery(P.Y, P.Y); /* simultaneous scalar multiplication */ var_smul_wnaf_two(&P, a, b, &P); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.Y, P.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outx, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outy, P.Y); } /*- * Wrapper: fixed scalar mutiplication. * outx, outy := scalar * G * Everything is LE byte ordering. */ static void point_mul_g(unsigned char outx[32], unsigned char outy[32], const unsigned char scalar[32]) { pt_aff_t P; /* fixed scmul function */ fixed_smul_cmb(&P, scalar); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.Y, P.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outx, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outy, P.Y); } /*- * Wrapper: variable point scalar mutiplication. * outx, outy := scalar * P * where P = (inx, iny). * Everything is LE byte ordering. */ static void point_mul(unsigned char outx[32], unsigned char outy[32], const unsigned char scalar[32], const unsigned char inx[32], const unsigned char iny[32]) { pt_aff_t P; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes(P.X, inx); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes(P.Y, iny); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery(P.Y, P.Y); /* var scmul function */ var_smul_rwnaf(&P, scalar, &P); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.Y, P.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outx, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outy, P.Y); } #include <openssl/ec.h> /* the zero field element */ static const unsigned char const_zb[32] = {0}; /*- * An OpenSSL wrapper for simultaneous scalar multiplication. * r := n * G + m * q */ int point_mul_two_id_GostR3410_2001_CryptoPro_B_ParamSet( const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx) { int ret = 0; unsigned char b_x[32]; unsigned char b_y[32]; unsigned char b_n[32]; unsigned char b_m[32]; BIGNUM *x = NULL, *y = NULL; BN_CTX_start(ctx); x = BN_CTX_get(ctx); if ((y = BN_CTX_get(ctx)) == NULL /* pull out coords as bytes */ || !EC_POINT_get_affine_coordinates(group, q, x, y, ctx) || BN_bn2lebinpad(x, b_x, 32) != 32 || BN_bn2lebinpad(y, b_y, 32) != 32 || BN_bn2lebinpad(n, b_n, 32) != 32 || BN_bn2lebinpad(m, b_m, 32) != 32) goto err; /* do the simultaneous scalar multiplication */ point_mul_two(b_x, b_y, b_n, b_m, b_x, b_y); /* check for infinity */ if (CRYPTO_memcmp(const_zb, b_x, 32) == 0 && CRYPTO_memcmp(const_zb, b_y, 32) == 0) { if (!EC_POINT_set_to_infinity(group, r)) goto err; } else { /* otherwise, pack the bytes into the result */ if (BN_lebin2bn(b_x, 32, x) == NULL || BN_lebin2bn(b_y, 32, y) == NULL || !EC_POINT_set_affine_coordinates(group, r, x, y, ctx)) goto err; } ret = 1; err: BN_CTX_end(ctx); return ret; } /*- * An OpenSSL wrapper for variable point scalar multiplication. * r := m * q */ int point_mul_id_GostR3410_2001_CryptoPro_B_ParamSet(const EC_GROUP *group, EC_POINT *r, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx) { int ret = 0; unsigned char b_x[32]; unsigned char b_y[32]; unsigned char b_m[32]; BIGNUM *x = NULL, *y = NULL; BN_CTX_start(ctx); x = BN_CTX_get(ctx); if ((y = BN_CTX_get(ctx)) == NULL /* pull out coords as bytes */ || !EC_POINT_get_affine_coordinates(group, q, x, y, ctx) || BN_bn2lebinpad(x, b_x, 32) != 32 || BN_bn2lebinpad(y, b_y, 32) != 32 || BN_bn2lebinpad(m, b_m, 32) != 32) goto err; /* do the variable scalar multiplication */ point_mul(b_x, b_y, b_m, b_x, b_y); /* check for infinity */ if (CRYPTO_memcmp(const_zb, b_x, 32) == 0 && CRYPTO_memcmp(const_zb, b_y, 32) == 0) { if (!EC_POINT_set_to_infinity(group, r)) goto err; } else { /* otherwise, pack the bytes into the result */ if (BN_lebin2bn(b_x, 32, x) == NULL || BN_lebin2bn(b_y, 32, y) == NULL || !EC_POINT_set_affine_coordinates(group, r, x, y, ctx)) goto err; } ret = 1; err: BN_CTX_end(ctx); return ret; } /*- * An OpenSSL wrapper for fixed scalar multiplication. * r := n * G */ int point_mul_g_id_GostR3410_2001_CryptoPro_B_ParamSet(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, BN_CTX *ctx) { int ret = 0; unsigned char b_x[32]; unsigned char b_y[32]; unsigned char b_n[32]; BIGNUM *x = NULL, *y = NULL; BN_CTX_start(ctx); x = BN_CTX_get(ctx); if ((y = BN_CTX_get(ctx)) == NULL || BN_bn2lebinpad(n, b_n, 32) != 32) goto err; /* do the fixed scalar multiplication */ point_mul_g(b_x, b_y, b_n); /* check for infinity */ if (CRYPTO_memcmp(const_zb, b_x, 32) == 0 && CRYPTO_memcmp(const_zb, b_y, 32) == 0) { if (!EC_POINT_set_to_infinity(group, r)) goto err; } else { /* otherwise, pack the bytes into the result */ if (BN_lebin2bn(b_x, 32, x) == NULL || BN_lebin2bn(b_y, 32, y) == NULL || !EC_POINT_set_affine_coordinates(group, r, x, y, ctx)) goto err; } ret = 1; err: BN_CTX_end(ctx); return ret; } #else /* __SIZEOF_INT128__ */ #include <stdint.h> #include <string.h> #define LIMB_BITS 32 #define LIMB_CNT 8 /* Field elements */ typedef uint32_t fe_t[LIMB_CNT]; typedef uint32_t limb_t; #ifdef OPENSSL_NO_ASM #define FIAT_ID_GOSTR3410_2001_CRYPTOPRO_B_PARAMSET_NO_ASM #endif #define fe_copy(d, s) memcpy(d, s, sizeof(fe_t)) #define fe_set_zero(d) memset(d, 0, sizeof(fe_t)) /* Projective points */ typedef struct { fe_t X; fe_t Y; fe_t Z; } pt_prj_t; /* Affine points */ typedef struct { fe_t X; fe_t Y; } pt_aff_t; /* BEGIN verbatim fiat code https://github.com/mit-plv/fiat-crypto */ /*- * MIT License * * Copyright (c) 2020 the fiat-crypto authors (see the AUTHORS file) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* Autogenerated: word_by_word_montgomery --static --use-value-barrier id_GostR3410_2001_CryptoPro_B_ParamSet 32 '2^255 + 3225' */ /* curve description: id_GostR3410_2001_CryptoPro_B_ParamSet */ /* machine_wordsize = 32 (from "32") */ /* requested operations: (all) */ /* m = 0x8000000000000000000000000000000000000000000000000000000000000c99 (from "2^255 + 3225") */ /* */ /* NOTE: In addition to the bounds specified above each function, all */ /* functions synthesized for this Montgomery arithmetic require the */ /* input to be strictly less than the prime modulus (m), and also */ /* require the input to be in the unique saturated representation. */ /* All functions also ensure that these two properties are true of */ /* return values. */ /* */ /* Computed values: */ /* eval z = z[0] + (z[1] << 32) + (z[2] << 64) + (z[3] << 96) + (z[4] << 128) + (z[5] << 160) + (z[6] << 192) + (z[7] << 224) */ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */ #include <stdint.h> typedef unsigned char fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1; typedef signed char fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int1; #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif #if !defined(FIAT_ID_GOSTR3410_2001_CRYPTOPRO_B_PARAMSET_NO_ASM) && \ (defined(__GNUC__) || defined(__clang__)) static __inline__ uint32_t fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_value_barrier_u32(uint32_t a) { __asm__("" : "+r"(a) : /* no inputs */); return a; } #else #define fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_value_barrier_u32(x) (x) #endif /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32 is an addition with carry. * Postconditions: * out1 = (arg1 + arg2 + arg3) mod 2^32 * out2 = ⌊(arg1 + arg2 + arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( uint32_t *out1, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 *out2, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 arg1, uint32_t arg2, uint32_t arg3) { uint64_t x1; uint32_t x2; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x3; x1 = ((arg1 + (uint64_t)arg2) + arg3); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32 is a subtraction with borrow. * Postconditions: * out1 = (-arg1 + arg2 + -arg3) mod 2^32 * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0x1] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( uint32_t *out1, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 *out2, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 arg1, uint32_t arg2, uint32_t arg3) { int64_t x1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int1 x2; uint32_t x3; x1 = ((arg2 - (int64_t)arg1) - arg3); x2 = (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int1)(x1 >> 32); x3 = (uint32_t)(x1 & UINT32_C(0xffffffff)); *out1 = x3; *out2 = (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1)(0x0 - x2); } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32 is a multiplication, returning the full double-width result. * Postconditions: * out1 = (arg1 * arg2) mod 2^32 * out2 = ⌊arg1 * arg2 / 2^32⌋ * * Input Bounds: * arg1: [0x0 ~> 0xffffffff] * arg2: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] * out2: [0x0 ~> 0xffffffff] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32( uint32_t *out1, uint32_t *out2, uint32_t arg1, uint32_t arg2) { uint64_t x1; uint32_t x2; uint32_t x3; x1 = ((uint64_t)arg1 * arg2); x2 = (uint32_t)(x1 & UINT32_C(0xffffffff)); x3 = (uint32_t)(x1 >> 32); *out1 = x2; *out2 = x3; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32 is a single-word conditional move. * Postconditions: * out1 = (if arg1 = 0 then arg2 else arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [0x0 ~> 0xffffffff] * arg3: [0x0 ~> 0xffffffff] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( uint32_t *out1, fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 arg1, uint32_t arg2, uint32_t arg3) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x1; uint32_t x2; uint32_t x3; x1 = (!(!arg1)); x2 = ((fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_int1)(0x0 - x1) & UINT32_C(0xffffffff)); x3 = ((fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_value_barrier_u32(x2) & arg3) | (fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_value_barrier_u32((~x2)) & arg2)); *out1 = x3; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul multiplies two field elements in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul( uint32_t out1[8], const uint32_t arg1[8], const uint32_t arg2[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x26; uint32_t x27; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x28; uint32_t x29; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x30; uint32_t x31; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x32; uint32_t x33; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x34; uint32_t x35; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x36; uint32_t x37; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x47; uint32_t x48; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x49; uint32_t x50; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x51; uint32_t x52; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x53; uint32_t x54; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x55; uint32_t x56; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x57; uint32_t x58; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x59; uint32_t x60; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x61; uint32_t x62; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x81; uint32_t x82; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x83; uint32_t x84; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x85; uint32_t x86; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x87; uint32_t x88; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x89; uint32_t x90; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x91; uint32_t x92; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x93; uint32_t x94; uint32_t x95; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x96; uint32_t x97; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x98; uint32_t x99; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x100; uint32_t x101; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x102; uint32_t x103; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x104; uint32_t x105; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x106; uint32_t x107; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x108; uint32_t x109; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x110; uint32_t x111; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x112; uint32_t x113; uint32_t x114; uint32_t x115; uint32_t x116; uint32_t x117; uint32_t x118; uint32_t x119; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x120; uint32_t x121; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x122; uint32_t x123; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x124; uint32_t x125; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x126; uint32_t x127; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x128; uint32_t x129; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x130; uint32_t x131; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x132; uint32_t x133; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x134; uint32_t x135; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; uint32_t x149; uint32_t x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x155; uint32_t x156; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x157; uint32_t x158; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x159; uint32_t x160; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x161; uint32_t x162; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x163; uint32_t x164; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x165; uint32_t x166; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x167; uint32_t x168; uint32_t x169; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x170; uint32_t x171; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x172; uint32_t x173; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x174; uint32_t x175; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x176; uint32_t x177; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x178; uint32_t x179; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x180; uint32_t x181; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x182; uint32_t x183; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x184; uint32_t x185; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x186; uint32_t x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x194; uint32_t x195; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x196; uint32_t x197; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x198; uint32_t x199; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x200; uint32_t x201; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x202; uint32_t x203; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x204; uint32_t x205; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x206; uint32_t x207; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x208; uint32_t x209; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x229; uint32_t x230; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x231; uint32_t x232; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x233; uint32_t x234; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x235; uint32_t x236; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x237; uint32_t x238; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x239; uint32_t x240; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x241; uint32_t x242; uint32_t x243; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x244; uint32_t x245; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x246; uint32_t x247; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x248; uint32_t x249; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x250; uint32_t x251; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x252; uint32_t x253; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x254; uint32_t x255; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x256; uint32_t x257; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x258; uint32_t x259; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x260; uint32_t x261; uint32_t x262; uint32_t x263; uint32_t x264; uint32_t x265; uint32_t x266; uint32_t x267; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x268; uint32_t x269; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x270; uint32_t x271; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x272; uint32_t x273; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x274; uint32_t x275; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x276; uint32_t x277; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x278; uint32_t x279; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x280; uint32_t x281; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x282; uint32_t x283; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x303; uint32_t x304; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x305; uint32_t x306; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x307; uint32_t x308; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x309; uint32_t x310; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x311; uint32_t x312; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x313; uint32_t x314; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x315; uint32_t x316; uint32_t x317; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x318; uint32_t x319; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x320; uint32_t x321; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x322; uint32_t x323; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x324; uint32_t x325; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x326; uint32_t x327; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x328; uint32_t x329; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x330; uint32_t x331; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x332; uint32_t x333; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x334; uint32_t x335; uint32_t x336; uint32_t x337; uint32_t x338; uint32_t x339; uint32_t x340; uint32_t x341; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x342; uint32_t x343; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x344; uint32_t x345; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x346; uint32_t x347; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x348; uint32_t x349; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x350; uint32_t x351; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x352; uint32_t x353; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x354; uint32_t x355; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x356; uint32_t x357; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x358; uint32_t x359; uint32_t x360; uint32_t x361; uint32_t x362; uint32_t x363; uint32_t x364; uint32_t x365; uint32_t x366; uint32_t x367; uint32_t x368; uint32_t x369; uint32_t x370; uint32_t x371; uint32_t x372; uint32_t x373; uint32_t x374; uint32_t x375; uint32_t x376; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x377; uint32_t x378; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x379; uint32_t x380; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x381; uint32_t x382; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x383; uint32_t x384; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x385; uint32_t x386; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x387; uint32_t x388; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x389; uint32_t x390; uint32_t x391; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x392; uint32_t x393; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x394; uint32_t x395; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x396; uint32_t x397; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x398; uint32_t x399; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x400; uint32_t x401; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x402; uint32_t x403; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x404; uint32_t x405; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x406; uint32_t x407; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x416; uint32_t x417; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x418; uint32_t x419; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x420; uint32_t x421; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x422; uint32_t x423; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x424; uint32_t x425; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x426; uint32_t x427; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x428; uint32_t x429; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x430; uint32_t x431; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; uint32_t x437; uint32_t x438; uint32_t x439; uint32_t x440; uint32_t x441; uint32_t x442; uint32_t x443; uint32_t x444; uint32_t x445; uint32_t x446; uint32_t x447; uint32_t x448; uint32_t x449; uint32_t x450; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x451; uint32_t x452; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x453; uint32_t x454; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x455; uint32_t x456; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x457; uint32_t x458; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x459; uint32_t x460; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x461; uint32_t x462; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x463; uint32_t x464; uint32_t x465; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x466; uint32_t x467; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x468; uint32_t x469; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x470; uint32_t x471; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x472; uint32_t x473; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x474; uint32_t x475; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x476; uint32_t x477; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x478; uint32_t x479; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x480; uint32_t x481; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x490; uint32_t x491; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x492; uint32_t x493; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x494; uint32_t x495; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x496; uint32_t x497; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x498; uint32_t x499; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x500; uint32_t x501; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x502; uint32_t x503; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x504; uint32_t x505; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; uint32_t x522; uint32_t x523; uint32_t x524; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x525; uint32_t x526; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x527; uint32_t x528; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x529; uint32_t x530; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x531; uint32_t x532; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x533; uint32_t x534; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x535; uint32_t x536; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x537; uint32_t x538; uint32_t x539; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x540; uint32_t x541; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x542; uint32_t x543; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x544; uint32_t x545; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x546; uint32_t x547; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x548; uint32_t x549; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x550; uint32_t x551; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x552; uint32_t x553; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x554; uint32_t x555; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x556; uint32_t x557; uint32_t x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x564; uint32_t x565; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x566; uint32_t x567; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x568; uint32_t x569; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x570; uint32_t x571; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x572; uint32_t x573; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x574; uint32_t x575; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x576; uint32_t x577; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x578; uint32_t x579; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x580; uint32_t x581; uint32_t x582; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x583; uint32_t x584; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x585; uint32_t x586; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x587; uint32_t x588; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x589; uint32_t x590; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x591; uint32_t x592; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x593; uint32_t x594; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x595; uint32_t x596; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x597; uint32_t x598; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x599; uint32_t x600; uint32_t x601; uint32_t x602; uint32_t x603; uint32_t x604; uint32_t x605; uint32_t x606; uint32_t x607; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[0]); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x9, &x10, x8, (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x11, &x12, x8, (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x13, &x14, x8, (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x15, &x16, x8, (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x17, &x18, x8, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x19, &x20, x8, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x21, &x22, x8, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x23, &x24, x8, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x25, &x26, 0x0, x24, x21); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x27, &x28, x26, x22, x19); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x29, &x30, x28, x20, x17); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x31, &x32, x30, x18, x15); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x33, &x34, x32, x16, x13); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x35, &x36, x34, x14, x11); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x37, &x38, x36, x12, x9); x39 = (x38 + x10); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x40, &x41, x23, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x42, &x43, x40, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x44, &x45, x40, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x46, &x47, 0x0, x23, x44); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x48, &x49, x47, x25, x45); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x50, &x51, x49, x27, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x52, &x53, x51, x29, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x54, &x55, x53, x31, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x56, &x57, x55, x33, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x58, &x59, x57, x35, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x60, &x61, x59, x37, x42); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x62, &x63, x61, x39, x43); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x64, &x65, x1, (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x66, &x67, x1, (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x68, &x69, x1, (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x70, &x71, x1, (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x72, &x73, x1, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x74, &x75, x1, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x76, &x77, x1, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x78, &x79, x1, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x80, &x81, 0x0, x79, x76); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x82, &x83, x81, x77, x74); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x84, &x85, x83, x75, x72); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x86, &x87, x85, x73, x70); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x88, &x89, x87, x71, x68); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x90, &x91, x89, x69, x66); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x92, &x93, x91, x67, x64); x94 = (x93 + x65); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x95, &x96, 0x0, x48, x78); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x97, &x98, x96, x50, x80); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x99, &x100, x98, x52, x82); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x101, &x102, x100, x54, x84); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x103, &x104, x102, x56, x86); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x105, &x106, x104, x58, x88); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x107, &x108, x106, x60, x90); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x109, &x110, x108, x62, x92); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x111, &x112, x110, x63, x94); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x113, &x114, x95, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x115, &x116, x113, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x117, &x118, x113, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x119, &x120, 0x0, x95, x117); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x121, &x122, x120, x97, x118); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x123, &x124, x122, x99, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x125, &x126, x124, x101, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x127, &x128, x126, x103, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x129, &x130, x128, x105, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x131, &x132, x130, x107, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x133, &x134, x132, x109, x115); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x135, &x136, x134, x111, x116); x137 = ((uint32_t)x136 + x112); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x138, &x139, x2, (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x140, &x141, x2, (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x142, &x143, x2, (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x144, &x145, x2, (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x146, &x147, x2, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x148, &x149, x2, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x150, &x151, x2, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x152, &x153, x2, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x154, &x155, 0x0, x153, x150); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x156, &x157, x155, x151, x148); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x158, &x159, x157, x149, x146); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x160, &x161, x159, x147, x144); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x162, &x163, x161, x145, x142); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x164, &x165, x163, x143, x140); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x166, &x167, x165, x141, x138); x168 = (x167 + x139); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x169, &x170, 0x0, x121, x152); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x171, &x172, x170, x123, x154); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x173, &x174, x172, x125, x156); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x175, &x176, x174, x127, x158); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x177, &x178, x176, x129, x160); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x179, &x180, x178, x131, x162); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x181, &x182, x180, x133, x164); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x183, &x184, x182, x135, x166); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x185, &x186, x184, x137, x168); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x187, &x188, x169, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x189, &x190, x187, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x191, &x192, x187, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x193, &x194, 0x0, x169, x191); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x195, &x196, x194, x171, x192); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x197, &x198, x196, x173, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x199, &x200, x198, x175, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x201, &x202, x200, x177, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x203, &x204, x202, x179, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x205, &x206, x204, x181, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x207, &x208, x206, x183, x189); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x209, &x210, x208, x185, x190); x211 = ((uint32_t)x210 + x186); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x212, &x213, x3, (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x214, &x215, x3, (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x216, &x217, x3, (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x218, &x219, x3, (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x220, &x221, x3, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x222, &x223, x3, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x224, &x225, x3, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x226, &x227, x3, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x228, &x229, 0x0, x227, x224); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x230, &x231, x229, x225, x222); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x232, &x233, x231, x223, x220); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x234, &x235, x233, x221, x218); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x236, &x237, x235, x219, x216); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x238, &x239, x237, x217, x214); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x240, &x241, x239, x215, x212); x242 = (x241 + x213); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x243, &x244, 0x0, x195, x226); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x245, &x246, x244, x197, x228); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x247, &x248, x246, x199, x230); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x249, &x250, x248, x201, x232); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x251, &x252, x250, x203, x234); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x253, &x254, x252, x205, x236); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x255, &x256, x254, x207, x238); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x257, &x258, x256, x209, x240); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x259, &x260, x258, x211, x242); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x261, &x262, x243, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x263, &x264, x261, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x265, &x266, x261, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x267, &x268, 0x0, x243, x265); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x269, &x270, x268, x245, x266); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x271, &x272, x270, x247, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x273, &x274, x272, x249, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x275, &x276, x274, x251, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x277, &x278, x276, x253, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x279, &x280, x278, x255, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x281, &x282, x280, x257, x263); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x283, &x284, x282, x259, x264); x285 = ((uint32_t)x284 + x260); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x286, &x287, x4, (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x288, &x289, x4, (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x290, &x291, x4, (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x292, &x293, x4, (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x294, &x295, x4, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x296, &x297, x4, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x298, &x299, x4, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x300, &x301, x4, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x302, &x303, 0x0, x301, x298); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x304, &x305, x303, x299, x296); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x306, &x307, x305, x297, x294); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x308, &x309, x307, x295, x292); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x310, &x311, x309, x293, x290); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x312, &x313, x311, x291, x288); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x314, &x315, x313, x289, x286); x316 = (x315 + x287); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x317, &x318, 0x0, x269, x300); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x319, &x320, x318, x271, x302); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x321, &x322, x320, x273, x304); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x323, &x324, x322, x275, x306); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x325, &x326, x324, x277, x308); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x327, &x328, x326, x279, x310); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x329, &x330, x328, x281, x312); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x331, &x332, x330, x283, x314); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x333, &x334, x332, x285, x316); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x335, &x336, x317, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x337, &x338, x335, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x339, &x340, x335, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x341, &x342, 0x0, x317, x339); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x343, &x344, x342, x319, x340); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x345, &x346, x344, x321, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x347, &x348, x346, x323, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x349, &x350, x348, x325, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x351, &x352, x350, x327, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x353, &x354, x352, x329, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x355, &x356, x354, x331, x337); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x357, &x358, x356, x333, x338); x359 = ((uint32_t)x358 + x334); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x360, &x361, x5, (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x362, &x363, x5, (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x364, &x365, x5, (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x366, &x367, x5, (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x368, &x369, x5, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x370, &x371, x5, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x372, &x373, x5, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x374, &x375, x5, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x376, &x377, 0x0, x375, x372); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x378, &x379, x377, x373, x370); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x380, &x381, x379, x371, x368); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x382, &x383, x381, x369, x366); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x384, &x385, x383, x367, x364); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x386, &x387, x385, x365, x362); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x388, &x389, x387, x363, x360); x390 = (x389 + x361); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x391, &x392, 0x0, x343, x374); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x393, &x394, x392, x345, x376); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x395, &x396, x394, x347, x378); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x397, &x398, x396, x349, x380); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x399, &x400, x398, x351, x382); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x401, &x402, x400, x353, x384); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x403, &x404, x402, x355, x386); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x405, &x406, x404, x357, x388); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x407, &x408, x406, x359, x390); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x409, &x410, x391, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x411, &x412, x409, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x413, &x414, x409, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x415, &x416, 0x0, x391, x413); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x417, &x418, x416, x393, x414); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x419, &x420, x418, x395, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x421, &x422, x420, x397, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x423, &x424, x422, x399, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x425, &x426, x424, x401, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x427, &x428, x426, x403, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x429, &x430, x428, x405, x411); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x431, &x432, x430, x407, x412); x433 = ((uint32_t)x432 + x408); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x434, &x435, x6, (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x436, &x437, x6, (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x438, &x439, x6, (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x440, &x441, x6, (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x442, &x443, x6, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x444, &x445, x6, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x446, &x447, x6, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x448, &x449, x6, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x450, &x451, 0x0, x449, x446); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x452, &x453, x451, x447, x444); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x454, &x455, x453, x445, x442); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x456, &x457, x455, x443, x440); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x458, &x459, x457, x441, x438); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x460, &x461, x459, x439, x436); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x462, &x463, x461, x437, x434); x464 = (x463 + x435); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x465, &x466, 0x0, x417, x448); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x467, &x468, x466, x419, x450); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x469, &x470, x468, x421, x452); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x471, &x472, x470, x423, x454); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x473, &x474, x472, x425, x456); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x475, &x476, x474, x427, x458); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x477, &x478, x476, x429, x460); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x479, &x480, x478, x431, x462); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x481, &x482, x480, x433, x464); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x483, &x484, x465, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x485, &x486, x483, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x487, &x488, x483, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x489, &x490, 0x0, x465, x487); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x491, &x492, x490, x467, x488); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x493, &x494, x492, x469, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x495, &x496, x494, x471, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x497, &x498, x496, x473, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x499, &x500, x498, x475, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x501, &x502, x500, x477, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x503, &x504, x502, x479, x485); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x505, &x506, x504, x481, x486); x507 = ((uint32_t)x506 + x482); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x508, &x509, x7, (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x510, &x511, x7, (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x512, &x513, x7, (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x514, &x515, x7, (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x516, &x517, x7, (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x518, &x519, x7, (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x520, &x521, x7, (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x522, &x523, x7, (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x524, &x525, 0x0, x523, x520); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x526, &x527, x525, x521, x518); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x528, &x529, x527, x519, x516); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x530, &x531, x529, x517, x514); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x532, &x533, x531, x515, x512); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x534, &x535, x533, x513, x510); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x536, &x537, x535, x511, x508); x538 = (x537 + x509); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x539, &x540, 0x0, x491, x522); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x541, &x542, x540, x493, x524); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x543, &x544, x542, x495, x526); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x545, &x546, x544, x497, x528); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x547, &x548, x546, x499, x530); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x549, &x550, x548, x501, x532); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x551, &x552, x550, x503, x534); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x553, &x554, x552, x505, x536); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x555, &x556, x554, x507, x538); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x557, &x558, x539, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x559, &x560, x557, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x561, &x562, x557, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x563, &x564, 0x0, x539, x561); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x565, &x566, x564, x541, x562); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x567, &x568, x566, x543, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x569, &x570, x568, x545, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x571, &x572, x570, x547, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x573, &x574, x572, x549, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x575, &x576, x574, x551, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x577, &x578, x576, x553, x559); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x579, &x580, x578, x555, x560); x581 = ((uint32_t)x580 + x556); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x582, &x583, 0x0, x565, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x584, &x585, x583, x567, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x586, &x587, x585, x569, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x588, &x589, x587, x571, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x590, &x591, x589, x573, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x592, &x593, x591, x575, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x594, &x595, x593, x577, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x596, &x597, x595, x579, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x598, &x599, x597, x581, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x600, x599, x582, x565); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x601, x599, x584, x567); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x602, x599, x586, x569); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x603, x599, x588, x571); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x604, x599, x590, x573); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x605, x599, x592, x575); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x606, x599, x594, x577); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x607, x599, x596, x579); out1[0] = x600; out1[1] = x601; out1[2] = x602; out1[3] = x603; out1[4] = x604; out1[5] = x605; out1[6] = x606; out1[7] = x607; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square squares a field element in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg1)) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square( uint32_t out1[8], const uint32_t arg1[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x26; uint32_t x27; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x28; uint32_t x29; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x30; uint32_t x31; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x32; uint32_t x33; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x34; uint32_t x35; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x36; uint32_t x37; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x47; uint32_t x48; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x49; uint32_t x50; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x51; uint32_t x52; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x53; uint32_t x54; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x55; uint32_t x56; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x57; uint32_t x58; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x59; uint32_t x60; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x61; uint32_t x62; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x63; uint32_t x64; uint32_t x65; uint32_t x66; uint32_t x67; uint32_t x68; uint32_t x69; uint32_t x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; uint32_t x78; uint32_t x79; uint32_t x80; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x81; uint32_t x82; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x83; uint32_t x84; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x85; uint32_t x86; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x87; uint32_t x88; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x89; uint32_t x90; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x91; uint32_t x92; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x93; uint32_t x94; uint32_t x95; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x96; uint32_t x97; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x98; uint32_t x99; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x100; uint32_t x101; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x102; uint32_t x103; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x104; uint32_t x105; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x106; uint32_t x107; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x108; uint32_t x109; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x110; uint32_t x111; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x112; uint32_t x113; uint32_t x114; uint32_t x115; uint32_t x116; uint32_t x117; uint32_t x118; uint32_t x119; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x120; uint32_t x121; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x122; uint32_t x123; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x124; uint32_t x125; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x126; uint32_t x127; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x128; uint32_t x129; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x130; uint32_t x131; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x132; uint32_t x133; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x134; uint32_t x135; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; uint32_t x142; uint32_t x143; uint32_t x144; uint32_t x145; uint32_t x146; uint32_t x147; uint32_t x148; uint32_t x149; uint32_t x150; uint32_t x151; uint32_t x152; uint32_t x153; uint32_t x154; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x155; uint32_t x156; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x157; uint32_t x158; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x159; uint32_t x160; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x161; uint32_t x162; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x163; uint32_t x164; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x165; uint32_t x166; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x167; uint32_t x168; uint32_t x169; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x170; uint32_t x171; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x172; uint32_t x173; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x174; uint32_t x175; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x176; uint32_t x177; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x178; uint32_t x179; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x180; uint32_t x181; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x182; uint32_t x183; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x184; uint32_t x185; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x186; uint32_t x187; uint32_t x188; uint32_t x189; uint32_t x190; uint32_t x191; uint32_t x192; uint32_t x193; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x194; uint32_t x195; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x196; uint32_t x197; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x198; uint32_t x199; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x200; uint32_t x201; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x202; uint32_t x203; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x204; uint32_t x205; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x206; uint32_t x207; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x208; uint32_t x209; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x210; uint32_t x211; uint32_t x212; uint32_t x213; uint32_t x214; uint32_t x215; uint32_t x216; uint32_t x217; uint32_t x218; uint32_t x219; uint32_t x220; uint32_t x221; uint32_t x222; uint32_t x223; uint32_t x224; uint32_t x225; uint32_t x226; uint32_t x227; uint32_t x228; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x229; uint32_t x230; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x231; uint32_t x232; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x233; uint32_t x234; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x235; uint32_t x236; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x237; uint32_t x238; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x239; uint32_t x240; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x241; uint32_t x242; uint32_t x243; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x244; uint32_t x245; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x246; uint32_t x247; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x248; uint32_t x249; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x250; uint32_t x251; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x252; uint32_t x253; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x254; uint32_t x255; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x256; uint32_t x257; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x258; uint32_t x259; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x260; uint32_t x261; uint32_t x262; uint32_t x263; uint32_t x264; uint32_t x265; uint32_t x266; uint32_t x267; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x268; uint32_t x269; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x270; uint32_t x271; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x272; uint32_t x273; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x274; uint32_t x275; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x276; uint32_t x277; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x278; uint32_t x279; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x280; uint32_t x281; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x282; uint32_t x283; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x284; uint32_t x285; uint32_t x286; uint32_t x287; uint32_t x288; uint32_t x289; uint32_t x290; uint32_t x291; uint32_t x292; uint32_t x293; uint32_t x294; uint32_t x295; uint32_t x296; uint32_t x297; uint32_t x298; uint32_t x299; uint32_t x300; uint32_t x301; uint32_t x302; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x303; uint32_t x304; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x305; uint32_t x306; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x307; uint32_t x308; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x309; uint32_t x310; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x311; uint32_t x312; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x313; uint32_t x314; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x315; uint32_t x316; uint32_t x317; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x318; uint32_t x319; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x320; uint32_t x321; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x322; uint32_t x323; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x324; uint32_t x325; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x326; uint32_t x327; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x328; uint32_t x329; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x330; uint32_t x331; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x332; uint32_t x333; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x334; uint32_t x335; uint32_t x336; uint32_t x337; uint32_t x338; uint32_t x339; uint32_t x340; uint32_t x341; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x342; uint32_t x343; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x344; uint32_t x345; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x346; uint32_t x347; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x348; uint32_t x349; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x350; uint32_t x351; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x352; uint32_t x353; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x354; uint32_t x355; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x356; uint32_t x357; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x358; uint32_t x359; uint32_t x360; uint32_t x361; uint32_t x362; uint32_t x363; uint32_t x364; uint32_t x365; uint32_t x366; uint32_t x367; uint32_t x368; uint32_t x369; uint32_t x370; uint32_t x371; uint32_t x372; uint32_t x373; uint32_t x374; uint32_t x375; uint32_t x376; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x377; uint32_t x378; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x379; uint32_t x380; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x381; uint32_t x382; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x383; uint32_t x384; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x385; uint32_t x386; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x387; uint32_t x388; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x389; uint32_t x390; uint32_t x391; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x392; uint32_t x393; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x394; uint32_t x395; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x396; uint32_t x397; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x398; uint32_t x399; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x400; uint32_t x401; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x402; uint32_t x403; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x404; uint32_t x405; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x406; uint32_t x407; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x408; uint32_t x409; uint32_t x410; uint32_t x411; uint32_t x412; uint32_t x413; uint32_t x414; uint32_t x415; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x416; uint32_t x417; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x418; uint32_t x419; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x420; uint32_t x421; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x422; uint32_t x423; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x424; uint32_t x425; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x426; uint32_t x427; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x428; uint32_t x429; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x430; uint32_t x431; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x432; uint32_t x433; uint32_t x434; uint32_t x435; uint32_t x436; uint32_t x437; uint32_t x438; uint32_t x439; uint32_t x440; uint32_t x441; uint32_t x442; uint32_t x443; uint32_t x444; uint32_t x445; uint32_t x446; uint32_t x447; uint32_t x448; uint32_t x449; uint32_t x450; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x451; uint32_t x452; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x453; uint32_t x454; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x455; uint32_t x456; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x457; uint32_t x458; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x459; uint32_t x460; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x461; uint32_t x462; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x463; uint32_t x464; uint32_t x465; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x466; uint32_t x467; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x468; uint32_t x469; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x470; uint32_t x471; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x472; uint32_t x473; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x474; uint32_t x475; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x476; uint32_t x477; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x478; uint32_t x479; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x480; uint32_t x481; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x482; uint32_t x483; uint32_t x484; uint32_t x485; uint32_t x486; uint32_t x487; uint32_t x488; uint32_t x489; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x490; uint32_t x491; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x492; uint32_t x493; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x494; uint32_t x495; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x496; uint32_t x497; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x498; uint32_t x499; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x500; uint32_t x501; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x502; uint32_t x503; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x504; uint32_t x505; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x506; uint32_t x507; uint32_t x508; uint32_t x509; uint32_t x510; uint32_t x511; uint32_t x512; uint32_t x513; uint32_t x514; uint32_t x515; uint32_t x516; uint32_t x517; uint32_t x518; uint32_t x519; uint32_t x520; uint32_t x521; uint32_t x522; uint32_t x523; uint32_t x524; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x525; uint32_t x526; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x527; uint32_t x528; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x529; uint32_t x530; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x531; uint32_t x532; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x533; uint32_t x534; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x535; uint32_t x536; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x537; uint32_t x538; uint32_t x539; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x540; uint32_t x541; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x542; uint32_t x543; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x544; uint32_t x545; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x546; uint32_t x547; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x548; uint32_t x549; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x550; uint32_t x551; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x552; uint32_t x553; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x554; uint32_t x555; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x556; uint32_t x557; uint32_t x558; uint32_t x559; uint32_t x560; uint32_t x561; uint32_t x562; uint32_t x563; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x564; uint32_t x565; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x566; uint32_t x567; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x568; uint32_t x569; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x570; uint32_t x571; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x572; uint32_t x573; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x574; uint32_t x575; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x576; uint32_t x577; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x578; uint32_t x579; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x580; uint32_t x581; uint32_t x582; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x583; uint32_t x584; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x585; uint32_t x586; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x587; uint32_t x588; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x589; uint32_t x590; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x591; uint32_t x592; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x593; uint32_t x594; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x595; uint32_t x596; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x597; uint32_t x598; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x599; uint32_t x600; uint32_t x601; uint32_t x602; uint32_t x603; uint32_t x604; uint32_t x605; uint32_t x606; uint32_t x607; x1 = (arg1[1]); x2 = (arg1[2]); x3 = (arg1[3]); x4 = (arg1[4]); x5 = (arg1[5]); x6 = (arg1[6]); x7 = (arg1[7]); x8 = (arg1[0]); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x9, &x10, x8, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x11, &x12, x8, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x13, &x14, x8, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x15, &x16, x8, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x17, &x18, x8, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x19, &x20, x8, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x21, &x22, x8, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x23, &x24, x8, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x25, &x26, 0x0, x24, x21); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x27, &x28, x26, x22, x19); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x29, &x30, x28, x20, x17); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x31, &x32, x30, x18, x15); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x33, &x34, x32, x16, x13); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x35, &x36, x34, x14, x11); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x37, &x38, x36, x12, x9); x39 = (x38 + x10); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x40, &x41, x23, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x42, &x43, x40, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x44, &x45, x40, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x46, &x47, 0x0, x23, x44); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x48, &x49, x47, x25, x45); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x50, &x51, x49, x27, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x52, &x53, x51, x29, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x54, &x55, x53, x31, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x56, &x57, x55, x33, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x58, &x59, x57, x35, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x60, &x61, x59, x37, x42); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x62, &x63, x61, x39, x43); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x64, &x65, x1, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x66, &x67, x1, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x68, &x69, x1, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x70, &x71, x1, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x72, &x73, x1, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x74, &x75, x1, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x76, &x77, x1, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x78, &x79, x1, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x80, &x81, 0x0, x79, x76); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x82, &x83, x81, x77, x74); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x84, &x85, x83, x75, x72); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x86, &x87, x85, x73, x70); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x88, &x89, x87, x71, x68); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x90, &x91, x89, x69, x66); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x92, &x93, x91, x67, x64); x94 = (x93 + x65); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x95, &x96, 0x0, x48, x78); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x97, &x98, x96, x50, x80); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x99, &x100, x98, x52, x82); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x101, &x102, x100, x54, x84); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x103, &x104, x102, x56, x86); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x105, &x106, x104, x58, x88); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x107, &x108, x106, x60, x90); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x109, &x110, x108, x62, x92); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x111, &x112, x110, x63, x94); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x113, &x114, x95, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x115, &x116, x113, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x117, &x118, x113, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x119, &x120, 0x0, x95, x117); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x121, &x122, x120, x97, x118); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x123, &x124, x122, x99, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x125, &x126, x124, x101, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x127, &x128, x126, x103, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x129, &x130, x128, x105, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x131, &x132, x130, x107, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x133, &x134, x132, x109, x115); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x135, &x136, x134, x111, x116); x137 = ((uint32_t)x136 + x112); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x138, &x139, x2, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x140, &x141, x2, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x142, &x143, x2, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x144, &x145, x2, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x146, &x147, x2, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x148, &x149, x2, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x150, &x151, x2, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x152, &x153, x2, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x154, &x155, 0x0, x153, x150); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x156, &x157, x155, x151, x148); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x158, &x159, x157, x149, x146); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x160, &x161, x159, x147, x144); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x162, &x163, x161, x145, x142); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x164, &x165, x163, x143, x140); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x166, &x167, x165, x141, x138); x168 = (x167 + x139); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x169, &x170, 0x0, x121, x152); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x171, &x172, x170, x123, x154); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x173, &x174, x172, x125, x156); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x175, &x176, x174, x127, x158); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x177, &x178, x176, x129, x160); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x179, &x180, x178, x131, x162); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x181, &x182, x180, x133, x164); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x183, &x184, x182, x135, x166); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x185, &x186, x184, x137, x168); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x187, &x188, x169, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x189, &x190, x187, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x191, &x192, x187, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x193, &x194, 0x0, x169, x191); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x195, &x196, x194, x171, x192); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x197, &x198, x196, x173, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x199, &x200, x198, x175, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x201, &x202, x200, x177, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x203, &x204, x202, x179, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x205, &x206, x204, x181, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x207, &x208, x206, x183, x189); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x209, &x210, x208, x185, x190); x211 = ((uint32_t)x210 + x186); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x212, &x213, x3, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x214, &x215, x3, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x216, &x217, x3, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x218, &x219, x3, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x220, &x221, x3, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x222, &x223, x3, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x224, &x225, x3, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x226, &x227, x3, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x228, &x229, 0x0, x227, x224); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x230, &x231, x229, x225, x222); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x232, &x233, x231, x223, x220); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x234, &x235, x233, x221, x218); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x236, &x237, x235, x219, x216); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x238, &x239, x237, x217, x214); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x240, &x241, x239, x215, x212); x242 = (x241 + x213); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x243, &x244, 0x0, x195, x226); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x245, &x246, x244, x197, x228); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x247, &x248, x246, x199, x230); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x249, &x250, x248, x201, x232); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x251, &x252, x250, x203, x234); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x253, &x254, x252, x205, x236); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x255, &x256, x254, x207, x238); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x257, &x258, x256, x209, x240); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x259, &x260, x258, x211, x242); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x261, &x262, x243, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x263, &x264, x261, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x265, &x266, x261, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x267, &x268, 0x0, x243, x265); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x269, &x270, x268, x245, x266); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x271, &x272, x270, x247, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x273, &x274, x272, x249, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x275, &x276, x274, x251, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x277, &x278, x276, x253, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x279, &x280, x278, x255, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x281, &x282, x280, x257, x263); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x283, &x284, x282, x259, x264); x285 = ((uint32_t)x284 + x260); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x286, &x287, x4, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x288, &x289, x4, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x290, &x291, x4, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x292, &x293, x4, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x294, &x295, x4, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x296, &x297, x4, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x298, &x299, x4, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x300, &x301, x4, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x302, &x303, 0x0, x301, x298); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x304, &x305, x303, x299, x296); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x306, &x307, x305, x297, x294); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x308, &x309, x307, x295, x292); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x310, &x311, x309, x293, x290); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x312, &x313, x311, x291, x288); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x314, &x315, x313, x289, x286); x316 = (x315 + x287); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x317, &x318, 0x0, x269, x300); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x319, &x320, x318, x271, x302); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x321, &x322, x320, x273, x304); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x323, &x324, x322, x275, x306); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x325, &x326, x324, x277, x308); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x327, &x328, x326, x279, x310); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x329, &x330, x328, x281, x312); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x331, &x332, x330, x283, x314); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x333, &x334, x332, x285, x316); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x335, &x336, x317, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x337, &x338, x335, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x339, &x340, x335, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x341, &x342, 0x0, x317, x339); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x343, &x344, x342, x319, x340); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x345, &x346, x344, x321, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x347, &x348, x346, x323, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x349, &x350, x348, x325, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x351, &x352, x350, x327, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x353, &x354, x352, x329, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x355, &x356, x354, x331, x337); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x357, &x358, x356, x333, x338); x359 = ((uint32_t)x358 + x334); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x360, &x361, x5, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x362, &x363, x5, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x364, &x365, x5, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x366, &x367, x5, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x368, &x369, x5, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x370, &x371, x5, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x372, &x373, x5, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x374, &x375, x5, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x376, &x377, 0x0, x375, x372); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x378, &x379, x377, x373, x370); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x380, &x381, x379, x371, x368); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x382, &x383, x381, x369, x366); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x384, &x385, x383, x367, x364); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x386, &x387, x385, x365, x362); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x388, &x389, x387, x363, x360); x390 = (x389 + x361); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x391, &x392, 0x0, x343, x374); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x393, &x394, x392, x345, x376); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x395, &x396, x394, x347, x378); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x397, &x398, x396, x349, x380); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x399, &x400, x398, x351, x382); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x401, &x402, x400, x353, x384); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x403, &x404, x402, x355, x386); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x405, &x406, x404, x357, x388); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x407, &x408, x406, x359, x390); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x409, &x410, x391, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x411, &x412, x409, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x413, &x414, x409, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x415, &x416, 0x0, x391, x413); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x417, &x418, x416, x393, x414); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x419, &x420, x418, x395, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x421, &x422, x420, x397, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x423, &x424, x422, x399, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x425, &x426, x424, x401, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x427, &x428, x426, x403, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x429, &x430, x428, x405, x411); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x431, &x432, x430, x407, x412); x433 = ((uint32_t)x432 + x408); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x434, &x435, x6, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x436, &x437, x6, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x438, &x439, x6, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x440, &x441, x6, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x442, &x443, x6, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x444, &x445, x6, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x446, &x447, x6, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x448, &x449, x6, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x450, &x451, 0x0, x449, x446); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x452, &x453, x451, x447, x444); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x454, &x455, x453, x445, x442); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x456, &x457, x455, x443, x440); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x458, &x459, x457, x441, x438); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x460, &x461, x459, x439, x436); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x462, &x463, x461, x437, x434); x464 = (x463 + x435); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x465, &x466, 0x0, x417, x448); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x467, &x468, x466, x419, x450); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x469, &x470, x468, x421, x452); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x471, &x472, x470, x423, x454); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x473, &x474, x472, x425, x456); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x475, &x476, x474, x427, x458); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x477, &x478, x476, x429, x460); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x479, &x480, x478, x431, x462); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x481, &x482, x480, x433, x464); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x483, &x484, x465, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x485, &x486, x483, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x487, &x488, x483, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x489, &x490, 0x0, x465, x487); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x491, &x492, x490, x467, x488); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x493, &x494, x492, x469, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x495, &x496, x494, x471, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x497, &x498, x496, x473, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x499, &x500, x498, x475, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x501, &x502, x500, x477, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x503, &x504, x502, x479, x485); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x505, &x506, x504, x481, x486); x507 = ((uint32_t)x506 + x482); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x508, &x509, x7, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x510, &x511, x7, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x512, &x513, x7, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x514, &x515, x7, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x516, &x517, x7, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x518, &x519, x7, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x520, &x521, x7, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x522, &x523, x7, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x524, &x525, 0x0, x523, x520); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x526, &x527, x525, x521, x518); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x528, &x529, x527, x519, x516); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x530, &x531, x529, x517, x514); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x532, &x533, x531, x515, x512); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x534, &x535, x533, x513, x510); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x536, &x537, x535, x511, x508); x538 = (x537 + x509); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x539, &x540, 0x0, x491, x522); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x541, &x542, x540, x493, x524); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x543, &x544, x542, x495, x526); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x545, &x546, x544, x497, x528); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x547, &x548, x546, x499, x530); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x549, &x550, x548, x501, x532); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x551, &x552, x550, x503, x534); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x553, &x554, x552, x505, x536); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x555, &x556, x554, x507, x538); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x557, &x558, x539, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x559, &x560, x557, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x561, &x562, x557, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x563, &x564, 0x0, x539, x561); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x565, &x566, x564, x541, x562); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x567, &x568, x566, x543, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x569, &x570, x568, x545, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x571, &x572, x570, x547, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x573, &x574, x572, x549, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x575, &x576, x574, x551, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x577, &x578, x576, x553, x559); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x579, &x580, x578, x555, x560); x581 = ((uint32_t)x580 + x556); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x582, &x583, 0x0, x565, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x584, &x585, x583, x567, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x586, &x587, x585, x569, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x588, &x589, x587, x571, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x590, &x591, x589, x573, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x592, &x593, x591, x575, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x594, &x595, x593, x577, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x596, &x597, x595, x579, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x598, &x599, x597, x581, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x600, x599, x582, x565); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x601, x599, x584, x567); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x602, x599, x586, x569); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x603, x599, x588, x571); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x604, x599, x590, x573); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x605, x599, x592, x575); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x606, x599, x594, x577); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x607, x599, x596, x579); out1[0] = x600; out1[1] = x601; out1[2] = x602; out1[3] = x603; out1[4] = x604; out1[5] = x605; out1[6] = x606; out1[7] = x607; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add adds two field elements in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) + eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add( uint32_t out1[8], const uint32_t arg1[8], const uint32_t arg2[8]) { uint32_t x1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x2; uint32_t x3; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x4; uint32_t x5; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x6; uint32_t x7; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x8; uint32_t x9; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x10; uint32_t x11; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x12; uint32_t x13; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x14; uint32_t x15; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x16; uint32_t x17; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x18; uint32_t x19; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x20; uint32_t x21; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x22; uint32_t x23; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x24; uint32_t x25; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x26; uint32_t x27; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x28; uint32_t x29; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x30; uint32_t x31; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x32; uint32_t x33; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x17, &x18, 0x0, x1, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x19, &x20, x18, x3, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x21, &x22, x20, x5, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x23, &x24, x22, x7, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x25, &x26, x24, x9, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x27, &x28, x26, x11, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x29, &x30, x28, x13, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x31, &x32, x30, x15, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x33, &x34, x32, x16, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x35, x34, x17, x1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x36, x34, x19, x3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x37, x34, x21, x5); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x38, x34, x23, x7); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x39, x34, x25, x9); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x40, x34, x27, x11); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x41, x34, x29, x13); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x42, x34, x31, x15); out1[0] = x35; out1[1] = x36; out1[2] = x37; out1[3] = x38; out1[4] = x39; out1[5] = x40; out1[6] = x41; out1[7] = x42; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub subtracts two field elements in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * 0 ≤ eval arg2 < m * Postconditions: * eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) - eval (from_montgomery arg2)) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub( uint32_t out1[8], const uint32_t arg1[8], const uint32_t arg2[8]) { uint32_t x1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x2; uint32_t x3; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x4; uint32_t x5; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x6; uint32_t x7; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x8; uint32_t x9; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x10; uint32_t x11; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x12; uint32_t x13; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x14; uint32_t x15; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x16; uint32_t x17; uint32_t x18; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x19; uint32_t x20; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x21; uint32_t x22; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x23; uint32_t x24; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x25; uint32_t x26; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x27; uint32_t x28; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x29; uint32_t x30; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x31; uint32_t x32; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x33; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x1, &x2, 0x0, (arg1[0]), (arg2[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x3, &x4, x2, (arg1[1]), (arg2[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x5, &x6, x4, (arg1[2]), (arg2[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x7, &x8, x6, (arg1[3]), (arg2[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x9, &x10, x8, (arg1[4]), (arg2[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x11, &x12, x10, (arg1[5]), (arg2[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x13, &x14, x12, (arg1[6]), (arg2[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x15, &x16, x14, (arg1[7]), (arg2[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x17, x16, 0x0, UINT32_C(0xffffffff)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x18, &x19, 0x0, x1, (x17 & UINT16_C(0xc99))); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x20, &x21, x19, x3, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x22, &x23, x21, x5, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x24, &x25, x23, x7, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x26, &x27, x25, x9, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x28, &x29, x27, x11, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x30, &x31, x29, x13, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x32, &x33, x31, x15, (x17 & UINT32_C(0x80000000))); out1[0] = x18; out1[1] = x20; out1[2] = x22; out1[3] = x24; out1[4] = x26; out1[5] = x28; out1[6] = x30; out1[7] = x32; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp negates a field element in the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = -eval (from_montgomery arg1) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp( uint32_t out1[8], const uint32_t arg1[8]) { uint32_t x1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x2; uint32_t x3; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x4; uint32_t x5; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x6; uint32_t x7; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x8; uint32_t x9; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x10; uint32_t x11; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x12; uint32_t x13; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x14; uint32_t x15; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x16; uint32_t x17; uint32_t x18; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x19; uint32_t x20; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x21; uint32_t x22; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x23; uint32_t x24; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x25; uint32_t x26; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x27; uint32_t x28; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x29; uint32_t x30; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x31; uint32_t x32; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x33; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x1, &x2, 0x0, 0x0, (arg1[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x3, &x4, x2, 0x0, (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x5, &x6, x4, 0x0, (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x7, &x8, x6, 0x0, (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x9, &x10, x8, 0x0, (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x11, &x12, x10, 0x0, (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x13, &x14, x12, 0x0, (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x15, &x16, x14, 0x0, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x17, x16, 0x0, UINT32_C(0xffffffff)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x18, &x19, 0x0, x1, (x17 & UINT16_C(0xc99))); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x20, &x21, x19, x3, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x22, &x23, x21, x5, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x24, &x25, x23, x7, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x26, &x27, x25, x9, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x28, &x29, x27, x11, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x30, &x31, x29, x13, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x32, &x33, x31, x15, (x17 & UINT32_C(0x80000000))); out1[0] = x18; out1[1] = x20; out1[2] = x22; out1[3] = x24; out1[4] = x26; out1[5] = x28; out1[6] = x30; out1[7] = x32; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery translates a field element out of the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval out1 mod m = (eval arg1 * ((2^32)⁻¹ mod m)^8) mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery( uint32_t out1[8], const uint32_t arg1[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x9; uint32_t x10; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x11; uint32_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x19; uint32_t x20; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x21; uint32_t x22; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x23; uint32_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint32_t x28; uint32_t x29; uint32_t x30; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x31; uint32_t x32; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x33; uint32_t x34; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x43; uint32_t x44; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x45; uint32_t x46; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x55; uint32_t x56; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x57; uint32_t x58; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; uint32_t x64; uint32_t x65; uint32_t x66; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x67; uint32_t x68; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x69; uint32_t x70; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x71; uint32_t x72; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x73; uint32_t x74; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x75; uint32_t x76; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x77; uint32_t x78; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x79; uint32_t x80; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x81; uint32_t x82; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x83; uint32_t x84; uint32_t x85; uint32_t x86; uint32_t x87; uint32_t x88; uint32_t x89; uint32_t x90; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x91; uint32_t x92; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x93; uint32_t x94; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x95; uint32_t x96; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x97; uint32_t x98; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x99; uint32_t x100; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x101; uint32_t x102; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x103; uint32_t x104; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x105; uint32_t x106; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x107; uint32_t x108; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x109; uint32_t x110; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x111; uint32_t x112; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x113; uint32_t x114; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x115; uint32_t x116; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x117; uint32_t x118; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x119; uint32_t x120; uint32_t x121; uint32_t x122; uint32_t x123; uint32_t x124; uint32_t x125; uint32_t x126; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x127; uint32_t x128; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x129; uint32_t x130; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x131; uint32_t x132; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x133; uint32_t x134; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x135; uint32_t x136; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x137; uint32_t x138; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x139; uint32_t x140; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x141; uint32_t x142; uint32_t x143; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x144; uint32_t x145; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x146; uint32_t x147; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x148; uint32_t x149; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x150; uint32_t x151; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x152; uint32_t x153; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x154; uint32_t x155; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x156; uint32_t x157; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x158; uint32_t x159; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x160; uint32_t x161; uint32_t x162; uint32_t x163; uint32_t x164; uint32_t x165; uint32_t x166; uint32_t x167; uint32_t x168; x1 = (arg1[0]); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x2, &x3, x1, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x4, &x5, x2, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x6, &x7, x2, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x8, &x9, 0x0, x1, x6); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x10, &x11, 0x0, (x9 + x7), (arg1[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x12, &x13, x10, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x14, &x15, x12, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x16, &x17, x12, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x18, &x19, 0x0, x5, x14); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x20, &x21, 0x0, x10, x16); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x22, &x23, 0x0, (((uint32_t)x21 + x11) + x17), (arg1[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x24, &x25, x22, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x26, &x27, x24, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x28, &x29, x24, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x30, &x31, 0x0, (x19 + x15), x26); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x32, &x33, 0x0, x22, x28); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x34, &x35, 0x0, (((uint32_t)x33 + x23) + x29), (arg1[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x36, &x37, x34, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x38, &x39, x36, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x40, &x41, x36, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x42, &x43, 0x0, (x31 + x27), x38); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x44, &x45, 0x0, x34, x40); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x46, &x47, 0x0, (((uint32_t)x45 + x35) + x41), (arg1[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x48, &x49, x46, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x50, &x51, x48, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x52, &x53, x48, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x54, &x55, 0x0, (x43 + x39), x50); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x56, &x57, 0x0, x46, x52); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x58, &x59, 0x0, (((uint32_t)x57 + x47) + x53), (arg1[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x60, &x61, x58, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x62, &x63, x60, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x64, &x65, x60, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x66, &x67, 0x0, (x55 + x51), x62); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x68, &x69, 0x0, x58, x64); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x70, &x71, 0x0, (((uint32_t)x69 + x59) + x65), (arg1[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x72, &x73, x71, x4, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x74, &x75, x73, x18, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x76, &x77, x75, x30, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x78, &x79, x77, x42, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x80, &x81, x79, x54, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x82, &x83, x81, x66, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x84, &x85, x70, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x86, &x87, x84, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x88, &x89, x84, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x90, &x91, 0x0, x70, x88); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x92, &x93, x91, x72, x89); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x94, &x95, x93, x74, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x96, &x97, x95, x76, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x98, &x99, x97, x78, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x100, &x101, x99, x80, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x102, &x103, x101, x82, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x104, &x105, x103, (x83 + (x67 + x63)), x86); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x106, &x107, 0x0, x92, (arg1[7])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x108, &x109, x107, x94, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x110, &x111, x109, x96, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x112, &x113, x111, x98, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x114, &x115, x113, x100, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x116, &x117, x115, x102, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x118, &x119, x117, x104, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x120, &x121, x106, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x122, &x123, x120, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x124, &x125, x120, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x126, &x127, 0x0, x106, x124); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x128, &x129, x127, x108, x125); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x130, &x131, x129, x110, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x132, &x133, x131, x112, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x134, &x135, x133, x114, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x136, &x137, x135, x116, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x138, &x139, x137, x118, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x140, &x141, x139, (x119 + (x105 + x87)), x122); x142 = (x141 + x123); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x143, &x144, 0x0, x128, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x145, &x146, x144, x130, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x147, &x148, x146, x132, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x149, &x150, x148, x134, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x151, &x152, x150, x136, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x153, &x154, x152, x138, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x155, &x156, x154, x140, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x157, &x158, x156, x142, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x159, &x160, x158, 0x0, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x161, x160, x143, x128); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x162, x160, x145, x130); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x163, x160, x147, x132); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x164, x160, x149, x134); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x165, x160, x151, x136); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x166, x160, x153, x138); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x167, x160, x155, x140); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x168, x160, x157, x142); out1[0] = x161; out1[1] = x162; out1[2] = x163; out1[3] = x164; out1[4] = x165; out1[5] = x166; out1[6] = x167; out1[7] = x168; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery translates a field element into the Montgomery domain. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * eval (from_montgomery out1) mod m = eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery( uint32_t out1[8], const uint32_t arg1[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint32_t x9; uint32_t x10; uint32_t x11; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x12; uint32_t x13; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x14; uint32_t x15; uint32_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint32_t x20; uint32_t x21; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x22; uint32_t x23; uint32_t x24; uint32_t x25; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x26; uint32_t x27; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x28; uint32_t x29; uint32_t x30; uint32_t x31; uint32_t x32; uint32_t x33; uint32_t x34; uint32_t x35; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x36; uint32_t x37; uint32_t x38; uint32_t x39; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x40; uint32_t x41; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x50; uint32_t x51; uint32_t x52; uint32_t x53; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x54; uint32_t x55; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x56; uint32_t x57; uint32_t x58; uint32_t x59; uint32_t x60; uint32_t x61; uint32_t x62; uint32_t x63; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x64; uint32_t x65; uint32_t x66; uint32_t x67; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x68; uint32_t x69; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x70; uint32_t x71; uint32_t x72; uint32_t x73; uint32_t x74; uint32_t x75; uint32_t x76; uint32_t x77; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x78; uint32_t x79; uint32_t x80; uint32_t x81; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x82; uint32_t x83; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x84; uint32_t x85; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x86; uint32_t x87; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x88; uint32_t x89; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x90; uint32_t x91; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x92; uint32_t x93; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x94; uint32_t x95; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x96; uint32_t x97; uint32_t x98; uint32_t x99; uint32_t x100; uint32_t x101; uint32_t x102; uint32_t x103; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x104; uint32_t x105; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x106; uint32_t x107; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x108; uint32_t x109; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x110; uint32_t x111; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x112; uint32_t x113; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x114; uint32_t x115; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x116; uint32_t x117; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x118; uint32_t x119; uint32_t x120; uint32_t x121; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x122; uint32_t x123; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x124; uint32_t x125; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x126; uint32_t x127; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x128; uint32_t x129; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x130; uint32_t x131; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x132; uint32_t x133; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x134; uint32_t x135; uint32_t x136; uint32_t x137; uint32_t x138; uint32_t x139; uint32_t x140; uint32_t x141; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x142; uint32_t x143; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x144; uint32_t x145; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x146; uint32_t x147; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x148; uint32_t x149; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x150; uint32_t x151; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x152; uint32_t x153; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x154; uint32_t x155; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x156; uint32_t x157; uint32_t x158; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x159; uint32_t x160; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x161; uint32_t x162; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x163; uint32_t x164; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x165; uint32_t x166; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x167; uint32_t x168; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x169; uint32_t x170; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x171; uint32_t x172; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x173; uint32_t x174; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 x175; uint32_t x176; uint32_t x177; uint32_t x178; uint32_t x179; uint32_t x180; uint32_t x181; uint32_t x182; uint32_t x183; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x1, &x2, (arg1[0]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x3, &x4, x1, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x5, &x6, x3, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x7, &x8, x3, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x9, &x10, (arg1[1]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x11, &x12, 0x0, x1, x7); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x13, &x14, 0x0, ((x12 + x2) + x8), x9); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x15, &x16, x13, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x17, &x18, x15, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x19, &x20, x15, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x21, &x22, 0x0, x6, x17); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x23, &x24, (arg1[2]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x25, &x26, 0x0, x13, x19); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x27, &x28, 0x0, ((x26 + (x14 + x10)) + x20), x23); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x29, &x30, x27, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x31, &x32, x29, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x33, &x34, x29, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x35, &x36, 0x0, (x22 + x18), x31); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x37, &x38, (arg1[3]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x39, &x40, 0x0, x27, x33); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x41, &x42, 0x0, ((x40 + (x28 + x24)) + x34), x37); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x43, &x44, x41, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x45, &x46, x43, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x47, &x48, x43, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x49, &x50, 0x0, (x36 + x32), x45); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x51, &x52, (arg1[4]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x53, &x54, 0x0, x41, x47); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x55, &x56, 0x0, ((x54 + (x42 + x38)) + x48), x51); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x57, &x58, x55, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x59, &x60, x57, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x61, &x62, x57, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x63, &x64, 0x0, (x50 + x46), x59); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x65, &x66, (arg1[5]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x67, &x68, 0x0, x55, x61); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x69, &x70, 0x0, ((x68 + (x56 + x52)) + x62), x65); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x71, &x72, x69, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x73, &x74, x71, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x75, &x76, x71, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x77, &x78, 0x0, (x64 + x60), x73); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x79, &x80, (arg1[6]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x81, &x82, 0x0, x69, x75); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x83, &x84, 0x0, ((x82 + (x70 + x66)) + x76), x79); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x85, &x86, x84, x5, x80); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x87, &x88, x86, x21, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x89, &x90, x88, x35, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x91, &x92, x90, x49, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x93, &x94, x92, x63, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x95, &x96, x94, x77, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x97, &x98, x83, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x99, &x100, x97, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x101, &x102, x97, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x103, &x104, 0x0, x83, x101); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x105, &x106, x104, x85, x102); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x107, &x108, x106, x87, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x109, &x110, x108, x89, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x111, &x112, x110, x91, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x113, &x114, x112, x93, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x115, &x116, x114, x95, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x117, &x118, x116, (x96 + (x78 + x74)), x99); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32( &x119, &x120, (arg1[7]), UINT32_C(0x27acdc4)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x121, &x122, 0x0, x105, x119); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x123, &x124, x122, x107, x120); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x125, &x126, x124, x109, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x127, &x128, x126, x111, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x129, &x130, x128, x113, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x131, &x132, x130, x115, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x133, &x134, x132, x117, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x135, &x136, x121, UINT32_C(0xa3347857)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x137, &x138, x135, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mulx_u32(&x139, &x140, x135, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x141, &x142, 0x0, x121, x139); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x143, &x144, x142, x123, x140); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x145, &x146, x144, x125, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x147, &x148, x146, x127, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x149, &x150, x148, x129, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x151, &x152, x150, x131, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32(&x153, &x154, x152, x133, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_addcarryx_u32( &x155, &x156, x154, (x134 + (x118 + x100)), x137); x157 = (x156 + x138); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x158, &x159, 0x0, x143, UINT16_C(0xc99)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x160, &x161, x159, x145, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x162, &x163, x161, x147, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x164, &x165, x163, x149, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x166, &x167, x165, x151, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x168, &x169, x167, x153, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x170, &x171, x169, x155, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32( &x172, &x173, x171, x157, UINT32_C(0x80000000)); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_subborrowx_u32(&x174, &x175, x173, 0x0, 0x0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x176, x175, x158, x143); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x177, x175, x160, x145); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x178, x175, x162, x147); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x179, x175, x164, x149); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x180, x175, x166, x151); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x181, x175, x168, x153); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x182, x175, x170, x155); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32(&x183, x175, x172, x157); out1[0] = x176; out1[1] = x177; out1[2] = x178; out1[3] = x179; out1[4] = x180; out1[5] = x181; out1[6] = x182; out1[7] = x183; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_nonzero outputs a single non-zero word if the input is non-zero and zero otherwise. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = 0 ↔ eval (from_montgomery arg1) mod m = 0 * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [0x0 ~> 0xffffffff] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_nonzero( uint32_t *out1, const uint32_t arg1[8]) { uint32_t x1; x1 = ((arg1[0]) | ((arg1[1]) | ((arg1[2]) | ((arg1[3]) | ((arg1[4]) | ((arg1[5]) | ((arg1[6]) | (arg1[7])))))))); *out1 = x1; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz is a multi-limb conditional select. * Postconditions: * eval out1 = (if arg1 = 0 then eval arg2 else eval arg3) * * Input Bounds: * arg1: [0x0 ~> 0x1] * arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( uint32_t out1[8], fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_uint1 arg1, const uint32_t arg2[8], const uint32_t arg3[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x1, arg1, (arg2[0]), (arg3[0])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x2, arg1, (arg2[1]), (arg3[1])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x3, arg1, (arg2[2]), (arg3[2])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x4, arg1, (arg2[3]), (arg3[3])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x5, arg1, (arg2[4]), (arg3[4])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x6, arg1, (arg2[5]), (arg3[5])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x7, arg1, (arg2[6]), (arg3[6])); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_cmovznz_u32( &x8, arg1, (arg2[7]), (arg3[7])); out1[0] = x1; out1[1] = x2; out1[2] = x3; out1[3] = x4; out1[4] = x5; out1[5] = x6; out1[6] = x7; out1[7] = x8; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes serializes a field element NOT in the Montgomery domain to bytes in little-endian order. * Preconditions: * 0 ≤ eval arg1 < m * Postconditions: * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31] * * Input Bounds: * arg1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] * Output Bounds: * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes( uint8_t out1[32], const uint32_t arg1[8]) { uint32_t x1; uint32_t x2; uint32_t x3; uint32_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint32_t x8; uint8_t x9; uint32_t x10; uint8_t x11; uint32_t x12; uint8_t x13; uint8_t x14; uint8_t x15; uint32_t x16; uint8_t x17; uint32_t x18; uint8_t x19; uint8_t x20; uint8_t x21; uint32_t x22; uint8_t x23; uint32_t x24; uint8_t x25; uint8_t x26; uint8_t x27; uint32_t x28; uint8_t x29; uint32_t x30; uint8_t x31; uint8_t x32; uint8_t x33; uint32_t x34; uint8_t x35; uint32_t x36; uint8_t x37; uint8_t x38; uint8_t x39; uint32_t x40; uint8_t x41; uint32_t x42; uint8_t x43; uint8_t x44; uint8_t x45; uint32_t x46; uint8_t x47; uint32_t x48; uint8_t x49; uint8_t x50; uint8_t x51; uint32_t x52; uint8_t x53; uint32_t x54; uint8_t x55; uint8_t x56; x1 = (arg1[7]); x2 = (arg1[6]); x3 = (arg1[5]); x4 = (arg1[4]); x5 = (arg1[3]); x6 = (arg1[2]); x7 = (arg1[1]); x8 = (arg1[0]); x9 = (uint8_t)(x8 & UINT8_C(0xff)); x10 = (x8 >> 8); x11 = (uint8_t)(x10 & UINT8_C(0xff)); x12 = (x10 >> 8); x13 = (uint8_t)(x12 & UINT8_C(0xff)); x14 = (uint8_t)(x12 >> 8); x15 = (uint8_t)(x7 & UINT8_C(0xff)); x16 = (x7 >> 8); x17 = (uint8_t)(x16 & UINT8_C(0xff)); x18 = (x16 >> 8); x19 = (uint8_t)(x18 & UINT8_C(0xff)); x20 = (uint8_t)(x18 >> 8); x21 = (uint8_t)(x6 & UINT8_C(0xff)); x22 = (x6 >> 8); x23 = (uint8_t)(x22 & UINT8_C(0xff)); x24 = (x22 >> 8); x25 = (uint8_t)(x24 & UINT8_C(0xff)); x26 = (uint8_t)(x24 >> 8); x27 = (uint8_t)(x5 & UINT8_C(0xff)); x28 = (x5 >> 8); x29 = (uint8_t)(x28 & UINT8_C(0xff)); x30 = (x28 >> 8); x31 = (uint8_t)(x30 & UINT8_C(0xff)); x32 = (uint8_t)(x30 >> 8); x33 = (uint8_t)(x4 & UINT8_C(0xff)); x34 = (x4 >> 8); x35 = (uint8_t)(x34 & UINT8_C(0xff)); x36 = (x34 >> 8); x37 = (uint8_t)(x36 & UINT8_C(0xff)); x38 = (uint8_t)(x36 >> 8); x39 = (uint8_t)(x3 & UINT8_C(0xff)); x40 = (x3 >> 8); x41 = (uint8_t)(x40 & UINT8_C(0xff)); x42 = (x40 >> 8); x43 = (uint8_t)(x42 & UINT8_C(0xff)); x44 = (uint8_t)(x42 >> 8); x45 = (uint8_t)(x2 & UINT8_C(0xff)); x46 = (x2 >> 8); x47 = (uint8_t)(x46 & UINT8_C(0xff)); x48 = (x46 >> 8); x49 = (uint8_t)(x48 & UINT8_C(0xff)); x50 = (uint8_t)(x48 >> 8); x51 = (uint8_t)(x1 & UINT8_C(0xff)); x52 = (x1 >> 8); x53 = (uint8_t)(x52 & UINT8_C(0xff)); x54 = (x52 >> 8); x55 = (uint8_t)(x54 & UINT8_C(0xff)); x56 = (uint8_t)(x54 >> 8); out1[0] = x9; out1[1] = x11; out1[2] = x13; out1[3] = x14; out1[4] = x15; out1[5] = x17; out1[6] = x19; out1[7] = x20; out1[8] = x21; out1[9] = x23; out1[10] = x25; out1[11] = x26; out1[12] = x27; out1[13] = x29; out1[14] = x31; out1[15] = x32; out1[16] = x33; out1[17] = x35; out1[18] = x37; out1[19] = x38; out1[20] = x39; out1[21] = x41; out1[22] = x43; out1[23] = x44; out1[24] = x45; out1[25] = x47; out1[26] = x49; out1[27] = x50; out1[28] = x51; out1[29] = x53; out1[30] = x55; out1[31] = x56; } /* * The function fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes deserializes a field element NOT in the Montgomery domain from bytes in little-endian order. * Preconditions: * 0 ≤ bytes_eval arg1 < m * Postconditions: * eval out1 mod m = bytes_eval arg1 mod m * 0 ≤ eval out1 < m * * Input Bounds: * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]] * Output Bounds: * out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]] */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes( uint32_t out1[8], const uint8_t arg1[32]) { uint32_t x1; uint32_t x2; uint32_t x3; uint8_t x4; uint32_t x5; uint32_t x6; uint32_t x7; uint8_t x8; uint32_t x9; uint32_t x10; uint32_t x11; uint8_t x12; uint32_t x13; uint32_t x14; uint32_t x15; uint8_t x16; uint32_t x17; uint32_t x18; uint32_t x19; uint8_t x20; uint32_t x21; uint32_t x22; uint32_t x23; uint8_t x24; uint32_t x25; uint32_t x26; uint32_t x27; uint8_t x28; uint32_t x29; uint32_t x30; uint32_t x31; uint8_t x32; uint32_t x33; uint32_t x34; uint32_t x35; uint32_t x36; uint32_t x37; uint32_t x38; uint32_t x39; uint32_t x40; uint32_t x41; uint32_t x42; uint32_t x43; uint32_t x44; uint32_t x45; uint32_t x46; uint32_t x47; uint32_t x48; uint32_t x49; uint32_t x50; uint32_t x51; uint32_t x52; uint32_t x53; uint32_t x54; uint32_t x55; uint32_t x56; x1 = ((uint32_t)(arg1[31]) << 24); x2 = ((uint32_t)(arg1[30]) << 16); x3 = ((uint32_t)(arg1[29]) << 8); x4 = (arg1[28]); x5 = ((uint32_t)(arg1[27]) << 24); x6 = ((uint32_t)(arg1[26]) << 16); x7 = ((uint32_t)(arg1[25]) << 8); x8 = (arg1[24]); x9 = ((uint32_t)(arg1[23]) << 24); x10 = ((uint32_t)(arg1[22]) << 16); x11 = ((uint32_t)(arg1[21]) << 8); x12 = (arg1[20]); x13 = ((uint32_t)(arg1[19]) << 24); x14 = ((uint32_t)(arg1[18]) << 16); x15 = ((uint32_t)(arg1[17]) << 8); x16 = (arg1[16]); x17 = ((uint32_t)(arg1[15]) << 24); x18 = ((uint32_t)(arg1[14]) << 16); x19 = ((uint32_t)(arg1[13]) << 8); x20 = (arg1[12]); x21 = ((uint32_t)(arg1[11]) << 24); x22 = ((uint32_t)(arg1[10]) << 16); x23 = ((uint32_t)(arg1[9]) << 8); x24 = (arg1[8]); x25 = ((uint32_t)(arg1[7]) << 24); x26 = ((uint32_t)(arg1[6]) << 16); x27 = ((uint32_t)(arg1[5]) << 8); x28 = (arg1[4]); x29 = ((uint32_t)(arg1[3]) << 24); x30 = ((uint32_t)(arg1[2]) << 16); x31 = ((uint32_t)(arg1[1]) << 8); x32 = (arg1[0]); x33 = (x31 + (uint32_t)x32); x34 = (x30 + x33); x35 = (x29 + x34); x36 = (x27 + (uint32_t)x28); x37 = (x26 + x36); x38 = (x25 + x37); x39 = (x23 + (uint32_t)x24); x40 = (x22 + x39); x41 = (x21 + x40); x42 = (x19 + (uint32_t)x20); x43 = (x18 + x42); x44 = (x17 + x43); x45 = (x15 + (uint32_t)x16); x46 = (x14 + x45); x47 = (x13 + x46); x48 = (x11 + (uint32_t)x12); x49 = (x10 + x48); x50 = (x9 + x49); x51 = (x7 + (uint32_t)x8); x52 = (x6 + x51); x53 = (x5 + x52); x54 = (x3 + (uint32_t)x4); x55 = (x2 + x54); x56 = (x1 + x55); out1[0] = x35; out1[1] = x38; out1[2] = x41; out1[3] = x44; out1[4] = x47; out1[5] = x50; out1[6] = x53; out1[7] = x56; } /* END verbatim fiat code */ /*- * Finite field inversion via FLT. * NB: this is not a real Fiat function, just named that way for consistency. * Autogenerated: ecp/id_GostR3410_2001_CryptoPro_B_ParamSet/fe_inv.op3 * sliding window w=5 */ static void fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_inv(fe_t output, const fe_t t1) { int i; /* temporary variables */ fe_t acc, t23, t25; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(acc, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t25, t1, acc); for (i = 0; i < 9; i++) fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t25, t25, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t23, t25, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t25, t23, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(acc, t1); for (i = 0; i < 247; i++) fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(acc, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(acc, acc, t25); for (i = 0; i < 7; i++) fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(acc, acc); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(output, acc, t23); } /* curve coefficient constants */ static const limb_t const_one[8] = {UINT32_C(0xFFFFF367), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0x7FFFFFFF)}; static const limb_t const_b[8] = {UINT32_C(0xA9C5A084), UINT32_C(0x8DCC455A), UINT32_C(0x6CF438A8), UINT32_C(0x91AB42DF), UINT32_C(0xEEAC7D11), UINT32_C(0x8F8AA907), UINT32_C(0xF6285375), UINT32_C(0x3CE5D221)}; /* LUT for scalar multiplication by comb interleaving */ static const pt_aff_t lut_cmb[27][16] = { { {{UINT32_C(0xFFFFF367), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0xFFFFFFFF), UINT32_C(0x7FFFFFFF)}, {UINT32_C(0x570C7410), UINT32_C(0xDDDC64B3), UINT32_C(0x13172887), UINT32_C(0xA7B09925), UINT32_C(0x4B6382DB), UINT32_C(0x0C4E5C4C), UINT32_C(0x124768DE), UINT32_C(0x2763DB0F)}}, {{UINT32_C(0x8457D15D), UINT32_C(0xCD3E57B6), UINT32_C(0xBEA56E83), UINT32_C(0xEB688F7F), UINT32_C(0x6A13C5CE), UINT32_C(0x235A123C), UINT32_C(0x50F57A6D), UINT32_C(0x0CD7EB9D)}, {UINT32_C(0x544C1965), UINT32_C(0xC0124E91), UINT32_C(0x62AFA35E), UINT32_C(0x4D9C1729), UINT32_C(0x0037C554), UINT32_C(0x0F92F2C3), UINT32_C(0x0A3F2665), UINT32_C(0x1D899868)}}, {{UINT32_C(0x55F43EFF), UINT32_C(0x9DE4B213), UINT32_C(0x5C9E63F5), UINT32_C(0x2E110A42), UINT32_C(0x1CE5A6DF), UINT32_C(0x9350A9C3), UINT32_C(0xA332315E), UINT32_C(0x377CBF0B)}, {UINT32_C(0x20F0D1B5), UINT32_C(0x2805DD48), UINT32_C(0x0F9723E5), UINT32_C(0x3B197566), UINT32_C(0x84B79937), UINT32_C(0xA1CCA78C), UINT32_C(0x94D5E03D), UINT32_C(0x4F87BB1B)}}, {{UINT32_C(0x5652C96F), UINT32_C(0xE428FBFB), UINT32_C(0xD261BDD1), UINT32_C(0x2E9A14D2), UINT32_C(0x7453B76A), UINT32_C(0x082D8296), UINT32_C(0x7AC87B02), UINT32_C(0x61EA580E)}, {UINT32_C(0xCF368FDB), UINT32_C(0xA0F8C2BA), UINT32_C(0xD73B2A28), UINT32_C(0xDF093380), UINT32_C(0xEA8FE5D2), UINT32_C(0xFA0928B2), UINT32_C(0x5F86D38A), UINT32_C(0x77A67492)}}, {{UINT32_C(0x27670451), UINT32_C(0xDFFAB410), UINT32_C(0x1200AD3A), UINT32_C(0xEBC3D017), UINT32_C(0x25F4F6C4), UINT32_C(0xF68324F3), UINT32_C(0x7D0EAFD0), UINT32_C(0x4A24CD5F)}, {UINT32_C(0xD3F6BD1C), UINT32_C(0xF8FBD489), UINT32_C(0x67B473DE), UINT32_C(0x0F6B56D5), UINT32_C(0xCACF0D6B), UINT32_C(0x6FB063DE), UINT32_C(0x96DC574B), UINT32_C(0x27F2E7E9)}}, {{UINT32_C(0x93937228), UINT32_C(0xA6A10645), UINT32_C(0xA9165BBB), UINT32_C(0xAB7550B4), UINT32_C(0xCB0EDBE8), UINT32_C(0xD682D4F1), UINT32_C(0x40E5AD8D), UINT32_C(0x2261FCEC)}, {UINT32_C(0xCCBD4E18), UINT32_C(0x9F2119C6), UINT32_C(0xAAB09697), UINT32_C(0x2FD094E9), UINT32_C(0xE700929E), UINT32_C(0x00331713), UINT32_C(0x54338FE1), UINT32_C(0x6C5F2EFE)}}, {{UINT32_C(0x42FFF78A), UINT32_C(0xD6314017), UINT32_C(0x2087E055), UINT32_C(0x38F23A91), UINT32_C(0x10EF1CAC), UINT32_C(0xE30E809C), UINT32_C(0x2432FF74), UINT32_C(0x3BCB0A54)}, {UINT32_C(0xB31509E6), UINT32_C(0x2B4B5B97), UINT32_C(0x3E54AF47), UINT32_C(0x117FE9D7), UINT32_C(0x52F63ACA), UINT32_C(0xE513C0BE), UINT32_C(0xB1C80A6B), UINT32_C(0x41ED8ADA)}}, {{UINT32_C(0xE0A79FCD), UINT32_C(0x61A31837), UINT32_C(0x51D3DE38), UINT32_C(0x8F742B57), UINT32_C(0x41354B55), UINT32_C(0x10635FCD), UINT32_C(0x946510BE), UINT32_C(0x61F30C61)}, {UINT32_C(0x6C416DAC), UINT32_C(0x9183D677), UINT32_C(0x345431CB), UINT32_C(0x391B7B42), UINT32_C(0x7C254A8D), UINT32_C(0xE3D6F084), UINT32_C(0x19D320D8), UINT32_C(0x777E1F62)}}, {{UINT32_C(0xF05BD85D), UINT32_C(0x090E633F), UINT32_C(0x240392ED), UINT32_C(0x546C41A0), UINT32_C(0x9F4139CA), UINT32_C(0x6BBCF15D), UINT32_C(0x7FFDA5DA), UINT32_C(0x73F5B657)}, {UINT32_C(0xE0622A57), UINT32_C(0xBC04E353), UINT32_C(0x6E6414F4), UINT32_C(0xCBD8F01E), UINT32_C(0x8C3C0CC5), UINT32_C(0x53377C0B), UINT32_C(0xE0A14548), UINT32_C(0x6D302331)}}, {{UINT32_C(0x3D6D456E), UINT32_C(0x235487F8), UINT32_C(0xB3FDCDCF), UINT32_C(0xBD92203D), UINT32_C(0xCFFDA977), UINT32_C(0x15B13D60), UINT32_C(0x31A1C4B5), UINT32_C(0x22DCB487)}, {UINT32_C(0xC76ED9A2), UINT32_C(0xA367FB4E), UINT32_C(0xC0C86AF4), UINT32_C(0x1E4F7956), UINT32_C(0x5B012AD7), UINT32_C(0x6F087C49), UINT32_C(0x4949B444), UINT32_C(0x33437E4A)}}, {{UINT32_C(0xB7CDDB38), UINT32_C(0x261B44FE), UINT32_C(0x419216AD), UINT32_C(0xDCE2FE47), UINT32_C(0x9428657B), UINT32_C(0xA4CE17FF), UINT32_C(0xF8329049), UINT32_C(0x7CE64F48)}, {UINT32_C(0x7289C114), UINT32_C(0x4CE74211), UINT32_C(0x8C212A23), UINT32_C(0x0E622409), UINT32_C(0x2096719D), UINT32_C(0xCF75BF45), UINT32_C(0x7BDC1600), UINT32_C(0x6F553581)}}, {{UINT32_C(0xB941CBC9), UINT32_C(0xE776AA0C), UINT32_C(0x951AAED3), UINT32_C(0x16D670E0), UINT32_C(0x4B1EC097), UINT32_C(0x79C019DF), UINT32_C(0x12266D30), UINT32_C(0x635A66BB)}, {UINT32_C(0x023AAFD2), UINT32_C(0x030D843E), UINT32_C(0x6466108F), UINT32_C(0x10FB6157), UINT32_C(0x08D568D5), UINT32_C(0x93774BEC), UINT32_C(0x04C1EE73), UINT32_C(0x29D27962)}}, {{UINT32_C(0xE00BBC21), UINT32_C(0x6F0F4C2E), UINT32_C(0xA30AB92F), UINT32_C(0x9EB34C58), UINT32_C(0xAE34908B), UINT32_C(0x2153D901), UINT32_C(0x4EDC188F), UINT32_C(0x136A7E1F)}, {UINT32_C(0x8BC45EE4), UINT32_C(0xF709BF5D), UINT32_C(0x4FAD9A54), UINT32_C(0xEA6984E4), UINT32_C(0xAF5140EB), UINT32_C(0xFC8E6F8A), UINT32_C(0x87756E47), UINT32_C(0x25EBF0DE)}}, {{UINT32_C(0x5B1D4B9F), UINT32_C(0x5C2A9726), UINT32_C(0x68E93FC7), UINT32_C(0xBE235DFD), UINT32_C(0x471A4EA0), UINT32_C(0x7766BDB9), UINT32_C(0xD9909CD9), UINT32_C(0x476D17CC)}, {UINT32_C(0x7B398BC4), UINT32_C(0x4960E5B4), UINT32_C(0x0F58F328), UINT32_C(0x909D0F17), UINT32_C(0x230EF508), UINT32_C(0x1ABF7E02), UINT32_C(0xD29239C9), UINT32_C(0x6DE6B3E1)}}, {{UINT32_C(0x85A6DBE3), UINT32_C(0xCCF0AA28), UINT32_C(0x823C606C), UINT32_C(0xA5E4B325), UINT32_C(0x15505FC6), UINT32_C(0xADE98B2A), UINT32_C(0x02E20C3B), UINT32_C(0x4D4E7703)}, {UINT32_C(0x4730DF64), UINT32_C(0x24196417), UINT32_C(0xA914A59D), UINT32_C(0x3DD47817), UINT32_C(0xC4FDFD97), UINT32_C(0x4D7A317E), UINT32_C(0xBE12AA72), UINT32_C(0x3767E545)}}, {{UINT32_C(0x165C7BF4), UINT32_C(0xA0C2A028), UINT32_C(0x36A0B483), UINT32_C(0xCD4DA6EA), UINT32_C(0x3AF53195), UINT32_C(0x1E1E6332), UINT32_C(0x8D77188F), UINT32_C(0x7A025E23)}, {UINT32_C(0x08D2CEF2), UINT32_C(0xB3CF03B9), UINT32_C(0x25A0AFA6), UINT32_C(0x8FEE9BB8), UINT32_C(0x88111895), UINT32_C(0x855340E0), UINT32_C(0x4FB8F8A3), UINT32_C(0x32E3EF01)}}, }, { {{UINT32_C(0xEBF87807), UINT32_C(0x33EBE39D), UINT32_C(0xDBDEFF76), UINT32_C(0xB048F96C), UINT32_C(0x342A3087), UINT32_C(0xA0496C3C), UINT32_C(0x50953679), UINT32_C(0x7623E192)}, {UINT32_C(0x4B932390), UINT32_C(0x12F76711), UINT32_C(0xACECE2F7), UINT32_C(0xF80851EA), UINT32_C(0xE5B280EA), UINT32_C(0xE447465B), UINT32_C(0x11115958), UINT32_C(0x0412ADE8)}}, {{UINT32_C(0xB5EB0DC2), UINT32_C(0x982F1AC8), UINT32_C(0xBBBCC880), UINT32_C(0x8464E052), UINT32_C(0x01335D53), UINT32_C(0xC927B596), UINT32_C(0x4DA4D80B), UINT32_C(0x4B0C6F5A)}, {UINT32_C(0xE04783AF), UINT32_C(0x101E1878), UINT32_C(0x41D8A690), UINT32_C(0x50458FFC), UINT32_C(0x1B77DFBF), UINT32_C(0x11499D88), UINT32_C(0x1F77A937), UINT32_C(0x46DC7D22)}}, {{UINT32_C(0x620E52C0), UINT32_C(0xE9AD22CE), UINT32_C(0x4140F356), UINT32_C(0x0990D6AA), UINT32_C(0x0CBBEEE5), UINT32_C(0x0F6B2EF7), UINT32_C(0xEAD414C6), UINT32_C(0x2C67DC80)}, {UINT32_C(0x23D4CD20), UINT32_C(0xE17182BC), UINT32_C(0xC13DDEA9), UINT32_C(0xFC8FE3CB), UINT32_C(0x3BABC06D), UINT32_C(0xD1E4A7B8), UINT32_C(0x71C06DB7), UINT32_C(0x52EA05CC)}}, {{UINT32_C(0x0D022B5B), UINT32_C(0xF8ABB770), UINT32_C(0x199DC689), UINT32_C(0x362B8059), UINT32_C(0x26BBDEC8), UINT32_C(0x5D887A4D), UINT32_C(0xF7FC2A01), UINT32_C(0x7835F183)}, {UINT32_C(0xDE99DF34), UINT32_C(0xEEDE12F5), UINT32_C(0xA3082301), UINT32_C(0xBE952638), UINT32_C(0x4C35A162), UINT32_C(0x829FDF80), UINT32_C(0xC2B9645E), UINT32_C(0x205A2252)}}, {{UINT32_C(0x1356E14C), UINT32_C(0xDE284DA9), UINT32_C(0xC37415FE), UINT32_C(0xE40CEFE0), UINT32_C(0x47F6016E), UINT32_C(0x62BE93E9), UINT32_C(0x5DBFE2F6), UINT32_C(0x2DD98904)}, {UINT32_C(0x2EBC70F9), UINT32_C(0x195B0E98), UINT32_C(0xF01F4D43), UINT32_C(0x7E52840D), UINT32_C(0x4B1F6AB4), UINT32_C(0x1AFB1FDF), UINT32_C(0x20B3E491), UINT32_C(0x050AABB8)}}, {{UINT32_C(0xC645DAD4), UINT32_C(0xC59E1EDB), UINT32_C(0x565A286D), UINT32_C(0x5AF6B2DC), UINT32_C(0x13076366), UINT32_C(0xC399A48A), UINT32_C(0x4AC0E5B9), UINT32_C(0x19F4881F)}, {UINT32_C(0xCD5AC339), UINT32_C(0xC07D02A1), UINT32_C(0xED628A55), UINT32_C(0x18FBD088), UINT32_C(0xFFA4788E), UINT32_C(0x2D33C6F4), UINT32_C(0xCCB832E7), UINT32_C(0x52E9AE42)}}, {{UINT32_C(0x4E5E934E), UINT32_C(0xA47091AE), UINT32_C(0x91CED3C6), UINT32_C(0x2542CE13), UINT32_C(0x8FC47857), UINT32_C(0xDDE01FD5), UINT32_C(0x4304EAA9), UINT32_C(0x6BA6E569)}, {UINT32_C(0xE24091A9), UINT32_C(0x2FF0278B), UINT32_C(0x782BBCE0), UINT32_C(0xB895F0AB), UINT32_C(0xAB8B8828), UINT32_C(0xA80CCC97), UINT32_C(0x68A7D8FE), UINT32_C(0x6A54B961)}}, {{UINT32_C(0xBAC4581A), UINT32_C(0x15E1F5AD), UINT32_C(0xD4BAA751), UINT32_C(0x91620EF0), UINT32_C(0xC7273C4D), UINT32_C(0x4E65731F), UINT32_C(0x7EEE33B5), UINT32_C(0x14B166CB)}, {UINT32_C(0x3CD06080), UINT32_C(0x7B0EFFA5), UINT32_C(0x8CF95FF9), UINT32_C(0x4491156A), UINT32_C(0xE2258574), UINT32_C(0xC8C64C39), UINT32_C(0x13315CE9), UINT32_C(0x3D48DA9D)}}, {{UINT32_C(0x99866CE5), UINT32_C(0x97A098A3), UINT32_C(0x023A1167), UINT32_C(0xF4CCDB40), UINT32_C(0xF8094782), UINT32_C(0x4BB32981), UINT32_C(0xC7D5FD13), UINT32_C(0x7342CC98)}, {UINT32_C(0x78B99D4E), UINT32_C(0x3C1C5B18), UINT32_C(0xF4762AC9), UINT32_C(0x1277668F), UINT32_C(0x6AE50E4F), UINT32_C(0x612431D7), UINT32_C(0x36F9071C), UINT32_C(0x36C174E0)}}, {{UINT32_C(0x9327BA7F), UINT32_C(0x39194E87), UINT32_C(0x7237FA1A), UINT32_C(0xC4D251FF), UINT32_C(0x2BA5EB8D), UINT32_C(0x55ED3CD4), UINT32_C(0xBA590188), UINT32_C(0x0263AF07)}, {UINT32_C(0xEFA82CF3), UINT32_C(0xB4853127), UINT32_C(0x2B8E761D), UINT32_C(0x2CC2D220), UINT32_C(0x2722B490), UINT32_C(0x4582B81E), UINT32_C(0x610AA621), UINT32_C(0x1DA7680A)}}, {{UINT32_C(0x30D297D4), UINT32_C(0x06A669EE), UINT32_C(0xE133D393), UINT32_C(0xC336B048), UINT32_C(0x93B7B41B), UINT32_C(0xB733A2C4), UINT32_C(0xC7A8E721), UINT32_C(0x427CC233)}, {UINT32_C(0x2867BB00), UINT32_C(0x727C14F1), UINT32_C(0xA736035E), UINT32_C(0x756F4C7A), UINT32_C(0x26327A22), UINT32_C(0xB72A3EDE), UINT32_C(0x77F73F28), UINT32_C(0x4AEDE2BB)}}, {{UINT32_C(0xA7282ED0), UINT32_C(0xC8A3612F), UINT32_C(0xB0150579), UINT32_C(0xE4AD8B40), UINT32_C(0x0C3FEE4B), UINT32_C(0xAB1DE11D), UINT32_C(0x33B31F23), UINT32_C(0x613AAD48)}, {UINT32_C(0x5C91BD21), UINT32_C(0xE74AB856), UINT32_C(0x7953D695), UINT32_C(0x49917735), UINT32_C(0x1A53D74F), UINT32_C(0x3831EB60), UINT32_C(0x54DEB1A6), UINT32_C(0x245977A0)}}, {{UINT32_C(0xFFFC1468), UINT32_C(0x15972E4D), UINT32_C(0x141DC24C), UINT32_C(0xA758D9CB), UINT32_C(0xED8694C5), UINT32_C(0x5E76FCDF), UINT32_C(0x069B7A5E), UINT32_C(0x5F9DAF35)}, {UINT32_C(0x501B5415), UINT32_C(0xFE50FCE4), UINT32_C(0x58CFDE50), UINT32_C(0x6442CF67), UINT32_C(0x38E5F4D0), UINT32_C(0xA89C6DB4), UINT32_C(0xF5D4FEFC), UINT32_C(0x21F012DB)}}, {{UINT32_C(0x98CB9A81), UINT32_C(0x2A1170AD), UINT32_C(0x036C5E45), UINT32_C(0x934BD9D5), UINT32_C(0xCA5095B1), UINT32_C(0x27DF152E), UINT32_C(0xCCEEE508), UINT32_C(0x682698DB)}, {UINT32_C(0xB973FB5F), UINT32_C(0x1F4FE3A2), UINT32_C(0x792C7D4D), UINT32_C(0xD33CBEBE), UINT32_C(0xE7B33A8F), UINT32_C(0x99D37961), UINT32_C(0x7B6D015D), UINT32_C(0x46B8993B)}}, {{UINT32_C(0x6FBAC8F7), UINT32_C(0x93A3809B), UINT32_C(0x97C55DC4), UINT32_C(0x84861BF0), UINT32_C(0x15BB65E3), UINT32_C(0xA6F89EEA), UINT32_C(0xA6E531D1), UINT32_C(0x66AE1C5D)}, {UINT32_C(0xFD83DAEA), UINT32_C(0x643A14FC), UINT32_C(0xC585947B), UINT32_C(0xA7A46D0D), UINT32_C(0x4FBA1274), UINT32_C(0xFA20CF07), UINT32_C(0x93578A7D), UINT32_C(0x5999ED7B)}}, {{UINT32_C(0x78E7C6CE), UINT32_C(0x36C8B6ED), UINT32_C(0x5E325F44), UINT32_C(0x6D400CA5), UINT32_C(0x20B7AA5C), UINT32_C(0xC6AE09B3), UINT32_C(0x89EABC17), UINT32_C(0x1AF261C1)}, {UINT32_C(0xB9E778E4), UINT32_C(0x64D6FFBB), UINT32_C(0x7FC64BEB), UINT32_C(0x1C9E223E), UINT32_C(0x5D75E6C0), UINT32_C(0x4D68B520), UINT32_C(0x76677A06), UINT32_C(0x5A72B1D9)}}, }, { {{UINT32_C(0x6F08BB17), UINT32_C(0x62DB6640), UINT32_C(0xAE75BB73), UINT32_C(0xC34F29DF), UINT32_C(0x7DBD4851), UINT32_C(0xD501293D), UINT32_C(0xAD1F604B), UINT32_C(0x5EAA94CA)}, {UINT32_C(0x094408A8), UINT32_C(0x39CFE9D1), UINT32_C(0xE8A476F2), UINT32_C(0xC0F6544C), UINT32_C(0xA42D7607), UINT32_C(0x9F6308B6), UINT32_C(0xD727018F), UINT32_C(0x17F82949)}}, {{UINT32_C(0x9C4C4BD2), UINT32_C(0xC44453CD), UINT32_C(0xEBD0B947), UINT32_C(0xA895E247), UINT32_C(0xAEBC27F4), UINT32_C(0x0AEB7AFC), UINT32_C(0xF04ABFAC), UINT32_C(0x2472FD08)}, {UINT32_C(0x73E6E994), UINT32_C(0x319EC67D), UINT32_C(0x798C5FC0), UINT32_C(0xD6533E4C), UINT32_C(0x3FB9AA89), UINT32_C(0xF4C3B24D), UINT32_C(0x0A3B376B), UINT32_C(0x3EC58082)}}, {{UINT32_C(0x144ACF7A), UINT32_C(0x79732D6F), UINT32_C(0x911342DD), UINT32_C(0xFDD630C3), UINT32_C(0x4A630649), UINT32_C(0xC577C4B3), UINT32_C(0xBBA999D6), UINT32_C(0x14956A17)}, {UINT32_C(0xA435A559), UINT32_C(0x523D3CC8), UINT32_C(0xACDA8861), UINT32_C(0x488DC690), UINT32_C(0xF051C69A), UINT32_C(0x4CF70928), UINT32_C(0x955394CB), UINT32_C(0x2D98D573)}}, {{UINT32_C(0x23A4B840), UINT32_C(0xEDB7BA2A), UINT32_C(0xF6C2D93B), UINT32_C(0x725EC496), UINT32_C(0x8833BB3F), UINT32_C(0x0C94818B), UINT32_C(0xB142B12A), UINT32_C(0x51281A31)}, {UINT32_C(0x659EDA83), UINT32_C(0x2A8A5706), UINT32_C(0x7F9D6877), UINT32_C(0x3098F750), UINT32_C(0x2171F69F), UINT32_C(0x87AD0FDF), UINT32_C(0x1A6F2F28), UINT32_C(0x6B7067C3)}}, {{UINT32_C(0x12B1E36F), UINT32_C(0x3B521074), UINT32_C(0xF81E4733), UINT32_C(0x727A2432), UINT32_C(0x53F2CBBD), UINT32_C(0xB75A2F35), UINT32_C(0x54960EB0), UINT32_C(0x46DE9338)}, {UINT32_C(0xE561D908), UINT32_C(0xAC5344F8), UINT32_C(0x12C67430), UINT32_C(0x4BD40ECB), UINT32_C(0xEF499F97), UINT32_C(0x1698FD62), UINT32_C(0x6AE9FBD1), UINT32_C(0x29EBD7AE)}}, {{UINT32_C(0x1EC8110D), UINT32_C(0x9DEC249B), UINT32_C(0xFD2F5C39), UINT32_C(0x2D19053A), UINT32_C(0xE01522DF), UINT32_C(0xB1189807), UINT32_C(0xC1424C77), UINT32_C(0x24A04C16)}, {UINT32_C(0x24F72226), UINT32_C(0xA4FC7C7D), UINT32_C(0xA8322501), UINT32_C(0x763405FB), UINT32_C(0x18F015E0), UINT32_C(0xC5443C9A), UINT32_C(0xC55D6CEA), UINT32_C(0x6DEDA19B)}}, {{UINT32_C(0x9EAE2FF9), UINT32_C(0x4EF30976), UINT32_C(0x5741B21B), UINT32_C(0x2549B7F2), UINT32_C(0x3BC23F01), UINT32_C(0x859ACD10), UINT32_C(0xBF5FB0D7), UINT32_C(0x05C0358F)}, {UINT32_C(0xFB6AB34C), UINT32_C(0x85E53AA8), UINT32_C(0x8FD2FD20), UINT32_C(0x8DAAAA69), UINT32_C(0x16096FC9), UINT32_C(0xBE6D4D34), UINT32_C(0xF8B8B831), UINT32_C(0x27572C88)}}, {{UINT32_C(0x47D56A25), UINT32_C(0xADB98DC5), UINT32_C(0x8B8E1DC6), UINT32_C(0x0CC76432), UINT32_C(0xBE48C4A1), UINT32_C(0x032C738E), UINT32_C(0x94FC9CF0), UINT32_C(0x31372DAD)}, {UINT32_C(0x78A7DCB2), UINT32_C(0x8E646A0C), UINT32_C(0x6ECD9885), UINT32_C(0xA32F3E9C), UINT32_C(0x6A3AD963), UINT32_C(0x280BB4AD), UINT32_C(0x817D4327), UINT32_C(0x7DEE1BC4)}}, {{UINT32_C(0xF8A7C1E1), UINT32_C(0x1AE6A27B), UINT32_C(0xCBC527C7), UINT32_C(0x558C652F), UINT32_C(0xA65056F6), UINT32_C(0x4084B56E), UINT32_C(0x6D4C838B), UINT32_C(0x3FD45459)}, {UINT32_C(0x56DE792A), UINT32_C(0xF5C15AFD), UINT32_C(0x88959282), UINT32_C(0xF656FAA4), UINT32_C(0x1C07D63F), UINT32_C(0x7F0D8EF4), UINT32_C(0xCD841ACC), UINT32_C(0x44EFFF7D)}}, {{UINT32_C(0x8D3695D8), UINT32_C(0xAC28F2A6), UINT32_C(0x3F91E781), UINT32_C(0x94959EB8), UINT32_C(0xFEDD6E1F), UINT32_C(0x7693FFF7), UINT32_C(0xA9A699EF), UINT32_C(0x2512E6E1)}, {UINT32_C(0x7955FAB7), UINT32_C(0x823400EB), UINT32_C(0x94924C08), UINT32_C(0xCF109EF9), UINT32_C(0x3A709F32), UINT32_C(0x12E08779), UINT32_C(0x9CC6484C), UINT32_C(0x187D0413)}}, {{UINT32_C(0xEBDE477F), UINT32_C(0xD3932AFB), UINT32_C(0x44538D8A), UINT32_C(0x9D5A5422), UINT32_C(0x166A87AF), UINT32_C(0x40B0B159), UINT32_C(0x41D5E078), UINT32_C(0x31294B3D)}, {UINT32_C(0xE8C48222), UINT32_C(0x6C49C853), UINT32_C(0xDCD0D611), UINT32_C(0x8FBE6620), UINT32_C(0xF611007B), UINT32_C(0x9DDC7EE2), UINT32_C(0xE6652172), UINT32_C(0x12289A60)}}, {{UINT32_C(0xDACF80F7), UINT32_C(0x8B85475B), UINT32_C(0x9B5CAEF2), UINT32_C(0xADBAB353), UINT32_C(0x8D2A7707), UINT32_C(0x7C4090A3), UINT32_C(0xDAB97830), UINT32_C(0x271FA4F1)}, {UINT32_C(0x53173E04), UINT32_C(0x141B7252), UINT32_C(0x06D0B127), UINT32_C(0x4B483D64), UINT32_C(0x063A7AF8), UINT32_C(0x8FD15BCF), UINT32_C(0xE580F34C), UINT32_C(0x59B19EAF)}}, {{UINT32_C(0x9C0D79B6), UINT32_C(0xA7EEA8C4), UINT32_C(0xB9185109), UINT32_C(0x766FA113), UINT32_C(0x4642CC64), UINT32_C(0xB42D74F3), UINT32_C(0xBB817476), UINT32_C(0x51D0127B)}, {UINT32_C(0x8AB71448), UINT32_C(0x6DA097F5), UINT32_C(0xF95AD0C7), UINT32_C(0x145872E5), UINT32_C(0xF1759436), UINT32_C(0xB7E934F3), UINT32_C(0x3160ED1F), UINT32_C(0x4EA883F9)}}, {{UINT32_C(0x0CEABAE1), UINT32_C(0x30DC39B7), UINT32_C(0xA606D766), UINT32_C(0x49EC5EE8), UINT32_C(0x97FC46AF), UINT32_C(0x230E2762), UINT32_C(0x5BE79B8D), UINT32_C(0x079A531F)}, {UINT32_C(0xEF08C93F), UINT32_C(0x48253BC2), UINT32_C(0xF124D043), UINT32_C(0x2D32AF02), UINT32_C(0xAF34D231), UINT32_C(0x85796D0D), UINT32_C(0x15F8CECD), UINT32_C(0x06A6205C)}}, {{UINT32_C(0x47B00D1A), UINT32_C(0x1FA77AFD), UINT32_C(0xE48CE97A), UINT32_C(0x429717B0), UINT32_C(0x57433697), UINT32_C(0x38FEF11D), UINT32_C(0x7D426687), UINT32_C(0x3E91BED6)}, {UINT32_C(0x2AB4BFE9), UINT32_C(0x95919BF7), UINT32_C(0x97096B3A), UINT32_C(0x7A3F33FC), UINT32_C(0x3DD8C82E), UINT32_C(0x0E0BBAC3), UINT32_C(0xF8EDB675), UINT32_C(0x2CE9EFCB)}}, {{UINT32_C(0x43D8B81D), UINT32_C(0x2D44E998), UINT32_C(0x6D68A95C), UINT32_C(0x8ABFF419), UINT32_C(0x3B2A18DD), UINT32_C(0x639000A0), UINT32_C(0x871E3ED3), UINT32_C(0x7CD15413)}, {UINT32_C(0x148F0378), UINT32_C(0xC059855B), UINT32_C(0x616B62BF), UINT32_C(0x50147459), UINT32_C(0x4D461110), UINT32_C(0x53B699AF), UINT32_C(0xEC29E48D), UINT32_C(0x6A0D0EC7)}}, }, { {{UINT32_C(0x15797F35), UINT32_C(0x51733221), UINT32_C(0x4BBE6644), UINT32_C(0x2F298214), UINT32_C(0x4A5EF621), UINT32_C(0x7BC8FEC6), UINT32_C(0x7F472F05), UINT32_C(0x3D2BE785)}, {UINT32_C(0x2765C427), UINT32_C(0xA1C3A1C9), UINT32_C(0x24155ACF), UINT32_C(0xBACF08FE), UINT32_C(0x9D229948), UINT32_C(0xA9CC1A17), UINT32_C(0x27039FD8), UINT32_C(0x1918C97F)}}, {{UINT32_C(0x7843FF7B), UINT32_C(0x2CF39338), UINT32_C(0x258997F2), UINT32_C(0x5FCBDE65), UINT32_C(0x165A98A3), UINT32_C(0x3980BF90), UINT32_C(0xBF9458E5), UINT32_C(0x2E80607D)}, {UINT32_C(0x7019165C), UINT32_C(0x5F646EB6), UINT32_C(0xDDE34205), UINT32_C(0xFA091FBE), UINT32_C(0x69267AE3), UINT32_C(0x695348B6), UINT32_C(0xABC22051), UINT32_C(0x385B0B6A)}}, {{UINT32_C(0xB537F78C), UINT32_C(0x3CAE0756), UINT32_C(0x8BE30367), UINT32_C(0x3012A958), UINT32_C(0x981A22C3), UINT32_C(0x32D26C06), UINT32_C(0x2950E833), UINT32_C(0x7D091FAB)}, {UINT32_C(0x797ACAAF), UINT32_C(0xD8E1B638), UINT32_C(0x49F2EA10), UINT32_C(0xE7021C85), UINT32_C(0x17A7AF3B), UINT32_C(0xCA382BC1), UINT32_C(0xBB809976), UINT32_C(0x08A5A81D)}}, {{UINT32_C(0x4287BB97), UINT32_C(0x00F499FD), UINT32_C(0xDAA9DAF2), UINT32_C(0xFB6791CA), UINT32_C(0x057B2B98), UINT32_C(0x9A19E4F3), UINT32_C(0xC53C0223), UINT32_C(0x6968D2FF)}, {UINT32_C(0xCE88509C), UINT32_C(0xDC741EF5), UINT32_C(0x306A0570), UINT32_C(0x38AE355D), UINT32_C(0xC23AF46B), UINT32_C(0xFECF6589), UINT32_C(0x6AD48836), UINT32_C(0x6C0E6ED1)}}, {{UINT32_C(0xE363495D), UINT32_C(0x22B68698), UINT32_C(0x39AF2BE3), UINT32_C(0x120005D0), UINT32_C(0x0BF4BA69), UINT32_C(0xE37B1965), UINT32_C(0x26E64AE7), UINT32_C(0x3B416E93)}, {UINT32_C(0xDEAC5C59), UINT32_C(0xFAED5088), UINT32_C(0xEB2518A5), UINT32_C(0x67436ACC), UINT32_C(0x91FA788D), UINT32_C(0x636B52F8), UINT32_C(0x655153D1), UINT32_C(0x10B2A57A)}}, {{UINT32_C(0x833A984C), UINT32_C(0xB18060A7), UINT32_C(0x74833BAD), UINT32_C(0x7EF83746), UINT32_C(0xC5B3BC88), UINT32_C(0xCBFAF742), UINT32_C(0xA1A7F135), UINT32_C(0x7981DC36)}, {UINT32_C(0x5D076280), UINT32_C(0xE70CCAFA), UINT32_C(0x07009D85), UINT32_C(0xEBA80EB7), UINT32_C(0x73778DE2), UINT32_C(0x7D99D24C), UINT32_C(0xA7262D50), UINT32_C(0x1EFEE1BB)}}, {{UINT32_C(0x6A7CAB32), UINT32_C(0xBC47F4A2), UINT32_C(0xDD6E48A3), UINT32_C(0x53F290A7), UINT32_C(0x92F35F9E), UINT32_C(0x82257A1B), UINT32_C(0x8BB0AAB0), UINT32_C(0x73D17B31)}, {UINT32_C(0xC2DFFE96), UINT32_C(0xBBD4522A), UINT32_C(0xE6EB0501), UINT32_C(0x9C37DAA1), UINT32_C(0x453DB6BE), UINT32_C(0xF4D4D568), UINT32_C(0x642AD2E4), UINT32_C(0x2868CBF5)}}, {{UINT32_C(0xABE30C59), UINT32_C(0x40A988E6), UINT32_C(0x93057DEC), UINT32_C(0x5ADED929), UINT32_C(0xDACD37B0), UINT32_C(0x18FD7E04), UINT32_C(0x8228ACA5), UINT32_C(0x6E3FB81E)}, {UINT32_C(0x4104B0C9), UINT32_C(0xFF3EEFE6), UINT32_C(0x31CA120A), UINT32_C(0xD7DD05E7), UINT32_C(0xD01C1CF8), UINT32_C(0xAFD3CF1C), UINT32_C(0x831BC4E9), UINT32_C(0x4D0CD264)}}, {{UINT32_C(0x82CAC14A), UINT32_C(0x2641B321), UINT32_C(0x70990E6C), UINT32_C(0x34EB1495), UINT32_C(0xA1C74CA6), UINT32_C(0x3E5AF58F), UINT32_C(0x616B7A2D), UINT32_C(0x11B50821)}, {UINT32_C(0xC4FA9719), UINT32_C(0x891636E3), UINT32_C(0x107DD719), UINT32_C(0xAEE84C27), UINT32_C(0xC1872E75), UINT32_C(0xA2B0D83E), UINT32_C(0x7383069E), UINT32_C(0x7DD62CBC)}}, {{UINT32_C(0xC81B7E15), UINT32_C(0xEBA4A024), UINT32_C(0x04516070), UINT32_C(0x1CC37E08), UINT32_C(0xF90CE59D), UINT32_C(0xEF1F0401), UINT32_C(0xE062E133), UINT32_C(0x3B4259D5)}, {UINT32_C(0xCF2CA1DD), UINT32_C(0x87A1DBFA), UINT32_C(0x61FD1AFB), UINT32_C(0xCFBFB15F), UINT32_C(0xECF4C7BA), UINT32_C(0xFBFD9899), UINT32_C(0x2725FA50), UINT32_C(0x57C84CEE)}}, {{UINT32_C(0xEFA6E3D0), UINT32_C(0x8B0B7414), UINT32_C(0xB3D04224), UINT32_C(0xD9725C5E), UINT32_C(0x8A91371E), UINT32_C(0x670E6C50), UINT32_C(0x9B25BD3B), UINT32_C(0x4D130467)}, {UINT32_C(0x5CF18D4F), UINT32_C(0x18D77D15), UINT32_C(0x1CA09677), UINT32_C(0xEF80DC41), UINT32_C(0xB9A05CF9), UINT32_C(0x6F3A961B), UINT32_C(0x7C1433A4), UINT32_C(0x0BB8A518)}}, {{UINT32_C(0xB33FCF05), UINT32_C(0xAC0CF52A), UINT32_C(0x1CDC7782), UINT32_C(0xAD03692F), UINT32_C(0xAA02B77E), UINT32_C(0xB345BAE6), UINT32_C(0x456FCFA9), UINT32_C(0x05096694)}, {UINT32_C(0x25D4CF32), UINT32_C(0xA8984448), UINT32_C(0x15184188), UINT32_C(0xD76393E3), UINT32_C(0xEA069BED), UINT32_C(0x7D4A8C0C), UINT32_C(0x11E18347), UINT32_C(0x4D22268D)}}, {{UINT32_C(0x3CB3C0F1), UINT32_C(0xC2A0BB75), UINT32_C(0x8EBA58C6), UINT32_C(0x61F4EC4C), UINT32_C(0xDFC4A903), UINT32_C(0x5D3F0D44), UINT32_C(0xF9B6F79A), UINT32_C(0x0B6CE81B)}, {UINT32_C(0x94E49623), UINT32_C(0xF694A44A), UINT32_C(0x1BDF75E0), UINT32_C(0xCFCBB7E1), UINT32_C(0xE0337E13), UINT32_C(0x20CEE1BD), UINT32_C(0xDFF02E18), UINT32_C(0x694EA40B)}}, {{UINT32_C(0x78D1DC2E), UINT32_C(0xC21BE0FA), UINT32_C(0xED0E49E0), UINT32_C(0x08B4D9A5), UINT32_C(0x827F0B4C), UINT32_C(0x676731AB), UINT32_C(0xEBAB5894), UINT32_C(0x674ECC79)}, {UINT32_C(0x39ABB148), UINT32_C(0xB29BD0D4), UINT32_C(0x2378A63A), UINT32_C(0x8207A8F8), UINT32_C(0x1E4C29C2), UINT32_C(0xE36A549D), UINT32_C(0x3F1C255B), UINT32_C(0x380D48DE)}}, {{UINT32_C(0xE5F2C87E), UINT32_C(0x6AB6F887), UINT32_C(0xA01AEC86), UINT32_C(0xE92C7345), UINT32_C(0x8660C26F), UINT32_C(0x697F4520), UINT32_C(0x9B58015B), UINT32_C(0x4F2488E0)}, {UINT32_C(0xBB41900C), UINT32_C(0xB2410B3E), UINT32_C(0xBE1A8A39), UINT32_C(0x31267500), UINT32_C(0xB9140554), UINT32_C(0xA7C9997C), UINT32_C(0x1CD41524), UINT32_C(0x335B1806)}}, {{UINT32_C(0x14873270), UINT32_C(0xB836FD9F), UINT32_C(0xE3243EC5), UINT32_C(0x1AE0F512), UINT32_C(0x83B9AB74), UINT32_C(0xA743E304), UINT32_C(0x3A5758C7), UINT32_C(0x1569C30D)}, {UINT32_C(0x9E8F9E52), UINT32_C(0x003CEF9A), UINT32_C(0x8C22119E), UINT32_C(0x557AFB4A), UINT32_C(0xF223A966), UINT32_C(0x66F2487E), UINT32_C(0xA519378F), UINT32_C(0x7FA00273)}}, }, { {{UINT32_C(0x7B08C1C4), UINT32_C(0x812C024F), UINT32_C(0xADBA8AD9), UINT32_C(0xC6017986), UINT32_C(0x0601BD82), UINT32_C(0x59C7B16C), UINT32_C(0x0CFA5622), UINT32_C(0x41B6A45C)}, {UINT32_C(0x83C1E3E8), UINT32_C(0x353A67D5), UINT32_C(0xC65F5059), UINT32_C(0x9A83438E), UINT32_C(0x86EEA346), UINT32_C(0x99950377), UINT32_C(0x330D2570), UINT32_C(0x74E2F4BD)}}, {{UINT32_C(0xB4A8BDA8), UINT32_C(0xDB8E53C1), UINT32_C(0x2C003C77), UINT32_C(0xA850047E), UINT32_C(0x1B018831), UINT32_C(0xFFD48A73), UINT32_C(0x8B325062), UINT32_C(0x24F96CB6)}, {UINT32_C(0xCD2B821B), UINT32_C(0x3779CA4D), UINT32_C(0xC3159CE7), UINT32_C(0xC2AFBF6E), UINT32_C(0x10F18DE9), UINT32_C(0x8A580B1A), UINT32_C(0x8CF75334), UINT32_C(0x37043D0D)}}, {{UINT32_C(0xECCCF2E8), UINT32_C(0x0451DCDA), UINT32_C(0x752A134F), UINT32_C(0xCF7A3AD9), UINT32_C(0xFBDAE56C), UINT32_C(0xD5754596), UINT32_C(0xF4CDCF6A), UINT32_C(0x15237D73)}, {UINT32_C(0xECA37967), UINT32_C(0x1DF5912C), UINT32_C(0x336CD97E), UINT32_C(0x60934339), UINT32_C(0x434DDC01), UINT32_C(0xA4E523FE), UINT32_C(0x79DBE24C), UINT32_C(0x24E81DC6)}}, {{UINT32_C(0xC83B2B7C), UINT32_C(0x28F0D73B), UINT32_C(0x7B5DE1AA), UINT32_C(0x45BE220F), UINT32_C(0xB136A877), UINT32_C(0x1B785230), UINT32_C(0xAEFF115B), UINT32_C(0x5A94122A)}, {UINT32_C(0x8E598998), UINT32_C(0xEF895F0C), UINT32_C(0xF4C622C3), UINT32_C(0xCEE32B3E), UINT32_C(0xB256CFD0), UINT32_C(0x2D080B1D), UINT32_C(0x21075E15), UINT32_C(0x672686D6)}}, {{UINT32_C(0x9F9F26FE), UINT32_C(0xE85FB575), UINT32_C(0x93A7966E), UINT32_C(0x1DE57B83), UINT32_C(0xDD8CB696), UINT32_C(0xA9948DE8), UINT32_C(0x758E685D), UINT32_C(0x226C95A6)}, {UINT32_C(0x3729C663), UINT32_C(0x38B0753B), UINT32_C(0x410E4884), UINT32_C(0xD46CA4D9), UINT32_C(0x77516FA4), UINT32_C(0x1D6FA5F9), UINT32_C(0x696CFAFC), UINT32_C(0x09A0FDB8)}}, {{UINT32_C(0xCC7F6FD8), UINT32_C(0xD1DAD8E9), UINT32_C(0x022195A2), UINT32_C(0x7BB9F606), UINT32_C(0x223A9346), UINT32_C(0x1B997396), UINT32_C(0x88DCFB04), UINT32_C(0x6ACD6F7C)}, {UINT32_C(0x3AC52F65), UINT32_C(0x9029E5EB), UINT32_C(0x935A39DE), UINT32_C(0xED1D7A0F), UINT32_C(0x538D8914), UINT32_C(0xF1D58C3A), UINT32_C(0xB36B8342), UINT32_C(0x19153569)}}, {{UINT32_C(0xE2502156), UINT32_C(0xFF600354), UINT32_C(0x733DA5EC), UINT32_C(0xE386A20F), UINT32_C(0x9D24D11D), UINT32_C(0xD6FBCBBB), UINT32_C(0x0B06C843), UINT32_C(0x0B57498C)}, {UINT32_C(0x7A834667), UINT32_C(0x98F1FFF8), UINT32_C(0xC7DF05F5), UINT32_C(0x4AEB8788), UINT32_C(0xC2681DA4), UINT32_C(0x8CFA3B01), UINT32_C(0x2FA2FAEA), UINT32_C(0x1AECC0E8)}}, {{UINT32_C(0x94C5CBC5), UINT32_C(0x38278865), UINT32_C(0x041A755A), UINT32_C(0x9ADA7CAB), UINT32_C(0x8D891640), UINT32_C(0xB38F762A), UINT32_C(0x00AD88F0), UINT32_C(0x28F6FBB2)}, {UINT32_C(0x3709CD6D), UINT32_C(0x3F9629E3), UINT32_C(0x4912F483), UINT32_C(0xD2435A55), UINT32_C(0xDFF5AB69), UINT32_C(0x305BEA64), UINT32_C(0x663BB0D9), UINT32_C(0x4D29041A)}}, {{UINT32_C(0xE2FD9338), UINT32_C(0xDC4BC9D4), UINT32_C(0xBA7938FC), UINT32_C(0x5389390D), UINT32_C(0xF329B218), UINT32_C(0xC42B812D), UINT32_C(0xFA9F1956), UINT32_C(0x5E809B5E)}, {UINT32_C(0x523D74C3), UINT32_C(0xE2A89BAA), UINT32_C(0x78CBA7B5), UINT32_C(0x97CD9FFB), UINT32_C(0x5B07BCD2), UINT32_C(0x25F95301), UINT32_C(0x2064BB3A), UINT32_C(0x4042C705)}}, {{UINT32_C(0x28D53BF9), UINT32_C(0xD8B6ADA4), UINT32_C(0xA4210F2D), UINT32_C(0x5E922CA5), UINT32_C(0xF05A1629), UINT32_C(0x9501F46A), UINT32_C(0xC6CD71CD), UINT32_C(0x28094E54)}, {UINT32_C(0x811285AD), UINT32_C(0x8D5484D5), UINT32_C(0x1593EE86), UINT32_C(0xFB2168F4), UINT32_C(0xAC54A41D), UINT32_C(0x693D3B32), UINT32_C(0x28A5425C), UINT32_C(0x3DAFEC07)}}, {{UINT32_C(0xD12837A8), UINT32_C(0x0E4CF0D0), UINT32_C(0xCF5273BB), UINT32_C(0x19FA2CC9), UINT32_C(0x116A20C4), UINT32_C(0x56346BAE), UINT32_C(0x0E436A36), UINT32_C(0x4F3597FE)}, {UINT32_C(0xE8EB1B85), UINT32_C(0x459D3FFB), UINT32_C(0x5AE04130), UINT32_C(0x7C718672), UINT32_C(0x60302740), UINT32_C(0xA37C2586), UINT32_C(0x913072D8), UINT32_C(0x2871AF37)}}, {{UINT32_C(0x8590319D), UINT32_C(0xD77249B7), UINT32_C(0xEB06B813), UINT32_C(0x73F7A684), UINT32_C(0x71D1D580), UINT32_C(0x4C9DC5B9), UINT32_C(0x5A50A95B), UINT32_C(0x7C91A9F5)}, {UINT32_C(0x0475F161), UINT32_C(0x4F8F2E89), UINT32_C(0x538B7F94), UINT32_C(0xF34EC1DD), UINT32_C(0xD46F2575), UINT32_C(0xB8FF6C65), UINT32_C(0x64433C80), UINT32_C(0x79A2CE2C)}}, {{UINT32_C(0x1AEB7039), UINT32_C(0x38448A53), UINT32_C(0x417189EC), UINT32_C(0xF5EC03F7), UINT32_C(0xEB92FF2B), UINT32_C(0xFA095CA1), UINT32_C(0xE4FCAEDB), UINT32_C(0x4612F720)}, {UINT32_C(0xF30AAE0E), UINT32_C(0xC945E966), UINT32_C(0x340A7A1D), UINT32_C(0xF61CFE85), UINT32_C(0xE42D7920), UINT32_C(0xA2560BC6), UINT32_C(0xA692E9C7), UINT32_C(0x07D7B321)}}, {{UINT32_C(0x592C60C5), UINT32_C(0xB9C26307), UINT32_C(0x0F59D966), UINT32_C(0xCECBC6C3), UINT32_C(0x5459D89E), UINT32_C(0x8BA31FD6), UINT32_C(0x47C7FAE8), UINT32_C(0x1A4AF6B1)}, {UINT32_C(0xB431D720), UINT32_C(0x66487766), UINT32_C(0x5108B845), UINT32_C(0x5D597309), UINT32_C(0xCA8E6E0D), UINT32_C(0xA3B94FD7), UINT32_C(0x55C6A48D), UINT32_C(0x639519E3)}}, {{UINT32_C(0x052DC195), UINT32_C(0xAD3EE167), UINT32_C(0x0947816B), UINT32_C(0x4DF2BFC7), UINT32_C(0xABADBB3C), UINT32_C(0x5D463469), UINT32_C(0xC33D4F96), UINT32_C(0x6F7AA885)}, {UINT32_C(0xFE06133C), UINT32_C(0x3DD27536), UINT32_C(0x2796E7ED), UINT32_C(0x27A557B2), UINT32_C(0x3D314A4F), UINT32_C(0x1117CCB7), UINT32_C(0x23968946), UINT32_C(0x6F0C0AE0)}}, {{UINT32_C(0xE2110C00), UINT32_C(0x0A3D4DAE), UINT32_C(0x4C633A23), UINT32_C(0x0389D3A5), UINT32_C(0x83AEC172), UINT32_C(0xE167BDFA), UINT32_C(0xFB38E8F1), UINT32_C(0x067070CE)}, {UINT32_C(0x4DF220C5), UINT32_C(0x41137367), UINT32_C(0x59C39F05), UINT32_C(0xB255E5D3), UINT32_C(0x043C75B3), UINT32_C(0xE437984E), UINT32_C(0x6A22994A), UINT32_C(0x01DCD771)}}, }, { {{UINT32_C(0x4C6FDDCF), UINT32_C(0xD2880DF2), UINT32_C(0x8A00D80F), UINT32_C(0x76A28FF2), UINT32_C(0x0792F82C), UINT32_C(0x257CB1F8), UINT32_C(0x605703EA), UINT32_C(0x07938ABC)}, {UINT32_C(0x5F61B0FE), UINT32_C(0xD99F0AC9), UINT32_C(0x8EC15433), UINT32_C(0x440DC63C), UINT32_C(0x86AB5DDB), UINT32_C(0xD9BDDFF1), UINT32_C(0x744755EA), UINT32_C(0x3B8875DC)}}, {{UINT32_C(0x4938C9FB), UINT32_C(0x01D90440), UINT32_C(0x8DB6A890), UINT32_C(0x900657FD), UINT32_C(0xF60A173A), UINT32_C(0xDCC5068A), UINT32_C(0x857C7B2A), UINT32_C(0x5F3EB242)}, {UINT32_C(0xA4F0EB9E), UINT32_C(0x634240BD), UINT32_C(0x44E85C70), UINT32_C(0xACDDA6C4), UINT32_C(0x0AABE4C5), UINT32_C(0x753F02AB), UINT32_C(0xC1D034E1), UINT32_C(0x33D89D21)}}, {{UINT32_C(0x1279B25B), UINT32_C(0x4596B52D), UINT32_C(0xA48014AE), UINT32_C(0x494669D9), UINT32_C(0x4FD22150), UINT32_C(0x9A26B6FC), UINT32_C(0xF07D5A3F), UINT32_C(0x394DE0BB)}, {UINT32_C(0x634C1733), UINT32_C(0x12DFE5A6), UINT32_C(0x1EBC5177), UINT32_C(0x33EC21D2), UINT32_C(0x527514CC), UINT32_C(0x454B4930), UINT32_C(0x41405532), UINT32_C(0x7F23BD0F)}}, {{UINT32_C(0xBAC9DD30), UINT32_C(0xB2879E7F), UINT32_C(0x06CE7672), UINT32_C(0x259BB1CB), UINT32_C(0xBB97BE10), UINT32_C(0x201DB42E), UINT32_C(0x2EA35A8E), UINT32_C(0x112D6079)}, {UINT32_C(0x6B3B9933), UINT32_C(0x7CC756D4), UINT32_C(0x781CE4DD), UINT32_C(0x4BD24810), UINT32_C(0x8733247E), UINT32_C(0x53CB4E38), UINT32_C(0x9DA66787), UINT32_C(0x47BD6A30)}}, {{UINT32_C(0xBA600C8E), UINT32_C(0x8A700953), UINT32_C(0xCF388C0D), UINT32_C(0xD466F11D), UINT32_C(0xE4A17A8E), UINT32_C(0xD485F341), UINT32_C(0x234FC16D), UINT32_C(0x63278918)}, {UINT32_C(0xBB82046D), UINT32_C(0xF4DDA875), UINT32_C(0x2945470A), UINT32_C(0xD61E4E58), UINT32_C(0x6D0F8976), UINT32_C(0xCDB6C5BD), UINT32_C(0x10A004A2), UINT32_C(0x44CD9E4D)}}, {{UINT32_C(0x49C4AA6E), UINT32_C(0x595CD942), UINT32_C(0x3DE400C8), UINT32_C(0xE5A90136), UINT32_C(0x9DD12D9E), UINT32_C(0x4BCED3BD), UINT32_C(0x78E3D5E4), UINT32_C(0x3700CF92)}, {UINT32_C(0x75A32D1A), UINT32_C(0xECFFF498), UINT32_C(0x3C4A54B2), UINT32_C(0xC28DDE37), UINT32_C(0x993CAE6D), UINT32_C(0x8DC22352), UINT32_C(0x52ED7019), UINT32_C(0x46CB5408)}}, {{UINT32_C(0xEA94E7BF), UINT32_C(0x71FFAED0), UINT32_C(0xD5AE6185), UINT32_C(0xC0817D2C), UINT32_C(0x5CF23687), UINT32_C(0x7B72B8B9), UINT32_C(0x60A450E1), UINT32_C(0x61DDE599)}, {UINT32_C(0xD13870E6), UINT32_C(0x17CF0B10), UINT32_C(0x5F2930BB), UINT32_C(0x7D08E1FB), UINT32_C(0x83807C14), UINT32_C(0x8D0F4F55), UINT32_C(0x6E6DB701), UINT32_C(0x61EBFC1A)}}, {{UINT32_C(0x0FCAFE68), UINT32_C(0x247A3F65), UINT32_C(0x7AC2A25E), UINT32_C(0x57548035), UINT32_C(0x3CD0FE06), UINT32_C(0xB7466CA5), UINT32_C(0xBCC31AB3), UINT32_C(0x7B0D8B36)}, {UINT32_C(0xA6D4358C), UINT32_C(0x2FAAF49C), UINT32_C(0x3E9B4E31), UINT32_C(0xD9E5E2FE), UINT32_C(0xF6086336), UINT32_C(0xA6A859A0), UINT32_C(0xA9C19F84), UINT32_C(0x0C2A442A)}}, {{UINT32_C(0x3BC0AD7D), UINT32_C(0x66FEA841), UINT32_C(0x32C9158E), UINT32_C(0xCD3A546C), UINT32_C(0x8FE1DF7F), UINT32_C(0xACD2EE7F), UINT32_C(0xEBE9621E), UINT32_C(0x10F58C0A)}, {UINT32_C(0x478B667D), UINT32_C(0x80047C54), UINT32_C(0x89870DCE), UINT32_C(0x9EAE5FAA), UINT32_C(0x0520A005), UINT32_C(0xC05BEB33), UINT32_C(0x352AC891), UINT32_C(0x2CFBC921)}}, {{UINT32_C(0x632F6D73), UINT32_C(0x6842E6B8), UINT32_C(0x2B9FFAEA), UINT32_C(0x6F2B5724), UINT32_C(0x9341D2FA), UINT32_C(0x7ACCC982), UINT32_C(0x88809B65), UINT32_C(0x6DAD9A11)}, {UINT32_C(0xB6CC2240), UINT32_C(0x3411850C), UINT32_C(0xB64937E1), UINT32_C(0x8547BCAF), UINT32_C(0x6978F636), UINT32_C(0x49AEDD5F), UINT32_C(0x85A53D2A), UINT32_C(0x38F59752)}}, {{UINT32_C(0xF5F5A2D0), UINT32_C(0x5C38EB49), UINT32_C(0xE3BF779C), UINT32_C(0xE028121B), UINT32_C(0xA783D5E3), UINT32_C(0x649997C8), UINT32_C(0x2C06CC0F), UINT32_C(0x04DE984A)}, {UINT32_C(0xA49D6239), UINT32_C(0x52C834B0), UINT32_C(0x628413AC), UINT32_C(0x070A1B09), UINT32_C(0xA8624A1E), UINT32_C(0x2FBE0CA5), UINT32_C(0x268D930A), UINT32_C(0x687D93C3)}}, {{UINT32_C(0x314C47A4), UINT32_C(0xC7CD6805), UINT32_C(0xCE7A9A6D), UINT32_C(0x8BD0C630), UINT32_C(0x34F727BA), UINT32_C(0xCDB2DAD5), UINT32_C(0x25DB0189), UINT32_C(0x7814C414)}, {UINT32_C(0x7DD9CAEE), UINT32_C(0xD7F9C5DC), UINT32_C(0x798690E4), UINT32_C(0xDA6EACC8), UINT32_C(0x6B675E01), UINT32_C(0x705794E3), UINT32_C(0x75C5EC38), UINT32_C(0x4A31D714)}}, {{UINT32_C(0x0519D5F2), UINT32_C(0xC162A3EA), UINT32_C(0x2958FABF), UINT32_C(0x92146A78), UINT32_C(0x6CB31EB0), UINT32_C(0x1E63CBE4), UINT32_C(0xFBC5AD0F), UINT32_C(0x77CE5AAD)}, {UINT32_C(0x32605DC6), UINT32_C(0x3631E470), UINT32_C(0x43413DD3), UINT32_C(0xC7D1C72F), UINT32_C(0x0DF6B7C9), UINT32_C(0x171A3794), UINT32_C(0x2B5A08BC), UINT32_C(0x6D711743)}}, {{UINT32_C(0x509EF0F2), UINT32_C(0xDDC8057D), UINT32_C(0x6CABB486), UINT32_C(0x05C0B92B), UINT32_C(0x4244D919), UINT32_C(0xD49692B6), UINT32_C(0xD297F56E), UINT32_C(0x4E181744)}, {UINT32_C(0xF8CBB897), UINT32_C(0x902F6E73), UINT32_C(0x56D01382), UINT32_C(0xC3B21FE1), UINT32_C(0x46890F6D), UINT32_C(0xA858ABE1), UINT32_C(0x506858AF), UINT32_C(0x46B5E2C9)}}, {{UINT32_C(0xF4DEDE56), UINT32_C(0x30441281), UINT32_C(0xA195AEDE), UINT32_C(0x13F06FBB), UINT32_C(0x2FDD3BFF), UINT32_C(0xAD5F575B), UINT32_C(0x32ACB590), UINT32_C(0x680F656D)}, {UINT32_C(0xE3FAABA7), UINT32_C(0xFB60A8E1), UINT32_C(0x89A14827), UINT32_C(0xC8FBC1E4), UINT32_C(0xA8616136), UINT32_C(0x5835453F), UINT32_C(0xE6F4926F), UINT32_C(0x02826A47)}}, {{UINT32_C(0x74F32180), UINT32_C(0xAF4319A1), UINT32_C(0x6C2C1712), UINT32_C(0x4C9FDD16), UINT32_C(0xAC7E14A7), UINT32_C(0x59CA4FD4), UINT32_C(0xABBD4EA4), UINT32_C(0x07AA6E2F)}, {UINT32_C(0xFE9F121F), UINT32_C(0xB4BD441C), UINT32_C(0xCDA452C5), UINT32_C(0xDEBB4356), UINT32_C(0x51C9F451), UINT32_C(0xC29F1CFA), UINT32_C(0x83F598D8), UINT32_C(0x7E1EEF4C)}}, }, { {{UINT32_C(0x5014135F), UINT32_C(0xFC41A321), UINT32_C(0x3EEADF3F), UINT32_C(0xBE95F9BA), UINT32_C(0x3203A540), UINT32_C(0x054B1212), UINT32_C(0x3721C745), UINT32_C(0x6DD2FD17)}, {UINT32_C(0x5A682B59), UINT32_C(0xF86B8578), UINT32_C(0xBE801F7D), UINT32_C(0x872AA481), UINT32_C(0x14F865F2), UINT32_C(0x64C1600C), UINT32_C(0x25365449), UINT32_C(0x4BDD47AA)}}, {{UINT32_C(0xF3A3469F), UINT32_C(0xC96A964C), UINT32_C(0x9F7DA0E3), UINT32_C(0x273C5C85), UINT32_C(0x4C1A9DCD), UINT32_C(0x88EDC4AC), UINT32_C(0xB48E4CAA), UINT32_C(0x77623444)}, {UINT32_C(0x31581FF7), UINT32_C(0x7AF34A9C), UINT32_C(0xBB57F7CC), UINT32_C(0x23328C37), UINT32_C(0x8B7C86AB), UINT32_C(0xE920D8E9), UINT32_C(0x9DE6D64C), UINT32_C(0x1C7A7A40)}}, {{UINT32_C(0x79B9451C), UINT32_C(0x0BCDCD22), UINT32_C(0x58F5241B), UINT32_C(0x2920B435), UINT32_C(0x9B33EF3D), UINT32_C(0xC24DF715), UINT32_C(0xF2600224), UINT32_C(0x15252C5B)}, {UINT32_C(0x9A9160B6), UINT32_C(0xF9C8D8A6), UINT32_C(0xA6B9A6B8), UINT32_C(0x3186F2F9), UINT32_C(0xA377E98A), UINT32_C(0xC37267DC), UINT32_C(0x37957189), UINT32_C(0x71319A0A)}}, {{UINT32_C(0x6BAF6AE5), UINT32_C(0x48E5033F), UINT32_C(0xA460FCE9), UINT32_C(0x72379B2E), UINT32_C(0xF3D2FA46), UINT32_C(0xFC753D47), UINT32_C(0xED9EDF72), UINT32_C(0x3B67685A)}, {UINT32_C(0xF712500F), UINT32_C(0x1608E304), UINT32_C(0x9EE1B42A), UINT32_C(0xDFA358A4), UINT32_C(0x34B8345C), UINT32_C(0xE7A4B376), UINT32_C(0x06753C17), UINT32_C(0x7D0E0BF3)}}, {{UINT32_C(0x8FA62042), UINT32_C(0xA88526A6), UINT32_C(0x393006BD), UINT32_C(0xD6F32BB5), UINT32_C(0xA5DD5045), UINT32_C(0x14804978), UINT32_C(0xBF0C5E13), UINT32_C(0x34C02662)}, {UINT32_C(0x376E3E3D), UINT32_C(0xF9BEEBF9), UINT32_C(0x5923DC61), UINT32_C(0xFD774041), UINT32_C(0xF9735CF5), UINT32_C(0xFE77BDFA), UINT32_C(0x4077CFCC), UINT32_C(0x2E476E22)}}, {{UINT32_C(0x9BA457EF), UINT32_C(0xAB8E52EB), UINT32_C(0x0ABED212), UINT32_C(0x95F6C5FE), UINT32_C(0x386620FF), UINT32_C(0x7204B1A6), UINT32_C(0xDD180719), UINT32_C(0x463B7474)}, {UINT32_C(0xF991D8EE), UINT32_C(0x7F7D27AA), UINT32_C(0x8F67722D), UINT32_C(0xA7EB1085), UINT32_C(0xE331480A), UINT32_C(0x78D7095B), UINT32_C(0x66A1C8FA), UINT32_C(0x1DCC8C12)}}, {{UINT32_C(0x3E6A04C1), UINT32_C(0xD4C39C18), UINT32_C(0xB598ABEE), UINT32_C(0x73DB1C4D), UINT32_C(0xDF4A7D42), UINT32_C(0x381F9780), UINT32_C(0x52F860CD), UINT32_C(0x3C19A231)}, {UINT32_C(0x3EF00740), UINT32_C(0x7EC89934), UINT32_C(0xF37FE0D5), UINT32_C(0x50867788), UINT32_C(0x43E84D4A), UINT32_C(0x502D870B), UINT32_C(0x8F744749), UINT32_C(0x5F8A8413)}}, {{UINT32_C(0xFAECCFE4), UINT32_C(0x1C41AAAD), UINT32_C(0x21461F41), UINT32_C(0xC324F3B9), UINT32_C(0x4E90C0AB), UINT32_C(0x165ABA3F), UINT32_C(0x5F88E7D3), UINT32_C(0x2F96CED5)}, {UINT32_C(0xC0E52768), UINT32_C(0x8CA366FC), UINT32_C(0xA55249A7), UINT32_C(0x6CCA017C), UINT32_C(0x0F7EBCA2), UINT32_C(0x41ED002F), UINT32_C(0xA2BAF655), UINT32_C(0x0C33B371)}}, {{UINT32_C(0x62B928CE), UINT32_C(0x3B94CD9C), UINT32_C(0x39729345), UINT32_C(0x5BC43A6A), UINT32_C(0xC47D223C), UINT32_C(0x044D0C0F), UINT32_C(0xB0493367), UINT32_C(0x3B64B38D)}, {UINT32_C(0xEB74A6C2), UINT32_C(0x82AFB645), UINT32_C(0xD876D71C), UINT32_C(0x0CB01E22), UINT32_C(0x29C6BCD0), UINT32_C(0xCE2A7DCC), UINT32_C(0xDFD644EC), UINT32_C(0x4753DE1C)}}, {{UINT32_C(0x62188792), UINT32_C(0xE69FC903), UINT32_C(0x4914328B), UINT32_C(0xD91DB9BC), UINT32_C(0x3B68F8D0), UINT32_C(0x44953F4D), UINT32_C(0x0654B283), UINT32_C(0x2950435D)}, {UINT32_C(0xBE88F609), UINT32_C(0xE599A4AE), UINT32_C(0x90F5D10E), UINT32_C(0xF801CD90), UINT32_C(0xD4F1D3D9), UINT32_C(0x0AB78DB1), UINT32_C(0xC0F71ECB), UINT32_C(0x3ED9666A)}}, {{UINT32_C(0xE1E73E59), UINT32_C(0x6046A505), UINT32_C(0xF3B5C2E0), UINT32_C(0x8723A3EC), UINT32_C(0xE22C1555), UINT32_C(0x4BD95BF6), UINT32_C(0x6DA421E9), UINT32_C(0x50DC33DB)}, {UINT32_C(0xF1B01327), UINT32_C(0xCFB51E95), UINT32_C(0x199A8765), UINT32_C(0xE7013F2A), UINT32_C(0x77504B0B), UINT32_C(0xF486FEA7), UINT32_C(0xF9BA61C6), UINT32_C(0x2AF0F7E9)}}, {{UINT32_C(0xBE00B841), UINT32_C(0x9DBA1A02), UINT32_C(0x8BED5F08), UINT32_C(0x488BA455), UINT32_C(0x67F1040E), UINT32_C(0xF6814A64), UINT32_C(0xDC252336), UINT32_C(0x23AC4762)}, {UINT32_C(0xF0ED0577), UINT32_C(0x25040F02), UINT32_C(0xC6FFAE9C), UINT32_C(0x65209B22), UINT32_C(0x485AA0AC), UINT32_C(0xCC441A8C), UINT32_C(0x59D63A8A), UINT32_C(0x10DFACB6)}}, {{UINT32_C(0xC7D86B28), UINT32_C(0xBF4A0569), UINT32_C(0xDBDA9DA4), UINT32_C(0x5CDA94C4), UINT32_C(0x69058335), UINT32_C(0x2235C4CE), UINT32_C(0xD30C89E2), UINT32_C(0x68FA5E7C)}, {UINT32_C(0x59097B5B), UINT32_C(0xBB286D39), UINT32_C(0x9A20BA7E), UINT32_C(0x87DA80BB), UINT32_C(0x56F47E54), UINT32_C(0x85EF865E), UINT32_C(0x74ABFA5B), UINT32_C(0x5BB87867)}}, {{UINT32_C(0xDE2FA36E), UINT32_C(0x5DB14FAB), UINT32_C(0x77775F09), UINT32_C(0x84E3B546), UINT32_C(0xDA951D99), UINT32_C(0xDA734523), UINT32_C(0x3975026E), UINT32_C(0x04A89097)}, {UINT32_C(0xC0D12BE1), UINT32_C(0xB5753599), UINT32_C(0xFB864D61), UINT32_C(0x05670CE9), UINT32_C(0x305BF3CF), UINT32_C(0xB7153502), UINT32_C(0x2E60AF62), UINT32_C(0x7A9BB357)}}, {{UINT32_C(0xC7566DA5), UINT32_C(0xF43CDA07), UINT32_C(0x53FA4196), UINT32_C(0x7FC4C7FC), UINT32_C(0x88DCC9F3), UINT32_C(0x1E20E0ED), UINT32_C(0xFEE23DDA), UINT32_C(0x7317C7E5)}, {UINT32_C(0x43017070), UINT32_C(0x0305E13F), UINT32_C(0x6B1CA7C0), UINT32_C(0x5568410C), UINT32_C(0x104BA029), UINT32_C(0x0E5D55BA), UINT32_C(0x90FD49F8), UINT32_C(0x118B284E)}}, {{UINT32_C(0x8F3C6D8A), UINT32_C(0xCA0F7B5B), UINT32_C(0xAF7ECBF6), UINT32_C(0xAF72DEE0), UINT32_C(0xBB0EC4F1), UINT32_C(0x21C86D85), UINT32_C(0xF0525D17), UINT32_C(0x0303BC47)}, {UINT32_C(0x896FFCC0), UINT32_C(0x6ADCAB9F), UINT32_C(0x24E970CA), UINT32_C(0x65764C45), UINT32_C(0x1C3CA718), UINT32_C(0x0000F14C), UINT32_C(0xD0292587), UINT32_C(0x01CF1DDB)}}, }, { {{UINT32_C(0x86111EBA), UINT32_C(0xEC4FABCC), UINT32_C(0xBBBB793F), UINT32_C(0x599C20B6), UINT32_C(0x5657668F), UINT32_C(0xF74AE747), UINT32_C(0x77BAE892), UINT32_C(0x24AF29B2)}, {UINT32_C(0xCFAC9D5E), UINT32_C(0x47D6876B), UINT32_C(0x24369E14), UINT32_C(0xCACF9F50), UINT32_C(0x6F9CAFEF), UINT32_C(0x8A231D74), UINT32_C(0xB69AAE58), UINT32_C(0x57645A4E)}}, {{UINT32_C(0x489900F6), UINT32_C(0x440A3B15), UINT32_C(0x961AC3C2), UINT32_C(0x4B642FD3), UINT32_C(0xC265B973), UINT32_C(0x3D668599), UINT32_C(0x1139CE78), UINT32_C(0x5FA0E65D)}, {UINT32_C(0x1FAA710E), UINT32_C(0x3FF15AF4), UINT32_C(0xA9422FC0), UINT32_C(0xE45D35CE), UINT32_C(0xBD7BB349), UINT32_C(0x56904C06), UINT32_C(0xE529989D), UINT32_C(0x40C5BEE0)}}, {{UINT32_C(0x70B20298), UINT32_C(0x8FA46861), UINT32_C(0x4838A136), UINT32_C(0xEC629538), UINT32_C(0x137F66D6), UINT32_C(0x23ADE0F6), UINT32_C(0x8EA53E76), UINT32_C(0x1A92E05C)}, {UINT32_C(0x9D51EB7A), UINT32_C(0x51728E27), UINT32_C(0xC4352E35), UINT32_C(0xA6B0B758), UINT32_C(0x37A11B35), UINT32_C(0x84C59331), UINT32_C(0xF66B75C7), UINT32_C(0x3933EFC1)}}, {{UINT32_C(0x66916D0A), UINT32_C(0x7FB68D62), UINT32_C(0xF28A9B14), UINT32_C(0x3325D42E), UINT32_C(0x8592B544), UINT32_C(0x75E83A65), UINT32_C(0x2718628F), UINT32_C(0x524D1CE0)}, {UINT32_C(0x3C584D76), UINT32_C(0x88A110EA), UINT32_C(0x4AC09AAC), UINT32_C(0x6B034AC4), UINT32_C(0x84FD3A36), UINT32_C(0x06488635), UINT32_C(0x87D944E1), UINT32_C(0x516F0EB0)}}, {{UINT32_C(0xDF11D0BB), UINT32_C(0xE2016DA0), UINT32_C(0xB01F6540), UINT32_C(0xB34EB471), UINT32_C(0x165CBB24), UINT32_C(0x13E3D330), UINT32_C(0x7CF7F676), UINT32_C(0x3E755D11)}, {UINT32_C(0x4FEA9A69), UINT32_C(0xD70CF4F8), UINT32_C(0xD18F4337), UINT32_C(0x98F59E0A), UINT32_C(0x826344BA), UINT32_C(0x7CCE7CE6), UINT32_C(0xF4004BBE), UINT32_C(0x30D129D7)}}, {{UINT32_C(0xBA9CB975), UINT32_C(0x016EF317), UINT32_C(0xE4B3AB4D), UINT32_C(0x8EEBED19), UINT32_C(0x170A2570), UINT32_C(0x8C597DF0), UINT32_C(0x5BE6DE70), UINT32_C(0x451538D8)}, {UINT32_C(0x7A64792F), UINT32_C(0x6C711DAC), UINT32_C(0x217EC8FB), UINT32_C(0x8F1896EB), UINT32_C(0x7FE18DED), UINT32_C(0x82E9C20B), UINT32_C(0xB0C5F622), UINT32_C(0x6CEBF4A7)}}, {{UINT32_C(0x49CCC64F), UINT32_C(0xD9403EB5), UINT32_C(0x28B8A3FD), UINT32_C(0x807EBD56), UINT32_C(0x0F291E12), UINT32_C(0xF08BB659), UINT32_C(0x9C3F4432), UINT32_C(0x020D13E3)}, {UINT32_C(0x752BB92E), UINT32_C(0xDA247896), UINT32_C(0x86EAFA7A), UINT32_C(0x99541794), UINT32_C(0x274E36AD), UINT32_C(0x213E94BA), UINT32_C(0x61A71333), UINT32_C(0x4CC0F1FB)}}, {{UINT32_C(0x06478801), UINT32_C(0x19CC11BD), UINT32_C(0x6D18216A), UINT32_C(0x1251562A), UINT32_C(0xCDD307FC), UINT32_C(0x7A5F06BB), UINT32_C(0xFAA9CA2A), UINT32_C(0x4285F6AB)}, {UINT32_C(0x81258996), UINT32_C(0x5A922831), UINT32_C(0x27B8B018), UINT32_C(0x8F7CF8EE), UINT32_C(0x7F81A62D), UINT32_C(0xF030BEF3), UINT32_C(0xCD4FD4E7), UINT32_C(0x417ACBC1)}}, {{UINT32_C(0xEC64412F), UINT32_C(0xCFB0EA58), UINT32_C(0x6091E621), UINT32_C(0x9547B64A), UINT32_C(0xFD0C9815), UINT32_C(0x5EA49C7E), UINT32_C(0xE78B355C), UINT32_C(0x6789055A)}, {UINT32_C(0x77E9A73A), UINT32_C(0x8D743E98), UINT32_C(0x2EA3FA49), UINT32_C(0xB032EA6A), UINT32_C(0xCEAAA33A), UINT32_C(0x52EA3801), UINT32_C(0xF2C3E22B), UINT32_C(0x73B3BB8D)}}, {{UINT32_C(0x7DB9E301), UINT32_C(0xAA2A1291), UINT32_C(0xA1293DD7), UINT32_C(0x7F29770F), UINT32_C(0x59683DEC), UINT32_C(0x3135BB21), UINT32_C(0x7785B505), UINT32_C(0x070F8DF7)}, {UINT32_C(0x37F53677), UINT32_C(0x8F2158EA), UINT32_C(0xABE1AF1C), UINT32_C(0x96CC7B9D), UINT32_C(0x6D6477D6), UINT32_C(0x7F977915), UINT32_C(0xDF370EAF), UINT32_C(0x55DB3922)}}, {{UINT32_C(0xA9DAC7AE), UINT32_C(0x3028C03A), UINT32_C(0xBAE06BE0), UINT32_C(0x16F7DF0D), UINT32_C(0x410D57D9), UINT32_C(0x09548398), UINT32_C(0x1510D51F), UINT32_C(0x5E9C7F43)}, {UINT32_C(0xD07717B3), UINT32_C(0x033B9BE2), UINT32_C(0xEF08AB91), UINT32_C(0x0D5D8116), UINT32_C(0xEEEFE88F), UINT32_C(0xD5A172B1), UINT32_C(0x0996294E), UINT32_C(0x72B1D29F)}}, {{UINT32_C(0xE4D0965C), UINT32_C(0x9E2B79FB), UINT32_C(0xF49D8B8E), UINT32_C(0x01F403EE), UINT32_C(0xCEB12D6A), UINT32_C(0xBD4D2D48), UINT32_C(0x11FB24FB), UINT32_C(0x4D04DD9A)}, {UINT32_C(0xE5C8D24C), UINT32_C(0x7E613EC5), UINT32_C(0xB918E543), UINT32_C(0x568BEFE8), UINT32_C(0xE966DF28), UINT32_C(0xD6456D1E), UINT32_C(0xBAFC71E2), UINT32_C(0x2DDEAD63)}}, {{UINT32_C(0x448D72E9), UINT32_C(0x1D794F92), UINT32_C(0xE7E62BF2), UINT32_C(0x3978052E), UINT32_C(0xE2B92538), UINT32_C(0xF6C7A72E), UINT32_C(0x6EF321F0), UINT32_C(0x43879A88)}, {UINT32_C(0x34F6FFBC), UINT32_C(0x2A823140), UINT32_C(0x35F4C485), UINT32_C(0x26F84E51), UINT32_C(0x028BFA7E), UINT32_C(0xDEE65540), UINT32_C(0x5F033058), UINT32_C(0x56216E9D)}}, {{UINT32_C(0xCBC772EE), UINT32_C(0x31CA5470), UINT32_C(0x811BB5D0), UINT32_C(0xD3621E11), UINT32_C(0x70863D71), UINT32_C(0x501C4C47), UINT32_C(0xD28D6BDD), UINT32_C(0x0564518E)}, {UINT32_C(0xD35B64B9), UINT32_C(0x60E3B89B), UINT32_C(0x6621A688), UINT32_C(0xB4F2599A), UINT32_C(0x3B5E116D), UINT32_C(0x1A8C4508), UINT32_C(0xFABF3125), UINT32_C(0x633EF5CC)}}, {{UINT32_C(0x5D4FF62A), UINT32_C(0x0DB1D251), UINT32_C(0x4B17D658), UINT32_C(0x6CBD00EB), UINT32_C(0xFA1DB737), UINT32_C(0x2FA38212), UINT32_C(0x93A7FA03), UINT32_C(0x07B18CB8)}, {UINT32_C(0x548E5F82), UINT32_C(0x531E47EF), UINT32_C(0x8276963C), UINT32_C(0xAE7B94FD), UINT32_C(0x6181A13A), UINT32_C(0x8055D82A), UINT32_C(0x23B6E361), UINT32_C(0x5725B512)}}, {{UINT32_C(0x6D8B1FFE), UINT32_C(0xD84C7041), UINT32_C(0x5D994200), UINT32_C(0xF68ACA0B), UINT32_C(0x6BB908E2), UINT32_C(0x32BF9944), UINT32_C(0x1AD88DB1), UINT32_C(0x1240A3E6)}, {UINT32_C(0xA92B6472), UINT32_C(0xB0BE96AA), UINT32_C(0xA1B7726C), UINT32_C(0xEF88A155), UINT32_C(0x9349F496), UINT32_C(0x000FD9ED), UINT32_C(0x454A05D9), UINT32_C(0x377DCBAD)}}, }, { {{UINT32_C(0xC04111D2), UINT32_C(0xD0A092CD), UINT32_C(0x338F06D6), UINT32_C(0x5C43A94C), UINT32_C(0x25E964F3), UINT32_C(0x697B4C26), UINT32_C(0x7572CCFD), UINT32_C(0x2CD5A059)}, {UINT32_C(0xB5B523E4), UINT32_C(0xA09FC4D4), UINT32_C(0x4E1E9042), UINT32_C(0x7D8141E8), UINT32_C(0xD637409E), UINT32_C(0x2462512B), UINT32_C(0x7CB2CE75), UINT32_C(0x503F032F)}}, {{UINT32_C(0xBCBF1450), UINT32_C(0xC56F38E3), UINT32_C(0xCF2E5594), UINT32_C(0x09F4FC77), UINT32_C(0x0FCB653A), UINT32_C(0xF449C3E6), UINT32_C(0x64A53C65), UINT32_C(0x6A1FE752)}, {UINT32_C(0x7C039488), UINT32_C(0xFF366FED), UINT32_C(0x8C99A6CB), UINT32_C(0x23F58BA5), UINT32_C(0x8D67F6D6), UINT32_C(0x4B5546C6), UINT32_C(0x178B1668), UINT32_C(0x03405C85)}}, {{UINT32_C(0xC0C86696), UINT32_C(0x969F1B33), UINT32_C(0x13746468), UINT32_C(0x9346D06C), UINT32_C(0xAE0C6D62), UINT32_C(0x68AED3C8), UINT32_C(0x74FE63D5), UINT32_C(0x7B3D5361)}, {UINT32_C(0xC4F4B65D), UINT32_C(0xFEE8416B), UINT32_C(0x554C6D0A), UINT32_C(0xC79BF488), UINT32_C(0xDC402BB0), UINT32_C(0x191D5D27), UINT32_C(0xE087EB9F), UINT32_C(0x31B00167)}}, {{UINT32_C(0xE05D281F), UINT32_C(0xD5FE0979), UINT32_C(0x3485446B), UINT32_C(0x8373AB50), UINT32_C(0x9223681F), UINT32_C(0xCE5258BA), UINT32_C(0xA37BF244), UINT32_C(0x5F82843E)}, {UINT32_C(0xCFC16536), UINT32_C(0x94ED780B), UINT32_C(0xBD477733), UINT32_C(0x6A9739B3), UINT32_C(0xA04A4195), UINT32_C(0x137D68F2), UINT32_C(0x0032BFCE), UINT32_C(0x3A0F27E8)}}, {{UINT32_C(0x358382F9), UINT32_C(0x7EADE421), UINT32_C(0x92E3D912), UINT32_C(0x490B9CA6), UINT32_C(0xF1AFBC2A), UINT32_C(0x040CE73E), UINT32_C(0x11AE91BA), UINT32_C(0x5745D473)}, {UINT32_C(0xCE303B77), UINT32_C(0x625BED61), UINT32_C(0x85B03A1D), UINT32_C(0x85B2A1EB), UINT32_C(0x3D7C02E0), UINT32_C(0x764F62E4), UINT32_C(0xA7AF6DDE), UINT32_C(0x22C2D16F)}}, {{UINT32_C(0xD19377BE), UINT32_C(0x5B985DE6), UINT32_C(0xD8E43A10), UINT32_C(0x0AF85A06), UINT32_C(0x0519F4C6), UINT32_C(0x1465E504), UINT32_C(0xE3E20BA3), UINT32_C(0x5DA01665)}, {UINT32_C(0x675D9E2A), UINT32_C(0xCD9B8E9B), UINT32_C(0x6448A2CD), UINT32_C(0x4C77E1AD), UINT32_C(0x1E5D4465), UINT32_C(0xD6094BAD), UINT32_C(0xC50DB788), UINT32_C(0x4C352951)}}, {{UINT32_C(0xEE5AB903), UINT32_C(0x42581152), UINT32_C(0x63311418), UINT32_C(0xDAD2DBC9), UINT32_C(0xB885E56A), UINT32_C(0xBCA4F70B), UINT32_C(0xB94E0876), UINT32_C(0x1F5DD363)}, {UINT32_C(0x3FFF479E), UINT32_C(0xF9AD5D04), UINT32_C(0xFE06AD2B), UINT32_C(0xEF1176E5), UINT32_C(0x216F77AF), UINT32_C(0x46ACB00A), UINT32_C(0x857C4F78), UINT32_C(0x709CF4EB)}}, {{UINT32_C(0xD0D2FF1C), UINT32_C(0x70CD666E), UINT32_C(0xE7EFE4AD), UINT32_C(0x4BAD4A6A), UINT32_C(0x0FA72024), UINT32_C(0xB43F6C2D), UINT32_C(0xE90C0617), UINT32_C(0x0D78F8E2)}, {UINT32_C(0xF80DCAA7), UINT32_C(0x543B9662), UINT32_C(0xF28ADFAF), UINT32_C(0xB02FB3BC), UINT32_C(0xC51C54C3), UINT32_C(0x26C17651), UINT32_C(0x3D648D88), UINT32_C(0x0815F637)}}, {{UINT32_C(0xAEA98FA6), UINT32_C(0xAC4F43C1), UINT32_C(0xAC4398C6), UINT32_C(0x2D223416), UINT32_C(0xDA5C5070), UINT32_C(0x48B2EEAD), UINT32_C(0xBE666F70), UINT32_C(0x632B65F1)}, {UINT32_C(0x952021BE), UINT32_C(0x971D3BC0), UINT32_C(0x23B2C578), UINT32_C(0x9FDCB7E0), UINT32_C(0x3CC21796), UINT32_C(0x476D4715), UINT32_C(0x95832A94), UINT32_C(0x4015565F)}}, {{UINT32_C(0x13CA725C), UINT32_C(0x8913AFAC), UINT32_C(0xDC18F0D9), UINT32_C(0xA56DC461), UINT32_C(0x10F3AAFE), UINT32_C(0xAC3AC720), UINT32_C(0xC628D69C), UINT32_C(0x5D75567E)}, {UINT32_C(0xEEEA4BF7), UINT32_C(0xC11BE9DC), UINT32_C(0x1C193BD5), UINT32_C(0xAD97FBCA), UINT32_C(0xC58123E8), UINT32_C(0xD1EC5BCE), UINT32_C(0x9C73D4E5), UINT32_C(0x0F6DF930)}}, {{UINT32_C(0xFD759FFD), UINT32_C(0xE80A0ADA), UINT32_C(0x239CAFC0), UINT32_C(0xE52DF94B), UINT32_C(0xFE7A43E9), UINT32_C(0x59640161), UINT32_C(0xDB1A38F0), UINT32_C(0x7A96995C)}, {UINT32_C(0x7CD5011B), UINT32_C(0xA46A1503), UINT32_C(0xAC0E9689), UINT32_C(0x75CFB637), UINT32_C(0x97AAD2BA), UINT32_C(0x27B740CA), UINT32_C(0xEAD2F776), UINT32_C(0x64A0748B)}}, {{UINT32_C(0x0625B3B1), UINT32_C(0xB67E5BB5), UINT32_C(0xC66D2832), UINT32_C(0x2FE19FFB), UINT32_C(0xF70C07CF), UINT32_C(0x47815666), UINT32_C(0xA43E52AB), UINT32_C(0x5A1AA24A)}, {UINT32_C(0x4CAC0E66), UINT32_C(0x04EE11F8), UINT32_C(0x3A3A4836), UINT32_C(0x51E51583), UINT32_C(0xB44F6DEC), UINT32_C(0x46755F49), UINT32_C(0xC1E9B282), UINT32_C(0x6388408B)}}, {{UINT32_C(0x9DE7A6A7), UINT32_C(0xD47AA9A6), UINT32_C(0x189BC9D2), UINT32_C(0xEC94AD9B), UINT32_C(0x8EC0E950), UINT32_C(0xFA89099D), UINT32_C(0x9F64D27F), UINT32_C(0x1B9FC206)}, {UINT32_C(0x0B729DE1), UINT32_C(0x76572484), UINT32_C(0x4BE22EB8), UINT32_C(0xFE9E8E71), UINT32_C(0xF9DB5942), UINT32_C(0x910F0456), UINT32_C(0xC617D82B), UINT32_C(0x4D018459)}}, {{UINT32_C(0xF5516C6F), UINT32_C(0xB082B58A), UINT32_C(0x567A8CF5), UINT32_C(0xFFBA0E73), UINT32_C(0x8A6DD4A0), UINT32_C(0x08FF64CE), UINT32_C(0x69A9F66A), UINT32_C(0x6CF3C89C)}, {UINT32_C(0x62FEB0A7), UINT32_C(0x356782BA), UINT32_C(0x3E2907F9), UINT32_C(0x1A18720D), UINT32_C(0x0BBD9D92), UINT32_C(0xF840FFA3), UINT32_C(0x20926421), UINT32_C(0x41D9EECA)}}, {{UINT32_C(0xB6B08321), UINT32_C(0xCF2E8AAC), UINT32_C(0x010D91C0), UINT32_C(0xC76FBE12), UINT32_C(0x68E35E02), UINT32_C(0x54924750), UINT32_C(0x9AEE00F8), UINT32_C(0x74DBA2E1)}, {UINT32_C(0xC5504E82), UINT32_C(0x94C70D6D), UINT32_C(0xEA1770F7), UINT32_C(0x0BDF415F), UINT32_C(0x3CA6DB0A), UINT32_C(0xDA45B700), UINT32_C(0xE133A980), UINT32_C(0x473C6A04)}}, {{UINT32_C(0x1E188071), UINT32_C(0xD1FF6C1E), UINT32_C(0xEA3F16F8), UINT32_C(0x621A7D3C), UINT32_C(0x6A160F47), UINT32_C(0x60467307), UINT32_C(0x32DC84EE), UINT32_C(0x37CA7D3D)}, {UINT32_C(0x67DDFDB5), UINT32_C(0x54F5F7F6), UINT32_C(0x921BA04B), UINT32_C(0x3A8482F9), UINT32_C(0x1A28E238), UINT32_C(0x842F4950), UINT32_C(0x7214FAFD), UINT32_C(0x3A4DC917)}}, }, { {{UINT32_C(0xEEA25E82), UINT32_C(0xEDD8360C), UINT32_C(0xFB7B7ED0), UINT32_C(0x3DB6D933), UINT32_C(0xABF15199), UINT32_C(0x882F3C0B), UINT32_C(0x516E349D), UINT32_C(0x228664A2)}, {UINT32_C(0xE88173DF), UINT32_C(0x96E6DCF7), UINT32_C(0xD7EC0BC3), UINT32_C(0x382C8D3B), UINT32_C(0x6FA5FA58), UINT32_C(0xFBFF6D21), UINT32_C(0x2F41C959), UINT32_C(0x78003980)}}, {{UINT32_C(0x9D9ACF9C), UINT32_C(0x713BA43B), UINT32_C(0x94876559), UINT32_C(0xF59A252D), UINT32_C(0x437B8ED5), UINT32_C(0x8B310954), UINT32_C(0xE474E98E), UINT32_C(0x76A83790)}, {UINT32_C(0xF6040B05), UINT32_C(0x84C1386A), UINT32_C(0xBF3D8189), UINT32_C(0x69FA9F43), UINT32_C(0xA98D4866), UINT32_C(0x5584164C), UINT32_C(0x3B9045D0), UINT32_C(0x6C89CE1D)}}, {{UINT32_C(0xB522FB28), UINT32_C(0xD6EF7540), UINT32_C(0xBB28D745), UINT32_C(0xDB561B56), UINT32_C(0xEFA58B87), UINT32_C(0xC9F7543E), UINT32_C(0xE9062979), UINT32_C(0x5F02A23B)}, {UINT32_C(0x6809D624), UINT32_C(0xFD3C0C19), UINT32_C(0xA92EB229), UINT32_C(0x94481554), UINT32_C(0xF5147EFB), UINT32_C(0x72D8EC53), UINT32_C(0x0D1BA626), UINT32_C(0x14302661)}}, {{UINT32_C(0x89020800), UINT32_C(0x0B35BD59), UINT32_C(0x430D7DEB), UINT32_C(0x3C6F1527), UINT32_C(0x2FFFA0E0), UINT32_C(0x9BEB3C8E), UINT32_C(0xAFD09A19), UINT32_C(0x7E181B78)}, {UINT32_C(0x3B2F0B49), UINT32_C(0xE82FD957), UINT32_C(0x0BC0F9DA), UINT32_C(0x4C9461B1), UINT32_C(0x2B1C8B85), UINT32_C(0x87D78C41), UINT32_C(0xC1F5BDA1), UINT32_C(0x775BED20)}}, {{UINT32_C(0x16350593), UINT32_C(0x883AE89B), UINT32_C(0x0C19FEC8), UINT32_C(0x85D429CB), UINT32_C(0x5742C36D), UINT32_C(0x5938BDEC), UINT32_C(0xDA8A21B7), UINT32_C(0x2DDBC7EB)}, {UINT32_C(0x07A2E700), UINT32_C(0xA249BDE4), UINT32_C(0xE8BD6215), UINT32_C(0x42A3897C), UINT32_C(0x732FF181), UINT32_C(0x87F30BA7), UINT32_C(0x1B912C57), UINT32_C(0x5385D709)}}, {{UINT32_C(0x288041F5), UINT32_C(0x2B5C555B), UINT32_C(0x1F425866), UINT32_C(0xD3D90040), UINT32_C(0x02E0FA71), UINT32_C(0x37E40CD2), UINT32_C(0x3A386038), UINT32_C(0x08B37F26)}, {UINT32_C(0x5DE1ED78), UINT32_C(0x165BD7FB), UINT32_C(0x0829ECC9), UINT32_C(0x22949E81), UINT32_C(0xBCE3D01F), UINT32_C(0xBB8705CC), UINT32_C(0x1D233CDF), UINT32_C(0x7961BE85)}}, {{UINT32_C(0x7659B477), UINT32_C(0x5D3DBC6B), UINT32_C(0x50EF08EB), UINT32_C(0xFD865779), UINT32_C(0xF34EA1A5), UINT32_C(0x502729E8), UINT32_C(0xD2B64602), UINT32_C(0x1548526E)}, {UINT32_C(0xB91D2675), UINT32_C(0xB13632FD), UINT32_C(0xF7B37397), UINT32_C(0x09A42003), UINT32_C(0xCCFC4532), UINT32_C(0x37D18F37), UINT32_C(0x73C7082C), UINT32_C(0x3FAEF63B)}}, {{UINT32_C(0xE666DB6D), UINT32_C(0x3365445F), UINT32_C(0x339A0076), UINT32_C(0x9051FFF5), UINT32_C(0x9BD6D01D), UINT32_C(0x6167FB76), UINT32_C(0xCA087B41), UINT32_C(0x09737137)}, {UINT32_C(0xB3270BA7), UINT32_C(0xCA2193AE), UINT32_C(0x8F2217B3), UINT32_C(0xEF0744C2), UINT32_C(0xF0DD10D8), UINT32_C(0x3E030D58), UINT32_C(0xCCB4F2F9), UINT32_C(0x667246DB)}}, {{UINT32_C(0x3773EC8C), UINT32_C(0x31F3030E), UINT32_C(0x5AD56010), UINT32_C(0xAF2B3123), UINT32_C(0xB37E9062), UINT32_C(0xFC118587), UINT32_C(0x9C2D5406), UINT32_C(0x52840C2C)}, {UINT32_C(0x6670ACBB), UINT32_C(0xA96D3DFF), UINT32_C(0x772EC6D3), UINT32_C(0xF469982F), UINT32_C(0xA9DF4C88), UINT32_C(0x5BE20628), UINT32_C(0x673633BC), UINT32_C(0x59D01479)}}, {{UINT32_C(0xAFB5083B), UINT32_C(0xC9223750), UINT32_C(0x191C2160), UINT32_C(0xF1EB451E), UINT32_C(0xA38EC005), UINT32_C(0x0D913794), UINT32_C(0x83FD1D18), UINT32_C(0x31062E9E)}, {UINT32_C(0x5F4816AD), UINT32_C(0x070538F5), UINT32_C(0x925F5DA1), UINT32_C(0x90D4855D), UINT32_C(0x22F455B6), UINT32_C(0xC0BBA87B), UINT32_C(0xF48D2AE5), UINT32_C(0x517B5F80)}}, {{UINT32_C(0x3F4FA7CA), UINT32_C(0x0D8B670A), UINT32_C(0x3D114EB2), UINT32_C(0xE29C8849), UINT32_C(0x916A187E), UINT32_C(0x1823780D), UINT32_C(0x65EE66A0), UINT32_C(0x6961C483)}, {UINT32_C(0x62FDC12C), UINT32_C(0x2F6FB20A), UINT32_C(0x0CFDDE0C), UINT32_C(0x51414E5F), UINT32_C(0xDCA39073), UINT32_C(0x16BD56A7), UINT32_C(0x648FFD43), UINT32_C(0x0CFE6DAF)}}, {{UINT32_C(0xAEBA9241), UINT32_C(0x3789F4CA), UINT32_C(0x107777C6), UINT32_C(0xE8056BC6), UINT32_C(0x3CB20826), UINT32_C(0x6EE564C3), UINT32_C(0x45448C69), UINT32_C(0x5DF36347)}, {UINT32_C(0xB22CE624), UINT32_C(0xFD0FA84B), UINT32_C(0xAC753D50), UINT32_C(0x2AA19672), UINT32_C(0x677CC0D0), UINT32_C(0x29A1464F), UINT32_C(0x3CEF5493), UINT32_C(0x7C2237B1)}}, {{UINT32_C(0x24255918), UINT32_C(0x87C2587C), UINT32_C(0x90B35A37), UINT32_C(0x9AA89A0B), UINT32_C(0x10E7CAEF), UINT32_C(0x9932EB78), UINT32_C(0xCDE31568), UINT32_C(0x49278F16)}, {UINT32_C(0x41188ED9), UINT32_C(0xA4D33C61), UINT32_C(0x05AC3A1D), UINT32_C(0xC587BDE0), UINT32_C(0x7248B5E0), UINT32_C(0x2A5C5ACC), UINT32_C(0x8510D2CB), UINT32_C(0x60026A1D)}}, {{UINT32_C(0x6BAF603C), UINT32_C(0xE57CB0C9), UINT32_C(0xAB770AF0), UINT32_C(0x527F28A6), UINT32_C(0x016F2BC1), UINT32_C(0x2850D8E6), UINT32_C(0x936DC2EC), UINT32_C(0x0EC2A46C)}, {UINT32_C(0xD4F23FC2), UINT32_C(0xA0BC5306), UINT32_C(0x53A0130F), UINT32_C(0x6DBEDA26), UINT32_C(0xEE3314B7), UINT32_C(0xB1D52F87), UINT32_C(0x6C234CF5), UINT32_C(0x17168B12)}}, {{UINT32_C(0xDADF17D5), UINT32_C(0x8B8BC181), UINT32_C(0xFAFFA918), UINT32_C(0x31EC3CAD), UINT32_C(0x274E4658), UINT32_C(0x4611A482), UINT32_C(0x73D35EAD), UINT32_C(0x5A9E3652)}, {UINT32_C(0xF4028FC7), UINT32_C(0xBA68825B), UINT32_C(0x62E203F5), UINT32_C(0x142859D5), UINT32_C(0x1C817A9E), UINT32_C(0xCE516AC4), UINT32_C(0x57223F8D), UINT32_C(0x42014682)}}, {{UINT32_C(0xB4B66798), UINT32_C(0x51FBFB2E), UINT32_C(0x0EA9C4EF), UINT32_C(0x3A3F1591), UINT32_C(0xE8814805), UINT32_C(0x3FD3D026), UINT32_C(0xB0C8DFD0), UINT32_C(0x3CA531E4)}, {UINT32_C(0xE585A960), UINT32_C(0x69A6B3F8), UINT32_C(0xBD3F567D), UINT32_C(0x1627CC77), UINT32_C(0x5DB9CFD0), UINT32_C(0x6F4EF430), UINT32_C(0x8D02278A), UINT32_C(0x05B56707)}}, }, { {{UINT32_C(0x10B96338), UINT32_C(0x6663F2F3), UINT32_C(0xCE8CA31C), UINT32_C(0x69373D1F), UINT32_C(0xD67AEC10), UINT32_C(0x3D31C5CF), UINT32_C(0x16F2547E), UINT32_C(0x2FAF5545)}, {UINT32_C(0x1EA2EA64), UINT32_C(0xF6E397D5), UINT32_C(0xEEAEBE7A), UINT32_C(0x2281A0DF), UINT32_C(0xFA2527EC), UINT32_C(0x72E53254), UINT32_C(0x76432155), UINT32_C(0x660D059A)}}, {{UINT32_C(0x2C66D937), UINT32_C(0xD3CA8B13), UINT32_C(0xCD2DF849), UINT32_C(0xC6F34B08), UINT32_C(0xA23A9F73), UINT32_C(0x9AF2C9E3), UINT32_C(0x702388E9), UINT32_C(0x24D44BD9)}, {UINT32_C(0xD1B3DA10), UINT32_C(0x8DA4D6A4), UINT32_C(0x40B93B10), UINT32_C(0xB9FAFBF4), UINT32_C(0xEFCFD2A3), UINT32_C(0xBBE51BB3), UINT32_C(0x1844581D), UINT32_C(0x68BE0395)}}, {{UINT32_C(0x0EA1FAE1), UINT32_C(0xDECABD8C), UINT32_C(0xFDFED7C2), UINT32_C(0xA7499225), UINT32_C(0xFB468B83), UINT32_C(0x08489E35), UINT32_C(0x43D95F9C), UINT32_C(0x5B689344)}, {UINT32_C(0x9D2F522E), UINT32_C(0x9FC8364A), UINT32_C(0x3A5D27A4), UINT32_C(0x114DB31A), UINT32_C(0xE33A9EC8), UINT32_C(0xC6A35992), UINT32_C(0xDC9ACAF6), UINT32_C(0x6FE9EC3B)}}, {{UINT32_C(0xDEAFC64C), UINT32_C(0x98AE2D66), UINT32_C(0xABE706B7), UINT32_C(0x95AAC8EF), UINT32_C(0x223DFA3B), UINT32_C(0xB15A6604), UINT32_C(0xE24B43CB), UINT32_C(0x77DBC24A)}, {UINT32_C(0x8542FA2A), UINT32_C(0x65D6F871), UINT32_C(0x5D326A1A), UINT32_C(0x1093B273), UINT32_C(0xF137AFEF), UINT32_C(0xBA82D607), UINT32_C(0xB9DEA6A7), UINT32_C(0x502B32E3)}}, {{UINT32_C(0x885CA6CE), UINT32_C(0x88906BD6), UINT32_C(0x1D36BFEE), UINT32_C(0x136ADF9A), UINT32_C(0x09AA61E3), UINT32_C(0xF844088C), UINT32_C(0x51BAC299), UINT32_C(0x4E508EA3)}, {UINT32_C(0xEB821936), UINT32_C(0x251ACD26), UINT32_C(0x43D90E10), UINT32_C(0xDF6AD7D5), UINT32_C(0xDE7F14B9), UINT32_C(0xEBCD7046), UINT32_C(0xAB503259), UINT32_C(0x1DB258B1)}}, {{UINT32_C(0x90AD5D55), UINT32_C(0x348E3018), UINT32_C(0x7067806A), UINT32_C(0x0EF6BE73), UINT32_C(0x41627FCC), UINT32_C(0x072C1134), UINT32_C(0xE904F823), UINT32_C(0x48EE7606)}, {UINT32_C(0xD9FD5EF3), UINT32_C(0xEE6AB582), UINT32_C(0x17AB50BC), UINT32_C(0x57765D03), UINT32_C(0xFB7DEC68), UINT32_C(0x1CCFB407), UINT32_C(0x141DF51D), UINT32_C(0x2E1771C7)}}, {{UINT32_C(0xA013284B), UINT32_C(0xCBDD6235), UINT32_C(0x20D07125), UINT32_C(0x4D93FD87), UINT32_C(0xD485418E), UINT32_C(0xB3D055B3), UINT32_C(0xC67ADD2D), UINT32_C(0x4EFB8763)}, {UINT32_C(0x1B2DF427), UINT32_C(0xEC369382), UINT32_C(0x64D0DDF4), UINT32_C(0x25009791), UINT32_C(0x163056C8), UINT32_C(0x9BD42FFC), UINT32_C(0x5B88BEBA), UINT32_C(0x60527792)}}, {{UINT32_C(0x9D82DADF), UINT32_C(0x6D5D6A86), UINT32_C(0x7C24A1CA), UINT32_C(0xC3BA9A16), UINT32_C(0x2E6981CC), UINT32_C(0x838167EC), UINT32_C(0x7E1E4237), UINT32_C(0x7FB5D857)}, {UINT32_C(0x86A40BC7), UINT32_C(0x83B2C2FC), UINT32_C(0x6F9AC4FB), UINT32_C(0x679D2DFC), UINT32_C(0xE45455EF), UINT32_C(0x0B3714CD), UINT32_C(0x394A7797), UINT32_C(0x1C8D833D)}}, {{UINT32_C(0x4E641C9D), UINT32_C(0x1FBF8961), UINT32_C(0xD951DFC8), UINT32_C(0x3330DAB0), UINT32_C(0x051D96DB), UINT32_C(0x9D4EBA4D), UINT32_C(0x23066924), UINT32_C(0x27C6DBF0)}, {UINT32_C(0xDA5D1D79), UINT32_C(0xB950C648), UINT32_C(0x5E9CD783), UINT32_C(0x544D46BA), UINT32_C(0xE69BA3EF), UINT32_C(0xFA77226F), UINT32_C(0xE4DA8423), UINT32_C(0x0A93D219)}}, {{UINT32_C(0x5BDCA76B), UINT32_C(0x7C377CC6), UINT32_C(0xDC58D194), UINT32_C(0x7DF505D7), UINT32_C(0x13E389E1), UINT32_C(0x18A24C0B), UINT32_C(0x6C3972FD), UINT32_C(0x5E0782DD)}, {UINT32_C(0x6680FCE1), UINT32_C(0x97AD477E), UINT32_C(0x3CBAB792), UINT32_C(0x6B07BF22), UINT32_C(0xDC68C9E2), UINT32_C(0xB8DF3C73), UINT32_C(0xC04B2749), UINT32_C(0x33AB5A4C)}}, {{UINT32_C(0x7E79B5A7), UINT32_C(0xD151C762), UINT32_C(0xC82C7B8A), UINT32_C(0xA4356B79), UINT32_C(0x96E0A2E2), UINT32_C(0x931DDDE8), UINT32_C(0x52C54FDC), UINT32_C(0x40378EB2)}, {UINT32_C(0x40C24003), UINT32_C(0xA6BBD5E3), UINT32_C(0x65C34FEA), UINT32_C(0xB4F3246E), UINT32_C(0x9C767A23), UINT32_C(0x780B21ED), UINT32_C(0x52BD7E83), UINT32_C(0x5F1E95FE)}}, {{UINT32_C(0xCF39F9C4), UINT32_C(0x4F3453DF), UINT32_C(0xB8CC2CA6), UINT32_C(0xA3E1CFD1), UINT32_C(0x4B898859), UINT32_C(0xE49BC49C), UINT32_C(0x6C0BF055), UINT32_C(0x4FFD7BD6)}, {UINT32_C(0xD139AD1B), UINT32_C(0x7DE7604C), UINT32_C(0x2A3CE8FE), UINT32_C(0x6973F5EB), UINT32_C(0xF9501ECC), UINT32_C(0xAC66FF97), UINT32_C(0xA97D46CD), UINT32_C(0x3D96F1E2)}}, {{UINT32_C(0x6106EB96), UINT32_C(0x70D5A0D0), UINT32_C(0x398C1FD9), UINT32_C(0x938E038F), UINT32_C(0x1F3A1AA9), UINT32_C(0xE66B7007), UINT32_C(0xF5BD9308), UINT32_C(0x42BDB264)}, {UINT32_C(0x5AF84957), UINT32_C(0x4B3FD754), UINT32_C(0x4E27DC6B), UINT32_C(0x9E3E17FA), UINT32_C(0x51D8560B), UINT32_C(0x384FCACD), UINT32_C(0xF8068C09), UINT32_C(0x42F00D11)}}, {{UINT32_C(0x7D5897D5), UINT32_C(0x794C1E6A), UINT32_C(0xDF72DCA0), UINT32_C(0x4901097F), UINT32_C(0x0B01E4C4), UINT32_C(0xDED5B192), UINT32_C(0x26DD41E9), UINT32_C(0x364FF582)}, {UINT32_C(0x32FCA925), UINT32_C(0xA3F92DCC), UINT32_C(0x207AA09A), UINT32_C(0x8A1FB329), UINT32_C(0xF512AE3A), UINT32_C(0xA9274BD3), UINT32_C(0xC47B9007), UINT32_C(0x161C82BC)}}, {{UINT32_C(0x7AE1175F), UINT32_C(0x482ECE3B), UINT32_C(0xBDD5DC6C), UINT32_C(0x97CAC7E8), UINT32_C(0x9FDA910D), UINT32_C(0x56225309), UINT32_C(0x9FC206B9), UINT32_C(0x52A9893B)}, {UINT32_C(0x05BB5ACA), UINT32_C(0xAD9F2A92), UINT32_C(0xA3B65716), UINT32_C(0xB9EEFB5B), UINT32_C(0x8DB5A8D4), UINT32_C(0xE7BC173B), UINT32_C(0x399DAE9E), UINT32_C(0x6715EC64)}}, {{UINT32_C(0x5E41AC75), UINT32_C(0x780796D1), UINT32_C(0x4FB3A0B4), UINT32_C(0x3E165C78), UINT32_C(0x237103E9), UINT32_C(0x198599BA), UINT32_C(0xFA7ED86B), UINT32_C(0x2C04C3F5)}, {UINT32_C(0xAC9356F0), UINT32_C(0x29547DA8), UINT32_C(0x79EADA37), UINT32_C(0xCB345AB4), UINT32_C(0xA295BF2D), UINT32_C(0x1D15D377), UINT32_C(0x2FDC8131), UINT32_C(0x10292C9D)}}, }, { {{UINT32_C(0x40E1DC7E), UINT32_C(0xADF3B547), UINT32_C(0x1C345D14), UINT32_C(0x420CE2DD), UINT32_C(0x21DC5C2D), UINT32_C(0xC08E3CBE), UINT32_C(0x6F8FCE80), UINT32_C(0x79FDC000)}, {UINT32_C(0xCB105CE7), UINT32_C(0x23EBDF7F), UINT32_C(0x7C6794A8), UINT32_C(0x793FC99D), UINT32_C(0x293E3575), UINT32_C(0x4CA3FB21), UINT32_C(0x7BF73CC8), UINT32_C(0x7FB2ACB9)}}, {{UINT32_C(0x0FC8FCD4), UINT32_C(0x67DB6C90), UINT32_C(0x7EE3B705), UINT32_C(0x22A3DF5F), UINT32_C(0xC7B2EDFF), UINT32_C(0xD50EBF8B), UINT32_C(0x99522FB7), UINT32_C(0x0C701045)}, {UINT32_C(0xAD4F9044), UINT32_C(0x1420CF02), UINT32_C(0xE5B59451), UINT32_C(0xD78DBA23), UINT32_C(0x6AEFD853), UINT32_C(0xDFDC1C7F), UINT32_C(0xDEA1DAAB), UINT32_C(0x560DEE94)}}, {{UINT32_C(0x2167A78B), UINT32_C(0x0F235513), UINT32_C(0x9F441927), UINT32_C(0xCF463702), UINT32_C(0xA3D1505C), UINT32_C(0xD0AE2723), UINT32_C(0xCD9FBFF4), UINT32_C(0x3149D858)}, {UINT32_C(0xF79240FA), UINT32_C(0x2A73913A), UINT32_C(0x252A958B), UINT32_C(0xC904A575), UINT32_C(0x78473D97), UINT32_C(0x10D18190), UINT32_C(0x203BC8C4), UINT32_C(0x42CE7A38)}}, {{UINT32_C(0xFA59BB8B), UINT32_C(0x1D2AD4F2), UINT32_C(0x79F137DD), UINT32_C(0x8234964C), UINT32_C(0x5D02679E), UINT32_C(0x00B63A30), UINT32_C(0x5DD7543D), UINT32_C(0x506C45BE)}, {UINT32_C(0x776BF80C), UINT32_C(0x4378F900), UINT32_C(0xB312F2BB), UINT32_C(0x179558B2), UINT32_C(0xEA37C183), UINT32_C(0x5B15368C), UINT32_C(0xB198E42D), UINT32_C(0x7593B19F)}}, {{UINT32_C(0xDEFA1F48), UINT32_C(0xED723535), UINT32_C(0x87F96EE5), UINT32_C(0x0DAFC48B), UINT32_C(0x91B1B52C), UINT32_C(0x0AEFA3BA), UINT32_C(0xA1ADBEA4), UINT32_C(0x56BA1B33)}, {UINT32_C(0x30A6C905), UINT32_C(0x8A0B6170), UINT32_C(0xB272D12E), UINT32_C(0xC5BA3518), UINT32_C(0x4B6643A9), UINT32_C(0x782100CF), UINT32_C(0x85C5BD2B), UINT32_C(0x12DEE803)}}, {{UINT32_C(0x78FCADD6), UINT32_C(0xDD07D2D5), UINT32_C(0x3B25C523), UINT32_C(0x8CB8E8A8), UINT32_C(0x530919CF), UINT32_C(0x25063508), UINT32_C(0x1E24F7A1), UINT32_C(0x45D3DD54)}, {UINT32_C(0x49DDAF96), UINT32_C(0x296AE893), UINT32_C(0xACE559F5), UINT32_C(0x7EF3CDE0), UINT32_C(0x0D36F87B), UINT32_C(0x9CDF22E4), UINT32_C(0x4AC9A845), UINT32_C(0x19684765)}}, {{UINT32_C(0xC597B7AE), UINT32_C(0x3955B5AB), UINT32_C(0x3AB49731), UINT32_C(0x59F3BA05), UINT32_C(0xF525C6C8), UINT32_C(0xBCA5B117), UINT32_C(0x32050B8D), UINT32_C(0x4969C134)}, {UINT32_C(0x970E8E49), UINT32_C(0x353183D9), UINT32_C(0xE95300CF), UINT32_C(0x3D005213), UINT32_C(0x09022378), UINT32_C(0x595F9C8E), UINT32_C(0x1A445C28), UINT32_C(0x70FA8B47)}}, {{UINT32_C(0xBADB79EA), UINT32_C(0xECC88EE3), UINT32_C(0xFBD8464E), UINT32_C(0x5BDAF68C), UINT32_C(0xB4280334), UINT32_C(0x24AF6A4C), UINT32_C(0x398E5BBE), UINT32_C(0x17A5DE8B)}, {UINT32_C(0x92999E18), UINT32_C(0x300B6DEB), UINT32_C(0x67DEFC2F), UINT32_C(0xA0766918), UINT32_C(0xB19F87FF), UINT32_C(0x4E904450), UINT32_C(0xC2871056), UINT32_C(0x3010AD94)}}, {{UINT32_C(0x461EFCC3), UINT32_C(0x72E747A1), UINT32_C(0x562F923E), UINT32_C(0x329EDF18), UINT32_C(0xD081A4E7), UINT32_C(0x65E021D4), UINT32_C(0xB727B6F4), UINT32_C(0x4B2DBFFF)}, {UINT32_C(0x9C8505AC), UINT32_C(0x5A597A80), UINT32_C(0x562B82D2), UINT32_C(0x13486480), UINT32_C(0xCC8234C3), UINT32_C(0x477FD480), UINT32_C(0x04800C00), UINT32_C(0x6045ABA4)}}, {{UINT32_C(0x9C541035), UINT32_C(0x3E087439), UINT32_C(0x6D9D8B6A), UINT32_C(0x389AA76C), UINT32_C(0x36A21299), UINT32_C(0x68FE5E83), UINT32_C(0x402A32CF), UINT32_C(0x67AC313D)}, {UINT32_C(0x25501A53), UINT32_C(0x996131D2), UINT32_C(0xA77A85F4), UINT32_C(0x5C1B89DE), UINT32_C(0xED6702AD), UINT32_C(0xA9822C84), UINT32_C(0x56609EA0), UINT32_C(0x50F014A4)}}, {{UINT32_C(0xE5A8E91E), UINT32_C(0xF0F8B4E6), UINT32_C(0x1A2FFEFD), UINT32_C(0x734CFF08), UINT32_C(0x27BCB163), UINT32_C(0x9724EE0B), UINT32_C(0x30B8EF68), UINT32_C(0x6AF3808B)}, {UINT32_C(0x126E88FC), UINT32_C(0xE5B3829F), UINT32_C(0x4EE5FD4B), UINT32_C(0x0F441EE3), UINT32_C(0xBFEC4D34), UINT32_C(0x534D2F8C), UINT32_C(0x076E6737), UINT32_C(0x3E1F16DE)}}, {{UINT32_C(0x4ED36E6A), UINT32_C(0x4DB53E8A), UINT32_C(0x4352B22F), UINT32_C(0x49A9EFE9), UINT32_C(0x39CF005C), UINT32_C(0x7829605C), UINT32_C(0xD85DB959), UINT32_C(0x190A8E16)}, {UINT32_C(0x9B073AB3), UINT32_C(0x69981069), UINT32_C(0x8C141AA1), UINT32_C(0x8C264B87), UINT32_C(0x603ED47C), UINT32_C(0x7F614282), UINT32_C(0x9F9B0940), UINT32_C(0x21FD2E7A)}}, {{UINT32_C(0x1EC6BB3D), UINT32_C(0xC5CA10A0), UINT32_C(0x27A9B02B), UINT32_C(0x9403E3F5), UINT32_C(0xFB43F790), UINT32_C(0x9D3D186D), UINT32_C(0x67DC0C00), UINT32_C(0x7855276E)}, {UINT32_C(0xFFFFB14C), UINT32_C(0x053DBB2A), UINT32_C(0x43ACC0A6), UINT32_C(0x26746663), UINT32_C(0x7FFC1C68), UINT32_C(0x1EE7A946), UINT32_C(0x56DBB0DE), UINT32_C(0x14BFAF01)}}, {{UINT32_C(0x849EA674), UINT32_C(0x11C89A47), UINT32_C(0x94A540E6), UINT32_C(0x194FAAF0), UINT32_C(0x6050E4C0), UINT32_C(0xE61163F8), UINT32_C(0xB1A07B76), UINT32_C(0x6939A166)}, {UINT32_C(0x2EF18325), UINT32_C(0x8166CA8E), UINT32_C(0x30C042E2), UINT32_C(0x96112E65), UINT32_C(0x5A394C25), UINT32_C(0xA805CAE0), UINT32_C(0x0392E6BB), UINT32_C(0x45A0DE01)}}, {{UINT32_C(0xB4FAAA56), UINT32_C(0xB89CEE96), UINT32_C(0x529736DE), UINT32_C(0x7A7DC8AE), UINT32_C(0xA727FCF7), UINT32_C(0x9158AA49), UINT32_C(0x1896B9DA), UINT32_C(0x621B8B31)}, {UINT32_C(0x03BEC74B), UINT32_C(0x875930D6), UINT32_C(0xA7A50309), UINT32_C(0x1056DB45), UINT32_C(0xB5657B0E), UINT32_C(0xEE713E04), UINT32_C(0x6FCAD967), UINT32_C(0x2D68155E)}}, {{UINT32_C(0x65B1E2B3), UINT32_C(0x3BB1E9E3), UINT32_C(0x88425BAB), UINT32_C(0x2A615670), UINT32_C(0x62F1BA4A), UINT32_C(0x22F4F32F), UINT32_C(0x88A59642), UINT32_C(0x7B5EC250)}, {UINT32_C(0x42D30049), UINT32_C(0x7B5BA12A), UINT32_C(0x86995BE6), UINT32_C(0x4E6AC055), UINT32_C(0x45EC87AC), UINT32_C(0x04431A04), UINT32_C(0xED94823D), UINT32_C(0x28974ED7)}}, }, { {{UINT32_C(0x12BB5555), UINT32_C(0x59258057), UINT32_C(0xBB7608EE), UINT32_C(0x03141CD8), UINT32_C(0xEF77714B), UINT32_C(0x84EBDC49), UINT32_C(0xB5DC1A5F), UINT32_C(0x6A45FC3A)}, {UINT32_C(0x2FBEEC76), UINT32_C(0x1F6DC205), UINT32_C(0xA920C554), UINT32_C(0x17EB733B), UINT32_C(0x7A28ACDF), UINT32_C(0xDB022C21), UINT32_C(0xA9B62BF1), UINT32_C(0x6AF16156)}}, {{UINT32_C(0x80B472CC), UINT32_C(0x9379D6A8), UINT32_C(0x7BD92F27), UINT32_C(0x6CB08CB0), UINT32_C(0x147E6E12), UINT32_C(0x19B3C353), UINT32_C(0x26827839), UINT32_C(0x3C26CB2F)}, {UINT32_C(0x0CC571E4), UINT32_C(0x98AAC9A7), UINT32_C(0xC3C8FC04), UINT32_C(0x075D05F2), UINT32_C(0xD79621AC), UINT32_C(0x718B55A0), UINT32_C(0x5B94B41B), UINT32_C(0x149FEECF)}}, {{UINT32_C(0x783F9C81), UINT32_C(0x6A150A64), UINT32_C(0x0FB18827), UINT32_C(0x5950C2DF), UINT32_C(0xF15E3A89), UINT32_C(0xF5D75504), UINT32_C(0xFCB4406B), UINT32_C(0x5F92F2F7)}, {UINT32_C(0x6123E858), UINT32_C(0x665F31E7), UINT32_C(0xA95184A3), UINT32_C(0x4E568EA9), UINT32_C(0x505FF0AD), UINT32_C(0x851EEADC), UINT32_C(0x542C3EF8), UINT32_C(0x62AD5BA6)}}, {{UINT32_C(0xC55C23FD), UINT32_C(0x1103859D), UINT32_C(0x695E4E9B), UINT32_C(0x06AB0BD6), UINT32_C(0xDD734990), UINT32_C(0x2CD00D76), UINT32_C(0xB06460E4), UINT32_C(0x5D59C693)}, {UINT32_C(0x1F9C76DA), UINT32_C(0x3BA8F2F0), UINT32_C(0x960F5C0E), UINT32_C(0x08E4A7EC), UINT32_C(0xE4AAB060), UINT32_C(0x79C82AD9), UINT32_C(0x0DF95C43), UINT32_C(0x093D322C)}}, {{UINT32_C(0x0C627547), UINT32_C(0x88AF1258), UINT32_C(0x889A5E12), UINT32_C(0x81E5F197), UINT32_C(0x7CBD84FD), UINT32_C(0x99E0E191), UINT32_C(0xDB0B9711), UINT32_C(0x3024BCE8)}, {UINT32_C(0xDB93B1A2), UINT32_C(0x04075C80), UINT32_C(0x628B0E63), UINT32_C(0x12F30AF8), UINT32_C(0xEB25A4ED), UINT32_C(0xA3514F26), UINT32_C(0x7BCD0873), UINT32_C(0x3D42E489)}}, {{UINT32_C(0x754B236F), UINT32_C(0x0F1C16C6), UINT32_C(0x594F5D3D), UINT32_C(0x717CE487), UINT32_C(0xAFAD77B1), UINT32_C(0x7679C7DA), UINT32_C(0x6F3E724C), UINT32_C(0x51AFD014)}, {UINT32_C(0x3AF6938F), UINT32_C(0xAFC9745C), UINT32_C(0xC4E61CB4), UINT32_C(0xCA12BFA9), UINT32_C(0x9425CCA7), UINT32_C(0x943B5696), UINT32_C(0xB6E48A69), UINT32_C(0x5BD3E65E)}}, {{UINT32_C(0xDEAE74B1), UINT32_C(0x2D23CF78), UINT32_C(0x043BF2F1), UINT32_C(0xA686767E), UINT32_C(0xE464ADE9), UINT32_C(0x3AFED34D), UINT32_C(0x5A6AE80B), UINT32_C(0x1E462073)}, {UINT32_C(0x737F7B66), UINT32_C(0xA86AA408), UINT32_C(0xEAB3B6CE), UINT32_C(0xD67A0B49), UINT32_C(0x275355F3), UINT32_C(0x6FF3CA4F), UINT32_C(0x688F99AB), UINT32_C(0x6F385576)}}, {{UINT32_C(0xFD2F9A72), UINT32_C(0xC9B63343), UINT32_C(0xAC267E8A), UINT32_C(0xBD0A126D), UINT32_C(0x5D2839B5), UINT32_C(0x818BD5D8), UINT32_C(0x0BF5AFCE), UINT32_C(0x1BBAB4CE)}, {UINT32_C(0x4D8B67DE), UINT32_C(0x2827B24A), UINT32_C(0xC34E6642), UINT32_C(0x841F6BD3), UINT32_C(0x5E4A34D4), UINT32_C(0xE9F5C1C2), UINT32_C(0xFDA4177C), UINT32_C(0x4E98795C)}}, {{UINT32_C(0x0763AB04), UINT32_C(0x3C9FF1C2), UINT32_C(0x9832FCFD), UINT32_C(0x4FC1BE61), UINT32_C(0x8BD0363A), UINT32_C(0x5FA50C38), UINT32_C(0xF26206BE), UINT32_C(0x14C9BB2F)}, {UINT32_C(0x1D31880C), UINT32_C(0xAD1A96EB), UINT32_C(0x65DFCF8A), UINT32_C(0xF0A37BC4), UINT32_C(0x3D048FE4), UINT32_C(0x38962729), UINT32_C(0x6480B254), UINT32_C(0x017125C0)}}, {{UINT32_C(0x98D4BAC6), UINT32_C(0x01E819F5), UINT32_C(0x36B99D30), UINT32_C(0xD3686E04), UINT32_C(0x200A4A9D), UINT32_C(0x0C2876FB), UINT32_C(0xE65782D5), UINT32_C(0x45D50C2F)}, {UINT32_C(0x865B7A21), UINT32_C(0xB8316ECE), UINT32_C(0xCC875503), UINT32_C(0xA3ADB90F), UINT32_C(0x98468FB4), UINT32_C(0xD72E864E), UINT32_C(0xDED21F40), UINT32_C(0x13BB23FD)}}, {{UINT32_C(0xC6B96368), UINT32_C(0x653C3C15), UINT32_C(0x2B9C381F), UINT32_C(0x9A42FC2C), UINT32_C(0x69534D92), UINT32_C(0xF06B41B9), UINT32_C(0x3FB7BED2), UINT32_C(0x46F7292E)}, {UINT32_C(0x97D1875E), UINT32_C(0x14A2C420), UINT32_C(0xD3B2DF55), UINT32_C(0x45DFA824), UINT32_C(0x3F2BA72D), UINT32_C(0x59CB7E59), UINT32_C(0xD7D96C98), UINT32_C(0x2EEC65C9)}}, {{UINT32_C(0x49650405), UINT32_C(0x907CD4C8), UINT32_C(0x37E05E06), UINT32_C(0xFC29320A), UINT32_C(0x09E29619), UINT32_C(0x99B4C1DF), UINT32_C(0x34DE993F), UINT32_C(0x74E69BF8)}, {UINT32_C(0x509D9797), UINT32_C(0x62C0F296), UINT32_C(0x5F1EF554), UINT32_C(0x2E6BD4E6), UINT32_C(0x0D0B71B8), UINT32_C(0xE3050641), UINT32_C(0x235DDE6C), UINT32_C(0x29DA0C9D)}}, {{UINT32_C(0x689398C1), UINT32_C(0x3CFBCA4B), UINT32_C(0x40C9DF13), UINT32_C(0x11E58804), UINT32_C(0xBCDF2489), UINT32_C(0x3923A39B), UINT32_C(0x387C8089), UINT32_C(0x3805CCC7)}, {UINT32_C(0x70319AFA), UINT32_C(0xC1B4EB48), UINT32_C(0xCA089604), UINT32_C(0x0A6A5FA4), UINT32_C(0x73139A20), UINT32_C(0x16ABDE54), UINT32_C(0x94BD61B5), UINT32_C(0x7C0055E0)}}, {{UINT32_C(0xCB05A02A), UINT32_C(0xA5AB5CEF), UINT32_C(0x0BFE903B), UINT32_C(0xC0B4E1B4), UINT32_C(0xEAC9E7E8), UINT32_C(0xBA528329), UINT32_C(0x0A2456B6), UINT32_C(0x0266C5A7)}, {UINT32_C(0x5E216EEC), UINT32_C(0x507E9A41), UINT32_C(0xD0F1E440), UINT32_C(0xFCC06B0A), UINT32_C(0xE5C7B26F), UINT32_C(0x6FAEFC8E), UINT32_C(0xB02F85C1), UINT32_C(0x4744CF2E)}}, {{UINT32_C(0x1C291BFC), UINT32_C(0xF5E2B812), UINT32_C(0x2CDCBF7A), UINT32_C(0xC18E791D), UINT32_C(0x46554345), UINT32_C(0xC386B962), UINT32_C(0x067518CD), UINT32_C(0x373E00FB)}, {UINT32_C(0xE950051B), UINT32_C(0xC9BA9DF9), UINT32_C(0xDD6133EE), UINT32_C(0x182CB132), UINT32_C(0x70A3C71C), UINT32_C(0xD6D7F815), UINT32_C(0x7FAFE307), UINT32_C(0x44C5AEBC)}}, {{UINT32_C(0xA9D16080), UINT32_C(0x6C7CE359), UINT32_C(0x1E8B643E), UINT32_C(0xA874386D), UINT32_C(0x07F48E10), UINT32_C(0xA0648129), UINT32_C(0x93E4D619), UINT32_C(0x2A402201)}, {UINT32_C(0xBD383EA6), UINT32_C(0x8B429545), UINT32_C(0xF2880536), UINT32_C(0xC096D593), UINT32_C(0x20E299B9), UINT32_C(0xB4057D6C), UINT32_C(0x38A825FA), UINT32_C(0x303962CE)}}, }, { {{UINT32_C(0x1E1D70D0), UINT32_C(0x9E426EBF), UINT32_C(0xB83529CA), UINT32_C(0x6AEA4DDC), UINT32_C(0x7CC9A07C), UINT32_C(0xF3ECD462), UINT32_C(0xC364772E), UINT32_C(0x7F255C86)}, {UINT32_C(0x5613BEF0), UINT32_C(0x0DF212CF), UINT32_C(0x1309F9D0), UINT32_C(0x771F02A9), UINT32_C(0x805FE1F5), UINT32_C(0xE97BEE39), UINT32_C(0xD93522B9), UINT32_C(0x54A43430)}}, {{UINT32_C(0xCDE4EBBE), UINT32_C(0xC01553BD), UINT32_C(0xA02E56C1), UINT32_C(0xB1928DDC), UINT32_C(0x94A1A417), UINT32_C(0xB91004BA), UINT32_C(0x56CB9C88), UINT32_C(0x44F74BE6)}, {UINT32_C(0x921B62E5), UINT32_C(0x6A7E3E9B), UINT32_C(0x5FBF13C4), UINT32_C(0xF2BF553B), UINT32_C(0x86D55641), UINT32_C(0x51CB776D), UINT32_C(0x6425A3AD), UINT32_C(0x71826BC5)}}, {{UINT32_C(0xC6D70EF9), UINT32_C(0xD6D49F90), UINT32_C(0x29EBA0DD), UINT32_C(0x5BD0DA69), UINT32_C(0x803233EF), UINT32_C(0x0BBA7571), UINT32_C(0x679A17D5), UINT32_C(0x0EB0959E)}, {UINT32_C(0xB8A3D6EC), UINT32_C(0x97818DC2), UINT32_C(0xC687EAA2), UINT32_C(0x09497FB0), UINT32_C(0xA65FA4C0), UINT32_C(0x2E2707EA), UINT32_C(0x7542F472), UINT32_C(0x6A74D4C6)}}, {{UINT32_C(0x1EE0BC40), UINT32_C(0x0D193006), UINT32_C(0x6DC98BA8), UINT32_C(0x7D7BEE19), UINT32_C(0x447C38D2), UINT32_C(0x1AD37C98), UINT32_C(0xB6B4550A), UINT32_C(0x3E163AE1)}, {UINT32_C(0x5BC93243), UINT32_C(0x734E36C9), UINT32_C(0x986C35A8), UINT32_C(0x54E217FD), UINT32_C(0x9E3285E3), UINT32_C(0xF0576FF0), UINT32_C(0x186EE7EB), UINT32_C(0x65C950C8)}}, {{UINT32_C(0x2012D277), UINT32_C(0x1AB12C04), UINT32_C(0x83872384), UINT32_C(0x97CAB84B), UINT32_C(0x1C66FCFD), UINT32_C(0x479C9CF5), UINT32_C(0xF276933E), UINT32_C(0x70ABC8B4)}, {UINT32_C(0xBA4D14F0), UINT32_C(0xE6B15BF7), UINT32_C(0x22E2F5D5), UINT32_C(0xF4060ED3), UINT32_C(0xCDC5462C), UINT32_C(0xA53F3CA0), UINT32_C(0xC6FC3854), UINT32_C(0x593219D4)}}, {{UINT32_C(0x72B6F8A1), UINT32_C(0x9DE69934), UINT32_C(0x19E16B3F), UINT32_C(0xECABAEEE), UINT32_C(0xEDA68D7B), UINT32_C(0x0B537CA5), UINT32_C(0xD3CE55B7), UINT32_C(0x744628BD)}, {UINT32_C(0x98A95308), UINT32_C(0x3A5B2D8E), UINT32_C(0x6758C6C8), UINT32_C(0x74D0CEF1), UINT32_C(0xDA204834), UINT32_C(0x7538198A), UINT32_C(0xA644E880), UINT32_C(0x1E166AAA)}}, {{UINT32_C(0x4674ACF0), UINT32_C(0xE76EE712), UINT32_C(0xDF9DFB4C), UINT32_C(0x40A6F6DE), UINT32_C(0x40C65721), UINT32_C(0x91B0034C), UINT32_C(0xF8E0F5E5), UINT32_C(0x54FE8B8B)}, {UINT32_C(0x75891895), UINT32_C(0x6322CA0F), UINT32_C(0x7D20C522), UINT32_C(0x3D1C821E), UINT32_C(0x08043786), UINT32_C(0x1691407F), UINT32_C(0x14847D58), UINT32_C(0x02C30838)}}, {{UINT32_C(0xB8F0C372), UINT32_C(0x57DEF069), UINT32_C(0x0D5ABF2C), UINT32_C(0x50375DC3), UINT32_C(0x75EDFBC9), UINT32_C(0x22903814), UINT32_C(0xAE37695A), UINT32_C(0x56E39BD7)}, {UINT32_C(0x463D13F2), UINT32_C(0xAB74B187), UINT32_C(0x3CDE8886), UINT32_C(0xC50CB8A2), UINT32_C(0xB35F7D59), UINT32_C(0x1EFBD1CF), UINT32_C(0x1057AE42), UINT32_C(0x1296C482)}}, {{UINT32_C(0xC347E3FB), UINT32_C(0xA350B57B), UINT32_C(0xADF65129), UINT32_C(0x4312EB75), UINT32_C(0x7F9A6C9E), UINT32_C(0xD9A7E2F4), UINT32_C(0x9BFDCB4D), UINT32_C(0x5493AF7B)}, {UINT32_C(0x9AC0E58E), UINT32_C(0x90A443DD), UINT32_C(0xC6F3BEEF), UINT32_C(0x9777D58A), UINT32_C(0x965EC900), UINT32_C(0x12F00913), UINT32_C(0x480126DA), UINT32_C(0x2F6C5B59)}}, {{UINT32_C(0xBAD8C051), UINT32_C(0x70B907FC), UINT32_C(0xD3B4F608), UINT32_C(0x54492D6A), UINT32_C(0x2E096D9F), UINT32_C(0xE3B46F1B), UINT32_C(0x747D472A), UINT32_C(0x522AD6D1)}, {UINT32_C(0x02DAB5E5), UINT32_C(0x8FCD1616), UINT32_C(0x357B1C85), UINT32_C(0xD3BA292F), UINT32_C(0x2704F072), UINT32_C(0xA6DB50CD), UINT32_C(0x8341AA73), UINT32_C(0x63488DDF)}}, {{UINT32_C(0x0FE2AAAB), UINT32_C(0x99100A3D), UINT32_C(0x8EA44560), UINT32_C(0x7D30C4E9), UINT32_C(0x2B4C776D), UINT32_C(0xBA458C67), UINT32_C(0xBBA4D85E), UINT32_C(0x2EC11420)}, {UINT32_C(0x7A7AEC55), UINT32_C(0xB1D9FBA2), UINT32_C(0x7665AAE5), UINT32_C(0x432AB2AA), UINT32_C(0xF3BC7043), UINT32_C(0xD2755948), UINT32_C(0x82510EAD), UINT32_C(0x2FC331BB)}}, {{UINT32_C(0x46253DB1), UINT32_C(0xAAF11CF9), UINT32_C(0xB0DF307C), UINT32_C(0xEB025AED), UINT32_C(0x7A82ADEE), UINT32_C(0xCB7C22A5), UINT32_C(0x9C5FA97B), UINT32_C(0x7316C390)}, {UINT32_C(0xF518067C), UINT32_C(0x91620554), UINT32_C(0x3C96A804), UINT32_C(0x20A438AE), UINT32_C(0x5B0C090C), UINT32_C(0xC4F9DCDF), UINT32_C(0x6E5C1B45), UINT32_C(0x77C512DB)}}, {{UINT32_C(0xFDD09EDE), UINT32_C(0xC981E682), UINT32_C(0xBBB3F57D), UINT32_C(0xC3EB36B7), UINT32_C(0xD12BF450), UINT32_C(0xA07369C6), UINT32_C(0xCE017845), UINT32_C(0x16627566)}, {UINT32_C(0x9494AF62), UINT32_C(0xFD8DEC90), UINT32_C(0x53FD4B22), UINT32_C(0x7E793096), UINT32_C(0xC8AAEAE9), UINT32_C(0x21B8E665), UINT32_C(0x18BC33C0), UINT32_C(0x526FA318)}}, {{UINT32_C(0x853A2647), UINT32_C(0xF55D32BF), UINT32_C(0xCDAEE8FE), UINT32_C(0xD873ED6C), UINT32_C(0x80E52622), UINT32_C(0xA3579E2B), UINT32_C(0x33D16FE8), UINT32_C(0x03871ABA)}, {UINT32_C(0x69925EDF), UINT32_C(0x714804AC), UINT32_C(0xF2B964FF), UINT32_C(0x0340755F), UINT32_C(0xDA0D1A07), UINT32_C(0x93830F98), UINT32_C(0xF7FB1E16), UINT32_C(0x2CAB201E)}}, {{UINT32_C(0x22A8AF77), UINT32_C(0x26DE3A3A), UINT32_C(0xB45BA630), UINT32_C(0x0E77C3DC), UINT32_C(0xFC86E7D1), UINT32_C(0x34F00017), UINT32_C(0x1B62F7F2), UINT32_C(0x796ABE2F)}, {UINT32_C(0x1663B5B1), UINT32_C(0x9FA09277), UINT32_C(0x9B2FB9AC), UINT32_C(0xFFFDC93F), UINT32_C(0x6B340D75), UINT32_C(0x03AECD1A), UINT32_C(0x314DCCEA), UINT32_C(0x5D55A168)}}, {{UINT32_C(0x747DBD0C), UINT32_C(0x678AEF02), UINT32_C(0xD47A6C09), UINT32_C(0xF0D47C1C), UINT32_C(0x3FDD1681), UINT32_C(0x6C2AC72F), UINT32_C(0x6D789D3A), UINT32_C(0x750E7064)}, {UINT32_C(0xAEBEDD58), UINT32_C(0x3F970AFE), UINT32_C(0xE3540951), UINT32_C(0x6BBA7956), UINT32_C(0x3E71F6AF), UINT32_C(0x7CC461B2), UINT32_C(0xC45FED28), UINT32_C(0x7E51E548)}}, }, { {{UINT32_C(0x2CE2CBE5), UINT32_C(0x4A598EFB), UINT32_C(0x89C9A51B), UINT32_C(0x774CDE0A), UINT32_C(0xCA907F34), UINT32_C(0x2D003680), UINT32_C(0x9D3C7D97), UINT32_C(0x62C32DCA)}, {UINT32_C(0xB3054D17), UINT32_C(0x37B3A90F), UINT32_C(0x67E58A5A), UINT32_C(0x1423574C), UINT32_C(0x4859FA49), UINT32_C(0xF1D3BB1A), UINT32_C(0x3F5AFA63), UINT32_C(0x25F0AF1C)}}, {{UINT32_C(0x1FE53AC9), UINT32_C(0xD3BF7F62), UINT32_C(0xCBCE6164), UINT32_C(0xCE2B67C3), UINT32_C(0x95341024), UINT32_C(0xE081C576), UINT32_C(0x9A70ECAB), UINT32_C(0x32B0EF5D)}, {UINT32_C(0x3BE1E5CE), UINT32_C(0x3EC93C85), UINT32_C(0xA0CB7DCD), UINT32_C(0xE25F54ED), UINT32_C(0x517965B2), UINT32_C(0x9D6B57D7), UINT32_C(0x129B0B27), UINT32_C(0x159F7AB0)}}, {{UINT32_C(0xEEFB67F3), UINT32_C(0xAEF88E95), UINT32_C(0xE0316AB2), UINT32_C(0xEAEB2889), UINT32_C(0xC2CB6753), UINT32_C(0x1491881F), UINT32_C(0x702789D0), UINT32_C(0x67DCDF28)}, {UINT32_C(0x11C0F3FD), UINT32_C(0x8282E0A7), UINT32_C(0x01BA273D), UINT32_C(0x9CDCFDB8), UINT32_C(0x26279B95), UINT32_C(0x6BF1E043), UINT32_C(0x85852777), UINT32_C(0x0D42AAC6)}}, {{UINT32_C(0x608981AB), UINT32_C(0xC4CE393E), UINT32_C(0x52141CB0), UINT32_C(0x210E20F8), UINT32_C(0x6B9234B5), UINT32_C(0x22C2586D), UINT32_C(0x4366750E), UINT32_C(0x52F1B366)}, {UINT32_C(0x760AFA55), UINT32_C(0xE38ED0D9), UINT32_C(0xB5D61A08), UINT32_C(0xA43FF25A), UINT32_C(0xB5E21691), UINT32_C(0x0BE3A406), UINT32_C(0xFD4E17B0), UINT32_C(0x37B47A28)}}, {{UINT32_C(0x4C2C65C2), UINT32_C(0xC46DC6D4), UINT32_C(0xC54BE778), UINT32_C(0x2A0B452C), UINT32_C(0xF727070E), UINT32_C(0xAF113693), UINT32_C(0xC68D13A3), UINT32_C(0x7B229CD8)}, {UINT32_C(0x02D43E4B), UINT32_C(0x0F63097E), UINT32_C(0x55627FD8), UINT32_C(0x912F8D33), UINT32_C(0x2A0DD9AE), UINT32_C(0x1EBF3961), UINT32_C(0xF0294B2D), UINT32_C(0x7FD33FDE)}}, {{UINT32_C(0xD0CC6D9F), UINT32_C(0xC72411F5), UINT32_C(0x9B92FF84), UINT32_C(0x66E04C90), UINT32_C(0xE1C033B6), UINT32_C(0x0678B4F8), UINT32_C(0xE49A972A), UINT32_C(0x5A99F270)}, {UINT32_C(0xD265A4DF), UINT32_C(0x3743BCD8), UINT32_C(0xCE0404C3), UINT32_C(0x7BD6DDF4), UINT32_C(0x131750A5), UINT32_C(0x4043767F), UINT32_C(0x9DD65652), UINT32_C(0x4A7D8983)}}, {{UINT32_C(0x12B7822D), UINT32_C(0x535BC784), UINT32_C(0xF1F9B703), UINT32_C(0xDD32DD67), UINT32_C(0x2EAA2A1C), UINT32_C(0xFFDBF0EB), UINT32_C(0xF64E9822), UINT32_C(0x497C09FA)}, {UINT32_C(0x32EE2A36), UINT32_C(0x18E717E9), UINT32_C(0x583949B1), UINT32_C(0xF01CC4F5), UINT32_C(0x0A168755), UINT32_C(0x222EE974), UINT32_C(0x00C81EC9), UINT32_C(0x0CD14CD5)}}, {{UINT32_C(0x14C79CDC), UINT32_C(0x7AE0BD11), UINT32_C(0x6DC08C80), UINT32_C(0x67323D1A), UINT32_C(0x0EF32432), UINT32_C(0x2FD1ABC7), UINT32_C(0xB0E08EBF), UINT32_C(0x65923246)}, {UINT32_C(0xC0754ECE), UINT32_C(0x0A9FD3D7), UINT32_C(0x5F8644FA), UINT32_C(0xE76B2624), UINT32_C(0x0F8BB385), UINT32_C(0xF1F0BEBA), UINT32_C(0xFC96778F), UINT32_C(0x73251F03)}}, {{UINT32_C(0xD08795A9), UINT32_C(0x197150DE), UINT32_C(0xFBB8B9CF), UINT32_C(0xAD6935AE), UINT32_C(0x3B2B9EFB), UINT32_C(0x72118682), UINT32_C(0xBC2B7240), UINT32_C(0x265B288D)}, {UINT32_C(0x2F78C431), UINT32_C(0x7BF2EB36), UINT32_C(0xF2A6E469), UINT32_C(0xF03B83CA), UINT32_C(0x4740E74B), UINT32_C(0x21159256), UINT32_C(0x0490F0B9), UINT32_C(0x35BE5735)}}, {{UINT32_C(0x806C1CAE), UINT32_C(0x207F33B2), UINT32_C(0xDAC5ADE0), UINT32_C(0x04249127), UINT32_C(0x1CC59DE7), UINT32_C(0xC4CCF33E), UINT32_C(0x272BD6D7), UINT32_C(0x2A17B520)}, {UINT32_C(0xB48F6585), UINT32_C(0xC36F6B3C), UINT32_C(0x0861ACF5), UINT32_C(0xD32A7379), UINT32_C(0x2C3291C6), UINT32_C(0x28A12ECB), UINT32_C(0xF02A88D0), UINT32_C(0x0E945F95)}}, {{UINT32_C(0xD3B3117B), UINT32_C(0x4836EC01), UINT32_C(0xA4C2FD72), UINT32_C(0x4C197454), UINT32_C(0xF9897721), UINT32_C(0x96FCED51), UINT32_C(0x5828C97D), UINT32_C(0x14202858)}, {UINT32_C(0x774755B9), UINT32_C(0xCA7ACED8), UINT32_C(0x97252559), UINT32_C(0x460FF582), UINT32_C(0x5796DD63), UINT32_C(0xAAE45776), UINT32_C(0x346DDBF5), UINT32_C(0x711C916E)}}, {{UINT32_C(0x5E203692), UINT32_C(0xA60E2E7B), UINT32_C(0xF3BF2A45), UINT32_C(0xCFC72FEA), UINT32_C(0x72AC0436), UINT32_C(0x78729D28), UINT32_C(0x29ABF199), UINT32_C(0x3E16DD8B)}, {UINT32_C(0x15A41F3D), UINT32_C(0xB1705AA6), UINT32_C(0x308AB87C), UINT32_C(0x8C7512FE), UINT32_C(0x03995381), UINT32_C(0xA27411C5), UINT32_C(0xA780CED3), UINT32_C(0x3142403C)}}, {{UINT32_C(0xF1718C7F), UINT32_C(0xE4473E94), UINT32_C(0xA3CAB6CB), UINT32_C(0x601BC194), UINT32_C(0x581D491D), UINT32_C(0x8F3540F8), UINT32_C(0x43C15321), UINT32_C(0x456A9B7C)}, {UINT32_C(0x593BB7ED), UINT32_C(0x6F335A2D), UINT32_C(0x7D791514), UINT32_C(0xB6D5A23F), UINT32_C(0x79235EAD), UINT32_C(0x976D2F83), UINT32_C(0x44775C97), UINT32_C(0x7D02EA0F)}}, {{UINT32_C(0xE5EC268E), UINT32_C(0x322DBC8C), UINT32_C(0xBE14BF5C), UINT32_C(0x1F2F6050), UINT32_C(0xEACF6A50), UINT32_C(0x58AC6397), UINT32_C(0xA5401081), UINT32_C(0x4167CBD5)}, {UINT32_C(0xEE5B4BF5), UINT32_C(0x8E6F06A1), UINT32_C(0x6B2F790F), UINT32_C(0x1A6073D5), UINT32_C(0x4F901250), UINT32_C(0x1C09FF3D), UINT32_C(0xE6B40DF4), UINT32_C(0x286AF8D7)}}, {{UINT32_C(0x06BD53FF), UINT32_C(0xF74C8057), UINT32_C(0xE5788F0D), UINT32_C(0x4FCE7281), UINT32_C(0x3D015E6B), UINT32_C(0xD6A867AC), UINT32_C(0x6E185A42), UINT32_C(0x04AEC38D)}, {UINT32_C(0x083D65CB), UINT32_C(0x8DC12B74), UINT32_C(0x82966668), UINT32_C(0xDB1AA8AC), UINT32_C(0x28AF1B90), UINT32_C(0xBD2233BF), UINT32_C(0x172CCA11), UINT32_C(0x544569A7)}}, {{UINT32_C(0x149BD0BD), UINT32_C(0x9C56FCA8), UINT32_C(0xA05F8E44), UINT32_C(0x2B4EC788), UINT32_C(0x92478943), UINT32_C(0x1569CF6D), UINT32_C(0x57380986), UINT32_C(0x67E373E8)}, {UINT32_C(0xED3C14DB), UINT32_C(0xF5CC8232), UINT32_C(0xF52EAF83), UINT32_C(0xE3D184B0), UINT32_C(0x0BC64038), UINT32_C(0x195D4137), UINT32_C(0x778C3C20), UINT32_C(0x77994388)}}, }, { {{UINT32_C(0xA0CC77AA), UINT32_C(0x3DAA0C47), UINT32_C(0x7C69CDF0), UINT32_C(0xB9794E74), UINT32_C(0x4549F5D4), UINT32_C(0x3610E50B), UINT32_C(0xB8A112CA), UINT32_C(0x262CA564)}, {UINT32_C(0x554E8714), UINT32_C(0xD5EC795E), UINT32_C(0x717EBEF3), UINT32_C(0x73EE5502), UINT32_C(0x1947A478), UINT32_C(0xE36E8A1A), UINT32_C(0x42ADC59D), UINT32_C(0x3FBE43A3)}}, {{UINT32_C(0x021FBCBE), UINT32_C(0x4DE78909), UINT32_C(0x0BBBB324), UINT32_C(0xA76A5EE2), UINT32_C(0xCD67810B), UINT32_C(0x5B86519A), UINT32_C(0x3710A4EE), UINT32_C(0x4CCA44A2)}, {UINT32_C(0xCD1F8BEC), UINT32_C(0xD79A121D), UINT32_C(0xDC9CA10E), UINT32_C(0x2E12A772), UINT32_C(0x8C9E9640), UINT32_C(0xE301CA3B), UINT32_C(0xB731A957), UINT32_C(0x4B25FE18)}}, {{UINT32_C(0xF4AD7264), UINT32_C(0xA05DA2CD), UINT32_C(0x076977A5), UINT32_C(0x31336489), UINT32_C(0xF2E576A8), UINT32_C(0xC1D269BE), UINT32_C(0x7532203F), UINT32_C(0x1E877ADC)}, {UINT32_C(0x8B92972C), UINT32_C(0x9C9961BC), UINT32_C(0x6A14D810), UINT32_C(0x7BA07272), UINT32_C(0x06913136), UINT32_C(0xE51095A9), UINT32_C(0x30E0EA8C), UINT32_C(0x46748969)}}, {{UINT32_C(0x3C73BA49), UINT32_C(0xDB8EF346), UINT32_C(0x3720570D), UINT32_C(0xBF221312), UINT32_C(0x605DB0D6), UINT32_C(0xC07B3639), UINT32_C(0x300336A3), UINT32_C(0x44FCEFA6)}, {UINT32_C(0x2D234592), UINT32_C(0x121FAC5C), UINT32_C(0x44E367D7), UINT32_C(0x901DEE88), UINT32_C(0x1CAA6A3A), UINT32_C(0x5B5F3DD6), UINT32_C(0xAC2F6E64), UINT32_C(0x72E474EC)}}, {{UINT32_C(0xF55BE61C), UINT32_C(0x15690BEE), UINT32_C(0xDF2678A2), UINT32_C(0xE42B945E), UINT32_C(0x3B7B1776), UINT32_C(0x60A5C8AA), UINT32_C(0xEB9AB938), UINT32_C(0x16103FBC)}, {UINT32_C(0x87AD06AB), UINT32_C(0x79722A1E), UINT32_C(0xD6B632A2), UINT32_C(0xD7B509F6), UINT32_C(0x3B69EB40), UINT32_C(0x8C4E8B2E), UINT32_C(0x14DB2225), UINT32_C(0x6A509583)}}, {{UINT32_C(0x93B78659), UINT32_C(0x169F35D8), UINT32_C(0x8EFF83AD), UINT32_C(0x989B04D2), UINT32_C(0xA6AE4806), UINT32_C(0x72CF7338), UINT32_C(0xF4AAA524), UINT32_C(0x6E156C84)}, {UINT32_C(0xA1ED5CB2), UINT32_C(0x33A608ED), UINT32_C(0xC3D28716), UINT32_C(0xCE274A64), UINT32_C(0x45F0435F), UINT32_C(0xFCF1B170), UINT32_C(0x1653D6F6), UINT32_C(0x101D1BDB)}}, {{UINT32_C(0x2E5A67D9), UINT32_C(0x45BC931D), UINT32_C(0x697DA479), UINT32_C(0xAFF02C11), UINT32_C(0x2EA3E6E1), UINT32_C(0x7C7972A3), UINT32_C(0x5E97BB90), UINT32_C(0x71A17D50)}, {UINT32_C(0x19AD4C5E), UINT32_C(0x962E84F2), UINT32_C(0x692020BE), UINT32_C(0xBB8C9FC7), UINT32_C(0xE7B36665), UINT32_C(0xA78FDF2C), UINT32_C(0x26F92E33), UINT32_C(0x7AC84ED4)}}, {{UINT32_C(0xC3C9E5C1), UINT32_C(0xBD85A9EE), UINT32_C(0x6ED2FD6A), UINT32_C(0x72030BAA), UINT32_C(0x39CFFB89), UINT32_C(0xB67185AB), UINT32_C(0x833BF770), UINT32_C(0x3E2E51A4)}, {UINT32_C(0x5E27D5BB), UINT32_C(0x248FA348), UINT32_C(0x2E6D3DCF), UINT32_C(0xF8D43596), UINT32_C(0x0C8DAF81), UINT32_C(0x07F5B93C), UINT32_C(0xAD2FC97D), UINT32_C(0x6A7FFA1D)}}, {{UINT32_C(0xFAEA33F1), UINT32_C(0xFF308FAE), UINT32_C(0x3CC4C7CF), UINT32_C(0x5F29DFFB), UINT32_C(0xECC5A2B9), UINT32_C(0xB9AD4527), UINT32_C(0x048D4B38), UINT32_C(0x08B95AF6)}, {UINT32_C(0xDEC152BB), UINT32_C(0x56BC43A8), UINT32_C(0x3849D869), UINT32_C(0xD1147B9A), UINT32_C(0xD02AF3B7), UINT32_C(0xFE5020C2), UINT32_C(0xB918496E), UINT32_C(0x54C02B44)}}, {{UINT32_C(0x0B27468D), UINT32_C(0x1611ECFD), UINT32_C(0x0513A562), UINT32_C(0x4AFCE329), UINT32_C(0x2FE74EED), UINT32_C(0x982782FD), UINT32_C(0x17ADD2EA), UINT32_C(0x66AC58BF)}, {UINT32_C(0x613581D4), UINT32_C(0x8277BC2D), UINT32_C(0x988D1498), UINT32_C(0x0BF5BF0C), UINT32_C(0x55C984CB), UINT32_C(0x8A37134D), UINT32_C(0x92211390), UINT32_C(0x409A79CC)}}, {{UINT32_C(0x816F0462), UINT32_C(0x8C0081AE), UINT32_C(0x5A68BFC2), UINT32_C(0xB431DC24), UINT32_C(0x5F78C8A1), UINT32_C(0x25C769C6), UINT32_C(0xB382AF14), UINT32_C(0x3BE0458D)}, {UINT32_C(0xA171ADF2), UINT32_C(0x10583083), UINT32_C(0x37F7C39F), UINT32_C(0xBA5D5325), UINT32_C(0x5EAC7585), UINT32_C(0x76B03B94), UINT32_C(0x9C2DF2C6), UINT32_C(0x76159AAC)}}, {{UINT32_C(0x918E0332), UINT32_C(0x886C73BA), UINT32_C(0xD24B5B52), UINT32_C(0xF6FEC62A), UINT32_C(0x36B4D23A), UINT32_C(0xB98759B4), UINT32_C(0x5480ACF3), UINT32_C(0x5EC5B3FE)}, {UINT32_C(0x6DD175BF), UINT32_C(0x30FF297D), UINT32_C(0x75F2B9C3), UINT32_C(0x501DE744), UINT32_C(0xF19230C5), UINT32_C(0xDEBE47CA), UINT32_C(0x32BBBB62), UINT32_C(0x7401F209)}}, {{UINT32_C(0x22496D1E), UINT32_C(0x80712E47), UINT32_C(0xDA80AF1D), UINT32_C(0x36A0EF37), UINT32_C(0x940E5E9F), UINT32_C(0xAF6CA51C), UINT32_C(0x722D9D22), UINT32_C(0x74E17B6F)}, {UINT32_C(0xB8B3AE1B), UINT32_C(0xCB70B878), UINT32_C(0x07DF974C), UINT32_C(0xBF8B9A0B), UINT32_C(0xF68A4BF4), UINT32_C(0x89FCC996), UINT32_C(0x6EB0FB2E), UINT32_C(0x46F581E8)}}, {{UINT32_C(0x67137153), UINT32_C(0xBCE0BD6C), UINT32_C(0x75F64B78), UINT32_C(0xAD3E92B3), UINT32_C(0xFD047DD9), UINT32_C(0x6454CD1D), UINT32_C(0x612AE472), UINT32_C(0x181C93EB)}, {UINT32_C(0x23A529C3), UINT32_C(0xE575307E), UINT32_C(0x59C09EB5), UINT32_C(0xB9C43A0B), UINT32_C(0xAA805840), UINT32_C(0xFD233A68), UINT32_C(0xA122FFB9), UINT32_C(0x067C442E)}}, {{UINT32_C(0x2CD6762E), UINT32_C(0xE1F3F76F), UINT32_C(0x9764B53A), UINT32_C(0xFB68650F), UINT32_C(0xF1224580), UINT32_C(0x4E90AC72), UINT32_C(0x127EED48), UINT32_C(0x2BF68F01)}, {UINT32_C(0x94D389A0), UINT32_C(0xE6B4B409), UINT32_C(0xD44593D6), UINT32_C(0xD7BC8108), UINT32_C(0x48A86677), UINT32_C(0xDCF03991), UINT32_C(0xCEBCE3C7), UINT32_C(0x4A52D961)}}, {{UINT32_C(0xBAA873EA), UINT32_C(0x55734AB5), UINT32_C(0x7871F323), UINT32_C(0x506DE4CF), UINT32_C(0x578612C0), UINT32_C(0x7C3F8B00), UINT32_C(0x9243C9E8), UINT32_C(0x730D4B8A)}, {UINT32_C(0xD385F6BD), UINT32_C(0xA3290689), UINT32_C(0x913596F5), UINT32_C(0xAF688C6A), UINT32_C(0xB646BE23), UINT32_C(0x0A2D89B5), UINT32_C(0xF63A6029), UINT32_C(0x31891165)}}, }, { {{UINT32_C(0x579583C0), UINT32_C(0x331F9E57), UINT32_C(0x69C65DA2), UINT32_C(0xE92ABADF), UINT32_C(0xA5B8B057), UINT32_C(0xC796FBEC), UINT32_C(0x312D1E89), UINT32_C(0x52E6F9C9)}, {UINT32_C(0xDA68DFD3), UINT32_C(0x0318B1DF), UINT32_C(0xA1CAC4F1), UINT32_C(0x8BAA2EB3), UINT32_C(0xBEE7D6E1), UINT32_C(0x0CDC89A2), UINT32_C(0x22AB50F4), UINT32_C(0x6102DE7A)}}, {{UINT32_C(0xE20C707A), UINT32_C(0x02003D83), UINT32_C(0x28289D89), UINT32_C(0xD819249C), UINT32_C(0x72053FF8), UINT32_C(0x3FBC00B1), UINT32_C(0xDF40D261), UINT32_C(0x0249C43C)}, {UINT32_C(0xD8F064AF), UINT32_C(0x8794EEAC), UINT32_C(0xDC9F0631), UINT32_C(0xE2359E70), UINT32_C(0xADA310D0), UINT32_C(0xD1603647), UINT32_C(0xEDC888EC), UINT32_C(0x6A9E3785)}}, {{UINT32_C(0xEC41908E), UINT32_C(0xF332B384), UINT32_C(0xBDE4760B), UINT32_C(0xF3274472), UINT32_C(0x140D0EF4), UINT32_C(0x96185E89), UINT32_C(0x90E698E7), UINT32_C(0x56462089)}, {UINT32_C(0xF2E64396), UINT32_C(0x841A31C5), UINT32_C(0x03C4118F), UINT32_C(0x8F494CA5), UINT32_C(0x1A188305), UINT32_C(0x0C98A4C3), UINT32_C(0x98AAB1AB), UINT32_C(0x1C4B5F62)}}, {{UINT32_C(0x5D0D8381), UINT32_C(0xDDEEEBF8), UINT32_C(0x89044363), UINT32_C(0xD1616F48), UINT32_C(0x21616A13), UINT32_C(0x2EE41D47), UINT32_C(0x4BC769FC), UINT32_C(0x2DCE6110)}, {UINT32_C(0x16C1C468), UINT32_C(0xE3707A01), UINT32_C(0x969AF612), UINT32_C(0x3B674187), UINT32_C(0x1E0671CC), UINT32_C(0xB64BD4D7), UINT32_C(0xB98C297C), UINT32_C(0x7EF01DBA)}}, {{UINT32_C(0x815381AC), UINT32_C(0x91DCBF99), UINT32_C(0x38B67B97), UINT32_C(0x8D711F58), UINT32_C(0x9C6E322C), UINT32_C(0x9C11F595), UINT32_C(0xE31A782F), UINT32_C(0x4A688D0B)}, {UINT32_C(0xDCE93F5B), UINT32_C(0x1297D9F3), UINT32_C(0x7C1DC62A), UINT32_C(0xA7956194), UINT32_C(0x5F718F63), UINT32_C(0x340F217A), UINT32_C(0xFCC0EF6A), UINT32_C(0x71F84529)}}, {{UINT32_C(0x3DD00963), UINT32_C(0x0D968E50), UINT32_C(0xD7FF66C3), UINT32_C(0x5E696D79), UINT32_C(0x499A9BE2), UINT32_C(0xAA52D60D), UINT32_C(0xCDC289DE), UINT32_C(0x72482C45)}, {UINT32_C(0x7FFAAD3A), UINT32_C(0xC84968F5), UINT32_C(0xF7CD5BED), UINT32_C(0xEE91304C), UINT32_C(0x0A7CC7C0), UINT32_C(0x68493676), UINT32_C(0x80023968), UINT32_C(0x3411AFA7)}}, {{UINT32_C(0x6E3294C0), UINT32_C(0xA0AEBC70), UINT32_C(0xDC385E50), UINT32_C(0x93263942), UINT32_C(0x8467FB06), UINT32_C(0x7B90C002), UINT32_C(0x38CFD0FF), UINT32_C(0x29477CA4)}, {UINT32_C(0x92A748D5), UINT32_C(0xADC04D81), UINT32_C(0x76CF3AE5), UINT32_C(0xAE4F309D), UINT32_C(0x4BB2C2FF), UINT32_C(0xBDA34BF0), UINT32_C(0x368536E4), UINT32_C(0x65138897)}}, {{UINT32_C(0x6FE6D4D6), UINT32_C(0x9CB8F7D6), UINT32_C(0xAF246792), UINT32_C(0x6C2FFBF5), UINT32_C(0x81524707), UINT32_C(0xD5A4F349), UINT32_C(0x36766D5E), UINT32_C(0x3AFE45CE)}, {UINT32_C(0x513BA267), UINT32_C(0x41991B49), UINT32_C(0x6C18AA5E), UINT32_C(0x06EF1EEA), UINT32_C(0x88EA2099), UINT32_C(0x0A517635), UINT32_C(0xD245B88B), UINT32_C(0x32D2B5E2)}}, {{UINT32_C(0x3F517C5B), UINT32_C(0xAE38CDD5), UINT32_C(0xD878FEEE), UINT32_C(0x1C94FDC5), UINT32_C(0xBEFCE107), UINT32_C(0xABF7A41D), UINT32_C(0xD408DFE8), UINT32_C(0x33BF3FE9)}, {UINT32_C(0x947CB8C4), UINT32_C(0x4F2E6FF0), UINT32_C(0xF998C5A0), UINT32_C(0x3A8E86AB), UINT32_C(0xE359209F), UINT32_C(0x3ADC6ABA), UINT32_C(0xD9A50051), UINT32_C(0x37A2DE1B)}}, {{UINT32_C(0xE718F6B9), UINT32_C(0x424F4E34), UINT32_C(0x75C58EB6), UINT32_C(0x50B1A03B), UINT32_C(0x91390E27), UINT32_C(0xB9495314), UINT32_C(0x880E78D8), UINT32_C(0x4AE0CC3A)}, {UINT32_C(0xF1E4413C), UINT32_C(0x10331AFA), UINT32_C(0xDDFCD2F0), UINT32_C(0xE7A3E554), UINT32_C(0x0EBF484B), UINT32_C(0x44F6DE85), UINT32_C(0x895D0F54), UINT32_C(0x6A762A7E)}}, {{UINT32_C(0x8D0558F6), UINT32_C(0x8E606B0A), UINT32_C(0x5C4DD930), UINT32_C(0xAADA7604), UINT32_C(0xEF4ACAD0), UINT32_C(0x5B2FC7AD), UINT32_C(0x87F5B6E2), UINT32_C(0x0D969AD0)}, {UINT32_C(0x5974E67B), UINT32_C(0xF9A182B2), UINT32_C(0x23B4009A), UINT32_C(0xCD8232E7), UINT32_C(0x285BCC3F), UINT32_C(0x3D8F5DDD), UINT32_C(0xEEE1B9BF), UINT32_C(0x114AC56F)}}, {{UINT32_C(0xAA45085A), UINT32_C(0xD3EA1B56), UINT32_C(0xD314CEDF), UINT32_C(0x5DE7BB70), UINT32_C(0x7BCCDCFD), UINT32_C(0x8A74384C), UINT32_C(0x8E0E0367), UINT32_C(0x64B80F8A)}, {UINT32_C(0x48884ED1), UINT32_C(0xA9EA432B), UINT32_C(0x8C0BA810), UINT32_C(0x51957A8F), UINT32_C(0x39E810E3), UINT32_C(0x9E883400), UINT32_C(0x28B2051C), UINT32_C(0x0A73ED5A)}}, {{UINT32_C(0x13C30826), UINT32_C(0x655212A3), UINT32_C(0xB73E8660), UINT32_C(0xAE53668E), UINT32_C(0xFF108CCE), UINT32_C(0x6C33B649), UINT32_C(0x21D49681), UINT32_C(0x39E0B118)}, {UINT32_C(0x70525312), UINT32_C(0xFE4D2152), UINT32_C(0xFFD18749), UINT32_C(0x2EDCE32B), UINT32_C(0xB04D3FB8), UINT32_C(0xFED19B1C), UINT32_C(0x2B225A9D), UINT32_C(0x4DFE216B)}}, {{UINT32_C(0x4C70F8A8), UINT32_C(0x583E8A6C), UINT32_C(0x954A9AE1), UINT32_C(0xC8206231), UINT32_C(0xB76517B1), UINT32_C(0x9360B592), UINT32_C(0xEED10CCA), UINT32_C(0x362C5C5C)}, {UINT32_C(0x3D607921), UINT32_C(0x3DBA9595), UINT32_C(0x5A6ECC40), UINT32_C(0x0188A5D6), UINT32_C(0x6CFF4ADE), UINT32_C(0x0EAB43C1), UINT32_C(0xDE3347E0), UINT32_C(0x1F3673AE)}}, {{UINT32_C(0x796593EE), UINT32_C(0x7300C4B3), UINT32_C(0xD8D926C3), UINT32_C(0x607E7E76), UINT32_C(0x77F9FD06), UINT32_C(0x1762CE26), UINT32_C(0xCEA891EB), UINT32_C(0x0D0478B3)}, {UINT32_C(0x2618B09E), UINT32_C(0xB1129791), UINT32_C(0x33F928C9), UINT32_C(0x5F9D290D), UINT32_C(0xE6178DB0), UINT32_C(0xE3192631), UINT32_C(0x08576D3F), UINT32_C(0x21260AC8)}}, {{UINT32_C(0x76968E1C), UINT32_C(0x899DAF2A), UINT32_C(0xF9C2B3E7), UINT32_C(0x0519DEA9), UINT32_C(0x93D0BD4E), UINT32_C(0x5FDADC38), UINT32_C(0x43B4D98F), UINT32_C(0x0467BFF7)}, {UINT32_C(0x6F3936C9), UINT32_C(0x651C316C), UINT32_C(0xAF27DF8B), UINT32_C(0xE757689A), UINT32_C(0xA0FA9188), UINT32_C(0x3AB037EA), UINT32_C(0xD927B60A), UINT32_C(0x2F8B039B)}}, }, { {{UINT32_C(0xDE876A70), UINT32_C(0x72211BF5), UINT32_C(0x73D121CE), UINT32_C(0xA8361631), UINT32_C(0x23D419E4), UINT32_C(0x23852721), UINT32_C(0xDBD03345), UINT32_C(0x3F56D47E)}, {UINT32_C(0xD6F05BAC), UINT32_C(0xFB0E91A5), UINT32_C(0xAC9D0F46), UINT32_C(0xA0E02BF6), UINT32_C(0x97F1812F), UINT32_C(0x5ED9EA2C), UINT32_C(0xEBD5DB5A), UINT32_C(0x172F564F)}}, {{UINT32_C(0x81F11E58), UINT32_C(0xC790E912), UINT32_C(0x99A5DFF7), UINT32_C(0x14A17630), UINT32_C(0x1627516D), UINT32_C(0xF6F30F2F), UINT32_C(0xEFCF43B7), UINT32_C(0x522CAD8F)}, {UINT32_C(0x6EA01128), UINT32_C(0xFFADD45E), UINT32_C(0xD61D1964), UINT32_C(0x5D23234C), UINT32_C(0x2802DF86), UINT32_C(0xE9212C85), UINT32_C(0x92AA8DA3), UINT32_C(0x0A3D237B)}}, {{UINT32_C(0xE50ED356), UINT32_C(0x2CED05F4), UINT32_C(0xBFFEEF3A), UINT32_C(0x1CBC7FB1), UINT32_C(0xBE19F0F0), UINT32_C(0x885991B1), UINT32_C(0xDE44A492), UINT32_C(0x6DED0794)}, {UINT32_C(0x44CBECFC), UINT32_C(0x9967E834), UINT32_C(0x6A792ED1), UINT32_C(0xB0674A8D), UINT32_C(0xB7DDD557), UINT32_C(0x360E2DE4), UINT32_C(0x70E95D26), UINT32_C(0x26852A74)}}, {{UINT32_C(0x3A6E2116), UINT32_C(0x8CBC1520), UINT32_C(0xBF285BBE), UINT32_C(0xF09327DF), UINT32_C(0x4A54D3C5), UINT32_C(0x8C7D9AD5), UINT32_C(0x6BD2768F), UINT32_C(0x778F54E6)}, {UINT32_C(0x8FF3DBC0), UINT32_C(0x09B489F8), UINT32_C(0xD2871932), UINT32_C(0x0A0FA7FB), UINT32_C(0xE0A8CEC4), UINT32_C(0xABB9DC38), UINT32_C(0x21E37A50), UINT32_C(0x2EE092D8)}}, {{UINT32_C(0xAF6D88D8), UINT32_C(0xBB9256E7), UINT32_C(0x0A218927), UINT32_C(0x3CDCB1CB), UINT32_C(0xF216D6E6), UINT32_C(0x8E5B744A), UINT32_C(0xBC885AFD), UINT32_C(0x6F0617F2)}, {UINT32_C(0x268397D5), UINT32_C(0xFBA9CDA7), UINT32_C(0x5D4C75D8), UINT32_C(0xC6154716), UINT32_C(0x43FB2CD2), UINT32_C(0x9ED8D17B), UINT32_C(0xBE45BC5C), UINT32_C(0x4D0CE3FB)}}, {{UINT32_C(0xA38472F5), UINT32_C(0x4259BB02), UINT32_C(0x15107D0E), UINT32_C(0xFAFAAE03), UINT32_C(0xCF0CF2B6), UINT32_C(0x2B8E450E), UINT32_C(0xED887C3A), UINT32_C(0x788674C3)}, {UINT32_C(0x4B3D2EAC), UINT32_C(0x1F3EBD59), UINT32_C(0x75E41B55), UINT32_C(0x82CB5684), UINT32_C(0xC02BE49A), UINT32_C(0x005AB76B), UINT32_C(0xF5F90FEE), UINT32_C(0x6F13ADD2)}}, {{UINT32_C(0x7AFA7161), UINT32_C(0x0116374A), UINT32_C(0x2DB7F824), UINT32_C(0x8A1AE448), UINT32_C(0xDB656A22), UINT32_C(0xD3C0DA12), UINT32_C(0xB989204D), UINT32_C(0x7B095B95)}, {UINT32_C(0xEF8F21CA), UINT32_C(0x24C35202), UINT32_C(0x2DA5A5A1), UINT32_C(0x91088DA7), UINT32_C(0xE3F97D68), UINT32_C(0xAAF1944B), UINT32_C(0x7C884134), UINT32_C(0x245D2848)}}, {{UINT32_C(0x68F5C702), UINT32_C(0xD80C65D6), UINT32_C(0x021A2974), UINT32_C(0xE2FE245F), UINT32_C(0x3A11899C), UINT32_C(0xFB8520E0), UINT32_C(0x2BE6BF88), UINT32_C(0x4806D1FA)}, {UINT32_C(0x20ED235F), UINT32_C(0xF6F8C11A), UINT32_C(0x7F0D651E), UINT32_C(0x52AC1424), UINT32_C(0xDB9CF6D6), UINT32_C(0x44C3C89F), UINT32_C(0xB2E2E41F), UINT32_C(0x6762516D)}}, {{UINT32_C(0xFDE91600), UINT32_C(0x2743D874), UINT32_C(0xCDF00100), UINT32_C(0x60975FD5), UINT32_C(0x2D2954F4), UINT32_C(0x78ACC864), UINT32_C(0x56373454), UINT32_C(0x46B9E602)}, {UINT32_C(0x6F0FB867), UINT32_C(0x7586A970), UINT32_C(0x242DF35A), UINT32_C(0x888E3677), UINT32_C(0xF1460F62), UINT32_C(0x5A639E79), UINT32_C(0x55297DBC), UINT32_C(0x1256517E)}}, {{UINT32_C(0x7B9294C3), UINT32_C(0x3F78339B), UINT32_C(0xBCE77012), UINT32_C(0x5BA765D1), UINT32_C(0x512E39E2), UINT32_C(0xA88E0CD8), UINT32_C(0xF6BA6A6A), UINT32_C(0x2D63E14B)}, {UINT32_C(0xEA29071B), UINT32_C(0xF849A163), UINT32_C(0x4C0A2E22), UINT32_C(0xF32519B7), UINT32_C(0x561C35F5), UINT32_C(0xEA5D1315), UINT32_C(0xD9267DCA), UINT32_C(0x7041F515)}}, {{UINT32_C(0x1FE56E6B), UINT32_C(0xE01E839F), UINT32_C(0x4A93CE88), UINT32_C(0x3E473D8C), UINT32_C(0x89AAFDAE), UINT32_C(0xC4846ECF), UINT32_C(0x07D946EA), UINT32_C(0x4111D97A)}, {UINT32_C(0x51A45F02), UINT32_C(0xC20881F6), UINT32_C(0xB9CD841A), UINT32_C(0x14C2AC95), UINT32_C(0xF2CBD929), UINT32_C(0x2FBE8329), UINT32_C(0xC812608B), UINT32_C(0x1E8B7469)}}, {{UINT32_C(0x007F0A5D), UINT32_C(0xB36A5D03), UINT32_C(0x5DCF7AF4), UINT32_C(0xA7E7A1A8), UINT32_C(0xBEB12AFB), UINT32_C(0x7227F4C5), UINT32_C(0x4D276783), UINT32_C(0x46227792)}, {UINT32_C(0x48403B93), UINT32_C(0x9EA64D4C), UINT32_C(0x0B333ED5), UINT32_C(0x58EA31BC), UINT32_C(0xC5C93119), UINT32_C(0x2D6DD219), UINT32_C(0x45069280), UINT32_C(0x385023A7)}}, {{UINT32_C(0xF60C46AF), UINT32_C(0x8AB9B9EA), UINT32_C(0xE8B827C2), UINT32_C(0xFA1D3F08), UINT32_C(0x1BAD41DB), UINT32_C(0x78C6BFBC), UINT32_C(0x23BE0C1E), UINT32_C(0x527A0BED)}, {UINT32_C(0x6ACCE641), UINT32_C(0x66212FD2), UINT32_C(0xEE6F78E7), UINT32_C(0x86125B0D), UINT32_C(0x58552A8C), UINT32_C(0xA2A02718), UINT32_C(0x7E9605C5), UINT32_C(0x594F2B77)}}, {{UINT32_C(0x88A27989), UINT32_C(0x3FB1F6CF), UINT32_C(0xD96268B8), UINT32_C(0xBC4962F7), UINT32_C(0xB95E2A36), UINT32_C(0xBD8761E9), UINT32_C(0x046DEC63), UINT32_C(0x64AB934A)}, {UINT32_C(0x2E53CF1A), UINT32_C(0xC64D1C59), UINT32_C(0x578C5E8C), UINT32_C(0xC9865A9B), UINT32_C(0x7A0359DE), UINT32_C(0x5ECA6232), UINT32_C(0xFB4685E5), UINT32_C(0x127DD136)}}, {{UINT32_C(0x1AE320C9), UINT32_C(0xB0F7B071), UINT32_C(0x52525203), UINT32_C(0x09BF89BB), UINT32_C(0x709C5692), UINT32_C(0x97B20027), UINT32_C(0xEDBF6175), UINT32_C(0x16A62485)}, {UINT32_C(0x394C50F9), UINT32_C(0x32C18836), UINT32_C(0xD3B98C19), UINT32_C(0x7D99468F), UINT32_C(0x2E8D2729), UINT32_C(0x8EBE5096), UINT32_C(0xE655F093), UINT32_C(0x4E75B3CC)}}, {{UINT32_C(0x9EAE827E), UINT32_C(0xCBEFD1A2), UINT32_C(0xFBF4630D), UINT32_C(0xDE2D1234), UINT32_C(0x96086CDA), UINT32_C(0x1B3ADCF8), UINT32_C(0x2EA6CBA7), UINT32_C(0x43D3960E)}, {UINT32_C(0x1CB5A0F7), UINT32_C(0x18321D1D), UINT32_C(0x47BEABB4), UINT32_C(0xDC94C6F9), UINT32_C(0x75AF6AB7), UINT32_C(0xFBACC6D5), UINT32_C(0x89B98E86), UINT32_C(0x0EE5D357)}}, }, { {{UINT32_C(0x062E0994), UINT32_C(0x3F01B4AA), UINT32_C(0x5C952259), UINT32_C(0x994B28B0), UINT32_C(0x0CDEEC70), UINT32_C(0x2678F8B8), UINT32_C(0x212436F3), UINT32_C(0x4D06AF84)}, {UINT32_C(0x1CF27A98), UINT32_C(0xE9DF52FD), UINT32_C(0x0B7718F7), UINT32_C(0xD56B9FD1), UINT32_C(0xD9AEDA0D), UINT32_C(0x728BE624), UINT32_C(0x1A646888), UINT32_C(0x09871088)}}, {{UINT32_C(0x9B586B13), UINT32_C(0xB1BC922D), UINT32_C(0x3CA3B1BA), UINT32_C(0x6C084C54), UINT32_C(0xCF322698), UINT32_C(0x54D196C7), UINT32_C(0x85D527E1), UINT32_C(0x06EC3A55)}, {UINT32_C(0x2A57CAA1), UINT32_C(0x06918710), UINT32_C(0x65FD0F6B), UINT32_C(0x6AEAC07D), UINT32_C(0x0F512F84), UINT32_C(0xB66A34D7), UINT32_C(0xA44E6452), UINT32_C(0x3860C002)}}, {{UINT32_C(0x0881608A), UINT32_C(0x17263B26), UINT32_C(0x56C18A7A), UINT32_C(0x78D556AA), UINT32_C(0xAC3A47AB), UINT32_C(0xA0826A1C), UINT32_C(0xB6933FF5), UINT32_C(0x61686A58)}, {UINT32_C(0xDBCF2C4F), UINT32_C(0xEA9D8771), UINT32_C(0x6AB00426), UINT32_C(0x1C66EB02), UINT32_C(0x401C466A), UINT32_C(0xF8DAED2B), UINT32_C(0xDAAE8040), UINT32_C(0x1ED0A99A)}}, {{UINT32_C(0x7208E58A), UINT32_C(0x31EFFC4B), UINT32_C(0xB4E4319E), UINT32_C(0x28868456), UINT32_C(0xD46AC4DA), UINT32_C(0x1059C249), UINT32_C(0x2279B362), UINT32_C(0x3589D212)}, {UINT32_C(0x45552E92), UINT32_C(0xB28B8FAD), UINT32_C(0xC3AB8098), UINT32_C(0xC9E32541), UINT32_C(0xF14B35A1), UINT32_C(0x82604904), UINT32_C(0xDB68C214), UINT32_C(0x1E64A89F)}}, {{UINT32_C(0xAB6947AF), UINT32_C(0xDF0E223D), UINT32_C(0x771670D0), UINT32_C(0xE74EF1D6), UINT32_C(0xF429F03B), UINT32_C(0x70A9AD21), UINT32_C(0x1385B8DC), UINT32_C(0x7CB1FA1F)}, {UINT32_C(0x69053D24), UINT32_C(0x25ABC0A7), UINT32_C(0x6369D02E), UINT32_C(0x207FE30A), UINT32_C(0xC6E4EC2C), UINT32_C(0x57B76E3C), UINT32_C(0xB927CAB2), UINT32_C(0x2E03D2E3)}}, {{UINT32_C(0x622D57AE), UINT32_C(0xEFA377FF), UINT32_C(0xA885951A), UINT32_C(0x41532F56), UINT32_C(0xCC69B9A8), UINT32_C(0x5ED89AA7), UINT32_C(0x295F5E84), UINT32_C(0x60BFF2EC)}, {UINT32_C(0x1E5C3041), UINT32_C(0x411D65C3), UINT32_C(0x4B7772F8), UINT32_C(0xDB533F8B), UINT32_C(0x3BDD4AEA), UINT32_C(0x72CADEB6), UINT32_C(0x7C49E454), UINT32_C(0x0EC79DF2)}}, {{UINT32_C(0x81D0B84B), UINT32_C(0x0C39332C), UINT32_C(0x95FF472B), UINT32_C(0xA76A9A3A), UINT32_C(0x31DB2BA6), UINT32_C(0xD12FEB99), UINT32_C(0x3683E53A), UINT32_C(0x4AAB9222)}, {UINT32_C(0x24FC6271), UINT32_C(0x56CB18AF), UINT32_C(0x2544C72D), UINT32_C(0x671581D6), UINT32_C(0xFBD6F4D1), UINT32_C(0xCD136492), UINT32_C(0x3579EE09), UINT32_C(0x6C202318)}}, {{UINT32_C(0xC103C348), UINT32_C(0xEDC5AF02), UINT32_C(0x155A103D), UINT32_C(0xDA32344E), UINT32_C(0xB0D1377E), UINT32_C(0xFF3A7679), UINT32_C(0x68F02750), UINT32_C(0x16091972)}, {UINT32_C(0xD9E9C143), UINT32_C(0xD4C6360D), UINT32_C(0x968EE990), UINT32_C(0xE0ABA0EF), UINT32_C(0x97E4C9AE), UINT32_C(0x57816878), UINT32_C(0x9D63E32D), UINT32_C(0x5A4D167B)}}, {{UINT32_C(0x50E25802), UINT32_C(0xB04BA525), UINT32_C(0x66912F15), UINT32_C(0x011DA36E), UINT32_C(0x19E0A182), UINT32_C(0x08D8B680), UINT32_C(0x2E462B0F), UINT32_C(0x66AA4AE8)}, {UINT32_C(0xE0B9D283), UINT32_C(0x3227C3A6), UINT32_C(0xF2B2B096), UINT32_C(0x9BF8C4D0), UINT32_C(0xBA809EB7), UINT32_C(0x1E51416C), UINT32_C(0x2A67D346), UINT32_C(0x68411B75)}}, {{UINT32_C(0x37A67F3B), UINT32_C(0xE55B1348), UINT32_C(0x96484391), UINT32_C(0x5E32D73C), UINT32_C(0x6256B91E), UINT32_C(0xC3F804D5), UINT32_C(0x03B0783B), UINT32_C(0x67F17A47)}, {UINT32_C(0xDD2334AD), UINT32_C(0x2010EFEB), UINT32_C(0xB10FF052), UINT32_C(0xBD9965B5), UINT32_C(0xF58ACA52), UINT32_C(0x519CDA6D), UINT32_C(0x2FD3D394), UINT32_C(0x045BEEBE)}}, {{UINT32_C(0xEA271BCD), UINT32_C(0x81722E2C), UINT32_C(0x0A4F1342), UINT32_C(0x393C082E), UINT32_C(0x53B345CE), UINT32_C(0x573F7CD5), UINT32_C(0x3D7B4292), UINT32_C(0x7AD71FE2)}, {UINT32_C(0xDA8BECB8), UINT32_C(0xDA406D0A), UINT32_C(0x82FE66BC), UINT32_C(0x14FD41CA), UINT32_C(0x0A91DFFC), UINT32_C(0x80A41062), UINT32_C(0xF4F0CDEB), UINT32_C(0x33E38E10)}}, {{UINT32_C(0x2529532C), UINT32_C(0x0234BF38), UINT32_C(0xA76CAE3B), UINT32_C(0x9F5D6342), UINT32_C(0xB3C50442), UINT32_C(0xC9944CB3), UINT32_C(0x8ABFAF17), UINT32_C(0x51752DF0)}, {UINT32_C(0xA37B13FB), UINT32_C(0x2BFA58C4), UINT32_C(0xDDB14951), UINT32_C(0x19F80FDE), UINT32_C(0x7DCB927B), UINT32_C(0xDC7026AA), UINT32_C(0xAAB9FCBA), UINT32_C(0x57907272)}}, {{UINT32_C(0xF3C046C2), UINT32_C(0xCE38712D), UINT32_C(0x47B29D0E), UINT32_C(0x21D1FDB0), UINT32_C(0xCD96D414), UINT32_C(0x7F746E0E), UINT32_C(0x636CFEA4), UINT32_C(0x72F07B52)}, {UINT32_C(0xECE6382D), UINT32_C(0x0D8FE94F), UINT32_C(0x24229CA4), UINT32_C(0x9BFB4CBA), UINT32_C(0xE54388B0), UINT32_C(0xFAE55B77), UINT32_C(0xA188299F), UINT32_C(0x074EBC32)}}, {{UINT32_C(0xE21DCCA2), UINT32_C(0x8AF2EBCD), UINT32_C(0x377487F2), UINT32_C(0x9916A6B6), UINT32_C(0xD8051D40), UINT32_C(0x607DC19A), UINT32_C(0x419DDE12), UINT32_C(0x7DFD53F4)}, {UINT32_C(0x9AD07924), UINT32_C(0xD17D0D61), UINT32_C(0x173E266B), UINT32_C(0x14F7CE0F), UINT32_C(0x0281C9EB), UINT32_C(0x687FB853), UINT32_C(0x3361B273), UINT32_C(0x6B35CC1A)}}, {{UINT32_C(0x16E02DE3), UINT32_C(0x7CD6369E), UINT32_C(0x1F35DFBC), UINT32_C(0x118EE0B1), UINT32_C(0x98B3EE60), UINT32_C(0x7D8C8DBD), UINT32_C(0x8D29EA17), UINT32_C(0x039806FC)}, {UINT32_C(0xEC2C2597), UINT32_C(0x3C473872), UINT32_C(0x5E4EF521), UINT32_C(0x81294AF4), UINT32_C(0xC22A9D7C), UINT32_C(0x5ED048DB), UINT32_C(0x0A08C4D4), UINT32_C(0x3879E95B)}}, {{UINT32_C(0x96A864FE), UINT32_C(0x0206E47F), UINT32_C(0xA55D0631), UINT32_C(0xC94F137A), UINT32_C(0x8E8408F8), UINT32_C(0x9C1B3D29), UINT32_C(0xB9193A5E), UINT32_C(0x150A4046)}, {UINT32_C(0xCB1ADF21), UINT32_C(0x4E8F9345), UINT32_C(0x7BD5E1F9), UINT32_C(0x6ED14D8A), UINT32_C(0x60809F68), UINT32_C(0x70825329), UINT32_C(0xFA85A06C), UINT32_C(0x0D2F1C3B)}}, }, { {{UINT32_C(0xB5C810C3), UINT32_C(0x3C5ABE75), UINT32_C(0xE28F1E26), UINT32_C(0xEA2C3EF9), UINT32_C(0x8BF68280), UINT32_C(0xEEB1C568), UINT32_C(0x7AE69110), UINT32_C(0x5A165CEB)}, {UINT32_C(0x44550DF1), UINT32_C(0xE36C6460), UINT32_C(0xDB909258), UINT32_C(0x6FB4B108), UINT32_C(0x17D4D8C5), UINT32_C(0xBFA14277), UINT32_C(0x927976D8), UINT32_C(0x744CAF23)}}, {{UINT32_C(0x47EA55C7), UINT32_C(0xCBE70DF9), UINT32_C(0x535457AE), UINT32_C(0x8F8119AE), UINT32_C(0x7DAFD732), UINT32_C(0x1E3C69EC), UINT32_C(0x39D409A2), UINT32_C(0x1A2E162D)}, {UINT32_C(0x5F81C227), UINT32_C(0xBD7576A1), UINT32_C(0xC86AC2C3), UINT32_C(0xA040AF9E), UINT32_C(0xC10FC749), UINT32_C(0x5690C059), UINT32_C(0x49CFAEC6), UINT32_C(0x20B26E88)}}, {{UINT32_C(0xE3EF781E), UINT32_C(0x87AEBD1E), UINT32_C(0x1609A1F0), UINT32_C(0xBC794A62), UINT32_C(0x26E7F61B), UINT32_C(0x96D83142), UINT32_C(0xFC51D17D), UINT32_C(0x5198577F)}, {UINT32_C(0x8E6D0124), UINT32_C(0xBFB5FAE2), UINT32_C(0xFFD5BD72), UINT32_C(0x91A7172B), UINT32_C(0x02832847), UINT32_C(0x474B0154), UINT32_C(0x59827FEB), UINT32_C(0x4BAF0B4C)}}, {{UINT32_C(0xBA090294), UINT32_C(0x5EADAA8E), UINT32_C(0x11A6E9FA), UINT32_C(0x51401BC9), UINT32_C(0x1D2594CD), UINT32_C(0x78F11758), UINT32_C(0x82D203C2), UINT32_C(0x1811AD30)}, {UINT32_C(0x53FD07CC), UINT32_C(0x554CC39A), UINT32_C(0xC7A05601), UINT32_C(0x055FC983), UINT32_C(0xD5A80B4B), UINT32_C(0xB3B34E95), UINT32_C(0x1819BC16), UINT32_C(0x72B4CF94)}}, {{UINT32_C(0x514FAFD0), UINT32_C(0x0750E4F0), UINT32_C(0xAD61C7B1), UINT32_C(0x297D27E6), UINT32_C(0xA2D5D410), UINT32_C(0x701D743F), UINT32_C(0xC83B55C9), UINT32_C(0x535DD97B)}, {UINT32_C(0x1CB11BB0), UINT32_C(0x2EE96DDE), UINT32_C(0x0914450F), UINT32_C(0xECEA32EA), UINT32_C(0x4CDBDA6A), UINT32_C(0x4FB81236), UINT32_C(0x233C8063), UINT32_C(0x5B75B6B2)}}, {{UINT32_C(0xD69D6C6A), UINT32_C(0xF0A934A6), UINT32_C(0x3CC80AC9), UINT32_C(0x313E8977), UINT32_C(0x1E428B71), UINT32_C(0x74692B17), UINT32_C(0xE1BE662D), UINT32_C(0x0474FEFC)}, {UINT32_C(0xAFFBF61B), UINT32_C(0xAA2FF6DB), UINT32_C(0x776983AF), UINT32_C(0xCE1594E1), UINT32_C(0x4D5A2596), UINT32_C(0xF00C665B), UINT32_C(0x7D414B9A), UINT32_C(0x30DD2449)}}, {{UINT32_C(0xACC44AB3), UINT32_C(0xEF862DA2), UINT32_C(0x6EE7A44A), UINT32_C(0xBAD6857F), UINT32_C(0xD2F9027E), UINT32_C(0x57674BF9), UINT32_C(0x2ABF816E), UINT32_C(0x4D771CC3)}, {UINT32_C(0xAC0F1348), UINT32_C(0x27BEFC18), UINT32_C(0x5E4F1202), UINT32_C(0xD83112EF), UINT32_C(0x8E9AAAE5), UINT32_C(0x3571BDE3), UINT32_C(0xC1379B13), UINT32_C(0x07284830)}}, {{UINT32_C(0x72A8890C), UINT32_C(0xA4C2F36F), UINT32_C(0x5824B392), UINT32_C(0x22DF0E81), UINT32_C(0x5E720240), UINT32_C(0x50FAD77F), UINT32_C(0x03278F96), UINT32_C(0x1D152A69)}, {UINT32_C(0xA7D80F17), UINT32_C(0x25A3E92E), UINT32_C(0x7EF32666), UINT32_C(0xBBF85B32), UINT32_C(0x27222E52), UINT32_C(0xBBB55687), UINT32_C(0x7582FE42), UINT32_C(0x756D22A6)}}, {{UINT32_C(0x9BC9EAED), UINT32_C(0x0AE7493A), UINT32_C(0x0DDBB275), UINT32_C(0x9185F53F), UINT32_C(0xC3DFDBA7), UINT32_C(0x1585D068), UINT32_C(0x562E2455), UINT32_C(0x543208A1)}, {UINT32_C(0xCBCF9535), UINT32_C(0x4C417D81), UINT32_C(0xE35DD6ED), UINT32_C(0xD2DC38D3), UINT32_C(0x346F03A4), UINT32_C(0x9DF1E014), UINT32_C(0xF0E772A6), UINT32_C(0x65736E3F)}}, {{UINT32_C(0xCFB7FF06), UINT32_C(0x58684A7B), UINT32_C(0xC58E6316), UINT32_C(0x72CC4AFE), UINT32_C(0xA8BB508A), UINT32_C(0x2CA9BF30), UINT32_C(0xE2044C8C), UINT32_C(0x61576519)}, {UINT32_C(0x8FF6D2B5), UINT32_C(0xE78FAD3D), UINT32_C(0xA934C7B2), UINT32_C(0x6E5B839F), UINT32_C(0xFAFA9F9B), UINT32_C(0xC1F3D367), UINT32_C(0xF8B2AFA4), UINT32_C(0x637CC398)}}, {{UINT32_C(0xFE2B2639), UINT32_C(0xD6FC1806), UINT32_C(0x9E98A7F2), UINT32_C(0x1DB199B4), UINT32_C(0xC794F900), UINT32_C(0x0508763D), UINT32_C(0x3232E5AC), UINT32_C(0x363F1F7D)}, {UINT32_C(0xBBDBB351), UINT32_C(0xDCF2AD74), UINT32_C(0x5A506BC6), UINT32_C(0x91F2EAF1), UINT32_C(0xB850088B), UINT32_C(0xBDE8459E), UINT32_C(0x3E1135AF), UINT32_C(0x52DF883B)}}, {{UINT32_C(0xF93779DC), UINT32_C(0x12FD053A), UINT32_C(0x9E319E46), UINT32_C(0x3E3D8728), UINT32_C(0xE5E360AE), UINT32_C(0x4D631005), UINT32_C(0xB1B29A30), UINT32_C(0x4A8B5683)}, {UINT32_C(0xA8CA45EF), UINT32_C(0x305E5E53), UINT32_C(0xC2914843), UINT32_C(0x59EACB45), UINT32_C(0x1988ECEA), UINT32_C(0x83677B7A), UINT32_C(0xD6FD53E8), UINT32_C(0x63D9CD36)}}, {{UINT32_C(0xB77EB45F), UINT32_C(0xDF2DACF2), UINT32_C(0x55BBA70E), UINT32_C(0x3C1303E3), UINT32_C(0x4526A06C), UINT32_C(0x5AB8EB42), UINT32_C(0x7FE06BBC), UINT32_C(0x4D4FD216)}, {UINT32_C(0xE1486ABC), UINT32_C(0x98C5ADCF), UINT32_C(0x07F86F3A), UINT32_C(0x9A503BFF), UINT32_C(0x56282E44), UINT32_C(0x7CEBAECB), UINT32_C(0x1F230DA0), UINT32_C(0x4FB09037)}}, {{UINT32_C(0x27210752), UINT32_C(0xD1A37384), UINT32_C(0x02CF1C74), UINT32_C(0xD10794D6), UINT32_C(0x820CC08C), UINT32_C(0x48A2095A), UINT32_C(0xE3284B9D), UINT32_C(0x6DCDDE2E)}, {UINT32_C(0x5D40510D), UINT32_C(0xB8C7203E), UINT32_C(0x5385E3A7), UINT32_C(0x957E8982), UINT32_C(0xE27D7C13), UINT32_C(0xD220BE2F), UINT32_C(0x7B471B5B), UINT32_C(0x2D104AC5)}}, {{UINT32_C(0xBA0AFA8D), UINT32_C(0x3B31D52B), UINT32_C(0xDCC85F88), UINT32_C(0xFA9639F5), UINT32_C(0x8861DDD7), UINT32_C(0x15014637), UINT32_C(0x7B5443B0), UINT32_C(0x31C222DB)}, {UINT32_C(0xC3CDD689), UINT32_C(0xE2618546), UINT32_C(0xD528A130), UINT32_C(0x7F3FB754), UINT32_C(0xAC5FAF99), UINT32_C(0xA0915810), UINT32_C(0xE9899CE5), UINT32_C(0x3863B890)}}, {{UINT32_C(0x579C4353), UINT32_C(0xBDD42CA3), UINT32_C(0x4D65CB5B), UINT32_C(0xAD30567D), UINT32_C(0x6D91810B), UINT32_C(0x0E343F21), UINT32_C(0x42E19816), UINT32_C(0x65E0092D)}, {UINT32_C(0xF84E8C8E), UINT32_C(0x76154DCC), UINT32_C(0x0BA4AE59), UINT32_C(0xBA147CA8), UINT32_C(0x56A1A71E), UINT32_C(0xCA8085E7), UINT32_C(0x1A158536), UINT32_C(0x1D90B4B0)}}, }, { {{UINT32_C(0xF8B6C26A), UINT32_C(0x5C4B7438), UINT32_C(0x645BBE80), UINT32_C(0x0C17A41B), UINT32_C(0x40CF3D85), UINT32_C(0xA386062D), UINT32_C(0xE78F776D), UINT32_C(0x563E42D2)}, {UINT32_C(0x1F07459B), UINT32_C(0x4BB8E356), UINT32_C(0x75D222CD), UINT32_C(0xF01A24B7), UINT32_C(0x24CF3F61), UINT32_C(0xBE3D032B), UINT32_C(0x0AD5F3A3), UINT32_C(0x759B0167)}}, {{UINT32_C(0x7D201AAB), UINT32_C(0x2F5AEBD1), UINT32_C(0xC0AE02AD), UINT32_C(0x7B14CBEE), UINT32_C(0xEDC6388B), UINT32_C(0xB9B54430), UINT32_C(0xB622E01F), UINT32_C(0x69E713FB)}, {UINT32_C(0xC5361565), UINT32_C(0x4630EE8E), UINT32_C(0x5C8FB479), UINT32_C(0x6705961E), UINT32_C(0x07C2AA45), UINT32_C(0x125CC97E), UINT32_C(0x25AE3B12), UINT32_C(0x4BC459F4)}}, {{UINT32_C(0x28CF94E4), UINT32_C(0xEF025496), UINT32_C(0x9DB24DE6), UINT32_C(0x04CFAB25), UINT32_C(0xC62254EF), UINT32_C(0x52B8C734), UINT32_C(0x568AB164), UINT32_C(0x0F2FE922)}, {UINT32_C(0xE3F39B40), UINT32_C(0x48551A05), UINT32_C(0x31A7C7F6), UINT32_C(0x4A36865F), UINT32_C(0x840441AE), UINT32_C(0x4486512C), UINT32_C(0x8C7C4B4D), UINT32_C(0x559C6CAF)}}, {{UINT32_C(0x0F103030), UINT32_C(0xFCC0D1DA), UINT32_C(0x39CD584E), UINT32_C(0x7A9F1D55), UINT32_C(0x681D0D37), UINT32_C(0x3EFB9B94), UINT32_C(0x4D842332), UINT32_C(0x3AE97CCD)}, {UINT32_C(0x3C03676B), UINT32_C(0x85A8ECE1), UINT32_C(0x3AD435A1), UINT32_C(0x030F8775), UINT32_C(0x7F2D73B5), UINT32_C(0xF6019B4D), UINT32_C(0x2F14F911), UINT32_C(0x6B77E31A)}}, {{UINT32_C(0x9186C671), UINT32_C(0x65C8161B), UINT32_C(0xCDFF2F8C), UINT32_C(0x412C3CC7), UINT32_C(0x2C2FEA33), UINT32_C(0xBFFC1719), UINT32_C(0xC3675845), UINT32_C(0x75DCF68B)}, {UINT32_C(0x3B23D576), UINT32_C(0x0476AFBF), UINT32_C(0x19315F79), UINT32_C(0xB20CAEE2), UINT32_C(0x0885471A), UINT32_C(0x1BC2A859), UINT32_C(0xC328279C), UINT32_C(0x410FF6CF)}}, {{UINT32_C(0x60569D94), UINT32_C(0x327394D9), UINT32_C(0x6EA39D95), UINT32_C(0xFF2AEB6A), UINT32_C(0xEA0CA3AE), UINT32_C(0x1BED71E8), UINT32_C(0x21072A94), UINT32_C(0x1000A81E)}, {UINT32_C(0x73C02416), UINT32_C(0x368EA229), UINT32_C(0x0A4941BC), UINT32_C(0xDF5B2A42), UINT32_C(0xD0D40B3A), UINT32_C(0x4FFDC7B8), UINT32_C(0x48ABAB4E), UINT32_C(0x7B2C73F1)}}, {{UINT32_C(0x81EE1072), UINT32_C(0x90FE34E4), UINT32_C(0x310E13D8), UINT32_C(0xAE7A2FF4), UINT32_C(0xCAB3927C), UINT32_C(0x6213D3B1), UINT32_C(0x7DC7E9EF), UINT32_C(0x44936FBD)}, {UINT32_C(0x23A1BDBE), UINT32_C(0x3B898EF3), UINT32_C(0x54CC7B1D), UINT32_C(0x3FA6C6A0), UINT32_C(0xC6AC54F2), UINT32_C(0x41BCC3B5), UINT32_C(0xDC10AE39), UINT32_C(0x1AB5D168)}}, {{UINT32_C(0xFEAF67A6), UINT32_C(0x1AED113C), UINT32_C(0x342AC459), UINT32_C(0x04E3C7A1), UINT32_C(0x7A99DFBC), UINT32_C(0x65A39278), UINT32_C(0x642329FF), UINT32_C(0x03ECBC6B)}, {UINT32_C(0xA6A4421A), UINT32_C(0x799F4EC5), UINT32_C(0xBEE18B3C), UINT32_C(0x44522C26), UINT32_C(0x1975C4BB), UINT32_C(0x1C7BFF15), UINT32_C(0xE6A27857), UINT32_C(0x0FAA03BE)}}, {{UINT32_C(0x0743FF7B), UINT32_C(0x173AB9E0), UINT32_C(0x2CFC95AE), UINT32_C(0xB11187AE), UINT32_C(0x9C112049), UINT32_C(0xCA81BB2E), UINT32_C(0xC03555D5), UINT32_C(0x6B811DB6)}, {UINT32_C(0x4FE32256), UINT32_C(0x76C1FC14), UINT32_C(0xD0E47C4E), UINT32_C(0xDA8C5A96), UINT32_C(0x29FDB01C), UINT32_C(0xB645D413), UINT32_C(0xAC39502A), UINT32_C(0x78898447)}}, {{UINT32_C(0x9BF44B35), UINT32_C(0x4285FF32), UINT32_C(0xE3358C7F), UINT32_C(0x207F9029), UINT32_C(0x63BAF4CE), UINT32_C(0x0FE8F032), UINT32_C(0xFF15E1F7), UINT32_C(0x698A0398)}, {UINT32_C(0x7E572DF6), UINT32_C(0x54874843), UINT32_C(0x9F43C07B), UINT32_C(0x74683519), UINT32_C(0x0A433D6A), UINT32_C(0x47BAB49E), UINT32_C(0xFAB5C858), UINT32_C(0x09ED8740)}}, {{UINT32_C(0x1F6CA820), UINT32_C(0x8AA5E5C9), UINT32_C(0xD3C25BEC), UINT32_C(0xAD290A94), UINT32_C(0x3BA255F0), UINT32_C(0xDC4C67BF), UINT32_C(0x1DEDD8A9), UINT32_C(0x0D7EF7D9)}, {UINT32_C(0x5EEFD1C3), UINT32_C(0x0831A26F), UINT32_C(0x04483E0C), UINT32_C(0x78CA66F5), UINT32_C(0x2FAAC15A), UINT32_C(0x9D5A5612), UINT32_C(0x5D6FACDB), UINT32_C(0x43B0C7E7)}}, {{UINT32_C(0x4503899D), UINT32_C(0x34BA537C), UINT32_C(0x2AF8ED3B), UINT32_C(0x9DEBC8F5), UINT32_C(0x84F416E6), UINT32_C(0x396995E9), UINT32_C(0xC7BCE392), UINT32_C(0x77F10FED)}, {UINT32_C(0x1F8AF262), UINT32_C(0x065CCB72), UINT32_C(0xD2F00FC4), UINT32_C(0xE220ED60), UINT32_C(0x5EE25B46), UINT32_C(0x41A5FB06), UINT32_C(0xDD9070B1), UINT32_C(0x22505574)}}, {{UINT32_C(0x44BFC5C0), UINT32_C(0x571FF151), UINT32_C(0x3138363C), UINT32_C(0xBE2558B8), UINT32_C(0x605E356C), UINT32_C(0xB2211ABD), UINT32_C(0x176C5F53), UINT32_C(0x0B6435DA)}, {UINT32_C(0x8DCF484E), UINT32_C(0xF18C917C), UINT32_C(0xCD93D65F), UINT32_C(0x45D4120C), UINT32_C(0x190AE7F8), UINT32_C(0xEBB0BF9C), UINT32_C(0x8D8C8D5A), UINT32_C(0x3D403DE2)}}, {{UINT32_C(0xBE656644), UINT32_C(0xCDE760B4), UINT32_C(0x2D21DBC5), UINT32_C(0x99DC5E6D), UINT32_C(0xB6232D08), UINT32_C(0x644FCAF3), UINT32_C(0x859341E3), UINT32_C(0x52955488)}, {UINT32_C(0x25763919), UINT32_C(0x3AB4580D), UINT32_C(0x4EF66999), UINT32_C(0x82AB0C53), UINT32_C(0x0180663E), UINT32_C(0xBD395C74), UINT32_C(0xB4756474), UINT32_C(0x07974F1A)}}, {{UINT32_C(0x31588EA6), UINT32_C(0x8C15CFE7), UINT32_C(0xF36C882D), UINT32_C(0x9629060E), UINT32_C(0x862B080D), UINT32_C(0xDF8E8E9E), UINT32_C(0xD7A0C5BE), UINT32_C(0x0BD36B48)}, {UINT32_C(0x76DA047B), UINT32_C(0xEBD0C6C9), UINT32_C(0xBB94FD5A), UINT32_C(0x4F0F08AB), UINT32_C(0x74910D9F), UINT32_C(0x33D41A4E), UINT32_C(0xA9583754), UINT32_C(0x3D6F8D0B)}}, {{UINT32_C(0x4E4FC72E), UINT32_C(0xEC4C896E), UINT32_C(0x002ECE31), UINT32_C(0xB111210C), UINT32_C(0x2AF11E21), UINT32_C(0x7204D937), UINT32_C(0x5D0509E9), UINT32_C(0x59B9C1EC)}, {UINT32_C(0xF9D5BBC0), UINT32_C(0xBC97644C), UINT32_C(0x31B4E869), UINT32_C(0x25B123AF), UINT32_C(0x5A6CAAB0), UINT32_C(0x091D7AEC), UINT32_C(0xECC911C4), UINT32_C(0x340B9E80)}}, }, { {{UINT32_C(0xEC208406), UINT32_C(0xE8036B20), UINT32_C(0x214CEB5A), UINT32_C(0xAF46A05A), UINT32_C(0x46CC8379), UINT32_C(0x8672084A), UINT32_C(0x04BA7885), UINT32_C(0x7DE0A42F)}, {UINT32_C(0xC9D3F32A), UINT32_C(0xB772BEDC), UINT32_C(0x534B1520), UINT32_C(0x7DAE3680), UINT32_C(0xEC7120CC), UINT32_C(0x04CD6203), UINT32_C(0xB4E99780), UINT32_C(0x032F88E3)}}, {{UINT32_C(0xE4A0897E), UINT32_C(0xB34BDA5C), UINT32_C(0x379B2480), UINT32_C(0xF7748B26), UINT32_C(0xB2D97522), UINT32_C(0xF47F6646), UINT32_C(0xF9641DB9), UINT32_C(0x66AD8DE1)}, {UINT32_C(0xD1BF09C0), UINT32_C(0x0F8EB919), UINT32_C(0xB95DC052), UINT32_C(0x7853BB4E), UINT32_C(0x62B1FD4A), UINT32_C(0xBE7EE13D), UINT32_C(0xDC7CE53E), UINT32_C(0x2FF7EDC5)}}, {{UINT32_C(0xEE81DF35), UINT32_C(0xE1009AA0), UINT32_C(0x61D0798B), UINT32_C(0x14972F02), UINT32_C(0xF1EA1A6A), UINT32_C(0x5A6831A0), UINT32_C(0x0CAB301A), UINT32_C(0x1DBABA3D)}, {UINT32_C(0x157D5213), UINT32_C(0x421270E2), UINT32_C(0x6407B790), UINT32_C(0xA37BEA95), UINT32_C(0x103A6073), UINT32_C(0xEAD56B1F), UINT32_C(0xBAD909F1), UINT32_C(0x27534624)}}, {{UINT32_C(0xC2621EF1), UINT32_C(0xC92D2209), UINT32_C(0x1D3AD3F3), UINT32_C(0x450710C3), UINT32_C(0x19E481AD), UINT32_C(0x8CFB8D6C), UINT32_C(0xE6DB01BD), UINT32_C(0x35CACDAE)}, {UINT32_C(0x7CDD5B01), UINT32_C(0x2DA4A1D8), UINT32_C(0x0F55BA11), UINT32_C(0x3E40C751), UINT32_C(0xB15C162D), UINT32_C(0xA91D9EE7), UINT32_C(0x11DBA157), UINT32_C(0x13AD3BE5)}}, {{UINT32_C(0xE72F64F5), UINT32_C(0xAE417DB0), UINT32_C(0xF13352BA), UINT32_C(0x40822279), UINT32_C(0x1F2B75B9), UINT32_C(0xEC43AFD9), UINT32_C(0xC9CF2972), UINT32_C(0x14D4BB2B)}, {UINT32_C(0x0761B2F1), UINT32_C(0x4A55718A), UINT32_C(0xD81A9307), UINT32_C(0xDAFBF756), UINT32_C(0x5D3E5A07), UINT32_C(0x2DCDFC1C), UINT32_C(0x2EBBDF28), UINT32_C(0x696E42ED)}}, {{UINT32_C(0x68705410), UINT32_C(0xF4739399), UINT32_C(0xAF5FFC88), UINT32_C(0xFD581005), UINT32_C(0x90A9F517), UINT32_C(0x5490A694), UINT32_C(0x8CF8327E), UINT32_C(0x4A5C8C2E)}, {UINT32_C(0xF7D83DA6), UINT32_C(0xC203CD35), UINT32_C(0x7282368D), UINT32_C(0xECAA6B90), UINT32_C(0x2AF7EC42), UINT32_C(0x365BB571), UINT32_C(0xD4099316), UINT32_C(0x112E7ACD)}}, {{UINT32_C(0x3AE3C25C), UINT32_C(0x9ABDE060), UINT32_C(0xEB9925B2), UINT32_C(0xE4C03DAD), UINT32_C(0x9E03388B), UINT32_C(0x3C28DCB1), UINT32_C(0x52B63C06), UINT32_C(0x2337A7CF)}, {UINT32_C(0x4E1AF2EA), UINT32_C(0x74DC0F13), UINT32_C(0xCD0D59AA), UINT32_C(0xA010E4E3), UINT32_C(0x9FA14C96), UINT32_C(0x6E4DB7BA), UINT32_C(0x557F7CDE), UINT32_C(0x5B2C3862)}}, {{UINT32_C(0xC8C79CA9), UINT32_C(0xC826E567), UINT32_C(0xE851BE0C), UINT32_C(0xE7D110CA), UINT32_C(0xA3606499), UINT32_C(0xFFD57057), UINT32_C(0xC6482504), UINT32_C(0x2E9DBC40)}, {UINT32_C(0xF784D9AF), UINT32_C(0xC9F0C3C2), UINT32_C(0xB755172E), UINT32_C(0xDD982A05), UINT32_C(0xA023997F), UINT32_C(0x6BC6C19D), UINT32_C(0xE34493C6), UINT32_C(0x4AC177BE)}}, {{UINT32_C(0x4FA4F134), UINT32_C(0x21C3E087), UINT32_C(0x86F9722F), UINT32_C(0x66E10C34), UINT32_C(0x7398579A), UINT32_C(0xD2927B01), UINT32_C(0x0352C3D3), UINT32_C(0x7135B638)}, {UINT32_C(0x3BB5EE11), UINT32_C(0x2DA62007), UINT32_C(0x3A946236), UINT32_C(0x8B64F13C), UINT32_C(0x30EAE6DF), UINT32_C(0x3A83C854), UINT32_C(0x0EB6F749), UINT32_C(0x31114E2A)}}, {{UINT32_C(0x35BFC72B), UINT32_C(0x2C7B52E7), UINT32_C(0x2B0D4C2C), UINT32_C(0x6DD29EBD), UINT32_C(0x6C92E82D), UINT32_C(0xE90D3988), UINT32_C(0x3864D94D), UINT32_C(0x0A924901)}, {UINT32_C(0x9BEE9E78), UINT32_C(0x63050824), UINT32_C(0x003DD5CF), UINT32_C(0x7929FD62), UINT32_C(0xE57507D1), UINT32_C(0xD04F832C), UINT32_C(0x37D2C32E), UINT32_C(0x61078BDC)}}, {{UINT32_C(0x2E75264A), UINT32_C(0xB118AFDD), UINT32_C(0xEFD65114), UINT32_C(0x3AB692EA), UINT32_C(0x8B0A2128), UINT32_C(0x58D2CE24), UINT32_C(0x82ED6D5F), UINT32_C(0x4316E6C2)}, {UINT32_C(0x46345BE4), UINT32_C(0x97766FFF), UINT32_C(0x0A7451AA), UINT32_C(0xD7FF3014), UINT32_C(0xAACE2E37), UINT32_C(0x078A423F), UINT32_C(0xA6A78919), UINT32_C(0x7F1F90C2)}}, {{UINT32_C(0x8E9E3D4D), UINT32_C(0x988FCCB0), UINT32_C(0xB95C9731), UINT32_C(0xBD003FC0), UINT32_C(0xB0A84E58), UINT32_C(0x74E40076), UINT32_C(0x1DF7FDD0), UINT32_C(0x5FD1DBE6)}, {UINT32_C(0x4E6CE2FA), UINT32_C(0xD2C700C7), UINT32_C(0x903C5AE7), UINT32_C(0xA6E042E2), UINT32_C(0x3C73822E), UINT32_C(0x561CC25F), UINT32_C(0x2A6A0C0C), UINT32_C(0x651A7939)}}, {{UINT32_C(0x88CD7642), UINT32_C(0x103E9EC6), UINT32_C(0x3C3C86CE), UINT32_C(0x65ED5218), UINT32_C(0x82785C8B), UINT32_C(0x16BAB002), UINT32_C(0xF34723C5), UINT32_C(0x0B5C18BB)}, {UINT32_C(0xE724D144), UINT32_C(0x528B0546), UINT32_C(0x780EEF9E), UINT32_C(0x5E582A6B), UINT32_C(0x122F17AD), UINT32_C(0xC08283B8), UINT32_C(0x1C22F32D), UINT32_C(0x0300EDCD)}}, {{UINT32_C(0x38DCFD39), UINT32_C(0x03AC716A), UINT32_C(0x94F12C74), UINT32_C(0xCD88474C), UINT32_C(0xE9042CA8), UINT32_C(0xB5E8641E), UINT32_C(0x40D10558), UINT32_C(0x1D5746CC)}, {UINT32_C(0xCB4BB408), UINT32_C(0x7869F45E), UINT32_C(0x569489C3), UINT32_C(0x28FB091D), UINT32_C(0x50A46306), UINT32_C(0xEA371EEC), UINT32_C(0x75AA224C), UINT32_C(0x28025796)}}, {{UINT32_C(0xF7A5923A), UINT32_C(0x4EAFA44E), UINT32_C(0x6B69FD8B), UINT32_C(0xD2427C30), UINT32_C(0x393D83F9), UINT32_C(0x4C4E884A), UINT32_C(0x6236AB65), UINT32_C(0x2D34890A)}, {UINT32_C(0x35CC97F5), UINT32_C(0x80038D40), UINT32_C(0x97897472), UINT32_C(0x4FE43C84), UINT32_C(0xBEF161AF), UINT32_C(0xE5F56243), UINT32_C(0x9372E631), UINT32_C(0x3E1BDD6F)}}, {{UINT32_C(0x5732669F), UINT32_C(0x06A2B287), UINT32_C(0xCDF4D2C0), UINT32_C(0x92D00397), UINT32_C(0x454A57F5), UINT32_C(0xCD9A25F0), UINT32_C(0x2F0CDB0B), UINT32_C(0x23ADB724)}, {UINT32_C(0xFF0F8CB0), UINT32_C(0x504DA603), UINT32_C(0xD3E24181), UINT32_C(0x14EF9D30), UINT32_C(0x47FC1E66), UINT32_C(0xB1B1328E), UINT32_C(0x6C60354D), UINT32_C(0x319B2A84)}}, }, { {{UINT32_C(0xF1D56038), UINT32_C(0xBBF5542E), UINT32_C(0xDD71CFC3), UINT32_C(0xEDE3E637), UINT32_C(0x2E9F6C8B), UINT32_C(0xFAA81D21), UINT32_C(0x69FBD060), UINT32_C(0x4DD2D44B)}, {UINT32_C(0x14366A20), UINT32_C(0x71FB6233), UINT32_C(0x9575451D), UINT32_C(0x155E486F), UINT32_C(0xEC7807D9), UINT32_C(0x001106F0), UINT32_C(0xC617034C), UINT32_C(0x1C80E5AB)}}, {{UINT32_C(0x8619F5F4), UINT32_C(0xD3E478DB), UINT32_C(0xF68170C2), UINT32_C(0x1DF5C367), UINT32_C(0x3430DE1D), UINT32_C(0xEAB09524), UINT32_C(0xC3CD4C24), UINT32_C(0x48F09361)}, {UINT32_C(0x60644FED), UINT32_C(0xE49DEA4B), UINT32_C(0x758C3679), UINT32_C(0x47170F1C), UINT32_C(0xB0382A84), UINT32_C(0x4CC1E6E8), UINT32_C(0x10A4465E), UINT32_C(0x2DBDB9DA)}}, {{UINT32_C(0xC8400A4C), UINT32_C(0x67BAA79A), UINT32_C(0x01D28ECE), UINT32_C(0xFA306753), UINT32_C(0x6F33289C), UINT32_C(0x29DB5B1C), UINT32_C(0x26A8FCB4), UINT32_C(0x44757573)}, {UINT32_C(0xE1B0A795), UINT32_C(0x59616219), UINT32_C(0xC5B32FA0), UINT32_C(0x3032D939), UINT32_C(0x7C3CEA2C), UINT32_C(0x3010C917), UINT32_C(0x9892BDF4), UINT32_C(0x5CF83EF1)}}, {{UINT32_C(0x3C7E83E6), UINT32_C(0x55DE1141), UINT32_C(0x74EA0366), UINT32_C(0x9D03929C), UINT32_C(0x83BAF3FE), UINT32_C(0x5CA60C50), UINT32_C(0x7F70E905), UINT32_C(0x3D9BCA58)}, {UINT32_C(0xFCC5AB59), UINT32_C(0xDB79DF5A), UINT32_C(0x53F68D30), UINT32_C(0x03CFCF06), UINT32_C(0x4FCFA5F1), UINT32_C(0xBE101A78), UINT32_C(0xB49E493C), UINT32_C(0x115D7078)}}, {{UINT32_C(0x76A0CCBD), UINT32_C(0xF14023AA), UINT32_C(0x086F2E50), UINT32_C(0x4287F0BC), UINT32_C(0xF79A37E7), UINT32_C(0xC5EAA559), UINT32_C(0x04E4F2A2), UINT32_C(0x5D527C09)}, {UINT32_C(0x51DAA504), UINT32_C(0xEC914616), UINT32_C(0xEEF1DC95), UINT32_C(0x250D90C6), UINT32_C(0xA50330B2), UINT32_C(0x1B0AA868), UINT32_C(0x54189BBE), UINT32_C(0x7B45A783)}}, {{UINT32_C(0xF019D6FF), UINT32_C(0x0D602E05), UINT32_C(0xDD1800BA), UINT32_C(0x563E3893), UINT32_C(0xF3C7F7E5), UINT32_C(0x7146727E), UINT32_C(0x4B026635), UINT32_C(0x59641D98)}, {UINT32_C(0xE91DDBB8), UINT32_C(0x50BCF90F), UINT32_C(0x7F8397A6), UINT32_C(0x5D43E78E), UINT32_C(0xEB15896E), UINT32_C(0x8734A261), UINT32_C(0x9FF6B361), UINT32_C(0x4AD1E864)}}, {{UINT32_C(0x320322F1), UINT32_C(0x1A9B601F), UINT32_C(0x91F611C4), UINT32_C(0x606D40B3), UINT32_C(0xA19C918F), UINT32_C(0xB984958B), UINT32_C(0x776F834E), UINT32_C(0x67BFB045)}, {UINT32_C(0x68DD85F0), UINT32_C(0xC59E5569), UINT32_C(0xD4067875), UINT32_C(0xB5642834), UINT32_C(0xCB138DF3), UINT32_C(0x247E7D65), UINT32_C(0x5CB9281D), UINT32_C(0x73640A03)}}, {{UINT32_C(0x88639889), UINT32_C(0xC7C34CCC), UINT32_C(0xA785C707), UINT32_C(0xD9E44E07), UINT32_C(0x32F83073), UINT32_C(0x1BE68EFE), UINT32_C(0xAE5317CE), UINT32_C(0x249902DA)}, {UINT32_C(0x76CA92FF), UINT32_C(0xF1F0B86A), UINT32_C(0xC01CB06B), UINT32_C(0xA7F502CF), UINT32_C(0x595AA185), UINT32_C(0x0A8B4766), UINT32_C(0xB792DE49), UINT32_C(0x614135AA)}}, {{UINT32_C(0x564F2BC8), UINT32_C(0x5392CAA7), UINT32_C(0xCC894FCD), UINT32_C(0x1CDDA684), UINT32_C(0xA4EBF82F), UINT32_C(0x10AC2378), UINT32_C(0x5051BFF9), UINT32_C(0x6211EA46)}, {UINT32_C(0x30E8E210), UINT32_C(0xE53B0174), UINT32_C(0x02C0E381), UINT32_C(0x2374FEC3), UINT32_C(0x4DA07224), UINT32_C(0xF8B1506B), UINT32_C(0x54DA7A08), UINT32_C(0x4E451E01)}}, {{UINT32_C(0x241FC7FB), UINT32_C(0xA8404D9C), UINT32_C(0xC4406332), UINT32_C(0x1D6DBF6E), UINT32_C(0x30162118), UINT32_C(0xFE142319), UINT32_C(0xA7EF5EF5), UINT32_C(0x69DE75CC)}, {UINT32_C(0x856E26A5), UINT32_C(0x008D4D09), UINT32_C(0xC588ECF6), UINT32_C(0x2BC64B65), UINT32_C(0xAA01EE19), UINT32_C(0x7A523D0B), UINT32_C(0x932F0B95), UINT32_C(0x213EF390)}}, {{UINT32_C(0x1CD716FA), UINT32_C(0xA42FE513), UINT32_C(0x0E8001B6), UINT32_C(0xFB13B3C6), UINT32_C(0xD8F530CB), UINT32_C(0xBFDC7998), UINT32_C(0xF1C61761), UINT32_C(0x04F9C05B)}, {UINT32_C(0xAFED9D64), UINT32_C(0xFB57396F), UINT32_C(0x421AC123), UINT32_C(0x28CCEE3A), UINT32_C(0xF6C21ACC), UINT32_C(0x32590C9B), UINT32_C(0xBCA75AE3), UINT32_C(0x503B97CB)}}, {{UINT32_C(0x366946ED), UINT32_C(0x745208BC), UINT32_C(0x4C906596), UINT32_C(0xA75D88E9), UINT32_C(0xEE043530), UINT32_C(0x03A30C7E), UINT32_C(0xD11BF4D5), UINT32_C(0x5C67C151)}, {UINT32_C(0xE7AE4BB3), UINT32_C(0x04F75DFA), UINT32_C(0x7F8D7404), UINT32_C(0xA0813606), UINT32_C(0x19D68F64), UINT32_C(0x8B9F9210), UINT32_C(0x06F73B55), UINT32_C(0x5AB67971)}}, {{UINT32_C(0xB0687095), UINT32_C(0x08064C4A), UINT32_C(0xB0106DF4), UINT32_C(0x27E30DDD), UINT32_C(0x8482524A), UINT32_C(0x31D29C70), UINT32_C(0xD86FDACD), UINT32_C(0x65DD5896)}, {UINT32_C(0xC647197E), UINT32_C(0x081C013D), UINT32_C(0xD7A53A45), UINT32_C(0x51C10B9E), UINT32_C(0x0DD7FC53), UINT32_C(0xACB9A4DE), UINT32_C(0xF646220B), UINT32_C(0x639997A2)}}, {{UINT32_C(0x1FB93B43), UINT32_C(0x97CCF825), UINT32_C(0xE488D786), UINT32_C(0xB7D7713D), UINT32_C(0x3E4DBB33), UINT32_C(0x4F759566), UINT32_C(0xE0F09964), UINT32_C(0x13B5D8A1)}, {UINT32_C(0x316CDD97), UINT32_C(0xFFDDAD74), UINT32_C(0x52C92EE9), UINT32_C(0x67C55782), UINT32_C(0x0AC5D6FD), UINT32_C(0x03B50F94), UINT32_C(0x1484DF88), UINT32_C(0x56C5C009)}}, {{UINT32_C(0x1778D303), UINT32_C(0xDCE199E3), UINT32_C(0x0F1DD4EC), UINT32_C(0x53A2A4C6), UINT32_C(0x370A7B99), UINT32_C(0x7CC5EE9E), UINT32_C(0x2598744E), UINT32_C(0x4403202B)}, {UINT32_C(0x228247B6), UINT32_C(0xCCFAA978), UINT32_C(0x4A1D0E27), UINT32_C(0xF50D14BD), UINT32_C(0x80723ABC), UINT32_C(0x66695061), UINT32_C(0x742C0015), UINT32_C(0x750CCB6A)}}, {{UINT32_C(0x81A109F1), UINT32_C(0x7B046936), UINT32_C(0xD4C1AFE5), UINT32_C(0x6414D9A3), UINT32_C(0xDD14AC1F), UINT32_C(0x35070548), UINT32_C(0xDEC0D3F0), UINT32_C(0x27172F39)}, {UINT32_C(0xF2E273F0), UINT32_C(0x4EE0A7BF), UINT32_C(0xEC82B8E6), UINT32_C(0x028C7813), UINT32_C(0x2081EAE2), UINT32_C(0x907BF09F), UINT32_C(0x414D6421), UINT32_C(0x72E4C3D3)}}, }, { {{UINT32_C(0xA073711C), UINT32_C(0x2064097E), UINT32_C(0x5A65EC25), UINT32_C(0x980D830A), UINT32_C(0xF0877567), UINT32_C(0x7906A87C), UINT32_C(0xF1980A3A), UINT32_C(0x3E5EAE10)}, {UINT32_C(0x9272CE32), UINT32_C(0x5F51023A), UINT32_C(0xA437C974), UINT32_C(0x71D69E68), UINT32_C(0xD0B579FF), UINT32_C(0x32006EA1), UINT32_C(0xA436E129), UINT32_C(0x191935FF)}}, {{UINT32_C(0x91C1474C), UINT32_C(0xE5FE2909), UINT32_C(0x1F0B10F5), UINT32_C(0x7350B9FA), UINT32_C(0x6B4AB128), UINT32_C(0x2006F41D), UINT32_C(0xCD95FA42), UINT32_C(0x4EBDA6CF)}, {UINT32_C(0x5DA9A7F4), UINT32_C(0x45028938), UINT32_C(0x57FB462B), UINT32_C(0xD8129DE4), UINT32_C(0xE592EF90), UINT32_C(0x4F2BF2C9), UINT32_C(0xD6751DCC), UINT32_C(0x14A1A16B)}}, {{UINT32_C(0xDE0CD47A), UINT32_C(0x7460BB84), UINT32_C(0x468CBA3D), UINT32_C(0x261F24D6), UINT32_C(0x1E3C2D8A), UINT32_C(0x229D3181), UINT32_C(0x1D19E059), UINT32_C(0x4AE520C9)}, {UINT32_C(0xDF8DC66E), UINT32_C(0x5AC3AEE7), UINT32_C(0x299697EE), UINT32_C(0xCB417060), UINT32_C(0xCE97514F), UINT32_C(0x227C1497), UINT32_C(0x2E991FDE), UINT32_C(0x2589B803)}}, {{UINT32_C(0xA97A5D03), UINT32_C(0x7FE9D585), UINT32_C(0x10D58157), UINT32_C(0x7333A1EF), UINT32_C(0xC94C3DF6), UINT32_C(0x54C1CCD2), UINT32_C(0x28073B4E), UINT32_C(0x25C1B252)}, {UINT32_C(0x0635AD79), UINT32_C(0xEEB29AF9), UINT32_C(0x9AA38848), UINT32_C(0x880019C1), UINT32_C(0x30A9A497), UINT32_C(0x1A859942), UINT32_C(0x92B25ABA), UINT32_C(0x57EDCC2D)}}, {{UINT32_C(0x65E19DE6), UINT32_C(0xA98DAE7D), UINT32_C(0x46AD8696), UINT32_C(0x8007DD17), UINT32_C(0xA7F3BBAD), UINT32_C(0x61F2E2CF), UINT32_C(0x54193858), UINT32_C(0x1EFCD387)}, {UINT32_C(0x11666ECF), UINT32_C(0xFB54FD60), UINT32_C(0x36E7D371), UINT32_C(0xD97EA5DF), UINT32_C(0x3B9371FF), UINT32_C(0x944CA170), UINT32_C(0x05DE7FB0), UINT32_C(0x32A52CAC)}}, {{UINT32_C(0x19ED8B5E), UINT32_C(0xB960FFF6), UINT32_C(0x660354BB), UINT32_C(0xFD6B4C3E), UINT32_C(0x1C9E95F0), UINT32_C(0xF8ECAADA), UINT32_C(0xA8E08CC7), UINT32_C(0x687A6D29)}, {UINT32_C(0xC6A83D12), UINT32_C(0xD38B7670), UINT32_C(0x1265BF30), UINT32_C(0x1646064C), UINT32_C(0x2464892D), UINT32_C(0x7DE19FFE), UINT32_C(0x1BDBB729), UINT32_C(0x05B57E08)}}, {{UINT32_C(0xFFB7A98A), UINT32_C(0xF3586B04), UINT32_C(0xCB072826), UINT32_C(0xF1850CDC), UINT32_C(0xCF53BFB0), UINT32_C(0xFA3E66A4), UINT32_C(0x06E07221), UINT32_C(0x7C78E567)}, {UINT32_C(0x3B4E72AE), UINT32_C(0x21E6F245), UINT32_C(0xC6A3DBE8), UINT32_C(0x10A0D78B), UINT32_C(0xD618DDAB), UINT32_C(0xB9FC6D77), UINT32_C(0x76951DE5), UINT32_C(0x33092D13)}}, {{UINT32_C(0x5A0257CB), UINT32_C(0xCAA1BF9D), UINT32_C(0x866C505F), UINT32_C(0x1044E224), UINT32_C(0x81482E7D), UINT32_C(0x9B514107), UINT32_C(0x88940BFB), UINT32_C(0x538CB867)}, {UINT32_C(0xAC21DCC1), UINT32_C(0xACE68B78), UINT32_C(0x1609BF8C), UINT32_C(0x57942F3C), UINT32_C(0x66E48C7A), UINT32_C(0x30A47F32), UINT32_C(0xB0DA341F), UINT32_C(0x170D301D)}}, {{UINT32_C(0x18ED9863), UINT32_C(0x19643EB2), UINT32_C(0xD9104F33), UINT32_C(0xBBE55BCC), UINT32_C(0xA15B283C), UINT32_C(0x77008B6C), UINT32_C(0x873A6A02), UINT32_C(0x2A6E0B41)}, {UINT32_C(0x3CB9A225), UINT32_C(0x517410DF), UINT32_C(0xF538730A), UINT32_C(0x20D76E38), UINT32_C(0x9F8724F0), UINT32_C(0x76C9CAD6), UINT32_C(0x6BE9A035), UINT32_C(0x588BA106)}}, {{UINT32_C(0xF842F66C), UINT32_C(0xA059DBEC), UINT32_C(0xB3ED0481), UINT32_C(0x59CA186D), UINT32_C(0xD454490F), UINT32_C(0xA5B2ABCB), UINT32_C(0x02624902), UINT32_C(0x4A0F6004)}, {UINT32_C(0x4D2F605F), UINT32_C(0x45AF7B51), UINT32_C(0xC368030F), UINT32_C(0x57E8FE0F), UINT32_C(0x0C0727AE), UINT32_C(0x23B74557), UINT32_C(0x2B603EC4), UINT32_C(0x7E91EC77)}}, {{UINT32_C(0xFD582BE8), UINT32_C(0xEDD284CF), UINT32_C(0x81093CDA), UINT32_C(0x3077CB23), UINT32_C(0xFDEA4FCE), UINT32_C(0xB1934840), UINT32_C(0xD7F01C9A), UINT32_C(0x00F9B9D1)}, {UINT32_C(0x0A1C707B), UINT32_C(0xA55E5C5B), UINT32_C(0x2F8618A5), UINT32_C(0x05CD73CB), UINT32_C(0x512EEA05), UINT32_C(0x7327CECB), UINT32_C(0x8BF2A4D5), UINT32_C(0x5130A099)}}, {{UINT32_C(0xFA7A1C7B), UINT32_C(0x34D18880), UINT32_C(0xFD4E043F), UINT32_C(0x5E0D6C53), UINT32_C(0x1B4442AE), UINT32_C(0xB4DD8010), UINT32_C(0x78ED7563), UINT32_C(0x59D9183E)}, {UINT32_C(0xF1FAE158), UINT32_C(0x624DDAFC), UINT32_C(0x5C4C1E92), UINT32_C(0xC08C3653), UINT32_C(0xCE3E42EF), UINT32_C(0x452FD71F), UINT32_C(0x20B902EC), UINT32_C(0x175B4908)}}, {{UINT32_C(0x18F4CE34), UINT32_C(0x5F0FDF24), UINT32_C(0x9B7E61B8), UINT32_C(0xA64A3011), UINT32_C(0x663362E2), UINT32_C(0x8109ACD5), UINT32_C(0x97F3DF44), UINT32_C(0x4D02F824)}, {UINT32_C(0x3A4F916A), UINT32_C(0x2CE27CCE), UINT32_C(0x3B85B146), UINT32_C(0x4A4E6CBB), UINT32_C(0xDB8C9E5E), UINT32_C(0xFE7A6199), UINT32_C(0xD94B8D23), UINT32_C(0x53F5D620)}}, {{UINT32_C(0xE77610A9), UINT32_C(0x37FEBEC3), UINT32_C(0x92245CB0), UINT32_C(0xE82D8EAC), UINT32_C(0xF79A31BC), UINT32_C(0x3FD2CEEA), UINT32_C(0xB446850C), UINT32_C(0x277ACF32)}, {UINT32_C(0xCE1A2786), UINT32_C(0xD89FF4C7), UINT32_C(0xFFD3A23C), UINT32_C(0x441781E5), UINT32_C(0x07E85496), UINT32_C(0x7876EFC5), UINT32_C(0xE6F41B30), UINT32_C(0x0F306C7B)}}, {{UINT32_C(0x5AB1B92B), UINT32_C(0x3BF2BFD1), UINT32_C(0xF373FCF2), UINT32_C(0xDCC3F5A6), UINT32_C(0xDA53C229), UINT32_C(0x27CFC4A6), UINT32_C(0x508E677F), UINT32_C(0x5885737C)}, {UINT32_C(0x7B829F24), UINT32_C(0x1275D0F1), UINT32_C(0x4991B75B), UINT32_C(0xBD3C0B02), UINT32_C(0xE581C569), UINT32_C(0x3F82ACDF), UINT32_C(0x3F28904E), UINT32_C(0x12329435)}}, {{UINT32_C(0x99C3A09B), UINT32_C(0xCF7BDCCC), UINT32_C(0x5F7D601A), UINT32_C(0x19191107), UINT32_C(0x39FBAA22), UINT32_C(0xA82F7460), UINT32_C(0xD75B5786), UINT32_C(0x3105A6FC)}, {UINT32_C(0x932F69A6), UINT32_C(0x9673DAC4), UINT32_C(0xB57D6EE6), UINT32_C(0xF5664B25), UINT32_C(0x0A3CDD3E), UINT32_C(0x1EDAC112), UINT32_C(0x42778563), UINT32_C(0x3CF84F8C)}}, }, { {{UINT32_C(0x65DE3040), UINT32_C(0xE36FD1B7), UINT32_C(0x8AA0D3FE), UINT32_C(0x240EADEA), UINT32_C(0x7F77F804), UINT32_C(0x76971431), UINT32_C(0x591E9694), UINT32_C(0x6FCC933E)}, {UINT32_C(0x18F48742), UINT32_C(0x3218D92B), UINT32_C(0x5E1B4001), UINT32_C(0x215F13E9), UINT32_C(0x7A8D69B9), UINT32_C(0xCDF333CD), UINT32_C(0xD2FD134F), UINT32_C(0x14F159B1)}}, {{UINT32_C(0x07A50C16), UINT32_C(0x2D1228D6), UINT32_C(0x29AE42FD), UINT32_C(0x0DFD80F6), UINT32_C(0xBB8F3512), UINT32_C(0x6C18B122), UINT32_C(0x303F3DCA), UINT32_C(0x0FE61243)}, {UINT32_C(0xDA50709B), UINT32_C(0x43A29F4D), UINT32_C(0x4B92BF7B), UINT32_C(0x3FF58C08), UINT32_C(0xDFCEF797), UINT32_C(0x62DC6B41), UINT32_C(0xC7B83F32), UINT32_C(0x43F9525A)}}, {{UINT32_C(0x15F08F5B), UINT32_C(0x17EBBC9A), UINT32_C(0x8BB3E932), UINT32_C(0xBCD3B640), UINT32_C(0x510BBD36), UINT32_C(0xD46FBB9F), UINT32_C(0xCF65442B), UINT32_C(0x389ABBA8)}, {UINT32_C(0xB575545C), UINT32_C(0x3A3DAFE4), UINT32_C(0xE1D0994D), UINT32_C(0x6AB985EC), UINT32_C(0x69E1DB27), UINT32_C(0xCC2A697B), UINT32_C(0x271581DC), UINT32_C(0x0D483E18)}}, {{UINT32_C(0xC046D968), UINT32_C(0x380D4095), UINT32_C(0x55D3318B), UINT32_C(0x53039755), UINT32_C(0x91CE6FFC), UINT32_C(0x57FA7629), UINT32_C(0xA4ADB641), UINT32_C(0x0A0F2885)}, {UINT32_C(0x6E5C2909), UINT32_C(0x8B99AF1B), UINT32_C(0xB8794175), UINT32_C(0xBDFE7FFD), UINT32_C(0x795ED786), UINT32_C(0x2CFB948A), UINT32_C(0x0FD0DF66), UINT32_C(0x11FE7465)}}, {{UINT32_C(0x22E152E2), UINT32_C(0xFC2CC2BD), UINT32_C(0xE30BCEB3), UINT32_C(0xCF6AB96B), UINT32_C(0xBC89B689), UINT32_C(0xAE89C041), UINT32_C(0xE7523AB6), UINT32_C(0x6813430C)}, {UINT32_C(0x40A4FA33), UINT32_C(0x3F49E728), UINT32_C(0x857CB0C9), UINT32_C(0x025DE1B7), UINT32_C(0x11EA5EA5), UINT32_C(0x6D71465A), UINT32_C(0x46C8D7CB), UINT32_C(0x6651F7B9)}}, {{UINT32_C(0x5268098F), UINT32_C(0xD05F1DCE), UINT32_C(0x0DC75030), UINT32_C(0x891DBB68), UINT32_C(0xEA916291), UINT32_C(0xD939E428), UINT32_C(0xEA37D060), UINT32_C(0x5F8EECCC)}, {UINT32_C(0x8DC5D544), UINT32_C(0x885F1EA8), UINT32_C(0x57E7448F), UINT32_C(0xFD3B3D17), UINT32_C(0x79531DE0), UINT32_C(0x5FC791A8), UINT32_C(0x42E66DAA), UINT32_C(0x780C1AAF)}}, {{UINT32_C(0x397BB28F), UINT32_C(0x19697778), UINT32_C(0xAAA9069D), UINT32_C(0x5EC31D44), UINT32_C(0x3CA24A6F), UINT32_C(0xDC2DFEAA), UINT32_C(0x80BED770), UINT32_C(0x3F66CFCA)}, {UINT32_C(0x1A102662), UINT32_C(0x2B6B8215), UINT32_C(0xC5D34CEB), UINT32_C(0x44B4D7A4), UINT32_C(0x88AFECF2), UINT32_C(0x17E0FDE6), UINT32_C(0xCFF8D214), UINT32_C(0x0DEFA14B)}}, {{UINT32_C(0x8365CA84), UINT32_C(0x14035AA4), UINT32_C(0x197CE2B7), UINT32_C(0x309CEEF0), UINT32_C(0xED39AF37), UINT32_C(0x21305426), UINT32_C(0xD2EA583A), UINT32_C(0x10D01D11)}, {UINT32_C(0x9FA5C766), UINT32_C(0x3F2E9749), UINT32_C(0xD70549D4), UINT32_C(0x98357584), UINT32_C(0xD279946D), UINT32_C(0x8FF80803), UINT32_C(0x99DF1253), UINT32_C(0x53DBC433)}}, {{UINT32_C(0x5329F12F), UINT32_C(0x1D0D9EFA), UINT32_C(0xBE1F007F), UINT32_C(0xBC9F74CF), UINT32_C(0x18EE4DBC), UINT32_C(0xD7F2AA9A), UINT32_C(0x3A792753), UINT32_C(0x634BF4CF)}, {UINT32_C(0x2FA6255A), UINT32_C(0xD5DC72AD), UINT32_C(0xF3BC00C5), UINT32_C(0xEE69EA43), UINT32_C(0xD8147A1A), UINT32_C(0xEA930F61), UINT32_C(0xF4E9AD37), UINT32_C(0x25E1368D)}}, {{UINT32_C(0xB7C955EC), UINT32_C(0x9422AAF7), UINT32_C(0x6A74D634), UINT32_C(0x7C710761), UINT32_C(0x305EE420), UINT32_C(0x4ED89932), UINT32_C(0x2E937289), UINT32_C(0x07E42212)}, {UINT32_C(0x28566C88), UINT32_C(0x7EBB2313), UINT32_C(0xC27ED656), UINT32_C(0xC7ED9C7A), UINT32_C(0xBF14FB3B), UINT32_C(0xF77F3873), UINT32_C(0xEB957520), UINT32_C(0x447AA1E5)}}, {{UINT32_C(0xB5C5E016), UINT32_C(0x3E3CEC7E), UINT32_C(0xBDE44D26), UINT32_C(0xB33DDFF7), UINT32_C(0x66E820DD), UINT32_C(0x2056E9C7), UINT32_C(0xF8196FE2), UINT32_C(0x21A9E5D4)}, {UINT32_C(0x88040C97), UINT32_C(0x86CB0A17), UINT32_C(0xFF515D49), UINT32_C(0x18AD8AE7), UINT32_C(0x226A400A), UINT32_C(0xCB8A564A), UINT32_C(0x8B72A0D2), UINT32_C(0x6DB48979)}}, {{UINT32_C(0x6324DED2), UINT32_C(0x4365074B), UINT32_C(0xAEDAF0F8), UINT32_C(0x9EFB5CC6), UINT32_C(0xC0792B14), UINT32_C(0xCF952C3C), UINT32_C(0x97ED965E), UINT32_C(0x70B82AB9)}, {UINT32_C(0x3ACEBCE7), UINT32_C(0x931B9886), UINT32_C(0x18C2425A), UINT32_C(0xDA850491), UINT32_C(0xE499F7FB), UINT32_C(0xD88E1E27), UINT32_C(0x960981DE), UINT32_C(0x61D3F246)}}, {{UINT32_C(0x8393EB0A), UINT32_C(0x1D8EA227), UINT32_C(0x7863FB53), UINT32_C(0x9DCC23D2), UINT32_C(0xD5EBD297), UINT32_C(0x961B2337), UINT32_C(0x5BFED1E9), UINT32_C(0x0A96F8B2)}, {UINT32_C(0xFE7DD2B7), UINT32_C(0x39EA1803), UINT32_C(0xE5F7772A), UINT32_C(0x7E4817BB), UINT32_C(0xD44A41EF), UINT32_C(0x3668C5FF), UINT32_C(0xE11F8E11), UINT32_C(0x78227653)}}, {{UINT32_C(0xD024880B), UINT32_C(0x272D6933), UINT32_C(0xF236FD8A), UINT32_C(0x733C029F), UINT32_C(0x604868F0), UINT32_C(0xBA5C20BD), UINT32_C(0x321175C2), UINT32_C(0x33F211AE)}, {UINT32_C(0x9FD79FE3), UINT32_C(0xE40010FB), UINT32_C(0xA685A59F), UINT32_C(0x9C6EA1DC), UINT32_C(0x8EB9889D), UINT32_C(0x79963FFC), UINT32_C(0x5F67108D), UINT32_C(0x15434E7D)}}, {{UINT32_C(0xD68B670F), UINT32_C(0x42C14BBF), UINT32_C(0x23F1AA69), UINT32_C(0x2021AC9D), UINT32_C(0xAEA04636), UINT32_C(0xBF4C6D74), UINT32_C(0xBD1FB11D), UINT32_C(0x1E4D2F8E)}, {UINT32_C(0x37911AA6), UINT32_C(0x4B0CF0E3), UINT32_C(0x2C484507), UINT32_C(0x7542D928), UINT32_C(0x889542DC), UINT32_C(0x68836751), UINT32_C(0xFE2282A0), UINT32_C(0x05F229F7)}}, {{UINT32_C(0x409B2067), UINT32_C(0xAF269E8B), UINT32_C(0xA860F075), UINT32_C(0x6C749952), UINT32_C(0x5DF7C7F6), UINT32_C(0xCB7492DA), UINT32_C(0xE8E591E1), UINT32_C(0x2B010A7F)}, {UINT32_C(0x04D9E871), UINT32_C(0xF7446577), UINT32_C(0x5E68408E), UINT32_C(0xC2E0A2A3), UINT32_C(0xD0F0BAAD), UINT32_C(0xD512E9A6), UINT32_C(0xC6BE34A3), UINT32_C(0x3E2F73E1)}}, }, { {{UINT32_C(0x2EC65BB4), UINT32_C(0x6C466C8E), UINT32_C(0xB1FC8F92), UINT32_C(0x912FFAE5), UINT32_C(0xB50A522D), UINT32_C(0x7587BE5D), UINT32_C(0x649847CF), UINT32_C(0x15939FF7)}, {UINT32_C(0xF464794E), UINT32_C(0x69E81D63), UINT32_C(0x6D3F858E), UINT32_C(0x7BB6EEE3), UINT32_C(0x10813BBB), UINT32_C(0x24FE5C01), UINT32_C(0x6D80756C), UINT32_C(0x0C491F97)}}, {{UINT32_C(0xA5FF3510), UINT32_C(0xBAD1C256), UINT32_C(0x99C1B7B2), UINT32_C(0xF06F38A2), UINT32_C(0x049312D6), UINT32_C(0xF7C0F164), UINT32_C(0x5749B3E4), UINT32_C(0x073C5374)}, {UINT32_C(0x55211A81), UINT32_C(0xD6761480), UINT32_C(0xDFA98F45), UINT32_C(0xF34CB5DB), UINT32_C(0xB4AA4967), UINT32_C(0xAF59FA47), UINT32_C(0x8214BE48), UINT32_C(0x116935B9)}}, {{UINT32_C(0x9FE10E46), UINT32_C(0x1D86FA00), UINT32_C(0x0B5B8494), UINT32_C(0x73B8099C), UINT32_C(0xA1102BE7), UINT32_C(0x9A6EA98D), UINT32_C(0x5514CA21), UINT32_C(0x3DE1948B)}, {UINT32_C(0xD0AAAA53), UINT32_C(0x5D18ED69), UINT32_C(0x3C952B98), UINT32_C(0x17BF7DFF), UINT32_C(0x7DDBD937), UINT32_C(0xC60143FE), UINT32_C(0x6F2F10C4), UINT32_C(0x214F2F55)}}, {{UINT32_C(0x02F047D0), UINT32_C(0xB2F28695), UINT32_C(0x923F52BF), UINT32_C(0x80952DFE), UINT32_C(0xA5017C3E), UINT32_C(0x56F3306B), UINT32_C(0x052DADFB), UINT32_C(0x5DD62F07)}, {UINT32_C(0xD5274F90), UINT32_C(0xDD11592D), UINT32_C(0xE471965B), UINT32_C(0x40632FF3), UINT32_C(0x7E618430), UINT32_C(0xAD1939A8), UINT32_C(0x33F19556), UINT32_C(0x5DD9CAD2)}}, {{UINT32_C(0xC1094747), UINT32_C(0x7B0AA88C), UINT32_C(0xF6753A0C), UINT32_C(0xCFA6B95D), UINT32_C(0x2A252A4D), UINT32_C(0xE81AFADA), UINT32_C(0xD3770570), UINT32_C(0x364CAB7C)}, {UINT32_C(0xB4610A19), UINT32_C(0xE99D8252), UINT32_C(0x55ED9AD3), UINT32_C(0xB22B2FEC), UINT32_C(0xBEBE7FED), UINT32_C(0x328ACBDD), UINT32_C(0xFBEDFE84), UINT32_C(0x1D379D61)}}, {{UINT32_C(0x5EDF8C9C), UINT32_C(0xD9EFFFFA), UINT32_C(0x0CE548EC), UINT32_C(0x9BAA7181), UINT32_C(0x5FA8FEEB), UINT32_C(0xEB458AEB), UINT32_C(0x0904D841), UINT32_C(0x18C5E691)}, {UINT32_C(0x8F33D2E5), UINT32_C(0xFCEFAE28), UINT32_C(0x6FAFDA18), UINT32_C(0xB3CF853E), UINT32_C(0x427D6218), UINT32_C(0x05DE94BA), UINT32_C(0x3731D3E9), UINT32_C(0x021D8AED)}}, {{UINT32_C(0xE92719DA), UINT32_C(0x06C8C318), UINT32_C(0x1A65DFDB), UINT32_C(0x1F7CDE12), UINT32_C(0x4B672A2D), UINT32_C(0x9B4D531E), UINT32_C(0x115FAF11), UINT32_C(0x3E39CC63)}, {UINT32_C(0x0037AF60), UINT32_C(0xC9C3F339), UINT32_C(0x02B43D27), UINT32_C(0xC1C67587), UINT32_C(0xC42DF26B), UINT32_C(0x46B77CDD), UINT32_C(0xEBFA97A7), UINT32_C(0x7235F2B0)}}, {{UINT32_C(0xE898094E), UINT32_C(0xAF7FFC9A), UINT32_C(0x146A27E3), UINT32_C(0x8D18AB93), UINT32_C(0x8AEC0416), UINT32_C(0x1376B797), UINT32_C(0x8D91C25E), UINT32_C(0x746A1B1C)}, {UINT32_C(0x0EBDE2E3), UINT32_C(0x16DCCCC1), UINT32_C(0x8CE7D61E), UINT32_C(0xFE4ABD41), UINT32_C(0xE25F1551), UINT32_C(0xB9830395), UINT32_C(0xB885A943), UINT32_C(0x543493D7)}}, {{UINT32_C(0x24EBCFC0), UINT32_C(0x52C659E6), UINT32_C(0xD38367A4), UINT32_C(0x72E3CA91), UINT32_C(0x4D168F4F), UINT32_C(0xA3086AAC), UINT32_C(0x5D64207B), UINT32_C(0x656ACFEE)}, {UINT32_C(0xBA196A9E), UINT32_C(0xBE697CBA), UINT32_C(0x97DFFEC2), UINT32_C(0x6A737ACC), UINT32_C(0x54F04DBD), UINT32_C(0x393E2661), UINT32_C(0x4B0E92BD), UINT32_C(0x4FFF7C24)}}, {{UINT32_C(0x828EC659), UINT32_C(0xC709CC59), UINT32_C(0xCBDEACB3), UINT32_C(0xB275AC8C), UINT32_C(0xF7922523), UINT32_C(0xA8D08921), UINT32_C(0x400A6459), UINT32_C(0x68B92F96)}, {UINT32_C(0xDFBECB97), UINT32_C(0x45803EC2), UINT32_C(0x7515D696), UINT32_C(0x49464E05), UINT32_C(0x8F03E969), UINT32_C(0xF39CA961), UINT32_C(0x1CD7C79F), UINT32_C(0x605065A1)}}, {{UINT32_C(0x97F1A97A), UINT32_C(0xB91C03DC), UINT32_C(0x201FFB53), UINT32_C(0x2F6D50BB), UINT32_C(0x46241856), UINT32_C(0x39D67D40), UINT32_C(0x74D04805), UINT32_C(0x0A2C0256)}, {UINT32_C(0x28374A6D), UINT32_C(0xD289B94C), UINT32_C(0x10EDD6FC), UINT32_C(0x1176C73A), UINT32_C(0x56AE631E), UINT32_C(0x890E9C39), UINT32_C(0x6027F549), UINT32_C(0x30451CF1)}}, {{UINT32_C(0xDF8F4DDB), UINT32_C(0x0CB33FDC), UINT32_C(0x87FF6E63), UINT32_C(0xD9C540DE), UINT32_C(0x55A1D8E4), UINT32_C(0xD8445732), UINT32_C(0x8AC403A6), UINT32_C(0x1497403D)}, {UINT32_C(0x6A4BAAC6), UINT32_C(0xA2591C40), UINT32_C(0x48DD3E5D), UINT32_C(0xF493CF1F), UINT32_C(0xB69AF047), UINT32_C(0x7B9AE39F), UINT32_C(0x3782B110), UINT32_C(0x293123C0)}}, {{UINT32_C(0xB7A36B62), UINT32_C(0x14921836), UINT32_C(0x4CA3AA39), UINT32_C(0x5AC82430), UINT32_C(0x52F601CA), UINT32_C(0x01303AA6), UINT32_C(0x2B43BB72), UINT32_C(0x7EE1E6C7)}, {UINT32_C(0x64D44957), UINT32_C(0x7F82B37B), UINT32_C(0xDA4A6FEC), UINT32_C(0x840D0654), UINT32_C(0x0290F75D), UINT32_C(0xFC806FA1), UINT32_C(0x4C62F0E8), UINT32_C(0x3027FE4A)}}, {{UINT32_C(0xCD0D3AC0), UINT32_C(0x34E68AB5), UINT32_C(0xE9BC85BD), UINT32_C(0xE6B0B8C1), UINT32_C(0x99533831), UINT32_C(0xE00F5052), UINT32_C(0xCDC83750), UINT32_C(0x11327DA7)}, {UINT32_C(0x4656A428), UINT32_C(0x6D991DF0), UINT32_C(0x86228F26), UINT32_C(0x6A7BE349), UINT32_C(0x3019CDC5), UINT32_C(0x6BF85E3D), UINT32_C(0x576913A4), UINT32_C(0x42200D2F)}}, {{UINT32_C(0x707B940F), UINT32_C(0x420D9259), UINT32_C(0x3C5E39BB), UINT32_C(0x1BB1FFE1), UINT32_C(0xE40D018E), UINT32_C(0x83D6BA36), UINT32_C(0x044EC576), UINT32_C(0x139BD842)}, {UINT32_C(0xC6DE63E8), UINT32_C(0x3C79F8D2), UINT32_C(0x96F1FB0B), UINT32_C(0x49150B1D), UINT32_C(0x1358A13B), UINT32_C(0x66616053), UINT32_C(0xD5DDFD9F), UINT32_C(0x187CA3CF)}}, {{UINT32_C(0x8D5AEE84), UINT32_C(0x0675370F), UINT32_C(0xDC269114), UINT32_C(0x30AA7D65), UINT32_C(0x5AFC6DC1), UINT32_C(0x295F7FE8), UINT32_C(0x55674339), UINT32_C(0x49452029)}, {UINT32_C(0xA6F209EC), UINT32_C(0x7EB1926B), UINT32_C(0xDC72C3E3), UINT32_C(0x5232B9D1), UINT32_C(0xAB52141B), UINT32_C(0xCD788D79), UINT32_C(0xFDD9611F), UINT32_C(0x3EB561BE)}}, }, { {{UINT32_C(0xE22241AD), UINT32_C(0x09DB342C), UINT32_C(0x2A566653), UINT32_C(0x2EAB852F), UINT32_C(0xCA6E59F3), UINT32_C(0x970843ED), UINT32_C(0xA18C2D89), UINT32_C(0x6490013E)}, {UINT32_C(0xC7A691CC), UINT32_C(0x52293350), UINT32_C(0xB2079F14), UINT32_C(0x6544B49D), UINT32_C(0x52DCF090), UINT32_C(0xC49C5598), UINT32_C(0x8817A2C7), UINT32_C(0x4069B6FC)}}, {{UINT32_C(0xC86B40F4), UINT32_C(0x0E4A4B0C), UINT32_C(0x51F6F853), UINT32_C(0x2B5350E1), UINT32_C(0x1033BEC4), UINT32_C(0xDE26FDE2), UINT32_C(0xC0E9B971), UINT32_C(0x4DE9D2E7)}, {UINT32_C(0xD315AD57), UINT32_C(0x716605FD), UINT32_C(0x392B101A), UINT32_C(0x5627D732), UINT32_C(0x81A9F40A), UINT32_C(0x628EDFC6), UINT32_C(0x5AB9C99D), UINT32_C(0x4BD2A96C)}}, {{UINT32_C(0xBFBD288A), UINT32_C(0x2C8DF2A1), UINT32_C(0xF4CF7C09), UINT32_C(0x260C4F1E), UINT32_C(0x90E796CB), UINT32_C(0x88A26186), UINT32_C(0x323E0702), UINT32_C(0x105ACC3A)}, {UINT32_C(0x667664CF), UINT32_C(0xA8ADA467), UINT32_C(0x3B518622), UINT32_C(0x41144C1B), UINT32_C(0xD8B99FE1), UINT32_C(0x4A532B87), UINT32_C(0x2289C308), UINT32_C(0x4A51C289)}}, {{UINT32_C(0x1D6F6880), UINT32_C(0x201DDA61), UINT32_C(0x62029898), UINT32_C(0x47A964D4), UINT32_C(0x426C8CA5), UINT32_C(0xE44E2EEE), UINT32_C(0x09625DBA), UINT32_C(0x02A51821)}, {UINT32_C(0xB45B3DFB), UINT32_C(0x170C626E), UINT32_C(0x5C8343A9), UINT32_C(0xFC7F1F71), UINT32_C(0xE549F040), UINT32_C(0xE6CF246F), UINT32_C(0x2F903ACE), UINT32_C(0x4ACF60AE)}}, {{UINT32_C(0x81C807EC), UINT32_C(0x91715352), UINT32_C(0x47174A58), UINT32_C(0x72AC60C3), UINT32_C(0xA0F12F61), UINT32_C(0xAD62D06F), UINT32_C(0xAA899C0D), UINT32_C(0x325C2792)}, {UINT32_C(0x9D8BA267), UINT32_C(0x53A1E392), UINT32_C(0xCDACCB05), UINT32_C(0x5DC088A5), UINT32_C(0x5025CB69), UINT32_C(0x5BB9127F), UINT32_C(0x69214616), UINT32_C(0x25D2B42E)}}, {{UINT32_C(0xDDB55121), UINT32_C(0x4DE5D58A), UINT32_C(0x84DE0677), UINT32_C(0x688AA2F5), UINT32_C(0x63AA25E0), UINT32_C(0xF7925A39), UINT32_C(0x85D4DEA5), UINT32_C(0x4FB42FC7)}, {UINT32_C(0x8F134390), UINT32_C(0x957B933B), UINT32_C(0x4B9BF8C2), UINT32_C(0xB360DD2C), UINT32_C(0xFFFF96CD), UINT32_C(0x45E6767F), UINT32_C(0x1E01D5C3), UINT32_C(0x26D0A6A9)}}, {{UINT32_C(0x5A0A98EA), UINT32_C(0xC7FC5714), UINT32_C(0xE7535AF6), UINT32_C(0xDBB06F30), UINT32_C(0xDF4ACD0D), UINT32_C(0x555B22E3), UINT32_C(0x2EFD2FBE), UINT32_C(0x3A011AAF)}, {UINT32_C(0xE9166B20), UINT32_C(0x341C7733), UINT32_C(0xFB19590A), UINT32_C(0x84619E8E), UINT32_C(0x10574C96), UINT32_C(0x8EF989FD), UINT32_C(0x0F55F9A2), UINT32_C(0x61ACFAAE)}}, {{UINT32_C(0x6DEAB094), UINT32_C(0x8C8A33F2), UINT32_C(0x96022EBC), UINT32_C(0x4A8E5D9F), UINT32_C(0x7DDA92E8), UINT32_C(0xA10DF82C), UINT32_C(0xD1CF3815), UINT32_C(0x33A19462)}, {UINT32_C(0xA489D67F), UINT32_C(0xE3FF8E43), UINT32_C(0x225064AA), UINT32_C(0xD4B6136F), UINT32_C(0x92F5E662), UINT32_C(0xE1721D2A), UINT32_C(0xA90A33C6), UINT32_C(0x4C4F03D7)}}, {{UINT32_C(0xA3463B4A), UINT32_C(0x70885B35), UINT32_C(0xDF9D0194), UINT32_C(0x974BC40E), UINT32_C(0x273957F4), UINT32_C(0x1AF71E18), UINT32_C(0x9900CB0D), UINT32_C(0x58EF684B)}, {UINT32_C(0x20A49A4A), UINT32_C(0xB09970C8), UINT32_C(0x42067458), UINT32_C(0x3F28403F), UINT32_C(0xBD7D1AD5), UINT32_C(0x153FF2C4), UINT32_C(0xE97A90F7), UINT32_C(0x7912CC2E)}}, {{UINT32_C(0x8F034D9F), UINT32_C(0xF653DF59), UINT32_C(0x1C409CCF), UINT32_C(0xCA167177), UINT32_C(0x175F3583), UINT32_C(0x21F47005), UINT32_C(0xFAAFB66F), UINT32_C(0x13B8A94B)}, {UINT32_C(0x96052C8D), UINT32_C(0x64534EE3), UINT32_C(0x8D674024), UINT32_C(0x09304DD1), UINT32_C(0x0D7A7E2A), UINT32_C(0xEB468AC3), UINT32_C(0xCD62052C), UINT32_C(0x40347256)}}, {{UINT32_C(0xFFF11C0E), UINT32_C(0x0F089165), UINT32_C(0x8D69A45C), UINT32_C(0x383562C9), UINT32_C(0x3125FE61), UINT32_C(0x7AB3EF9D), UINT32_C(0xE0735F3A), UINT32_C(0x32C042BC)}, {UINT32_C(0x4E268D91), UINT32_C(0x420077C8), UINT32_C(0x44695B4F), UINT32_C(0x7FB42082), UINT32_C(0x448A133E), UINT32_C(0xFA83216F), UINT32_C(0x93062EB3), UINT32_C(0x1C660607)}}, {{UINT32_C(0xEF9E04DE), UINT32_C(0xA0FCBACA), UINT32_C(0x5B86F69A), UINT32_C(0xAEF9EECB), UINT32_C(0xC39D4C99), UINT32_C(0x73D2E95F), UINT32_C(0x923A5BA8), UINT32_C(0x098C74F7)}, {UINT32_C(0x4F68DECF), UINT32_C(0x5B8C95C8), UINT32_C(0x58976551), UINT32_C(0xCFF2E101), UINT32_C(0xBE5CAF91), UINT32_C(0x5032AE48), UINT32_C(0xE09BC8AE), UINT32_C(0x5CCB9008)}}, {{UINT32_C(0x3714D3BF), UINT32_C(0x41A38F20), UINT32_C(0x17366520), UINT32_C(0x24136533), UINT32_C(0xFAE17B01), UINT32_C(0xF12F314C), UINT32_C(0xFC9AD43B), UINT32_C(0x4AA0C969)}, {UINT32_C(0x8BBAC026), UINT32_C(0xD8AB5F72), UINT32_C(0x526992DC), UINT32_C(0x35128269), UINT32_C(0xD19880AA), UINT32_C(0xA2EF6E44), UINT32_C(0xDBF47628), UINT32_C(0x28BB3623)}}, {{UINT32_C(0x3BA25C35), UINT32_C(0x294742BA), UINT32_C(0x061555B7), UINT32_C(0x39D3BC9B), UINT32_C(0xDE6EA1A0), UINT32_C(0x944E3ABC), UINT32_C(0x57EBD394), UINT32_C(0x4FDC6415)}, {UINT32_C(0xE981E649), UINT32_C(0xB615C1DA), UINT32_C(0x8BE3C95F), UINT32_C(0xAF7EDB34), UINT32_C(0x71F7221F), UINT32_C(0x38573AE8), UINT32_C(0x668CF414), UINT32_C(0x1B30FF04)}}, {{UINT32_C(0xA57A9A4E), UINT32_C(0x48EFF6A2), UINT32_C(0x74A59C19), UINT32_C(0x04BA2F73), UINT32_C(0x6779C5DA), UINT32_C(0x5FDE389D), UINT32_C(0x6612F160), UINT32_C(0x258E2B24)}, {UINT32_C(0x6D116D41), UINT32_C(0xCE8D7A0B), UINT32_C(0xEE2706C8), UINT32_C(0xAF660436), UINT32_C(0xF81D6398), UINT32_C(0xFFAD6FE9), UINT32_C(0x14BA128A), UINT32_C(0x4FE5EC54)}}, {{UINT32_C(0xBD4B886C), UINT32_C(0x7D5E8299), UINT32_C(0xDB0DB148), UINT32_C(0x5403A46E), UINT32_C(0x76A808D7), UINT32_C(0x32F49FC0), UINT32_C(0xD3B9A641), UINT32_C(0x6D483FD7)}, {UINT32_C(0x3952C70F), UINT32_C(0x731DF122), UINT32_C(0xCB5E6081), UINT32_C(0xB5CABAC1), UINT32_C(0x7AFA8F59), UINT32_C(0x12FA297D), UINT32_C(0x6AC91952), UINT32_C(0x3272360A)}}, }}; /*- * Q := 2P, both projective, Q and P same pointers OK * Autogenerated: op3/dbl_proj.op3 * https://eprint.iacr.org/2015/1060 Alg 6 * ASSERT: a = -3 */ static void point_double(pt_prj_t *Q, const pt_prj_t *P) { /* temporary variables */ fe_t t0, t1, t2, t3, t4; /* constants */ const limb_t *b = const_b; /* set pointers for legacy curve arith */ const limb_t *X = P->X; const limb_t *Y = P->Y; const limb_t *Z = P->Z; limb_t *X3 = Q->X; limb_t *Y3 = Q->Y; limb_t *Z3 = Q->Z; /* the curve arith formula */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(t0, X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(t1, Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_square(t2, Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t3, X, Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, t3, t3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t4, Y, Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, X, Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, b, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, Y3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, X3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, t1, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, t1, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, X3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(X3, X3, t3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, t2, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t2, t2, t3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, b, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Z3, Z3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Z3, Z3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, Z3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, t3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, t0, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t0, t3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t0, t0, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t0, t0, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, Y3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t0, t4, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, t0, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, t0, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, Z3); } /*- * R := Q + P where R and Q are projective, P affine. * R and Q same pointers OK * R and P same pointers not OK * Autogenerated: op3/add_mixed.op3 * https://eprint.iacr.org/2015/1060 Alg 5 * ASSERT: a = -3 */ static void point_add_mixed(pt_prj_t *R, const pt_prj_t *Q, const pt_aff_t *P) { /* temporary variables */ fe_t t0, t1, t2, t3, t4; /* constants */ const limb_t *b = const_b; /* set pointers for legacy curve arith */ const limb_t *X1 = Q->X; const limb_t *Y1 = Q->Y; const limb_t *Z1 = Q->Z; const limb_t *X2 = P->X; const limb_t *Y2 = P->Y; fe_t X3; fe_t Y3; fe_t Z3; limb_t nz; /* check P for affine inf */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_nonzero(&nz, P->Y); /* the curve arith formula */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t0, X1, X2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, Y1, Y2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, X2, Y2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, X1, Y1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t3, t3, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, t0, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t3, t3, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t4, Y2, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, t4, Y1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, X2, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, Y3, X1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, b, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, Y3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, X3, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Z3, t1, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, t1, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, b, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, Z1, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t2, t1, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, Y3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, t1, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, t0, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t0, t1, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t0, t0, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, t4, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t2, t0, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, Y3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(X3, t3, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, X3, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, t4, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, t3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, t1); /* if P is inf, throw all that away and take Q */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(R->X, nz, Q->X, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(R->Y, nz, Q->Y, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(R->Z, nz, Q->Z, Z3); } /*- * R := Q + P all projective. * R and Q same pointers OK * R and P same pointers not OK * Autogenerated: op3/add_proj.op3 * https://eprint.iacr.org/2015/1060 Alg 4 * ASSERT: a = -3 */ static void point_add_proj(pt_prj_t *R, const pt_prj_t *Q, const pt_prj_t *P) { /* temporary variables */ fe_t t0, t1, t2, t3, t4, t5; /* constants */ const limb_t *b = const_b; /* set pointers for legacy curve arith */ const limb_t *X1 = Q->X; const limb_t *Y1 = Q->Y; const limb_t *Z1 = Q->Z; const limb_t *X2 = P->X; const limb_t *Y2 = P->Y; const limb_t *Z2 = P->Z; limb_t *X3 = R->X; limb_t *Y3 = R->Y; limb_t *Z3 = R->Z; /* the curve arith formula */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t0, X1, X2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, Y1, Y2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t2, Z1, Z2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t3, X1, Y1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, X2, Y2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t3, t3, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, t0, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t3, t3, t4); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t4, Y1, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t5, Y2, Z2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t4, t4, t5); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t5, t1, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t4, t4, t5); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, X1, Z1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, X2, Z2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(X3, X3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, t0, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, X3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, b, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, Y3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, X3, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Z3, t1, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(X3, t1, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, b, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, t2, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t2, t1, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(Y3, Y3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, Y3, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, t1, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t1, t0, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(t0, t1, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(t0, t0, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, t4, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t2, t0, Y3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Y3, X3, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Y3, Y3, t2); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(X3, t3, X3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_sub(X3, X3, t1); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(Z3, t4, Z3); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(t1, t3, t0); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_add(Z3, Z3, t1); } /* constants */ #define RADIX 5 #define DRADIX (1 << RADIX) #define DRADIX_WNAF ((DRADIX) << 1) /*- * precomp for wnaf scalar multiplication: * precomp[0] = 1P * precomp[1] = 3P * precomp[2] = 5P * precomp[3] = 7P * precomp[4] = 9P * ... */ static void precomp_wnaf(pt_prj_t precomp[DRADIX / 2], const pt_aff_t *P) { int i; fe_copy(precomp[0].X, P->X); fe_copy(precomp[0].Y, P->Y); fe_copy(precomp[0].Z, const_one); point_double(&precomp[DRADIX / 2 - 1], &precomp[0]); for (i = 1; i < DRADIX / 2; i++) point_add_proj(&precomp[i], &precomp[DRADIX / 2 - 1], &precomp[i - 1]); } /* fetch a scalar bit */ static int scalar_get_bit(const unsigned char in[32], int idx) { int widx, rshift; widx = idx >> 3; rshift = idx & 0x7; if (idx < 0 || widx >= 32) return 0; return (in[widx] >> rshift) & 0x1; } /*- * Compute "regular" wnaf representation of a scalar. * See "Exponent Recoding and Regular Exponentiation Algorithms", * Tunstall et al., AfricaCrypt 2009, Alg 6. * It forces an odd scalar and outputs digits in * {\pm 1, \pm 3, \pm 5, \pm 7, \pm 9, ...} * i.e. signed odd digits with _no zeroes_ -- that makes it "regular". */ static void scalar_rwnaf(int8_t out[52], const unsigned char in[32]) { int i; int8_t window, d; window = (in[0] & (DRADIX_WNAF - 1)) | 1; for (i = 0; i < 51; i++) { d = (window & (DRADIX_WNAF - 1)) - DRADIX; out[i] = d; window = (window - d) >> RADIX; window += scalar_get_bit(in, (i + 1) * RADIX + 1) << 1; window += scalar_get_bit(in, (i + 1) * RADIX + 2) << 2; window += scalar_get_bit(in, (i + 1) * RADIX + 3) << 3; window += scalar_get_bit(in, (i + 1) * RADIX + 4) << 4; window += scalar_get_bit(in, (i + 1) * RADIX + 5) << 5; } out[i] = window; } /*- * Compute "textbook" wnaf representation of a scalar. * NB: not constant time */ static void scalar_wnaf(int8_t out[257], const unsigned char in[32]) { int i; int8_t window, d; window = in[0] & (DRADIX_WNAF - 1); for (i = 0; i < 257; i++) { d = 0; if ((window & 1) && ((d = window & (DRADIX_WNAF - 1)) & DRADIX)) d -= DRADIX_WNAF; out[i] = d; window = (window - d) >> 1; window += scalar_get_bit(in, i + 1 + RADIX) << RADIX; } } /*- * Simultaneous scalar multiplication: interleaved "textbook" wnaf. * NB: not constant time */ static void var_smul_wnaf_two(pt_aff_t *out, const unsigned char a[32], const unsigned char b[32], const pt_aff_t *P) { int i, d, is_neg, is_inf = 1, flipped = 0; int8_t anaf[257] = {0}; int8_t bnaf[257] = {0}; pt_prj_t Q = {0}; pt_prj_t precomp[DRADIX / 2]; precomp_wnaf(precomp, P); scalar_wnaf(anaf, a); scalar_wnaf(bnaf, b); for (i = 256; i >= 0; i--) { if (!is_inf) point_double(&Q, &Q); if ((d = bnaf[i])) { if ((is_neg = d < 0) != flipped) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(Q.Y, Q.Y); flipped ^= 1; } d = (is_neg) ? (-d - 1) >> 1 : (d - 1) >> 1; if (is_inf) { /* initialize accumulator */ fe_copy(Q.X, &precomp[d].X); fe_copy(Q.Y, &precomp[d].Y); fe_copy(Q.Z, &precomp[d].Z); is_inf = 0; } else point_add_proj(&Q, &Q, &precomp[d]); } if ((d = anaf[i])) { if ((is_neg = d < 0) != flipped) { fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(Q.Y, Q.Y); flipped ^= 1; } d = (is_neg) ? (-d - 1) >> 1 : (d - 1) >> 1; if (is_inf) { /* initialize accumulator */ fe_copy(Q.X, &lut_cmb[0][d].X); fe_copy(Q.Y, &lut_cmb[0][d].Y); fe_copy(Q.Z, const_one); is_inf = 0; } else point_add_mixed(&Q, &Q, &lut_cmb[0][d]); } } if (is_inf) { /* initialize accumulator to inf: all-zero scalars */ fe_set_zero(Q.X); fe_copy(Q.Y, const_one); fe_set_zero(Q.Z); } if (flipped) { /* correct sign */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(Q.Y, Q.Y); } /* convert to affine -- NB depends on coordinate system */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_inv(Q.Z, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->X, Q.X, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->Y, Q.Y, Q.Z); } /*- * Variable point scalar multiplication with "regular" wnaf. */ static void var_smul_rwnaf(pt_aff_t *out, const unsigned char scalar[32], const pt_aff_t *P) { int i, j, d, diff, is_neg; int8_t rnaf[52] = {0}; pt_prj_t Q = {0}, lut = {0}; pt_prj_t precomp[DRADIX / 2]; precomp_wnaf(precomp, P); scalar_rwnaf(rnaf, scalar); #if defined(_MSC_VER) /* result still unsigned: yes we know */ #pragma warning(push) #pragma warning(disable : 4146) #endif /* initialize accumulator to high digit */ d = (rnaf[51] - 1) >> 1; for (j = 0; j < DRADIX / 2; j++) { diff = (1 - (-(d ^ j) >> (8 * sizeof(int) - 1))) & 1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.X, diff, Q.X, precomp[j].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Y, diff, Q.Y, precomp[j].Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Z, diff, Q.Z, precomp[j].Z); } for (i = 50; i >= 0; i--) { for (j = 0; j < RADIX; j++) point_double(&Q, &Q); d = rnaf[i]; /* is_neg = (d < 0) ? 1 : 0 */ is_neg = (d >> (8 * sizeof(int) - 1)) & 1; /* d = abs(d) */ d = (d ^ -is_neg) + is_neg; d = (d - 1) >> 1; for (j = 0; j < DRADIX / 2; j++) { diff = (1 - (-(d ^ j) >> (8 * sizeof(int) - 1))) & 1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.X, diff, lut.X, precomp[j].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.Y, diff, lut.Y, precomp[j].Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.Z, diff, lut.Z, precomp[j].Z); } /* negate lut point if digit is negative */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(out->Y, lut.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(lut.Y, is_neg, lut.Y, out->Y); point_add_proj(&Q, &Q, &lut); } #if defined(_MSC_VER) #pragma warning(pop) #endif /* conditionally subtract P if the scalar was even */ fe_copy(lut.X, precomp[0].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(lut.Y, precomp[0].Y); fe_copy(lut.Z, precomp[0].Z); point_add_proj(&lut, &lut, &Q); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.X, scalar[0] & 1, lut.X, Q.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Y, scalar[0] & 1, lut.Y, Q.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Z, scalar[0] & 1, lut.Z, Q.Z); /* convert to affine -- NB depends on coordinate system */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_inv(Q.Z, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->X, Q.X, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->Y, Q.Y, Q.Z); } /*- * Fixed scalar multiplication: comb with interleaving. */ static void fixed_smul_cmb(pt_aff_t *out, const unsigned char scalar[32]) { int i, j, k, d, diff, is_neg = 0; int8_t rnaf[52] = {0}; pt_prj_t Q = {0}, R = {0}; pt_aff_t lut = {0}; scalar_rwnaf(rnaf, scalar); /* initalize accumulator to inf */ fe_set_zero(Q.X); fe_copy(Q.Y, const_one); fe_set_zero(Q.Z); #if defined(_MSC_VER) /* result still unsigned: yes we know */ #pragma warning(push) #pragma warning(disable : 4146) #endif for (i = 1; i >= 0; i--) { for (j = 0; i != 1 && j < RADIX; j++) point_double(&Q, &Q); for (j = 0; j < 27; j++) { if (j * 2 + i > 51) continue; d = rnaf[j * 2 + i]; /* is_neg = (d < 0) ? 1 : 0 */ is_neg = (d >> (8 * sizeof(int) - 1)) & 1; /* d = abs(d) */ d = (d ^ -is_neg) + is_neg; d = (d - 1) >> 1; for (k = 0; k < DRADIX / 2; k++) { diff = (1 - (-(d ^ k) >> (8 * sizeof(int) - 1))) & 1; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.X, diff, lut.X, lut_cmb[j][k].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.Y, diff, lut.Y, lut_cmb[j][k].Y); } /* negate lut point if digit is negative */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(out->Y, lut.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz( lut.Y, is_neg, lut.Y, out->Y); point_add_mixed(&Q, &Q, &lut); } } #if defined(_MSC_VER) #pragma warning(pop) #endif /* conditionally subtract P if the scalar was even */ fe_copy(lut.X, lut_cmb[0][0].X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_opp(lut.Y, lut_cmb[0][0].Y); point_add_mixed(&R, &Q, &lut); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.X, scalar[0] & 1, R.X, Q.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Y, scalar[0] & 1, R.Y, Q.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_selectznz(Q.Z, scalar[0] & 1, R.Z, Q.Z); /* convert to affine -- NB depends on coordinate system */ fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_inv(Q.Z, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->X, Q.X, Q.Z); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_mul(out->Y, Q.Y, Q.Z); } /*- * Wrapper: simultaneous scalar mutiplication. * outx, outy := a * G + b * P * where P = (inx, iny). * Everything is LE byte ordering. */ static void point_mul_two(unsigned char outx[32], unsigned char outy[32], const unsigned char a[32], const unsigned char b[32], const unsigned char inx[32], const unsigned char iny[32]) { pt_aff_t P; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes(P.X, inx); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes(P.Y, iny); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery(P.Y, P.Y); /* simultaneous scalar multiplication */ var_smul_wnaf_two(&P, a, b, &P); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.Y, P.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outx, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outy, P.Y); } /*- * Wrapper: fixed scalar mutiplication. * outx, outy := scalar * G * Everything is LE byte ordering. */ static void point_mul_g(unsigned char outx[32], unsigned char outy[32], const unsigned char scalar[32]) { pt_aff_t P; /* fixed scmul function */ fixed_smul_cmb(&P, scalar); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.Y, P.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outx, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outy, P.Y); } /*- * Wrapper: variable point scalar mutiplication. * outx, outy := scalar * P * where P = (inx, iny). * Everything is LE byte ordering. */ static void point_mul(unsigned char outx[32], unsigned char outy[32], const unsigned char scalar[32], const unsigned char inx[32], const unsigned char iny[32]) { pt_aff_t P; fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes(P.X, inx); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_bytes(P.Y, iny); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_montgomery(P.Y, P.Y); /* var scmul function */ var_smul_rwnaf(&P, scalar, &P); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.X, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_from_montgomery(P.Y, P.Y); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outx, P.X); fiat_id_GostR3410_2001_CryptoPro_B_ParamSet_to_bytes(outy, P.Y); } #include <openssl/ec.h> /* the zero field element */ static const unsigned char const_zb[32] = {0}; /*- * An OpenSSL wrapper for simultaneous scalar multiplication. * r := n * G + m * q */ int point_mul_two_id_GostR3410_2001_CryptoPro_B_ParamSet( const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx) { int ret = 0; unsigned char b_x[32]; unsigned char b_y[32]; unsigned char b_n[32]; unsigned char b_m[32]; BIGNUM *x = NULL, *y = NULL; BN_CTX_start(ctx); x = BN_CTX_get(ctx); if ((y = BN_CTX_get(ctx)) == NULL /* pull out coords as bytes */ || !EC_POINT_get_affine_coordinates(group, q, x, y, ctx) || BN_bn2lebinpad(x, b_x, 32) != 32 || BN_bn2lebinpad(y, b_y, 32) != 32 || BN_bn2lebinpad(n, b_n, 32) != 32 || BN_bn2lebinpad(m, b_m, 32) != 32) goto err; /* do the simultaneous scalar multiplication */ point_mul_two(b_x, b_y, b_n, b_m, b_x, b_y); /* check for infinity */ if (CRYPTO_memcmp(const_zb, b_x, 32) == 0 && CRYPTO_memcmp(const_zb, b_y, 32) == 0) { if (!EC_POINT_set_to_infinity(group, r)) goto err; } else { /* otherwise, pack the bytes into the result */ if (BN_lebin2bn(b_x, 32, x) == NULL || BN_lebin2bn(b_y, 32, y) == NULL || !EC_POINT_set_affine_coordinates(group, r, x, y, ctx)) goto err; } ret = 1; err: BN_CTX_end(ctx); return ret; } /*- * An OpenSSL wrapper for variable point scalar multiplication. * r := m * q */ int point_mul_id_GostR3410_2001_CryptoPro_B_ParamSet(const EC_GROUP *group, EC_POINT *r, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx) { int ret = 0; unsigned char b_x[32]; unsigned char b_y[32]; unsigned char b_m[32]; BIGNUM *x = NULL, *y = NULL; BN_CTX_start(ctx); x = BN_CTX_get(ctx); if ((y = BN_CTX_get(ctx)) == NULL /* pull out coords as bytes */ || !EC_POINT_get_affine_coordinates(group, q, x, y, ctx) || BN_bn2lebinpad(x, b_x, 32) != 32 || BN_bn2lebinpad(y, b_y, 32) != 32 || BN_bn2lebinpad(m, b_m, 32) != 32) goto err; /* do the variable scalar multiplication */ point_mul(b_x, b_y, b_m, b_x, b_y); /* check for infinity */ if (CRYPTO_memcmp(const_zb, b_x, 32) == 0 && CRYPTO_memcmp(const_zb, b_y, 32) == 0) { if (!EC_POINT_set_to_infinity(group, r)) goto err; } else { /* otherwise, pack the bytes into the result */ if (BN_lebin2bn(b_x, 32, x) == NULL || BN_lebin2bn(b_y, 32, y) == NULL || !EC_POINT_set_affine_coordinates(group, r, x, y, ctx)) goto err; } ret = 1; err: BN_CTX_end(ctx); return ret; } /*- * An OpenSSL wrapper for fixed scalar multiplication. * r := n * G */ int point_mul_g_id_GostR3410_2001_CryptoPro_B_ParamSet(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, BN_CTX *ctx) { int ret = 0; unsigned char b_x[32]; unsigned char b_y[32]; unsigned char b_n[32]; BIGNUM *x = NULL, *y = NULL; BN_CTX_start(ctx); x = BN_CTX_get(ctx); if ((y = BN_CTX_get(ctx)) == NULL || BN_bn2lebinpad(n, b_n, 32) != 32) goto err; /* do the fixed scalar multiplication */ point_mul_g(b_x, b_y, b_n); /* check for infinity */ if (CRYPTO_memcmp(const_zb, b_x, 32) == 0 && CRYPTO_memcmp(const_zb, b_y, 32) == 0) { if (!EC_POINT_set_to_infinity(group, r)) goto err; } else { /* otherwise, pack the bytes into the result */ if (BN_lebin2bn(b_x, 32, x) == NULL || BN_lebin2bn(b_y, 32, y) == NULL || !EC_POINT_set_affine_coordinates(group, r, x, y, ctx)) goto err; } ret = 1; err: BN_CTX_end(ctx); return ret; } #endif /* __SIZEOF_INT128__ */
the_stack_data/119819.c
//Mayranna Laizco Araújo Silva 11711EEL011 #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX 64 typedef struct Dimensoes{ float altura; float largura; float profundidade; }Dimensoes; typedef struct Produto{ char nome[MAX]; float preco; Dimensoes dimensoes; }Produto; void cadastra(Produto * p){ printf("\nDigite o nome do produto: "); fgets(p->nome, MAX, stdin); p->nome[strlen(p->nome)-1] = '\0'; printf("\nDigite o preco: "); scanf("%f", &(p->preco)); getchar(); printf("\nDigite a largura: "); scanf("%f", &(p->dimensoes.largura)); getchar(); printf("\nDigite a profundidade: "); scanf("%f", &(p->dimensoes.profundidade)); getchar(); printf("\nDigite a altura: "); scanf("%f", &(p->dimensoes.altura)); getchar(); } void consulta(Produto * p){ char c; if(strlen(p->nome) == 0){ printf("\nProduto nao encontrado!\n"); while((c=getchar()) != '\n'); return; } printf("\n%s, R$ %.2f, L: %.2fm x P: %.2fm x A: %.2fm\n", p->nome, p->preco,(p->dimensoes.largura),(p->dimensoes.profundidade), (p->dimensoes.altura)); while((c=getchar())!='\n'); } int main(){ int opt1=-1, opt2=0, np=0, i; char c, fil[MAX]; FILE * f; Produto * produtos = (Produto *) calloc(1, sizeof(Produto)); while(opt1 != 0){ printf("Acessar produtos cadastrados: %d", np); printf("\n1. Consultar\n2. Cadastrar novo produto\n3. Carregar de arquivo para memoria \n4. Salvar memoria em arquivo \n0. Sair\n> "); scanf("%d", &opt1); getchar(); opt2 = -1; switch(opt1){ case 1: while(opt2!=0){ if(np == 0){ printf("\nNenhum produto cadastrado!\n"); while((c=getchar()) != '\n'); break; } printf("\nConsulta de Produtos\n"); printf("\nProdutos em memoria: %d", np); printf("\n0. Voltar"); for(i=0; i<np; i++) printf("\n%d. %s", i+1, produtos[i].nome); printf("\n> "); scanf("%d", &opt2); getchar(); if(opt2>0 && opt2<=np) consulta(&produtos[opt2-1]); if(opt2<0 || opt2>np) printf("\nProduto inexistente!\n"); } break; case 2: np++; produtos = (Produto *) realloc(produtos, np * sizeof(produtos)); cadastra(&produtos[np-1]); printf("\nCadastrado com sucesso!\n"); while((c=getchar()) != '\n'); break; case 3: printf("\nDigite o nome do arquivo: "); scanf("%s", (char *)fil); getchar(); f = fopen(fil, "rb"); if(f){ fread(&np, sizeof(int), 1, f); produtos = (Produto *)calloc(np , sizeof(produtos)); fread((void *)produtos, sizeof(produtos), np, f); fclose(f); printf("\nArquivo contem %d produto(s). Leitura realizada com sucesso!\n", np); while((c=getchar()) != '\n'); }else{ printf("\nO arquivo nao pode ser aberto!\n"); while((c=getchar()) != '\n'); } break; case 4: printf("\nDigite o nome do arquivo: "); scanf("%s", (char *)fil); getchar(); f = fopen(fil, "wb"); if(f){ fwrite(&np, sizeof(int), 1, f); fwrite(produtos, sizeof(produtos), np, f); fclose(f); printf("\nProdutos armazenados em disco com sucesso!!\n"); while((c=getchar()) != '\n'); }else{ printf("\nO arquivo nao pode ser aberto!\n"); while((c=getchar()) != '\n'); } break; default: if(opt1!=0) printf("\nOpcao invalida!\n"); break; } } free(produtos); return 0; }
the_stack_data/7223.c
/* original parser id follows */ /* yysccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93" */ /* (use YYMAJOR/YYMINOR for ifdefs dependent on parser version) */ #define YYBYACC 1 #define YYMAJOR 2 #define YYMINOR 0 #define YYCHECK "yyyymmdd" #define YYEMPTY (-1) #define yyclearin (yychar = YYEMPTY) #define yyerrok (yyerrflag = 0) #define YYRECOVERING() (yyerrflag != 0) #define YYENOMEM (-2) #define YYEOF 0 #define YYPREFIX "yy" #define YYPURE 0 #line 2 "calc.y" # include <stdio.h> # include <ctype.h> int regs[26]; int base; extern int yylex(void); static void yyerror(const char *s); #line 31 "stdin2.calc.c" #if ! defined(YYSTYPE) && ! defined(YYSTYPE_IS_DECLARED) /* Default: YYSTYPE is the semantic value type. */ typedef int YYSTYPE; # define YYSTYPE_IS_DECLARED 1 #endif /* compatibility with bison */ #ifdef YYPARSE_PARAM /* compatibility with FreeBSD */ # ifdef YYPARSE_PARAM_TYPE # define YYPARSE_DECL() yyparse(YYPARSE_PARAM_TYPE YYPARSE_PARAM) # else # define YYPARSE_DECL() yyparse(void *YYPARSE_PARAM) # endif #else # define YYPARSE_DECL() yyparse(void) #endif /* Parameters sent to lex. */ #ifdef YYLEX_PARAM # define YYLEX_DECL() yylex(void *YYLEX_PARAM) # define YYLEX yylex(YYLEX_PARAM) #else # define YYLEX_DECL() yylex(void) # define YYLEX yylex() #endif #if !(defined(yylex) || defined(YYSTATE)) int YYLEX_DECL(); #endif /* Parameters sent to yyerror. */ #ifndef YYERROR_DECL #define YYERROR_DECL() yyerror(const char *s) #endif #ifndef YYERROR_CALL #define YYERROR_CALL(msg) yyerror(msg) #endif extern int YYPARSE_DECL(); #define DIGIT 257 #define LETTER 258 #define UMINUS 259 #define YYERRCODE 256 typedef int YYINT; static const YYINT yylhs[] = { -1, 0, 0, 0, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, }; static const YYINT yylen[] = { 2, 0, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 1, 1, 1, 2, }; static const YYINT yydefred[] = { 1, 0, 0, 17, 0, 0, 0, 0, 0, 0, 3, 0, 15, 14, 0, 2, 0, 0, 0, 0, 0, 0, 0, 18, 0, 6, 0, 0, 0, 0, 9, 10, 11, }; static const YYINT yydgoto[] = { 1, 7, 8, 9, }; static const YYINT yysindex[] = { 0, -40, -7, 0, -55, -38, -38, 1, -29, -247, 0, -38, 0, 0, 22, 0, -38, -38, -38, -38, -38, -38, -38, 0, -29, 0, 51, 60, -20, -20, 0, 0, 0, }; static const YYINT yyrindex[] = { 0, 0, 0, 0, 2, 0, 0, 0, 9, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, -6, 14, 5, 13, 0, 0, 0, }; static const YYINT yygindex[] = { 0, 0, 65, 0, }; #define YYTABLESIZE 220 static const YYINT yytable[] = { 6, 16, 6, 10, 13, 5, 11, 5, 22, 17, 23, 15, 15, 20, 18, 7, 19, 22, 21, 4, 5, 0, 20, 8, 12, 0, 0, 21, 16, 16, 0, 0, 16, 16, 16, 13, 16, 0, 16, 15, 15, 0, 0, 7, 15, 15, 7, 15, 7, 15, 7, 8, 12, 0, 8, 12, 8, 0, 8, 22, 17, 0, 0, 25, 20, 18, 0, 19, 0, 21, 13, 14, 0, 0, 0, 0, 24, 0, 0, 0, 0, 26, 27, 28, 29, 30, 31, 32, 22, 17, 0, 0, 0, 20, 18, 16, 19, 22, 21, 0, 0, 0, 20, 18, 0, 19, 0, 21, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 8, 12, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 3, 12, }; static const YYINT yycheck[] = { 40, 10, 40, 10, 10, 45, 61, 45, 37, 38, 257, 10, 10, 42, 43, 10, 45, 37, 47, 10, 10, -1, 42, 10, 10, -1, -1, 47, 37, 38, -1, -1, 41, 42, 43, 41, 45, -1, 47, 37, 38, -1, -1, 38, 42, 43, 41, 45, 43, 47, 45, 38, 38, -1, 41, 41, 43, -1, 45, 37, 38, -1, -1, 41, 42, 43, -1, 45, -1, 47, 5, 6, -1, -1, -1, -1, 11, -1, -1, -1, -1, 16, 17, 18, 19, 20, 21, 22, 37, 38, -1, -1, -1, 42, 43, 124, 45, 37, 47, -1, -1, -1, 42, 43, -1, 45, -1, 47, -1, -1, -1, -1, -1, -1, -1, 124, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, 124, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, 124, 124, -1, -1, -1, -1, -1, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 256, 257, 258, 257, 258, }; #define YYFINAL 1 #ifndef YYDEBUG #define YYDEBUG 0 #endif #define YYMAXTOKEN 259 #define YYUNDFTOKEN 265 #define YYTRANSLATE(a) ((a) > YYMAXTOKEN ? YYUNDFTOKEN : (a)) #if YYDEBUG static const char *const yyname[] = { "end-of-file",0,0,0,0,0,0,0,0,0,"'\\n'",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,"'%'","'&'",0,"'('","')'","'*'","'+'",0,"'-'",0,"'/'",0,0,0,0,0,0,0, 0,0,0,0,0,0,"'='",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"'|'",0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,"DIGIT","LETTER","UMINUS",0,0,0,0,0,"illegal-symbol", }; static const char *const yyrule[] = { "$accept : list", "list :", "list : list stat '\\n'", "list : list error '\\n'", "stat : expr", "stat : LETTER '=' expr", "expr : '(' expr ')'", "expr : expr '+' expr", "expr : expr '-' expr", "expr : expr '*' expr", "expr : expr '/' expr", "expr : expr '%' expr", "expr : expr '&' expr", "expr : expr '|' expr", "expr : '-' expr", "expr : LETTER", "expr : number", "number : DIGIT", "number : number DIGIT", }; #endif #if YYDEBUG int yydebug; #endif int yyerrflag; int yychar; YYSTYPE yyval; YYSTYPE yylval; int yynerrs; /* define the initial stack-sizes */ #ifdef YYSTACKSIZE #undef YYMAXDEPTH #define YYMAXDEPTH YYSTACKSIZE #else #ifdef YYMAXDEPTH #define YYSTACKSIZE YYMAXDEPTH #else #define YYSTACKSIZE 10000 #define YYMAXDEPTH 10000 #endif #endif #define YYINITSTACKSIZE 200 typedef struct { unsigned stacksize; YYINT *s_base; YYINT *s_mark; YYINT *s_last; YYSTYPE *l_base; YYSTYPE *l_mark; } YYSTACKDATA; /* variables for the parser stack */ static YYSTACKDATA yystack; #line 66 "calc.y" /* start of programs */ int main (void) { while(!feof(stdin)) { yyparse(); } return 0; } static void yyerror(const char *s) { fprintf(stderr, "%s\n", s); } int yylex(void) { /* lexical analysis routine */ /* returns LETTER for a lower case letter, yylval = 0 through 25 */ /* return DIGIT for a digit, yylval = 0 through 9 */ /* all other characters are returned immediately */ int c; while( (c=getchar()) == ' ' ) { /* skip blanks */ } /* c is now nonblank */ if( islower( c )) { yylval = c - 'a'; return ( LETTER ); } if( isdigit( c )) { yylval = c - '0'; return ( DIGIT ); } return( c ); } #line 280 "stdin2.calc.c" #if YYDEBUG #include <stdio.h> /* needed for printf */ #endif #include <stdlib.h> /* needed for malloc, etc */ #include <string.h> /* needed for memset */ /* allocate initial stack or double stack size, up to YYMAXDEPTH */ static int yygrowstack(YYSTACKDATA *data) { int i; unsigned newsize; YYINT *newss; YYSTYPE *newvs; if ((newsize = data->stacksize) == 0) newsize = YYINITSTACKSIZE; else if (newsize >= YYMAXDEPTH) return YYENOMEM; else if ((newsize *= 2) > YYMAXDEPTH) newsize = YYMAXDEPTH; i = (int) (data->s_mark - data->s_base); newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss)); if (newss == 0) return YYENOMEM; data->s_base = newss; data->s_mark = newss + i; newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs)); if (newvs == 0) return YYENOMEM; data->l_base = newvs; data->l_mark = newvs + i; data->stacksize = newsize; data->s_last = data->s_base + newsize - 1; return 0; } #if YYPURE || defined(YY_NO_LEAKS) static void yyfreestack(YYSTACKDATA *data) { free(data->s_base); free(data->l_base); memset(data, 0, sizeof(*data)); } #else #define yyfreestack(data) /* nothing */ #endif #define YYABORT goto yyabort #define YYREJECT goto yyabort #define YYACCEPT goto yyaccept #define YYERROR goto yyerrlab int YYPARSE_DECL() { int yym, yyn, yystate; #if YYDEBUG const char *yys; if ((yys = getenv("YYDEBUG")) != 0) { yyn = *yys; if (yyn >= '0' && yyn <= '9') yydebug = yyn - '0'; } #endif /* yym is set below */ /* yyn is set below */ yynerrs = 0; yyerrflag = 0; yychar = YYEMPTY; yystate = 0; #if YYPURE memset(&yystack, 0, sizeof(yystack)); #endif if (yystack.s_base == NULL && yygrowstack(&yystack) == YYENOMEM) goto yyoverflow; yystack.s_mark = yystack.s_base; yystack.l_mark = yystack.l_base; yystate = 0; *yystack.s_mark = 0; yyloop: if ((yyn = yydefred[yystate]) != 0) goto yyreduce; if (yychar < 0) { yychar = YYLEX; if (yychar < 0) yychar = YYEOF; #if YYDEBUG if (yydebug) { if ((yys = yyname[YYTRANSLATE(yychar)]) == NULL) yys = yyname[YYUNDFTOKEN]; printf("%sdebug: state %d, reading %d (%s)\n", YYPREFIX, yystate, yychar, yys); } #endif } if (((yyn = yysindex[yystate]) != 0) && (yyn += yychar) >= 0 && yyn <= YYTABLESIZE && yycheck[yyn] == (YYINT) yychar) { #if YYDEBUG if (yydebug) printf("%sdebug: state %d, shifting to state %d\n", YYPREFIX, yystate, yytable[yyn]); #endif if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM) goto yyoverflow; yystate = yytable[yyn]; *++yystack.s_mark = yytable[yyn]; *++yystack.l_mark = yylval; yychar = YYEMPTY; if (yyerrflag > 0) --yyerrflag; goto yyloop; } if (((yyn = yyrindex[yystate]) != 0) && (yyn += yychar) >= 0 && yyn <= YYTABLESIZE && yycheck[yyn] == (YYINT) yychar) { yyn = yytable[yyn]; goto yyreduce; } if (yyerrflag != 0) goto yyinrecovery; YYERROR_CALL("syntax error"); goto yyerrlab; /* redundant goto avoids 'unused label' warning */ yyerrlab: ++yynerrs; yyinrecovery: if (yyerrflag < 3) { yyerrflag = 3; for (;;) { if (((yyn = yysindex[*yystack.s_mark]) != 0) && (yyn += YYERRCODE) >= 0 && yyn <= YYTABLESIZE && yycheck[yyn] == (YYINT) YYERRCODE) { #if YYDEBUG if (yydebug) printf("%sdebug: state %d, error recovery shifting\ to state %d\n", YYPREFIX, *yystack.s_mark, yytable[yyn]); #endif if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM) goto yyoverflow; yystate = yytable[yyn]; *++yystack.s_mark = yytable[yyn]; *++yystack.l_mark = yylval; goto yyloop; } else { #if YYDEBUG if (yydebug) printf("%sdebug: error recovery discarding state %d\n", YYPREFIX, *yystack.s_mark); #endif if (yystack.s_mark <= yystack.s_base) goto yyabort; --yystack.s_mark; --yystack.l_mark; } } } else { if (yychar == YYEOF) goto yyabort; #if YYDEBUG if (yydebug) { if ((yys = yyname[YYTRANSLATE(yychar)]) == NULL) yys = yyname[YYUNDFTOKEN]; printf("%sdebug: state %d, error recovery discards token %d (%s)\n", YYPREFIX, yystate, yychar, yys); } #endif yychar = YYEMPTY; goto yyloop; } yyreduce: #if YYDEBUG if (yydebug) printf("%sdebug: state %d, reducing by rule %d (%s)\n", YYPREFIX, yystate, yyn, yyrule[yyn]); #endif yym = yylen[yyn]; if (yym > 0) yyval = yystack.l_mark[1-yym]; else memset(&yyval, 0, sizeof yyval); switch (yyn) { case 3: #line 28 "calc.y" { yyerrok ; } #line 482 "stdin2.calc.c" break; case 4: #line 32 "calc.y" { printf("%d\n",yystack.l_mark[0]);} #line 487 "stdin2.calc.c" break; case 5: #line 34 "calc.y" { regs[yystack.l_mark[-2]] = yystack.l_mark[0]; } #line 492 "stdin2.calc.c" break; case 6: #line 38 "calc.y" { yyval = yystack.l_mark[-1]; } #line 497 "stdin2.calc.c" break; case 7: #line 40 "calc.y" { yyval = yystack.l_mark[-2] + yystack.l_mark[0]; } #line 502 "stdin2.calc.c" break; case 8: #line 42 "calc.y" { yyval = yystack.l_mark[-2] - yystack.l_mark[0]; } #line 507 "stdin2.calc.c" break; case 9: #line 44 "calc.y" { yyval = yystack.l_mark[-2] * yystack.l_mark[0]; } #line 512 "stdin2.calc.c" break; case 10: #line 46 "calc.y" { yyval = yystack.l_mark[-2] / yystack.l_mark[0]; } #line 517 "stdin2.calc.c" break; case 11: #line 48 "calc.y" { yyval = yystack.l_mark[-2] % yystack.l_mark[0]; } #line 522 "stdin2.calc.c" break; case 12: #line 50 "calc.y" { yyval = yystack.l_mark[-2] & yystack.l_mark[0]; } #line 527 "stdin2.calc.c" break; case 13: #line 52 "calc.y" { yyval = yystack.l_mark[-2] | yystack.l_mark[0]; } #line 532 "stdin2.calc.c" break; case 14: #line 54 "calc.y" { yyval = - yystack.l_mark[0]; } #line 537 "stdin2.calc.c" break; case 15: #line 56 "calc.y" { yyval = regs[yystack.l_mark[0]]; } #line 542 "stdin2.calc.c" break; case 17: #line 61 "calc.y" { yyval = yystack.l_mark[0]; base = (yystack.l_mark[0]==0) ? 8 : 10; } #line 547 "stdin2.calc.c" break; case 18: #line 63 "calc.y" { yyval = base * yystack.l_mark[-1] + yystack.l_mark[0]; } #line 552 "stdin2.calc.c" break; #line 554 "stdin2.calc.c" } yystack.s_mark -= yym; yystate = *yystack.s_mark; yystack.l_mark -= yym; yym = yylhs[yyn]; if (yystate == 0 && yym == 0) { #if YYDEBUG if (yydebug) printf("%sdebug: after reduction, shifting from state 0 to\ state %d\n", YYPREFIX, YYFINAL); #endif yystate = YYFINAL; *++yystack.s_mark = YYFINAL; *++yystack.l_mark = yyval; if (yychar < 0) { yychar = YYLEX; if (yychar < 0) yychar = YYEOF; #if YYDEBUG if (yydebug) { if ((yys = yyname[YYTRANSLATE(yychar)]) == NULL) yys = yyname[YYUNDFTOKEN]; printf("%sdebug: state %d, reading %d (%s)\n", YYPREFIX, YYFINAL, yychar, yys); } #endif } if (yychar == YYEOF) goto yyaccept; goto yyloop; } if (((yyn = yygindex[yym]) != 0) && (yyn += yystate) >= 0 && yyn <= YYTABLESIZE && yycheck[yyn] == (YYINT) yystate) yystate = yytable[yyn]; else yystate = yydgoto[yym]; #if YYDEBUG if (yydebug) printf("%sdebug: after reduction, shifting from state %d \ to state %d\n", YYPREFIX, *yystack.s_mark, yystate); #endif if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM) goto yyoverflow; *++yystack.s_mark = (YYINT) yystate; *++yystack.l_mark = yyval; goto yyloop; yyoverflow: YYERROR_CALL("yacc stack overflow"); yyabort: yyfreestack(&yystack); return (1); yyaccept: yyfreestack(&yystack); return (0); }
the_stack_data/3263733.c
#include<uuid/uuid.h> void getUuid(char *uuid_s) { uuid_t uuid; uuid_generate(uuid); uuid_unparse(uuid, uuid_s); }
the_stack_data/330381.c
#include <stdio.h> int main(){ return 1; }
the_stack_data/78462.c
/* Exercise 1 - Calculations Write a C program to input marks of two subjects. Calculate and print the average of the two marks. */ #include <stdio.h> int main(void) { int mark1,mark2,total; float avg; printf("Enter Marks for Subject 1 :"); scanf("%d",&mark1); printf("Enter Marks for Subject 2 :"); scanf("%d",&mark2); total=mark1+mark2; avg = total/2.0; printf("Average : %.2f",avg); return 0; }
the_stack_data/227130.c
//headers #include <stdio.h> #include <stdbool.h> //defining the size of the queue we are taking here #define size 5 //defining a structure typedef struct { // creating the queue structure with data, front and rear nodes pointing to front and the last(behind) node int data[5]; //a node containg the value of a pointer/address pointing to the front node int front; //a node containing the value of a pointer/address pointing to the back/behind/rear node int rear; } mainf; //the name of the structure mainf queuestructure; //In the circular queue, in the last node, the front pointer points to the first node. int enque(int number) { //adding a value to the queue //if the queue is full user cant add anything more if (queuestructure.front == queuestructure.rear + 1) { printf("Queue is full!\n"); } else if (queuestructure.rear == size - 1) { queuestructure.rear = 0; printf("Rear resetted to one.\n"); } else { queuestructure.rear++; //adding the value to the queue queuestructure.data[queuestructure.rear] = number; printf("%d -> Added! \n", queuestructure.data[queuestructure.rear]); } } void dequeue() //removing a specific node from the queue { //the element which is being removed int out; queuestructure.front++; out = queuestructure.data[queuestructure.front]; printf("%d -> Removed! \n", out); } int main(void) { int user, value; //setting the front pointer to null queuestructure.front = -1; //setting the rear pointer to null queuestructure.rear = -1; //this means that our queue is empty at the beginning bool out = true; printf("Enter 1 to enqueue queue.\n"); printf("Enter 2 to dequeue queue.\n"); printf("Enter 3 to exit.\n"); while (out = true) { scanf("%d", &user); if (user == 1) { printf("Enter a value to enqueue : "); scanf("%d", &value); //entering an element at the back enque(value); out = true; } else if (user == 2) { //to remove the first element dequeue(); out = true; } else { out = false; return 0; } } } /* Output: Enter 1 to enqueue queue. Enter 2 to dequeue queue. Enter 3 to exit. 1 Enter a value to enqueue : 11 11 -> Added! 1 Enter a value to enqueue : 12 12 -> Added! 1 Enter a value to enqueue : 14 14 -> Added! 1 Enter a value to enqueue : 13 13 -> Added! 2 11 -> Removed! 3 */
the_stack_data/32949868.c
extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int expression) { if (!expression) { ERROR: /* assert not proved */ /* assert not proved */ __VERIFIER_error(); }; return; } int __global_lock; void __VERIFIER_atomic_begin() { /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ __VERIFIER_assume(__global_lock==0); __global_lock=1; return; } void __VERIFIER_atomic_end() { __VERIFIER_assume(__global_lock==1); __global_lock=0; return; } #include "assert.h" #include "pthread.h" #ifndef TRUE #define TRUE (_Bool)1 #endif #ifndef FALSE #define FALSE (_Bool)0 #endif #ifndef NULL #define NULL ((void*)0) #endif #ifndef FENCE #define FENCE(x) ((void)0) #endif #ifndef IEEE_FLOAT_EQUAL #define IEEE_FLOAT_EQUAL(x,y) (x==y) #endif #ifndef IEEE_FLOAT_NOTEQUAL #define IEEE_FLOAT_NOTEQUAL(x,y) (x!=y) #endif void * P0(void *arg); void * P1(void *arg); void * P2(void *arg); void * P3(void *arg); void fence(); void isync(); void lwfence(); int __unbuffered_cnt; int __unbuffered_cnt = 0; int __unbuffered_p2_EAX; int __unbuffered_p2_EAX = 0; int __unbuffered_p3_EAX; int __unbuffered_p3_EAX = 0; int __unbuffered_p3_EBX; int __unbuffered_p3_EBX = 0; int a; int a = 0; _Bool main$tmp_guard0; _Bool main$tmp_guard1; int x; int x = 0; int y; int y = 0; _Bool y$flush_delayed; int y$mem_tmp; _Bool y$r_buff0_thd0; _Bool y$r_buff0_thd1; _Bool y$r_buff0_thd2; _Bool y$r_buff0_thd3; _Bool y$r_buff0_thd4; _Bool y$r_buff1_thd0; _Bool y$r_buff1_thd1; _Bool y$r_buff1_thd2; _Bool y$r_buff1_thd3; _Bool y$r_buff1_thd4; _Bool y$read_delayed; int *y$read_delayed_var; int y$w_buff0; _Bool y$w_buff0_used; int y$w_buff1; _Bool y$w_buff1_used; int z; int z = 0; _Bool weak$$choice0; _Bool weak$$choice2; void * P0(void *arg) { __VERIFIER_atomic_begin(); a = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); x = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void * P1(void *arg) { __VERIFIER_atomic_begin(); x = 2; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); y = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); y = y$w_buff0_used && y$r_buff0_thd2 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd2 ? y$w_buff1 : y); y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd2 ? FALSE : y$w_buff0_used; y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd2 || y$w_buff1_used && y$r_buff1_thd2 ? FALSE : y$w_buff1_used; y$r_buff0_thd2 = y$w_buff0_used && y$r_buff0_thd2 ? FALSE : y$r_buff0_thd2; y$r_buff1_thd2 = y$w_buff0_used && y$r_buff0_thd2 || y$w_buff1_used && y$r_buff1_thd2 ? FALSE : y$r_buff1_thd2; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void * P2(void *arg) { __VERIFIER_atomic_begin(); y$w_buff1 = y$w_buff0; y$w_buff0 = 2; y$w_buff1_used = y$w_buff0_used; y$w_buff0_used = TRUE; __VERIFIER_assert(!(y$w_buff1_used && y$w_buff0_used)); y$r_buff1_thd0 = y$r_buff0_thd0; y$r_buff1_thd1 = y$r_buff0_thd1; y$r_buff1_thd2 = y$r_buff0_thd2; y$r_buff1_thd3 = y$r_buff0_thd3; y$r_buff1_thd4 = y$r_buff0_thd4; y$r_buff0_thd3 = TRUE; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p2_EAX = z; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); y = y$w_buff0_used && y$r_buff0_thd3 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd3 ? y$w_buff1 : y); y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd3 ? FALSE : y$w_buff0_used; y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd3 || y$w_buff1_used && y$r_buff1_thd3 ? FALSE : y$w_buff1_used; y$r_buff0_thd3 = y$w_buff0_used && y$r_buff0_thd3 ? FALSE : y$r_buff0_thd3; y$r_buff1_thd3 = y$w_buff0_used && y$r_buff0_thd3 || y$w_buff1_used && y$r_buff1_thd3 ? FALSE : y$r_buff1_thd3; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void * P3(void *arg) { __VERIFIER_atomic_begin(); z = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p3_EAX = z; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p3_EBX = a; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); y = y$w_buff0_used && y$r_buff0_thd4 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd4 ? y$w_buff1 : y); y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd4 ? FALSE : y$w_buff0_used; y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd4 || y$w_buff1_used && y$r_buff1_thd4 ? FALSE : y$w_buff1_used; y$r_buff0_thd4 = y$w_buff0_used && y$r_buff0_thd4 ? FALSE : y$r_buff0_thd4; y$r_buff1_thd4 = y$w_buff0_used && y$r_buff0_thd4 || y$w_buff1_used && y$r_buff1_thd4 ? FALSE : y$r_buff1_thd4; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void fence() { } void isync() { } void lwfence() { } int main() { pthread_create(NULL, NULL, P0, NULL); pthread_create(NULL, NULL, P1, NULL); pthread_create(NULL, NULL, P2, NULL); pthread_create(NULL, NULL, P3, NULL); __VERIFIER_atomic_begin(); main$tmp_guard0 = __unbuffered_cnt == 4; __VERIFIER_atomic_end(); __VERIFIER_assume(main$tmp_guard0); __VERIFIER_atomic_begin(); y = y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd0 ? y$w_buff1 : y); y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$w_buff0_used; y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd0 || y$w_buff1_used && y$r_buff1_thd0 ? FALSE : y$w_buff1_used; y$r_buff0_thd0 = y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$r_buff0_thd0; y$r_buff1_thd0 = y$w_buff0_used && y$r_buff0_thd0 || y$w_buff1_used && y$r_buff1_thd0 ? FALSE : y$r_buff1_thd0; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); /* Program proven to be relaxed for X86, model checker says YES. */ weak$$choice0 = nondet_1(); /* Program proven to be relaxed for X86, model checker says YES. */ weak$$choice2 = nondet_1(); /* Program proven to be relaxed for X86, model checker says YES. */ y$flush_delayed = weak$$choice2; /* Program proven to be relaxed for X86, model checker says YES. */ y$mem_tmp = y; /* Program proven to be relaxed for X86, model checker says YES. */ y = !y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y : (y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff0 : y$w_buff1); /* Program proven to be relaxed for X86, model checker says YES. */ y$w_buff0 = weak$$choice2 ? y$w_buff0 : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$w_buff0 : (y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff0 : y$w_buff0)); /* Program proven to be relaxed for X86, model checker says YES. */ y$w_buff1 = weak$$choice2 ? y$w_buff1 : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$w_buff1 : (y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff1 : y$w_buff1)); /* Program proven to be relaxed for X86, model checker says YES. */ y$w_buff0_used = weak$$choice2 ? y$w_buff0_used : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$w_buff0_used : (y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$w_buff0_used)); /* Program proven to be relaxed for X86, model checker says YES. */ y$w_buff1_used = weak$$choice2 ? y$w_buff1_used : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$w_buff1_used : (y$w_buff0_used && y$r_buff0_thd0 ? FALSE : FALSE)); /* Program proven to be relaxed for X86, model checker says YES. */ y$r_buff0_thd0 = weak$$choice2 ? y$r_buff0_thd0 : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$r_buff0_thd0 : (y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$r_buff0_thd0)); /* Program proven to be relaxed for X86, model checker says YES. */ y$r_buff1_thd0 = weak$$choice2 ? y$r_buff1_thd0 : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$r_buff1_thd0 : (y$w_buff0_used && y$r_buff0_thd0 ? FALSE : FALSE)); /* Program proven to be relaxed for X86, model checker says YES. */ main$tmp_guard1 = !(x == 2 && y == 2 && __unbuffered_p2_EAX == 0 && __unbuffered_p3_EAX == 1 && __unbuffered_p3_EBX == 0); /* Program proven to be relaxed for X86, model checker says YES. */ y = y$flush_delayed ? y$mem_tmp : y; /* Program proven to be relaxed for X86, model checker says YES. */ y$flush_delayed = FALSE; __VERIFIER_atomic_end(); /* Program proven to be relaxed for X86, model checker says YES. */ __VERIFIER_assert(main$tmp_guard1); /* reachable */ return 0; }
the_stack_data/149451.c
void scilab_rt_mean_i2s0_d0(int sin00, int sin01, int in0[sin00][sin01], char * in1, double* out0) { int i; int j; int val0 = 0; if (in1) { for (i = 0; i < sin00; ++i) { for (j = 0; j < sin01; ++j) { val0 += in0[i][j]; } } *out0 = val0; } }
the_stack_data/9512754.c
/* Generated by CIL v. 1.7.0 */ /* print_CIL_Input is false */ struct _IO_FILE; struct timeval; extern float strtof(char const *str , char const *endptr ) ; extern void signal(int sig , void *func ) ; typedef struct _IO_FILE FILE; extern int atoi(char const *s ) ; extern double strtod(char const *str , char const *endptr ) ; extern int fclose(void *stream ) ; extern void *fopen(char const *filename , char const *mode ) ; extern void abort() ; extern void exit(int status ) ; extern int raise(int sig ) ; extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ; extern int strcmp(char const *a , char const *b ) ; extern int rand() ; extern unsigned long strtoul(char const *str , char const *endptr , int base ) ; void RandomFunc(unsigned short input[1] , unsigned short output[1] ) ; extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ; extern int gettimeofday(struct timeval *tv , void *tz , ...) ; extern int printf(char const *format , ...) ; int main(int argc , char *argv[] ) ; void megaInit(void) ; extern unsigned long strlen(char const *s ) ; extern long strtol(char const *str , char const *endptr , int base ) ; extern unsigned long strnlen(char const *s , unsigned long maxlen ) ; extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ; struct timeval { long tv_sec ; long tv_usec ; }; extern void *malloc(unsigned long size ) ; extern int scanf(char const *format , ...) ; void megaInit(void) { { } } void RandomFunc(unsigned short input[1] , unsigned short output[1] ) { unsigned short state[1] ; unsigned short local2 ; unsigned short local1 ; { state[0UL] = (input[0UL] + 51238316UL) + (unsigned short)8426; local1 = 0UL; while (local1 < 1UL) { local2 = 0UL; while (local2 < 1UL) { if (! (state[0UL] != local2 - local1)) { state[local1] = state[local2] + state[local2]; } local2 ++; } local1 += 2UL; } output[0UL] = state[0UL] - (unsigned short)13868; } } int main(int argc , char *argv[] ) { unsigned short input[1] ; unsigned short output[1] ; int randomFuns_i5 ; unsigned short randomFuns_value6 ; int randomFuns_main_i7 ; { megaInit(); if (argc != 2) { printf("Call this program with %i arguments\n", 1); exit(-1); } else { } randomFuns_i5 = 0; while (randomFuns_i5 < 1) { randomFuns_value6 = (unsigned short )strtoul(argv[randomFuns_i5 + 1], 0, 10); input[randomFuns_i5] = randomFuns_value6; randomFuns_i5 ++; } RandomFunc(input, output); if (output[0] == 61603) { printf("You win!\n"); } else { } randomFuns_main_i7 = 0; while (randomFuns_main_i7 < 1) { printf("%u\n", output[randomFuns_main_i7]); randomFuns_main_i7 ++; } } }
the_stack_data/76699825.c
// Check if first number is evenly divisible by second. #include <stdio.h> int main(void) { int num1, num2; float result; // Get user input printf("Enter in the first number: "); scanf("%i", &num1); printf("Enter in the second number: "); scanf("%i", &num2); // Check if we're dividing by 0 if (num2 == 0) { printf("Division by zero.\n"); return 1; } // Typecast nums to floats for result result = (float) num1 / (float) num2; printf("%i divided by %i equals %.3f.\n", num1, num2, result); return 0; }
the_stack_data/309603.c
int foo(){ return 95; } int main(){ int x = 56; #pragma spf transform inline { if(x > 100){ x += foo(); } else x -= foo(); } return 0; } //CHECK:
the_stack_data/111077127.c
#include <stdio.h> #define SWAP(a, b) {int temp; temp = a; a = b; b = temp;} void quick_sort_sub(int *data, int left, int right) { int left_index = left; int right_index = right; int pivot = data[(left + right) / 2]; while (left_index <= right_index) { for (; data[left_index] < pivot; left_index++) ; for (; data[right_index] > pivot; right_index--) ; if (left_index <= right_index) { SWAP(data[left_index], data[right_index]); left_index++; right_index--; } } if (right_index > left) { quick_sort_sub(data, left, right_index); } if (left_index < right) { quick_sort_sub(data, left_index, right); } } void quick_sort(int *data, int data_size) { printf("befor: [ "); for (int i = 0; i < data_size; i++) { printf(" %d ", data[i]); } printf(" ]\n"); quick_sort_sub(data, 0, data_size - 1); printf("after: [ "); for (int i = 0; i < data_size; i++) { printf(" %d ", data[i]); } printf(" ]\n"); } int main(int argc, char *argv[]) { int data[] = { 10, 2, 23, 15, 15, 0, 4, 30, 20, 10 }; quick_sort(data, 10); return 0; }
the_stack_data/993570.c
#include<stdio.h> void swap(int *xp, int *yp); int main() { int num; printf("How many numbers are in the list : "); scanf("%d", &num); int ar[num],i; for (i=0;i<num;i++) { printf("Input number %d : ",i+1); scanf("%d", &ar[i]); } printf("\nOriginal List : "); for (i=0;i<num;i++) printf("%d ",ar[i]); int j,k; for (j=0;j<num;j++) { for (k=0;k<(num-1);++k) { if (ar[k]>ar[k+1]) { swap(&ar[k],&ar[k+1]); } } } printf("\n\nSorted array in Ascending order: "); for (i=0;i<num;i++) printf("%d ", ar[i]); printf("\n\nSorted array in Descending order: "); for (i=(num-1);i>=0;i--) printf("%d ", ar[i]); return 0; } void swap(int *xp, int *yp){ int temp=*xp; *xp=*yp; *yp=temp; }
the_stack_data/87068.c
#include <stdio.h> #include <stdlib.h> #include <time.h> int generateRandomNumber(int n) { srand(time(NULL)); return rand() % n; } int greater(char c1, char c2) { if (c1 == c2) { return -1; } else if (c1 == 'r' && c2 == 's') { return 1; } else if (c2 == 'r' && c1 == 's') { return 0; } else if (c1 == 'p' && c2 == 'r') { return 1; } else if (c2 == 'p' && c1 == 'r') { return 0; } else if (c1 == 's' && c2 == 'p') { return 1; } else if (c2 == 's' && c1 == 'p') { return 0; } } int main() { int playerScore = 0, compScore = 0, temp; char playerChar, compChar; char dict[] = {'r', 'p', 's'}; printf("\tWelcome to the Rock Paper Scissors\n"); printf("\t----------------------------------\n\n"); for (int i = 0; i < 3; i++) { // Take player input printf("Press 1 for Rock, Press 2 for Paper, Press 3 for Scissors\n\n"); printf("\tPlayer's turn: "); scanf("%d", &temp); getchar(); playerChar = dict[temp - 1]; printf(" -----------------\n"); printf("| You choose: %c |\n", playerChar); printf(" -----------------\n\n"); printf("Press 1 for Rock, Press 2 for Paper, Press 3 for Scissors\n\n"); printf("\tComputer's turn\n"); temp = generateRandomNumber(3) + 1; compChar = dict[temp - 1]; printf(" --------------------\n"); printf("| Computer choose: %c |\n", compChar); printf(" --------------------\n\n"); // compater character and increment the score if (greater(compChar, playerChar) == 1) { compScore++; printf("\t\tComputer Got It!\n\n"); } else if (greater(compChar, playerChar) == -1) { compScore++; playerScore++; printf("\t\tIt's a draw. Both got 1 point!\n\n"); } else { playerScore++; printf("\t\tYou Got It!\n\n"); } printf(" -------------\n"); printf("| You: %d |\n", playerScore); printf("| Computer: %d |\n", compScore); printf(" -------------\n\n"); printf("===========================================================\n\n"); } printf(" -----------------\n"); printf("| Final Score |\n"); printf(" -----------------\n"); printf("| You | Computer |\n"); printf("|------|----------|\n"); printf("| %d | %d |\n", playerScore, compScore); printf(" -----------------\n\n"); if (playerScore > compScore) { printf("\n\t -------------------\n"); printf("\t| You Win the match |\n"); printf("\t -------------------\n"); } else if (playerScore < compScore) { printf("\n\t ------------------------\n"); printf("\t| Computer Win the match |\n"); printf("\t ------------------------\n"); } else { printf("\n\t -------------\n"); printf("\t| It's a draw |\n"); printf("\t -------------\n"); } return 0; }
the_stack_data/165765403.c
#include<stdio.h> #define MAX 100 int main() { int a[MAX][MAX], n, i, j, max, min; scanf("%d", &n); for (i = 0; i < n; ++i) for (j = 0; j < n; ++j) { scanf("%d", &a[i][j]); if (i == 0 && j == 0) max = min = a[i][j]; else if (max < a[i][j]) max = a[i][j]; else if (min > a[i][j]) min = a[i][j]; } for (i = 0; i < n; ++i) a[i][i] = max - min; for (i = 0; i < n; ++i) { printf("\n"); for (j = 0; j < n; ++j) printf("%d\t", a[i][j]); } return 0; }
the_stack_data/106955.c
/* { dg-do compile } */ /* { dg-options "-mcmse" } */ typedef struct { unsigned char a; unsigned int b : 3; unsigned int c : 14; unsigned int d : 1; struct { unsigned int ee : 2; unsigned short ff : 15; } e; unsigned char g : 1; unsigned char : 4; unsigned char h : 3; } test_st; typedef union { test_st st; struct { unsigned int v1; unsigned int v2; unsigned int v3; unsigned int v4; }values; } read_st; typedef void __attribute__ ((cmse_nonsecure_call)) (*foo_ns) (test_st); int main (void) { read_st r; foo_ns f; f = (foo_ns) 0x200000; r.values.v1 = 0xFFFFFFFF; r.values.v2 = 0xFFFFFFFF; r.values.v3 = 0xFFFFFFFF; r.values.v4 = 0xFFFFFFFF; f (r.st); return 0; } /* { dg-final { scan-assembler "movw\tip, #65535" } } */ /* { dg-final { scan-assembler "movt\tip, 1023" } } */ /* { dg-final { scan-assembler "and\tr0, r0, ip" } } */ /* { dg-final { scan-assembler "mov\tip, #3" } } */ /* { dg-final { scan-assembler "movt\tip, 32767" } } */ /* { dg-final { scan-assembler "and\tr1, r1, ip" } } */ /* { dg-final { scan-assembler "mov\tip, #255" } } */ /* { dg-final { scan-assembler "and\tr2, r2, ip" } } */ /* { dg-final { scan-assembler "lsrs\tr4, r4, #1" } } */ /* { dg-final { scan-assembler "lsls\tr4, r4, #1" } } */ /* { dg-final { scan-assembler "mov\tr3, r4" } } */ /* { dg-final { scan-assembler "bl\t__gnu_cmse_nonsecure_call" } } */
the_stack_data/31388958.c
/** MIT License * * Copyright (c) 2020 Qv Junping * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* libc/src/stdio/fopen.c * fopen,以某种方式打开文件 */ #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <string.h> FILE *fopen(const char *restrict path, const char *restrict mode) { int flags; if (strcmp(mode, "r") == 0 || strcmp(mode, "rb") == 0) { flags = O_RDONLY; } else if (strcmp(mode, "w") == 0 || strcmp(mode, "wb") == 0) { flags = O_WRONLY | O_CREAT | O_TRUNC; } else if (strcmp(mode, "a") == 0 || strcmp(mode, "ab") == 0) { flags = O_WRONLY | O_CREAT | O_APPEND; } else if (strcmp(mode, "r+") == 0 || strcmp(mode, "rb+") == 0 || strcmp(mode, "r+b") == 0) { flags = O_RDWR; } else if (strcmp(mode, "w+") == 0 || strcmp(mode, "wb+") == 0 || strcmp(mode, "w+b") == 0) { flags = O_RDWR | O_CREAT | O_TRUNC; } else if (strcmp(mode, "a+") == 0 || strcmp(mode, "ab+") == 0 || strcmp(mode, "a+b") == 0) { flags = O_RDWR | O_CREAT | O_APPEND; } else { errno = EINVAL; return NULL; } int fd = open(path, flags, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); if (fd == -1) { return NULL; } return fdopen(fd, mode); }
the_stack_data/40268.c
#include <stdlib.h> /** convert string to long integer **/ long int atol(const char * nptr) { return strtol(nptr, (char**)NULL, 10); } /*** converts the string at ARGUMENT(nptr) to a TYPE(long int) value, using base 10. The conversion goes until the first non-digit character. ***/ /* LC_CTYPE RETURN_SUCCESS(the converted value) STDC(1) */
the_stack_data/954770.c
int a; int c; int* arr[100]; int * p; int * r; void setup() { p = &a; r = arr[a]; arr[c] = p; }
the_stack_data/14199825.c
#include <stdio.h> int main(int argc, char const *argv[]) { int c; while ((c = getchar()) != EOF) { putchar(c); if (c == ' ') { while ((c = getchar()) == ' '); putchar(c); } } return 0; }
the_stack_data/193740.c
/** * @file count_words.c * @author Sixfried Vi Brittania ([email protected]) * @brief * @version 0.1 * @date 2020-09-27 * * @copyright Copyright (c) 2020 * */ #include <stdlib.h> int count_words(char *str) { int nbr = 0, i; for (i = 0; str[i] && !((str[i] >= 'A' && str[i] <= 'Z') || (str[i] >= 'a' && str[i] <= 'z')); i++); if (!str[i]) return 0; nbr += 1; for (; str[i]; i++) if (str[i] == ' ') nbr++; return nbr; }
the_stack_data/43888450.c
#include<stdio.h> #define TABSPACES 4 int main() { int c; int i; while((c = getchar()) != EOF) { if (c == '\t') { for (i = 0; i < TABSPACES; i++) { putchar(' '); } } else { putchar(c); } } }
the_stack_data/867152.c
#include <stdio.h> //the following definitions depend on your compiler typedef unsigned short u16; typedef unsigned int u32; typedef struct shp_ts_header{ u16 zero; u16 width; u16 height; u16 count; }shp_ts_header; typedef struct shp_ts_image_header{ u16 x; u16 y; u16 width; u16 height; u32 type_of_compression; u32 unknown; u32 zero; u32 offset_data; }shp_ts_image_header; shp_ts_header header; shp_ts_image_header cur_img_head; int main(){ FILE *fp; int i; fp=fopen("cons.shp","rb"); if(!fp)return -1; if(fread(&header,sizeof(header),1,fp)!=1)return -2; if(header.zero){ printf("The file 'cons.shp' is not an shp(ts) video file!\nAborted.\n"); return -3; } printf("The file 'cons.shp' is an shp(ts) video file including %d frame(s).\n",header.count); printf("\ The video:\n\ Width: %d pixel(s)\n\ Height: %d pixel(s)\n\ ",header.width,header.height); putchar('\n'); for(i=0;i<header.count;i++){ if(fread(&cur_img_head,sizeof(cur_img_head),1,fp)!=1)return -2; if(cur_img_head.zero){ printf("Error: Image%d does not keep the format of an shp(ts) video file!\nAborted.\n",i+1); return -3; } printf("image%d: ",i+1); printf("(%d,%d)=>(%d,%d),",cur_img_head.x,cur_img_head.y,cur_img_head.x+cur_img_head.width,cur_img_head.y+cur_img_head.height); printf("comp%d,offset=0x%x\n",cur_img_head.type_of_compression,cur_img_head.offset_data); } fclose(fp); return 0; }
the_stack_data/154540.c
#include <stdio.h> #include <stdlib.h> #define SIZE 10005 int size = 0; int MaxHeap[SIZE]; void swap(int *a, int *b){ int temp = *a; *a = *b; *b = temp; } void heapify(int *MaxHeap, int size, int i){ int largest = i; int left_children = 2 * i + 1; int right_children = 2 * i + 2; if(left_children<size && MaxHeap[left_children]>MaxHeap[largest]) largest = left_children; if(right_children<size && MaxHeap[right_children]>MaxHeap[largest]) largest = right_children; //check need to swap or not? if(largest!=i){ swap(&MaxHeap[i], &MaxHeap[largest]); heapify(MaxHeap, size, largest); } } void insert(int *MaxHeap, int element_to_insert){ MaxHeap[size] = element_to_insert; size += 1; //loop to heapify int i; for (i = size / 2 - 1; i >= 0;i--){ heapify(MaxHeap, size, i); } } void delete(int *MaxHeap){ swap(&MaxHeap[0], &MaxHeap[size - 1]); size -= 1; for (int i = size / 2 - 1; i >= 0;i--){ heapify(MaxHeap, size, i); } } void inorderTraversal(FILE *output, int *MaxHeap, int i){ int left_children = 2 * i + 1; int right_children = 2 * i + 2; if(left_children < size){ inorderTraversal(output, MaxHeap, left_children); } fprintf(output, "%d ", MaxHeap[i]); if(right_children < size){ inorderTraversal(output, MaxHeap, right_children); } } void preorderTraversal(FILE *output, int *MaxHeap, int i){ int left_children = 2 * i + 1; int right_children = 2 * i + 2; fprintf(output, "%d ", MaxHeap[i]); if(left_children < size){ preorderTraversal(output, MaxHeap, left_children); } if(right_children < size){ preorderTraversal(output, MaxHeap, right_children); } } void postorderTraversal(FILE *output, int *MaxHeap, int i){ int left_children = 2 * i + 1; int right_children = 2 * i + 2; if(left_children < size){ postorderTraversal(output, MaxHeap, left_children); } if(right_children < size){ postorderTraversal(output, MaxHeap, right_children); } fprintf(output, "%d ", MaxHeap[i]); } void levelorderTraversal(FILE *output, int *MaxHeap){ for (int i = 0; i < size;i++){ fprintf(output, "%d ", MaxHeap[i]); } } int main(int argc, char *argv[]){ //input and output filename: char *input_filename = *(argv + 1); char *output_filename = *(argv + 2); int OP_ID; FILE *input = fopen(input_filename, "r"); FILE *output = fopen(output_filename, "w"); while(fscanf(input, "%d", &OP_ID)!=EOF){ if(OP_ID==0){ int element_to_insert; fscanf(input, "%d", &element_to_insert); insert(MaxHeap, element_to_insert); } else if(OP_ID==1){ delete (MaxHeap); } else if(OP_ID==2){ //levelorderTraversal levelorderTraversal(output, MaxHeap); fprintf(output, "\n"); } else if(OP_ID==3){ //preorderTraversal preorderTraversal(output, MaxHeap, 0); fprintf(output, "\n"); } else if(OP_ID==4){ //inorderTraversal inorderTraversal(output, MaxHeap, 0); fprintf(output, "\n"); } else if(OP_ID==5){ //postorderTraversal postorderTraversal(output, MaxHeap, 0); fprintf(output, "\n"); } } fclose(input); fclose(output); return 0; }
the_stack_data/159514990.c
#include <stdio.h> #include <stdint.h> #include <stdlib.h> typedef struct XOR_Linked_List { int data; struct XOR_Linked_List *neighbor; } XOR_Linked_List; void xor_linked_list_push_front(XOR_Linked_List **head, int value) { XOR_Linked_List *new_head = malloc(sizeof(*new_head)); *new_head = (XOR_Linked_List) { .data = value, .neighbor = *head, }; if (*head != NULL) { (*head)->neighbor = (XOR_Linked_List *) ((uintptr_t) (void *) (*head)->neighbor ^ (uintptr_t) (void *) new_head); } *head = new_head; } void xor_linked_list_traverse(const XOR_Linked_List *head) { const XOR_Linked_List *prev = NULL; const XOR_Linked_List *curr = head; while (curr != NULL) { printf("%d (%p) <-> ", curr->data, curr); const XOR_Linked_List *temp = curr; curr = (const XOR_Linked_List *) ((uintptr_t) (void *) curr->neighbor ^ (uintptr_t) (void *) prev); prev = temp; } printf("NULL\n"); } XOR_Linked_List *xor_linked_list_search(XOR_Linked_List *head, const int value) { const XOR_Linked_List *prev = NULL; XOR_Linked_List *curr = head; while (curr != NULL) { if (curr->data == value) { break; } const XOR_Linked_List *temp = curr; curr = (XOR_Linked_List *) ((uintptr_t) (void *) curr->neighbor ^ (uintptr_t) (void *) prev); prev = temp; } return curr; } void xor_linked_list_delete(XOR_Linked_List **head, const int value) { XOR_Linked_List *prev = NULL; XOR_Linked_List *curr = *head; if (curr->data == value) { *head = (XOR_Linked_List *) ((uintptr_t) (void *) curr->neighbor ^ (uintptr_t) (void *) prev); if (*head != NULL) { (*head)->neighbor = (XOR_Linked_List *) ((uintptr_t) (void *) (*head)->neighbor ^ (uintptr_t) (void *) curr); } free(curr); return; } while (curr != NULL) { if (curr->data == value) { break; } XOR_Linked_List *temp = curr; curr = (XOR_Linked_List *) ((uintptr_t) (void *) curr->neighbor ^ (uintptr_t) (void *) prev); prev = temp; } XOR_Linked_List *next = (XOR_Linked_List *) ((uintptr_t) (void *) curr->neighbor ^ (uintptr_t) (void *) prev); if (prev != NULL) { prev->neighbor = (XOR_Linked_List *) ((uintptr_t) (void *) prev->neighbor ^ (uintptr_t) (void *) curr); prev->neighbor = (XOR_Linked_List *) ((uintptr_t) (void *) prev->neighbor ^ (uintptr_t) (void *) next); } if (next != NULL) { next->neighbor = (XOR_Linked_List *) ((uintptr_t) (void *) next->neighbor ^ (uintptr_t) (void *) curr); next->neighbor = (XOR_Linked_List *) ((uintptr_t) (void *) next->neighbor ^ (uintptr_t) (void *) prev); } free(curr); } void xor_linked_list_free(XOR_Linked_List *head) { const XOR_Linked_List *prev = NULL; XOR_Linked_List *curr = head; while (curr != NULL) { XOR_Linked_List *temp = curr; curr = (XOR_Linked_List *) ((uintptr_t) (void *) curr->neighbor ^ (uintptr_t) (void *) prev); prev = temp; free(temp); } } int main() { XOR_Linked_List *xll = NULL; xor_linked_list_traverse(xll); xor_linked_list_push_front(&xll, 1); xor_linked_list_traverse(xll); xor_linked_list_push_front(&xll, 2); xor_linked_list_traverse(xll); xor_linked_list_push_front(&xll, 3); xor_linked_list_traverse(xll); printf("Found: %p\n", xor_linked_list_search(xll, 2)); printf("Found: %p\n", xor_linked_list_search(xll, 5)); xor_linked_list_delete(&xll, 2); xor_linked_list_traverse(xll); xor_linked_list_delete(&xll, 1); xor_linked_list_traverse(xll); xor_linked_list_delete(&xll, 3); xor_linked_list_traverse(xll); return 0; }
the_stack_data/104908.c
// Multi process sorting. Implemented by Akilesh B, cs13b1042 // Required header files #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <unistd.h> #include <sys/wait.h> #include <time.h> #include <sys/mman.h> //struct element containing indexes of the array. It contains the starting and ending elements struct element { int beg; int end; }; //declaration of input, output arrays and number of elements n static int *input; int *output, n; //merge_sort function void* merge_sort(void *in) { struct element *var = (struct element*) in; int beg = var->beg, end = var->end; if(beg == end) //if beg and end are the same. It means that sorting is completed _exit(0); struct element var1, var2; int mid = (beg+end)/2; var1.beg = beg; //var1 takes care of sorting the first half of the input array var1.end = mid; var2.beg = mid+1; //var2 takes care of sorting the second half of the input array var2.end = end; pid_t child_a, child_b; //create two children child_a = fork(); // child 1 created by parent if(child_a == 0) { merge_sort((void *) &var1); //child 1 performs sorting of first half of input array _exit(0); } else { child_b = fork(); //child 2 created by parent. if(child_b == 0) { merge_sort((void *) &var2); //child 2 performs sorting of second half of child array _exit(0); } else { wait(NULL); // Parent waiting for both the children to execute first. wait(NULL); //parent waits for both its children to finish their tasks and performs merge functionality int i = beg, j = mid+1, k = beg; //merging two arrays while(i <= mid && j <= end) //as long as i is less than mid and j is less than end { if(input[i] < input[j]) output[k++] = input[i++]; else output[k++] = input[j++]; } for(; i <= mid; i++) output[k++] = input[i]; for(; j <= end; j++) output[k++] = input[j]; for(i = beg; i <= end; i++) input[i] = output[i]; } } return NULL; } int main () { printf("enter the number of elements to be sorted\n"); scanf("%d", &n); //allocate memory for input array based on n inputted input = (int*) malloc(sizeof(int) * n); //creating a shared memory so that input array is accessbile to all the children input = mmap(NULL, sizeof *input, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0); int random_num; time_t t; srand( (unsigned)time(&t)+10); int i; //generating random numbers for input array for(i=0; i< n; i++) { random_num = rand()%10000; input[i] = random_num; //generating random numbers } printf("Generated input array is \n"); for(i=0; i<n; i++) { printf("%d\n", input[i]); } //allocating memory for output array output = (int*) malloc(sizeof(int) * n); struct element init; init.beg = 0; init.end = n-1; struct timeval timevar; gettimeofday(&timevar, NULL); long long t1 = timevar.tv_usec; //getting time before sorting merge_sort((void *) &init); //calling the merge_sort function with range of array indexes gettimeofday(&timevar, NULL); long long t2 = timevar.tv_usec; //getting time after sorting printf("time taken for multi process sorting = %lld usec\n", t2-t1); for(i=0; i<n; i++) { printf("%d ", input[i]); //printing the output array } printf("\n"); return 0; }
the_stack_data/48574853.c
#include <stdio.h> #include <stdlib.h> #include <math.h> double relerror(double golden, double test){ if ( golden != 0.0 ) return fabs( (fabs(golden) - fabs(test))/golden); return 0.0; } double abserror(double golden, double test){ return fabs(fabs(golden) - fabs(test)); } int main(int argc, char *argv[]){ if (argc != 3 ){ printf("%s 'correct output file' 'Testing output file')\n", argv[0]); } long i; double relErr = 0.0; double absErr = 0.0; char *goldenFile = argv[1]; char *testFile = argv[2]; FILE *golden, *test; golden = fopen(goldenFile, "r"); test= fopen(testFile, "r"); if ( !(golden && test)){ printf("Could not open files \n"); exit(-1); } long goldenSize; long testSize; int res = fread(&goldenSize, sizeof(long), 1, golden); if (res != 1) { printf("Could not read total number of bytes \n"); printf("Rel Error is 1.0 AbsError is 1.0 \n"); return 1; } res = fread(&testSize, sizeof(long), 1, test); if (res != 1 ){ printf("Could not read total number of bytes \n"); printf("Rel Error is 1.0 AbsError is 1.0 \n"); return 1; } if ( testSize != goldenSize ){ printf("Files differ in size\n"); printf("Rel Error is 1.0 AbsError is 1.0 \n"); return 1; } for ( i = 0 ; i < 2*testSize; i++){ double val1, val2; res = fread(&val1, sizeof(double), 1, golden); if (res != 1 ){ printf("Could not read total number of bytes \n"); printf("Rel Error is 1.0 AbsError is 1.0 \n"); return 1; } res = fread(&val2, sizeof(double), 1, test); if (res != 1 ){ printf("Could not read total number of bytes \n"); printf("Rel Error is 1.0 AbsError is 1.0 \n"); return 1; } relErr += relerror(val1,val2); absErr += abserror(val1, val2); if (feof(golden) || feof(test) ){ printf("File terminated to early should not happen\n"); printf("Rel Error is 1.0 AbsError is 1.0 \n"); fclose(golden); fclose(test); } } printf("%g,%g \n", relErr/(double) (2*goldenSize), absErr/(double) (2* goldenSize)); fclose(golden); fclose(test); }
the_stack_data/9511481.c
/** Autor: Beej http://beej.us/guide/bgipc/output/html/singlepage/bgipc.html Adaptado por: Daniel Saad Nogueira Nunes Descrição: Descrição: Demonstração da utilização de troca de mensagens entre os processos kirk e spock. Spock: Obtém mensagens da fila. **/ #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <string.h> #include <sys/ipc.h> #include <sys/msg.h> #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <sys/types.h> #include <sys/ipc.h> #include <sys/msg.h> struct my_msgbuf { long mtype; char mtext[200]; }; int main(void) { struct my_msgbuf buf; int msqid; key_t key; if ((key = ftok("mensagem-kirk.c", 'B')) == -1) { /* same key as kirk.c */ perror("ftok"); exit(1); } /** Não colocamos IPC_CREAT aqui, pois deixamos Kirk lidar com isso, * se a fila não tiver sido criada, obteremos um erro **/ if ((msqid = msgget(key, 0644)) == -1) { /** Conecta até a fila **/ perror("msgget"); exit(1); } printf("Spock: pronto para receber mensagens, capitão.\n"); /** ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); Como o campo está 0, não importao valor de msgtype setado em kirk. Quando é 0, a primeira mensagem é lida. **/ for(;;) { /** Spock nunca para de ouvir**/ if (msgrcv(msqid, &buf, sizeof(buf.mtext), 0, 0) == -1) { perror("msgrcv"); exit(1); } printf("spock: \"%s\"\n", buf.mtext); } return 0; }
the_stack_data/42235.c
/* Test for const qualification of type of conditional expression. */ /* { dg-do compile } */ /* { dg-options "" } */ int foo (int) __attribute__ ((const)); const int i; void test (void) { __typeof__ (1 ? foo (0) : 0) texpr; __typeof__ (1 ? i : 0) texpr2; texpr = 0; /* { dg-bogus "read-only variable" "conditional expression with call to const function" } */ texpr2 = 0; /* { dg-error "read-only variable" "conditional expression with const variable" } */ }