== BEGIN: "Makefile" ================ # Makefile for aes128Dec. Automatically generated by SBV. Do not edit! # include any user-defined .mk file in the current directory. -include *.mk CC?=gcc CCFLAGS?=-Wall -O3 -DNDEBUG -fomit-frame-pointer all: aes128Dec_driver aes128Dec.o: aes128Dec.c aes128Dec.h ${CC} ${CCFLAGS} -c $< -o $@ aes128Dec_driver.o: aes128Dec_driver.c ${CC} ${CCFLAGS} -c $< -o $@ aes128Dec_driver: aes128Dec.o aes128Dec_driver.o ${CC} ${CCFLAGS} $^ -o $@ clean: rm -f *.o veryclean: clean rm -f aes128Dec_driver == END: "Makefile" ================== == BEGIN: "aes128Dec.h" ================ /* Header file for aes128Dec. Automatically generated by SBV. Do not edit! */ #ifndef __aes128Dec__HEADER_INCLUDED__ #define __aes128Dec__HEADER_INCLUDED__ #include #include #include #include #include #include #include /* The boolean type */ typedef bool SBool; /* The float type */ typedef float SFloat; /* The double type */ typedef double SDouble; /* Unsigned bit-vectors */ typedef uint8_t SWord8; typedef uint16_t SWord16; typedef uint32_t SWord32; typedef uint64_t SWord64; /* Signed bit-vectors */ typedef int8_t SInt8; typedef int16_t SInt16; typedef int32_t SInt32; typedef int64_t SInt64; /* Entry point prototype: */ void aes128Dec(const SWord32 *pt, const SWord32 *key, SWord32 *ct); #endif /* __aes128Dec__HEADER_INCLUDED__ */ == END: "aes128Dec.h" ================== == BEGIN: "aes128Dec_driver.c" ================ /* Example driver program for aes128Dec. */ /* Automatically generated by SBV. Edit as you see fit! */ #include #include "aes128Dec.h" int main(void) { const SWord32 pt[4] = { 0x00000000UL, 0x00000000UL, 0x00000000UL, 0x00000000UL }; printf("Contents of input array pt:\n"); int pt_ctr; for(pt_ctr = 0; pt_ctr < 4 ; ++pt_ctr) printf(" pt[%1d] = 0x%08"PRIx32"UL\n", pt_ctr ,pt[pt_ctr]); const SWord32 key[4] = { 0x00000000UL, 0x00000000UL, 0x00000000UL, 0x00000000UL }; printf("Contents of input array key:\n"); int key_ctr; for(key_ctr = 0; key_ctr < 4 ; ++key_ctr) printf(" key[%1d] = 0x%08"PRIx32"UL\n", key_ctr ,key[key_ctr]); SWord32 ct[4]; aes128Dec(pt, key, ct); printf("aes128Dec(pt, key, ct) ->\n"); int ct_ctr; for(ct_ctr = 0; ct_ctr < 4 ; ++ct_ctr) printf(" ct[%1d] = 0x%08"PRIx32"UL\n", ct_ctr ,ct[ct_ctr]); return 0; } == END: "aes128Dec_driver.c" ================== == BEGIN: "aes128Dec.c" ================ /* File: "aes128Dec.c". Automatically generated by SBV. Do not edit! */ #include "aes128Dec.h" void aes128Dec(const SWord32 *pt, const SWord32 *key, SWord32 *ct) { const SWord32 s0 = pt[0]; const SWord32 s1 = pt[1]; const SWord32 s2 = pt[2]; const SWord32 s3 = pt[3]; const SWord32 s4 = key[0]; const SWord32 s5 = key[1]; const SWord32 s6 = key[2]; const SWord32 s7 = key[3]; static const SWord8 table0[] = { 82, 9, 106, 213, 48, 54, 165, 56, 191, 64, 163, 158, 129, 243, 215, 251, 124, 227, 57, 130, 155, 47, 255, 135, 52, 142, 67, 68, 196, 222, 233, 203, 84, 123, 148, 50, 166, 194, 35, 61, 238, 76, 149, 11, 66, 250, 195, 78, 8, 46, 161, 102, 40, 217, 36, 178, 118, 91, 162, 73, 109, 139, 209, 37, 114, 248, 246, 100, 134, 104, 152, 22, 212, 164, 92, 204, 93, 101, 182, 146, 108, 112, 72, 80, 253, 237, 185, 218, 94, 21, 70, 87, 167, 141, 157, 132, 144, 216, 171, 0, 140, 188, 211, 10, 247, 228, 88, 5, 184, 179, 69, 6, 208, 44, 30, 143, 202, 63, 15, 2, 193, 175, 189, 3, 1, 19, 138, 107, 58, 145, 17, 65, 79, 103, 220, 234, 151, 242, 207, 206, 240, 180, 230, 115, 150, 172, 116, 34, 231, 173, 53, 133, 226, 249, 55, 232, 28, 117, 223, 110, 71, 241, 26, 113, 29, 41, 197, 137, 111, 183, 98, 14, 170, 24, 190, 27, 252, 86, 62, 75, 198, 210, 121, 32, 154, 219, 192, 254, 120, 205, 90, 244, 31, 221, 168, 51, 136, 7, 199, 49, 177, 18, 16, 89, 39, 128, 236, 95, 96, 81, 127, 169, 25, 181, 74, 13, 45, 229, 122, 159, 147, 201, 156, 239, 160, 224, 59, 77, 174, 42, 245, 176, 200, 235, 187, 60, 131, 83, 153, 97, 23, 43, 4, 126, 186, 119, 214, 38, 225, 105, 20, 99, 85, 33, 12, 125 }; static const SWord32 table1[] = { 0x51f4a750UL, 0x7e416553UL, 0x1a17a4c3UL, 0x3a275e96UL, 0x3bab6bcbUL, 0x1f9d45f1UL, 0xacfa58abUL, 0x4be30393UL, 0x2030fa55UL, 0xad766df6UL, 0x88cc7691UL, 0xf5024c25UL, 0x4fe5d7fcUL, 0xc52acbd7UL, 0x26354480UL, 0xb562a38fUL, 0xdeb15a49UL, 0x25ba1b67UL, 0x45ea0e98UL, 0x5dfec0e1UL, 0xc32f7502UL, 0x814cf012UL, 0x8d4697a3UL, 0x6bd3f9c6UL, 0x038f5fe7UL, 0x15929c95UL, 0xbf6d7aebUL, 0x955259daUL, 0xd4be832dUL, 0x587421d3UL, 0x49e06929UL, 0x8ec9c844UL, 0x75c2896aUL, 0xf48e7978UL, 0x99583e6bUL, 0x27b971ddUL, 0xbee14fb6UL, 0xf088ad17UL, 0xc920ac66UL, 0x7dce3ab4UL, 0x63df4a18UL, 0xe51a3182UL, 0x97513360UL, 0x62537f45UL, 0xb16477e0UL, 0xbb6bae84UL, 0xfe81a01cUL, 0xf9082b94UL, 0x70486858UL, 0x8f45fd19UL, 0x94de6c87UL, 0x527bf8b7UL, 0xab73d323UL, 0x724b02e2UL, 0xe31f8f57UL, 0x6655ab2aUL, 0xb2eb2807UL, 0x2fb5c203UL, 0x86c57b9aUL, 0xd33708a5UL, 0x302887f2UL, 0x23bfa5b2UL, 0x02036abaUL, 0xed16825cUL, 0x8acf1c2bUL, 0xa779b492UL, 0xf307f2f0UL, 0x4e69e2a1UL, 0x65daf4cdUL, 0x0605bed5UL, 0xd134621fUL, 0xc4a6fe8aUL, 0x342e539dUL, 0xa2f355a0UL, 0x058ae132UL, 0xa4f6eb75UL, 0x0b83ec39UL, 0x4060efaaUL, 0x5e719f06UL, 0xbd6e1051UL, 0x3e218af9UL, 0x96dd063dUL, 0xdd3e05aeUL, 0x4de6bd46UL, 0x91548db5UL, 0x71c45d05UL, 0x0406d46fUL, 0x605015ffUL, 0x1998fb24UL, 0xd6bde997UL, 0x894043ccUL, 0x67d99e77UL, 0xb0e842bdUL, 0x07898b88UL, 0xe7195b38UL, 0x79c8eedbUL, 0xa17c0a47UL, 0x7c420fe9UL, 0xf8841ec9UL, 0x00000000UL, 0x09808683UL, 0x322bed48UL, 0x1e1170acUL, 0x6c5a724eUL, 0xfd0efffbUL, 0x0f853856UL, 0x3daed51eUL, 0x362d3927UL, 0x0a0fd964UL, 0x685ca621UL, 0x9b5b54d1UL, 0x24362e3aUL, 0x0c0a67b1UL, 0x9357e70fUL, 0xb4ee96d2UL, 0x1b9b919eUL, 0x80c0c54fUL, 0x61dc20a2UL, 0x5a774b69UL, 0x1c121a16UL, 0xe293ba0aUL, 0xc0a02ae5UL, 0x3c22e043UL, 0x121b171dUL, 0x0e090d0bUL, 0xf28bc7adUL, 0x2db6a8b9UL, 0x141ea9c8UL, 0x57f11985UL, 0xaf75074cUL, 0xee99ddbbUL, 0xa37f60fdUL, 0xf701269fUL, 0x5c72f5bcUL, 0x44663bc5UL, 0x5bfb7e34UL, 0x8b432976UL, 0xcb23c6dcUL, 0xb6edfc68UL, 0xb8e4f163UL, 0xd731dccaUL, 0x42638510UL, 0x13972240UL, 0x84c61120UL, 0x854a247dUL, 0xd2bb3df8UL, 0xaef93211UL, 0xc729a16dUL, 0x1d9e2f4bUL, 0xdcb230f3UL, 0x0d8652ecUL, 0x77c1e3d0UL, 0x2bb3166cUL, 0xa970b999UL, 0x119448faUL, 0x47e96422UL, 0xa8fc8cc4UL, 0xa0f03f1aUL, 0x567d2cd8UL, 0x223390efUL, 0x87494ec7UL, 0xd938d1c1UL, 0x8ccaa2feUL, 0x98d40b36UL, 0xa6f581cfUL, 0xa57ade28UL, 0xdab78e26UL, 0x3fadbfa4UL, 0x2c3a9de4UL, 0x5078920dUL, 0x6a5fcc9bUL, 0x547e4662UL, 0xf68d13c2UL, 0x90d8b8e8UL, 0x2e39f75eUL, 0x82c3aff5UL, 0x9f5d80beUL, 0x69d0937cUL, 0x6fd52da9UL, 0xcf2512b3UL, 0xc8ac993bUL, 0x10187da7UL, 0xe89c636eUL, 0xdb3bbb7bUL, 0xcd267809UL, 0x6e5918f4UL, 0xec9ab701UL, 0x834f9aa8UL, 0xe6956e65UL, 0xaaffe67eUL, 0x21bccf08UL, 0xef15e8e6UL, 0xbae79bd9UL, 0x4a6f36ceUL, 0xea9f09d4UL, 0x29b07cd6UL, 0x31a4b2afUL, 0x2a3f2331UL, 0xc6a59430UL, 0x35a266c0UL, 0x744ebc37UL, 0xfc82caa6UL, 0xe090d0b0UL, 0x33a7d815UL, 0xf104984aUL, 0x41ecdaf7UL, 0x7fcd500eUL, 0x1791f62fUL, 0x764dd68dUL, 0x43efb04dUL, 0xccaa4d54UL, 0xe49604dfUL, 0x9ed1b5e3UL, 0x4c6a881bUL, 0xc12c1fb8UL, 0x4665517fUL, 0x9d5eea04UL, 0x018c355dUL, 0xfa877473UL, 0xfb0b412eUL, 0xb3671d5aUL, 0x92dbd252UL, 0xe9105633UL, 0x6dd64713UL, 0x9ad7618cUL, 0x37a10c7aUL, 0x59f8148eUL, 0xeb133c89UL, 0xcea927eeUL, 0xb761c935UL, 0xe11ce5edUL, 0x7a47b13cUL, 0x9cd2df59UL, 0x55f2733fUL, 0x1814ce79UL, 0x73c737bfUL, 0x53f7cdeaUL, 0x5ffdaa5bUL, 0xdf3d6f14UL, 0x7844db86UL, 0xcaaff381UL, 0xb968c43eUL, 0x3824342cUL, 0xc2a3405fUL, 0x161dc372UL, 0xbce2250cUL, 0x283c498bUL, 0xff0d9541UL, 0x39a80171UL, 0x080cb3deUL, 0xd8b4e49cUL, 0x6456c190UL, 0x7bcb8461UL, 0xd532b670UL, 0x486c5c74UL, 0xd0b85742UL }; static const SWord8 table2[] = { 99, 124, 119, 123, 242, 107, 111, 197, 48, 1, 103, 43, 254, 215, 171, 118, 202, 130, 201, 125, 250, 89, 71, 240, 173, 212, 162, 175, 156, 164, 114, 192, 183, 253, 147, 38, 54, 63, 247, 204, 52, 165, 229, 241, 113, 216, 49, 21, 4, 199, 35, 195, 24, 150, 5, 154, 7, 18, 128, 226, 235, 39, 178, 117, 9, 131, 44, 26, 27, 110, 90, 160, 82, 59, 214, 179, 41, 227, 47, 132, 83, 209, 0, 237, 32, 252, 177, 91, 106, 203, 190, 57, 74, 76, 88, 207, 208, 239, 170, 251, 67, 77, 51, 133, 69, 249, 2, 127, 80, 60, 159, 168, 81, 163, 64, 143, 146, 157, 56, 245, 188, 182, 218, 33, 16, 255, 243, 210, 205, 12, 19, 236, 95, 151, 68, 23, 196, 167, 126, 61, 100, 93, 25, 115, 96, 129, 79, 220, 34, 42, 144, 136, 70, 238, 184, 20, 222, 94, 11, 219, 224, 50, 58, 10, 73, 6, 36, 92, 194, 211, 172, 98, 145, 149, 228, 121, 231, 200, 55, 109, 141, 213, 78, 169, 108, 86, 244, 234, 101, 122, 174, 8, 186, 120, 37, 46, 28, 166, 180, 198, 232, 221, 116, 31, 75, 189, 139, 138, 112, 62, 181, 102, 72, 3, 246, 14, 97, 53, 87, 185, 134, 193, 29, 158, 225, 248, 152, 17, 105, 217, 142, 148, 155, 30, 135, 233, 206, 85, 40, 223, 140, 161, 137, 13, 191, 230, 66, 104, 65, 153, 45, 15, 176, 84, 187, 22 }; static const SWord32 table3[] = { 0x5051f4a7UL, 0x537e4165UL, 0xc31a17a4UL, 0x963a275eUL, 0xcb3bab6bUL, 0xf11f9d45UL, 0xabacfa58UL, 0x934be303UL, 0x552030faUL, 0xf6ad766dUL, 0x9188cc76UL, 0x25f5024cUL, 0xfc4fe5d7UL, 0xd7c52acbUL, 0x80263544UL, 0x8fb562a3UL, 0x49deb15aUL, 0x6725ba1bUL, 0x9845ea0eUL, 0xe15dfec0UL, 0x02c32f75UL, 0x12814cf0UL, 0xa38d4697UL, 0xc66bd3f9UL, 0xe7038f5fUL, 0x9515929cUL, 0xebbf6d7aUL, 0xda955259UL, 0x2dd4be83UL, 0xd3587421UL, 0x2949e069UL, 0x448ec9c8UL, 0x6a75c289UL, 0x78f48e79UL, 0x6b99583eUL, 0xdd27b971UL, 0xb6bee14fUL, 0x17f088adUL, 0x66c920acUL, 0xb47dce3aUL, 0x1863df4aUL, 0x82e51a31UL, 0x60975133UL, 0x4562537fUL, 0xe0b16477UL, 0x84bb6baeUL, 0x1cfe81a0UL, 0x94f9082bUL, 0x58704868UL, 0x198f45fdUL, 0x8794de6cUL, 0xb7527bf8UL, 0x23ab73d3UL, 0xe2724b02UL, 0x57e31f8fUL, 0x2a6655abUL, 0x07b2eb28UL, 0x032fb5c2UL, 0x9a86c57bUL, 0xa5d33708UL, 0xf2302887UL, 0xb223bfa5UL, 0xba02036aUL, 0x5ced1682UL, 0x2b8acf1cUL, 0x92a779b4UL, 0xf0f307f2UL, 0xa14e69e2UL, 0xcd65daf4UL, 0xd50605beUL, 0x1fd13462UL, 0x8ac4a6feUL, 0x9d342e53UL, 0xa0a2f355UL, 0x32058ae1UL, 0x75a4f6ebUL, 0x390b83ecUL, 0xaa4060efUL, 0x065e719fUL, 0x51bd6e10UL, 0xf93e218aUL, 0x3d96dd06UL, 0xaedd3e05UL, 0x464de6bdUL, 0xb591548dUL, 0x0571c45dUL, 0x6f0406d4UL, 0xff605015UL, 0x241998fbUL, 0x97d6bde9UL, 0xcc894043UL, 0x7767d99eUL, 0xbdb0e842UL, 0x8807898bUL, 0x38e7195bUL, 0xdb79c8eeUL, 0x47a17c0aUL, 0xe97c420fUL, 0xc9f8841eUL, 0x00000000UL, 0x83098086UL, 0x48322bedUL, 0xac1e1170UL, 0x4e6c5a72UL, 0xfbfd0effUL, 0x560f8538UL, 0x1e3daed5UL, 0x27362d39UL, 0x640a0fd9UL, 0x21685ca6UL, 0xd19b5b54UL, 0x3a24362eUL, 0xb10c0a67UL, 0x0f9357e7UL, 0xd2b4ee96UL, 0x9e1b9b91UL, 0x4f80c0c5UL, 0xa261dc20UL, 0x695a774bUL, 0x161c121aUL, 0x0ae293baUL, 0xe5c0a02aUL, 0x433c22e0UL, 0x1d121b17UL, 0x0b0e090dUL, 0xadf28bc7UL, 0xb92db6a8UL, 0xc8141ea9UL, 0x8557f119UL, 0x4caf7507UL, 0xbbee99ddUL, 0xfda37f60UL, 0x9ff70126UL, 0xbc5c72f5UL, 0xc544663bUL, 0x345bfb7eUL, 0x768b4329UL, 0xdccb23c6UL, 0x68b6edfcUL, 0x63b8e4f1UL, 0xcad731dcUL, 0x10426385UL, 0x40139722UL, 0x2084c611UL, 0x7d854a24UL, 0xf8d2bb3dUL, 0x11aef932UL, 0x6dc729a1UL, 0x4b1d9e2fUL, 0xf3dcb230UL, 0xec0d8652UL, 0xd077c1e3UL, 0x6c2bb316UL, 0x99a970b9UL, 0xfa119448UL, 0x2247e964UL, 0xc4a8fc8cUL, 0x1aa0f03fUL, 0xd8567d2cUL, 0xef223390UL, 0xc787494eUL, 0xc1d938d1UL, 0xfe8ccaa2UL, 0x3698d40bUL, 0xcfa6f581UL, 0x28a57adeUL, 0x26dab78eUL, 0xa43fadbfUL, 0xe42c3a9dUL, 0x0d507892UL, 0x9b6a5fccUL, 0x62547e46UL, 0xc2f68d13UL, 0xe890d8b8UL, 0x5e2e39f7UL, 0xf582c3afUL, 0xbe9f5d80UL, 0x7c69d093UL, 0xa96fd52dUL, 0xb3cf2512UL, 0x3bc8ac99UL, 0xa710187dUL, 0x6ee89c63UL, 0x7bdb3bbbUL, 0x09cd2678UL, 0xf46e5918UL, 0x01ec9ab7UL, 0xa8834f9aUL, 0x65e6956eUL, 0x7eaaffe6UL, 0x0821bccfUL, 0xe6ef15e8UL, 0xd9bae79bUL, 0xce4a6f36UL, 0xd4ea9f09UL, 0xd629b07cUL, 0xaf31a4b2UL, 0x312a3f23UL, 0x30c6a594UL, 0xc035a266UL, 0x37744ebcUL, 0xa6fc82caUL, 0xb0e090d0UL, 0x1533a7d8UL, 0x4af10498UL, 0xf741ecdaUL, 0x0e7fcd50UL, 0x2f1791f6UL, 0x8d764dd6UL, 0x4d43efb0UL, 0x54ccaa4dUL, 0xdfe49604UL, 0xe39ed1b5UL, 0x1b4c6a88UL, 0xb8c12c1fUL, 0x7f466551UL, 0x049d5eeaUL, 0x5d018c35UL, 0x73fa8774UL, 0x2efb0b41UL, 0x5ab3671dUL, 0x5292dbd2UL, 0x33e91056UL, 0x136dd647UL, 0x8c9ad761UL, 0x7a37a10cUL, 0x8e59f814UL, 0x89eb133cUL, 0xeecea927UL, 0x35b761c9UL, 0xede11ce5UL, 0x3c7a47b1UL, 0x599cd2dfUL, 0x3f55f273UL, 0x791814ceUL, 0xbf73c737UL, 0xea53f7cdUL, 0x5b5ffdaaUL, 0x14df3d6fUL, 0x867844dbUL, 0x81caaff3UL, 0x3eb968c4UL, 0x2c382434UL, 0x5fc2a340UL, 0x72161dc3UL, 0x0cbce225UL, 0x8b283c49UL, 0x41ff0d95UL, 0x7139a801UL, 0xde080cb3UL, 0x9cd8b4e4UL, 0x906456c1UL, 0x617bcb84UL, 0x70d532b6UL, 0x74486c5cUL, 0x42d0b857UL }; static const SWord32 table4[] = { 0xa75051f4UL, 0x65537e41UL, 0xa4c31a17UL, 0x5e963a27UL, 0x6bcb3babUL, 0x45f11f9dUL, 0x58abacfaUL, 0x03934be3UL, 0xfa552030UL, 0x6df6ad76UL, 0x769188ccUL, 0x4c25f502UL, 0xd7fc4fe5UL, 0xcbd7c52aUL, 0x44802635UL, 0xa38fb562UL, 0x5a49deb1UL, 0x1b6725baUL, 0x0e9845eaUL, 0xc0e15dfeUL, 0x7502c32fUL, 0xf012814cUL, 0x97a38d46UL, 0xf9c66bd3UL, 0x5fe7038fUL, 0x9c951592UL, 0x7aebbf6dUL, 0x59da9552UL, 0x832dd4beUL, 0x21d35874UL, 0x692949e0UL, 0xc8448ec9UL, 0x896a75c2UL, 0x7978f48eUL, 0x3e6b9958UL, 0x71dd27b9UL, 0x4fb6bee1UL, 0xad17f088UL, 0xac66c920UL, 0x3ab47dceUL, 0x4a1863dfUL, 0x3182e51aUL, 0x33609751UL, 0x7f456253UL, 0x77e0b164UL, 0xae84bb6bUL, 0xa01cfe81UL, 0x2b94f908UL, 0x68587048UL, 0xfd198f45UL, 0x6c8794deUL, 0xf8b7527bUL, 0xd323ab73UL, 0x02e2724bUL, 0x8f57e31fUL, 0xab2a6655UL, 0x2807b2ebUL, 0xc2032fb5UL, 0x7b9a86c5UL, 0x08a5d337UL, 0x87f23028UL, 0xa5b223bfUL, 0x6aba0203UL, 0x825ced16UL, 0x1c2b8acfUL, 0xb492a779UL, 0xf2f0f307UL, 0xe2a14e69UL, 0xf4cd65daUL, 0xbed50605UL, 0x621fd134UL, 0xfe8ac4a6UL, 0x539d342eUL, 0x55a0a2f3UL, 0xe132058aUL, 0xeb75a4f6UL, 0xec390b83UL, 0xefaa4060UL, 0x9f065e71UL, 0x1051bd6eUL, 0x8af93e21UL, 0x063d96ddUL, 0x05aedd3eUL, 0xbd464de6UL, 0x8db59154UL, 0x5d0571c4UL, 0xd46f0406UL, 0x15ff6050UL, 0xfb241998UL, 0xe997d6bdUL, 0x43cc8940UL, 0x9e7767d9UL, 0x42bdb0e8UL, 0x8b880789UL, 0x5b38e719UL, 0xeedb79c8UL, 0x0a47a17cUL, 0x0fe97c42UL, 0x1ec9f884UL, 0x00000000UL, 0x86830980UL, 0xed48322bUL, 0x70ac1e11UL, 0x724e6c5aUL, 0xfffbfd0eUL, 0x38560f85UL, 0xd51e3daeUL, 0x3927362dUL, 0xd9640a0fUL, 0xa621685cUL, 0x54d19b5bUL, 0x2e3a2436UL, 0x67b10c0aUL, 0xe70f9357UL, 0x96d2b4eeUL, 0x919e1b9bUL, 0xc54f80c0UL, 0x20a261dcUL, 0x4b695a77UL, 0x1a161c12UL, 0xba0ae293UL, 0x2ae5c0a0UL, 0xe0433c22UL, 0x171d121bUL, 0x0d0b0e09UL, 0xc7adf28bUL, 0xa8b92db6UL, 0xa9c8141eUL, 0x198557f1UL, 0x074caf75UL, 0xddbbee99UL, 0x60fda37fUL, 0x269ff701UL, 0xf5bc5c72UL, 0x3bc54466UL, 0x7e345bfbUL, 0x29768b43UL, 0xc6dccb23UL, 0xfc68b6edUL, 0xf163b8e4UL, 0xdccad731UL, 0x85104263UL, 0x22401397UL, 0x112084c6UL, 0x247d854aUL, 0x3df8d2bbUL, 0x3211aef9UL, 0xa16dc729UL, 0x2f4b1d9eUL, 0x30f3dcb2UL, 0x52ec0d86UL, 0xe3d077c1UL, 0x166c2bb3UL, 0xb999a970UL, 0x48fa1194UL, 0x642247e9UL, 0x8cc4a8fcUL, 0x3f1aa0f0UL, 0x2cd8567dUL, 0x90ef2233UL, 0x4ec78749UL, 0xd1c1d938UL, 0xa2fe8ccaUL, 0x0b3698d4UL, 0x81cfa6f5UL, 0xde28a57aUL, 0x8e26dab7UL, 0xbfa43fadUL, 0x9de42c3aUL, 0x920d5078UL, 0xcc9b6a5fUL, 0x4662547eUL, 0x13c2f68dUL, 0xb8e890d8UL, 0xf75e2e39UL, 0xaff582c3UL, 0x80be9f5dUL, 0x937c69d0UL, 0x2da96fd5UL, 0x12b3cf25UL, 0x993bc8acUL, 0x7da71018UL, 0x636ee89cUL, 0xbb7bdb3bUL, 0x7809cd26UL, 0x18f46e59UL, 0xb701ec9aUL, 0x9aa8834fUL, 0x6e65e695UL, 0xe67eaaffUL, 0xcf0821bcUL, 0xe8e6ef15UL, 0x9bd9bae7UL, 0x36ce4a6fUL, 0x09d4ea9fUL, 0x7cd629b0UL, 0xb2af31a4UL, 0x23312a3fUL, 0x9430c6a5UL, 0x66c035a2UL, 0xbc37744eUL, 0xcaa6fc82UL, 0xd0b0e090UL, 0xd81533a7UL, 0x984af104UL, 0xdaf741ecUL, 0x500e7fcdUL, 0xf62f1791UL, 0xd68d764dUL, 0xb04d43efUL, 0x4d54ccaaUL, 0x04dfe496UL, 0xb5e39ed1UL, 0x881b4c6aUL, 0x1fb8c12cUL, 0x517f4665UL, 0xea049d5eUL, 0x355d018cUL, 0x7473fa87UL, 0x412efb0bUL, 0x1d5ab367UL, 0xd25292dbUL, 0x5633e910UL, 0x47136dd6UL, 0x618c9ad7UL, 0x0c7a37a1UL, 0x148e59f8UL, 0x3c89eb13UL, 0x27eecea9UL, 0xc935b761UL, 0xe5ede11cUL, 0xb13c7a47UL, 0xdf599cd2UL, 0x733f55f2UL, 0xce791814UL, 0x37bf73c7UL, 0xcdea53f7UL, 0xaa5b5ffdUL, 0x6f14df3dUL, 0xdb867844UL, 0xf381caafUL, 0xc43eb968UL, 0x342c3824UL, 0x405fc2a3UL, 0xc372161dUL, 0x250cbce2UL, 0x498b283cUL, 0x9541ff0dUL, 0x017139a8UL, 0xb3de080cUL, 0xe49cd8b4UL, 0xc1906456UL, 0x84617bcbUL, 0xb670d532UL, 0x5c74486cUL, 0x5742d0b8UL }; static const SWord32 table5[] = { 0xf4a75051UL, 0x4165537eUL, 0x17a4c31aUL, 0x275e963aUL, 0xab6bcb3bUL, 0x9d45f11fUL, 0xfa58abacUL, 0xe303934bUL, 0x30fa5520UL, 0x766df6adUL, 0xcc769188UL, 0x024c25f5UL, 0xe5d7fc4fUL, 0x2acbd7c5UL, 0x35448026UL, 0x62a38fb5UL, 0xb15a49deUL, 0xba1b6725UL, 0xea0e9845UL, 0xfec0e15dUL, 0x2f7502c3UL, 0x4cf01281UL, 0x4697a38dUL, 0xd3f9c66bUL, 0x8f5fe703UL, 0x929c9515UL, 0x6d7aebbfUL, 0x5259da95UL, 0xbe832dd4UL, 0x7421d358UL, 0xe0692949UL, 0xc9c8448eUL, 0xc2896a75UL, 0x8e7978f4UL, 0x583e6b99UL, 0xb971dd27UL, 0xe14fb6beUL, 0x88ad17f0UL, 0x20ac66c9UL, 0xce3ab47dUL, 0xdf4a1863UL, 0x1a3182e5UL, 0x51336097UL, 0x537f4562UL, 0x6477e0b1UL, 0x6bae84bbUL, 0x81a01cfeUL, 0x082b94f9UL, 0x48685870UL, 0x45fd198fUL, 0xde6c8794UL, 0x7bf8b752UL, 0x73d323abUL, 0x4b02e272UL, 0x1f8f57e3UL, 0x55ab2a66UL, 0xeb2807b2UL, 0xb5c2032fUL, 0xc57b9a86UL, 0x3708a5d3UL, 0x2887f230UL, 0xbfa5b223UL, 0x036aba02UL, 0x16825cedUL, 0xcf1c2b8aUL, 0x79b492a7UL, 0x07f2f0f3UL, 0x69e2a14eUL, 0xdaf4cd65UL, 0x05bed506UL, 0x34621fd1UL, 0xa6fe8ac4UL, 0x2e539d34UL, 0xf355a0a2UL, 0x8ae13205UL, 0xf6eb75a4UL, 0x83ec390bUL, 0x60efaa40UL, 0x719f065eUL, 0x6e1051bdUL, 0x218af93eUL, 0xdd063d96UL, 0x3e05aeddUL, 0xe6bd464dUL, 0x548db591UL, 0xc45d0571UL, 0x06d46f04UL, 0x5015ff60UL, 0x98fb2419UL, 0xbde997d6UL, 0x4043cc89UL, 0xd99e7767UL, 0xe842bdb0UL, 0x898b8807UL, 0x195b38e7UL, 0xc8eedb79UL, 0x7c0a47a1UL, 0x420fe97cUL, 0x841ec9f8UL, 0x00000000UL, 0x80868309UL, 0x2bed4832UL, 0x1170ac1eUL, 0x5a724e6cUL, 0x0efffbfdUL, 0x8538560fUL, 0xaed51e3dUL, 0x2d392736UL, 0x0fd9640aUL, 0x5ca62168UL, 0x5b54d19bUL, 0x362e3a24UL, 0x0a67b10cUL, 0x57e70f93UL, 0xee96d2b4UL, 0x9b919e1bUL, 0xc0c54f80UL, 0xdc20a261UL, 0x774b695aUL, 0x121a161cUL, 0x93ba0ae2UL, 0xa02ae5c0UL, 0x22e0433cUL, 0x1b171d12UL, 0x090d0b0eUL, 0x8bc7adf2UL, 0xb6a8b92dUL, 0x1ea9c814UL, 0xf1198557UL, 0x75074cafUL, 0x99ddbbeeUL, 0x7f60fda3UL, 0x01269ff7UL, 0x72f5bc5cUL, 0x663bc544UL, 0xfb7e345bUL, 0x4329768bUL, 0x23c6dccbUL, 0xedfc68b6UL, 0xe4f163b8UL, 0x31dccad7UL, 0x63851042UL, 0x97224013UL, 0xc6112084UL, 0x4a247d85UL, 0xbb3df8d2UL, 0xf93211aeUL, 0x29a16dc7UL, 0x9e2f4b1dUL, 0xb230f3dcUL, 0x8652ec0dUL, 0xc1e3d077UL, 0xb3166c2bUL, 0x70b999a9UL, 0x9448fa11UL, 0xe9642247UL, 0xfc8cc4a8UL, 0xf03f1aa0UL, 0x7d2cd856UL, 0x3390ef22UL, 0x494ec787UL, 0x38d1c1d9UL, 0xcaa2fe8cUL, 0xd40b3698UL, 0xf581cfa6UL, 0x7ade28a5UL, 0xb78e26daUL, 0xadbfa43fUL, 0x3a9de42cUL, 0x78920d50UL, 0x5fcc9b6aUL, 0x7e466254UL, 0x8d13c2f6UL, 0xd8b8e890UL, 0x39f75e2eUL, 0xc3aff582UL, 0x5d80be9fUL, 0xd0937c69UL, 0xd52da96fUL, 0x2512b3cfUL, 0xac993bc8UL, 0x187da710UL, 0x9c636ee8UL, 0x3bbb7bdbUL, 0x267809cdUL, 0x5918f46eUL, 0x9ab701ecUL, 0x4f9aa883UL, 0x956e65e6UL, 0xffe67eaaUL, 0xbccf0821UL, 0x15e8e6efUL, 0xe79bd9baUL, 0x6f36ce4aUL, 0x9f09d4eaUL, 0xb07cd629UL, 0xa4b2af31UL, 0x3f23312aUL, 0xa59430c6UL, 0xa266c035UL, 0x4ebc3774UL, 0x82caa6fcUL, 0x90d0b0e0UL, 0xa7d81533UL, 0x04984af1UL, 0xecdaf741UL, 0xcd500e7fUL, 0x91f62f17UL, 0x4dd68d76UL, 0xefb04d43UL, 0xaa4d54ccUL, 0x9604dfe4UL, 0xd1b5e39eUL, 0x6a881b4cUL, 0x2c1fb8c1UL, 0x65517f46UL, 0x5eea049dUL, 0x8c355d01UL, 0x877473faUL, 0x0b412efbUL, 0x671d5ab3UL, 0xdbd25292UL, 0x105633e9UL, 0xd647136dUL, 0xd7618c9aUL, 0xa10c7a37UL, 0xf8148e59UL, 0x133c89ebUL, 0xa927eeceUL, 0x61c935b7UL, 0x1ce5ede1UL, 0x47b13c7aUL, 0xd2df599cUL, 0xf2733f55UL, 0x14ce7918UL, 0xc737bf73UL, 0xf7cdea53UL, 0xfdaa5b5fUL, 0x3d6f14dfUL, 0x44db8678UL, 0xaff381caUL, 0x68c43eb9UL, 0x24342c38UL, 0xa3405fc2UL, 0x1dc37216UL, 0xe2250cbcUL, 0x3c498b28UL, 0x0d9541ffUL, 0xa8017139UL, 0x0cb3de08UL, 0xb4e49cd8UL, 0x56c19064UL, 0xcb84617bUL, 0x32b670d5UL, 0x6c5c7448UL, 0xb85742d0UL }; static const SWord8 table6[] = { 0, 14, 28, 18, 56, 54, 36, 42, 112, 126, 108, 98, 72, 70, 84, 90, 224, 238, 252, 242, 216, 214, 196, 202, 144, 158, 140, 130, 168, 166, 180, 186, 219, 213, 199, 201, 227, 237, 255, 241, 171, 165, 183, 185, 147, 157, 143, 129, 59, 53, 39, 41, 3, 13, 31, 17, 75, 69, 87, 89, 115, 125, 111, 97, 173, 163, 177, 191, 149, 155, 137, 135, 221, 211, 193, 207, 229, 235, 249, 247, 77, 67, 81, 95, 117, 123, 105, 103, 61, 51, 33, 47, 5, 11, 25, 23, 118, 120, 106, 100, 78, 64, 82, 92, 6, 8, 26, 20, 62, 48, 34, 44, 150, 152, 138, 132, 174, 160, 178, 188, 230, 232, 250, 244, 222, 208, 194, 204, 65, 79, 93, 83, 121, 119, 101, 107, 49, 63, 45, 35, 9, 7, 21, 27, 161, 175, 189, 179, 153, 151, 133, 139, 209, 223, 205, 195, 233, 231, 245, 251, 154, 148, 134, 136, 162, 172, 190, 176, 234, 228, 246, 248, 210, 220, 206, 192, 122, 116, 102, 104, 66, 76, 94, 80, 10, 4, 22, 24, 50, 60, 46, 32, 236, 226, 240, 254, 212, 218, 200, 198, 156, 146, 128, 142, 164, 170, 184, 182, 12, 2, 16, 30, 52, 58, 40, 38, 124, 114, 96, 110, 68, 74, 88, 86, 55, 57, 43, 37, 15, 1, 19, 29, 71, 73, 91, 85, 127, 113, 99, 109, 215, 217, 203, 197, 239, 225, 243, 253, 167, 169, 187, 181, 159, 145, 131, 141 }; static const SWord8 table7[] = { 0, 11, 22, 29, 44, 39, 58, 49, 88, 83, 78, 69, 116, 127, 98, 105, 176, 187, 166, 173, 156, 151, 138, 129, 232, 227, 254, 245, 196, 207, 210, 217, 123, 112, 109, 102, 87, 92, 65, 74, 35, 40, 53, 62, 15, 4, 25, 18, 203, 192, 221, 214, 231, 236, 241, 250, 147, 152, 133, 142, 191, 180, 169, 162, 246, 253, 224, 235, 218, 209, 204, 199, 174, 165, 184, 179, 130, 137, 148, 159, 70, 77, 80, 91, 106, 97, 124, 119, 30, 21, 8, 3, 50, 57, 36, 47, 141, 134, 155, 144, 161, 170, 183, 188, 213, 222, 195, 200, 249, 242, 239, 228, 61, 54, 43, 32, 17, 26, 7, 12, 101, 110, 115, 120, 73, 66, 95, 84, 247, 252, 225, 234, 219, 208, 205, 198, 175, 164, 185, 178, 131, 136, 149, 158, 71, 76, 81, 90, 107, 96, 125, 118, 31, 20, 9, 2, 51, 56, 37, 46, 140, 135, 154, 145, 160, 171, 182, 189, 212, 223, 194, 201, 248, 243, 238, 229, 60, 55, 42, 33, 16, 27, 6, 13, 100, 111, 114, 121, 72, 67, 94, 85, 1, 10, 23, 28, 45, 38, 59, 48, 89, 82, 79, 68, 117, 126, 99, 104, 177, 186, 167, 172, 157, 150, 139, 128, 233, 226, 255, 244, 197, 206, 211, 216, 122, 113, 108, 103, 86, 93, 64, 75, 34, 41, 52, 63, 14, 5, 24, 19, 202, 193, 220, 215, 230, 237, 240, 251, 146, 153, 132, 143, 190, 181, 168, 163 }; static const SWord8 table8[] = { 0, 13, 26, 23, 52, 57, 46, 35, 104, 101, 114, 127, 92, 81, 70, 75, 208, 221, 202, 199, 228, 233, 254, 243, 184, 181, 162, 175, 140, 129, 150, 155, 187, 182, 161, 172, 143, 130, 149, 152, 211, 222, 201, 196, 231, 234, 253, 240, 107, 102, 113, 124, 95, 82, 69, 72, 3, 14, 25, 20, 55, 58, 45, 32, 109, 96, 119, 122, 89, 84, 67, 78, 5, 8, 31, 18, 49, 60, 43, 38, 189, 176, 167, 170, 137, 132, 147, 158, 213, 216, 207, 194, 225, 236, 251, 246, 214, 219, 204, 193, 226, 239, 248, 245, 190, 179, 164, 169, 138, 135, 144, 157, 6, 11, 28, 17, 50, 63, 40, 37, 110, 99, 116, 121, 90, 87, 64, 77, 218, 215, 192, 205, 238, 227, 244, 249, 178, 191, 168, 165, 134, 139, 156, 145, 10, 7, 16, 29, 62, 51, 36, 41, 98, 111, 120, 117, 86, 91, 76, 65, 97, 108, 123, 118, 85, 88, 79, 66, 9, 4, 19, 30, 61, 48, 39, 42, 177, 188, 171, 166, 133, 136, 159, 146, 217, 212, 195, 206, 237, 224, 247, 250, 183, 186, 173, 160, 131, 142, 153, 148, 223, 210, 197, 200, 235, 230, 241, 252, 103, 106, 125, 112, 83, 94, 73, 68, 15, 2, 21, 24, 59, 54, 33, 44, 12, 1, 22, 27, 56, 53, 34, 47, 100, 105, 126, 115, 80, 93, 74, 71, 220, 209, 198, 203, 232, 229, 242, 255, 180, 185, 174, 163, 128, 141, 154, 151 }; static const SWord8 table9[] = { 0, 9, 18, 27, 36, 45, 54, 63, 72, 65, 90, 83, 108, 101, 126, 119, 144, 153, 130, 139, 180, 189, 166, 175, 216, 209, 202, 195, 252, 245, 238, 231, 59, 50, 41, 32, 31, 22, 13, 4, 115, 122, 97, 104, 87, 94, 69, 76, 171, 162, 185, 176, 143, 134, 157, 148, 227, 234, 241, 248, 199, 206, 213, 220, 118, 127, 100, 109, 82, 91, 64, 73, 62, 55, 44, 37, 26, 19, 8, 1, 230, 239, 244, 253, 194, 203, 208, 217, 174, 167, 188, 181, 138, 131, 152, 145, 77, 68, 95, 86, 105, 96, 123, 114, 5, 12, 23, 30, 33, 40, 51, 58, 221, 212, 207, 198, 249, 240, 235, 226, 149, 156, 135, 142, 177, 184, 163, 170, 236, 229, 254, 247, 200, 193, 218, 211, 164, 173, 182, 191, 128, 137, 146, 155, 124, 117, 110, 103, 88, 81, 74, 67, 52, 61, 38, 47, 16, 25, 2, 11, 215, 222, 197, 204, 243, 250, 225, 232, 159, 150, 141, 132, 187, 178, 169, 160, 71, 78, 85, 92, 99, 106, 113, 120, 15, 6, 29, 20, 43, 34, 57, 48, 154, 147, 136, 129, 190, 183, 172, 165, 210, 219, 192, 201, 246, 255, 228, 237, 10, 3, 24, 17, 46, 39, 60, 53, 66, 75, 80, 89, 102, 111, 116, 125, 161, 168, 179, 186, 133, 140, 151, 158, 233, 224, 251, 242, 205, 196, 223, 214, 49, 56, 35, 42, 21, 28, 7, 14, 121, 112, 107, 98, 93, 84, 79, 70 }; const SWord32 s520 = (s7 << 8) | (s7 >> 24); const SWord8 s521 = (SWord8) (s520 >> 24); const SWord8 s522 = table2[s521]; const SWord8 s523 = 1 ^ s522; const SWord8 s524 = (SWord8) (s520 >> 16); const SWord8 s525 = table2[s524]; const SWord16 s526 = (((SWord16) s523) << 8) | ((SWord16) s525); const SWord8 s527 = (SWord8) (s520 >> 8); const SWord8 s528 = table2[s527]; const SWord8 s529 = (SWord8) s520; const SWord8 s530 = table2[s529]; const SWord16 s531 = (((SWord16) s528) << 8) | ((SWord16) s530); const SWord32 s532 = (((SWord32) s526) << 16) | ((SWord32) s531); const SWord32 s533 = s4 ^ s532; const SWord32 s534 = s5 ^ s533; const SWord32 s535 = s6 ^ s534; const SWord32 s536 = s7 ^ s535; const SWord32 s537 = (s536 << 8) | (s536 >> 24); const SWord8 s538 = (SWord8) (s537 >> 24); const SWord8 s539 = table2[s538]; const SWord8 s540 = 2 ^ s539; const SWord8 s541 = (SWord8) (s537 >> 16); const SWord8 s542 = table2[s541]; const SWord16 s543 = (((SWord16) s540) << 8) | ((SWord16) s542); const SWord8 s544 = (SWord8) (s537 >> 8); const SWord8 s545 = table2[s544]; const SWord8 s546 = (SWord8) s537; const SWord8 s547 = table2[s546]; const SWord16 s548 = (((SWord16) s545) << 8) | ((SWord16) s547); const SWord32 s549 = (((SWord32) s543) << 16) | ((SWord32) s548); const SWord32 s550 = s533 ^ s549; const SWord32 s551 = s534 ^ s550; const SWord32 s552 = s535 ^ s551; const SWord32 s553 = s536 ^ s552; const SWord32 s554 = (s553 << 8) | (s553 >> 24); const SWord8 s555 = (SWord8) (s554 >> 24); const SWord8 s556 = table2[s555]; const SWord8 s557 = 4 ^ s556; const SWord8 s558 = (SWord8) (s554 >> 16); const SWord8 s559 = table2[s558]; const SWord16 s560 = (((SWord16) s557) << 8) | ((SWord16) s559); const SWord8 s561 = (SWord8) (s554 >> 8); const SWord8 s562 = table2[s561]; const SWord8 s563 = (SWord8) s554; const SWord8 s564 = table2[s563]; const SWord16 s565 = (((SWord16) s562) << 8) | ((SWord16) s564); const SWord32 s566 = (((SWord32) s560) << 16) | ((SWord32) s565); const SWord32 s567 = s550 ^ s566; const SWord32 s568 = s551 ^ s567; const SWord32 s569 = s552 ^ s568; const SWord32 s570 = s553 ^ s569; const SWord32 s571 = (s570 << 8) | (s570 >> 24); const SWord8 s572 = (SWord8) (s571 >> 24); const SWord8 s573 = table2[s572]; const SWord8 s574 = 8 ^ s573; const SWord8 s575 = (SWord8) (s571 >> 16); const SWord8 s576 = table2[s575]; const SWord16 s577 = (((SWord16) s574) << 8) | ((SWord16) s576); const SWord8 s578 = (SWord8) (s571 >> 8); const SWord8 s579 = table2[s578]; const SWord8 s580 = (SWord8) s571; const SWord8 s581 = table2[s580]; const SWord16 s582 = (((SWord16) s579) << 8) | ((SWord16) s581); const SWord32 s583 = (((SWord32) s577) << 16) | ((SWord32) s582); const SWord32 s584 = s567 ^ s583; const SWord32 s585 = s568 ^ s584; const SWord32 s586 = s569 ^ s585; const SWord32 s587 = s570 ^ s586; const SWord32 s588 = (s587 << 8) | (s587 >> 24); const SWord8 s589 = (SWord8) (s588 >> 24); const SWord8 s590 = table2[s589]; const SWord8 s591 = 16 ^ s590; const SWord8 s592 = (SWord8) (s588 >> 16); const SWord8 s593 = table2[s592]; const SWord16 s594 = (((SWord16) s591) << 8) | ((SWord16) s593); const SWord8 s595 = (SWord8) (s588 >> 8); const SWord8 s596 = table2[s595]; const SWord8 s597 = (SWord8) s588; const SWord8 s598 = table2[s597]; const SWord16 s599 = (((SWord16) s596) << 8) | ((SWord16) s598); const SWord32 s600 = (((SWord32) s594) << 16) | ((SWord32) s599); const SWord32 s601 = s584 ^ s600; const SWord32 s602 = s585 ^ s601; const SWord32 s603 = s586 ^ s602; const SWord32 s604 = s587 ^ s603; const SWord32 s605 = (s604 << 8) | (s604 >> 24); const SWord8 s606 = (SWord8) (s605 >> 24); const SWord8 s607 = table2[s606]; const SWord8 s608 = 32 ^ s607; const SWord8 s609 = (SWord8) (s605 >> 16); const SWord8 s610 = table2[s609]; const SWord16 s611 = (((SWord16) s608) << 8) | ((SWord16) s610); const SWord8 s612 = (SWord8) (s605 >> 8); const SWord8 s613 = table2[s612]; const SWord8 s614 = (SWord8) s605; const SWord8 s615 = table2[s614]; const SWord16 s616 = (((SWord16) s613) << 8) | ((SWord16) s615); const SWord32 s617 = (((SWord32) s611) << 16) | ((SWord32) s616); const SWord32 s618 = s601 ^ s617; const SWord32 s619 = s602 ^ s618; const SWord32 s620 = s603 ^ s619; const SWord32 s621 = s604 ^ s620; const SWord32 s622 = (s621 << 8) | (s621 >> 24); const SWord8 s623 = (SWord8) (s622 >> 24); const SWord8 s624 = table2[s623]; const SWord8 s625 = 64 ^ s624; const SWord8 s626 = (SWord8) (s622 >> 16); const SWord8 s627 = table2[s626]; const SWord16 s628 = (((SWord16) s625) << 8) | ((SWord16) s627); const SWord8 s629 = (SWord8) (s622 >> 8); const SWord8 s630 = table2[s629]; const SWord8 s631 = (SWord8) s622; const SWord8 s632 = table2[s631]; const SWord16 s633 = (((SWord16) s630) << 8) | ((SWord16) s632); const SWord32 s634 = (((SWord32) s628) << 16) | ((SWord32) s633); const SWord32 s635 = s618 ^ s634; const SWord32 s636 = s619 ^ s635; const SWord32 s637 = s620 ^ s636; const SWord32 s638 = s621 ^ s637; const SWord32 s639 = (s638 << 8) | (s638 >> 24); const SWord8 s640 = (SWord8) (s639 >> 24); const SWord8 s641 = table2[s640]; const SWord8 s642 = 128 ^ s641; const SWord8 s643 = (SWord8) (s639 >> 16); const SWord8 s644 = table2[s643]; const SWord16 s645 = (((SWord16) s642) << 8) | ((SWord16) s644); const SWord8 s646 = (SWord8) (s639 >> 8); const SWord8 s647 = table2[s646]; const SWord8 s648 = (SWord8) s639; const SWord8 s649 = table2[s648]; const SWord16 s650 = (((SWord16) s647) << 8) | ((SWord16) s649); const SWord32 s651 = (((SWord32) s645) << 16) | ((SWord32) s650); const SWord32 s652 = s635 ^ s651; const SWord32 s653 = s636 ^ s652; const SWord32 s654 = s637 ^ s653; const SWord32 s655 = s638 ^ s654; const SWord32 s656 = (s655 << 8) | (s655 >> 24); const SWord8 s657 = (SWord8) (s656 >> 24); const SWord8 s658 = table2[s657]; const SWord8 s659 = 27 ^ s658; const SWord8 s660 = (SWord8) (s656 >> 16); const SWord8 s661 = table2[s660]; const SWord16 s662 = (((SWord16) s659) << 8) | ((SWord16) s661); const SWord8 s663 = (SWord8) (s656 >> 8); const SWord8 s664 = table2[s663]; const SWord8 s665 = (SWord8) s656; const SWord8 s666 = table2[s665]; const SWord16 s667 = (((SWord16) s664) << 8) | ((SWord16) s666); const SWord32 s668 = (((SWord32) s662) << 16) | ((SWord32) s667); const SWord32 s669 = s652 ^ s668; const SWord32 s670 = s653 ^ s669; const SWord32 s671 = s654 ^ s670; const SWord32 s672 = s655 ^ s671; const SWord32 s673 = (s672 << 8) | (s672 >> 24); const SWord8 s674 = (SWord8) (s673 >> 24); const SWord8 s675 = table2[s674]; const SWord8 s676 = 54 ^ s675; const SWord8 s677 = (SWord8) (s673 >> 16); const SWord8 s678 = table2[s677]; const SWord16 s679 = (((SWord16) s676) << 8) | ((SWord16) s678); const SWord8 s680 = (SWord8) (s673 >> 8); const SWord8 s681 = table2[s680]; const SWord8 s682 = (SWord8) s673; const SWord8 s683 = table2[s682]; const SWord16 s684 = (((SWord16) s681) << 8) | ((SWord16) s683); const SWord32 s685 = (((SWord32) s679) << 16) | ((SWord32) s684); const SWord32 s686 = s669 ^ s685; const SWord32 s687 = s0 ^ s686; const SWord8 s688 = (SWord8) (s687 >> 24); const SWord32 s689 = table1[s688]; const SWord32 s945 = s670 ^ s686; const SWord32 s946 = s671 ^ s945; const SWord32 s947 = s672 ^ s946; const SWord32 s948 = s3 ^ s947; const SWord8 s949 = (SWord8) (s948 >> 16); const SWord32 s950 = table3[s949]; const SWord32 s951 = s689 ^ s950; const SWord32 s1207 = s2 ^ s946; const SWord8 s1208 = (SWord8) (s1207 >> 8); const SWord32 s1209 = table4[s1208]; const SWord32 s1210 = s951 ^ s1209; const SWord32 s1466 = s1 ^ s945; const SWord8 s1467 = (SWord8) s1466; const SWord32 s1468 = table5[s1467]; const SWord32 s1469 = s1210 ^ s1468; const SWord8 s1470 = (SWord8) (s669 >> 24); const SWord8 s1471 = table6[s1470]; const SWord8 s1472 = (SWord8) (s669 >> 16); const SWord8 s1473 = table7[s1472]; const SWord8 s1474 = (SWord8) (s669 >> 8); const SWord8 s1475 = table8[s1474]; const SWord8 s1476 = (SWord8) s669; const SWord8 s1477 = table9[s1476]; const SWord8 s1478 = s1475 ^ s1477; const SWord8 s1479 = s1473 ^ s1478; const SWord8 s1480 = s1471 ^ s1479; const SWord8 s1481 = table9[s1470]; const SWord8 s1482 = table6[s1472]; const SWord8 s1483 = table7[s1474]; const SWord8 s1484 = table8[s1476]; const SWord8 s1485 = s1483 ^ s1484; const SWord8 s1486 = s1482 ^ s1485; const SWord8 s1487 = s1481 ^ s1486; const SWord16 s1488 = (((SWord16) s1480) << 8) | ((SWord16) s1487); const SWord8 s1489 = table8[s1470]; const SWord8 s1490 = table9[s1472]; const SWord8 s1491 = table6[s1474]; const SWord8 s1492 = table7[s1476]; const SWord8 s1493 = s1491 ^ s1492; const SWord8 s1494 = s1490 ^ s1493; const SWord8 s1495 = s1489 ^ s1494; const SWord8 s1496 = table7[s1470]; const SWord8 s1497 = table8[s1472]; const SWord8 s1498 = table9[s1474]; const SWord8 s1499 = table6[s1476]; const SWord8 s1500 = s1498 ^ s1499; const SWord8 s1501 = s1497 ^ s1500; const SWord8 s1502 = s1496 ^ s1501; const SWord16 s1503 = (((SWord16) s1495) << 8) | ((SWord16) s1502); const SWord32 s1504 = (((SWord32) s1488) << 16) | ((SWord32) s1503); const SWord32 s1505 = s1469 ^ s1504; const SWord8 s1506 = (SWord8) (s1505 >> 24); const SWord32 s1507 = table1[s1506]; const SWord8 s1508 = (SWord8) (s948 >> 24); const SWord32 s1509 = table1[s1508]; const SWord8 s1510 = (SWord8) (s1207 >> 16); const SWord32 s1511 = table3[s1510]; const SWord32 s1512 = s1509 ^ s1511; const SWord8 s1513 = (SWord8) (s1466 >> 8); const SWord32 s1514 = table4[s1513]; const SWord32 s1515 = s1512 ^ s1514; const SWord8 s1516 = (SWord8) s687; const SWord32 s1517 = table5[s1516]; const SWord32 s1518 = s1515 ^ s1517; const SWord8 s1519 = (SWord8) (s672 >> 24); const SWord8 s1520 = table6[s1519]; const SWord8 s1521 = (SWord8) (s672 >> 16); const SWord8 s1522 = table7[s1521]; const SWord8 s1523 = (SWord8) (s672 >> 8); const SWord8 s1524 = table8[s1523]; const SWord8 s1525 = (SWord8) s672; const SWord8 s1526 = table9[s1525]; const SWord8 s1527 = s1524 ^ s1526; const SWord8 s1528 = s1522 ^ s1527; const SWord8 s1529 = s1520 ^ s1528; const SWord8 s1530 = table9[s1519]; const SWord8 s1531 = table6[s1521]; const SWord8 s1532 = table7[s1523]; const SWord8 s1533 = table8[s1525]; const SWord8 s1534 = s1532 ^ s1533; const SWord8 s1535 = s1531 ^ s1534; const SWord8 s1536 = s1530 ^ s1535; const SWord16 s1537 = (((SWord16) s1529) << 8) | ((SWord16) s1536); const SWord8 s1538 = table8[s1519]; const SWord8 s1539 = table9[s1521]; const SWord8 s1540 = table6[s1523]; const SWord8 s1541 = table7[s1525]; const SWord8 s1542 = s1540 ^ s1541; const SWord8 s1543 = s1539 ^ s1542; const SWord8 s1544 = s1538 ^ s1543; const SWord8 s1545 = table7[s1519]; const SWord8 s1546 = table8[s1521]; const SWord8 s1547 = table9[s1523]; const SWord8 s1548 = table6[s1525]; const SWord8 s1549 = s1547 ^ s1548; const SWord8 s1550 = s1546 ^ s1549; const SWord8 s1551 = s1545 ^ s1550; const SWord16 s1552 = (((SWord16) s1544) << 8) | ((SWord16) s1551); const SWord32 s1553 = (((SWord32) s1537) << 16) | ((SWord32) s1552); const SWord32 s1554 = s1518 ^ s1553; const SWord8 s1555 = (SWord8) (s1554 >> 16); const SWord32 s1556 = table3[s1555]; const SWord32 s1557 = s1507 ^ s1556; const SWord8 s1558 = (SWord8) (s1207 >> 24); const SWord32 s1559 = table1[s1558]; const SWord8 s1560 = (SWord8) (s1466 >> 16); const SWord32 s1561 = table3[s1560]; const SWord32 s1562 = s1559 ^ s1561; const SWord8 s1563 = (SWord8) (s687 >> 8); const SWord32 s1564 = table4[s1563]; const SWord32 s1565 = s1562 ^ s1564; const SWord8 s1566 = (SWord8) s948; const SWord32 s1567 = table5[s1566]; const SWord32 s1568 = s1565 ^ s1567; const SWord8 s1569 = (SWord8) (s671 >> 24); const SWord8 s1570 = table6[s1569]; const SWord8 s1571 = (SWord8) (s671 >> 16); const SWord8 s1572 = table7[s1571]; const SWord8 s1573 = (SWord8) (s671 >> 8); const SWord8 s1574 = table8[s1573]; const SWord8 s1575 = (SWord8) s671; const SWord8 s1576 = table9[s1575]; const SWord8 s1577 = s1574 ^ s1576; const SWord8 s1578 = s1572 ^ s1577; const SWord8 s1579 = s1570 ^ s1578; const SWord8 s1580 = table9[s1569]; const SWord8 s1581 = table6[s1571]; const SWord8 s1582 = table7[s1573]; const SWord8 s1583 = table8[s1575]; const SWord8 s1584 = s1582 ^ s1583; const SWord8 s1585 = s1581 ^ s1584; const SWord8 s1586 = s1580 ^ s1585; const SWord16 s1587 = (((SWord16) s1579) << 8) | ((SWord16) s1586); const SWord8 s1588 = table8[s1569]; const SWord8 s1589 = table9[s1571]; const SWord8 s1590 = table6[s1573]; const SWord8 s1591 = table7[s1575]; const SWord8 s1592 = s1590 ^ s1591; const SWord8 s1593 = s1589 ^ s1592; const SWord8 s1594 = s1588 ^ s1593; const SWord8 s1595 = table7[s1569]; const SWord8 s1596 = table8[s1571]; const SWord8 s1597 = table9[s1573]; const SWord8 s1598 = table6[s1575]; const SWord8 s1599 = s1597 ^ s1598; const SWord8 s1600 = s1596 ^ s1599; const SWord8 s1601 = s1595 ^ s1600; const SWord16 s1602 = (((SWord16) s1594) << 8) | ((SWord16) s1601); const SWord32 s1603 = (((SWord32) s1587) << 16) | ((SWord32) s1602); const SWord32 s1604 = s1568 ^ s1603; const SWord8 s1605 = (SWord8) (s1604 >> 8); const SWord32 s1606 = table4[s1605]; const SWord32 s1607 = s1557 ^ s1606; const SWord8 s1608 = (SWord8) (s1466 >> 24); const SWord32 s1609 = table1[s1608]; const SWord8 s1610 = (SWord8) (s687 >> 16); const SWord32 s1611 = table3[s1610]; const SWord32 s1612 = s1609 ^ s1611; const SWord8 s1613 = (SWord8) (s948 >> 8); const SWord32 s1614 = table4[s1613]; const SWord32 s1615 = s1612 ^ s1614; const SWord8 s1616 = (SWord8) s1207; const SWord32 s1617 = table5[s1616]; const SWord32 s1618 = s1615 ^ s1617; const SWord8 s1619 = (SWord8) (s670 >> 24); const SWord8 s1620 = table6[s1619]; const SWord8 s1621 = (SWord8) (s670 >> 16); const SWord8 s1622 = table7[s1621]; const SWord8 s1623 = (SWord8) (s670 >> 8); const SWord8 s1624 = table8[s1623]; const SWord8 s1625 = (SWord8) s670; const SWord8 s1626 = table9[s1625]; const SWord8 s1627 = s1624 ^ s1626; const SWord8 s1628 = s1622 ^ s1627; const SWord8 s1629 = s1620 ^ s1628; const SWord8 s1630 = table9[s1619]; const SWord8 s1631 = table6[s1621]; const SWord8 s1632 = table7[s1623]; const SWord8 s1633 = table8[s1625]; const SWord8 s1634 = s1632 ^ s1633; const SWord8 s1635 = s1631 ^ s1634; const SWord8 s1636 = s1630 ^ s1635; const SWord16 s1637 = (((SWord16) s1629) << 8) | ((SWord16) s1636); const SWord8 s1638 = table8[s1619]; const SWord8 s1639 = table9[s1621]; const SWord8 s1640 = table6[s1623]; const SWord8 s1641 = table7[s1625]; const SWord8 s1642 = s1640 ^ s1641; const SWord8 s1643 = s1639 ^ s1642; const SWord8 s1644 = s1638 ^ s1643; const SWord8 s1645 = table7[s1619]; const SWord8 s1646 = table8[s1621]; const SWord8 s1647 = table9[s1623]; const SWord8 s1648 = table6[s1625]; const SWord8 s1649 = s1647 ^ s1648; const SWord8 s1650 = s1646 ^ s1649; const SWord8 s1651 = s1645 ^ s1650; const SWord16 s1652 = (((SWord16) s1644) << 8) | ((SWord16) s1651); const SWord32 s1653 = (((SWord32) s1637) << 16) | ((SWord32) s1652); const SWord32 s1654 = s1618 ^ s1653; const SWord8 s1655 = (SWord8) s1654; const SWord32 s1656 = table5[s1655]; const SWord32 s1657 = s1607 ^ s1656; const SWord8 s1658 = (SWord8) (s652 >> 24); const SWord8 s1659 = table6[s1658]; const SWord8 s1660 = (SWord8) (s652 >> 16); const SWord8 s1661 = table7[s1660]; const SWord8 s1662 = (SWord8) (s652 >> 8); const SWord8 s1663 = table8[s1662]; const SWord8 s1664 = (SWord8) s652; const SWord8 s1665 = table9[s1664]; const SWord8 s1666 = s1663 ^ s1665; const SWord8 s1667 = s1661 ^ s1666; const SWord8 s1668 = s1659 ^ s1667; const SWord8 s1669 = table9[s1658]; const SWord8 s1670 = table6[s1660]; const SWord8 s1671 = table7[s1662]; const SWord8 s1672 = table8[s1664]; const SWord8 s1673 = s1671 ^ s1672; const SWord8 s1674 = s1670 ^ s1673; const SWord8 s1675 = s1669 ^ s1674; const SWord16 s1676 = (((SWord16) s1668) << 8) | ((SWord16) s1675); const SWord8 s1677 = table8[s1658]; const SWord8 s1678 = table9[s1660]; const SWord8 s1679 = table6[s1662]; const SWord8 s1680 = table7[s1664]; const SWord8 s1681 = s1679 ^ s1680; const SWord8 s1682 = s1678 ^ s1681; const SWord8 s1683 = s1677 ^ s1682; const SWord8 s1684 = table7[s1658]; const SWord8 s1685 = table8[s1660]; const SWord8 s1686 = table9[s1662]; const SWord8 s1687 = table6[s1664]; const SWord8 s1688 = s1686 ^ s1687; const SWord8 s1689 = s1685 ^ s1688; const SWord8 s1690 = s1684 ^ s1689; const SWord16 s1691 = (((SWord16) s1683) << 8) | ((SWord16) s1690); const SWord32 s1692 = (((SWord32) s1676) << 16) | ((SWord32) s1691); const SWord32 s1693 = s1657 ^ s1692; const SWord8 s1694 = (SWord8) (s1693 >> 24); const SWord32 s1695 = table1[s1694]; const SWord8 s1696 = (SWord8) (s1554 >> 24); const SWord32 s1697 = table1[s1696]; const SWord8 s1698 = (SWord8) (s1604 >> 16); const SWord32 s1699 = table3[s1698]; const SWord32 s1700 = s1697 ^ s1699; const SWord8 s1701 = (SWord8) (s1654 >> 8); const SWord32 s1702 = table4[s1701]; const SWord32 s1703 = s1700 ^ s1702; const SWord8 s1704 = (SWord8) s1505; const SWord32 s1705 = table5[s1704]; const SWord32 s1706 = s1703 ^ s1705; const SWord8 s1707 = (SWord8) (s655 >> 24); const SWord8 s1708 = table6[s1707]; const SWord8 s1709 = (SWord8) (s655 >> 16); const SWord8 s1710 = table7[s1709]; const SWord8 s1711 = (SWord8) (s655 >> 8); const SWord8 s1712 = table8[s1711]; const SWord8 s1713 = (SWord8) s655; const SWord8 s1714 = table9[s1713]; const SWord8 s1715 = s1712 ^ s1714; const SWord8 s1716 = s1710 ^ s1715; const SWord8 s1717 = s1708 ^ s1716; const SWord8 s1718 = table9[s1707]; const SWord8 s1719 = table6[s1709]; const SWord8 s1720 = table7[s1711]; const SWord8 s1721 = table8[s1713]; const SWord8 s1722 = s1720 ^ s1721; const SWord8 s1723 = s1719 ^ s1722; const SWord8 s1724 = s1718 ^ s1723; const SWord16 s1725 = (((SWord16) s1717) << 8) | ((SWord16) s1724); const SWord8 s1726 = table8[s1707]; const SWord8 s1727 = table9[s1709]; const SWord8 s1728 = table6[s1711]; const SWord8 s1729 = table7[s1713]; const SWord8 s1730 = s1728 ^ s1729; const SWord8 s1731 = s1727 ^ s1730; const SWord8 s1732 = s1726 ^ s1731; const SWord8 s1733 = table7[s1707]; const SWord8 s1734 = table8[s1709]; const SWord8 s1735 = table9[s1711]; const SWord8 s1736 = table6[s1713]; const SWord8 s1737 = s1735 ^ s1736; const SWord8 s1738 = s1734 ^ s1737; const SWord8 s1739 = s1733 ^ s1738; const SWord16 s1740 = (((SWord16) s1732) << 8) | ((SWord16) s1739); const SWord32 s1741 = (((SWord32) s1725) << 16) | ((SWord32) s1740); const SWord32 s1742 = s1706 ^ s1741; const SWord8 s1743 = (SWord8) (s1742 >> 16); const SWord32 s1744 = table3[s1743]; const SWord32 s1745 = s1695 ^ s1744; const SWord8 s1746 = (SWord8) (s1604 >> 24); const SWord32 s1747 = table1[s1746]; const SWord8 s1748 = (SWord8) (s1654 >> 16); const SWord32 s1749 = table3[s1748]; const SWord32 s1750 = s1747 ^ s1749; const SWord8 s1751 = (SWord8) (s1505 >> 8); const SWord32 s1752 = table4[s1751]; const SWord32 s1753 = s1750 ^ s1752; const SWord8 s1754 = (SWord8) s1554; const SWord32 s1755 = table5[s1754]; const SWord32 s1756 = s1753 ^ s1755; const SWord8 s1757 = (SWord8) (s654 >> 24); const SWord8 s1758 = table6[s1757]; const SWord8 s1759 = (SWord8) (s654 >> 16); const SWord8 s1760 = table7[s1759]; const SWord8 s1761 = (SWord8) (s654 >> 8); const SWord8 s1762 = table8[s1761]; const SWord8 s1763 = (SWord8) s654; const SWord8 s1764 = table9[s1763]; const SWord8 s1765 = s1762 ^ s1764; const SWord8 s1766 = s1760 ^ s1765; const SWord8 s1767 = s1758 ^ s1766; const SWord8 s1768 = table9[s1757]; const SWord8 s1769 = table6[s1759]; const SWord8 s1770 = table7[s1761]; const SWord8 s1771 = table8[s1763]; const SWord8 s1772 = s1770 ^ s1771; const SWord8 s1773 = s1769 ^ s1772; const SWord8 s1774 = s1768 ^ s1773; const SWord16 s1775 = (((SWord16) s1767) << 8) | ((SWord16) s1774); const SWord8 s1776 = table8[s1757]; const SWord8 s1777 = table9[s1759]; const SWord8 s1778 = table6[s1761]; const SWord8 s1779 = table7[s1763]; const SWord8 s1780 = s1778 ^ s1779; const SWord8 s1781 = s1777 ^ s1780; const SWord8 s1782 = s1776 ^ s1781; const SWord8 s1783 = table7[s1757]; const SWord8 s1784 = table8[s1759]; const SWord8 s1785 = table9[s1761]; const SWord8 s1786 = table6[s1763]; const SWord8 s1787 = s1785 ^ s1786; const SWord8 s1788 = s1784 ^ s1787; const SWord8 s1789 = s1783 ^ s1788; const SWord16 s1790 = (((SWord16) s1782) << 8) | ((SWord16) s1789); const SWord32 s1791 = (((SWord32) s1775) << 16) | ((SWord32) s1790); const SWord32 s1792 = s1756 ^ s1791; const SWord8 s1793 = (SWord8) (s1792 >> 8); const SWord32 s1794 = table4[s1793]; const SWord32 s1795 = s1745 ^ s1794; const SWord8 s1796 = (SWord8) (s1654 >> 24); const SWord32 s1797 = table1[s1796]; const SWord8 s1798 = (SWord8) (s1505 >> 16); const SWord32 s1799 = table3[s1798]; const SWord32 s1800 = s1797 ^ s1799; const SWord8 s1801 = (SWord8) (s1554 >> 8); const SWord32 s1802 = table4[s1801]; const SWord32 s1803 = s1800 ^ s1802; const SWord8 s1804 = (SWord8) s1604; const SWord32 s1805 = table5[s1804]; const SWord32 s1806 = s1803 ^ s1805; const SWord8 s1807 = (SWord8) (s653 >> 24); const SWord8 s1808 = table6[s1807]; const SWord8 s1809 = (SWord8) (s653 >> 16); const SWord8 s1810 = table7[s1809]; const SWord8 s1811 = (SWord8) (s653 >> 8); const SWord8 s1812 = table8[s1811]; const SWord8 s1813 = (SWord8) s653; const SWord8 s1814 = table9[s1813]; const SWord8 s1815 = s1812 ^ s1814; const SWord8 s1816 = s1810 ^ s1815; const SWord8 s1817 = s1808 ^ s1816; const SWord8 s1818 = table9[s1807]; const SWord8 s1819 = table6[s1809]; const SWord8 s1820 = table7[s1811]; const SWord8 s1821 = table8[s1813]; const SWord8 s1822 = s1820 ^ s1821; const SWord8 s1823 = s1819 ^ s1822; const SWord8 s1824 = s1818 ^ s1823; const SWord16 s1825 = (((SWord16) s1817) << 8) | ((SWord16) s1824); const SWord8 s1826 = table8[s1807]; const SWord8 s1827 = table9[s1809]; const SWord8 s1828 = table6[s1811]; const SWord8 s1829 = table7[s1813]; const SWord8 s1830 = s1828 ^ s1829; const SWord8 s1831 = s1827 ^ s1830; const SWord8 s1832 = s1826 ^ s1831; const SWord8 s1833 = table7[s1807]; const SWord8 s1834 = table8[s1809]; const SWord8 s1835 = table9[s1811]; const SWord8 s1836 = table6[s1813]; const SWord8 s1837 = s1835 ^ s1836; const SWord8 s1838 = s1834 ^ s1837; const SWord8 s1839 = s1833 ^ s1838; const SWord16 s1840 = (((SWord16) s1832) << 8) | ((SWord16) s1839); const SWord32 s1841 = (((SWord32) s1825) << 16) | ((SWord32) s1840); const SWord32 s1842 = s1806 ^ s1841; const SWord8 s1843 = (SWord8) s1842; const SWord32 s1844 = table5[s1843]; const SWord32 s1845 = s1795 ^ s1844; const SWord8 s1846 = (SWord8) (s635 >> 24); const SWord8 s1847 = table6[s1846]; const SWord8 s1848 = (SWord8) (s635 >> 16); const SWord8 s1849 = table7[s1848]; const SWord8 s1850 = (SWord8) (s635 >> 8); const SWord8 s1851 = table8[s1850]; const SWord8 s1852 = (SWord8) s635; const SWord8 s1853 = table9[s1852]; const SWord8 s1854 = s1851 ^ s1853; const SWord8 s1855 = s1849 ^ s1854; const SWord8 s1856 = s1847 ^ s1855; const SWord8 s1857 = table9[s1846]; const SWord8 s1858 = table6[s1848]; const SWord8 s1859 = table7[s1850]; const SWord8 s1860 = table8[s1852]; const SWord8 s1861 = s1859 ^ s1860; const SWord8 s1862 = s1858 ^ s1861; const SWord8 s1863 = s1857 ^ s1862; const SWord16 s1864 = (((SWord16) s1856) << 8) | ((SWord16) s1863); const SWord8 s1865 = table8[s1846]; const SWord8 s1866 = table9[s1848]; const SWord8 s1867 = table6[s1850]; const SWord8 s1868 = table7[s1852]; const SWord8 s1869 = s1867 ^ s1868; const SWord8 s1870 = s1866 ^ s1869; const SWord8 s1871 = s1865 ^ s1870; const SWord8 s1872 = table7[s1846]; const SWord8 s1873 = table8[s1848]; const SWord8 s1874 = table9[s1850]; const SWord8 s1875 = table6[s1852]; const SWord8 s1876 = s1874 ^ s1875; const SWord8 s1877 = s1873 ^ s1876; const SWord8 s1878 = s1872 ^ s1877; const SWord16 s1879 = (((SWord16) s1871) << 8) | ((SWord16) s1878); const SWord32 s1880 = (((SWord32) s1864) << 16) | ((SWord32) s1879); const SWord32 s1881 = s1845 ^ s1880; const SWord8 s1882 = (SWord8) (s1881 >> 24); const SWord32 s1883 = table1[s1882]; const SWord8 s1884 = (SWord8) (s1742 >> 24); const SWord32 s1885 = table1[s1884]; const SWord8 s1886 = (SWord8) (s1792 >> 16); const SWord32 s1887 = table3[s1886]; const SWord32 s1888 = s1885 ^ s1887; const SWord8 s1889 = (SWord8) (s1842 >> 8); const SWord32 s1890 = table4[s1889]; const SWord32 s1891 = s1888 ^ s1890; const SWord8 s1892 = (SWord8) s1693; const SWord32 s1893 = table5[s1892]; const SWord32 s1894 = s1891 ^ s1893; const SWord8 s1895 = (SWord8) (s638 >> 24); const SWord8 s1896 = table6[s1895]; const SWord8 s1897 = (SWord8) (s638 >> 16); const SWord8 s1898 = table7[s1897]; const SWord8 s1899 = (SWord8) (s638 >> 8); const SWord8 s1900 = table8[s1899]; const SWord8 s1901 = (SWord8) s638; const SWord8 s1902 = table9[s1901]; const SWord8 s1903 = s1900 ^ s1902; const SWord8 s1904 = s1898 ^ s1903; const SWord8 s1905 = s1896 ^ s1904; const SWord8 s1906 = table9[s1895]; const SWord8 s1907 = table6[s1897]; const SWord8 s1908 = table7[s1899]; const SWord8 s1909 = table8[s1901]; const SWord8 s1910 = s1908 ^ s1909; const SWord8 s1911 = s1907 ^ s1910; const SWord8 s1912 = s1906 ^ s1911; const SWord16 s1913 = (((SWord16) s1905) << 8) | ((SWord16) s1912); const SWord8 s1914 = table8[s1895]; const SWord8 s1915 = table9[s1897]; const SWord8 s1916 = table6[s1899]; const SWord8 s1917 = table7[s1901]; const SWord8 s1918 = s1916 ^ s1917; const SWord8 s1919 = s1915 ^ s1918; const SWord8 s1920 = s1914 ^ s1919; const SWord8 s1921 = table7[s1895]; const SWord8 s1922 = table8[s1897]; const SWord8 s1923 = table9[s1899]; const SWord8 s1924 = table6[s1901]; const SWord8 s1925 = s1923 ^ s1924; const SWord8 s1926 = s1922 ^ s1925; const SWord8 s1927 = s1921 ^ s1926; const SWord16 s1928 = (((SWord16) s1920) << 8) | ((SWord16) s1927); const SWord32 s1929 = (((SWord32) s1913) << 16) | ((SWord32) s1928); const SWord32 s1930 = s1894 ^ s1929; const SWord8 s1931 = (SWord8) (s1930 >> 16); const SWord32 s1932 = table3[s1931]; const SWord32 s1933 = s1883 ^ s1932; const SWord8 s1934 = (SWord8) (s1792 >> 24); const SWord32 s1935 = table1[s1934]; const SWord8 s1936 = (SWord8) (s1842 >> 16); const SWord32 s1937 = table3[s1936]; const SWord32 s1938 = s1935 ^ s1937; const SWord8 s1939 = (SWord8) (s1693 >> 8); const SWord32 s1940 = table4[s1939]; const SWord32 s1941 = s1938 ^ s1940; const SWord8 s1942 = (SWord8) s1742; const SWord32 s1943 = table5[s1942]; const SWord32 s1944 = s1941 ^ s1943; const SWord8 s1945 = (SWord8) (s637 >> 24); const SWord8 s1946 = table6[s1945]; const SWord8 s1947 = (SWord8) (s637 >> 16); const SWord8 s1948 = table7[s1947]; const SWord8 s1949 = (SWord8) (s637 >> 8); const SWord8 s1950 = table8[s1949]; const SWord8 s1951 = (SWord8) s637; const SWord8 s1952 = table9[s1951]; const SWord8 s1953 = s1950 ^ s1952; const SWord8 s1954 = s1948 ^ s1953; const SWord8 s1955 = s1946 ^ s1954; const SWord8 s1956 = table9[s1945]; const SWord8 s1957 = table6[s1947]; const SWord8 s1958 = table7[s1949]; const SWord8 s1959 = table8[s1951]; const SWord8 s1960 = s1958 ^ s1959; const SWord8 s1961 = s1957 ^ s1960; const SWord8 s1962 = s1956 ^ s1961; const SWord16 s1963 = (((SWord16) s1955) << 8) | ((SWord16) s1962); const SWord8 s1964 = table8[s1945]; const SWord8 s1965 = table9[s1947]; const SWord8 s1966 = table6[s1949]; const SWord8 s1967 = table7[s1951]; const SWord8 s1968 = s1966 ^ s1967; const SWord8 s1969 = s1965 ^ s1968; const SWord8 s1970 = s1964 ^ s1969; const SWord8 s1971 = table7[s1945]; const SWord8 s1972 = table8[s1947]; const SWord8 s1973 = table9[s1949]; const SWord8 s1974 = table6[s1951]; const SWord8 s1975 = s1973 ^ s1974; const SWord8 s1976 = s1972 ^ s1975; const SWord8 s1977 = s1971 ^ s1976; const SWord16 s1978 = (((SWord16) s1970) << 8) | ((SWord16) s1977); const SWord32 s1979 = (((SWord32) s1963) << 16) | ((SWord32) s1978); const SWord32 s1980 = s1944 ^ s1979; const SWord8 s1981 = (SWord8) (s1980 >> 8); const SWord32 s1982 = table4[s1981]; const SWord32 s1983 = s1933 ^ s1982; const SWord8 s1984 = (SWord8) (s1842 >> 24); const SWord32 s1985 = table1[s1984]; const SWord8 s1986 = (SWord8) (s1693 >> 16); const SWord32 s1987 = table3[s1986]; const SWord32 s1988 = s1985 ^ s1987; const SWord8 s1989 = (SWord8) (s1742 >> 8); const SWord32 s1990 = table4[s1989]; const SWord32 s1991 = s1988 ^ s1990; const SWord8 s1992 = (SWord8) s1792; const SWord32 s1993 = table5[s1992]; const SWord32 s1994 = s1991 ^ s1993; const SWord8 s1995 = (SWord8) (s636 >> 24); const SWord8 s1996 = table6[s1995]; const SWord8 s1997 = (SWord8) (s636 >> 16); const SWord8 s1998 = table7[s1997]; const SWord8 s1999 = (SWord8) (s636 >> 8); const SWord8 s2000 = table8[s1999]; const SWord8 s2001 = (SWord8) s636; const SWord8 s2002 = table9[s2001]; const SWord8 s2003 = s2000 ^ s2002; const SWord8 s2004 = s1998 ^ s2003; const SWord8 s2005 = s1996 ^ s2004; const SWord8 s2006 = table9[s1995]; const SWord8 s2007 = table6[s1997]; const SWord8 s2008 = table7[s1999]; const SWord8 s2009 = table8[s2001]; const SWord8 s2010 = s2008 ^ s2009; const SWord8 s2011 = s2007 ^ s2010; const SWord8 s2012 = s2006 ^ s2011; const SWord16 s2013 = (((SWord16) s2005) << 8) | ((SWord16) s2012); const SWord8 s2014 = table8[s1995]; const SWord8 s2015 = table9[s1997]; const SWord8 s2016 = table6[s1999]; const SWord8 s2017 = table7[s2001]; const SWord8 s2018 = s2016 ^ s2017; const SWord8 s2019 = s2015 ^ s2018; const SWord8 s2020 = s2014 ^ s2019; const SWord8 s2021 = table7[s1995]; const SWord8 s2022 = table8[s1997]; const SWord8 s2023 = table9[s1999]; const SWord8 s2024 = table6[s2001]; const SWord8 s2025 = s2023 ^ s2024; const SWord8 s2026 = s2022 ^ s2025; const SWord8 s2027 = s2021 ^ s2026; const SWord16 s2028 = (((SWord16) s2020) << 8) | ((SWord16) s2027); const SWord32 s2029 = (((SWord32) s2013) << 16) | ((SWord32) s2028); const SWord32 s2030 = s1994 ^ s2029; const SWord8 s2031 = (SWord8) s2030; const SWord32 s2032 = table5[s2031]; const SWord32 s2033 = s1983 ^ s2032; const SWord8 s2034 = (SWord8) (s618 >> 24); const SWord8 s2035 = table6[s2034]; const SWord8 s2036 = (SWord8) (s618 >> 16); const SWord8 s2037 = table7[s2036]; const SWord8 s2038 = (SWord8) (s618 >> 8); const SWord8 s2039 = table8[s2038]; const SWord8 s2040 = (SWord8) s618; const SWord8 s2041 = table9[s2040]; const SWord8 s2042 = s2039 ^ s2041; const SWord8 s2043 = s2037 ^ s2042; const SWord8 s2044 = s2035 ^ s2043; const SWord8 s2045 = table9[s2034]; const SWord8 s2046 = table6[s2036]; const SWord8 s2047 = table7[s2038]; const SWord8 s2048 = table8[s2040]; const SWord8 s2049 = s2047 ^ s2048; const SWord8 s2050 = s2046 ^ s2049; const SWord8 s2051 = s2045 ^ s2050; const SWord16 s2052 = (((SWord16) s2044) << 8) | ((SWord16) s2051); const SWord8 s2053 = table8[s2034]; const SWord8 s2054 = table9[s2036]; const SWord8 s2055 = table6[s2038]; const SWord8 s2056 = table7[s2040]; const SWord8 s2057 = s2055 ^ s2056; const SWord8 s2058 = s2054 ^ s2057; const SWord8 s2059 = s2053 ^ s2058; const SWord8 s2060 = table7[s2034]; const SWord8 s2061 = table8[s2036]; const SWord8 s2062 = table9[s2038]; const SWord8 s2063 = table6[s2040]; const SWord8 s2064 = s2062 ^ s2063; const SWord8 s2065 = s2061 ^ s2064; const SWord8 s2066 = s2060 ^ s2065; const SWord16 s2067 = (((SWord16) s2059) << 8) | ((SWord16) s2066); const SWord32 s2068 = (((SWord32) s2052) << 16) | ((SWord32) s2067); const SWord32 s2069 = s2033 ^ s2068; const SWord8 s2070 = (SWord8) (s2069 >> 24); const SWord32 s2071 = table1[s2070]; const SWord8 s2072 = (SWord8) (s1930 >> 24); const SWord32 s2073 = table1[s2072]; const SWord8 s2074 = (SWord8) (s1980 >> 16); const SWord32 s2075 = table3[s2074]; const SWord32 s2076 = s2073 ^ s2075; const SWord8 s2077 = (SWord8) (s2030 >> 8); const SWord32 s2078 = table4[s2077]; const SWord32 s2079 = s2076 ^ s2078; const SWord8 s2080 = (SWord8) s1881; const SWord32 s2081 = table5[s2080]; const SWord32 s2082 = s2079 ^ s2081; const SWord8 s2083 = (SWord8) (s621 >> 24); const SWord8 s2084 = table6[s2083]; const SWord8 s2085 = (SWord8) (s621 >> 16); const SWord8 s2086 = table7[s2085]; const SWord8 s2087 = (SWord8) (s621 >> 8); const SWord8 s2088 = table8[s2087]; const SWord8 s2089 = (SWord8) s621; const SWord8 s2090 = table9[s2089]; const SWord8 s2091 = s2088 ^ s2090; const SWord8 s2092 = s2086 ^ s2091; const SWord8 s2093 = s2084 ^ s2092; const SWord8 s2094 = table9[s2083]; const SWord8 s2095 = table6[s2085]; const SWord8 s2096 = table7[s2087]; const SWord8 s2097 = table8[s2089]; const SWord8 s2098 = s2096 ^ s2097; const SWord8 s2099 = s2095 ^ s2098; const SWord8 s2100 = s2094 ^ s2099; const SWord16 s2101 = (((SWord16) s2093) << 8) | ((SWord16) s2100); const SWord8 s2102 = table8[s2083]; const SWord8 s2103 = table9[s2085]; const SWord8 s2104 = table6[s2087]; const SWord8 s2105 = table7[s2089]; const SWord8 s2106 = s2104 ^ s2105; const SWord8 s2107 = s2103 ^ s2106; const SWord8 s2108 = s2102 ^ s2107; const SWord8 s2109 = table7[s2083]; const SWord8 s2110 = table8[s2085]; const SWord8 s2111 = table9[s2087]; const SWord8 s2112 = table6[s2089]; const SWord8 s2113 = s2111 ^ s2112; const SWord8 s2114 = s2110 ^ s2113; const SWord8 s2115 = s2109 ^ s2114; const SWord16 s2116 = (((SWord16) s2108) << 8) | ((SWord16) s2115); const SWord32 s2117 = (((SWord32) s2101) << 16) | ((SWord32) s2116); const SWord32 s2118 = s2082 ^ s2117; const SWord8 s2119 = (SWord8) (s2118 >> 16); const SWord32 s2120 = table3[s2119]; const SWord32 s2121 = s2071 ^ s2120; const SWord8 s2122 = (SWord8) (s1980 >> 24); const SWord32 s2123 = table1[s2122]; const SWord8 s2124 = (SWord8) (s2030 >> 16); const SWord32 s2125 = table3[s2124]; const SWord32 s2126 = s2123 ^ s2125; const SWord8 s2127 = (SWord8) (s1881 >> 8); const SWord32 s2128 = table4[s2127]; const SWord32 s2129 = s2126 ^ s2128; const SWord8 s2130 = (SWord8) s1930; const SWord32 s2131 = table5[s2130]; const SWord32 s2132 = s2129 ^ s2131; const SWord8 s2133 = (SWord8) (s620 >> 24); const SWord8 s2134 = table6[s2133]; const SWord8 s2135 = (SWord8) (s620 >> 16); const SWord8 s2136 = table7[s2135]; const SWord8 s2137 = (SWord8) (s620 >> 8); const SWord8 s2138 = table8[s2137]; const SWord8 s2139 = (SWord8) s620; const SWord8 s2140 = table9[s2139]; const SWord8 s2141 = s2138 ^ s2140; const SWord8 s2142 = s2136 ^ s2141; const SWord8 s2143 = s2134 ^ s2142; const SWord8 s2144 = table9[s2133]; const SWord8 s2145 = table6[s2135]; const SWord8 s2146 = table7[s2137]; const SWord8 s2147 = table8[s2139]; const SWord8 s2148 = s2146 ^ s2147; const SWord8 s2149 = s2145 ^ s2148; const SWord8 s2150 = s2144 ^ s2149; const SWord16 s2151 = (((SWord16) s2143) << 8) | ((SWord16) s2150); const SWord8 s2152 = table8[s2133]; const SWord8 s2153 = table9[s2135]; const SWord8 s2154 = table6[s2137]; const SWord8 s2155 = table7[s2139]; const SWord8 s2156 = s2154 ^ s2155; const SWord8 s2157 = s2153 ^ s2156; const SWord8 s2158 = s2152 ^ s2157; const SWord8 s2159 = table7[s2133]; const SWord8 s2160 = table8[s2135]; const SWord8 s2161 = table9[s2137]; const SWord8 s2162 = table6[s2139]; const SWord8 s2163 = s2161 ^ s2162; const SWord8 s2164 = s2160 ^ s2163; const SWord8 s2165 = s2159 ^ s2164; const SWord16 s2166 = (((SWord16) s2158) << 8) | ((SWord16) s2165); const SWord32 s2167 = (((SWord32) s2151) << 16) | ((SWord32) s2166); const SWord32 s2168 = s2132 ^ s2167; const SWord8 s2169 = (SWord8) (s2168 >> 8); const SWord32 s2170 = table4[s2169]; const SWord32 s2171 = s2121 ^ s2170; const SWord8 s2172 = (SWord8) (s2030 >> 24); const SWord32 s2173 = table1[s2172]; const SWord8 s2174 = (SWord8) (s1881 >> 16); const SWord32 s2175 = table3[s2174]; const SWord32 s2176 = s2173 ^ s2175; const SWord8 s2177 = (SWord8) (s1930 >> 8); const SWord32 s2178 = table4[s2177]; const SWord32 s2179 = s2176 ^ s2178; const SWord8 s2180 = (SWord8) s1980; const SWord32 s2181 = table5[s2180]; const SWord32 s2182 = s2179 ^ s2181; const SWord8 s2183 = (SWord8) (s619 >> 24); const SWord8 s2184 = table6[s2183]; const SWord8 s2185 = (SWord8) (s619 >> 16); const SWord8 s2186 = table7[s2185]; const SWord8 s2187 = (SWord8) (s619 >> 8); const SWord8 s2188 = table8[s2187]; const SWord8 s2189 = (SWord8) s619; const SWord8 s2190 = table9[s2189]; const SWord8 s2191 = s2188 ^ s2190; const SWord8 s2192 = s2186 ^ s2191; const SWord8 s2193 = s2184 ^ s2192; const SWord8 s2194 = table9[s2183]; const SWord8 s2195 = table6[s2185]; const SWord8 s2196 = table7[s2187]; const SWord8 s2197 = table8[s2189]; const SWord8 s2198 = s2196 ^ s2197; const SWord8 s2199 = s2195 ^ s2198; const SWord8 s2200 = s2194 ^ s2199; const SWord16 s2201 = (((SWord16) s2193) << 8) | ((SWord16) s2200); const SWord8 s2202 = table8[s2183]; const SWord8 s2203 = table9[s2185]; const SWord8 s2204 = table6[s2187]; const SWord8 s2205 = table7[s2189]; const SWord8 s2206 = s2204 ^ s2205; const SWord8 s2207 = s2203 ^ s2206; const SWord8 s2208 = s2202 ^ s2207; const SWord8 s2209 = table7[s2183]; const SWord8 s2210 = table8[s2185]; const SWord8 s2211 = table9[s2187]; const SWord8 s2212 = table6[s2189]; const SWord8 s2213 = s2211 ^ s2212; const SWord8 s2214 = s2210 ^ s2213; const SWord8 s2215 = s2209 ^ s2214; const SWord16 s2216 = (((SWord16) s2208) << 8) | ((SWord16) s2215); const SWord32 s2217 = (((SWord32) s2201) << 16) | ((SWord32) s2216); const SWord32 s2218 = s2182 ^ s2217; const SWord8 s2219 = (SWord8) s2218; const SWord32 s2220 = table5[s2219]; const SWord32 s2221 = s2171 ^ s2220; const SWord8 s2222 = (SWord8) (s601 >> 24); const SWord8 s2223 = table6[s2222]; const SWord8 s2224 = (SWord8) (s601 >> 16); const SWord8 s2225 = table7[s2224]; const SWord8 s2226 = (SWord8) (s601 >> 8); const SWord8 s2227 = table8[s2226]; const SWord8 s2228 = (SWord8) s601; const SWord8 s2229 = table9[s2228]; const SWord8 s2230 = s2227 ^ s2229; const SWord8 s2231 = s2225 ^ s2230; const SWord8 s2232 = s2223 ^ s2231; const SWord8 s2233 = table9[s2222]; const SWord8 s2234 = table6[s2224]; const SWord8 s2235 = table7[s2226]; const SWord8 s2236 = table8[s2228]; const SWord8 s2237 = s2235 ^ s2236; const SWord8 s2238 = s2234 ^ s2237; const SWord8 s2239 = s2233 ^ s2238; const SWord16 s2240 = (((SWord16) s2232) << 8) | ((SWord16) s2239); const SWord8 s2241 = table8[s2222]; const SWord8 s2242 = table9[s2224]; const SWord8 s2243 = table6[s2226]; const SWord8 s2244 = table7[s2228]; const SWord8 s2245 = s2243 ^ s2244; const SWord8 s2246 = s2242 ^ s2245; const SWord8 s2247 = s2241 ^ s2246; const SWord8 s2248 = table7[s2222]; const SWord8 s2249 = table8[s2224]; const SWord8 s2250 = table9[s2226]; const SWord8 s2251 = table6[s2228]; const SWord8 s2252 = s2250 ^ s2251; const SWord8 s2253 = s2249 ^ s2252; const SWord8 s2254 = s2248 ^ s2253; const SWord16 s2255 = (((SWord16) s2247) << 8) | ((SWord16) s2254); const SWord32 s2256 = (((SWord32) s2240) << 16) | ((SWord32) s2255); const SWord32 s2257 = s2221 ^ s2256; const SWord8 s2258 = (SWord8) (s2257 >> 24); const SWord32 s2259 = table1[s2258]; const SWord8 s2260 = (SWord8) (s2118 >> 24); const SWord32 s2261 = table1[s2260]; const SWord8 s2262 = (SWord8) (s2168 >> 16); const SWord32 s2263 = table3[s2262]; const SWord32 s2264 = s2261 ^ s2263; const SWord8 s2265 = (SWord8) (s2218 >> 8); const SWord32 s2266 = table4[s2265]; const SWord32 s2267 = s2264 ^ s2266; const SWord8 s2268 = (SWord8) s2069; const SWord32 s2269 = table5[s2268]; const SWord32 s2270 = s2267 ^ s2269; const SWord8 s2271 = (SWord8) (s604 >> 24); const SWord8 s2272 = table6[s2271]; const SWord8 s2273 = (SWord8) (s604 >> 16); const SWord8 s2274 = table7[s2273]; const SWord8 s2275 = (SWord8) (s604 >> 8); const SWord8 s2276 = table8[s2275]; const SWord8 s2277 = (SWord8) s604; const SWord8 s2278 = table9[s2277]; const SWord8 s2279 = s2276 ^ s2278; const SWord8 s2280 = s2274 ^ s2279; const SWord8 s2281 = s2272 ^ s2280; const SWord8 s2282 = table9[s2271]; const SWord8 s2283 = table6[s2273]; const SWord8 s2284 = table7[s2275]; const SWord8 s2285 = table8[s2277]; const SWord8 s2286 = s2284 ^ s2285; const SWord8 s2287 = s2283 ^ s2286; const SWord8 s2288 = s2282 ^ s2287; const SWord16 s2289 = (((SWord16) s2281) << 8) | ((SWord16) s2288); const SWord8 s2290 = table8[s2271]; const SWord8 s2291 = table9[s2273]; const SWord8 s2292 = table6[s2275]; const SWord8 s2293 = table7[s2277]; const SWord8 s2294 = s2292 ^ s2293; const SWord8 s2295 = s2291 ^ s2294; const SWord8 s2296 = s2290 ^ s2295; const SWord8 s2297 = table7[s2271]; const SWord8 s2298 = table8[s2273]; const SWord8 s2299 = table9[s2275]; const SWord8 s2300 = table6[s2277]; const SWord8 s2301 = s2299 ^ s2300; const SWord8 s2302 = s2298 ^ s2301; const SWord8 s2303 = s2297 ^ s2302; const SWord16 s2304 = (((SWord16) s2296) << 8) | ((SWord16) s2303); const SWord32 s2305 = (((SWord32) s2289) << 16) | ((SWord32) s2304); const SWord32 s2306 = s2270 ^ s2305; const SWord8 s2307 = (SWord8) (s2306 >> 16); const SWord32 s2308 = table3[s2307]; const SWord32 s2309 = s2259 ^ s2308; const SWord8 s2310 = (SWord8) (s2168 >> 24); const SWord32 s2311 = table1[s2310]; const SWord8 s2312 = (SWord8) (s2218 >> 16); const SWord32 s2313 = table3[s2312]; const SWord32 s2314 = s2311 ^ s2313; const SWord8 s2315 = (SWord8) (s2069 >> 8); const SWord32 s2316 = table4[s2315]; const SWord32 s2317 = s2314 ^ s2316; const SWord8 s2318 = (SWord8) s2118; const SWord32 s2319 = table5[s2318]; const SWord32 s2320 = s2317 ^ s2319; const SWord8 s2321 = (SWord8) (s603 >> 24); const SWord8 s2322 = table6[s2321]; const SWord8 s2323 = (SWord8) (s603 >> 16); const SWord8 s2324 = table7[s2323]; const SWord8 s2325 = (SWord8) (s603 >> 8); const SWord8 s2326 = table8[s2325]; const SWord8 s2327 = (SWord8) s603; const SWord8 s2328 = table9[s2327]; const SWord8 s2329 = s2326 ^ s2328; const SWord8 s2330 = s2324 ^ s2329; const SWord8 s2331 = s2322 ^ s2330; const SWord8 s2332 = table9[s2321]; const SWord8 s2333 = table6[s2323]; const SWord8 s2334 = table7[s2325]; const SWord8 s2335 = table8[s2327]; const SWord8 s2336 = s2334 ^ s2335; const SWord8 s2337 = s2333 ^ s2336; const SWord8 s2338 = s2332 ^ s2337; const SWord16 s2339 = (((SWord16) s2331) << 8) | ((SWord16) s2338); const SWord8 s2340 = table8[s2321]; const SWord8 s2341 = table9[s2323]; const SWord8 s2342 = table6[s2325]; const SWord8 s2343 = table7[s2327]; const SWord8 s2344 = s2342 ^ s2343; const SWord8 s2345 = s2341 ^ s2344; const SWord8 s2346 = s2340 ^ s2345; const SWord8 s2347 = table7[s2321]; const SWord8 s2348 = table8[s2323]; const SWord8 s2349 = table9[s2325]; const SWord8 s2350 = table6[s2327]; const SWord8 s2351 = s2349 ^ s2350; const SWord8 s2352 = s2348 ^ s2351; const SWord8 s2353 = s2347 ^ s2352; const SWord16 s2354 = (((SWord16) s2346) << 8) | ((SWord16) s2353); const SWord32 s2355 = (((SWord32) s2339) << 16) | ((SWord32) s2354); const SWord32 s2356 = s2320 ^ s2355; const SWord8 s2357 = (SWord8) (s2356 >> 8); const SWord32 s2358 = table4[s2357]; const SWord32 s2359 = s2309 ^ s2358; const SWord8 s2360 = (SWord8) (s2218 >> 24); const SWord32 s2361 = table1[s2360]; const SWord8 s2362 = (SWord8) (s2069 >> 16); const SWord32 s2363 = table3[s2362]; const SWord32 s2364 = s2361 ^ s2363; const SWord8 s2365 = (SWord8) (s2118 >> 8); const SWord32 s2366 = table4[s2365]; const SWord32 s2367 = s2364 ^ s2366; const SWord8 s2368 = (SWord8) s2168; const SWord32 s2369 = table5[s2368]; const SWord32 s2370 = s2367 ^ s2369; const SWord8 s2371 = (SWord8) (s602 >> 24); const SWord8 s2372 = table6[s2371]; const SWord8 s2373 = (SWord8) (s602 >> 16); const SWord8 s2374 = table7[s2373]; const SWord8 s2375 = (SWord8) (s602 >> 8); const SWord8 s2376 = table8[s2375]; const SWord8 s2377 = (SWord8) s602; const SWord8 s2378 = table9[s2377]; const SWord8 s2379 = s2376 ^ s2378; const SWord8 s2380 = s2374 ^ s2379; const SWord8 s2381 = s2372 ^ s2380; const SWord8 s2382 = table9[s2371]; const SWord8 s2383 = table6[s2373]; const SWord8 s2384 = table7[s2375]; const SWord8 s2385 = table8[s2377]; const SWord8 s2386 = s2384 ^ s2385; const SWord8 s2387 = s2383 ^ s2386; const SWord8 s2388 = s2382 ^ s2387; const SWord16 s2389 = (((SWord16) s2381) << 8) | ((SWord16) s2388); const SWord8 s2390 = table8[s2371]; const SWord8 s2391 = table9[s2373]; const SWord8 s2392 = table6[s2375]; const SWord8 s2393 = table7[s2377]; const SWord8 s2394 = s2392 ^ s2393; const SWord8 s2395 = s2391 ^ s2394; const SWord8 s2396 = s2390 ^ s2395; const SWord8 s2397 = table7[s2371]; const SWord8 s2398 = table8[s2373]; const SWord8 s2399 = table9[s2375]; const SWord8 s2400 = table6[s2377]; const SWord8 s2401 = s2399 ^ s2400; const SWord8 s2402 = s2398 ^ s2401; const SWord8 s2403 = s2397 ^ s2402; const SWord16 s2404 = (((SWord16) s2396) << 8) | ((SWord16) s2403); const SWord32 s2405 = (((SWord32) s2389) << 16) | ((SWord32) s2404); const SWord32 s2406 = s2370 ^ s2405; const SWord8 s2407 = (SWord8) s2406; const SWord32 s2408 = table5[s2407]; const SWord32 s2409 = s2359 ^ s2408; const SWord8 s2410 = (SWord8) (s584 >> 24); const SWord8 s2411 = table6[s2410]; const SWord8 s2412 = (SWord8) (s584 >> 16); const SWord8 s2413 = table7[s2412]; const SWord8 s2414 = (SWord8) (s584 >> 8); const SWord8 s2415 = table8[s2414]; const SWord8 s2416 = (SWord8) s584; const SWord8 s2417 = table9[s2416]; const SWord8 s2418 = s2415 ^ s2417; const SWord8 s2419 = s2413 ^ s2418; const SWord8 s2420 = s2411 ^ s2419; const SWord8 s2421 = table9[s2410]; const SWord8 s2422 = table6[s2412]; const SWord8 s2423 = table7[s2414]; const SWord8 s2424 = table8[s2416]; const SWord8 s2425 = s2423 ^ s2424; const SWord8 s2426 = s2422 ^ s2425; const SWord8 s2427 = s2421 ^ s2426; const SWord16 s2428 = (((SWord16) s2420) << 8) | ((SWord16) s2427); const SWord8 s2429 = table8[s2410]; const SWord8 s2430 = table9[s2412]; const SWord8 s2431 = table6[s2414]; const SWord8 s2432 = table7[s2416]; const SWord8 s2433 = s2431 ^ s2432; const SWord8 s2434 = s2430 ^ s2433; const SWord8 s2435 = s2429 ^ s2434; const SWord8 s2436 = table7[s2410]; const SWord8 s2437 = table8[s2412]; const SWord8 s2438 = table9[s2414]; const SWord8 s2439 = table6[s2416]; const SWord8 s2440 = s2438 ^ s2439; const SWord8 s2441 = s2437 ^ s2440; const SWord8 s2442 = s2436 ^ s2441; const SWord16 s2443 = (((SWord16) s2435) << 8) | ((SWord16) s2442); const SWord32 s2444 = (((SWord32) s2428) << 16) | ((SWord32) s2443); const SWord32 s2445 = s2409 ^ s2444; const SWord8 s2446 = (SWord8) (s2445 >> 24); const SWord32 s2447 = table1[s2446]; const SWord8 s2448 = (SWord8) (s2306 >> 24); const SWord32 s2449 = table1[s2448]; const SWord8 s2450 = (SWord8) (s2356 >> 16); const SWord32 s2451 = table3[s2450]; const SWord32 s2452 = s2449 ^ s2451; const SWord8 s2453 = (SWord8) (s2406 >> 8); const SWord32 s2454 = table4[s2453]; const SWord32 s2455 = s2452 ^ s2454; const SWord8 s2456 = (SWord8) s2257; const SWord32 s2457 = table5[s2456]; const SWord32 s2458 = s2455 ^ s2457; const SWord8 s2459 = (SWord8) (s587 >> 24); const SWord8 s2460 = table6[s2459]; const SWord8 s2461 = (SWord8) (s587 >> 16); const SWord8 s2462 = table7[s2461]; const SWord8 s2463 = (SWord8) (s587 >> 8); const SWord8 s2464 = table8[s2463]; const SWord8 s2465 = (SWord8) s587; const SWord8 s2466 = table9[s2465]; const SWord8 s2467 = s2464 ^ s2466; const SWord8 s2468 = s2462 ^ s2467; const SWord8 s2469 = s2460 ^ s2468; const SWord8 s2470 = table9[s2459]; const SWord8 s2471 = table6[s2461]; const SWord8 s2472 = table7[s2463]; const SWord8 s2473 = table8[s2465]; const SWord8 s2474 = s2472 ^ s2473; const SWord8 s2475 = s2471 ^ s2474; const SWord8 s2476 = s2470 ^ s2475; const SWord16 s2477 = (((SWord16) s2469) << 8) | ((SWord16) s2476); const SWord8 s2478 = table8[s2459]; const SWord8 s2479 = table9[s2461]; const SWord8 s2480 = table6[s2463]; const SWord8 s2481 = table7[s2465]; const SWord8 s2482 = s2480 ^ s2481; const SWord8 s2483 = s2479 ^ s2482; const SWord8 s2484 = s2478 ^ s2483; const SWord8 s2485 = table7[s2459]; const SWord8 s2486 = table8[s2461]; const SWord8 s2487 = table9[s2463]; const SWord8 s2488 = table6[s2465]; const SWord8 s2489 = s2487 ^ s2488; const SWord8 s2490 = s2486 ^ s2489; const SWord8 s2491 = s2485 ^ s2490; const SWord16 s2492 = (((SWord16) s2484) << 8) | ((SWord16) s2491); const SWord32 s2493 = (((SWord32) s2477) << 16) | ((SWord32) s2492); const SWord32 s2494 = s2458 ^ s2493; const SWord8 s2495 = (SWord8) (s2494 >> 16); const SWord32 s2496 = table3[s2495]; const SWord32 s2497 = s2447 ^ s2496; const SWord8 s2498 = (SWord8) (s2356 >> 24); const SWord32 s2499 = table1[s2498]; const SWord8 s2500 = (SWord8) (s2406 >> 16); const SWord32 s2501 = table3[s2500]; const SWord32 s2502 = s2499 ^ s2501; const SWord8 s2503 = (SWord8) (s2257 >> 8); const SWord32 s2504 = table4[s2503]; const SWord32 s2505 = s2502 ^ s2504; const SWord8 s2506 = (SWord8) s2306; const SWord32 s2507 = table5[s2506]; const SWord32 s2508 = s2505 ^ s2507; const SWord8 s2509 = (SWord8) (s586 >> 24); const SWord8 s2510 = table6[s2509]; const SWord8 s2511 = (SWord8) (s586 >> 16); const SWord8 s2512 = table7[s2511]; const SWord8 s2513 = (SWord8) (s586 >> 8); const SWord8 s2514 = table8[s2513]; const SWord8 s2515 = (SWord8) s586; const SWord8 s2516 = table9[s2515]; const SWord8 s2517 = s2514 ^ s2516; const SWord8 s2518 = s2512 ^ s2517; const SWord8 s2519 = s2510 ^ s2518; const SWord8 s2520 = table9[s2509]; const SWord8 s2521 = table6[s2511]; const SWord8 s2522 = table7[s2513]; const SWord8 s2523 = table8[s2515]; const SWord8 s2524 = s2522 ^ s2523; const SWord8 s2525 = s2521 ^ s2524; const SWord8 s2526 = s2520 ^ s2525; const SWord16 s2527 = (((SWord16) s2519) << 8) | ((SWord16) s2526); const SWord8 s2528 = table8[s2509]; const SWord8 s2529 = table9[s2511]; const SWord8 s2530 = table6[s2513]; const SWord8 s2531 = table7[s2515]; const SWord8 s2532 = s2530 ^ s2531; const SWord8 s2533 = s2529 ^ s2532; const SWord8 s2534 = s2528 ^ s2533; const SWord8 s2535 = table7[s2509]; const SWord8 s2536 = table8[s2511]; const SWord8 s2537 = table9[s2513]; const SWord8 s2538 = table6[s2515]; const SWord8 s2539 = s2537 ^ s2538; const SWord8 s2540 = s2536 ^ s2539; const SWord8 s2541 = s2535 ^ s2540; const SWord16 s2542 = (((SWord16) s2534) << 8) | ((SWord16) s2541); const SWord32 s2543 = (((SWord32) s2527) << 16) | ((SWord32) s2542); const SWord32 s2544 = s2508 ^ s2543; const SWord8 s2545 = (SWord8) (s2544 >> 8); const SWord32 s2546 = table4[s2545]; const SWord32 s2547 = s2497 ^ s2546; const SWord8 s2548 = (SWord8) (s2406 >> 24); const SWord32 s2549 = table1[s2548]; const SWord8 s2550 = (SWord8) (s2257 >> 16); const SWord32 s2551 = table3[s2550]; const SWord32 s2552 = s2549 ^ s2551; const SWord8 s2553 = (SWord8) (s2306 >> 8); const SWord32 s2554 = table4[s2553]; const SWord32 s2555 = s2552 ^ s2554; const SWord8 s2556 = (SWord8) s2356; const SWord32 s2557 = table5[s2556]; const SWord32 s2558 = s2555 ^ s2557; const SWord8 s2559 = (SWord8) (s585 >> 24); const SWord8 s2560 = table6[s2559]; const SWord8 s2561 = (SWord8) (s585 >> 16); const SWord8 s2562 = table7[s2561]; const SWord8 s2563 = (SWord8) (s585 >> 8); const SWord8 s2564 = table8[s2563]; const SWord8 s2565 = (SWord8) s585; const SWord8 s2566 = table9[s2565]; const SWord8 s2567 = s2564 ^ s2566; const SWord8 s2568 = s2562 ^ s2567; const SWord8 s2569 = s2560 ^ s2568; const SWord8 s2570 = table9[s2559]; const SWord8 s2571 = table6[s2561]; const SWord8 s2572 = table7[s2563]; const SWord8 s2573 = table8[s2565]; const SWord8 s2574 = s2572 ^ s2573; const SWord8 s2575 = s2571 ^ s2574; const SWord8 s2576 = s2570 ^ s2575; const SWord16 s2577 = (((SWord16) s2569) << 8) | ((SWord16) s2576); const SWord8 s2578 = table8[s2559]; const SWord8 s2579 = table9[s2561]; const SWord8 s2580 = table6[s2563]; const SWord8 s2581 = table7[s2565]; const SWord8 s2582 = s2580 ^ s2581; const SWord8 s2583 = s2579 ^ s2582; const SWord8 s2584 = s2578 ^ s2583; const SWord8 s2585 = table7[s2559]; const SWord8 s2586 = table8[s2561]; const SWord8 s2587 = table9[s2563]; const SWord8 s2588 = table6[s2565]; const SWord8 s2589 = s2587 ^ s2588; const SWord8 s2590 = s2586 ^ s2589; const SWord8 s2591 = s2585 ^ s2590; const SWord16 s2592 = (((SWord16) s2584) << 8) | ((SWord16) s2591); const SWord32 s2593 = (((SWord32) s2577) << 16) | ((SWord32) s2592); const SWord32 s2594 = s2558 ^ s2593; const SWord8 s2595 = (SWord8) s2594; const SWord32 s2596 = table5[s2595]; const SWord32 s2597 = s2547 ^ s2596; const SWord8 s2598 = (SWord8) (s567 >> 24); const SWord8 s2599 = table6[s2598]; const SWord8 s2600 = (SWord8) (s567 >> 16); const SWord8 s2601 = table7[s2600]; const SWord8 s2602 = (SWord8) (s567 >> 8); const SWord8 s2603 = table8[s2602]; const SWord8 s2604 = (SWord8) s567; const SWord8 s2605 = table9[s2604]; const SWord8 s2606 = s2603 ^ s2605; const SWord8 s2607 = s2601 ^ s2606; const SWord8 s2608 = s2599 ^ s2607; const SWord8 s2609 = table9[s2598]; const SWord8 s2610 = table6[s2600]; const SWord8 s2611 = table7[s2602]; const SWord8 s2612 = table8[s2604]; const SWord8 s2613 = s2611 ^ s2612; const SWord8 s2614 = s2610 ^ s2613; const SWord8 s2615 = s2609 ^ s2614; const SWord16 s2616 = (((SWord16) s2608) << 8) | ((SWord16) s2615); const SWord8 s2617 = table8[s2598]; const SWord8 s2618 = table9[s2600]; const SWord8 s2619 = table6[s2602]; const SWord8 s2620 = table7[s2604]; const SWord8 s2621 = s2619 ^ s2620; const SWord8 s2622 = s2618 ^ s2621; const SWord8 s2623 = s2617 ^ s2622; const SWord8 s2624 = table7[s2598]; const SWord8 s2625 = table8[s2600]; const SWord8 s2626 = table9[s2602]; const SWord8 s2627 = table6[s2604]; const SWord8 s2628 = s2626 ^ s2627; const SWord8 s2629 = s2625 ^ s2628; const SWord8 s2630 = s2624 ^ s2629; const SWord16 s2631 = (((SWord16) s2623) << 8) | ((SWord16) s2630); const SWord32 s2632 = (((SWord32) s2616) << 16) | ((SWord32) s2631); const SWord32 s2633 = s2597 ^ s2632; const SWord8 s2634 = (SWord8) (s2633 >> 24); const SWord32 s2635 = table1[s2634]; const SWord8 s2636 = (SWord8) (s2494 >> 24); const SWord32 s2637 = table1[s2636]; const SWord8 s2638 = (SWord8) (s2544 >> 16); const SWord32 s2639 = table3[s2638]; const SWord32 s2640 = s2637 ^ s2639; const SWord8 s2641 = (SWord8) (s2594 >> 8); const SWord32 s2642 = table4[s2641]; const SWord32 s2643 = s2640 ^ s2642; const SWord8 s2644 = (SWord8) s2445; const SWord32 s2645 = table5[s2644]; const SWord32 s2646 = s2643 ^ s2645; const SWord8 s2647 = (SWord8) (s570 >> 24); const SWord8 s2648 = table6[s2647]; const SWord8 s2649 = (SWord8) (s570 >> 16); const SWord8 s2650 = table7[s2649]; const SWord8 s2651 = (SWord8) (s570 >> 8); const SWord8 s2652 = table8[s2651]; const SWord8 s2653 = (SWord8) s570; const SWord8 s2654 = table9[s2653]; const SWord8 s2655 = s2652 ^ s2654; const SWord8 s2656 = s2650 ^ s2655; const SWord8 s2657 = s2648 ^ s2656; const SWord8 s2658 = table9[s2647]; const SWord8 s2659 = table6[s2649]; const SWord8 s2660 = table7[s2651]; const SWord8 s2661 = table8[s2653]; const SWord8 s2662 = s2660 ^ s2661; const SWord8 s2663 = s2659 ^ s2662; const SWord8 s2664 = s2658 ^ s2663; const SWord16 s2665 = (((SWord16) s2657) << 8) | ((SWord16) s2664); const SWord8 s2666 = table8[s2647]; const SWord8 s2667 = table9[s2649]; const SWord8 s2668 = table6[s2651]; const SWord8 s2669 = table7[s2653]; const SWord8 s2670 = s2668 ^ s2669; const SWord8 s2671 = s2667 ^ s2670; const SWord8 s2672 = s2666 ^ s2671; const SWord8 s2673 = table7[s2647]; const SWord8 s2674 = table8[s2649]; const SWord8 s2675 = table9[s2651]; const SWord8 s2676 = table6[s2653]; const SWord8 s2677 = s2675 ^ s2676; const SWord8 s2678 = s2674 ^ s2677; const SWord8 s2679 = s2673 ^ s2678; const SWord16 s2680 = (((SWord16) s2672) << 8) | ((SWord16) s2679); const SWord32 s2681 = (((SWord32) s2665) << 16) | ((SWord32) s2680); const SWord32 s2682 = s2646 ^ s2681; const SWord8 s2683 = (SWord8) (s2682 >> 16); const SWord32 s2684 = table3[s2683]; const SWord32 s2685 = s2635 ^ s2684; const SWord8 s2686 = (SWord8) (s2544 >> 24); const SWord32 s2687 = table1[s2686]; const SWord8 s2688 = (SWord8) (s2594 >> 16); const SWord32 s2689 = table3[s2688]; const SWord32 s2690 = s2687 ^ s2689; const SWord8 s2691 = (SWord8) (s2445 >> 8); const SWord32 s2692 = table4[s2691]; const SWord32 s2693 = s2690 ^ s2692; const SWord8 s2694 = (SWord8) s2494; const SWord32 s2695 = table5[s2694]; const SWord32 s2696 = s2693 ^ s2695; const SWord8 s2697 = (SWord8) (s569 >> 24); const SWord8 s2698 = table6[s2697]; const SWord8 s2699 = (SWord8) (s569 >> 16); const SWord8 s2700 = table7[s2699]; const SWord8 s2701 = (SWord8) (s569 >> 8); const SWord8 s2702 = table8[s2701]; const SWord8 s2703 = (SWord8) s569; const SWord8 s2704 = table9[s2703]; const SWord8 s2705 = s2702 ^ s2704; const SWord8 s2706 = s2700 ^ s2705; const SWord8 s2707 = s2698 ^ s2706; const SWord8 s2708 = table9[s2697]; const SWord8 s2709 = table6[s2699]; const SWord8 s2710 = table7[s2701]; const SWord8 s2711 = table8[s2703]; const SWord8 s2712 = s2710 ^ s2711; const SWord8 s2713 = s2709 ^ s2712; const SWord8 s2714 = s2708 ^ s2713; const SWord16 s2715 = (((SWord16) s2707) << 8) | ((SWord16) s2714); const SWord8 s2716 = table8[s2697]; const SWord8 s2717 = table9[s2699]; const SWord8 s2718 = table6[s2701]; const SWord8 s2719 = table7[s2703]; const SWord8 s2720 = s2718 ^ s2719; const SWord8 s2721 = s2717 ^ s2720; const SWord8 s2722 = s2716 ^ s2721; const SWord8 s2723 = table7[s2697]; const SWord8 s2724 = table8[s2699]; const SWord8 s2725 = table9[s2701]; const SWord8 s2726 = table6[s2703]; const SWord8 s2727 = s2725 ^ s2726; const SWord8 s2728 = s2724 ^ s2727; const SWord8 s2729 = s2723 ^ s2728; const SWord16 s2730 = (((SWord16) s2722) << 8) | ((SWord16) s2729); const SWord32 s2731 = (((SWord32) s2715) << 16) | ((SWord32) s2730); const SWord32 s2732 = s2696 ^ s2731; const SWord8 s2733 = (SWord8) (s2732 >> 8); const SWord32 s2734 = table4[s2733]; const SWord32 s2735 = s2685 ^ s2734; const SWord8 s2736 = (SWord8) (s2594 >> 24); const SWord32 s2737 = table1[s2736]; const SWord8 s2738 = (SWord8) (s2445 >> 16); const SWord32 s2739 = table3[s2738]; const SWord32 s2740 = s2737 ^ s2739; const SWord8 s2741 = (SWord8) (s2494 >> 8); const SWord32 s2742 = table4[s2741]; const SWord32 s2743 = s2740 ^ s2742; const SWord8 s2744 = (SWord8) s2544; const SWord32 s2745 = table5[s2744]; const SWord32 s2746 = s2743 ^ s2745; const SWord8 s2747 = (SWord8) (s568 >> 24); const SWord8 s2748 = table6[s2747]; const SWord8 s2749 = (SWord8) (s568 >> 16); const SWord8 s2750 = table7[s2749]; const SWord8 s2751 = (SWord8) (s568 >> 8); const SWord8 s2752 = table8[s2751]; const SWord8 s2753 = (SWord8) s568; const SWord8 s2754 = table9[s2753]; const SWord8 s2755 = s2752 ^ s2754; const SWord8 s2756 = s2750 ^ s2755; const SWord8 s2757 = s2748 ^ s2756; const SWord8 s2758 = table9[s2747]; const SWord8 s2759 = table6[s2749]; const SWord8 s2760 = table7[s2751]; const SWord8 s2761 = table8[s2753]; const SWord8 s2762 = s2760 ^ s2761; const SWord8 s2763 = s2759 ^ s2762; const SWord8 s2764 = s2758 ^ s2763; const SWord16 s2765 = (((SWord16) s2757) << 8) | ((SWord16) s2764); const SWord8 s2766 = table8[s2747]; const SWord8 s2767 = table9[s2749]; const SWord8 s2768 = table6[s2751]; const SWord8 s2769 = table7[s2753]; const SWord8 s2770 = s2768 ^ s2769; const SWord8 s2771 = s2767 ^ s2770; const SWord8 s2772 = s2766 ^ s2771; const SWord8 s2773 = table7[s2747]; const SWord8 s2774 = table8[s2749]; const SWord8 s2775 = table9[s2751]; const SWord8 s2776 = table6[s2753]; const SWord8 s2777 = s2775 ^ s2776; const SWord8 s2778 = s2774 ^ s2777; const SWord8 s2779 = s2773 ^ s2778; const SWord16 s2780 = (((SWord16) s2772) << 8) | ((SWord16) s2779); const SWord32 s2781 = (((SWord32) s2765) << 16) | ((SWord32) s2780); const SWord32 s2782 = s2746 ^ s2781; const SWord8 s2783 = (SWord8) s2782; const SWord32 s2784 = table5[s2783]; const SWord32 s2785 = s2735 ^ s2784; const SWord8 s2786 = (SWord8) (s550 >> 24); const SWord8 s2787 = table6[s2786]; const SWord8 s2788 = (SWord8) (s550 >> 16); const SWord8 s2789 = table7[s2788]; const SWord8 s2790 = (SWord8) (s550 >> 8); const SWord8 s2791 = table8[s2790]; const SWord8 s2792 = (SWord8) s550; const SWord8 s2793 = table9[s2792]; const SWord8 s2794 = s2791 ^ s2793; const SWord8 s2795 = s2789 ^ s2794; const SWord8 s2796 = s2787 ^ s2795; const SWord8 s2797 = table9[s2786]; const SWord8 s2798 = table6[s2788]; const SWord8 s2799 = table7[s2790]; const SWord8 s2800 = table8[s2792]; const SWord8 s2801 = s2799 ^ s2800; const SWord8 s2802 = s2798 ^ s2801; const SWord8 s2803 = s2797 ^ s2802; const SWord16 s2804 = (((SWord16) s2796) << 8) | ((SWord16) s2803); const SWord8 s2805 = table8[s2786]; const SWord8 s2806 = table9[s2788]; const SWord8 s2807 = table6[s2790]; const SWord8 s2808 = table7[s2792]; const SWord8 s2809 = s2807 ^ s2808; const SWord8 s2810 = s2806 ^ s2809; const SWord8 s2811 = s2805 ^ s2810; const SWord8 s2812 = table7[s2786]; const SWord8 s2813 = table8[s2788]; const SWord8 s2814 = table9[s2790]; const SWord8 s2815 = table6[s2792]; const SWord8 s2816 = s2814 ^ s2815; const SWord8 s2817 = s2813 ^ s2816; const SWord8 s2818 = s2812 ^ s2817; const SWord16 s2819 = (((SWord16) s2811) << 8) | ((SWord16) s2818); const SWord32 s2820 = (((SWord32) s2804) << 16) | ((SWord32) s2819); const SWord32 s2821 = s2785 ^ s2820; const SWord8 s2822 = (SWord8) (s2821 >> 24); const SWord32 s2823 = table1[s2822]; const SWord8 s2824 = (SWord8) (s2682 >> 24); const SWord32 s2825 = table1[s2824]; const SWord8 s2826 = (SWord8) (s2732 >> 16); const SWord32 s2827 = table3[s2826]; const SWord32 s2828 = s2825 ^ s2827; const SWord8 s2829 = (SWord8) (s2782 >> 8); const SWord32 s2830 = table4[s2829]; const SWord32 s2831 = s2828 ^ s2830; const SWord8 s2832 = (SWord8) s2633; const SWord32 s2833 = table5[s2832]; const SWord32 s2834 = s2831 ^ s2833; const SWord8 s2835 = (SWord8) (s553 >> 24); const SWord8 s2836 = table6[s2835]; const SWord8 s2837 = (SWord8) (s553 >> 16); const SWord8 s2838 = table7[s2837]; const SWord8 s2839 = (SWord8) (s553 >> 8); const SWord8 s2840 = table8[s2839]; const SWord8 s2841 = (SWord8) s553; const SWord8 s2842 = table9[s2841]; const SWord8 s2843 = s2840 ^ s2842; const SWord8 s2844 = s2838 ^ s2843; const SWord8 s2845 = s2836 ^ s2844; const SWord8 s2846 = table9[s2835]; const SWord8 s2847 = table6[s2837]; const SWord8 s2848 = table7[s2839]; const SWord8 s2849 = table8[s2841]; const SWord8 s2850 = s2848 ^ s2849; const SWord8 s2851 = s2847 ^ s2850; const SWord8 s2852 = s2846 ^ s2851; const SWord16 s2853 = (((SWord16) s2845) << 8) | ((SWord16) s2852); const SWord8 s2854 = table8[s2835]; const SWord8 s2855 = table9[s2837]; const SWord8 s2856 = table6[s2839]; const SWord8 s2857 = table7[s2841]; const SWord8 s2858 = s2856 ^ s2857; const SWord8 s2859 = s2855 ^ s2858; const SWord8 s2860 = s2854 ^ s2859; const SWord8 s2861 = table7[s2835]; const SWord8 s2862 = table8[s2837]; const SWord8 s2863 = table9[s2839]; const SWord8 s2864 = table6[s2841]; const SWord8 s2865 = s2863 ^ s2864; const SWord8 s2866 = s2862 ^ s2865; const SWord8 s2867 = s2861 ^ s2866; const SWord16 s2868 = (((SWord16) s2860) << 8) | ((SWord16) s2867); const SWord32 s2869 = (((SWord32) s2853) << 16) | ((SWord32) s2868); const SWord32 s2870 = s2834 ^ s2869; const SWord8 s2871 = (SWord8) (s2870 >> 16); const SWord32 s2872 = table3[s2871]; const SWord32 s2873 = s2823 ^ s2872; const SWord8 s2874 = (SWord8) (s2732 >> 24); const SWord32 s2875 = table1[s2874]; const SWord8 s2876 = (SWord8) (s2782 >> 16); const SWord32 s2877 = table3[s2876]; const SWord32 s2878 = s2875 ^ s2877; const SWord8 s2879 = (SWord8) (s2633 >> 8); const SWord32 s2880 = table4[s2879]; const SWord32 s2881 = s2878 ^ s2880; const SWord8 s2882 = (SWord8) s2682; const SWord32 s2883 = table5[s2882]; const SWord32 s2884 = s2881 ^ s2883; const SWord8 s2885 = (SWord8) (s552 >> 24); const SWord8 s2886 = table6[s2885]; const SWord8 s2887 = (SWord8) (s552 >> 16); const SWord8 s2888 = table7[s2887]; const SWord8 s2889 = (SWord8) (s552 >> 8); const SWord8 s2890 = table8[s2889]; const SWord8 s2891 = (SWord8) s552; const SWord8 s2892 = table9[s2891]; const SWord8 s2893 = s2890 ^ s2892; const SWord8 s2894 = s2888 ^ s2893; const SWord8 s2895 = s2886 ^ s2894; const SWord8 s2896 = table9[s2885]; const SWord8 s2897 = table6[s2887]; const SWord8 s2898 = table7[s2889]; const SWord8 s2899 = table8[s2891]; const SWord8 s2900 = s2898 ^ s2899; const SWord8 s2901 = s2897 ^ s2900; const SWord8 s2902 = s2896 ^ s2901; const SWord16 s2903 = (((SWord16) s2895) << 8) | ((SWord16) s2902); const SWord8 s2904 = table8[s2885]; const SWord8 s2905 = table9[s2887]; const SWord8 s2906 = table6[s2889]; const SWord8 s2907 = table7[s2891]; const SWord8 s2908 = s2906 ^ s2907; const SWord8 s2909 = s2905 ^ s2908; const SWord8 s2910 = s2904 ^ s2909; const SWord8 s2911 = table7[s2885]; const SWord8 s2912 = table8[s2887]; const SWord8 s2913 = table9[s2889]; const SWord8 s2914 = table6[s2891]; const SWord8 s2915 = s2913 ^ s2914; const SWord8 s2916 = s2912 ^ s2915; const SWord8 s2917 = s2911 ^ s2916; const SWord16 s2918 = (((SWord16) s2910) << 8) | ((SWord16) s2917); const SWord32 s2919 = (((SWord32) s2903) << 16) | ((SWord32) s2918); const SWord32 s2920 = s2884 ^ s2919; const SWord8 s2921 = (SWord8) (s2920 >> 8); const SWord32 s2922 = table4[s2921]; const SWord32 s2923 = s2873 ^ s2922; const SWord8 s2924 = (SWord8) (s2782 >> 24); const SWord32 s2925 = table1[s2924]; const SWord8 s2926 = (SWord8) (s2633 >> 16); const SWord32 s2927 = table3[s2926]; const SWord32 s2928 = s2925 ^ s2927; const SWord8 s2929 = (SWord8) (s2682 >> 8); const SWord32 s2930 = table4[s2929]; const SWord32 s2931 = s2928 ^ s2930; const SWord8 s2932 = (SWord8) s2732; const SWord32 s2933 = table5[s2932]; const SWord32 s2934 = s2931 ^ s2933; const SWord8 s2935 = (SWord8) (s551 >> 24); const SWord8 s2936 = table6[s2935]; const SWord8 s2937 = (SWord8) (s551 >> 16); const SWord8 s2938 = table7[s2937]; const SWord8 s2939 = (SWord8) (s551 >> 8); const SWord8 s2940 = table8[s2939]; const SWord8 s2941 = (SWord8) s551; const SWord8 s2942 = table9[s2941]; const SWord8 s2943 = s2940 ^ s2942; const SWord8 s2944 = s2938 ^ s2943; const SWord8 s2945 = s2936 ^ s2944; const SWord8 s2946 = table9[s2935]; const SWord8 s2947 = table6[s2937]; const SWord8 s2948 = table7[s2939]; const SWord8 s2949 = table8[s2941]; const SWord8 s2950 = s2948 ^ s2949; const SWord8 s2951 = s2947 ^ s2950; const SWord8 s2952 = s2946 ^ s2951; const SWord16 s2953 = (((SWord16) s2945) << 8) | ((SWord16) s2952); const SWord8 s2954 = table8[s2935]; const SWord8 s2955 = table9[s2937]; const SWord8 s2956 = table6[s2939]; const SWord8 s2957 = table7[s2941]; const SWord8 s2958 = s2956 ^ s2957; const SWord8 s2959 = s2955 ^ s2958; const SWord8 s2960 = s2954 ^ s2959; const SWord8 s2961 = table7[s2935]; const SWord8 s2962 = table8[s2937]; const SWord8 s2963 = table9[s2939]; const SWord8 s2964 = table6[s2941]; const SWord8 s2965 = s2963 ^ s2964; const SWord8 s2966 = s2962 ^ s2965; const SWord8 s2967 = s2961 ^ s2966; const SWord16 s2968 = (((SWord16) s2960) << 8) | ((SWord16) s2967); const SWord32 s2969 = (((SWord32) s2953) << 16) | ((SWord32) s2968); const SWord32 s2970 = s2934 ^ s2969; const SWord8 s2971 = (SWord8) s2970; const SWord32 s2972 = table5[s2971]; const SWord32 s2973 = s2923 ^ s2972; const SWord8 s2974 = (SWord8) (s533 >> 24); const SWord8 s2975 = table6[s2974]; const SWord8 s2976 = (SWord8) (s533 >> 16); const SWord8 s2977 = table7[s2976]; const SWord8 s2978 = (SWord8) (s533 >> 8); const SWord8 s2979 = table8[s2978]; const SWord8 s2980 = (SWord8) s533; const SWord8 s2981 = table9[s2980]; const SWord8 s2982 = s2979 ^ s2981; const SWord8 s2983 = s2977 ^ s2982; const SWord8 s2984 = s2975 ^ s2983; const SWord8 s2985 = table9[s2974]; const SWord8 s2986 = table6[s2976]; const SWord8 s2987 = table7[s2978]; const SWord8 s2988 = table8[s2980]; const SWord8 s2989 = s2987 ^ s2988; const SWord8 s2990 = s2986 ^ s2989; const SWord8 s2991 = s2985 ^ s2990; const SWord16 s2992 = (((SWord16) s2984) << 8) | ((SWord16) s2991); const SWord8 s2993 = table8[s2974]; const SWord8 s2994 = table9[s2976]; const SWord8 s2995 = table6[s2978]; const SWord8 s2996 = table7[s2980]; const SWord8 s2997 = s2995 ^ s2996; const SWord8 s2998 = s2994 ^ s2997; const SWord8 s2999 = s2993 ^ s2998; const SWord8 s3000 = table7[s2974]; const SWord8 s3001 = table8[s2976]; const SWord8 s3002 = table9[s2978]; const SWord8 s3003 = table6[s2980]; const SWord8 s3004 = s3002 ^ s3003; const SWord8 s3005 = s3001 ^ s3004; const SWord8 s3006 = s3000 ^ s3005; const SWord16 s3007 = (((SWord16) s2999) << 8) | ((SWord16) s3006); const SWord32 s3008 = (((SWord32) s2992) << 16) | ((SWord32) s3007); const SWord32 s3009 = s2973 ^ s3008; const SWord8 s3010 = (SWord8) (s3009 >> 24); const SWord8 s3011 = table0[s3010]; const SWord8 s3012 = (SWord8) (s2870 >> 24); const SWord32 s3013 = table1[s3012]; const SWord8 s3014 = (SWord8) (s2920 >> 16); const SWord32 s3015 = table3[s3014]; const SWord32 s3016 = s3013 ^ s3015; const SWord8 s3017 = (SWord8) (s2970 >> 8); const SWord32 s3018 = table4[s3017]; const SWord32 s3019 = s3016 ^ s3018; const SWord8 s3020 = (SWord8) s2821; const SWord32 s3021 = table5[s3020]; const SWord32 s3022 = s3019 ^ s3021; const SWord8 s3023 = (SWord8) (s536 >> 24); const SWord8 s3024 = table6[s3023]; const SWord8 s3025 = (SWord8) (s536 >> 16); const SWord8 s3026 = table7[s3025]; const SWord8 s3027 = (SWord8) (s536 >> 8); const SWord8 s3028 = table8[s3027]; const SWord8 s3029 = (SWord8) s536; const SWord8 s3030 = table9[s3029]; const SWord8 s3031 = s3028 ^ s3030; const SWord8 s3032 = s3026 ^ s3031; const SWord8 s3033 = s3024 ^ s3032; const SWord8 s3034 = table9[s3023]; const SWord8 s3035 = table6[s3025]; const SWord8 s3036 = table7[s3027]; const SWord8 s3037 = table8[s3029]; const SWord8 s3038 = s3036 ^ s3037; const SWord8 s3039 = s3035 ^ s3038; const SWord8 s3040 = s3034 ^ s3039; const SWord16 s3041 = (((SWord16) s3033) << 8) | ((SWord16) s3040); const SWord8 s3042 = table8[s3023]; const SWord8 s3043 = table9[s3025]; const SWord8 s3044 = table6[s3027]; const SWord8 s3045 = table7[s3029]; const SWord8 s3046 = s3044 ^ s3045; const SWord8 s3047 = s3043 ^ s3046; const SWord8 s3048 = s3042 ^ s3047; const SWord8 s3049 = table7[s3023]; const SWord8 s3050 = table8[s3025]; const SWord8 s3051 = table9[s3027]; const SWord8 s3052 = table6[s3029]; const SWord8 s3053 = s3051 ^ s3052; const SWord8 s3054 = s3050 ^ s3053; const SWord8 s3055 = s3049 ^ s3054; const SWord16 s3056 = (((SWord16) s3048) << 8) | ((SWord16) s3055); const SWord32 s3057 = (((SWord32) s3041) << 16) | ((SWord32) s3056); const SWord32 s3058 = s3022 ^ s3057; const SWord8 s3059 = (SWord8) (s3058 >> 16); const SWord8 s3060 = table0[s3059]; const SWord16 s3061 = (((SWord16) s3011) << 8) | ((SWord16) s3060); const SWord8 s3062 = (SWord8) (s2920 >> 24); const SWord32 s3063 = table1[s3062]; const SWord8 s3064 = (SWord8) (s2970 >> 16); const SWord32 s3065 = table3[s3064]; const SWord32 s3066 = s3063 ^ s3065; const SWord8 s3067 = (SWord8) (s2821 >> 8); const SWord32 s3068 = table4[s3067]; const SWord32 s3069 = s3066 ^ s3068; const SWord8 s3070 = (SWord8) s2870; const SWord32 s3071 = table5[s3070]; const SWord32 s3072 = s3069 ^ s3071; const SWord8 s3073 = (SWord8) (s535 >> 24); const SWord8 s3074 = table6[s3073]; const SWord8 s3075 = (SWord8) (s535 >> 16); const SWord8 s3076 = table7[s3075]; const SWord8 s3077 = (SWord8) (s535 >> 8); const SWord8 s3078 = table8[s3077]; const SWord8 s3079 = (SWord8) s535; const SWord8 s3080 = table9[s3079]; const SWord8 s3081 = s3078 ^ s3080; const SWord8 s3082 = s3076 ^ s3081; const SWord8 s3083 = s3074 ^ s3082; const SWord8 s3084 = table9[s3073]; const SWord8 s3085 = table6[s3075]; const SWord8 s3086 = table7[s3077]; const SWord8 s3087 = table8[s3079]; const SWord8 s3088 = s3086 ^ s3087; const SWord8 s3089 = s3085 ^ s3088; const SWord8 s3090 = s3084 ^ s3089; const SWord16 s3091 = (((SWord16) s3083) << 8) | ((SWord16) s3090); const SWord8 s3092 = table8[s3073]; const SWord8 s3093 = table9[s3075]; const SWord8 s3094 = table6[s3077]; const SWord8 s3095 = table7[s3079]; const SWord8 s3096 = s3094 ^ s3095; const SWord8 s3097 = s3093 ^ s3096; const SWord8 s3098 = s3092 ^ s3097; const SWord8 s3099 = table7[s3073]; const SWord8 s3100 = table8[s3075]; const SWord8 s3101 = table9[s3077]; const SWord8 s3102 = table6[s3079]; const SWord8 s3103 = s3101 ^ s3102; const SWord8 s3104 = s3100 ^ s3103; const SWord8 s3105 = s3099 ^ s3104; const SWord16 s3106 = (((SWord16) s3098) << 8) | ((SWord16) s3105); const SWord32 s3107 = (((SWord32) s3091) << 16) | ((SWord32) s3106); const SWord32 s3108 = s3072 ^ s3107; const SWord8 s3109 = (SWord8) (s3108 >> 8); const SWord8 s3110 = table0[s3109]; const SWord8 s3111 = (SWord8) (s2970 >> 24); const SWord32 s3112 = table1[s3111]; const SWord8 s3113 = (SWord8) (s2821 >> 16); const SWord32 s3114 = table3[s3113]; const SWord32 s3115 = s3112 ^ s3114; const SWord8 s3116 = (SWord8) (s2870 >> 8); const SWord32 s3117 = table4[s3116]; const SWord32 s3118 = s3115 ^ s3117; const SWord8 s3119 = (SWord8) s2920; const SWord32 s3120 = table5[s3119]; const SWord32 s3121 = s3118 ^ s3120; const SWord8 s3122 = (SWord8) (s534 >> 24); const SWord8 s3123 = table6[s3122]; const SWord8 s3124 = (SWord8) (s534 >> 16); const SWord8 s3125 = table7[s3124]; const SWord8 s3126 = (SWord8) (s534 >> 8); const SWord8 s3127 = table8[s3126]; const SWord8 s3128 = (SWord8) s534; const SWord8 s3129 = table9[s3128]; const SWord8 s3130 = s3127 ^ s3129; const SWord8 s3131 = s3125 ^ s3130; const SWord8 s3132 = s3123 ^ s3131; const SWord8 s3133 = table9[s3122]; const SWord8 s3134 = table6[s3124]; const SWord8 s3135 = table7[s3126]; const SWord8 s3136 = table8[s3128]; const SWord8 s3137 = s3135 ^ s3136; const SWord8 s3138 = s3134 ^ s3137; const SWord8 s3139 = s3133 ^ s3138; const SWord16 s3140 = (((SWord16) s3132) << 8) | ((SWord16) s3139); const SWord8 s3141 = table8[s3122]; const SWord8 s3142 = table9[s3124]; const SWord8 s3143 = table6[s3126]; const SWord8 s3144 = table7[s3128]; const SWord8 s3145 = s3143 ^ s3144; const SWord8 s3146 = s3142 ^ s3145; const SWord8 s3147 = s3141 ^ s3146; const SWord8 s3148 = table7[s3122]; const SWord8 s3149 = table8[s3124]; const SWord8 s3150 = table9[s3126]; const SWord8 s3151 = table6[s3128]; const SWord8 s3152 = s3150 ^ s3151; const SWord8 s3153 = s3149 ^ s3152; const SWord8 s3154 = s3148 ^ s3153; const SWord16 s3155 = (((SWord16) s3147) << 8) | ((SWord16) s3154); const SWord32 s3156 = (((SWord32) s3140) << 16) | ((SWord32) s3155); const SWord32 s3157 = s3121 ^ s3156; const SWord8 s3158 = (SWord8) s3157; const SWord8 s3159 = table0[s3158]; const SWord16 s3160 = (((SWord16) s3110) << 8) | ((SWord16) s3159); const SWord32 s3161 = (((SWord32) s3061) << 16) | ((SWord32) s3160); const SWord32 s3162 = s4 ^ s3161; const SWord8 s3163 = (SWord8) (s3157 >> 24); const SWord8 s3164 = table0[s3163]; const SWord8 s3165 = (SWord8) (s3009 >> 16); const SWord8 s3166 = table0[s3165]; const SWord16 s3167 = (((SWord16) s3164) << 8) | ((SWord16) s3166); const SWord8 s3168 = (SWord8) (s3058 >> 8); const SWord8 s3169 = table0[s3168]; const SWord8 s3170 = (SWord8) s3108; const SWord8 s3171 = table0[s3170]; const SWord16 s3172 = (((SWord16) s3169) << 8) | ((SWord16) s3171); const SWord32 s3173 = (((SWord32) s3167) << 16) | ((SWord32) s3172); const SWord32 s3174 = s5 ^ s3173; const SWord8 s3175 = (SWord8) (s3108 >> 24); const SWord8 s3176 = table0[s3175]; const SWord8 s3177 = (SWord8) (s3157 >> 16); const SWord8 s3178 = table0[s3177]; const SWord16 s3179 = (((SWord16) s3176) << 8) | ((SWord16) s3178); const SWord8 s3180 = (SWord8) (s3009 >> 8); const SWord8 s3181 = table0[s3180]; const SWord8 s3182 = (SWord8) s3058; const SWord8 s3183 = table0[s3182]; const SWord16 s3184 = (((SWord16) s3181) << 8) | ((SWord16) s3183); const SWord32 s3185 = (((SWord32) s3179) << 16) | ((SWord32) s3184); const SWord32 s3186 = s6 ^ s3185; const SWord8 s3187 = (SWord8) (s3058 >> 24); const SWord8 s3188 = table0[s3187]; const SWord8 s3189 = (SWord8) (s3108 >> 16); const SWord8 s3190 = table0[s3189]; const SWord16 s3191 = (((SWord16) s3188) << 8) | ((SWord16) s3190); const SWord8 s3192 = (SWord8) (s3157 >> 8); const SWord8 s3193 = table0[s3192]; const SWord8 s3194 = (SWord8) s3009; const SWord8 s3195 = table0[s3194]; const SWord16 s3196 = (((SWord16) s3193) << 8) | ((SWord16) s3195); const SWord32 s3197 = (((SWord32) s3191) << 16) | ((SWord32) s3196); const SWord32 s3198 = s7 ^ s3197; ct[0] = s3162; ct[1] = s3174; ct[2] = s3186; ct[3] = s3198; } == END: "aes128Dec.c" ==================