From d3c8a276e1fab891c520bd7e07529e3416a05bee Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Wed, 20 Oct 2021 00:14:41 +0200 Subject: [PATCH] Add custom argon2 Wasm implementation --- packages/crypto/package.json | 2 +- packages/crypto/src/libsodium.spec.ts | 8 +- packages/crypto/src/libsodium.ts | 26 ++-- packages/crypto/src/pkg2/index.d.ts | 17 +++ packages/crypto/src/pkg2/index.js | 169 +++++++++++++++++++++ packages/crypto/src/pkg2/package.json | 4 + wasm/argon2id/.cargo/config | 3 + wasm/argon2id/.gitignore | 3 + wasm/argon2id/Cargo.lock | 210 ++++++++++++++++++++++++++ wasm/argon2id/Cargo.toml | 12 ++ wasm/argon2id/src/lib.rs | 24 +++ wasm/build_argon2id.sh | 33 ++++ 12 files changed, 497 insertions(+), 14 deletions(-) create mode 100644 packages/crypto/src/pkg2/index.d.ts create mode 100644 packages/crypto/src/pkg2/index.js create mode 100644 packages/crypto/src/pkg2/package.json create mode 100644 wasm/argon2id/.cargo/config create mode 100644 wasm/argon2id/.gitignore create mode 100644 wasm/argon2id/Cargo.lock create mode 100644 wasm/argon2id/Cargo.toml create mode 100644 wasm/argon2id/src/lib.rs create mode 100755 wasm/build_argon2id.sh diff --git a/packages/crypto/package.json b/packages/crypto/package.json index 6330c3b0e8..a6d8baae28 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -36,7 +36,7 @@ "test-safari": "yarn pack-web && karma start --single-run --browsers Safari", "test": "yarn build-or-skip && yarn test-node", "coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet", - "build": "rm -rf ./build && tsc", + "build": "rm -rf ./build && tsc && cp -R src/pkg2 build", "build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build", "pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js" }, diff --git a/packages/crypto/src/libsodium.spec.ts b/packages/crypto/src/libsodium.spec.ts index 24e4c653f3..88545f51fe 100644 --- a/packages/crypto/src/libsodium.spec.ts +++ b/packages/crypto/src/libsodium.spec.ts @@ -129,15 +129,15 @@ describe("Libsodium", () => { // 8 bytes await Argon2id.execute(password, fromHex("aabbccddeeff0011"), options) .then(() => fail("Argon2id with invalid salt length must not resolve")) - .catch((e) => expect(e).toMatch(/invalid salt length/)); + .catch((e) => expect(e).toMatch(/invalid salt length/i)); // 15 bytes await Argon2id.execute(password, fromHex("aabbccddeeff001122334455667788"), options) .then(() => fail("Argon2id with invalid salt length must not resolve")) - .catch((e) => expect(e).toMatch(/invalid salt length/)); + .catch((e) => expect(e).toMatch(/invalid salt length/i)); // 17 bytes await Argon2id.execute(password, fromHex("aabbccddeeff00112233445566778899aa"), options) .then(() => fail("Argon2id with invalid salt length must not resolve")) - .catch((e) => expect(e).toMatch(/invalid salt length/)); + .catch((e) => expect(e).toMatch(/invalid salt length/i)); // 32 bytes await Argon2id.execute( password, @@ -145,7 +145,7 @@ describe("Libsodium", () => { options, ) .then(() => fail("Argon2id with invalid salt length must not resolve")) - .catch((e) => expect(e).toMatch(/invalid salt length/)); + .catch((e) => expect(e).toMatch(/invalid salt length/i)); }); }); diff --git a/packages/crypto/src/libsodium.ts b/packages/crypto/src/libsodium.ts index 0776a0c68a..9e0aceea1b 100644 --- a/packages/crypto/src/libsodium.ts +++ b/packages/crypto/src/libsodium.ts @@ -6,6 +6,8 @@ import { isNonNullObject } from "@cosmjs/utils"; import sodium from "libsodium-wrappers"; +import argon2id from "./pkg2"; + export interface Argon2idOptions { /** Output length in bytes */ readonly outputLength: number; @@ -39,15 +41,21 @@ export class Argon2id { salt: Uint8Array, options: Argon2idOptions, ): Promise { - await sodium.ready; - return sodium.crypto_pwhash( - options.outputLength, - password, - salt, // libsodium only supports 16 byte salts and will throw when you don't respect that - options.opsLimit, - options.memLimitKib * 1024, - sodium.crypto_pwhash_ALG_ARGON2ID13, - ); + // await sodium.ready; + // return sodium.crypto_pwhash( + // options.outputLength, + // password, + // salt, // libsodium only supports 16 byte salts and will throw when you don't respect that + // options.opsLimit, + // options.memLimitKib * 1024, + // sodium.crypto_pwhash_ALG_ARGON2ID13, + // ); + if (salt.length !== 16) { + throw new Error( + "Invalid salt length. Only 16 bytes is supported for compatibility with previous libsodium-based implementation. Feel free to raise an issue if you need something else.", + ); + } + return argon2id.hash(password, salt, options.outputLength, options.memLimitKib, options.opsLimit); } } diff --git a/packages/crypto/src/pkg2/index.d.ts b/packages/crypto/src/pkg2/index.d.ts new file mode 100644 index 0000000000..2a199ae5e3 --- /dev/null +++ b/packages/crypto/src/pkg2/index.d.ts @@ -0,0 +1,17 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * @param {string} password + * @param {Uint8Array} salt + * @param {number} output_length + * @param {number} memory_cost + * @param {number} time_cost + * @returns {Uint8Array} + */ +export function hash( + password: string, + salt: Uint8Array, + output_length: number, + memory_cost: number, + time_cost: number, +): Uint8Array; diff --git a/packages/crypto/src/pkg2/index.js b/packages/crypto/src/pkg2/index.js new file mode 100644 index 0000000000..bcdc683d39 --- /dev/null +++ b/packages/crypto/src/pkg2/index.js @@ -0,0 +1,169 @@ +let imports = {}; +imports["__wbindgen_placeholder__"] = module.exports; +let wasm; + + +let cachedTextDecoder = new TextDecoder("utf-8", { ignoreBOM: true, fatal: true }); + +cachedTextDecoder.decode(); + +let cachegetUint8Memory0 = null; +function getUint8Memory0() { + if (cachegetUint8Memory0 === null || cachegetUint8Memory0.buffer !== wasm.memory.buffer) { + cachegetUint8Memory0 = new Uint8Array(wasm.memory.buffer); + } + return cachegetUint8Memory0; +} + +function getStringFromWasm0(ptr, len) { + return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); +} + +const heap = new Array(32).fill(undefined); + +heap.push(undefined, null, true, false); + +let heap_next = heap.length; + +function addHeapObject(obj) { + if (heap_next === heap.length) heap.push(heap.length + 1); + const idx = heap_next; + heap_next = heap[idx]; + + heap[idx] = obj; + return idx; +} + +function getObject(idx) { + return heap[idx]; +} + +function dropObject(idx) { + if (idx < 36) return; + heap[idx] = heap_next; + heap_next = idx; +} + +function takeObject(idx) { + const ret = getObject(idx); + dropObject(idx); + return ret; +} + +let WASM_VECTOR_LEN = 0; + +let cachedTextEncoder = new TextEncoder("utf-8"); + +const encodeString = + typeof cachedTextEncoder.encodeInto === "function" + ? function (arg, view) { + return cachedTextEncoder.encodeInto(arg, view); + } + : function (arg, view) { + const buf = cachedTextEncoder.encode(arg); + view.set(buf); + return { + read: arg.length, + written: buf.length, + }; + }; + +function passStringToWasm0(arg, malloc, realloc) { + if (realloc === undefined) { + const buf = cachedTextEncoder.encode(arg); + const ptr = malloc(buf.length); + getUint8Memory0() + .subarray(ptr, ptr + buf.length) + .set(buf); + WASM_VECTOR_LEN = buf.length; + return ptr; + } + + let len = arg.length; + let ptr = malloc(len); + + const mem = getUint8Memory0(); + + let offset = 0; + + for (; offset < len; offset++) { + const code = arg.charCodeAt(offset); + if (code > 0x7f) break; + mem[ptr + offset] = code; + } + + if (offset !== len) { + if (offset !== 0) { + arg = arg.slice(offset); + } + ptr = realloc(ptr, len, (len = offset + arg.length * 3)); + const view = getUint8Memory0().subarray(ptr + offset, ptr + len); + const ret = encodeString(arg, view); + + offset += ret.written; + } + + WASM_VECTOR_LEN = offset; + return ptr; +} + +function passArray8ToWasm0(arg, malloc) { + const ptr = malloc(arg.length * 1); + getUint8Memory0().set(arg, ptr / 1); + WASM_VECTOR_LEN = arg.length; + return ptr; +} + +let cachegetInt32Memory0 = null; +function getInt32Memory0() { + if (cachegetInt32Memory0 === null || cachegetInt32Memory0.buffer !== wasm.memory.buffer) { + cachegetInt32Memory0 = new Int32Array(wasm.memory.buffer); + } + return cachegetInt32Memory0; +} + +function getArrayU8FromWasm0(ptr, len) { + return getUint8Memory0().subarray(ptr / 1, ptr / 1 + len); +} +/** + * @param {string} password + * @param {Uint8Array} salt + * @param {number} output_length + * @param {number} memory_cost + * @param {number} time_cost + * @returns {Uint8Array} + */ +module.exports.hash = function (password, salt, output_length, memory_cost, time_cost) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + var ptr0 = passStringToWasm0(password, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); + var len0 = WASM_VECTOR_LEN; + var ptr1 = passArray8ToWasm0(salt, wasm.__wbindgen_malloc); + var len1 = WASM_VECTOR_LEN; + wasm.hash(retptr, ptr0, len0, ptr1, len1, output_length, memory_cost, time_cost); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var v2 = getArrayU8FromWasm0(r0, r1).slice(); + wasm.__wbindgen_free(r0, r1 * 1); + return v2; + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + } +}; + +module.exports.__wbindgen_string_new = function (arg0, arg1) { + var ret = getStringFromWasm0(arg0, arg1); + return addHeapObject(ret); +}; + +module.exports.__wbindgen_rethrow = function (arg0) { + throw takeObject(arg0); +}; + + +const bytes = new Uint8Array([0,97,115,109,1,0,0,0,1,101,16,96,2,127,127,1,127,96,3,127,127,127,1,127,96,2,127,127,0,96,1,127,1,127,96,3,127,127,127,0,96,1,127,0,96,4,127,127,127,127,0,96,4,127,127,127,127,1,127,96,1,127,1,126,96,5,127,127,127,127,127,0,96,3,127,127,126,0,96,5,127,127,127,127,127,1,127,96,8,127,127,127,127,127,127,127,127,0,96,2,126,127,1,127,96,0,1,127,96,0,0,2,96,2,24,95,95,119,98,105,110,100,103,101,110,95,112,108,97,99,101,104,111,108,100,101,114,95,95,21,95,95,119,98,105,110,100,103,101,110,95,115,116,114,105,110,103,95,110,101,119,0,0,24,95,95,119,98,105,110,100,103,101,110,95,112,108,97,99,101,104,111,108,100,101,114,95,95,18,95,95,119,98,105,110,100,103,101,110,95,114,101,116,104,114,111,119,0,5,3,105,104,10,3,6,7,2,9,5,1,11,12,1,1,2,0,0,0,0,0,1,13,0,0,2,5,14,2,0,0,6,0,4,4,0,2,6,4,9,0,4,4,4,2,0,0,0,0,0,1,1,1,7,4,2,3,2,2,2,5,5,1,2,4,5,3,3,2,1,0,0,7,2,3,0,0,2,3,0,3,3,2,3,15,0,0,1,3,0,0,0,3,3,3,3,2,0,0,0,3,3,8,8,8,5,2,4,5,1,112,1,45,45,5,3,1,0,17,6,9,1,127,1,65,128,128,192,0,11,7,110,6,6,109,101,109,111,114,121,2,0,4,104,97,115,104,0,11,31,95,95,119,98,105,110,100,103,101,110,95,97,100,100,95,116,111,95,115,116,97,99,107,95,112,111,105,110,116,101,114,0,87,17,95,95,119,98,105,110,100,103,101,110,95,109,97,108,108,111,99,0,55,18,95,95,119,98,105,110,100,103,101,110,95,114,101,97,108,108,111,99,0,61,15,95,95,119,98,105,110,100,103,101,110,95,102,114,101,101,0,72,9,50,1,0,65,1,11,44,64,51,19,47,104,69,104,49,17,44,104,31,104,90,89,88,105,104,50,18,45,60,27,35,54,76,59,101,102,85,84,74,78,39,15,104,103,13,29,48,86,28,46,96,10,236,188,2,104,164,46,2,42,126,3,127,32,0,32,1,65,56,106,41,0,0,34,25,32,1,65,48,106,41,0,0,34,31,32,0,65,56,106,34,45,41,3,0,34,37,32,0,41,3,24,34,41,124,124,34,26,124,32,26,66,249,194,248,155,145,163,179,240,219,0,133,66,32,137,34,26,66,143,146,139,135,218,216,130,216,218,0,125,34,33,32,37,133,66,40,137,34,23,124,34,32,32,26,133,66,48,137,34,8,32,33,124,34,27,32,23,133,66,1,137,34,22,32,1,65,224,0,106,41,0,0,34,26,32,1,65,40,106,41,0,0,34,33,32,1,41,0,32,34,23,32,0,65,48,106,34,46,41,3,0,34,38,32,0,41,3,16,34,42,124,124,34,34,124,32,2,32,34,133,66,235,250,134,218,191,181,246,193,31,133,66,32,137,34,35,66,171,240,211,244,175,238,188,183,60,124,34,28,32,38,133,66,40,137,34,24,124,34,5,124,124,34,29,32,1,65,232,0,106,41,0,0,34,2,124,32,22,32,29,32,1,65,24,106,41,0,0,34,34,32,1,41,0,16,34,36,32,0,65,40,106,34,47,41,3,0,34,39,32,0,41,3,8,34,43,124,124,34,30,124,32,30,66,159,216,249,217,194,145,218,130,155,127,133,66,32,137,34,30,66,197,177,213,217,167,175,148,204,196,0,125,34,10,32,39,133,66,40,137,34,3,124,34,6,32,30,133,66,48,137,34,4,133,66,32,137,34,14,32,1,41,0,8,34,29,32,1,41,0,0,34,30,32,0,41,3,32,34,40,32,0,41,3,0,34,44,124,124,34,9,124,32,0,41,3,64,32,9,133,66,209,133,154,239,250,207,148,135,209,0,133,66,32,137,34,9,66,136,146,243,157,255,204,249,132,234,0,124,34,7,32,40,133,66,40,137,34,12,124,34,11,32,9,133,66,48,137,34,9,32,7,124,34,7,124,34,15,133,66,40,137,34,13,124,34,17,32,1,65,200,0,106,41,0,0,34,22,124,32,24,32,5,32,35,133,66,48,137,34,5,32,28,124,34,18,133,66,1,137,34,24,32,1,65,208,0,106,41,0,0,34,35,32,6,124,124,34,6,32,1,65,216,0,106,41,0,0,34,28,124,32,24,32,27,32,6,32,9,133,66,32,137,34,24,124,34,27,133,66,40,137,34,6,124,34,9,32,24,133,66,48,137,34,20,32,27,124,34,16,32,6,133,66,1,137,34,6,124,34,19,32,1,65,248,0,106,41,0,0,34,27,124,32,6,32,19,32,27,32,7,32,12,133,66,1,137,34,7,32,32,32,1,65,240,0,106,41,0,0,34,24,124,124,34,32,124,32,5,32,32,133,66,32,137,34,32,32,4,32,10,124,34,5,124,34,10,32,7,133,66,40,137,34,4,124,34,7,32,32,133,66,48,137,34,12,133,66,32,137,34,19,32,3,32,5,133,66,1,137,34,5,32,1,41,0,64,34,32,32,11,124,124,34,3,32,22,124,32,5,32,3,32,8,133,66,32,137,34,8,32,18,124,34,5,133,66,40,137,34,3,124,34,11,32,8,133,66,48,137,34,8,32,5,124,34,5,124,34,18,133,66,40,137,34,6,124,34,21,32,28,124,32,14,32,17,133,66,48,137,34,14,32,15,124,34,15,32,13,133,66,1,137,34,13,32,2,32,7,124,124,34,7,32,31,124,32,7,32,8,133,66,32,137,34,8,32,16,124,34,7,32,13,133,66,40,137,34,13,124,34,17,32,8,133,66,48,137,34,8,32,7,124,34,7,32,13,133,66,1,137,34,13,124,34,16,32,25,124,32,13,32,16,32,3,32,5,133,66,1,137,34,5,32,9,32,23,124,124,34,3,32,32,124,32,5,32,3,32,14,133,66,32,137,34,3,32,10,32,12,124,34,10,124,34,14,133,66,40,137,34,5,124,34,9,32,3,133,66,48,137,34,3,133,66,32,137,34,12,32,4,32,10,133,66,1,137,34,10,32,11,32,24,124,124,34,4,32,35,124,32,10,32,4,32,20,133,66,32,137,34,4,32,15,124,34,11,133,66,40,137,34,10,124,34,15,32,4,133,66,48,137,34,4,32,11,124,34,11,124,34,20,133,66,40,137,34,13,124,34,16,32,33,124,32,6,32,18,32,19,32,21,133,66,48,137,34,6,124,34,18,133,66,1,137,34,19,32,9,32,30,124,124,34,9,32,36,124,32,4,32,9,133,66,32,137,34,4,32,7,124,34,9,32,19,133,66,40,137,34,7,124,34,19,32,4,133,66,48,137,34,4,32,9,124,34,9,32,7,133,66,1,137,34,7,124,34,21,32,36,124,32,7,32,21,32,10,32,11,133,66,1,137,34,10,32,17,32,33,124,124,34,11,32,34,124,32,10,32,6,32,11,133,66,32,137,34,6,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,11,32,6,133,66,48,137,34,6,133,66,32,137,34,17,32,3,32,5,133,66,1,137,34,5,32,15,32,29,124,124,34,3,32,26,124,32,5,32,3,32,8,133,66,32,137,34,8,32,18,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,18,133,66,40,137,34,7,124,34,21,32,25,124,32,13,32,12,32,16,133,66,48,137,34,12,32,20,124,34,13,133,66,1,137,34,20,32,11,32,27,124,124,34,11,32,2,124,32,8,32,11,133,66,32,137,34,8,32,9,124,34,9,32,20,133,66,40,137,34,11,124,34,20,32,8,133,66,48,137,34,8,32,9,124,34,9,32,11,133,66,1,137,34,11,124,34,16,32,29,124,32,11,32,16,32,3,32,5,133,66,1,137,34,5,32,19,32,26,124,124,34,3,32,30,124,32,5,32,3,32,12,133,66,32,137,34,3,32,6,32,14,124,34,6,124,34,14,133,66,40,137,34,5,124,34,12,32,3,133,66,48,137,34,3,133,66,32,137,34,16,32,6,32,10,133,66,1,137,34,10,32,15,32,28,124,124,34,6,32,32,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,11,124,34,19,32,2,124,32,7,32,17,32,21,133,66,48,137,34,7,32,18,124,34,17,133,66,1,137,34,18,32,12,32,34,124,124,34,12,32,31,124,32,6,32,12,133,66,32,137,34,6,32,9,124,34,9,32,18,133,66,40,137,34,12,124,34,18,32,6,133,66,48,137,34,6,32,9,124,34,9,32,12,133,66,1,137,34,12,124,34,21,32,26,124,32,12,32,21,32,4,32,10,133,66,1,137,34,10,32,20,32,22,124,124,34,4,32,23,124,32,10,32,4,32,7,133,66,32,137,34,4,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,7,32,4,133,66,48,137,34,4,133,66,32,137,34,20,32,3,32,5,133,66,1,137,34,5,32,15,32,35,124,124,34,3,32,24,124,32,5,32,3,32,8,133,66,32,137,34,8,32,17,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,17,133,66,40,137,34,12,124,34,21,32,23,124,32,11,32,16,32,19,133,66,48,137,34,11,32,13,124,34,13,133,66,1,137,34,16,32,7,32,28,124,124,34,7,32,24,124,32,7,32,8,133,66,32,137,34,8,32,9,124,34,9,32,16,133,66,40,137,34,7,124,34,16,32,8,133,66,48,137,34,8,32,9,124,34,9,32,7,133,66,1,137,34,7,124,34,19,32,30,124,32,7,32,19,32,3,32,5,133,66,1,137,34,5,32,18,32,34,124,124,34,3,32,29,124,32,5,32,3,32,11,133,66,32,137,34,3,32,4,32,14,124,34,4,124,34,14,133,66,40,137,34,5,124,34,11,32,3,133,66,48,137,34,3,133,66,32,137,34,18,32,4,32,10,133,66,1,137,34,10,32,15,32,25,124,124,34,4,32,22,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,7,124,34,19,32,36,124,32,12,32,20,32,21,133,66,48,137,34,12,32,17,124,34,17,133,66,1,137,34,20,32,11,32,33,124,124,34,11,32,35,124,32,6,32,11,133,66,32,137,34,6,32,9,124,34,9,32,20,133,66,40,137,34,11,124,34,20,32,6,133,66,48,137,34,6,32,9,124,34,9,32,11,133,66,1,137,34,11,124,34,21,32,23,124,32,11,32,21,32,4,32,10,133,66,1,137,34,10,32,16,32,27,124,124,34,4,32,32,124,32,10,32,4,32,12,133,66,32,137,34,4,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,12,32,4,133,66,48,137,34,4,133,66,32,137,34,16,32,3,32,5,133,66,1,137,34,5,32,15,32,36,124,124,34,3,32,31,124,32,5,32,3,32,8,133,66,32,137,34,8,32,17,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,17,133,66,40,137,34,11,124,34,21,32,31,124,32,7,32,18,32,19,133,66,48,137,34,7,32,13,124,34,13,133,66,1,137,34,18,32,12,32,35,124,124,34,12,32,27,124,32,8,32,12,133,66,32,137,34,8,32,9,124,34,9,32,18,133,66,40,137,34,12,124,34,18,32,8,133,66,48,137,34,8,32,9,124,34,9,32,12,133,66,1,137,34,12,124,34,19,32,32,124,32,12,32,19,32,3,32,5,133,66,1,137,34,5,32,20,32,33,124,124,34,3,32,25,124,32,5,32,3,32,7,133,66,32,137,34,3,32,4,32,14,124,34,4,124,34,14,133,66,40,137,34,5,124,34,7,32,3,133,66,48,137,34,3,133,66,32,137,34,20,32,4,32,10,133,66,1,137,34,10,32,15,32,22,124,124,34,4,32,30,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,12,124,34,19,32,30,124,32,11,32,16,32,21,133,66,48,137,34,11,32,17,124,34,17,133,66,1,137,34,16,32,7,32,28,124,124,34,7,32,26,124,32,6,32,7,133,66,32,137,34,6,32,9,124,34,9,32,16,133,66,40,137,34,7,124,34,16,32,6,133,66,48,137,34,6,32,9,124,34,9,32,7,133,66,1,137,34,7,124,34,21,32,28,124,32,7,32,21,32,4,32,10,133,66,1,137,34,10,32,18,32,34,124,124,34,4,32,2,124,32,10,32,4,32,11,133,66,32,137,34,4,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,11,32,4,133,66,48,137,34,4,133,66,32,137,34,18,32,3,32,5,133,66,1,137,34,5,32,15,32,24,124,124,34,3,32,29,124,32,5,32,3,32,8,133,66,32,137,34,8,32,17,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,17,133,66,40,137,34,7,124,34,21,32,27,124,32,12,32,19,32,20,133,66,48,137,34,12,32,13,124,34,13,133,66,1,137,34,20,32,11,32,32,124,124,34,11,32,34,124,32,8,32,11,133,66,32,137,34,8,32,9,124,34,9,32,20,133,66,40,137,34,11,124,34,20,32,8,133,66,48,137,34,8,32,9,124,34,9,32,11,133,66,1,137,34,11,124,34,19,32,24,124,32,11,32,19,32,3,32,5,133,66,1,137,34,5,32,16,32,31,124,124,34,3,32,35,124,32,5,32,3,32,12,133,66,32,137,34,3,32,4,32,14,124,34,4,124,34,14,133,66,40,137,34,5,124,34,12,32,3,133,66,48,137,34,3,133,66,32,137,34,16,32,4,32,10,133,66,1,137,34,10,32,15,32,36,124,124,34,4,32,26,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,11,124,34,19,32,24,124,32,7,32,18,32,21,133,66,48,137,34,7,32,17,124,34,17,133,66,1,137,34,18,32,12,32,25,124,124,34,12,32,33,124,32,6,32,12,133,66,32,137,34,6,32,9,124,34,9,32,18,133,66,40,137,34,12,124,34,18,32,6,133,66,48,137,34,6,32,9,124,34,9,32,12,133,66,1,137,34,12,124,34,21,32,2,124,32,12,32,21,32,4,32,10,133,66,1,137,34,10,32,20,32,29,124,124,34,4,32,22,124,32,10,32,4,32,7,133,66,32,137,34,4,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,7,32,4,133,66,48,137,34,4,133,66,32,137,34,20,32,3,32,5,133,66,1,137,34,5,32,15,32,23,124,124,34,3,32,2,124,32,5,32,3,32,8,133,66,32,137,34,8,32,17,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,17,133,66,40,137,34,12,124,34,21,32,22,124,32,11,32,16,32,19,133,66,48,137,34,11,32,13,124,34,13,133,66,1,137,34,16,32,7,32,23,124,124,34,7,32,35,124,32,7,32,8,133,66,32,137,34,8,32,9,124,34,9,32,16,133,66,40,137,34,7,124,34,16,32,8,133,66,48,137,34,8,32,9,124,34,9,32,7,133,66,1,137,34,7,124,34,19,32,36,124,32,7,32,19,32,3,32,5,133,66,1,137,34,5,32,18,32,29,124,124,34,3,32,27,124,32,5,32,3,32,11,133,66,32,137,34,3,32,4,32,14,124,34,4,124,34,14,133,66,40,137,34,5,124,34,11,32,3,133,66,48,137,34,3,133,66,32,137,34,18,32,4,32,10,133,66,1,137,34,10,32,15,32,26,124,124,34,4,32,33,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,7,124,34,19,32,26,124,32,12,32,20,32,21,133,66,48,137,34,12,32,17,124,34,17,133,66,1,137,34,20,32,11,32,31,124,124,34,11,32,34,124,32,6,32,11,133,66,32,137,34,6,32,9,124,34,9,32,20,133,66,40,137,34,11,124,34,20,32,6,133,66,48,137,34,6,32,9,124,34,9,32,11,133,66,1,137,34,11,124,34,21,32,29,124,32,11,32,21,32,4,32,10,133,66,1,137,34,10,32,16,32,32,124,124,34,4,32,28,124,32,10,32,4,32,12,133,66,32,137,34,4,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,12,32,4,133,66,48,137,34,4,133,66,32,137,34,16,32,3,32,5,133,66,1,137,34,5,32,15,32,30,124,124,34,3,32,25,124,32,5,32,3,32,8,133,66,32,137,34,8,32,17,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,17,133,66,40,137,34,11,124,34,21,32,32,124,32,7,32,18,32,19,133,66,48,137,34,7,32,13,124,34,13,133,66,1,137,34,18,32,12,32,34,124,124,34,12,32,22,124,32,8,32,12,133,66,32,137,34,8,32,9,124,34,9,32,18,133,66,40,137,34,12,124,34,18,32,8,133,66,48,137,34,8,32,9,124,34,9,32,12,133,66,1,137,34,12,124,34,19,32,31,124,32,12,32,19,32,3,32,5,133,66,1,137,34,5,32,20,32,25,124,124,34,3,32,24,124,32,5,32,3,32,7,133,66,32,137,34,3,32,4,32,14,124,34,4,124,34,14,133,66,40,137,34,5,124,34,7,32,3,133,66,48,137,34,3,133,66,32,137,34,20,32,4,32,10,133,66,1,137,34,10,32,2,32,15,124,124,34,4,32,28,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,12,124,34,19,32,28,124,32,11,32,16,32,21,133,66,48,137,34,11,32,17,124,34,17,133,66,1,137,34,16,32,7,32,27,124,124,34,7,32,23,124,32,6,32,7,133,66,32,137,34,6,32,9,124,34,9,32,16,133,66,40,137,34,7,124,34,16,32,6,133,66,48,137,34,6,32,9,124,34,9,32,7,133,66,1,137,34,7,124,34,21,32,34,124,32,7,32,21,32,4,32,10,133,66,1,137,34,10,32,18,32,36,124,124,34,4,32,35,124,32,10,32,4,32,11,133,66,32,137,34,4,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,11,32,4,133,66,48,137,34,4,133,66,32,137,34,18,32,3,32,5,133,66,1,137,34,5,32,15,32,33,124,124,34,3,32,30,124,32,5,32,3,32,8,133,66,32,137,34,8,32,17,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,17,133,66,40,137,34,7,124,34,21,32,29,124,32,12,32,19,32,20,133,66,48,137,34,12,32,13,124,34,13,133,66,1,137,34,20,32,11,32,30,124,124,34,11,32,32,124,32,8,32,11,133,66,32,137,34,8,32,9,124,34,9,32,20,133,66,40,137,34,11,124,34,20,32,8,133,66,48,137,34,8,32,9,124,34,9,32,11,133,66,1,137,34,11,124,34,19,32,23,124,32,11,32,19,32,3,32,5,133,66,1,137,34,5,32,16,32,24,124,124,34,3,32,22,124,32,5,32,3,32,12,133,66,32,137,34,3,32,4,32,14,124,34,4,124,34,14,133,66,40,137,34,5,124,34,12,32,3,133,66,48,137,34,3,133,66,32,137,34,16,32,4,32,10,133,66,1,137,34,10,32,15,32,31,124,124,34,4,32,27,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,11,124,34,19,32,25,124,32,7,32,18,32,21,133,66,48,137,34,7,32,17,124,34,17,133,66,1,137,34,18,32,2,32,12,124,124,34,12,32,25,124,32,6,32,12,133,66,32,137,34,6,32,9,124,34,9,32,18,133,66,40,137,34,12,124,34,18,32,6,133,66,48,137,34,6,32,9,124,34,9,32,12,133,66,1,137,34,12,124,34,21,32,31,124,32,12,32,21,32,4,32,10,133,66,1,137,34,10,32,20,32,35,124,124,34,4,32,33,124,32,10,32,4,32,7,133,66,32,137,34,4,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,7,32,4,133,66,48,137,34,4,133,66,32,137,34,20,32,3,32,5,133,66,1,137,34,5,32,15,32,26,124,124,34,3,32,36,124,32,5,32,3,32,8,133,66,32,137,34,8,32,17,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,17,133,66,40,137,34,12,124,34,21,32,34,124,32,11,32,16,32,19,133,66,48,137,34,11,32,13,124,34,13,133,66,1,137,34,16,32,7,32,29,124,124,34,7,32,33,124,32,7,32,8,133,66,32,137,34,8,32,9,124,34,9,32,16,133,66,40,137,34,7,124,34,16,32,8,133,66,48,137,34,8,32,9,124,34,9,32,7,133,66,1,137,34,7,124,34,19,32,26,124,32,7,32,19,32,3,32,5,133,66,1,137,34,5,32,18,32,32,124,124,34,3,32,23,124,32,5,32,3,32,11,133,66,32,137,34,3,32,4,32,14,124,34,4,124,34,14,133,66,40,137,34,5,124,34,11,32,3,133,66,48,137,34,3,133,66,32,137,34,18,32,4,32,10,133,66,1,137,34,10,32,15,32,35,124,124,34,4,32,36,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,7,124,34,19,32,23,124,32,12,32,20,32,21,133,66,48,137,34,12,32,17,124,34,17,133,66,1,137,34,20,32,11,32,22,124,124,34,11,32,24,124,32,6,32,11,133,66,32,137,34,6,32,9,124,34,9,32,20,133,66,40,137,34,11,124,34,20,32,6,133,66,48,137,34,6,32,9,124,34,9,32,11,133,66,1,137,34,11,124,34,21,32,33,124,32,11,32,21,32,4,32,10,133,66,1,137,34,10,32,2,32,16,124,124,34,4,32,30,124,32,10,32,4,32,12,133,66,32,137,34,4,32,3,32,14,124,34,3,124,34,14,133,66,40,137,34,10,124,34,12,32,4,133,66,48,137,34,4,133,66,32,137,34,16,32,3,32,5,133,66,1,137,34,5,32,15,32,27,124,124,34,3,32,28,124,32,5,32,3,32,8,133,66,32,137,34,8,32,17,124,34,3,133,66,40,137,34,5,124,34,15,32,8,133,66,48,137,34,8,32,3,124,34,3,124,34,17,133,66,40,137,34,11,124,34,21,32,26,124,32,7,32,18,32,19,133,66,48,137,34,7,32,13,124,34,13,133,66,1,137,34,18,32,12,32,31,124,124,34,12,32,25,124,32,8,32,12,133,66,32,137,34,8,32,9,124,34,9,32,18,133,66,40,137,34,12,124,34,18,32,8,133,66,48,137,34,8,32,9,124,34,9,32,12,133,66,1,137,34,12,124,34,19,32,2,124,32,12,32,19,32,3,32,5,133,66,1,137,34,5,32,20,32,36,124,124,34,3,32,34,124,32,5,32,3,32,7,133,66,32,137,34,3,32,4,32,14,124,34,4,124,34,14,133,66,40,137,34,5,124,34,7,32,3,133,66,48,137,34,3,133,66,32,137,34,20,32,4,32,10,133,66,1,137,34,10,32,15,32,30,124,124,34,4,32,29,124,32,10,32,4,32,6,133,66,32,137,34,6,32,13,124,34,4,133,66,40,137,34,10,124,34,15,32,6,133,66,48,137,34,6,32,4,124,34,4,124,34,13,133,66,40,137,34,12,124,34,19,32,22,124,32,11,32,16,32,21,133,66,48,137,34,11,32,17,124,34,17,133,66,1,137,34,16,32,7,32,35,124,124,34,7,32,28,124,32,6,32,7,133,66,32,137,34,6,32,9,124,34,9,32,16,133,66,40,137,34,7,124,34,16,32,6,133,66,48,137,34,6,32,9,124,34,9,32,7,133,66,1,137,34,7,124,34,21,32,27,124,32,7,32,21,32,27,32,4,32,10,133,66,1,137,34,10,32,18,32,24,124,124,34,4,124,32,10,32,4,32,11,133,66,32,137,34,27,32,3,32,14,124,34,3,124,34,4,133,66,40,137,34,10,124,34,14,32,27,133,66,48,137,34,27,133,66,32,137,34,11,32,22,32,3,32,5,133,66,1,137,34,5,32,15,32,32,124,124,34,3,124,32,5,32,3,32,8,133,66,32,137,34,22,32,17,124,34,8,133,66,40,137,34,5,124,34,3,32,22,133,66,48,137,34,22,32,8,124,34,8,124,34,15,133,66,40,137,34,7,124,34,17,32,28,124,32,31,32,12,32,19,32,20,133,66,48,137,34,28,32,13,124,34,12,133,66,1,137,34,13,32,2,32,14,124,124,34,2,124,32,2,32,22,133,66,32,137,34,2,32,9,124,34,31,32,13,133,66,40,137,34,22,124,34,14,32,2,133,66,48,137,34,2,32,31,124,34,31,32,22,133,66,1,137,34,22,124,34,9,32,25,124,32,22,32,9,32,5,32,8,133,66,1,137,34,25,32,16,32,23,124,124,34,23,32,32,124,32,25,32,23,32,28,133,66,32,137,34,23,32,4,32,27,124,34,22,124,34,28,133,66,40,137,34,25,124,34,27,32,23,133,66,48,137,34,23,133,66,32,137,34,32,32,35,32,10,32,22,133,66,1,137,34,22,32,3,32,24,124,124,34,24,124,32,22,32,6,32,24,133,66,32,137,34,35,32,12,124,34,24,133,66,40,137,34,22,124,34,8,32,35,133,66,48,137,34,35,32,24,124,34,24,124,34,5,133,66,40,137,34,10,124,34,3,32,42,133,32,26,32,25,32,23,32,28,124,34,25,133,66,1,137,34,23,32,8,32,29,124,124,34,29,124,32,23,32,2,32,29,133,66,32,137,34,2,32,11,32,17,133,66,48,137,34,26,32,15,124,34,29,124,34,28,133,66,40,137,34,23,124,34,8,32,2,133,66,48,137,34,2,32,28,124,34,28,133,55,3,16,32,0,32,34,32,22,32,24,133,66,1,137,34,22,32,14,32,33,124,124,34,33,124,32,25,32,26,32,33,133,66,32,137,34,26,124,34,25,32,22,133,66,40,137,34,33,124,34,34,32,26,133,66,48,137,34,26,32,25,124,34,25,32,43,32,36,32,7,32,29,133,66,1,137,34,29,32,27,32,30,124,124,34,30,124,32,29,32,31,32,30,32,35,133,66,32,137,34,31,124,34,36,133,66,40,137,34,29,124,34,30,133,133,55,3,8,32,0,32,30,32,31,133,66,48,137,34,31,32,36,124,34,36,32,34,32,41,133,133,55,3,24,32,0,32,3,32,32,133,66,48,137,34,34,32,5,124,34,30,32,8,32,44,133,133,55,3,0,32,47,32,34,32,39,133,32,23,32,28,133,66,1,137,133,55,3,0,32,0,32,31,32,40,133,32,25,32,33,133,66,1,137,133,55,3,32,32,45,32,2,32,37,133,32,10,32,30,133,66,1,137,133,55,3,0,32,46,32,26,32,38,133,32,29,32,36,133,66,1,137,133,55,3,0,11,244,32,2,15,127,1,126,35,0,65,16,107,34,11,36,0,2,64,2,64,32,0,65,245,1,79,4,64,65,128,128,124,65,8,65,8,16,70,65,20,65,8,16,70,106,65,16,65,8,16,70,106,107,65,119,113,65,3,107,34,2,65,0,65,16,65,8,16,70,65,2,116,107,34,1,32,1,32,2,75,27,32,0,77,13,2,32,0,65,4,106,65,8,16,70,33,4,65,224,172,192,0,40,2,0,69,13,1,65,0,32,4,107,33,3,2,64,2,64,2,127,65,0,32,4,65,128,2,73,13,0,26,65,31,32,4,65,255,255,255,7,75,13,0,26,32,4,65,6,32,4,65,8,118,103,34,0,107,118,65,1,113,32,0,65,1,116,107,65,62,106,11,34,6,65,2,116,65,236,174,192,0,106,40,2,0,34,0,4,64,32,4,32,6,16,66,116,33,7,65,0,33,1,3,64,2,64,32,0,16,91,34,2,32,4,73,13,0,32,2,32,4,107,34,2,32,3,79,13,0,32,0,33,1,32,2,34,3,13,0,65,0,33,3,12,3,11,32,0,65,20,106,40,2,0,34,2,32,5,32,2,32,0,32,7,65,29,118,65,4,113,106,65,16,106,40,2,0,34,0,71,27,32,5,32,2,27,33,5,32,7,65,1,116,33,7,32,0,13,0,11,32,5,4,64,32,5,33,0,12,2,11,32,1,13,2,11,65,0,33,1,65,1,32,6,116,16,73,65,224,172,192,0,40,2,0,113,34,0,69,13,3,32,0,16,79,104,65,2,116,65,236,174,192,0,106,40,2,0,34,0,69,13,3,11,3,64,32,0,32,1,32,0,16,91,34,1,32,4,79,32,1,32,4,107,34,5,32,3,73,113,34,2,27,33,1,32,5,32,3,32,2,27,33,3,32,0,16,65,34,0,13,0,11,32,1,69,13,2,11,32,4,65,236,175,192,0,40,2,0,34,0,77,65,0,32,3,32,0,32,4,107,79,27,13,1,32,1,34,0,32,4,16,97,33,6,32,0,16,25,2,64,65,16,65,8,16,70,32,3,77,4,64,32,0,32,4,16,81,32,6,32,3,16,67,32,3,65,128,2,79,4,64,32,6,32,3,16,24,12,2,11,32,3,65,3,118,34,1,65,3,116,65,228,172,192,0,106,33,5,2,127,65,220,172,192,0,40,2,0,34,2,65,1,32,1,116,34,1,113,4,64,32,5,40,2,8,12,1,11,65,220,172,192,0,32,1,32,2,114,54,2,0,32,5,11,33,1,32,5,32,6,54,2,8,32,1,32,6,54,2,12,32,6,32,5,54,2,12,32,6,32,1,54,2,8,12,1,11,32,0,32,3,32,4,106,16,62,11,32,0,16,99,34,3,69,13,1,12,2,11,65,16,32,0,65,4,106,65,16,65,8,16,70,65,5,107,32,0,75,27,65,8,16,70,33,4,2,64,2,64,2,64,2,127,2,64,2,64,65,220,172,192,0,40,2,0,34,1,32,4,65,3,118,34,0,118,34,2,65,3,113,69,4,64,32,4,65,236,175,192,0,40,2,0,77,13,7,32,2,13,1,65,224,172,192,0,40,2,0,34,0,69,13,7,32,0,16,79,104,65,2,116,65,236,174,192,0,106,40,2,0,34,1,16,91,32,4,107,33,3,32,1,16,65,34,0,4,64,3,64,32,0,16,91,32,4,107,34,2,32,3,32,2,32,3,73,34,2,27,33,3,32,0,32,1,32,2,27,33,1,32,0,16,65,34,0,13,0,11,11,32,1,34,0,32,4,16,97,33,5,32,0,16,25,65,16,65,8,16,70,32,3,75,13,5,32,0,32,4,16,81,32,5,32,3,16,67,65,236,175,192,0,40,2,0,34,1,69,13,4,32,1,65,3,118,34,1,65,3,116,65,228,172,192,0,106,33,7,65,244,175,192,0,40,2,0,33,6,65,220,172,192,0,40,2,0,34,2,65,1,32,1,116,34,1,113,69,13,2,32,7,40,2,8,12,3,11,2,64,32,2,65,127,115,65,1,113,32,0,106,34,3,65,3,116,34,0,65,236,172,192,0,106,40,2,0,34,5,65,8,106,40,2,0,34,2,32,0,65,228,172,192,0,106,34,0,71,4,64,32,2,32,0,54,2,12,32,0,32,2,54,2,8,12,1,11,65,220,172,192,0,32,1,65,126,32,3,119,113,54,2,0,11,32,5,32,3,65,3,116,16,62,32,5,16,99,33,3,12,7,11,2,64,65,1,32,0,65,31,113,34,0,116,16,73,32,2,32,0,116,113,16,79,104,34,2,65,3,116,34,0,65,236,172,192,0,106,40,2,0,34,3,65,8,106,40,2,0,34,1,32,0,65,228,172,192,0,106,34,0,71,4,64,32,1,32,0,54,2,12,32,0,32,1,54,2,8,12,1,11,65,220,172,192,0,65,220,172,192,0,40,2,0,65,126,32,2,119,113,54,2,0,11,32,3,32,4,16,81,32,3,32,4,16,97,34,5,32,2,65,3,116,32,4,107,34,2,16,67,65,236,175,192,0,40,2,0,34,0,4,64,32,0,65,3,118,34,0,65,3,116,65,228,172,192,0,106,33,7,65,244,175,192,0,40,2,0,33,6,2,127,65,220,172,192,0,40,2,0,34,1,65,1,32,0,116,34,0,113,4,64,32,7,40,2,8,12,1,11,65,220,172,192,0,32,0,32,1,114,54,2,0,32,7,11,33,0,32,7,32,6,54,2,8,32,0,32,6,54,2,12,32,6,32,7,54,2,12,32,6,32,0,54,2,8,11,65,244,175,192,0,32,5,54,2,0,65,236,175,192,0,32,2,54,2,0,32,3,16,99,33,3,12,6,11,65,220,172,192,0,32,1,32,2,114,54,2,0,32,7,11,33,1,32,7,32,6,54,2,8,32,1,32,6,54,2,12,32,6,32,7,54,2,12,32,6,32,1,54,2,8,11,65,244,175,192,0,32,5,54,2,0,65,236,175,192,0,32,3,54,2,0,12,1,11,32,0,32,3,32,4,106,16,62,11,32,0,16,99,34,3,13,1,11,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,32,4,65,236,175,192,0,40,2,0,34,0,75,4,64,65,240,175,192,0,40,2,0,34,0,32,4,75,13,2,65,8,65,8,16,70,32,4,106,65,20,65,8,16,70,106,65,16,65,8,16,70,106,65,128,128,4,16,70,34,0,65,16,118,64,0,33,1,32,11,65,0,54,2,8,32,11,65,0,32,0,65,128,128,124,113,32,1,65,127,70,34,0,27,54,2,4,32,11,65,0,32,1,65,16,116,32,0,27,54,2,0,32,11,40,2,0,34,8,13,1,65,0,33,3,12,9,11,65,244,175,192,0,40,2,0,33,2,65,16,65,8,16,70,32,0,32,4,107,34,1,75,4,64,65,244,175,192,0,65,0,54,2,0,65,236,175,192,0,40,2,0,33,0,65,236,175,192,0,65,0,54,2,0,32,2,32,0,16,62,32,2,16,99,33,3,12,9,11,32,2,32,4,16,97,33,0,65,236,175,192,0,32,1,54,2,0,65,244,175,192,0,32,0,54,2,0,32,0,32,1,16,67,32,2,32,4,16,81,32,2,16,99,33,3,12,8,11,32,11,40,2,8,33,12,65,252,175,192,0,32,11,40,2,4,34,10,65,252,175,192,0,40,2,0,106,34,1,54,2,0,65,128,176,192,0,65,128,176,192,0,40,2,0,34,0,32,1,32,0,32,1,75,27,54,2,0,2,64,2,64,65,248,175,192,0,40,2,0,4,64,65,132,176,192,0,33,0,3,64,32,0,16,82,32,8,70,13,2,32,0,40,2,8,34,0,13,0,11,12,2,11,65,152,176,192,0,40,2,0,34,0,69,32,0,32,8,75,114,13,3,12,7,11,32,0,16,93,13,0,32,0,16,94,32,12,71,13,0,32,0,34,1,40,2,0,34,5,65,248,175,192,0,40,2,0,34,2,77,4,127,32,5,32,1,40,2,4,106,32,2,75,5,65,0,11,13,3,11,65,152,176,192,0,65,152,176,192,0,40,2,0,34,0,32,8,32,0,32,8,73,27,54,2,0,32,8,32,10,106,33,1,65,132,176,192,0,33,0,2,64,2,64,3,64,32,1,32,0,40,2,0,71,4,64,32,0,40,2,8,34,0,13,1,12,2,11,11,32,0,16,93,13,0,32,0,16,94,32,12,70,13,1,11,65,248,175,192,0,40,2,0,33,9,65,132,176,192,0,33,0,2,64,3,64,32,9,32,0,40,2,0,79,4,64,32,0,16,82,32,9,75,13,2,11,32,0,40,2,8,34,0,13,0,11,65,0,33,0,11,32,9,32,0,16,82,34,6,65,20,65,8,16,70,34,15,107,65,23,107,34,1,16,99,34,0,65,8,16,70,32,0,107,32,1,106,34,0,32,0,65,16,65,8,16,70,32,9,106,73,27,34,13,16,99,33,14,32,13,32,15,16,97,33,0,65,8,65,8,16,70,33,3,65,20,65,8,16,70,33,5,65,16,65,8,16,70,33,2,65,248,175,192,0,32,8,32,8,16,99,34,1,65,8,16,70,32,1,107,34,1,16,97,34,7,54,2,0,65,240,175,192,0,32,10,65,8,106,32,2,32,3,32,5,106,106,32,1,106,107,34,3,54,2,0,32,7,32,3,65,1,114,54,2,4,65,8,65,8,16,70,33,5,65,20,65,8,16,70,33,2,65,16,65,8,16,70,33,1,32,7,32,3,16,97,32,1,32,2,32,5,65,8,107,106,106,54,2,4,65,148,176,192,0,65,128,128,128,1,54,2,0,32,13,32,15,16,81,65,132,176,192,0,41,2,0,33,16,32,14,65,8,106,65,140,176,192,0,41,2,0,55,2,0,32,14,32,16,55,2,0,65,144,176,192,0,32,12,54,2,0,65,136,176,192,0,32,10,54,2,0,65,132,176,192,0,32,8,54,2,0,65,140,176,192,0,32,14,54,2,0,3,64,32,0,65,4,16,97,33,1,32,0,65,7,54,2,4,32,6,32,1,34,0,65,4,106,75,13,0,11,32,9,32,13,70,13,7,32,9,32,13,32,9,107,34,0,32,9,32,0,16,97,16,63,32,0,65,128,2,79,4,64,32,9,32,0,16,24,12,8,11,32,0,65,3,118,34,0,65,3,116,65,228,172,192,0,106,33,2,2,127,65,220,172,192,0,40,2,0,34,1,65,1,32,0,116,34,0,113,4,64,32,2,40,2,8,12,1,11,65,220,172,192,0,32,0,32,1,114,54,2,0,32,2,11,33,0,32,2,32,9,54,2,8,32,0,32,9,54,2,12,32,9,32,2,54,2,12,32,9,32,0,54,2,8,12,7,11,32,0,40,2,0,33,3,32,0,32,8,54,2,0,32,0,32,0,40,2,4,32,10,106,54,2,4,32,8,16,99,34,5,65,8,16,70,33,2,32,3,16,99,34,1,65,8,16,70,33,0,32,8,32,2,32,5,107,106,34,6,32,4,16,97,33,7,32,6,32,4,16,81,32,3,32,0,32,1,107,106,34,0,32,4,32,6,106,107,33,4,32,0,65,248,175,192,0,40,2,0,71,4,64,65,244,175,192,0,40,2,0,32,0,70,13,4,32,0,40,2,4,65,3,113,65,1,71,13,5,2,64,32,0,16,91,34,5,65,128,2,79,4,64,32,0,16,25,12,1,11,32,0,65,12,106,40,2,0,34,2,32,0,65,8,106,40,2,0,34,1,71,4,64,32,1,32,2,54,2,12,32,2,32,1,54,2,8,12,1,11,65,220,172,192,0,65,220,172,192,0,40,2,0,65,126,32,5,65,3,118,119,113,54,2,0,11,32,4,32,5,106,33,4,32,0,32,5,16,97,33,0,12,5,11,65,248,175,192,0,32,7,54,2,0,65,240,175,192,0,65,240,175,192,0,40,2,0,32,4,106,34,0,54,2,0,32,7,32,0,65,1,114,54,2,4,32,6,16,99,33,3,12,7,11,65,240,175,192,0,32,0,32,4,107,34,1,54,2,0,65,248,175,192,0,65,248,175,192,0,40,2,0,34,2,32,4,16,97,34,0,54,2,0,32,0,32,1,65,1,114,54,2,4,32,2,32,4,16,81,32,2,16,99,33,3,12,6,11,65,152,176,192,0,32,8,54,2,0,12,3,11,32,0,32,0,40,2,4,32,10,106,54,2,4,65,240,175,192,0,40,2,0,33,1,65,248,175,192,0,40,2,0,34,0,32,0,16,99,34,0,65,8,16,70,32,0,107,34,0,16,97,33,3,65,240,175,192,0,32,1,32,10,106,32,0,107,34,5,54,2,0,65,248,175,192,0,32,3,54,2,0,32,3,32,5,65,1,114,54,2,4,65,8,65,8,16,70,33,2,65,20,65,8,16,70,33,1,65,16,65,8,16,70,33,0,32,3,32,5,16,97,32,0,32,1,32,2,65,8,107,106,106,54,2,4,65,148,176,192,0,65,128,128,128,1,54,2,0,12,3,11,65,244,175,192,0,32,7,54,2,0,65,236,175,192,0,65,236,175,192,0,40,2,0,32,4,106,34,0,54,2,0,32,7,32,0,16,67,32,6,16,99,33,3,12,3,11,32,7,32,4,32,0,16,63,32,4,65,128,2,79,4,64,32,7,32,4,16,24,32,6,16,99,33,3,12,3,11,32,4,65,3,118,34,0,65,3,116,65,228,172,192,0,106,33,2,2,127,65,220,172,192,0,40,2,0,34,1,65,1,32,0,116,34,0,113,4,64,32,2,40,2,8,12,1,11,65,220,172,192,0,32,0,32,1,114,54,2,0,32,2,11,33,0,32,2,32,7,54,2,8,32,0,32,7,54,2,12,32,7,32,2,54,2,12,32,7,32,0,54,2,8,32,6,16,99,33,3,12,2,11,65,156,176,192,0,65,255,31,54,2,0,65,144,176,192,0,32,12,54,2,0,65,136,176,192,0,32,10,54,2,0,65,132,176,192,0,32,8,54,2,0,65,240,172,192,0,65,228,172,192,0,54,2,0,65,248,172,192,0,65,236,172,192,0,54,2,0,65,236,172,192,0,65,228,172,192,0,54,2,0,65,128,173,192,0,65,244,172,192,0,54,2,0,65,244,172,192,0,65,236,172,192,0,54,2,0,65,136,173,192,0,65,252,172,192,0,54,2,0,65,252,172,192,0,65,244,172,192,0,54,2,0,65,144,173,192,0,65,132,173,192,0,54,2,0,65,132,173,192,0,65,252,172,192,0,54,2,0,65,152,173,192,0,65,140,173,192,0,54,2,0,65,140,173,192,0,65,132,173,192,0,54,2,0,65,160,173,192,0,65,148,173,192,0,54,2,0,65,148,173,192,0,65,140,173,192,0,54,2,0,65,168,173,192,0,65,156,173,192,0,54,2,0,65,156,173,192,0,65,148,173,192,0,54,2,0,65,176,173,192,0,65,164,173,192,0,54,2,0,65,164,173,192,0,65,156,173,192,0,54,2,0,65,172,173,192,0,65,164,173,192,0,54,2,0,65,184,173,192,0,65,172,173,192,0,54,2,0,65,180,173,192,0,65,172,173,192,0,54,2,0,65,192,173,192,0,65,180,173,192,0,54,2,0,65,188,173,192,0,65,180,173,192,0,54,2,0,65,200,173,192,0,65,188,173,192,0,54,2,0,65,196,173,192,0,65,188,173,192,0,54,2,0,65,208,173,192,0,65,196,173,192,0,54,2,0,65,204,173,192,0,65,196,173,192,0,54,2,0,65,216,173,192,0,65,204,173,192,0,54,2,0,65,212,173,192,0,65,204,173,192,0,54,2,0,65,224,173,192,0,65,212,173,192,0,54,2,0,65,220,173,192,0,65,212,173,192,0,54,2,0,65,232,173,192,0,65,220,173,192,0,54,2,0,65,228,173,192,0,65,220,173,192,0,54,2,0,65,240,173,192,0,65,228,173,192,0,54,2,0,65,248,173,192,0,65,236,173,192,0,54,2,0,65,236,173,192,0,65,228,173,192,0,54,2,0,65,128,174,192,0,65,244,173,192,0,54,2,0,65,244,173,192,0,65,236,173,192,0,54,2,0,65,136,174,192,0,65,252,173,192,0,54,2,0,65,252,173,192,0,65,244,173,192,0,54,2,0,65,144,174,192,0,65,132,174,192,0,54,2,0,65,132,174,192,0,65,252,173,192,0,54,2,0,65,152,174,192,0,65,140,174,192,0,54,2,0,65,140,174,192,0,65,132,174,192,0,54,2,0,65,160,174,192,0,65,148,174,192,0,54,2,0,65,148,174,192,0,65,140,174,192,0,54,2,0,65,168,174,192,0,65,156,174,192,0,54,2,0,65,156,174,192,0,65,148,174,192,0,54,2,0,65,176,174,192,0,65,164,174,192,0,54,2,0,65,164,174,192,0,65,156,174,192,0,54,2,0,65,184,174,192,0,65,172,174,192,0,54,2,0,65,172,174,192,0,65,164,174,192,0,54,2,0,65,192,174,192,0,65,180,174,192,0,54,2,0,65,180,174,192,0,65,172,174,192,0,54,2,0,65,200,174,192,0,65,188,174,192,0,54,2,0,65,188,174,192,0,65,180,174,192,0,54,2,0,65,208,174,192,0,65,196,174,192,0,54,2,0,65,196,174,192,0,65,188,174,192,0,54,2,0,65,216,174,192,0,65,204,174,192,0,54,2,0,65,204,174,192,0,65,196,174,192,0,54,2,0,65,224,174,192,0,65,212,174,192,0,54,2,0,65,212,174,192,0,65,204,174,192,0,54,2,0,65,232,174,192,0,65,220,174,192,0,54,2,0,65,220,174,192,0,65,212,174,192,0,54,2,0,65,228,174,192,0,65,220,174,192,0,54,2,0,65,8,65,8,16,70,33,5,65,20,65,8,16,70,33,2,65,16,65,8,16,70,33,1,65,248,175,192,0,32,8,32,8,16,99,34,0,65,8,16,70,32,0,107,34,0,16,97,34,3,54,2,0,65,240,175,192,0,32,10,65,8,106,32,1,32,2,32,5,106,106,32,0,106,107,34,5,54,2,0,32,3,32,5,65,1,114,54,2,4,65,8,65,8,16,70,33,2,65,20,65,8,16,70,33,1,65,16,65,8,16,70,33,0,32,3,32,5,16,97,32,0,32,1,32,2,65,8,107,106,106,54,2,4,65,148,176,192,0,65,128,128,128,1,54,2,0,11,65,0,33,3,65,240,175,192,0,40,2,0,34,0,32,4,77,13,0,65,240,175,192,0,32,0,32,4,107,34,1,54,2,0,65,248,175,192,0,65,248,175,192,0,40,2,0,34,2,32,4,16,97,34,0,54,2,0,32,0,32,1,65,1,114,54,2,4,32,2,32,4,16,81,32,2,16,99,33,3,11,32,11,65,16,106,36,0,32,3,11,178,26,2,19,126,14,127,35,0,65,128,32,107,34,23,36,0,32,23,32,2,65,128,8,16,20,34,2,65,128,24,106,32,1,65,128,8,16,20,26,65,0,33,1,3,64,32,1,32,2,106,34,23,32,23,41,3,0,32,2,65,128,24,106,32,1,106,34,24,41,3,0,133,55,3,0,32,23,65,8,106,34,25,32,25,41,3,0,32,24,65,8,106,41,3,0,133,55,3,0,32,23,65,16,106,34,25,32,25,41,3,0,32,24,65,16,106,41,3,0,133,55,3,0,32,23,65,24,106,34,23,32,23,41,3,0,32,24,65,24,106,41,3,0,133,55,3,0,32,1,65,32,106,34,1,65,128,8,71,13,0,11,32,2,65,128,8,106,32,2,65,128,8,16,20,26,32,3,4,64,32,2,65,128,24,106,32,0,65,128,8,16,20,26,65,0,33,1,3,64,32,2,65,128,8,106,32,1,106,34,3,32,3,41,3,0,32,2,65,128,24,106,32,1,106,34,23,41,3,0,133,55,3,0,32,3,65,8,106,34,24,32,24,41,3,0,32,23,65,8,106,41,3,0,133,55,3,0,32,3,65,16,106,34,24,32,24,41,3,0,32,23,65,16,106,41,3,0,133,55,3,0,32,3,65,24,106,34,3,32,3,41,3,0,32,23,65,24,106,41,3,0,133,55,3,0,32,1,65,32,106,34,1,65,128,8,71,13,0,11,11,65,0,33,1,3,64,32,1,32,2,106,34,3,32,3,65,56,106,34,23,41,3,0,34,6,32,3,65,24,106,34,24,41,3,0,34,8,124,32,8,66,1,134,66,254,255,255,255,31,131,32,6,66,255,255,255,255,15,131,126,124,34,8,32,3,65,248,0,106,34,25,41,3,0,133,66,32,137,34,5,32,3,65,216,0,106,34,26,41,3,0,34,9,124,32,5,66,255,255,255,255,15,131,32,9,66,1,134,66,254,255,255,255,31,131,126,124,34,9,32,6,133,66,40,137,34,6,32,8,124,32,6,66,255,255,255,255,15,131,32,8,66,1,134,66,254,255,255,255,31,131,126,124,34,8,32,5,133,66,48,137,34,5,32,3,65,40,106,34,27,41,3,0,34,4,32,3,65,8,106,34,28,41,3,0,34,7,124,32,7,66,1,134,66,254,255,255,255,31,131,32,4,66,255,255,255,255,15,131,126,124,34,7,32,3,65,232,0,106,34,29,41,3,0,133,66,32,137,34,12,32,3,65,200,0,106,34,30,41,3,0,34,13,124,32,12,66,255,255,255,255,15,131,32,13,66,1,134,66,254,255,255,255,31,131,126,124,34,13,32,4,133,66,40,137,34,4,32,7,124,32,4,66,255,255,255,255,15,131,32,7,66,1,134,66,254,255,255,255,31,131,126,124,34,7,32,12,133,66,48,137,34,12,32,13,124,32,12,66,255,255,255,255,15,131,32,13,66,1,134,66,254,255,255,255,31,131,126,124,34,13,32,4,133,66,1,137,34,4,32,3,65,32,106,34,31,41,3,0,34,16,32,3,41,3,0,34,11,124,32,16,66,255,255,255,255,15,131,32,11,66,1,134,66,254,255,255,255,31,131,126,124,34,11,32,3,65,224,0,106,34,32,41,3,0,133,66,32,137,34,17,32,3,65,64,107,34,33,41,3,0,34,20,124,32,17,66,255,255,255,255,15,131,32,20,66,1,134,66,254,255,255,255,31,131,126,124,34,20,32,16,133,66,40,137,34,16,32,11,124,32,16,66,255,255,255,255,15,131,32,11,66,1,134,66,254,255,255,255,31,131,126,124,34,11,124,32,4,66,255,255,255,255,15,131,32,11,66,1,134,66,254,255,255,255,31,131,126,124,34,10,133,66,32,137,34,21,32,3,65,48,106,34,34,41,3,0,34,18,32,3,65,16,106,34,35,41,3,0,34,14,124,32,14,66,1,134,66,254,255,255,255,31,131,32,18,66,255,255,255,255,15,131,126,124,34,14,32,3,65,240,0,106,34,36,41,3,0,133,66,32,137,34,19,32,3,65,208,0,106,34,3,41,3,0,34,15,124,32,19,66,255,255,255,255,15,131,32,15,66,1,134,66,254,255,255,255,31,131,126,124,34,15,32,18,133,66,40,137,34,18,32,14,124,32,18,66,255,255,255,255,15,131,32,14,66,1,134,66,254,255,255,255,31,131,126,124,34,14,32,19,133,66,48,137,34,19,32,15,124,32,19,66,255,255,255,255,15,131,32,15,66,1,134,66,254,255,255,255,31,131,126,124,34,15,124,32,21,66,255,255,255,255,15,131,32,15,66,1,134,66,254,255,255,255,31,131,126,124,34,22,32,4,133,66,40,137,34,4,32,10,124,32,4,66,255,255,255,255,15,131,32,10,66,1,134,66,254,255,255,255,31,131,126,124,34,10,55,3,0,32,25,32,10,32,21,133,66,48,137,34,10,55,3,0,32,3,32,10,32,22,124,32,10,66,255,255,255,255,15,131,32,22,66,1,134,66,254,255,255,255,31,131,126,124,34,10,55,3,0,32,27,32,4,32,10,133,66,1,137,55,3,0,32,32,32,15,32,18,133,66,1,137,34,4,32,7,124,32,4,66,255,255,255,255,15,131,32,7,66,1,134,66,254,255,255,255,31,131,126,124,34,7,32,11,32,17,133,66,48,137,34,11,133,66,32,137,34,17,32,5,32,9,124,32,5,66,255,255,255,255,15,131,32,9,66,1,134,66,254,255,255,255,31,131,126,124,34,5,124,32,17,66,255,255,255,255,15,131,32,5,66,1,134,66,254,255,255,255,31,131,126,124,34,9,32,4,133,66,40,137,34,4,32,7,124,32,4,66,255,255,255,255,15,131,32,7,66,1,134,66,254,255,255,255,31,131,126,124,34,10,32,17,133,66,48,137,34,7,55,3,0,32,28,32,10,55,3,0,32,26,32,7,32,9,124,32,7,66,255,255,255,255,15,131,32,9,66,1,134,66,254,255,255,255,31,131,126,124,34,9,55,3,0,32,34,32,4,32,9,133,66,1,137,55,3,0,32,29,32,5,32,6,133,66,1,137,34,6,32,14,124,32,6,66,255,255,255,255,15,131,32,14,66,1,134,66,254,255,255,255,31,131,126,124,34,5,32,12,133,66,32,137,34,9,32,11,32,20,124,32,11,66,255,255,255,255,15,131,32,20,66,1,134,66,254,255,255,255,31,131,126,124,34,4,124,32,9,66,255,255,255,255,15,131,32,4,66,1,134,66,254,255,255,255,31,131,126,124,34,7,32,6,133,66,40,137,34,6,32,5,124,32,6,66,255,255,255,255,15,131,32,5,66,1,134,66,254,255,255,255,31,131,126,124,34,12,32,9,133,66,48,137,34,5,55,3,0,32,35,32,12,55,3,0,32,33,32,5,32,7,124,32,5,66,255,255,255,255,15,131,32,7,66,1,134,66,254,255,255,255,31,131,126,124,34,5,55,3,0,32,23,32,5,32,6,133,66,1,137,55,3,0,32,36,32,8,32,4,32,16,133,66,1,137,34,6,124,32,8,66,1,134,66,254,255,255,255,31,131,32,6,66,255,255,255,255,15,131,126,124,34,8,32,19,133,66,32,137,34,5,32,13,124,32,5,66,255,255,255,255,15,131,32,13,66,1,134,66,254,255,255,255,31,131,126,124,34,9,32,6,133,66,40,137,34,6,32,8,124,32,6,66,255,255,255,255,15,131,32,8,66,1,134,66,254,255,255,255,31,131,126,124,34,4,32,5,133,66,48,137,34,8,55,3,0,32,24,32,4,55,3,0,32,30,32,8,32,9,124,32,8,66,255,255,255,255,15,131,32,9,66,1,134,66,254,255,255,255,31,131,126,124,34,8,55,3,0,32,31,32,6,32,8,133,66,1,137,55,3,0,32,1,65,128,1,106,34,1,65,128,8,71,13,0,11,65,0,33,1,3,64,32,1,32,2,106,34,3,32,3,65,136,3,106,34,23,41,3,0,34,6,32,3,65,136,1,106,34,24,41,3,0,34,8,124,32,8,66,1,134,66,254,255,255,255,31,131,32,6,66,255,255,255,255,15,131,126,124,34,8,32,3,65,136,7,106,34,25,41,3,0,133,66,32,137,34,5,32,3,65,136,5,106,34,26,41,3,0,34,9,124,32,5,66,255,255,255,255,15,131,32,9,66,1,134,66,254,255,255,255,31,131,126,124,34,9,32,6,133,66,40,137,34,6,32,8,124,32,6,66,255,255,255,255,15,131,32,8,66,1,134,66,254,255,255,255,31,131,126,124,34,8,32,5,133,66,48,137,34,5,32,3,65,136,2,106,34,27,41,3,0,34,4,32,3,65,8,106,34,28,41,3,0,34,7,124,32,7,66,1,134,66,254,255,255,255,31,131,32,4,66,255,255,255,255,15,131,126,124,34,7,32,3,65,136,6,106,34,29,41,3,0,133,66,32,137,34,12,32,3,65,136,4,106,34,30,41,3,0,34,13,124,32,12,66,255,255,255,255,15,131,32,13,66,1,134,66,254,255,255,255,31,131,126,124,34,13,32,4,133,66,40,137,34,4,32,7,124,32,4,66,255,255,255,255,15,131,32,7,66,1,134,66,254,255,255,255,31,131,126,124,34,7,32,12,133,66,48,137,34,12,32,13,124,32,12,66,255,255,255,255,15,131,32,13,66,1,134,66,254,255,255,255,31,131,126,124,34,13,32,4,133,66,1,137,34,4,32,3,65,128,2,106,34,31,41,3,0,34,16,32,3,41,3,0,34,11,124,32,11,66,1,134,66,254,255,255,255,31,131,32,16,66,255,255,255,255,15,131,126,124,34,11,32,3,65,128,6,106,34,32,41,3,0,133,66,32,137,34,17,32,3,65,128,4,106,34,33,41,3,0,34,20,124,32,17,66,255,255,255,255,15,131,32,20,66,1,134,66,254,255,255,255,31,131,126,124,34,20,32,16,133,66,40,137,34,16,32,11,124,32,16,66,255,255,255,255,15,131,32,11,66,1,134,66,254,255,255,255,31,131,126,124,34,11,124,32,4,66,255,255,255,255,15,131,32,11,66,1,134,66,254,255,255,255,31,131,126,124,34,10,133,66,32,137,34,21,32,3,65,128,3,106,34,34,41,3,0,34,18,32,3,65,128,1,106,34,35,41,3,0,34,14,124,32,14,66,1,134,66,254,255,255,255,31,131,32,18,66,255,255,255,255,15,131,126,124,34,14,32,3,65,128,7,106,34,36,41,3,0,133,66,32,137,34,19,32,3,65,128,5,106,34,3,41,3,0,34,15,124,32,19,66,255,255,255,255,15,131,32,15,66,1,134,66,254,255,255,255,31,131,126,124,34,15,32,18,133,66,40,137,34,18,32,14,124,32,18,66,255,255,255,255,15,131,32,14,66,1,134,66,254,255,255,255,31,131,126,124,34,14,32,19,133,66,48,137,34,19,32,15,124,32,19,66,255,255,255,255,15,131,32,15,66,1,134,66,254,255,255,255,31,131,126,124,34,15,124,32,21,66,255,255,255,255,15,131,32,15,66,1,134,66,254,255,255,255,31,131,126,124,34,22,32,4,133,66,40,137,34,4,32,10,124,32,4,66,255,255,255,255,15,131,32,10,66,1,134,66,254,255,255,255,31,131,126,124,34,10,55,3,0,32,25,32,10,32,21,133,66,48,137,34,10,55,3,0,32,3,32,10,32,22,124,32,10,66,255,255,255,255,15,131,32,22,66,1,134,66,254,255,255,255,31,131,126,124,34,10,55,3,0,32,27,32,4,32,10,133,66,1,137,55,3,0,32,32,32,15,32,18,133,66,1,137,34,4,32,7,124,32,4,66,255,255,255,255,15,131,32,7,66,1,134,66,254,255,255,255,31,131,126,124,34,7,32,11,32,17,133,66,48,137,34,11,133,66,32,137,34,17,32,5,32,9,124,32,5,66,255,255,255,255,15,131,32,9,66,1,134,66,254,255,255,255,31,131,126,124,34,5,124,32,17,66,255,255,255,255,15,131,32,5,66,1,134,66,254,255,255,255,31,131,126,124,34,9,32,4,133,66,40,137,34,4,32,7,124,32,4,66,255,255,255,255,15,131,32,7,66,1,134,66,254,255,255,255,31,131,126,124,34,10,32,17,133,66,48,137,34,7,55,3,0,32,28,32,10,55,3,0,32,26,32,7,32,9,124,32,7,66,255,255,255,255,15,131,32,9,66,1,134,66,254,255,255,255,31,131,126,124,34,9,55,3,0,32,34,32,4,32,9,133,66,1,137,55,3,0,32,29,32,5,32,6,133,66,1,137,34,6,32,14,124,32,6,66,255,255,255,255,15,131,32,14,66,1,134,66,254,255,255,255,31,131,126,124,34,5,32,12,133,66,32,137,34,9,32,11,32,20,124,32,11,66,255,255,255,255,15,131,32,20,66,1,134,66,254,255,255,255,31,131,126,124,34,4,124,32,9,66,255,255,255,255,15,131,32,4,66,1,134,66,254,255,255,255,31,131,126,124,34,7,32,6,133,66,40,137,34,6,32,5,124,32,6,66,255,255,255,255,15,131,32,5,66,1,134,66,254,255,255,255,31,131,126,124,34,12,32,9,133,66,48,137,34,5,55,3,0,32,35,32,12,55,3,0,32,33,32,5,32,7,124,32,5,66,255,255,255,255,15,131,32,7,66,1,134,66,254,255,255,255,31,131,126,124,34,5,55,3,0,32,23,32,5,32,6,133,66,1,137,55,3,0,32,36,32,8,32,4,32,16,133,66,1,137,34,6,124,32,8,66,1,134,66,254,255,255,255,31,131,32,6,66,255,255,255,255,15,131,126,124,34,8,32,19,133,66,32,137,34,5,32,13,124,32,5,66,255,255,255,255,15,131,32,13,66,1,134,66,254,255,255,255,31,131,126,124,34,9,32,6,133,66,40,137,34,6,32,8,124,32,6,66,255,255,255,255,15,131,32,8,66,1,134,66,254,255,255,255,31,131,126,124,34,4,32,5,133,66,48,137,34,8,55,3,0,32,24,32,4,55,3,0,32,30,32,8,32,9,124,32,8,66,255,255,255,255,15,131,32,9,66,1,134,66,254,255,255,255,31,131,126,124,34,8,55,3,0,32,31,32,6,32,8,133,66,1,137,55,3,0,32,1,65,16,106,34,1,65,128,1,71,13,0,11,32,2,65,128,16,106,32,2,65,128,8,106,65,128,8,16,20,26,32,2,65,128,24,106,32,2,65,128,8,16,20,26,65,0,33,1,3,64,32,2,65,128,16,106,32,1,106,34,3,32,3,41,3,0,32,2,65,128,24,106,32,1,106,34,23,41,3,0,133,55,3,0,32,3,65,8,106,34,24,32,24,41,3,0,32,23,65,8,106,41,3,0,133,55,3,0,32,3,65,16,106,34,24,32,24,41,3,0,32,23,65,16,106,41,3,0,133,55,3,0,32,3,65,24,106,34,3,32,3,41,3,0,32,23,65,24,106,41,3,0,133,55,3,0,32,1,65,32,106,34,1,65,128,8,71,13,0,11,32,0,32,2,65,128,16,106,65,128,8,16,20,26,32,2,65,128,32,106,36,0,11,214,22,2,20,127,4,126,35,0,65,128,6,107,34,4,36,0,65,9,33,5,2,64,32,3,65,3,75,4,64,32,4,32,3,54,2,12,2,64,32,3,65,193,0,79,4,64,32,4,65,184,4,106,34,5,65,192,0,16,6,32,4,65,16,106,32,5,65,200,0,16,20,26,32,4,65,216,0,106,65,128,1,16,34,33,9,65,4,33,7,32,4,65,216,1,106,65,4,58,0,0,32,4,32,4,40,2,12,54,2,88,2,64,32,1,65,3,116,34,1,69,13,0,32,0,32,1,106,33,10,3,64,2,64,32,0,40,2,0,33,1,2,64,2,64,32,0,40,2,4,34,5,65,128,1,32,7,65,255,1,113,34,6,107,34,8,75,4,64,32,6,4,64,32,6,32,9,106,32,1,32,8,16,20,26,32,4,32,4,41,3,80,66,128,1,124,55,3,80,32,4,65,16,106,32,9,66,0,16,2,32,5,32,8,107,33,5,32,1,32,8,106,33,1,11,32,5,32,5,65,7,118,32,5,65,255,0,113,69,32,5,65,0,71,113,107,34,5,65,7,116,34,8,107,33,7,32,5,69,32,5,65,7,116,69,114,13,1,32,8,33,6,32,1,33,5,3,64,32,4,32,4,41,3,80,66,128,1,124,55,3,80,32,4,65,16,106,32,5,66,0,16,2,32,5,65,128,1,106,33,5,32,6,65,128,1,107,34,6,13,0,11,12,1,11,32,6,32,9,106,32,1,32,5,16,20,26,32,5,32,7,106,33,7,12,1,11,32,7,65,129,1,79,13,1,32,9,32,1,32,8,106,32,7,16,20,26,11,32,4,32,7,58,0,216,1,32,0,65,8,106,34,0,32,10,71,13,1,12,2,11,11,32,7,65,128,1,65,220,133,192,0,16,42,0,11,32,4,65,176,4,106,32,4,65,16,106,65,208,1,16,20,26,32,4,65,216,2,106,34,5,66,0,55,3,0,32,4,65,208,2,106,34,6,66,0,55,3,0,32,4,65,200,2,106,34,7,66,0,55,3,0,32,4,65,192,2,106,34,8,66,0,55,3,0,32,4,65,184,2,106,34,9,66,0,55,3,0,32,4,65,176,2,106,34,10,66,0,55,3,0,32,4,65,168,2,106,66,0,55,3,0,32,4,66,0,55,3,160,2,32,4,32,4,41,3,240,4,32,4,65,248,5,106,45,0,0,34,0,173,124,55,3,240,4,32,4,65,248,4,106,33,1,32,0,65,128,1,71,4,64,32,0,32,1,106,65,128,1,32,0,107,16,34,26,11,32,4,65,0,58,0,248,5,32,4,65,176,4,106,32,1,32,4,65,160,2,106,16,37,32,4,65,152,2,106,32,5,41,3,0,55,3,0,32,4,65,144,2,106,32,6,41,3,0,55,3,0,32,4,65,136,2,106,32,7,41,3,0,55,3,0,32,4,65,128,2,106,32,8,41,3,0,55,3,0,32,4,65,248,1,106,32,9,41,3,0,34,24,55,3,0,32,4,65,240,1,106,32,10,41,3,0,34,25,55,3,0,32,4,65,232,1,106,34,5,32,4,65,168,2,106,41,3,0,34,26,55,3,0,32,4,32,4,41,3,160,2,34,27,55,3,224,1,32,2,65,24,106,32,24,55,0,0,32,2,65,16,106,32,25,55,0,0,32,2,65,8,106,32,26,55,0,0,32,2,32,27,55,0,0,32,2,65,32,106,33,0,2,64,32,3,65,32,107,34,7,65,193,0,73,4,64,32,0,33,1,12,1,11,32,4,65,184,4,106,33,6,32,4,65,168,3,106,33,2,32,4,65,248,5,106,33,9,32,4,65,248,4,106,33,8,32,4,65,232,2,106,33,3,3,64,32,6,65,192,0,16,6,32,4,65,160,2,106,34,1,32,6,65,200,0,16,20,26,32,2,65,56,106,66,0,55,3,0,32,2,65,48,106,66,0,55,3,0,32,2,65,40,106,66,0,55,3,0,32,2,65,32,106,66,0,55,3,0,32,2,65,24,106,66,0,55,3,0,32,2,65,16,106,66,0,55,3,0,32,2,65,8,106,66,0,55,3,0,32,2,66,0,55,3,0,32,3,32,4,41,3,224,1,55,3,0,32,3,65,8,106,32,5,41,3,0,55,3,0,32,3,65,16,106,32,4,65,240,1,106,34,10,41,3,0,55,3,0,32,3,65,24,106,32,4,65,248,1,106,34,11,41,3,0,55,3,0,32,3,65,32,106,32,4,65,128,2,106,34,12,41,3,0,55,3,0,32,3,65,40,106,32,4,65,136,2,106,34,13,41,3,0,55,3,0,32,3,65,48,106,32,4,65,144,2,106,34,14,41,3,0,55,3,0,32,3,65,56,106,32,4,65,152,2,106,34,15,41,3,0,55,3,0,32,4,65,192,0,58,0,232,3,32,4,65,176,4,106,32,1,65,208,1,16,20,26,32,4,65,168,4,106,34,16,66,0,55,3,0,32,4,65,160,4,106,34,17,66,0,55,3,0,32,4,65,152,4,106,34,18,66,0,55,3,0,32,4,65,144,4,106,34,19,66,0,55,3,0,32,4,65,136,4,106,34,20,66,0,55,3,0,32,4,65,128,4,106,34,21,66,0,55,3,0,32,4,65,248,3,106,34,22,66,0,55,3,0,32,4,66,0,55,3,240,3,32,4,32,4,41,3,240,4,32,4,45,0,248,5,34,1,173,124,55,3,240,4,32,7,65,32,107,33,7,32,9,32,1,32,8,106,34,23,71,4,64,32,23,65,128,1,32,1,107,16,34,26,11,32,4,65,0,58,0,248,5,32,4,65,176,4,106,32,8,32,4,65,240,3,106,16,37,32,15,32,16,41,3,0,55,3,0,32,14,32,17,41,3,0,55,3,0,32,13,32,18,41,3,0,55,3,0,32,12,32,19,41,3,0,55,3,0,32,11,32,20,41,3,0,34,24,55,3,0,32,10,32,21,41,3,0,34,25,55,3,0,32,5,32,22,41,3,0,34,26,55,3,0,32,4,32,4,41,3,240,3,34,27,55,3,224,1,32,0,65,24,106,32,24,55,0,0,32,0,65,16,106,32,25,55,0,0,32,0,65,8,106,32,26,55,0,0,32,0,32,27,55,0,0,32,0,65,32,106,34,1,33,0,32,7,65,192,0,75,13,0,11,11,32,4,65,224,1,106,33,0,32,1,33,2,35,0,65,224,3,107,34,8,36,0,2,64,2,64,2,64,32,7,65,192,0,77,4,64,32,8,65,216,1,106,34,1,32,7,16,6,32,8,32,1,65,200,0,16,20,34,3,65,204,0,106,65,129,1,16,34,33,6,32,3,32,7,54,2,72,32,3,65,204,1,106,45,0,0,34,5,65,192,0,77,4,64,32,5,32,6,106,34,1,32,0,41,0,0,55,0,0,32,1,65,56,106,32,0,65,56,106,41,0,0,55,0,0,32,1,65,48,106,32,0,65,48,106,41,0,0,55,0,0,32,1,65,40,106,32,0,65,40,106,41,0,0,55,0,0,32,1,65,32,106,32,0,65,32,106,41,0,0,55,0,0,32,1,65,24,106,32,0,65,24,106,41,0,0,55,0,0,32,1,65,16,106,32,0,65,16,106,41,0,0,55,0,0,32,1,65,8,106,32,0,65,8,106,41,0,0,55,0,0,32,5,65,64,107,33,5,12,3,11,32,5,32,6,106,32,0,65,128,1,32,5,107,34,1,16,20,26,32,3,32,3,41,3,64,66,128,1,124,55,3,64,32,3,32,6,66,0,16,2,32,0,32,1,106,33,1,32,5,65,64,106,34,0,32,0,65,7,118,34,10,32,0,65,255,0,113,69,32,0,65,0,71,113,34,0,107,34,11,65,7,116,34,9,107,33,5,32,11,69,32,9,69,114,13,1,32,10,32,0,107,65,7,116,33,10,32,1,33,0,3,64,32,3,32,3,41,3,64,66,128,1,124,55,3,64,32,3,32,0,66,0,16,2,32,0,65,128,1,106,33,0,32,10,65,128,1,107,34,10,13,0,11,12,1,11,65,1,33,0,12,2,11,32,5,65,129,1,73,4,64,32,6,32,1,32,9,106,32,5,16,20,26,12,1,11,32,5,65,128,1,65,184,130,192,0,16,42,0,11,32,3,32,5,58,0,204,1,32,3,65,208,1,106,32,3,65,208,1,16,20,26,32,3,40,2,152,2,32,7,71,34,0,13,0,32,3,65,216,3,106,66,0,55,3,0,32,3,65,208,3,106,66,0,55,3,0,32,3,65,200,3,106,66,0,55,3,0,32,3,65,192,3,106,66,0,55,3,0,32,3,65,184,3,106,66,0,55,3,0,32,3,65,176,3,106,66,0,55,3,0,32,3,65,168,3,106,66,0,55,3,0,32,3,66,0,55,3,160,3,32,3,32,3,41,3,144,2,32,3,65,156,3,106,34,5,45,0,0,34,1,173,124,55,3,144,2,32,5,32,1,32,3,65,156,2,106,34,6,106,34,9,71,4,64,32,9,65,128,1,32,1,107,16,34,26,11,32,3,65,0,58,0,156,3,32,3,65,208,1,106,32,6,32,3,65,160,3,106,34,1,16,37,32,2,32,1,32,7,16,20,26,11,32,8,65,224,3,106,36,0,32,0,69,13,1,65,185,135,192,0,65,36,32,4,65,176,4,106,65,252,133,192,0,65,240,135,192,0,16,38,0,11,32,4,65,184,4,106,34,5,32,3,16,6,32,4,65,160,2,106,32,5,65,200,0,16,20,26,32,4,65,236,2,106,65,129,1,16,34,33,9,32,4,32,3,54,2,232,2,2,64,32,4,65,236,3,106,45,0,0,34,5,65,252,0,77,4,64,32,5,32,9,106,32,4,40,2,12,54,0,0,32,5,65,4,106,33,7,12,1,11,32,5,32,9,106,32,4,65,12,106,34,8,65,128,1,32,5,107,34,10,16,20,26,32,4,32,4,41,3,224,2,66,128,1,124,55,3,224,2,32,4,65,160,2,106,32,9,66,0,16,2,32,5,65,252,0,107,34,6,65,255,0,113,33,7,32,8,32,10,106,34,5,32,6,65,128,127,113,106,33,8,2,64,32,6,65,255,0,77,13,0,32,6,65,7,118,65,7,116,34,6,69,13,0,3,64,32,4,32,4,41,3,224,2,66,128,1,124,55,3,224,2,32,4,65,160,2,106,32,5,66,0,16,2,32,5,65,128,1,106,33,5,32,6,65,128,1,107,34,6,13,0,11,11,32,9,32,8,32,7,16,20,26,11,32,4,32,7,58,0,236,3,2,64,32,1,65,3,116,34,1,69,13,0,32,0,32,1,106,33,10,3,64,2,64,32,0,40,2,0,33,1,2,64,2,64,32,0,40,2,4,34,5,65,128,1,32,7,65,255,1,113,34,6,107,34,8,75,4,64,32,6,4,64,32,6,32,9,106,32,1,32,8,16,20,26,32,4,32,4,41,3,224,2,66,128,1,124,55,3,224,2,32,4,65,160,2,106,32,9,66,0,16,2,32,5,32,8,107,33,5,32,1,32,8,106,33,1,11,32,5,32,5,65,7,118,32,5,65,255,0,113,69,32,5,65,0,71,113,107,34,5,65,7,116,34,8,107,33,7,32,5,69,32,5,65,7,116,69,114,13,1,32,8,33,6,32,1,33,5,3,64,32,4,32,4,41,3,224,2,66,128,1,124,55,3,224,2,32,4,65,160,2,106,32,5,66,0,16,2,32,5,65,128,1,106,33,5,32,6,65,128,1,107,34,6,13,0,11,12,1,11,32,6,32,9,106,32,1,32,5,16,20,26,32,5,32,7,106,33,7,12,1,11,32,7,65,129,1,79,13,1,32,9,32,1,32,8,106,32,7,16,20,26,11,32,4,32,7,58,0,236,3,32,0,65,8,106,34,0,32,10,71,13,1,12,2,11,11,32,7,65,128,1,65,220,133,192,0,16,42,0,11,32,4,65,176,4,106,32,4,65,160,2,106,65,208,1,16,20,26,32,4,40,2,248,4,32,3,71,13,2,32,4,65,200,0,106,66,0,55,3,0,32,4,65,64,107,66,0,55,3,0,32,4,65,56,106,66,0,55,3,0,32,4,65,48,106,66,0,55,3,0,32,4,65,40,106,66,0,55,3,0,32,4,65,32,106,66,0,55,3,0,32,4,65,24,106,66,0,55,3,0,32,4,66,0,55,3,16,32,4,32,4,41,3,240,4,32,4,65,252,5,106,34,1,45,0,0,34,0,173,124,55,3,240,4,32,1,32,0,32,4,65,252,4,106,34,5,106,34,6,71,4,64,32,6,65,128,1,32,0,107,16,34,26,11,32,4,65,0,58,0,252,5,32,4,65,176,4,106,32,5,32,4,65,16,106,34,0,16,37,32,2,32,0,32,3,16,20,26,11,65,18,33,5,11,32,4,65,128,6,106,36,0,32,5,15,11,65,185,135,192,0,65,36,32,4,65,176,4,106,65,236,133,192,0,65,224,135,192,0,16,38,0,11,172,1,0,32,1,65,192,0,75,4,64,65,252,141,192,0,65,48,65,236,141,192,0,16,53,0,11,32,0,66,0,55,3,64,32,0,66,241,237,244,248,165,167,253,167,165,127,55,3,24,32,0,66,171,240,211,244,175,238,188,183,60,55,3,16,32,0,66,187,206,170,166,216,208,235,179,187,127,55,3,8,32,0,65,56,106,66,249,194,248,155,145,163,179,240,219,0,55,3,0,32,0,65,48,106,66,235,250,134,218,191,181,246,193,31,55,3,0,32,0,65,40,106,66,159,216,249,217,194,145,218,130,155,127,55,3,0,32,0,66,209,133,154,239,250,207,148,135,209,0,55,3,32,32,0,32,1,173,66,136,146,247,149,255,204,249,132,234,0,133,55,3,0,11,210,8,1,3,127,35,0,65,240,0,107,34,5,36,0,32,5,32,3,54,2,12,32,5,32,2,54,2,8,2,64,2,64,32,5,2,127,32,5,2,127,2,127,2,64,2,64,32,1,65,129,2,79,4,64,3,64,32,6,65,128,2,106,32,0,32,6,106,34,7,65,128,2,106,44,0,0,65,191,127,74,13,4,26,32,6,65,255,1,106,32,7,65,255,1,106,44,0,0,65,191,127,74,13,4,26,32,7,65,254,1,106,44,0,0,65,191,127,74,13,3,32,7,65,253,1,106,44,0,0,65,191,127,74,13,2,32,6,65,4,107,34,6,65,128,126,71,13,0,11,65,0,12,4,11,32,5,32,1,54,2,20,32,5,32,0,54,2,16,32,5,65,184,145,192,0,54,2,24,65,0,12,4,11,32,6,65,253,1,106,12,1,11,32,6,65,254,1,106,11,34,7,32,1,79,4,64,32,1,32,1,32,7,70,13,1,26,12,3,11,32,0,32,7,106,44,0,0,65,191,127,76,13,2,32,7,11,54,2,20,32,5,32,0,54,2,16,32,5,65,204,151,192,0,54,2,24,65,5,11,54,2,28,2,64,2,64,2,64,2,64,2,64,2,64,32,1,32,2,73,34,6,32,1,32,3,73,114,69,4,64,32,2,32,3,75,13,1,32,2,69,13,2,2,64,32,1,32,2,77,4,64,32,1,32,2,71,13,1,12,4,11,32,0,32,2,106,44,0,0,65,191,127,74,13,3,11,32,5,32,2,54,2,32,32,2,33,3,12,3,11,32,5,32,2,32,3,32,6,27,54,2,40,32,5,65,196,0,106,65,3,54,2,0,32,5,65,220,0,106,65,33,54,2,0,32,5,65,212,0,106,65,33,54,2,0,32,5,66,3,55,2,52,32,5,65,244,151,192,0,54,2,48,32,5,65,30,54,2,76,32,5,32,5,65,200,0,106,54,2,64,32,5,32,5,65,24,106,54,2,88,32,5,32,5,65,16,106,54,2,80,32,5,32,5,65,40,106,54,2,72,12,7,11,32,5,65,228,0,106,65,33,54,2,0,32,5,65,220,0,106,65,33,54,2,0,32,5,65,212,0,106,65,30,54,2,0,32,5,65,196,0,106,65,4,54,2,0,32,5,66,4,55,2,52,32,5,65,176,152,192,0,54,2,48,32,5,65,30,54,2,76,32,5,32,5,65,200,0,106,54,2,64,32,5,32,5,65,24,106,54,2,96,32,5,32,5,65,16,106,54,2,88,32,5,32,5,65,12,106,54,2,80,32,5,32,5,65,8,106,54,2,72,12,6,11,32,5,32,3,54,2,32,32,3,69,13,1,11,3,64,2,64,32,1,32,3,75,34,2,69,4,64,32,1,32,3,70,13,5,12,1,11,32,0,32,3,106,34,6,44,0,0,65,64,72,13,0,2,64,32,2,69,4,64,32,1,32,3,71,13,1,12,6,11,32,6,44,0,0,65,191,127,74,13,4,11,32,0,32,1,32,3,32,1,32,4,16,7,0,11,32,3,65,1,107,34,3,13,0,11,11,65,0,33,3,11,32,1,32,3,70,13,0,32,0,32,3,106,34,0,44,0,0,34,1,65,255,1,113,33,6,2,127,2,64,2,64,32,1,65,127,76,4,64,32,0,45,0,1,65,63,113,33,7,32,1,65,31,113,33,2,32,6,65,223,1,75,13,1,32,2,65,6,116,32,7,114,33,6,12,2,11,32,5,32,6,54,2,36,65,1,12,2,11,32,0,45,0,2,65,63,113,32,7,65,6,116,114,33,6,32,1,65,255,1,113,65,240,1,73,4,64,32,6,32,2,65,12,116,114,33,6,12,1,11,32,2,65,18,116,65,128,128,240,0,113,32,0,45,0,3,65,63,113,32,6,65,6,116,114,114,34,6,65,128,128,196,0,70,13,2,11,32,5,32,6,54,2,36,65,1,32,6,65,128,1,73,13,0,26,65,2,32,6,65,128,16,73,13,0,26,65,3,65,4,32,6,65,128,128,4,73,27,11,33,7,32,5,32,3,54,2,40,32,5,32,3,32,7,106,54,2,44,32,5,65,196,0,106,65,5,54,2,0,32,5,65,236,0,106,65,33,54,2,0,32,5,65,228,0,106,65,33,54,2,0,32,5,65,220,0,106,65,34,54,2,0,32,5,65,212,0,106,65,35,54,2,0,32,5,66,5,55,2,52,32,5,65,132,153,192,0,54,2,48,32,5,65,30,54,2,76,32,5,32,5,65,200,0,106,54,2,64,32,5,32,5,65,24,106,54,2,104,32,5,32,5,65,16,106,54,2,96,32,5,32,5,65,40,106,54,2,88,32,5,32,5,65,36,106,54,2,80,32,5,32,5,65,32,106,54,2,72,12,2,11,65,196,145,192,0,65,43,32,4,16,53,0,11,32,0,32,1,65,0,32,7,65,188,151,192,0,16,7,0,11,32,5,65,48,106,32,4,16,57,0,11,242,6,1,5,127,32,0,16,100,34,0,32,0,16,91,34,2,16,97,33,1,2,64,2,64,2,64,32,0,16,92,13,0,32,0,40,2,0,33,3,2,64,32,0,16,80,69,4,64,32,2,32,3,106,33,2,32,0,32,3,16,98,34,0,65,244,175,192,0,40,2,0,71,13,1,32,1,40,2,4,65,3,113,65,3,71,13,2,65,236,175,192,0,32,2,54,2,0,32,0,32,2,32,1,16,63,15,11,32,2,32,3,106,65,16,106,33,0,12,2,11,32,3,65,128,2,79,4,64,32,0,16,25,12,1,11,32,0,65,12,106,40,2,0,34,4,32,0,65,8,106,40,2,0,34,5,71,4,64,32,5,32,4,54,2,12,32,4,32,5,54,2,8,12,1,11,65,220,172,192,0,65,220,172,192,0,40,2,0,65,126,32,3,65,3,118,119,113,54,2,0,11,2,64,32,1,16,77,4,64,32,0,32,2,32,1,16,63,12,1,11,2,64,2,64,2,64,65,248,175,192,0,40,2,0,32,1,71,4,64,32,1,65,244,175,192,0,40,2,0,71,13,1,65,244,175,192,0,32,0,54,2,0,65,236,175,192,0,65,236,175,192,0,40,2,0,32,2,106,34,1,54,2,0,32,0,32,1,16,67,15,11,65,248,175,192,0,32,0,54,2,0,65,240,175,192,0,65,240,175,192,0,40,2,0,32,2,106,34,1,54,2,0,32,0,32,1,65,1,114,54,2,4,32,0,65,244,175,192,0,40,2,0,70,13,1,12,2,11,32,1,16,91,34,3,32,2,106,33,2,2,64,32,3,65,128,2,79,4,64,32,1,16,25,12,1,11,32,1,65,12,106,40,2,0,34,4,32,1,65,8,106,40,2,0,34,1,71,4,64,32,1,32,4,54,2,12,32,4,32,1,54,2,8,12,1,11,65,220,172,192,0,65,220,172,192,0,40,2,0,65,126,32,3,65,3,118,119,113,54,2,0,11,32,0,32,2,16,67,32,0,65,244,175,192,0,40,2,0,71,13,2,65,236,175,192,0,32,2,54,2,0,12,3,11,65,236,175,192,0,65,0,54,2,0,65,244,175,192,0,65,0,54,2,0,11,65,148,176,192,0,40,2,0,32,1,79,13,1,65,128,128,124,65,8,65,8,16,70,65,20,65,8,16,70,106,65,16,65,8,16,70,106,107,65,119,113,65,3,107,34,0,65,0,65,16,65,8,16,70,65,2,116,107,34,1,32,0,32,1,73,27,69,13,1,65,248,175,192,0,40,2,0,69,13,1,65,8,65,8,16,70,33,0,65,20,65,8,16,70,33,1,65,16,65,8,16,70,33,2,65,0,2,64,65,240,175,192,0,40,2,0,34,4,32,2,32,1,32,0,65,8,107,106,106,34,2,77,13,0,65,248,175,192,0,40,2,0,33,1,65,132,176,192,0,33,0,2,64,3,64,32,1,32,0,40,2,0,79,4,64,32,0,16,82,32,1,75,13,2,11,32,0,40,2,8,34,0,13,0,11,65,0,33,0,11,32,0,16,93,13,0,32,0,65,12,106,40,2,0,26,12,0,11,65,0,16,26,107,71,13,1,65,240,175,192,0,40,2,0,65,148,176,192,0,40,2,0,77,13,1,65,148,176,192,0,65,127,54,2,0,15,11,32,2,65,128,2,73,13,1,32,0,32,2,16,24,65,156,176,192,0,65,156,176,192,0,40,2,0,65,1,107,34,0,54,2,0,32,0,13,0,16,26,26,15,11,15,11,32,2,65,3,118,34,3,65,3,116,65,228,172,192,0,106,33,1,2,127,65,220,172,192,0,40,2,0,34,2,65,1,32,3,116,34,3,113,4,64,32,1,40,2,8,12,1,11,65,220,172,192,0,32,2,32,3,114,54,2,0,32,1,11,33,3,32,1,32,0,54,2,8,32,3,32,0,54,2,12,32,0,32,1,54,2,12,32,0,32,3,54,2,8,11,224,6,1,6,127,32,0,40,2,16,33,4,2,64,2,64,2,64,2,64,32,0,40,2,8,34,8,65,1,71,4,64,32,4,65,1,70,13,1,32,0,40,2,24,32,1,32,2,32,0,65,28,106,40,2,0,40,2,12,17,1,0,33,3,12,3,11,32,4,65,1,71,13,1,11,32,1,32,2,106,33,7,2,64,2,64,32,0,65,20,106,40,2,0,34,6,69,4,64,32,1,33,4,12,1,11,32,1,33,4,3,64,32,4,34,3,32,7,70,13,2,2,127,32,3,65,1,106,32,3,44,0,0,34,4,65,127,74,13,0,26,32,3,65,2,106,32,4,65,255,1,113,34,4,65,224,1,73,13,0,26,32,3,65,3,106,32,4,65,240,1,73,13,0,26,32,4,65,18,116,65,128,128,240,0,113,32,3,45,0,3,65,63,113,32,3,45,0,2,65,63,113,65,6,116,32,3,45,0,1,65,63,113,65,12,116,114,114,114,65,128,128,196,0,70,13,3,32,3,65,4,106,11,34,4,32,5,32,3,107,106,33,5,32,6,65,1,107,34,6,13,0,11,11,32,4,32,7,70,13,0,32,4,45,0,0,34,3,65,240,1,79,4,64,32,3,65,18,116,65,128,128,240,0,113,32,4,45,0,3,65,63,113,32,4,45,0,2,65,63,113,65,6,116,32,4,45,0,1,65,63,113,65,12,116,114,114,114,65,128,128,196,0,70,13,1,11,2,64,2,64,32,5,69,4,64,65,0,33,4,12,1,11,32,2,32,5,77,4,64,65,0,33,3,32,5,32,2,34,4,70,13,1,12,2,11,65,0,33,3,32,5,34,4,32,1,106,44,0,0,65,64,72,13,1,11,32,4,33,5,32,1,33,3,11,32,5,32,2,32,3,27,33,2,32,3,32,1,32,3,27,33,1,11,32,8,65,1,70,13,0,12,2,11,32,0,65,12,106,40,2,0,33,7,2,64,32,2,69,4,64,65,0,33,4,12,1,11,32,2,65,3,113,33,5,2,64,32,2,65,1,107,65,3,73,4,64,65,0,33,4,32,1,33,3,12,1,11,65,0,33,4,65,0,32,2,65,124,113,107,33,6,32,1,33,3,3,64,32,4,32,3,44,0,0,65,191,127,74,106,32,3,65,1,106,44,0,0,65,191,127,74,106,32,3,65,2,106,44,0,0,65,191,127,74,106,32,3,65,3,106,44,0,0,65,191,127,74,106,33,4,32,3,65,4,106,33,3,32,6,65,4,106,34,6,13,0,11,11,32,5,69,13,0,3,64,32,4,32,3,44,0,0,65,191,127,74,106,33,4,32,3,65,1,106,33,3,32,5,65,1,107,34,5,13,0,11,11,32,4,32,7,73,4,64,65,0,33,3,32,7,32,4,107,34,4,33,5,2,64,2,64,2,64,65,0,32,0,45,0,32,34,6,32,6,65,3,70,27,65,3,113,65,1,107,14,2,0,1,2,11,65,0,33,5,32,4,33,3,12,1,11,32,4,65,1,118,33,3,32,4,65,1,106,65,1,118,33,5,11,32,3,65,1,106,33,3,32,0,65,28,106,40,2,0,33,4,32,0,40,2,4,33,6,32,0,40,2,24,33,0,2,64,3,64,32,3,65,1,107,34,3,69,13,1,32,0,32,6,32,4,40,2,16,17,0,0,69,13,0,11,65,1,15,11,65,1,33,3,32,6,65,128,128,196,0,70,13,1,32,0,32,1,32,2,32,4,40,2,12,17,1,0,13,1,65,0,33,3,3,64,32,3,32,5,70,4,64,65,0,15,11,32,3,65,1,106,33,3,32,0,32,6,32,4,40,2,16,17,0,0,69,13,0,11,32,3,65,1,107,32,5,73,15,11,12,1,11,32,3,15,11,32,0,40,2,24,32,1,32,2,32,0,65,28,106,40,2,0,40,2,12,17,1,0,11,230,6,1,7,127,65,43,65,128,128,196,0,32,0,40,2,0,34,9,65,1,113,34,5,27,33,10,32,4,32,5,106,33,7,2,64,32,9,65,4,113,69,4,64,65,0,33,1,12,1,11,2,64,32,2,69,13,0,32,2,65,3,113,33,6,2,64,32,2,65,1,107,65,3,73,4,64,32,1,33,5,12,1,11,65,0,32,2,65,124,113,107,33,11,32,1,33,5,3,64,32,8,32,5,44,0,0,65,191,127,74,106,32,5,65,1,106,44,0,0,65,191,127,74,106,32,5,65,2,106,44,0,0,65,191,127,74,106,32,5,65,3,106,44,0,0,65,191,127,74,106,33,8,32,5,65,4,106,33,5,32,11,65,4,106,34,11,13,0,11,11,32,6,69,13,0,3,64,32,8,32,5,44,0,0,65,191,127,74,106,33,8,32,5,65,1,106,33,5,32,6,65,1,107,34,6,13,0,11,11,32,7,32,8,106,33,7,11,65,1,33,5,2,64,2,64,32,0,40,2,8,65,1,71,4,64,32,0,32,10,32,1,32,2,16,52,13,1,12,2,11,2,64,2,64,2,64,2,64,32,7,32,0,65,12,106,40,2,0,34,6,73,4,64,32,9,65,8,113,13,4,65,0,33,5,32,6,32,7,107,34,6,33,7,65,1,32,0,45,0,32,34,8,32,8,65,3,70,27,65,3,113,65,1,107,14,2,1,2,3,11,32,0,32,10,32,1,32,2,16,52,13,4,12,5,11,65,0,33,7,32,6,33,5,12,1,11,32,6,65,1,118,33,5,32,6,65,1,106,65,1,118,33,7,11,32,5,65,1,106,33,5,32,0,65,28,106,40,2,0,33,8,32,0,40,2,4,33,6,32,0,40,2,24,33,9,2,64,3,64,32,5,65,1,107,34,5,69,13,1,32,9,32,6,32,8,40,2,16,17,0,0,69,13,0,11,65,1,15,11,65,1,33,5,32,6,65,128,128,196,0,70,13,1,32,0,32,10,32,1,32,2,16,52,13,1,32,0,40,2,24,32,3,32,4,32,0,40,2,28,40,2,12,17,1,0,13,1,32,0,40,2,28,33,1,32,0,40,2,24,33,0,65,0,33,5,2,127,3,64,32,7,32,5,32,7,70,13,1,26,32,5,65,1,106,33,5,32,0,32,6,32,1,40,2,16,17,0,0,69,13,0,11,32,5,65,1,107,11,32,7,73,33,5,12,1,11,32,0,40,2,4,33,8,32,0,65,48,54,2,4,32,0,45,0,32,33,9,32,0,65,1,58,0,32,32,0,32,10,32,1,32,2,16,52,13,0,65,0,33,5,32,6,32,7,107,34,1,33,2,2,64,2,64,2,64,65,1,32,0,45,0,32,34,6,32,6,65,3,70,27,65,3,113,65,1,107,14,2,0,1,2,11,65,0,33,2,32,1,33,5,12,1,11,32,1,65,1,118,33,5,32,1,65,1,106,65,1,118,33,2,11,32,5,65,1,106,33,5,32,0,65,28,106,40,2,0,33,6,32,0,40,2,4,33,1,32,0,40,2,24,33,7,2,64,3,64,32,5,65,1,107,34,5,69,13,1,32,7,32,1,32,6,40,2,16,17,0,0,69,13,0,11,65,1,15,11,65,1,33,5,32,1,65,128,128,196,0,70,13,0,32,0,40,2,24,32,3,32,4,32,0,40,2,28,40,2,12,17,1,0,13,0,32,0,40,2,28,33,3,32,0,40,2,24,33,4,65,0,33,6,2,64,3,64,32,2,32,6,70,13,1,32,6,65,1,106,33,6,32,4,32,1,32,3,40,2,16,17,0,0,69,13,0,11,32,6,65,1,107,32,2,73,13,1,11,32,0,32,9,58,0,32,32,0,32,8,54,2,4,65,0,15,11,32,5,15,11,32,0,40,2,24,32,3,32,4,32,0,65,28,106,40,2,0,40,2,12,17,1,0,11,132,52,2,36,127,17,126,35,0,65,240,1,107,34,14,36,0,32,14,65,56,106,33,16,32,5,33,8,65,6,33,11,2,64,2,64,2,64,32,6,65,8,73,13,0,65,7,33,11,32,6,65,255,255,255,255,0,75,13,0,32,7,69,4,64,65,16,33,11,12,1,11,65,8,33,11,32,8,65,4,73,13,0,32,6,65,8,79,4,64,32,16,65,16,106,66,0,55,2,0,32,16,65,12,106,65,1,54,2,0,32,16,65,8,106,32,7,54,2,0,32,16,65,4,106,32,6,54,2,0,32,16,65,24,106,66,0,55,2,0,32,16,65,32,106,66,0,55,2,0,32,16,65,40,106,66,0,55,2,0,32,16,65,48,106,66,0,55,2,0,32,16,65,56,106,66,0,55,2,0,32,16,65,196,0,106,32,8,54,2,0,32,16,65,64,107,65,1,54,2,0,32,16,65,0,58,0,0,12,3,11,32,16,65,6,58,0,1,12,1,11,32,16,32,11,58,0,1,11,32,16,65,1,58,0,0,11,2,64,2,64,2,64,2,64,2,64,32,14,45,0,56,65,1,70,4,64,32,14,45,0,57,33,5,32,14,66,0,55,2,220,1,32,14,65,188,129,192,0,40,2,0,54,2,216,1,32,14,32,5,58,0,231,1,32,14,65,144,1,106,34,5,32,14,65,216,1,106,16,58,32,14,65,231,1,106,32,5,16,23,69,13,1,12,5,11,32,14,65,8,106,34,6,32,14,65,208,0,106,41,3,0,55,3,0,32,14,65,16,106,34,7,32,14,65,216,0,106,41,3,0,55,3,0,32,14,65,24,106,34,8,32,14,65,224,0,106,41,3,0,55,3,0,32,14,65,32,106,34,11,32,14,65,232,0,106,41,3,0,55,3,0,32,14,65,40,106,34,16,32,14,65,240,0,106,41,3,0,55,3,0,32,14,65,48,106,34,13,32,14,65,248,0,106,41,3,0,55,3,0,32,14,32,14,65,200,0,106,41,3,0,55,3,0,32,14,41,2,60,33,44,32,14,32,14,65,196,0,106,40,2,0,54,2,152,1,32,14,32,44,55,3,144,1,32,14,65,164,1,106,32,6,41,3,0,55,2,0,32,14,65,172,1,106,32,7,41,3,0,55,2,0,32,14,65,180,1,106,32,8,41,3,0,55,2,0,32,14,65,188,1,106,32,11,41,3,0,55,2,0,32,14,65,196,1,106,32,16,41,3,0,55,2,0,32,14,65,204,1,106,32,13,41,3,0,55,2,0,32,14,32,14,41,3,0,55,2,156,1,32,14,65,56,106,34,6,65,4,106,32,14,65,144,1,106,65,196,0,16,20,26,32,6,65,0,54,2,72,32,6,65,19,54,2,0,32,6,65,2,58,0,80,2,64,2,64,32,5,65,0,78,4,64,32,5,13,1,65,1,33,6,12,2,11,16,83,0,11,2,64,32,5,34,7,65,1,16,16,34,6,69,13,0,32,6,16,100,16,80,13,0,32,6,32,7,16,34,26,11,32,6,69,13,3,11,2,127,32,1,33,22,32,2,33,17,32,3,33,7,32,4,33,11,32,6,33,16,32,5,33,30,35,0,65,224,8,107,34,19,36,0,2,64,32,14,65,56,106,34,20,65,12,106,40,2,0,34,15,65,2,116,34,10,4,64,32,20,40,2,4,33,13,32,19,65,224,0,106,34,18,65,128,8,16,34,26,32,19,33,8,32,15,65,3,116,34,15,32,13,32,13,32,15,73,27,34,13,32,13,32,10,112,107,33,10,35,0,65,128,8,107,34,15,36,0,2,64,2,64,2,64,32,10,65,255,255,255,1,113,32,10,71,13,0,32,10,65,10,116,34,13,65,0,72,13,0,65,8,33,12,32,13,4,64,32,13,65,8,16,75,34,12,69,13,2,11,32,8,32,12,54,2,0,32,8,65,8,106,65,0,54,2,0,32,8,65,4,106,32,13,65,10,118,34,13,54,2,0,32,15,32,18,65,128,8,16,20,33,18,32,10,32,13,75,4,64,35,0,65,32,107,34,15,36,0,32,8,34,13,65,4,106,40,2,0,34,9,65,1,116,34,12,32,10,32,10,32,12,73,27,34,12,65,4,32,12,65,4,75,27,34,12,65,255,255,255,1,113,32,12,70,65,3,116,33,21,32,12,65,10,116,33,12,2,64,32,9,4,64,32,15,65,24,106,65,8,54,2,0,32,15,32,9,65,10,116,54,2,20,32,15,32,13,40,2,0,54,2,16,12,1,11,32,15,65,0,54,2,16,11,32,15,32,12,32,21,32,15,65,16,106,16,36,2,64,2,64,32,15,40,2,0,65,1,70,4,64,32,15,65,8,106,40,2,0,34,0,69,13,1,32,15,40,2,4,32,0,16,95,0,11,32,15,40,2,4,33,9,32,13,65,4,106,32,15,65,8,106,40,2,0,65,10,118,54,2,0,32,13,32,9,54,2,0,32,15,65,32,106,36,0,12,1,11,16,83,0,11,32,8,40,2,0,33,12,32,8,65,8,106,40,2,0,33,9,11,32,12,32,9,65,10,116,106,33,12,32,10,65,2,79,4,64,32,10,65,1,107,34,15,65,3,113,33,13,32,10,65,2,107,65,3,79,4,64,65,0,32,15,65,124,113,107,33,15,3,64,32,12,32,18,65,128,8,16,20,34,12,65,128,8,106,32,18,65,128,8,16,20,26,32,12,65,128,16,106,32,18,65,128,8,16,20,26,32,12,65,128,24,106,32,18,65,128,8,16,20,26,32,12,65,128,32,106,33,12,32,15,65,4,106,34,15,13,0,11,11,32,13,4,64,3,64,32,12,32,18,65,128,8,16,20,65,128,8,106,33,12,32,13,65,1,107,34,13,13,0,11,11,32,9,32,10,106,65,1,107,33,9,11,32,8,65,8,106,32,10,4,127,32,12,32,18,65,128,8,16,20,26,32,9,65,1,106,5,32,9,11,54,2,0,32,18,65,128,8,106,36,0,12,2,11,16,83,0,11,32,13,65,8,16,95,0,11,2,127,65,8,32,20,65,196,0,106,40,2,0,34,8,65,4,32,20,65,64,107,40,2,0,34,13,27,32,30,75,13,0,26,65,9,32,8,65,127,32,13,27,32,30,73,13,0,26,65,11,32,11,65,8,73,13,0,26,32,19,65,16,106,33,18,32,11,33,13,35,0,65,224,3,107,34,8,36,0,32,8,65,216,1,106,34,11,65,192,0,16,6,32,8,32,11,65,200,0,16,20,34,10,65,224,0,106,65,232,0,16,34,32,10,65,204,0,106,32,30,54,2,0,32,10,65,200,1,106,65,28,58,0,0,32,17,54,2,0,32,10,65,208,0,106,32,20,34,15,41,2,4,55,3,0,32,10,65,216,0,106,32,15,40,2,0,54,2,0,32,10,65,220,0,106,32,15,45,0,80,54,2,0,32,10,32,15,65,12,106,40,2,0,54,2,72,32,10,65,228,0,106,33,8,32,10,65,200,0,106,33,12,2,64,32,17,65,228,0,77,4,64,32,8,32,22,32,17,16,20,26,32,17,65,28,106,33,9,12,1,11,32,8,32,22,65,228,0,16,20,26,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,12,66,0,16,2,32,22,65,228,0,106,33,22,32,17,65,228,0,107,34,8,32,8,65,7,118,32,8,65,255,0,113,69,107,34,8,65,7,116,34,17,107,33,9,32,8,69,32,8,65,7,116,69,114,69,4,64,32,17,33,11,32,22,33,8,3,64,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,8,66,0,16,2,32,8,65,128,1,106,33,8,32,11,65,128,1,107,34,11,13,0,11,11,32,9,65,129,1,73,4,64,32,12,32,17,32,22,106,32,9,16,20,26,12,1,11,32,9,65,128,1,65,220,136,192,0,16,42,0,11,32,10,32,9,58,0,200,1,32,10,32,13,54,2,208,1,2,64,32,9,65,255,1,113,34,8,65,252,0,77,4,64,32,8,32,12,106,32,13,54,0,0,32,9,65,4,106,33,9,12,1,11,32,8,32,12,106,32,10,65,208,1,106,34,17,65,128,1,32,8,107,34,22,16,20,26,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,12,66,0,16,2,32,8,65,252,0,107,34,11,65,255,0,113,33,9,32,17,32,22,106,34,8,32,11,65,128,127,113,106,33,17,2,64,32,11,65,255,0,77,13,0,32,11,65,7,118,65,7,116,34,11,69,13,0,3,64,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,8,66,0,16,2,32,8,65,128,1,106,33,8,32,11,65,128,1,107,34,11,13,0,11,11,32,12,32,17,32,9,16,20,26,11,32,10,32,9,58,0,200,1,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,32,13,65,128,1,32,9,65,255,1,113,34,8,107,34,11,75,4,64,32,8,4,64,32,8,32,12,106,32,7,32,11,16,20,26,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,12,66,0,16,2,32,13,32,11,107,33,13,32,7,32,11,106,33,7,11,32,13,32,13,65,7,118,32,13,65,255,0,113,69,32,13,65,0,71,113,107,34,8,65,7,116,34,17,107,33,13,32,8,69,32,8,65,7,116,69,114,13,1,32,17,33,11,32,7,33,8,3,64,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,8,66,0,16,2,32,8,65,128,1,106,33,8,32,11,65,128,1,107,34,11,13,0,11,12,1,11,32,8,32,12,106,32,7,32,13,16,20,26,32,9,32,13,106,33,13,12,1,11,32,13,65,129,1,79,13,1,32,12,32,7,32,17,106,32,13,16,20,26,11,32,10,32,13,58,0,200,1,32,15,40,2,72,34,7,4,64,32,10,32,15,65,204,0,106,40,2,0,34,9,54,2,208,1,32,13,65,255,1,113,34,8,65,252,0,77,4,64,32,8,32,12,106,32,9,54,0,0,32,13,65,4,106,33,13,12,5,11,32,8,32,12,106,32,10,65,208,1,106,34,17,65,128,1,32,8,107,34,22,16,20,26,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,12,66,0,16,2,32,8,65,252,0,107,34,11,65,255,0,113,33,13,32,17,32,22,106,34,8,32,11,65,128,127,113,106,33,17,32,11,65,255,0,77,13,3,32,11,65,7,118,65,7,116,34,11,69,13,3,3,64,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,8,66,0,16,2,32,8,65,128,1,106,33,8,32,11,65,128,1,107,34,11,13,0,11,12,3,11,32,10,65,0,54,2,208,1,32,13,65,255,1,113,34,7,65,252,0,77,4,64,32,7,32,12,106,65,0,54,0,0,32,13,65,4,106,33,9,12,5,11,32,7,32,12,106,32,10,65,208,1,106,34,8,65,128,1,32,7,107,34,11,16,20,26,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,12,66,0,16,2,32,7,65,252,0,107,34,7,65,255,0,113,33,9,32,8,32,11,106,34,8,32,7,65,128,127,113,106,33,13,32,7,65,255,0,77,13,1,32,7,65,7,118,65,7,116,34,11,69,13,1,3,64,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,8,66,0,16,2,32,8,65,128,1,106,33,8,32,11,65,128,1,107,34,11,13,0,11,12,1,11,32,13,65,128,1,65,220,136,192,0,16,42,0,11,32,12,32,13,32,9,16,20,26,12,2,11,32,12,32,17,32,13,16,20,26,11,32,10,32,13,58,0,200,1,2,64,65,128,1,32,13,65,255,1,113,34,8,107,34,11,32,9,73,4,64,32,8,4,64,32,8,32,12,106,32,7,32,11,16,20,26,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,12,66,0,16,2,32,9,32,11,107,33,9,32,7,32,11,106,33,7,11,32,9,32,9,65,7,118,34,8,32,9,65,255,0,113,69,32,9,65,0,71,113,34,11,107,34,17,65,7,116,34,13,107,33,9,32,17,69,32,13,69,114,13,1,32,8,32,11,107,65,7,116,33,11,32,7,33,8,3,64,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,8,66,0,16,2,32,8,65,128,1,106,33,8,32,11,65,128,1,107,34,11,13,0,11,12,1,11,32,8,32,12,106,32,7,32,9,16,20,26,32,9,32,13,106,33,9,12,1,11,32,9,65,129,1,79,13,1,32,12,32,7,32,13,106,32,9,16,20,26,11,32,10,32,9,58,0,200,1,32,15,65,28,106,40,2,0,34,13,65,33,79,13,1,32,10,32,13,54,2,208,1,32,9,65,255,1,113,34,7,65,252,0,77,4,64,32,7,32,12,106,32,13,54,0,0,32,9,65,4,106,33,9,12,4,11,32,7,32,12,106,32,10,65,208,1,106,34,8,65,128,1,32,7,107,34,11,16,20,26,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,12,66,0,16,2,32,7,65,252,0,107,34,7,65,255,0,113,33,9,32,8,32,11,106,34,8,32,7,65,128,127,113,106,33,17,32,7,65,255,0,77,13,2,32,7,65,7,118,65,7,116,34,11,69,13,2,3,64,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,8,66,0,16,2,32,8,65,128,1,106,33,8,32,11,65,128,1,107,34,11,13,0,11,12,2,11,32,9,65,128,1,65,220,136,192,0,16,42,0,11,32,13,65,32,65,204,131,192,0,16,42,0,11,32,12,32,17,32,9,16,20,26,11,32,15,65,32,106,33,7,32,10,32,9,58,0,200,1,2,64,2,64,2,64,2,64,65,128,1,32,9,65,255,1,113,34,8,107,34,11,32,13,73,4,64,32,8,4,64,32,8,32,12,106,32,7,32,11,16,20,26,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,12,66,0,16,2,32,13,32,11,107,33,13,32,11,32,15,106,65,32,106,33,7,11,32,13,32,13,65,7,118,34,8,32,13,65,255,0,113,69,32,13,65,0,71,113,34,11,107,34,17,65,7,116,34,13,107,33,15,32,17,69,32,13,69,114,13,1,32,8,32,11,107,65,7,116,33,11,32,7,33,8,3,64,32,10,32,10,41,3,64,66,128,1,124,55,3,64,32,10,32,8,66,0,16,2,32,8,65,128,1,106,33,8,32,11,65,128,1,107,34,11,13,0,11,12,1,11,32,8,32,12,106,32,7,32,13,16,20,26,32,9,32,13,106,33,15,12,1,11,32,15,65,129,1,79,13,1,32,12,32,7,32,13,106,32,15,16,20,26,11,32,10,32,15,58,0,200,1,32,10,65,208,1,106,32,10,65,208,1,16,20,26,32,10,65,216,3,106,34,11,66,0,55,3,0,32,10,65,208,3,106,34,13,66,0,55,3,0,32,10,65,200,3,106,34,15,66,0,55,3,0,32,10,65,192,3,106,34,17,66,0,55,3,0,32,10,65,184,3,106,34,22,66,0,55,3,0,32,10,65,176,3,106,34,9,66,0,55,3,0,32,10,65,168,3,106,34,12,66,0,55,3,0,32,10,66,0,55,3,160,3,32,10,32,10,41,3,144,2,32,10,65,152,3,106,45,0,0,34,7,173,124,55,3,144,2,32,10,65,152,2,106,33,8,32,7,65,128,1,71,4,64,32,7,32,8,106,65,128,1,32,7,107,16,34,26,11,32,10,65,0,58,0,152,3,32,10,65,208,1,106,32,8,32,10,65,160,3,106,16,37,32,18,65,56,106,32,11,41,3,0,55,0,0,32,18,65,48,106,32,13,41,3,0,55,0,0,32,18,65,40,106,32,15,41,3,0,55,0,0,32,18,65,32,106,32,17,41,3,0,55,0,0,32,18,65,24,106,32,22,41,3,0,55,0,0,32,18,65,16,106,32,9,41,3,0,55,0,0,32,18,65,8,106,32,12,41,3,0,55,0,0,32,18,32,10,41,3,160,3,55,0,0,32,10,65,224,3,106,36,0,12,1,11,32,15,65,128,1,65,220,136,192,0,16,42,0,11,32,20,40,2,12,34,8,65,2,116,34,7,69,13,2,32,8,65,3,116,34,8,32,20,40,2,4,34,11,32,8,32,11,75,27,34,8,32,7,32,8,32,7,110,34,11,108,32,8,107,106,34,7,32,19,40,2,8,77,4,64,32,20,45,0,80,33,15,32,19,40,2,0,33,8,32,19,65,152,1,106,32,19,65,200,0,106,41,3,0,55,3,0,32,19,65,144,1,106,32,19,65,64,107,41,3,0,55,3,0,32,19,65,136,1,106,32,19,65,56,106,41,3,0,55,3,0,32,19,65,128,1,106,32,19,65,48,106,41,3,0,55,3,0,32,19,65,248,0,106,32,19,65,40,106,41,3,0,55,3,0,32,19,65,240,0,106,32,19,65,32,106,41,3,0,55,3,0,32,19,65,232,0,106,32,19,65,24,106,41,3,0,55,3,0,32,19,32,19,41,3,16,55,3,96,32,19,32,11,54,2,88,32,19,32,7,54,2,84,32,19,32,8,54,2,80,2,127,32,16,33,22,65,0,33,13,35,0,65,144,24,107,34,9,36,0,32,9,65,200,8,106,32,19,65,224,0,106,34,7,65,56,106,41,0,0,55,3,0,32,9,65,192,8,106,32,7,65,48,106,41,0,0,55,3,0,32,9,65,184,8,106,32,7,65,40,106,41,0,0,55,3,0,32,9,65,176,8,106,32,7,65,32,106,41,0,0,55,3,0,32,9,65,168,8,106,32,7,65,24,106,41,0,0,55,3,0,32,9,65,160,8,106,32,7,65,16,106,41,0,0,55,3,0,32,9,65,152,8,106,32,7,65,8,106,41,0,0,55,3,0,32,9,32,7,41,0,0,55,3,144,8,32,20,65,8,106,40,2,0,33,23,32,20,65,12,106,40,2,0,33,25,32,19,65,208,0,106,34,7,40,2,0,33,17,32,7,40,2,4,33,18,32,20,40,2,0,33,26,32,7,40,2,8,33,24,32,9,65,144,16,106,65,128,8,16,34,26,32,24,65,2,116,33,21,2,64,2,64,2,64,2,64,32,25,4,64,32,17,65,136,8,106,33,8,32,24,65,12,116,33,27,32,17,33,7,3,64,32,9,65,0,54,2,8,32,9,65,4,54,2,36,32,9,65,4,54,2,28,32,9,65,192,0,54,2,20,32,9,32,13,54,2,12,32,9,32,9,65,12,106,54,2,32,32,9,32,9,65,8,106,54,2,24,32,9,32,9,65,144,8,106,54,2,16,32,9,65,16,106,65,3,32,9,65,144,16,106,65,128,8,16,5,65,255,1,113,34,12,65,18,71,13,2,2,64,32,13,32,21,108,34,28,32,18,73,4,64,32,13,65,1,106,33,20,65,128,8,33,12,32,9,65,144,16,106,33,16,32,7,33,11,3,64,32,12,65,7,77,13,8,32,11,32,16,41,0,0,55,3,0,32,12,32,12,65,8,32,12,65,8,73,27,34,12,107,34,10,69,13,2,32,10,65,8,73,34,29,13,8,32,12,32,16,106,34,12,32,10,65,8,32,29,27,34,29,106,33,16,32,11,65,8,106,32,12,41,0,0,55,3,0,32,11,65,16,106,33,11,32,10,32,29,107,34,12,13,0,11,12,1,11,32,28,32,18,65,160,140,192,0,16,40,0,11,32,9,65,1,54,2,8,32,9,65,4,54,2,36,32,9,65,4,54,2,28,32,9,65,192,0,54,2,20,32,9,32,13,54,2,12,32,9,32,9,65,12,106,54,2,32,32,9,32,9,65,8,106,54,2,24,32,9,32,9,65,144,8,106,54,2,16,32,9,65,16,106,65,3,32,9,65,144,16,106,65,128,8,16,5,65,255,1,113,34,12,65,18,71,13,2,2,64,32,28,65,1,114,34,11,32,18,73,4,64,65,128,8,33,12,32,9,65,144,16,106,33,16,32,8,33,11,3,64,32,12,65,7,77,13,8,32,11,65,8,107,32,16,41,0,0,55,3,0,32,12,32,12,65,8,32,12,65,8,73,27,34,10,107,34,13,69,13,2,32,13,65,8,73,34,12,13,8,32,10,32,16,106,34,10,32,13,65,8,32,12,27,34,12,106,33,16,32,11,32,10,41,0,0,55,3,0,32,11,65,16,106,33,11,32,13,32,12,107,34,12,13,0,11,12,1,11,32,11,32,18,65,160,140,192,0,16,40,0,11,32,8,32,27,106,33,8,32,7,32,27,106,33,7,32,20,34,13,32,25,71,13,0,11,11,32,23,4,64,32,24,65,1,107,33,33,32,21,65,1,107,33,34,32,15,173,66,255,1,131,33,58,32,9,65,200,16,106,33,29,32,18,173,33,59,32,25,173,33,60,32,23,173,33,56,32,15,65,255,1,113,65,1,107,33,35,32,26,65,16,71,33,36,3,64,32,57,34,47,66,0,82,33,37,32,47,66,1,124,33,57,32,47,80,33,20,65,0,33,7,65,127,33,27,66,0,33,48,3,64,32,48,34,44,66,1,124,33,48,32,25,4,64,32,44,80,34,38,65,1,116,33,39,65,0,32,24,32,48,167,108,32,44,66,3,81,27,33,40,32,24,32,44,167,108,33,32,32,37,32,44,66,1,86,114,33,41,66,0,33,45,32,7,33,8,3,64,65,0,33,15,32,9,65,16,106,65,128,8,16,34,26,66,0,33,49,66,0,33,50,66,0,33,51,66,0,33,52,66,0,33,53,66,0,33,54,65,0,33,28,2,127,2,64,2,64,2,64,32,35,14,2,1,0,2,11,32,41,69,13,0,66,0,33,46,32,20,33,15,65,0,12,2,11,65,1,33,28,32,58,33,49,32,56,33,50,32,59,33,51,32,44,33,52,32,45,33,53,32,47,33,54,11,32,47,80,69,4,64,66,0,33,46,65,0,12,1,11,65,1,33,15,66,0,33,46,32,39,32,44,66,1,32,28,27,80,69,13,0,26,32,9,65,144,8,106,34,10,34,11,65,128,8,16,34,26,66,1,33,46,32,9,66,1,55,3,192,16,32,9,32,49,55,3,184,16,32,9,32,50,55,3,176,16,32,9,32,51,55,3,168,16,32,9,32,52,55,3,160,16,32,9,32,53,55,3,152,16,32,9,32,54,55,3,144,16,32,29,65,200,7,16,34,26,32,9,65,16,106,34,16,32,11,32,9,65,144,16,106,34,13,65,0,16,4,32,10,65,128,8,16,34,26,32,13,32,16,65,128,8,16,20,26,32,16,32,11,32,13,65,0,16,4,65,2,11,33,12,2,64,32,21,4,64,32,12,32,24,79,13,1,32,36,32,15,65,1,115,113,33,42,32,17,32,8,32,12,106,65,10,116,106,33,13,32,21,32,45,167,34,10,108,32,32,106,32,12,106,34,11,65,0,32,21,32,11,32,21,112,27,106,65,1,107,33,11,2,64,2,64,3,64,32,8,32,12,106,34,26,65,1,107,32,11,32,26,32,21,112,65,1,70,27,33,23,2,127,2,64,2,64,2,127,32,28,69,4,64,32,18,32,23,77,13,2,32,17,32,23,65,10,116,106,12,1,11,32,12,65,255,0,113,34,11,4,64,32,9,65,16,106,32,11,65,3,116,106,12,1,11,32,9,65,144,8,106,34,43,34,16,65,128,8,16,34,26,32,9,32,46,66,1,124,34,46,55,3,192,16,32,9,32,49,55,3,184,16,32,9,32,50,55,3,176,16,32,9,32,51,55,3,168,16,32,9,32,52,55,3,160,16,32,9,32,53,55,3,152,16,32,9,32,54,55,3,144,16,32,29,65,200,7,16,34,26,32,9,65,16,106,34,11,32,16,32,9,65,144,16,106,34,31,65,0,16,4,32,43,65,128,8,16,34,26,32,31,32,11,65,128,8,16,20,26,32,11,32,16,32,31,65,0,16,4,32,11,11,41,3,0,34,55,66,32,136,167,32,25,112,33,16,2,127,2,64,2,64,32,15,4,64,32,38,69,13,1,32,12,65,1,107,33,11,12,5,11,32,45,32,16,173,81,13,1,32,21,32,12,69,107,12,2,11,32,16,173,32,45,82,4,64,32,32,32,12,69,107,33,11,65,0,12,5,11,32,12,32,27,106,33,11,12,3,11,32,12,32,34,106,11,32,24,107,33,11,32,40,12,2,11,32,23,32,18,65,144,140,192,0,16,40,0,11,32,10,33,16,65,0,11,33,31,32,16,32,21,108,32,11,32,31,106,32,11,173,32,55,66,255,255,255,255,15,131,34,55,32,55,126,66,32,136,126,66,32,136,167,65,127,115,106,32,21,112,106,34,11,32,18,73,4,64,32,18,32,23,77,13,2,32,18,32,26,77,13,3,32,9,65,144,8,106,34,16,32,17,32,23,65,10,116,106,65,128,8,16,20,26,32,9,65,144,16,106,34,26,32,17,32,11,65,10,116,106,65,128,8,16,20,26,32,13,32,16,32,26,32,42,16,4,32,12,32,33,70,13,5,32,13,65,128,8,106,33,13,32,12,65,1,106,33,12,32,23,65,1,106,33,11,12,1,11,11,32,11,32,18,65,144,140,192,0,16,40,0,11,32,23,32,18,65,144,140,192,0,16,40,0,11,32,26,32,18,65,160,140,192,0,16,40,0,11,65,128,135,192,0,65,57,65,232,134,192,0,16,53,0,11,32,8,32,21,106,33,8,32,45,66,1,124,34,45,32,60,82,13,0,11,11,32,7,32,24,106,33,7,32,24,32,27,106,33,27,32,48,66,4,82,13,0,11,32,56,32,57,82,13,0,11,11,32,18,32,21,65,1,107,34,16,77,13,1,32,9,65,144,8,106,32,17,32,16,65,10,116,106,65,128,8,16,20,26,32,25,65,2,79,4,64,65,1,33,7,3,64,32,18,32,7,32,21,108,32,16,106,34,8,77,13,4,32,7,65,1,106,33,7,32,9,65,144,16,106,32,17,32,8,65,10,116,106,65,128,8,16,20,26,65,0,33,11,3,64,32,9,65,144,8,106,32,11,106,34,8,32,8,41,3,0,32,9,65,144,16,106,32,11,106,34,13,41,3,0,133,55,3,0,32,8,65,8,106,34,20,32,20,41,3,0,32,13,65,8,106,41,3,0,133,55,3,0,32,8,65,16,106,34,20,32,20,41,3,0,32,13,65,16,106,41,3,0,133,55,3,0,32,8,65,24,106,34,8,32,8,41,3,0,32,13,65,24,106,41,3,0,133,55,3,0,32,11,65,32,106,34,11,65,128,8,71,13,0,11,32,7,32,25,71,13,0,11,11,65,0,33,12,32,9,65,144,16,106,65,128,8,16,34,26,3,64,32,9,65,144,16,106,32,12,106,34,7,32,9,65,144,8,106,32,12,106,34,8,41,3,0,55,0,0,32,7,65,8,106,32,8,65,8,106,41,3,0,55,0,0,32,7,65,16,106,32,8,65,16,106,41,3,0,55,0,0,32,7,65,24,106,32,8,65,24,106,41,3,0,55,0,0,32,12,65,32,106,34,12,65,128,8,71,13,0,11,32,9,65,128,8,54,2,20,32,9,32,9,65,144,16,106,54,2,16,32,9,65,16,106,65,1,32,22,32,30,16,5,65,255,1,113,33,12,11,32,9,65,144,24,106,36,0,32,12,12,3,11,32,16,32,18,65,144,140,192,0,16,40,0,11,32,8,32,18,65,144,140,192,0,16,40,0,11,65,220,131,192,0,65,43,32,9,65,16,106,65,136,132,192,0,65,240,132,192,0,16,38,0,11,65,255,1,113,12,1,11,65,6,11,32,19,40,2,4,34,8,69,32,8,65,10,116,69,114,69,4,64,32,19,40,2,0,16,8,11,32,19,65,224,8,106,36,0,12,2,11,65,176,131,192,0,65,25,65,160,131,192,0,16,53,0,11,65,176,131,192,0,65,25,65,160,131,192,0,16,53,0,11,65,255,1,113,34,7,65,18,71,4,64,32,14,66,0,55,2,220,1,32,14,65,188,129,192,0,40,2,0,54,2,216,1,32,14,32,7,58,0,231,1,32,14,65,144,1,106,34,7,32,14,65,216,1,106,16,58,32,14,65,231,1,106,32,7,16,23,13,5,32,14,40,2,216,1,34,8,13,2,11,32,5,173,66,129,128,128,128,16,126,33,44,65,0,33,5,12,3,11,32,14,40,2,220,1,32,14,40,2,216,1,34,7,32,14,40,2,224,1,16,0,33,6,4,64,32,7,16,8,11,65,1,33,5,12,2,11,32,8,32,14,41,2,220,1,34,44,66,32,136,167,16,0,32,44,167,4,64,32,8,16,8,11,32,5,4,64,32,6,16,8,11,33,6,65,1,33,5,12,1,11,32,5,65,1,16,95,0,11,32,4,4,64,32,3,16,8,11,32,2,4,64,32,1,16,8,11,2,64,32,5,69,4,64,2,64,32,44,167,34,2,32,44,66,32,136,167,34,1,77,13,0,32,1,69,4,64,32,6,16,8,65,1,33,6,12,1,11,32,6,32,2,65,1,32,1,16,71,34,6,69,13,2,11,32,0,32,1,54,2,4,32,0,32,6,54,2,0,32,14,65,240,1,106,36,0,15,11,32,6,16,1,0,11,32,1,65,1,16,95,0,11,65,152,128,192,0,65,55,32,14,65,232,1,106,65,172,129,192,0,65,156,129,192,0,16,38,0,11,248,4,1,10,127,35,0,65,48,107,34,3,36,0,32,3,65,36,106,32,1,54,2,0,32,3,65,3,58,0,40,32,3,66,128,128,128,128,128,4,55,3,8,32,3,32,0,54,2,32,32,3,65,0,54,2,24,32,3,65,0,54,2,16,2,64,2,64,2,64,32,2,40,2,8,34,10,69,4,64,32,2,65,20,106,40,2,0,34,4,69,13,1,32,2,40,2,0,33,1,32,2,40,2,16,33,0,32,4,65,3,116,65,8,107,65,3,118,65,1,106,34,7,33,4,3,64,32,1,65,4,106,40,2,0,34,5,4,64,32,3,40,2,32,32,1,40,2,0,32,5,32,3,40,2,36,40,2,12,17,1,0,13,4,11,32,0,40,2,0,32,3,65,8,106,32,0,65,4,106,40,2,0,17,0,0,13,3,32,0,65,8,106,33,0,32,1,65,8,106,33,1,32,4,65,1,107,34,4,13,0,11,12,1,11,32,2,65,12,106,40,2,0,34,0,69,13,0,32,0,65,5,116,34,11,65,32,107,65,5,118,65,1,106,33,7,32,2,40,2,0,33,1,3,64,32,1,65,4,106,40,2,0,34,0,4,64,32,3,40,2,32,32,1,40,2,0,32,0,32,3,40,2,36,40,2,12,17,1,0,13,3,11,32,3,32,4,32,10,106,34,5,65,28,106,45,0,0,58,0,40,32,3,32,5,65,4,106,41,2,0,66,32,137,55,3,8,32,5,65,24,106,40,2,0,33,6,32,2,40,2,16,33,8,65,0,33,9,65,0,33,0,2,64,2,64,2,64,32,5,65,20,106,40,2,0,65,1,107,14,2,0,2,1,11,32,6,65,3,116,32,8,106,34,12,40,2,4,65,31,71,13,1,32,12,40,2,0,40,2,0,33,6,11,65,1,33,0,11,32,3,32,6,54,2,20,32,3,32,0,54,2,16,32,5,65,16,106,40,2,0,33,0,2,64,2,64,2,64,32,5,65,12,106,40,2,0,65,1,107,14,2,0,2,1,11,32,0,65,3,116,32,8,106,34,6,40,2,4,65,31,71,13,1,32,6,40,2,0,40,2,0,33,0,11,65,1,33,9,11,32,3,32,0,54,2,28,32,3,32,9,54,2,24,32,8,32,5,40,2,0,65,3,116,106,34,0,40,2,0,32,3,65,8,106,32,0,40,2,4,17,0,0,13,2,32,1,65,8,106,33,1,32,11,32,4,65,32,106,34,4,71,13,0,11,11,65,0,33,0,32,7,32,2,40,2,4,73,34,1,69,13,1,32,3,40,2,32,32,2,40,2,0,32,7,65,3,116,106,65,0,32,1,27,34,1,40,2,0,32,1,40,2,4,32,3,40,2,36,40,2,12,17,1,0,69,13,1,11,65,1,33,0,11,32,3,65,48,106,36,0,32,0,11,213,6,1,12,127,35,0,65,16,107,34,8,36,0,2,64,2,64,2,127,32,2,4,64,32,0,40,2,4,33,9,32,0,40,2,0,33,10,32,0,40,2,8,33,12,3,64,2,64,32,12,45,0,0,69,13,0,32,10,65,240,146,192,0,65,4,32,9,40,2,12,17,1,0,69,13,0,65,1,12,3,11,65,0,33,0,32,2,33,3,2,64,3,64,32,0,32,1,106,33,4,2,64,32,3,65,8,79,4,64,32,8,65,8,106,33,13,65,0,33,5,2,64,2,64,2,64,2,64,32,4,34,6,65,3,106,65,124,113,32,4,107,34,4,69,13,0,32,3,32,4,32,3,32,4,73,27,34,4,69,13,0,65,1,33,7,3,64,32,5,32,6,106,45,0,0,65,10,70,13,4,32,4,32,5,65,1,106,34,5,71,13,0,11,32,4,32,3,65,8,107,34,7,75,13,2,12,1,11,32,3,65,8,107,33,7,65,0,33,4,11,65,138,148,168,208,0,33,5,3,64,32,4,32,6,106,34,11,40,2,0,65,138,148,168,208,0,115,34,14,65,127,115,32,14,65,129,130,132,8,107,113,32,11,65,4,106,40,2,0,65,138,148,168,208,0,115,34,11,65,127,115,32,11,65,129,130,132,8,107,113,114,65,128,129,130,132,120,113,69,4,64,32,4,65,8,106,34,4,32,7,77,13,1,11,11,32,3,32,4,79,13,0,32,4,32,3,65,240,149,192,0,16,41,0,11,2,64,32,3,32,4,70,13,0,32,3,32,4,107,33,3,32,4,32,6,106,33,6,65,0,33,5,3,64,32,5,32,6,106,45,0,0,65,10,71,4,64,32,5,65,1,106,34,5,32,3,71,13,1,12,2,11,11,32,4,32,5,106,33,5,65,1,33,7,12,1,11,65,0,33,7,11,32,13,32,5,54,2,4,32,13,32,7,54,2,0,32,8,40,2,12,33,3,32,8,40,2,8,33,5,12,1,11,32,3,69,4,64,65,0,33,3,65,0,33,5,12,1,11,65,0,33,6,2,64,32,4,45,0,0,65,10,70,13,0,65,0,33,5,32,3,65,1,70,13,1,65,1,33,6,32,4,45,0,1,65,10,70,13,0,32,3,65,2,70,13,1,65,2,33,6,32,4,45,0,2,65,10,70,13,0,32,3,65,3,70,13,1,65,3,33,6,32,4,45,0,3,65,10,70,13,0,32,3,65,4,70,13,1,65,4,33,6,32,4,45,0,4,65,10,70,13,0,32,3,65,5,70,13,1,65,5,33,6,32,4,45,0,5,65,10,70,13,0,32,3,65,6,70,13,1,65,6,33,6,32,4,45,0,6,65,10,71,13,1,11,65,1,33,5,32,6,33,3,11,65,0,33,6,32,5,65,1,71,4,64,32,2,33,0,12,2,11,2,64,32,0,32,3,106,34,3,65,1,106,34,0,32,3,73,32,0,32,2,75,114,13,0,32,1,32,3,106,45,0,0,65,10,71,13,0,65,1,33,6,12,2,11,32,2,32,0,107,33,3,32,0,32,2,77,13,0,11,32,2,33,0,11,32,12,32,6,58,0,0,2,64,32,0,32,2,79,4,64,32,0,32,2,71,13,5,32,10,32,1,32,0,32,9,40,2,12,17,1,0,69,13,1,65,1,12,4,11,32,0,32,1,106,34,3,44,0,0,65,191,127,76,13,4,65,1,32,10,32,1,32,0,32,9,40,2,12,17,1,0,13,3,26,32,3,44,0,0,65,191,127,76,13,5,11,32,0,32,1,106,33,1,32,2,32,0,107,34,2,13,0,11,11,65,0,11,32,8,65,16,106,36,0,15,11,32,1,32,2,65,0,32,0,65,148,147,192,0,16,7,0,11,32,1,32,2,32,0,32,2,65,164,147,192,0,16,7,0,11,205,4,1,4,127,32,0,32,1,16,97,33,2,2,64,2,64,2,64,32,0,16,92,13,0,32,0,40,2,0,33,3,2,64,32,0,16,80,69,4,64,32,1,32,3,106,33,1,32,0,32,3,16,98,34,0,65,244,175,192,0,40,2,0,71,13,1,32,2,40,2,4,65,3,113,65,3,71,13,2,65,236,175,192,0,32,1,54,2,0,32,0,32,1,32,2,16,63,15,11,32,1,32,3,106,65,16,106,33,0,12,2,11,32,3,65,128,2,79,4,64,32,0,16,25,12,1,11,32,0,65,12,106,40,2,0,34,4,32,0,65,8,106,40,2,0,34,5,71,4,64,32,5,32,4,54,2,12,32,4,32,5,54,2,8,12,1,11,65,220,172,192,0,65,220,172,192,0,40,2,0,65,126,32,3,65,3,118,119,113,54,2,0,11,32,2,16,77,4,64,32,0,32,1,32,2,16,63,12,2,11,2,64,65,248,175,192,0,40,2,0,32,2,71,4,64,32,2,65,244,175,192,0,40,2,0,71,13,1,65,244,175,192,0,32,0,54,2,0,65,236,175,192,0,65,236,175,192,0,40,2,0,32,1,106,34,1,54,2,0,32,0,32,1,16,67,15,11,65,248,175,192,0,32,0,54,2,0,65,240,175,192,0,65,240,175,192,0,40,2,0,32,1,106,34,1,54,2,0,32,0,32,1,65,1,114,54,2,4,32,0,65,244,175,192,0,40,2,0,71,13,1,65,236,175,192,0,65,0,54,2,0,65,244,175,192,0,65,0,54,2,0,15,11,32,2,16,91,34,3,32,1,106,33,1,2,64,32,3,65,128,2,79,4,64,32,2,16,25,12,1,11,32,2,65,12,106,40,2,0,34,4,32,2,65,8,106,40,2,0,34,2,71,4,64,32,2,32,4,54,2,12,32,4,32,2,54,2,8,12,1,11,65,220,172,192,0,65,220,172,192,0,40,2,0,65,126,32,3,65,3,118,119,113,54,2,0,11,32,0,32,1,16,67,32,0,65,244,175,192,0,40,2,0,71,13,1,65,236,175,192,0,32,1,54,2,0,11,15,11,32,1,65,128,2,79,4,64,32,0,32,1,16,24,15,11,32,1,65,3,118,34,2,65,3,116,65,228,172,192,0,106,33,1,2,127,65,220,172,192,0,40,2,0,34,3,65,1,32,2,116,34,2,113,4,64,32,1,40,2,8,12,1,11,65,220,172,192,0,32,2,32,3,114,54,2,0,32,1,11,33,2,32,1,32,0,54,2,8,32,2,32,0,54,2,12,32,0,32,1,54,2,12,32,0,32,2,54,2,8,11,153,13,2,9,127,1,126,65,1,33,8,2,64,32,1,40,2,24,34,9,65,39,32,1,65,28,106,40,2,0,40,2,16,34,10,17,0,0,13,0,65,244,0,33,3,65,2,33,1,2,64,2,126,2,64,2,64,2,64,2,64,2,64,2,64,2,64,32,0,40,2,0,34,7,65,9,107,14,31,8,3,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,0,11,32,7,65,220,0,70,13,3,11,2,127,32,7,34,0,65,11,116,33,6,65,32,33,1,65,32,33,3,2,64,3,64,2,64,2,64,32,6,32,1,65,1,118,32,2,106,34,1,65,2,116,65,224,165,192,0,106,40,2,0,65,11,116,34,4,77,4,64,32,4,32,6,70,13,2,32,1,33,3,12,1,11,32,1,65,1,106,33,2,11,32,3,32,2,107,33,1,32,2,32,3,73,13,1,12,2,11,11,32,1,65,1,106,33,2,11,2,64,2,64,32,2,65,31,77,4,64,32,2,65,2,116,33,4,65,195,5,33,3,32,2,65,31,71,4,64,32,4,65,228,165,192,0,106,40,2,0,65,21,118,33,3,11,65,0,33,1,32,2,32,2,65,1,107,34,6,79,4,64,32,6,65,32,79,13,2,32,6,65,2,116,65,224,165,192,0,106,40,2,0,65,255,255,255,0,113,33,1,11,2,64,32,3,32,4,65,224,165,192,0,106,40,2,0,65,21,118,34,2,65,1,106,70,13,0,32,0,32,1,107,33,1,32,2,65,195,5,32,2,65,195,5,75,27,33,4,32,3,65,1,107,33,0,65,0,33,3,3,64,32,2,32,4,70,13,4,32,3,32,2,65,224,166,192,0,106,45,0,0,106,34,3,32,1,75,13,1,32,0,32,2,65,1,106,34,2,71,13,0,11,32,0,33,2,11,32,2,65,1,113,12,3,11,32,2,65,32,65,136,165,192,0,16,40,0,11,32,6,65,32,65,168,165,192,0,16,40,0,11,32,4,65,195,5,65,152,165,192,0,16,40,0,11,13,3,2,127,65,0,33,1,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,32,7,34,4,65,128,128,4,79,4,64,32,4,65,128,128,8,73,13,1,32,4,65,224,255,255,0,113,65,224,205,10,71,32,4,65,185,238,10,107,65,6,75,113,32,4,65,254,255,255,0,113,65,158,240,10,71,113,32,4,65,162,157,11,107,65,13,75,113,32,4,65,225,215,11,107,65,158,24,75,113,32,4,65,158,244,11,107,65,225,11,75,113,32,4,65,203,166,12,107,65,180,219,43,75,113,32,4,65,240,131,56,73,113,33,5,12,8,11,65,244,153,192,0,33,0,32,4,65,8,118,65,255,1,113,33,6,3,64,32,0,65,2,106,33,3,32,1,32,0,45,0,1,34,5,106,33,2,32,6,32,0,45,0,0,34,0,71,4,64,32,0,32,6,75,13,8,32,2,33,1,32,3,34,0,65,196,154,192,0,71,13,1,12,8,11,32,1,32,2,75,13,2,32,2,65,160,2,75,13,3,32,1,65,196,154,192,0,106,33,0,2,64,3,64,32,5,69,13,1,32,5,65,1,107,33,5,32,0,45,0,0,32,0,65,1,106,33,0,32,4,65,255,1,113,71,13,0,11,65,0,33,5,12,9,11,32,2,33,1,32,3,34,0,65,196,154,192,0,71,13,0,11,12,6,11,65,147,159,192,0,33,0,32,4,65,8,118,65,255,1,113,33,6,3,64,32,0,65,2,106,33,3,32,1,32,0,45,0,1,34,5,106,33,2,32,6,32,0,45,0,0,34,0,71,4,64,32,0,32,6,75,13,6,32,2,33,1,32,3,34,0,65,231,159,192,0,71,13,1,12,6,11,32,1,32,2,75,13,3,32,2,65,192,1,75,13,4,32,1,65,231,159,192,0,106,33,0,2,64,3,64,32,5,69,13,1,32,5,65,1,107,33,5,32,0,45,0,0,32,0,65,1,106,33,0,32,4,65,255,1,113,71,13,0,11,65,0,33,5,12,8,11,32,2,33,1,32,3,34,0,65,231,159,192,0,71,13,0,11,12,4,11,32,1,32,2,16,43,0,11,32,2,65,160,2,65,212,153,192,0,16,42,0,11,32,1,32,2,16,43,0,11,32,2,65,192,1,65,212,153,192,0,16,42,0,11,32,4,65,255,255,3,113,33,4,65,167,161,192,0,33,0,65,1,33,5,3,64,2,64,32,0,65,1,106,33,3,32,0,45,0,0,34,1,65,24,116,65,24,117,34,2,65,0,78,4,127,32,3,5,32,3,65,221,164,192,0,70,13,1,32,0,45,0,1,32,2,65,255,0,113,65,8,116,114,33,1,32,0,65,2,106,11,33,0,32,4,32,1,107,34,4,65,0,72,13,3,32,5,65,1,115,33,5,32,0,65,221,164,192,0,71,13,1,12,3,11,11,65,196,145,192,0,65,43,65,228,153,192,0,16,53,0,11,32,4,65,255,255,3,113,33,4,65,228,156,192,0,33,0,65,1,33,5,3,64,32,0,65,1,106,33,3,32,0,45,0,0,34,1,65,24,116,65,24,117,34,2,65,0,78,4,127,32,3,5,32,3,65,147,159,192,0,70,13,3,32,0,45,0,1,32,2,65,255,0,113,65,8,116,114,33,1,32,0,65,2,106,11,33,0,32,4,32,1,107,34,4,65,0,72,13,1,32,5,65,1,115,33,5,32,0,65,147,159,192,0,71,13,0,11,11,32,5,65,1,113,12,1,11,65,196,145,192,0,65,43,65,228,153,192,0,16,53,0,11,69,13,4,65,1,33,1,32,7,33,3,12,6,11,65,242,0,33,3,12,5,11,65,238,0,33,3,12,4,11,32,7,33,3,12,3,11,32,7,65,1,114,103,65,2,118,65,7,115,173,66,128,128,128,128,208,0,132,12,1,11,32,7,65,1,114,103,65,2,118,65,7,115,173,66,128,128,128,128,208,0,132,11,33,11,65,3,33,1,32,7,33,3,11,3,64,32,1,33,7,65,0,33,1,32,3,33,0,2,64,2,64,2,64,2,64,2,64,32,7,65,1,107,14,3,4,2,0,1,11,2,64,2,64,2,64,2,64,2,64,32,11,66,32,136,167,65,255,1,113,65,1,107,14,5,0,4,1,2,3,5,11,32,11,66,255,255,255,255,143,96,131,33,11,65,253,0,33,0,65,3,33,1,12,7,11,32,11,66,255,255,255,255,143,96,131,66,128,128,128,128,32,132,33,11,65,251,0,33,0,65,3,33,1,12,6,11,32,11,66,255,255,255,255,143,96,131,66,128,128,128,128,48,132,33,11,65,245,0,33,0,65,3,33,1,12,5,11,32,11,66,255,255,255,255,143,96,131,66,128,128,128,128,192,0,132,33,11,65,220,0,33,0,65,3,33,1,12,4,11,65,48,65,215,0,32,3,32,11,167,34,1,65,2,116,118,65,15,113,34,0,65,10,73,27,32,0,106,33,0,32,1,69,13,2,32,11,66,1,125,66,255,255,255,255,15,131,32,11,66,128,128,128,128,112,131,132,33,11,65,3,33,1,12,3,11,32,9,65,39,32,10,17,0,0,33,8,12,4,11,65,220,0,33,0,65,1,33,1,12,1,11,32,11,66,255,255,255,255,143,96,131,66,128,128,128,128,16,132,33,11,65,3,33,1,11,32,9,32,0,32,10,17,0,0,69,13,0,11,11,32,8,11,235,2,1,3,127,2,64,2,64,2,64,2,64,32,1,65,9,79,4,64,65,16,65,8,16,70,32,1,75,13,1,12,2,11,32,0,16,3,33,3,12,2,11,65,16,65,8,16,70,33,1,11,65,128,128,124,65,8,65,8,16,70,65,20,65,8,16,70,106,65,16,65,8,16,70,106,107,65,119,113,65,3,107,34,4,65,0,65,16,65,8,16,70,65,2,116,107,34,2,32,2,32,4,75,27,32,1,107,32,0,77,13,0,32,1,65,16,32,0,65,4,106,65,16,65,8,16,70,65,5,107,32,0,75,27,65,8,16,70,34,4,106,65,16,65,8,16,70,106,65,4,107,16,3,34,2,69,13,0,32,2,16,100,33,0,2,64,32,1,65,1,107,34,3,32,2,113,69,4,64,32,0,33,1,12,1,11,32,2,32,3,106,65,0,32,1,107,113,16,100,33,2,65,16,65,8,16,70,33,3,32,0,16,91,32,2,65,0,32,1,32,2,32,0,107,32,3,75,27,106,34,1,32,0,107,34,2,107,33,3,32,0,16,80,69,4,64,32,1,32,3,16,56,32,0,32,2,16,56,32,0,32,2,16,14,12,1,11,32,0,40,2,0,33,0,32,1,32,3,54,2,4,32,1,32,0,32,2,106,54,2,0,11,32,1,16,80,13,1,32,1,16,91,34,2,65,16,65,8,16,70,32,4,106,77,13,1,32,1,32,4,16,97,33,0,32,1,32,4,16,56,32,0,32,2,32,4,107,34,4,16,56,32,0,32,4,16,14,12,1,11,32,3,15,11,32,1,16,99,32,1,16,80,26,11,220,2,1,3,127,35,0,65,16,107,34,2,36,0,32,0,40,2,0,33,0,2,64,32,1,65,255,0,77,4,64,32,0,40,2,8,34,3,32,0,65,4,106,40,2,0,70,4,127,32,0,32,3,65,1,16,32,32,0,40,2,8,5,32,3,11,32,0,40,2,0,106,32,1,58,0,0,32,0,32,0,40,2,8,65,1,106,54,2,8,12,1,11,32,2,65,0,54,2,12,2,127,32,1,65,128,16,79,4,64,32,1,65,128,128,4,73,4,64,32,2,32,1,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,224,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,13,65,3,12,2,11,32,2,32,1,65,63,113,65,128,1,114,58,0,15,32,2,32,1,65,18,118,65,240,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,63,113,65,128,1,114,58,0,13,65,4,12,1,11,32,2,32,1,65,63,113,65,128,1,114,58,0,13,32,2,32,1,65,6,118,65,192,1,114,58,0,12,65,2,11,33,1,32,1,32,0,65,4,106,40,2,0,32,0,65,8,106,34,4,40,2,0,34,3,107,75,4,64,32,0,32,3,32,1,16,32,32,4,40,2,0,33,3,11,32,0,40,2,0,32,3,106,32,2,65,12,106,32,1,16,20,26,32,4,32,1,32,3,106,54,2,0,11,32,2,65,16,106,36,0,65,0,11,218,2,1,3,127,35,0,65,16,107,34,2,36,0,32,0,40,2,0,33,0,2,64,32,1,65,255,0,77,4,64,32,0,40,2,8,34,3,32,0,65,4,106,40,2,0,70,4,64,32,0,32,3,65,1,16,33,32,0,40,2,8,33,3,11,32,0,32,3,65,1,106,54,2,8,32,0,40,2,0,32,3,106,32,1,58,0,0,12,1,11,32,2,65,0,54,2,12,2,127,32,1,65,128,16,79,4,64,32,1,65,128,128,4,79,4,64,32,2,32,1,65,63,113,65,128,1,114,58,0,15,32,2,32,1,65,18,118,65,240,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,63,113,65,128,1,114,58,0,13,65,4,12,2,11,32,2,32,1,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,224,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,13,65,3,12,1,11,32,2,32,1,65,63,113,65,128,1,114,58,0,13,32,2,32,1,65,6,118,65,192,1,114,58,0,12,65,2,11,33,1,32,1,32,0,65,4,106,40,2,0,32,0,65,8,106,34,4,40,2,0,34,3,107,75,4,64,32,0,32,3,32,1,16,33,32,4,40,2,0,33,3,11,32,0,40,2,0,32,3,106,32,2,65,12,106,32,1,16,20,26,32,4,32,1,32,3,106,54,2,0,11,32,2,65,16,106,36,0,65,0,11,211,2,1,3,127,35,0,65,16,107,34,2,36,0,2,64,32,1,65,255,0,77,4,64,32,0,40,2,8,34,3,32,0,65,4,106,40,2,0,70,4,64,32,0,32,3,65,1,16,32,32,0,40,2,8,33,3,11,32,0,32,3,65,1,106,54,2,8,32,0,40,2,0,32,3,106,32,1,58,0,0,12,1,11,32,2,65,0,54,2,12,2,127,32,1,65,128,16,79,4,64,32,1,65,128,128,4,79,4,64,32,2,32,1,65,63,113,65,128,1,114,58,0,15,32,2,32,1,65,18,118,65,240,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,63,113,65,128,1,114,58,0,13,65,4,12,2,11,32,2,32,1,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,224,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,13,65,3,12,1,11,32,2,32,1,65,63,113,65,128,1,114,58,0,13,32,2,32,1,65,6,118,65,192,1,114,58,0,12,65,2,11,33,1,32,1,32,0,65,4,106,40,2,0,32,0,65,8,106,34,4,40,2,0,34,3,107,75,4,64,32,0,32,3,32,1,16,32,32,4,40,2,0,33,3,11,32,0,40,2,0,32,3,106,32,2,65,12,106,32,1,16,20,26,32,4,32,1,32,3,106,54,2,0,11,32,2,65,16,106,36,0,65,0,11,185,2,1,7,127,2,64,32,2,65,15,77,4,64,32,0,33,3,12,1,11,32,0,65,0,32,0,107,65,3,113,34,4,106,33,5,32,4,4,64,32,0,33,3,32,1,33,6,3,64,32,3,32,6,45,0,0,58,0,0,32,6,65,1,106,33,6,32,3,65,1,106,34,3,32,5,73,13,0,11,11,32,5,32,2,32,4,107,34,2,65,124,113,34,7,106,33,3,2,64,32,1,32,4,106,34,4,65,3,113,4,64,32,7,65,1,72,13,1,32,4,65,3,116,34,1,65,24,113,33,8,65,0,32,1,107,65,24,113,33,9,32,4,65,124,113,34,6,65,4,106,33,1,32,6,40,2,0,33,6,3,64,32,5,32,6,32,8,118,32,1,40,2,0,34,6,32,9,116,114,54,2,0,32,1,65,4,106,33,1,32,5,65,4,106,34,5,32,3,73,13,0,11,12,1,11,32,7,65,1,72,13,0,32,4,33,1,3,64,32,5,32,1,40,2,0,54,2,0,32,1,65,4,106,33,1,32,5,65,4,106,34,5,32,3,73,13,0,11,11,32,2,65,3,113,33,2,32,4,32,7,106,33,1,11,32,2,65,1,78,4,64,32,2,32,3,106,33,2,3,64,32,3,32,1,45,0,0,58,0,0,32,1,65,1,106,33,1,32,3,65,1,106,34,3,32,2,73,13,0,11,11,32,0,11,190,2,2,5,127,1,126,35,0,65,48,107,34,4,36,0,65,39,33,2,2,64,32,0,66,144,206,0,84,4,64,32,0,33,7,12,1,11,3,64,32,4,65,9,106,32,2,106,34,3,65,4,107,32,0,32,0,66,144,206,0,128,34,7,66,144,206,0,126,125,167,34,5,65,255,255,3,113,65,228,0,110,34,6,65,1,116,65,234,147,192,0,106,47,0,0,59,0,0,32,3,65,2,107,32,5,32,6,65,228,0,108,107,65,255,255,3,113,65,1,116,65,234,147,192,0,106,47,0,0,59,0,0,32,2,65,4,107,33,2,32,0,66,255,193,215,47,86,32,7,33,0,13,0,11,11,32,7,167,34,3,65,227,0,74,4,64,32,2,65,2,107,34,2,32,4,65,9,106,106,32,7,167,34,3,32,3,65,255,255,3,113,65,228,0,110,34,3,65,228,0,108,107,65,255,255,3,113,65,1,116,65,234,147,192,0,106,47,0,0,59,0,0,11,2,64,32,3,65,10,78,4,64,32,2,65,2,107,34,2,32,4,65,9,106,106,32,3,65,1,116,65,234,147,192,0,106,47,0,0,59,0,0,12,1,11,32,2,65,1,107,34,2,32,4,65,9,106,106,32,3,65,48,106,58,0,0,11,32,1,65,184,145,192,0,65,0,32,4,65,9,106,32,2,106,65,39,32,2,107,16,10,32,4,65,48,106,36,0,11,185,2,1,3,127,35,0,65,128,1,107,34,4,36,0,2,64,2,64,2,64,2,64,32,1,40,2,0,34,2,65,16,113,69,4,64,32,2,65,32,113,13,1,32,0,53,2,0,32,1,16,21,33,0,12,4,11,32,0,40,2,0,33,0,65,0,33,2,3,64,32,2,32,4,106,65,255,0,106,65,48,65,215,0,32,0,65,15,113,34,3,65,10,73,27,32,3,106,58,0,0,32,2,65,1,107,33,2,32,0,65,15,75,32,0,65,4,118,33,0,13,0,11,32,2,65,128,1,106,34,0,65,129,1,79,13,1,32,1,65,232,147,192,0,65,2,32,2,32,4,106,65,128,1,106,65,0,32,2,107,16,10,33,0,12,3,11,32,0,40,2,0,33,0,65,0,33,2,3,64,32,2,32,4,106,65,255,0,106,65,48,65,55,32,0,65,15,113,34,3,65,10,73,27,32,3,106,58,0,0,32,2,65,1,107,33,2,32,0,65,15,75,32,0,65,4,118,33,0,13,0,11,32,2,65,128,1,106,34,0,65,129,1,79,13,1,32,1,65,232,147,192,0,65,2,32,2,32,4,106,65,128,1,106,65,0,32,2,107,16,10,33,0,12,2,11,32,0,65,128,1,65,216,147,192,0,16,41,0,11,32,0,65,128,1,65,216,147,192,0,16,41,0,11,32,4,65,128,1,106,36,0,32,0,11,211,3,1,4,127,35,0,65,48,107,34,4,36,0,65,156,139,192,0,33,2,65,27,33,3,2,127,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,64,32,0,45,0,0,65,2,107,34,5,65,2,32,5,65,255,1,113,65,16,73,27,65,255,1,113,65,1,107,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,11,65,128,139,192,0,33,2,65,28,33,3,12,14,11,32,4,32,0,54,2,12,32,4,65,36,106,65,1,54,2,0,32,4,66,1,55,2,20,32,4,65,248,138,192,0,54,2,16,32,4,65,16,54,2,44,32,4,32,4,65,40,106,54,2,32,32,4,32,4,65,12,106,54,2,40,35,0,65,32,107,34,0,36,0,32,1,65,28,106,40,2,0,33,2,32,1,40,2,24,32,0,65,24,106,32,4,65,16,106,34,1,65,16,106,41,2,0,55,3,0,32,0,65,16,106,32,1,65,8,106,41,2,0,55,3,0,32,0,32,1,41,2,0,55,3,8,32,2,32,0,65,8,106,16,12,32,0,65,32,106,36,0,12,14,11,65,207,138,192,0,33,2,65,18,33,3,12,12,11,65,183,138,192,0,33,2,65,24,33,3,12,11,11,65,159,138,192,0,33,2,65,24,33,3,12,10,11,65,140,138,192,0,33,2,65,19,33,3,12,9,11,65,250,137,192,0,33,2,65,18,33,3,12,8,11,65,230,137,192,0,33,2,65,20,33,3,12,7,11,65,213,137,192,0,33,2,65,17,33,3,12,6,11,65,197,137,192,0,33,2,65,16,33,3,12,5,11,65,179,137,192,0,33,2,65,18,33,3,12,4,11,65,161,137,192,0,33,2,65,18,33,3,12,3,11,65,145,137,192,0,33,2,65,16,33,3,12,2,11,65,251,136,192,0,33,2,65,22,33,3,12,1,11,65,236,136,192,0,33,2,65,15,33,3,11,32,1,32,2,32,3,16,68,11,32,4,65,48,106,36,0,11,164,2,1,5,127,32,0,66,0,55,2,16,32,0,2,127,65,0,32,1,65,128,2,73,13,0,26,65,31,32,1,65,255,255,255,7,75,13,0,26,32,1,65,6,32,1,65,8,118,103,34,2,107,118,65,1,113,32,2,65,1,116,107,65,62,106,11,34,2,54,2,28,32,2,65,2,116,65,236,174,192,0,106,33,3,32,0,33,4,2,64,2,64,2,64,2,64,65,224,172,192,0,40,2,0,34,5,65,1,32,2,116,34,6,113,4,64,32,3,40,2,0,33,3,32,2,16,66,33,2,32,3,16,91,32,1,71,13,1,32,3,33,2,12,2,11,65,224,172,192,0,32,5,32,6,114,54,2,0,32,3,32,0,54,2,0,12,3,11,32,1,32,2,116,33,5,3,64,32,3,32,5,65,29,118,65,4,113,106,65,16,106,34,6,40,2,0,34,2,69,13,2,32,5,65,1,116,33,5,32,2,34,3,16,91,32,1,71,13,0,11,11,32,2,40,2,8,34,1,32,4,54,2,12,32,2,32,4,54,2,8,32,4,32,2,54,2,12,32,4,32,1,54,2,8,32,0,65,0,54,2,24,15,11,32,6,32,0,54,2,0,11,32,0,32,3,54,2,24,32,4,32,4,54,2,8,32,4,32,4,54,2,12,11,182,2,1,5,127,32,0,40,2,24,33,4,2,64,2,64,32,0,32,0,40,2,12,70,4,64,32,0,65,20,65,16,32,0,65,20,106,34,1,40,2,0,34,3,27,106,40,2,0,34,2,13,1,65,0,33,1,12,2,11,32,0,40,2,8,34,2,32,0,40,2,12,34,1,54,2,12,32,1,32,2,54,2,8,12,1,11,32,1,32,0,65,16,106,32,3,27,33,3,3,64,32,3,33,5,32,2,34,1,65,20,106,34,3,40,2,0,34,2,69,4,64,32,1,65,16,106,33,3,32,1,40,2,16,33,2,11,32,2,13,0,11,32,5,65,0,54,2,0,11,2,64,32,4,69,13,0,2,64,32,0,32,0,40,2,28,65,2,116,65,236,174,192,0,106,34,2,40,2,0,71,4,64,32,4,65,16,65,20,32,4,40,2,16,32,0,70,27,106,32,1,54,2,0,32,1,13,1,12,2,11,32,2,32,1,54,2,0,32,1,13,0,65,224,172,192,0,65,224,172,192,0,40,2,0,65,126,32,0,40,2,28,119,113,54,2,0,15,11,32,1,32,4,54,2,24,32,0,40,2,16,34,2,4,64,32,1,32,2,54,2,16,32,2,32,1,54,2,24,11,32,0,65,20,106,40,2,0,34,0,69,13,0,32,1,65,20,106,32,0,54,2,0,32,0,32,1,54,2,24,11,11,111,1,12,127,65,140,176,192,0,40,2,0,34,2,69,4,64,65,156,176,192,0,65,255,31,54,2,0,65,0,15,11,65,132,176,192,0,33,6,3,64,32,2,34,1,40,2,8,33,2,32,1,40,2,4,33,3,32,1,40,2,0,33,4,32,1,65,12,106,40,2,0,26,32,1,33,6,32,5,65,1,106,33,5,32,2,13,0,11,65,156,176,192,0,32,5,65,255,31,32,5,65,255,31,75,27,54,2,0,32,8,11,167,2,2,4,127,1,126,35,0,65,48,107,34,2,36,0,32,1,65,4,106,33,4,2,64,32,1,40,2,4,4,64,65,236,143,192,0,40,2,0,33,5,12,1,11,32,1,40,2,0,33,3,32,2,66,0,55,2,12,32,2,65,236,143,192,0,40,2,0,34,5,54,2,8,32,2,32,2,65,8,106,54,2,20,32,2,65,40,106,32,3,65,16,106,41,2,0,55,3,0,32,2,65,32,106,32,3,65,8,106,41,2,0,55,3,0,32,2,32,3,41,2,0,55,3,24,32,2,65,20,106,65,168,143,192,0,32,2,65,24,106,16,12,26,32,4,65,8,106,32,2,65,16,106,40,2,0,54,2,0,32,4,32,2,41,3,8,55,2,0,11,32,2,65,32,106,34,3,32,4,65,8,106,40,2,0,54,2,0,32,1,65,12,106,65,0,54,2,0,32,4,41,2,0,33,6,32,1,65,8,106,65,0,54,2,0,32,1,32,5,54,2,4,32,2,32,6,55,3,24,65,12,65,4,16,75,34,1,69,4,64,65,12,65,4,16,95,0,11,32,1,32,2,41,3,24,55,2,0,32,1,65,8,106,32,3,40,2,0,54,2,0,32,0,65,216,144,192,0,54,2,4,32,0,32,1,54,2,0,32,2,65,48,106,36,0,11,230,1,1,1,127,35,0,65,16,107,34,2,36,0,32,0,40,2,0,32,2,65,0,54,2,12,32,2,65,12,106,2,127,2,64,2,64,32,1,65,128,1,79,4,64,32,1,65,128,16,73,13,1,32,1,65,128,128,4,79,13,2,32,2,32,1,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,224,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,13,65,3,12,3,11,32,2,32,1,58,0,12,65,1,12,2,11,32,2,32,1,65,63,113,65,128,1,114,58,0,13,32,2,32,1,65,6,118,65,192,1,114,58,0,12,65,2,12,1,11,32,2,32,1,65,63,113,65,128,1,114,58,0,15,32,2,32,1,65,18,118,65,240,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,63,113,65,128,1,114,58,0,13,65,4,11,16,13,32,2,65,16,106,36,0,11,227,1,1,1,127,35,0,65,16,107,34,2,36,0,32,2,65,0,54,2,12,32,0,32,2,65,12,106,2,127,2,64,2,64,32,1,65,128,1,79,4,64,32,1,65,128,16,73,13,1,32,1,65,128,128,4,79,13,2,32,2,32,1,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,224,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,13,65,3,12,3,11,32,2,32,1,58,0,12,65,1,12,2,11,32,2,32,1,65,63,113,65,128,1,114,58,0,13,32,2,32,1,65,6,118,65,192,1,114,58,0,12,65,2,12,1,11,32,2,32,1,65,63,113,65,128,1,114,58,0,15,32,2,32,1,65,18,118,65,240,1,114,58,0,12,32,2,32,1,65,6,118,65,63,113,65,128,1,114,58,0,14,32,2,32,1,65,12,118,65,63,113,65,128,1,114,58,0,13,65,4,11,16,13,32,2,65,16,106,36,0,11,138,2,1,3,127,35,0,65,32,107,34,4,36,0,65,1,33,5,65,216,172,192,0,65,216,172,192,0,40,2,0,34,6,65,1,106,54,2,0,2,64,65,160,176,192,0,40,2,0,65,1,70,4,64,65,164,176,192,0,40,2,0,65,1,106,33,5,12,1,11,65,160,176,192,0,65,1,54,2,0,11,65,164,176,192,0,32,5,54,2,0,2,64,2,64,32,6,65,0,72,32,5,65,2,75,114,13,0,32,4,32,3,54,2,28,32,4,32,2,54,2,24,65,204,172,192,0,40,2,0,34,2,65,127,76,13,0,65,204,172,192,0,32,2,65,1,106,34,2,54,2,0,65,204,172,192,0,65,212,172,192,0,40,2,0,34,3,4,127,65,208,172,192,0,40,2,0,32,4,65,8,106,32,0,32,1,40,2,16,17,2,0,32,4,32,4,41,3,8,55,3,16,32,4,65,16,106,32,3,40,2,20,17,2,0,65,204,172,192,0,40,2,0,5,32,2,11,65,1,107,54,2,0,32,5,65,1,77,13,1,11,0,11,35,0,65,16,107,34,2,36,0,32,2,32,1,54,2,12,32,2,32,0,54,2,8,0,11,162,4,2,4,127,2,126,35,0,65,16,107,34,2,36,0,32,2,32,1,40,2,24,65,200,165,192,0,65,17,32,1,65,28,106,40,2,0,40,2,12,17,1,0,58,0,8,32,2,32,1,54,2,0,32,2,65,0,58,0,9,32,2,65,0,54,2,4,32,2,32,0,54,2,12,32,2,65,12,106,33,5,35,0,65,64,106,34,1,36,0,32,2,34,0,2,127,32,2,45,0,8,4,64,32,0,40,2,4,33,4,65,1,12,1,11,32,0,40,2,4,33,4,32,0,40,2,0,34,3,45,0,0,65,4,113,69,4,64,65,1,32,3,40,2,24,65,182,147,192,0,65,186,147,192,0,32,4,27,65,2,65,1,32,4,27,32,3,65,28,106,40,2,0,40,2,12,17,1,0,13,1,26,32,5,32,3,65,196,165,192,0,40,2,0,17,0,0,12,1,11,2,64,32,4,13,0,32,3,40,2,24,65,184,147,192,0,65,2,32,3,65,28,106,40,2,0,40,2,12,17,1,0,69,13,0,65,0,33,4,65,1,12,1,11,32,1,65,1,58,0,23,32,1,65,52,106,65,216,146,192,0,54,2,0,32,1,65,16,106,32,1,65,23,106,54,2,0,32,1,32,3,41,2,24,55,3,8,32,3,41,2,8,33,6,32,3,41,2,16,33,7,32,1,32,3,45,0,32,58,0,56,32,1,32,7,55,3,40,32,1,32,6,55,3,32,32,1,32,3,41,2,0,55,3,24,32,1,32,1,65,8,106,54,2,48,65,1,32,5,32,1,65,24,106,65,196,165,192,0,40,2,0,17,0,0,13,0,26,32,1,40,2,48,65,180,147,192,0,65,2,32,1,40,2,52,40,2,12,17,1,0,11,58,0,8,32,0,32,4,65,1,106,54,2,4,32,1,65,64,107,36,0,2,127,32,2,45,0,8,34,0,32,2,40,2,4,34,1,69,13,0,26,65,1,32,0,13,0,26,32,2,40,2,0,33,0,2,64,32,1,65,1,71,13,0,32,2,45,0,9,69,13,0,32,0,45,0,0,65,4,113,13,0,65,1,32,0,40,2,24,65,187,147,192,0,65,1,32,0,65,28,106,40,2,0,40,2,12,17,1,0,13,1,26,11,32,0,40,2,24,65,188,147,192,0,65,1,32,0,65,28,106,40,2,0,40,2,12,17,1,0,11,32,2,65,16,106,36,0,65,255,1,113,65,0,71,11,175,1,1,2,127,35,0,65,32,107,34,3,36,0,2,64,32,1,32,1,32,2,106,34,1,75,13,0,32,0,65,4,106,40,2,0,34,2,65,1,116,34,4,32,1,32,1,32,4,73,27,34,1,65,8,32,1,65,8,75,27,33,1,2,64,32,2,4,64,32,3,65,24,106,65,1,54,2,0,32,3,32,2,54,2,20,32,3,32,0,40,2,0,54,2,16,12,1,11,32,3,65,0,54,2,16,11,32,3,32,1,65,1,32,3,65,16,106,16,36,32,3,40,2,0,65,1,70,4,64,32,3,65,8,106,40,2,0,34,0,69,13,1,32,3,40,2,4,32,0,16,95,0,11,32,0,32,3,41,2,4,55,2,0,32,3,65,32,106,36,0,15,11,16,83,0,11,182,2,1,4,127,35,0,65,32,107,34,3,36,0,2,64,32,1,32,1,32,2,106,34,2,75,13,0,32,0,65,4,106,40,2,0,34,4,65,1,116,34,1,32,2,32,1,32,2,75,27,34,1,65,8,32,1,65,8,75,27,33,1,2,64,32,4,4,64,32,3,65,24,106,65,1,54,2,0,32,3,32,4,54,2,20,32,3,32,0,40,2,0,54,2,16,12,1,11,32,3,65,0,54,2,16,11,32,3,33,2,32,3,65,16,106,33,5,2,64,2,127,2,64,2,64,2,64,2,127,65,1,34,4,32,1,65,0,72,13,0,26,32,5,40,2,0,34,6,69,13,2,32,5,40,2,4,34,5,13,1,32,1,13,3,65,1,12,4,11,33,4,65,0,33,1,12,4,11,32,6,32,5,65,1,32,1,16,71,12,2,11,32,1,13,0,65,1,12,1,11,32,1,65,1,16,75,11,34,5,4,64,32,2,32,5,54,2,4,65,0,33,4,12,1,11,32,2,32,1,54,2,4,65,1,33,1,11,32,2,32,4,54,2,0,32,2,65,8,106,32,1,54,2,0,32,3,40,2,0,65,1,70,4,64,32,3,65,8,106,40,2,0,34,0,69,13,1,32,3,40,2,4,32,0,16,95,0,11,32,0,32,3,41,2,4,55,2,0,32,3,65,32,106,36,0,15,11,16,83,0,11,160,1,1,3,127,2,64,32,1,65,15,77,4,64,32,0,33,2,12,1,11,32,0,65,0,32,0,107,65,3,113,34,4,106,33,3,32,4,4,64,32,0,33,2,3,64,32,2,65,0,58,0,0,32,2,65,1,106,34,2,32,3,73,13,0,11,11,32,3,32,1,32,4,107,34,1,65,124,113,34,4,106,33,2,32,4,65,1,78,4,64,3,64,32,3,65,0,54,2,0,32,3,65,4,106,34,3,32,2,73,13,0,11,11,32,1,65,3,113,33,1,11,32,1,65,1,78,4,64,32,1,32,2,106,33,1,3,64,32,2,65,0,58,0,0,32,2,65,1,106,34,2,32,1,73,13,0,11,11,32,0,11,176,1,1,2,127,35,0,65,48,107,34,2,36,0,32,1,65,4,106,33,3,32,1,40,2,4,69,4,64,32,1,40,2,0,33,1,32,2,66,0,55,2,12,32,2,65,236,143,192,0,40,2,0,54,2,8,32,2,32,2,65,8,106,54,2,20,32,2,65,40,106,32,1,65,16,106,41,2,0,55,3,0,32,2,65,32,106,32,1,65,8,106,41,2,0,55,3,0,32,2,32,1,41,2,0,55,3,24,32,2,65,20,106,65,168,143,192,0,32,2,65,24,106,16,12,26,32,3,65,8,106,32,2,65,16,106,40,2,0,54,2,0,32,3,32,2,41,3,8,55,2,0,11,32,0,65,216,144,192,0,54,2,4,32,0,32,3,54,2,0,32,2,65,48,106,36,0,11,166,1,1,2,127,2,64,2,64,2,64,2,64,2,64,2,64,2,64,2,127,32,2,4,64,65,1,34,4,32,1,65,0,72,13,1,26,32,3,40,2,0,34,5,69,13,2,32,3,40,2,4,34,3,13,4,32,1,69,13,3,12,5,11,32,0,32,1,54,2,4,65,1,11,33,4,65,0,33,1,12,6,11,32,1,13,2,11,32,2,33,3,12,2,11,32,5,32,3,32,2,32,1,16,71,34,3,13,1,12,2,11,32,1,32,2,16,75,34,3,69,13,1,11,32,0,32,3,54,2,4,65,0,33,4,12,1,11,32,0,32,1,54,2,4,32,2,33,1,11,32,0,32,4,54,2,0,32,0,65,8,106,32,1,54,2,0,11,147,1,1,1,127,35,0,65,64,106,34,3,36,0,32,0,32,1,66,127,16,2,32,2,32,0,41,3,0,55,0,0,32,2,65,8,106,32,0,65,8,106,41,3,0,55,0,0,32,2,65,16,106,32,0,65,16,106,41,3,0,55,0,0,32,2,65,24,106,32,0,65,24,106,41,3,0,55,0,0,32,2,65,32,106,32,0,41,3,32,55,0,0,32,2,65,40,106,32,0,65,40,106,41,3,0,55,0,0,32,2,65,48,106,32,0,65,48,106,41,3,0,55,0,0,32,2,65,56,106,32,0,65,56,106,41,3,0,55,0,0,32,3,65,64,107,36,0,11,125,1,1,127,35,0,65,64,106,34,5,36,0,32,5,32,1,54,2,12,32,5,32,0,54,2,8,32,5,32,3,54,2,20,32,5,32,2,54,2,16,32,5,65,44,106,65,2,54,2,0,32,5,65,60,106,65,32,54,2,0,32,5,66,2,55,2,28,32,5,65,200,146,192,0,54,2,24,32,5,65,33,54,2,52,32,5,32,5,65,48,106,54,2,40,32,5,32,5,65,16,106,54,2,56,32,5,32,5,65,8,106,54,2,48,32,5,65,24,106,32,4,16,57,0,11,111,1,4,127,35,0,65,32,107,34,2,36,0,65,1,33,3,2,64,32,0,32,1,16,22,13,0,32,1,65,28,106,40,2,0,33,4,32,1,40,2,24,32,2,65,28,106,65,0,54,2,0,32,2,65,184,145,192,0,54,2,24,32,2,66,1,55,2,12,32,2,65,188,145,192,0,54,2,8,32,4,32,2,65,8,106,16,12,13,0,32,0,65,4,106,32,1,16,22,33,3,11,32,2,65,32,106,36,0,32,3,11,108,1,1,127,35,0,65,48,107,34,3,36,0,32,3,32,1,54,2,4,32,3,32,0,54,2,0,32,3,65,28,106,65,2,54,2,0,32,3,65,44,106,65,30,54,2,0,32,3,66,2,55,2,12,32,3,65,180,146,192,0,54,2,8,32,3,65,30,54,2,36,32,3,32,3,65,32,106,54,2,24,32,3,32,3,54,2,40,32,3,32,3,65,4,106,54,2,32,32,3,65,8,106,32,2,16,57,0,11,108,1,1,127,35,0,65,48,107,34,3,36,0,32,3,32,1,54,2,4,32,3,32,0,54,2,0,32,3,65,28,106,65,2,54,2,0,32,3,65,44,106,65,30,54,2,0,32,3,66,2,55,2,12,32,3,65,180,150,192,0,54,2,8,32,3,65,30,54,2,36,32,3,32,3,65,32,106,54,2,24,32,3,32,3,65,4,106,54,2,40,32,3,32,3,54,2,32,32,3,65,8,106,32,2,16,57,0,11,108,1,1,127,35,0,65,48,107,34,3,36,0,32,3,32,1,54,2,4,32,3,32,0,54,2,0,32,3,65,28,106,65,2,54,2,0,32,3,65,44,106,65,30,54,2,0,32,3,66,2,55,2,12,32,3,65,212,150,192,0,54,2,8,32,3,65,30,54,2,36,32,3,32,3,65,32,106,54,2,24,32,3,32,3,65,4,106,54,2,40,32,3,32,3,54,2,32,32,3,65,8,106,32,2,16,57,0,11,111,1,1,127,35,0,65,48,107,34,2,36,0,32,2,32,1,54,2,4,32,2,32,0,54,2,0,32,2,65,28,106,65,2,54,2,0,32,2,65,44,106,65,30,54,2,0,32,2,66,2,55,2,12,32,2,65,136,151,192,0,54,2,8,32,2,65,30,54,2,36,32,2,32,2,65,32,106,54,2,24,32,2,32,2,65,4,106,54,2,40,32,2,32,2,54,2,32,32,2,65,8,106,65,212,153,192,0,16,57,0,11,89,1,1,127,35,0,65,32,107,34,2,36,0,32,2,32,0,40,2,0,54,2,4,32,2,65,24,106,32,1,65,16,106,41,2,0,55,3,0,32,2,65,16,106,32,1,65,8,106,41,2,0,55,3,0,32,2,32,1,41,2,0,55,3,8,32,2,65,4,106,65,196,129,192,0,32,2,65,8,106,16,12,32,2,65,32,106,36,0,11,89,1,1,127,35,0,65,32,107,34,2,36,0,32,2,32,0,40,2,0,54,2,4,32,2,65,24,106,32,1,65,16,106,41,2,0,55,3,0,32,2,65,16,106,32,1,65,8,106,41,2,0,55,3,0,32,2,32,1,41,2,0,55,3,8,32,2,65,4,106,65,168,143,192,0,32,2,65,8,106,16,12,32,2,65,32,106,36,0,11,89,1,1,127,35,0,65,32,107,34,2,36,0,32,2,32,0,40,2,0,54,2,4,32,2,65,24,106,32,1,65,16,106,41,2,0,55,3,0,32,2,65,16,106,32,1,65,8,106,41,2,0,55,3,0,32,2,32,1,41,2,0,55,3,8,32,2,65,4,106,65,180,149,192,0,32,2,65,8,106,16,12,32,2,65,32,106,36,0,11,86,1,1,127,35,0,65,32,107,34,2,36,0,32,2,32,0,54,2,4,32,2,65,24,106,32,1,65,16,106,41,2,0,55,3,0,32,2,65,16,106,32,1,65,8,106,41,2,0,55,3,0,32,2,32,1,41,2,0,55,3,8,32,2,65,4,106,65,196,129,192,0,32,2,65,8,106,16,12,32,2,65,32,106,36,0,11,86,1,1,127,35,0,65,32,107,34,2,36,0,32,2,32,0,54,2,4,32,2,65,24,106,32,1,65,16,106,41,2,0,55,3,0,32,2,65,16,106,32,1,65,8,106,41,2,0,55,3,0,32,2,32,1,41,2,0,55,3,8,32,2,65,4,106,65,180,149,192,0,32,2,65,8,106,16,12,32,2,65,32,106,36,0,11,78,1,2,127,32,2,32,0,40,2,0,34,3,65,4,106,40,2,0,32,3,65,8,106,34,4,40,2,0,34,0,107,75,4,64,32,3,32,0,32,2,16,32,32,4,40,2,0,33,0,11,32,3,40,2,0,32,0,106,32,1,32,2,16,20,26,32,4,32,0,32,2,106,54,2,0,65,0,11,78,1,2,127,32,2,32,0,40,2,0,34,3,65,4,106,40,2,0,32,3,65,8,106,34,4,40,2,0,34,0,107,75,4,64,32,3,32,0,32,2,16,33,32,4,40,2,0,33,0,11,32,3,40,2,0,32,0,106,32,1,32,2,16,20,26,32,4,32,0,32,2,106,54,2,0,65,0,11,73,1,2,127,32,2,32,0,65,4,106,40,2,0,32,0,65,8,106,34,4,40,2,0,34,3,107,75,4,64,32,0,32,3,32,2,16,32,32,4,40,2,0,33,3,11,32,0,40,2,0,32,3,106,32,1,32,2,16,20,26,32,4,32,2,32,3,106,54,2,0,65,0,11,75,0,2,64,2,127,32,1,65,128,128,196,0,71,4,64,65,1,32,0,40,2,24,32,1,32,0,65,28,106,40,2,0,40,2,16,17,0,0,13,1,26,11,32,2,13,1,65,0,11,15,11,32,0,40,2,24,32,2,32,3,32,0,65,28,106,40,2,0,40,2,12,17,1,0,11,71,1,1,127,35,0,65,32,107,34,3,36,0,32,3,65,20,106,65,0,54,2,0,32,3,65,184,145,192,0,54,2,16,32,3,66,1,55,2,4,32,3,32,1,54,2,28,32,3,32,0,54,2,24,32,3,32,3,65,24,106,54,2,0,32,3,32,2,16,57,0,11,68,1,2,127,32,1,40,2,4,33,2,32,1,40,2,0,33,3,65,8,65,4,16,75,34,1,69,4,64,65,8,65,4,16,95,0,11,32,1,32,2,54,2,4,32,1,32,3,54,2,0,32,0,65,232,144,192,0,54,2,4,32,0,32,1,54,2,0,11,42,0,2,64,32,0,65,124,75,13,0,32,0,69,4,64,65,4,15,11,32,0,32,0,65,125,73,65,2,116,16,75,34,0,69,13,0,32,0,15,11,0,11,42,0,32,0,32,0,40,2,4,65,1,113,32,1,114,65,2,114,54,2,4,32,0,32,1,106,65,4,106,34,0,32,0,40,2,0,65,1,114,54,2,0,11,166,2,1,3,127,35,0,65,16,107,34,2,36,0,32,2,32,1,54,2,12,32,2,32,0,54,2,8,32,2,65,240,145,192,0,54,2,4,32,2,65,184,145,192,0,54,2,0,35,0,65,16,107,34,0,36,0,32,2,40,2,12,34,1,69,4,64,65,192,143,192,0,65,43,65,144,144,192,0,16,53,0,11,32,2,40,2,8,34,4,69,4,64,65,192,143,192,0,65,43,65,160,144,192,0,16,53,0,11,32,0,32,1,54,2,8,32,0,32,2,54,2,4,32,0,32,4,54,2,0,32,0,40,2,0,33,1,32,0,40,2,4,33,2,32,0,40,2,8,33,4,35,0,65,16,107,34,0,36,0,32,1,65,20,106,40,2,0,33,3,2,64,2,127,2,64,2,64,32,1,65,4,106,40,2,0,14,2,0,1,3,11,32,3,13,2,65,0,33,1,65,192,143,192,0,12,1,11,32,3,13,1,32,1,40,2,0,34,3,40,2,4,33,1,32,3,40,2,0,11,33,3,32,0,32,1,54,2,4,32,0,32,3,54,2,0,32,0,65,196,144,192,0,32,2,40,2,8,32,4,16,30,0,11,32,0,65,0,54,2,4,32,0,32,1,54,2,0,32,0,65,176,144,192,0,32,2,40,2,8,32,4,16,30,0,11,55,0,32,0,65,3,58,0,32,32,0,66,128,128,128,128,128,4,55,2,0,32,0,32,1,54,2,24,32,0,65,0,54,2,16,32,0,65,0,54,2,8,32,0,65,28,106,65,128,128,192,0,54,2,0,11,30,0,2,64,32,0,65,4,106,40,2,0,69,13,0,32,0,40,2,0,34,0,69,13,0,32,0,16,8,11,11,32,1,1,127,2,64,32,0,40,2,4,34,1,69,13,0,32,0,65,8,106,40,2,0,69,13,0,32,1,16,8,11,11,30,0,2,64,32,1,65,124,77,4,64,32,0,32,1,65,4,32,2,16,71,34,0,13,1,11,0,11,32,0,11,33,0,32,0,32,1,65,3,114,54,2,4,32,0,32,1,106,65,4,106,34,0,32,0,40,2,0,65,1,114,54,2,0,11,35,0,32,2,32,2,40,2,4,65,126,113,54,2,4,32,0,32,1,65,1,114,54,2,4,32,0,32,1,106,32,1,54,2,0,11,20,0,32,0,65,4,106,40,2,0,4,64,32,0,40,2,0,16,8,11,11,25,1,1,127,32,0,40,2,16,34,1,4,127,32,1,5,32,0,65,20,106,40,2,0,11,11,18,0,65,0,65,25,32,0,65,1,118,107,32,0,65,31,70,27,11,22,0,32,0,32,1,65,1,114,54,2,4,32,0,32,1,106,32,1,54,2,0,11,25,0,32,0,40,2,24,32,1,32,2,32,0,65,28,106,40,2,0,40,2,12,17,1,0,11,28,0,32,1,40,2,24,65,217,165,192,0,65,5,32,1,65,28,106,40,2,0,40,2,12,17,1,0,11,16,0,32,0,32,1,106,65,1,107,65,0,32,1,107,113,11,224,5,1,6,127,2,127,32,0,33,5,2,64,2,64,2,64,32,2,65,9,79,4,64,32,3,32,2,16,16,34,7,13,1,65,0,12,4,11,65,128,128,124,65,8,65,8,16,70,65,20,65,8,16,70,106,65,16,65,8,16,70,106,107,65,119,113,65,3,107,34,0,65,0,65,16,65,8,16,70,65,2,116,107,34,1,32,0,32,1,73,27,32,3,77,13,1,65,16,32,3,65,4,106,65,16,65,8,16,70,65,5,107,32,3,75,27,65,8,16,70,33,2,32,5,16,100,34,0,32,0,16,91,34,4,16,97,33,1,2,64,2,64,2,64,2,64,2,64,2,64,2,64,32,0,16,80,69,4,64,32,2,32,4,77,13,1,32,1,65,248,175,192,0,40,2,0,70,13,2,32,1,65,244,175,192,0,40,2,0,70,13,3,32,1,16,77,13,7,32,1,16,91,34,6,32,4,106,34,8,32,2,73,13,7,32,8,32,2,107,33,4,32,6,65,128,2,73,13,4,32,1,16,25,12,5,11,32,0,16,91,33,1,32,2,65,128,2,73,13,6,32,2,65,4,106,32,1,77,65,0,32,1,32,2,107,65,129,128,8,73,27,13,5,32,1,32,0,40,2,0,34,1,106,65,16,106,33,4,32,2,65,31,106,65,128,128,4,16,70,33,2,12,6,11,65,16,65,8,16,70,32,4,32,2,107,34,1,75,13,4,32,0,32,2,16,97,33,4,32,0,32,2,16,56,32,4,32,1,16,56,32,4,32,1,16,14,12,4,11,65,240,175,192,0,40,2,0,32,4,106,34,4,32,2,77,13,4,32,0,32,2,16,97,33,1,32,0,32,2,16,56,32,1,32,4,32,2,107,34,2,65,1,114,54,2,4,65,240,175,192,0,32,2,54,2,0,65,248,175,192,0,32,1,54,2,0,12,3,11,65,236,175,192,0,40,2,0,32,4,106,34,4,32,2,73,13,3,2,64,65,16,65,8,16,70,32,4,32,2,107,34,1,75,4,64,32,0,32,4,16,56,65,0,33,1,65,0,33,4,12,1,11,32,0,32,2,16,97,34,4,32,1,16,97,33,6,32,0,32,2,16,56,32,4,32,1,16,67,32,6,32,6,40,2,4,65,126,113,54,2,4,11,65,244,175,192,0,32,4,54,2,0,65,236,175,192,0,32,1,54,2,0,12,2,11,32,1,65,12,106,40,2,0,34,9,32,1,65,8,106,40,2,0,34,1,71,4,64,32,1,32,9,54,2,12,32,9,32,1,54,2,8,12,1,11,65,220,172,192,0,65,220,172,192,0,40,2,0,65,126,32,6,65,3,118,119,113,54,2,0,11,65,16,65,8,16,70,32,4,77,4,64,32,0,32,2,16,97,33,1,32,0,32,2,16,56,32,1,32,4,16,56,32,1,32,4,16,14,12,1,11,32,0,32,8,16,56,11,32,0,13,3,11,32,3,16,3,34,1,69,13,1,32,1,32,5,32,3,32,0,16,91,65,120,65,124,32,0,16,80,27,106,34,0,32,0,32,3,75,27,16,20,32,5,16,8,12,3,11,32,7,32,5,32,3,32,1,32,1,32,3,75,27,16,20,26,32,5,16,8,11,32,7,12,1,11,32,0,16,80,26,32,0,16,99,11,11,11,0,32,1,4,64,32,0,16,8,11,11,15,0,32,0,65,1,116,34,0,65,0,32,0,107,114,11,20,0,32,0,40,2,0,32,1,32,0,40,2,4,40,2,12,17,0,0,11,8,0,32,0,32,1,16,16,11,19,0,32,0,65,232,144,192,0,54,2,4,32,0,32,1,54,2,0,11,13,0,32,0,45,0,4,65,2,113,65,1,118,11,16,0,32,1,32,0,40,2,0,32,0,40,2,4,16,9,11,10,0,65,0,32,0,107,32,0,113,11,11,0,32,0,45,0,4,65,3,113,69,11,12,0,32,0,32,1,65,3,114,54,2,4,11,13,0,32,0,40,2,0,32,0,40,2,4,106,11,17,0,65,148,145,192,0,65,17,65,168,145,192,0,16,53,0,11,14,0,32,0,40,2,0,26,3,64,12,0,11,0,11,11,0,32,0,53,2,0,32,1,16,21,11,13,0,32,0,40,2,0,32,1,32,2,16,13,11,11,0,32,0,35,0,106,36,0,35,0,11,37,0,32,1,65,176,140,192,0,65,209,140,192,0,32,0,40,2,0,45,0,0,65,1,70,34,0,27,65,33,65,23,32,0,27,16,68,11,13,0,32,1,65,251,142,192,0,65,17,16,68,11,13,0,32,1,65,140,143,192,0,65,17,16,68,11,10,0,32,0,40,2,4,65,120,113,11,10,0,32,0,40,2,4,65,1,113,11,10,0,32,0,40,2,12,65,1,113,11,10,0,32,0,40,2,12,65,1,118,11,25,0,32,0,32,1,65,200,172,192,0,40,2,0,34,0,65,17,32,0,27,17,2,0,0,11,13,0,32,1,65,204,149,192,0,65,2,16,9,11,7,0,32,0,32,1,106,11,7,0,32,0,32,1,107,11,7,0,32,0,65,8,106,11,7,0,32,0,65,8,107,11,12,0,66,252,179,232,252,142,138,204,240,97,11,13,0,66,244,249,158,230,238,163,170,249,254,0,11,13,0,66,182,221,195,148,205,164,175,164,180,127,11,3,0,1,11,3,0,1,11,11,170,44,2,0,65,128,128,192,0,11,245,6,1,0,0,0,12,0,0,0,4,0,0,0,2,0,0,0,3,0,0,0,4,0,0,0,97,32,68,105,115,112,108,97,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,114,101,116,117,114,110,101,100,32,97,110,32,101,114,114,111,114,32,117,110,101,120,112,101,99,116,101,100,108,121,47,114,117,115,116,99,47,100,98,57,100,49,98,50,48,98,98,97,49,57,54,56,99,49,101,99,49,102,99,52,57,54,49,54,100,52,55,52,50,99,49,55,50,53,98,52,98,47,108,105,98,114,97,114,121,47,97,108,108,111,99,47,115,114,99,47,115,116,114,105,110,103,46,114,115,0,0,79,0,16,0,75,0,0,0,97,9,0,0,14,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,4,0,0,0,8,0,0,0,9,0,0,0,10,0,0,0,47,85,115,101,114,115,47,115,105,109,111,110,47,46,99,97,114,103,111,47,114,101,103,105,115,116,114,121,47,115,114,99,47,103,105,116,104,117,98,46,99,111,109,45,49,101,99,99,54,50,57,57,100,98,57,101,99,56,50,51,47,98,108,111,99,107,45,98,117,102,102,101,114,45,48,46,49,48,46,49,47,115,114,99,47,108,105,98,46,114,115,0,220,0,16,0,91,0,0,0,149,0,0,0,9,0,0,0,47,85,115,101,114,115,47,115,105,109,111,110,47,46,99,97,114,103,111,47,114,101,103,105,115,116,114,121,47,115,114,99,47,103,105,116,104,117,98,46,99,111,109,45,49,101,99,99,54,50,57,57,100,98,57,101,99,56,50,51,47,97,114,103,111,110,50,45,48,46,51,46,51,47,115,114,99,47,112,97,114,97,109,115,46,114,115,0,72,1,16,0,87,0,0,0,167,0,0,0,9,0,0,0,97,116,116,101,109,112,116,32,116,111,32,100,105,118,105,100,101,32,98,121,32,122,101,114,111,0,0,0,72,1,16,0,87,0,0,0,19,1,0,0,1,0,0,0,99,97,108,108,101,100,32,96,82,101,115,117,108,116,58,58,117,110,119,114,97,112,40,41,96,32,111,110,32,97,110,32,96,69,114,114,96,32,118,97,108,117,101,0,11,0,0,0,0,0,0,0,1,0,0,0,12,0,0,0,47,85,115,101,114,115,47,115,105,109,111,110,47,46,99,97,114,103,111,47,114,101,103,105,115,116,114,121,47,115,114,99,47,103,105,116,104,117,98,46,99,111,109,45,49,101,99,99,54,50,57,57,100,98,57,101,99,56,50,51,47,97,114,103,111,110,50,45,48,46,51,46,51,47,115,114,99,47,98,108,111,99,107,46,114,115,0,0,24,2,16,0,86,0,0,0,32,0,0,0,59,0,0,0,47,85,115,101,114,115,47,115,105,109,111,110,47,46,99,97,114,103,111,47,114,101,103,105,115,116,114,121,47,115,114,99,47,103,105,116,104,117,98,46,99,111,109,45,49,101,99,99,54,50,57,57,100,98,57,101,99,56,50,51,47,98,108,111,99,107,45,98,117,102,102,101,114,45,48,46,49,48,46,49,47,115,114,99,47,108,105,98,46,114,115,0,128,2,16,0,91,0,0,0,149,0,0,0,9,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,14,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,15,0,0,0,47,85,115,101,114,115,47,115,105,109,111,110,47,46,99,97,114,103,111,47,114,101,103,105,115,116,114,121,47,115,114,99,47,103,105,116,104,117,98,46,99,111,109,45,49,101,99,99,54,50,57,57,100,98,57,101,99,56,50,51,47,97,114,103,111,110,50,45,48,46,51,46,51,47,115,114,99,47,105,110,115,116,97,110,99,101,46,114,115,0,0,0,12,3,16,0,89,0,0,0,17,1,0,0,39,0,65,128,135,192,0,11,162,37,97,116,116,101,109,112,116,32,116,111,32,99,97,108,99,117,108,97,116,101,32,116,104,101,32,114,101,109,97,105,110,100,101,114,32,119,105,116,104,32,97,32,100,105,118,105,115,111,114,32,111,102,32,122,101,114,111,96,111,117,116,96,32,108,101,110,103,116,104,32,105,115,32,118,97,108,105,100,32,102,111,114,32,66,108,97,107,101,50,98,86,97,114,0,0,0,12,3,16,0,89,0,0,0,174,1,0,0,14,0,0,0,12,3,16,0,89,0,0,0,198,1,0,0,49,0,0,0,47,85,115,101,114,115,47,115,105,109,111,110,47,46,99,97,114,103,111,47,114,101,103,105,115,116,114,121,47,115,114,99,47,103,105,116,104,117,98,46,99,111,109,45,49,101,99,99,54,50,57,57,100,98,57,101,99,56,50,51,47,98,108,111,99,107,45,98,117,102,102,101,114,45,48,46,49,48,46,49,47,115,114,99,47,108,105,98,46,114,115,0,0,4,16,0,91,0,0,0,149,0,0,0,9,0,0,0,105,110,118,97,108,105,100,32,118,101,114,115,105,111,110,116,105,109,101,32,99,111,115,116,32,105,115,32,116,111,111,32,115,109,97,108,108,116,111,111,32,109,97,110,121,32,116,104,114,101,97,100,115,110,111,116,32,101,110,111,117,103,104,32,116,104,114,101,97,100,115,115,101,99,114,101,116,32,105,115,32,116,111,111,32,108,111,110,103,115,97,108,116,32,105,115,32,116,111,111,32,108,111,110,103,115,97,108,116,32,105,115,32,116,111,111,32,115,104,111,114,116,112,97,115,115,119,111,114,100,32,105,115,32,116,111,111,32,108,111,110,103,111,117,116,112,117,116,32,105,115,32,116,111,111,32,108,111,110,103,111,117,116,112,117,116,32,105,115,32,116,111,111,32,115,104,111,114,116,109,101,109,111,114,121,32,99,111,115,116,32,105,115,32,116,111,111,32,108,97,114,103,101,109,101,109,111,114,121,32,99,111,115,116,32,105,115,32,116,111,111,32,115,109,97,108,108,107,101,121,32,73,68,32,105,115,32,116,111,111,32,108,111,110,103,66,54,52,32,101,110,99,111,100,105,110,103,32,105,110,118,97,108,105,100,58,32,0,97,5,16,0,22,0,0,0,97,108,103,111,114,105,116,104,109,32,105,100,101,110,116,105,102,105,101,114,32,105,110,118,97,108,105,100,97,115,115,111,99,105,97,116,101,100,32,100,97,116,97,32,105,115,32,116,111,111,32,108,111,110,103,47,85,115,101,114,115,47,115,105,109,111,110,47,46,99,97,114,103,111,47,114,101,103,105,115,116,114,121,47,115,114,99,47,103,105,116,104,117,98,46,99,111,109,45,49,101,99,99,54,50,57,57,100,98,57,101,99,56,50,51,47,97,114,103,111,110,50,45,48,46,51,46,51,47,115,114,99,47,109,101,109,111,114,121,46,114,115,0,0,183,5,16,0,87,0,0,0,28,0,0,0,9,0,0,0,183,5,16,0,87,0,0,0,33,0,0,0,14,0,0,0,105,110,115,117,102,102,105,99,105,101,110,116,32,111,117,116,112,117,116,32,98,117,102,102,101,114,32,108,101,110,103,116,104,105,110,118,97,108,105,100,32,66,97,115,101,54,52,32,101,110,99,111,100,105,110,103,97,115,115,101,114,116,105,111,110,32,102,97,105,108,101,100,58,32,107,101,121,95,115,105,122,101,32,60,61,32,85,54,52,58,58,116,111,95,117,115,105,122,101,40,41,47,85,115,101,114,115,47,115,105,109,111,110,47,46,99,97,114,103,111,47,114,101,103,105,115,116,114,121,47,115,114,99,47,103,105,116,104,117,98,46,99,111,109,45,49,101,99,99,54,50,57,57,100,98,57,101,99,56,50,51,47,98,108,97,107,101,50,45,48,46,49,48,46,50,47,115,114,99,47,108,105,98,46,114,115,0,0,149,6,16,0,85,0,0,0,118,0,0,0,1,0,0,0,97,115,115,101,114,116,105,111,110,32,102,97,105,108,101,100,58,32,111,117,116,112,117,116,95,115,105,122,101,32,60,61,32,85,54,52,58,58,116,111,95,117,115,105,122,101,40,41,97,115,115,101,114,116,105,111,110,32,102,97,105,108,101,100,58,32,115,97,108,116,46,108,101,110,40,41,32,60,61,32,108,101,110,103,116,104,97,115,115,101,114,116,105,111,110,32,102,97,105,108,101,100,58,32,112,101,114,115,111,110,97,46,108,101,110,40,41,32,60,61,32,108,101,110,103,116,104,73,110,118,97,108,105,100,79,117,116,112,117,116,83,105,122,101,73,110,118,97,108,105,100,66,117,102,102,101,114,83,105,122,101,0,0,0,4,0,0,0,0,0,0,0,18,0,0,0,4,0,0,0,4,0,0,0,19,0,0,0,20,0,0,0,21,0,0,0,99,97,108,108,101,100,32,96,79,112,116,105,111,110,58,58,117,110,119,114,97,112,40,41,96,32,111,110,32,97,32,96,78,111,110,101,96,32,118,97,108,117,101,0,1,0,0,0,0,0,0,0,108,105,98,114,97,114,121,47,115,116,100,47,115,114,99,47,112,97,110,105,99,107,105,110,103,46,114,115,244,7,16,0,28,0,0,0,240,1,0,0,31,0,0,0,244,7,16,0,28,0,0,0,241,1,0,0,30,0,0,0,22,0,0,0,16,0,0,0,4,0,0,0,23,0,0,0,24,0,0,0,18,0,0,0,8,0,0,0,4,0,0,0,25,0,0,0,26,0,0,0,27,0,0,0,12,0,0,0,4,0,0,0,28,0,0,0,18,0,0,0,8,0,0,0,4,0,0,0,29,0,0,0,108,105,98,114,97,114,121,47,97,108,108,111,99,47,115,114,99,47,114,97,119,95,118,101,99,46,114,115,99,97,112,97,99,105,116,121,32,111,118,101,114,102,108,111,119,0,0,0,120,8,16,0,28,0,0,0,253,1,0,0,5,0,0,0,46,46,0,0,184,8,16,0,2,0,0,0,99,97,108,108,101,100,32,96,79,112,116,105,111,110,58,58,117,110,119,114,97,112,40,41,96,32,111,110,32,97,32,96,78,111,110,101,96,32,118,97,108,117,101,0,36,0,0,0,0,0,0,0,1,0,0,0,37,0,0,0,105,110,100,101,120,32,111,117,116,32,111,102,32,98,111,117,110,100,115,58,32,116,104,101,32,108,101,110,32,105,115,32,32,98,117,116,32,116,104,101,32,105,110,100,101,120,32,105,115,32,0,0,0,9,16,0,32,0,0,0,32,9,16,0,18,0,0,0,96,58,32,0,184,8,16,0,0,0,0,0,69,9,16,0,2,0,0,0,36,0,0,0,12,0,0,0,4,0,0,0,38,0,0,0,39,0,0,0,40,0,0,0,32,32,32,32,108,105,98,114,97,114,121,47,99,111,114,101,47,115,114,99,47,102,109,116,47,98,117,105,108,100,101,114,115,46,114,115,116,9,16,0,32,0,0,0,47,0,0,0,33,0,0,0,116,9,16,0,32,0,0,0,48,0,0,0,18,0,0,0,44,10,44,32,40,10,40,44,41,108,105,98,114,97,114,121,47,99,111,114,101,47,115,114,99,47,102,109,116,47,110,117,109,46,114,115,189,9,16,0,27,0,0,0,101,0,0,0,20,0,0,0,48,120,48,48,48,49,48,50,48,51,48,52,48,53,48,54,48,55,48,56,48,57,49,48,49,49,49,50,49,51,49,52,49,53,49,54,49,55,49,56,49,57,50,48,50,49,50,50,50,51,50,52,50,53,50,54,50,55,50,56,50,57,51,48,51,49,51,50,51,51,51,52,51,53,51,54,51,55,51,56,51,57,52,48,52,49,52,50,52,51,52,52,52,53,52,54,52,55,52,56,52,57,53,48,53,49,53,50,53,51,53,52,53,53,53,54,53,55,53,56,53,57,54,48,54,49,54,50,54,51,54,52,54,53,54,54,54,55,54,56,54,57,55,48,55,49,55,50,55,51,55,52,55,53,55,54,55,55,55,56,55,57,56,48,56,49,56,50,56,51,56,52,56,53,56,54,56,55,56,56,56,57,57,48,57,49,57,50,57,51,57,52,57,53,57,54,57,55,57,56,57,57,0,0,36,0,0,0,4,0,0,0,4,0,0,0,41,0,0,0,42,0,0,0,43,0,0,0,40,41,108,105,98,114,97,114,121,47,99,111,114,101,47,115,114,99,47,115,108,105,99,101,47,109,101,109,99,104,114,46,114,115,0,0,206,10,16,0,32,0,0,0,91,0,0,0,5,0,0,0,114,97,110,103,101,32,115,116,97,114,116,32,105,110,100,101,120,32,32,111,117,116,32,111,102,32,114,97,110,103,101,32,102,111,114,32,115,108,105,99,101,32,111,102,32,108,101,110,103,116,104,32,0,11,16,0,18,0,0,0,18,11,16,0,34,0,0,0,114,97,110,103,101,32,101,110,100,32,105,110,100,101,120,32,68,11,16,0,16,0,0,0,18,11,16,0,34,0,0,0,115,108,105,99,101,32,105,110,100,101,120,32,115,116,97,114,116,115,32,97,116,32,32,98,117,116,32,101,110,100,115,32,97,116,32,0,100,11,16,0,22,0,0,0,122,11,16,0,13,0,0,0,108,105,98,114,97,114,121,47,99,111,114,101,47,115,114,99,47,115,116,114,47,118,97,108,105,100,97,116,105,111,110,115,46,114,115,0,152,11,16,0,35,0,0,0,30,1,0,0,17,0,0,0,91,46,46,46,93,98,121,116,101,32,105,110,100,101,120,32,32,105,115,32,111,117,116,32,111,102,32,98,111,117,110,100,115,32,111,102,32,96,0,0,209,11,16,0,11,0,0,0,220,11,16,0,22,0,0,0,68,9,16,0,1,0,0,0,98,101,103,105,110,32,60,61,32,101,110,100,32,40,32,60,61,32,41,32,119,104,101,110,32,115,108,105,99,105,110,103,32,96,0,0,12,12,16,0,14,0,0,0,26,12,16,0,4,0,0,0,30,12,16,0,16,0,0,0,68,9,16,0,1,0,0,0,32,105,115,32,110,111,116,32,97,32,99,104,97,114,32,98,111,117,110,100,97,114,121,59,32,105,116,32,105,115,32,105,110,115,105,100,101,32,32,40,98,121,116,101,115,32,41,32,111,102,32,96,209,11,16,0,11,0,0,0,80,12,16,0,38,0,0,0,118,12,16,0,8,0,0,0,126,12,16,0,6,0,0,0,68,9,16,0,1,0,0,0,108,105,98,114,97,114,121,47,99,111,114,101,47,115,114,99,47,117,110,105,99,111,100,101,47,112,114,105,110,116,97,98,108,101,46,114,115,0,0,0,172,12,16,0,37,0,0,0,10,0,0,0,28,0,0,0,172,12,16,0,37,0,0,0,26,0,0,0,54,0,0,0,0,1,3,5,5,6,6,2,7,6,8,7,9,17,10,28,11,25,12,26,13,16,14,13,15,4,16,3,18,18,19,9,22,1,23,4,24,1,25,3,26,7,27,1,28,2,31,22,32,3,43,3,45,11,46,1,48,3,49,2,50,1,167,2,169,2,170,4,171,8,250,2,251,5,253,2,254,3,255,9,173,120,121,139,141,162,48,87,88,139,140,144,28,221,14,15,75,76,251,252,46,47,63,92,93,95,226,132,141,142,145,146,169,177,186,187,197,198,201,202,222,228,229,255,0,4,17,18,41,49,52,55,58,59,61,73,74,93,132,142,146,169,177,180,186,187,198,202,206,207,228,229,0,4,13,14,17,18,41,49,52,58,59,69,70,73,74,94,100,101,132,145,155,157,201,206,207,13,17,41,58,59,69,73,87,91,92,94,95,100,101,141,145,169,180,186,187,197,201,223,228,229,240,13,17,69,73,100,101,128,132,178,188,190,191,213,215,240,241,131,133,139,164,166,190,191,197,199,206,207,218,219,72,152,189,205,198,206,207,73,78,79,87,89,94,95,137,142,143,177,182,183,191,193,198,199,215,17,22,23,91,92,246,247,254,255,128,109,113,222,223,14,31,110,111,28,29,95,125,126,174,175,127,187,188,22,23,30,31,70,71,78,79,88,90,92,94,126,127,181,197,212,213,220,240,241,245,114,115,143,116,117,150,38,46,47,167,175,183,191,199,207,215,223,154,64,151,152,48,143,31,210,212,206,255,78,79,90,91,7,8,15,16,39,47,238,239,110,111,55,61,63,66,69,144,145,83,103,117,200,201,208,209,216,217,231,254,255,0,32,95,34,130,223,4,130,68,8,27,4,6,17,129,172,14,128,171,5,31,9,129,27,3,25,8,1,4,47,4,52,4,7,3,1,7,6,7,17,10,80,15,18,7,85,7,3,4,28,10,9,3,8,3,7,3,2,3,3,3,12,4,5,3,11,6,1,14,21,5,78,7,27,7,87,7,2,6,22,13,80,4,67,3,45,3,1,4,17,6,15,12,58,4,29,37,95,32,109,4,106,37,128,200,5,130,176,3,26,6,130,253,3,89,7,22,9,24,9,20,12,20,12,106,6,10,6,26,6,89,7,43,5,70,10,44,4,12,4,1,3,49,11,44,4,26,6,11,3,128,172,6,10,6,47,49,77,3,128,164,8,60,3,15,3,60,7,56,8,43,5,130,255,17,24,8,47,17,45,3,33,15,33,15,128,140,4,130,151,25,11,21,136,148,5,47,5,59,7,2,14,24,9,128,190,34,116,12,128,214,26,12,5,128,255,5,128,223,12,242,157,3,55,9,129,92,20,128,184,8,128,203,5,10,24,59,3,10,6,56,8,70,8,12,6,116,11,30,3,90,4,89,9,128,131,24,28,10,22,9,76,4,128,138,6,171,164,12,23,4,49,161,4,129,218,38,7,12,5,5,128,166,16,129,245,7,1,32,42,6,76,4,128,141,4,128,190,3,27,3,15,13,0,6,1,1,3,1,4,2,5,7,7,2,8,8,9,2,10,5,11,2,14,4,16,1,17,2,18,5,19,17,20,1,21,2,23,2,25,13,28,5,29,8,36,1,106,4,107,2,175,3,188,2,207,2,209,2,212,12,213,9,214,2,215,2,218,1,224,5,225,2,231,4,232,2,238,32,240,4,248,2,250,2,251,1,12,39,59,62,78,79,143,158,158,159,123,139,147,150,162,178,186,134,177,6,7,9,54,61,62,86,243,208,209,4,20,24,54,55,86,87,127,170,174,175,189,53,224,18,135,137,142,158,4,13,14,17,18,41,49,52,58,69,70,73,74,78,79,100,101,92,182,183,27,28,7,8,10,11,20,23,54,57,58,168,169,216,217,9,55,144,145,168,7,10,59,62,102,105,143,146,111,95,191,238,239,90,98,244,252,255,154,155,46,47,39,40,85,157,160,161,163,164,167,168,173,186,188,196,6,11,12,21,29,58,63,69,81,166,167,204,205,160,7,25,26,34,37,62,63,231,236,239,255,197,198,4,32,35,37,38,40,51,56,58,72,74,76,80,83,85,86,88,90,92,94,96,99,101,102,107,115,120,125,127,138,164,170,175,176,192,208,174,175,110,111,147,94,34,123,5,3,4,45,3,102,3,1,47,46,128,130,29,3,49,15,28,4,36,9,30,5,43,5,68,4,14,42,128,170,6,36,4,36,4,40,8,52,11,78,67,129,55,9,22,10,8,24,59,69,57,3,99,8,9,48,22,5,33,3,27,5,1,64,56,4,75,5,47,4,10,7,9,7,64,32,39,4,12,9,54,3,58,5,26,7,4,12,7,80,73,55,51,13,51,7,46,8,10,129,38,82,78,40,8,42,22,26,38,28,20,23,9,78,4,36,9,68,13,25,7,10,6,72,8,39,9,117,11,63,65,42,6,59,5,10,6,81,6,1,5,16,3,5,128,139,98,30,72,8,10,128,166,94,34,69,11,10,6,13,19,58,6,10,54,44,4,23,128,185,60,100,83,12,72,9,10,70,69,27,72,8,83,13,73,129,7,70,10,29,3,71,73,55,3,14,8,10,6,57,7,10,129,54,25,128,183,1,15,50,13,131,155,102,117,11,128,196,138,76,99,13,132,47,143,209,130,71,161,185,130,57,7,42,4,92,6,38,10,70,10,40,5,19,130,176,91,101,75,4,57,7,17,64,5,11,2,14,151,248,8,132,214,42,9,162,231,129,51,45,3,17,4,8,129,140,137,4,107,5,13,3,9,7,16,146,96,71,9,116,60,128,246,10,115,8,112,21,70,128,154,20,12,87,9,25,128,135,129,71,3,133,66,15,21,132,80,31,128,225,43,128,213,45,3,26,4,2,129,64,31,17,58,5,1,132,224,128,247,41,76,4,10,4,2,131,17,68,76,61,128,194,60,6,1,4,85,5,27,52,2,129,14,44,4,100,12,86,10,128,174,56,29,13,44,4,9,7,2,14,6,128,154,131,216,5,16,3,13,3,116,12,89,7,12,4,1,15,12,4,56,8,10,6,40,8,34,78,129,84,12,21,3,5,3,7,9,29,3,11,5,6,10,10,6,8,8,7,9,128,203,37,10,132,6,108,105,98,114,97,114,121,47,99,111,114,101,47,115,114,99,47,117,110,105,99,111,100,101,47,117,110,105,99,111,100,101,95,100,97,116,97,46,114,115,0,0,0,93,18,16,0,40,0,0,0,75,0,0,0,40,0,0,0,93,18,16,0,40,0,0,0,87,0,0,0,22,0,0,0,93,18,16,0,40,0,0,0,82,0,0,0,62,0,0,0,36,0,0,0,4,0,0,0,4,0,0,0,44,0,0,0,84,114,121,70,114,111,109,83,108,105,99,101,69,114,114,111,114,69,114,114,111,114,0,0,0,3,0,0,131,4,32,0,145,5,96,0,93,19,160,0,18,23,32,31,12,32,96,31,239,44,160,43,42,48,32,44,111,166,224,44,2,168,96,45,30,251,96,46,0,254,32,54,158,255,96,54,253,1,225,54,1,10,33,55,36,13,225,55,171,14,97,57,47,24,161,57,48,28,225,71,243,30,33,76,240,106,225,79,79,111,33,80,157,188,161,80,0,207,97,81,101,209,161,81,0,218,33,82,0,224,225,83,48,225,97,85,174,226,161,86,208,232,225,86,32,0,110,87,240,1,255,87,0,112,0,7,0,45,1,1,1,2,1,2,1,1,72,11,48,21,16,1,101,7,2,6,2,2,1,4,35,1,30,27,91,11,58,9,9,1,24,4,1,9,1,3,1,5,43,3,60,8,42,24,1,32,55,1,1,1,4,8,4,1,3,7,10,2,29,1,58,1,1,1,2,4,8,1,9,1,10,2,26,1,2,2,57,1,4,2,4,2,2,3,3,1,30,2,3,1,11,2,57,1,4,5,1,2,4,1,20,2,22,6,1,1,58,1,1,2,1,4,8,1,7,3,10,2,30,1,59,1,1,1,12,1,9,1,40,1,3,1,55,1,1,3,5,3,1,4,7,2,11,2,29,1,58,1,2,1,2,1,3,1,5,2,7,2,11,2,28,2,57,2,1,1,2,4,8,1,9,1,10,2,29,1,72,1,4,1,2,3,1,1,8,1,81,1,2,7,12,8,98,1,2,9,11,6,74,2,27,1,1,1,1,1,55,14,1,5,1,2,5,11,1,36,9,1,102,4,1,6,1,2,2,2,25,2,4,3,16,4,13,1,2,2,6,1,15,1,0,3,0,3,29,2,30,2,30,2,64,2,1,7,8,1,2,11,9,1,45,3,1,1,117,2,34,1,118,3,4,2,9,1,6,3,219,2,2,1,58,1,1,7,1,1,1,1,2,8,6,10,2,1,48,31,49,4,48,7,1,1,5,1,40,9,12,2,32,4,2,2,1,3,56,1,1,2,3,1,1,3,58,8,2,2,152,3,1,13,1,7,4,1,6,1,3,2,198,64,0,1,195,33,0,3,141,1,96,32,0,6,105,2,0,4,1,10,32,2,80,2,0,1,3,1,4,1,25,2,5,1,151,2,26,18,13,1,38,8,25,11,46,3,48,1,2,4,2,2,39,1,67,6,2,2,2,2,12,1,8,1,47,1,51,1,1,3,2,2,5,2,1,1,42,2,8,1,238,1,2,1,4,1,0,1,0,16,16,16,0,2,0,1,226,1,149,5,0,3,1,2,5,4,40,3,4,1,165,2,0,4,0,2,153,11,49,4,123,1,54,15,41,1,2,2,10,3,49,4,2,2,7,1,61,3,36,5,1,8,62,1,12,2,52,9,10,4,2,1,95,3,2,1,1,2,6,1,160,1,3,8,21,2,57,2,1,1,1,1,22,1,14,7,3,5,195,8,2,3,1,1,23,1,81,1,2,6,1,1,2,1,1,2,1,2,235,1,2,4,6,2,1,2,27,2,85,8,2,1,1,2,106,1,1,1,2,6,1,1,101,3,2,4,1,5,0,9,1,2,245,1,10,2,1,1,4,1,144,4,2,2,4,1,32,10,40,6,2,4,8,1,9,6,2,3,46,13,1,2,0,7,1,6,1,1,82,22,2,7,1,2,1,2,122,6,3,1,1,2,1,7,1,1,72,2,3,1,1,1,0,2,0,5,59,7,0,1,63,4,81,1,0,2,0,46,2,23,0,1,1,3,4,5,8,8,2,7,30,4,148,3,0,55,4,50,8,1,14,1,22,5,1,15,0,7,1,17,2,7,1,2,1,5,0,7,0,1,61,4,0,7,109,7,0,96,128,240,0,123,9,112,114,111,100,117,99,101,114,115,2,8,108,97,110,103,117,97,103,101,1,4,82,117,115,116,0,12,112,114,111,99,101,115,115,101,100,45,98,121,3,5,114,117,115,116,99,29,49,46,53,56,46,49,32,40,100,98,57,100,49,98,50,48,98,32,50,48,50,50,45,48,49,45,50,48,41,6,119,97,108,114,117,115,6,48,46,49,57,46,48,12,119,97,115,109,45,98,105,110,100,103,101,110,18,48,46,50,46,55,56,32,40,55,102,56,50,48,100,98,52,98,41]); + +const wasmModule = new WebAssembly.Module(bytes); +const wasmInstance = new WebAssembly.Instance(wasmModule, imports); +wasm = wasmInstance.exports; +module.exports.__wasm = wasm; diff --git a/packages/crypto/src/pkg2/package.json b/packages/crypto/src/pkg2/package.json new file mode 100644 index 0000000000..d7ccd0a7b0 --- /dev/null +++ b/packages/crypto/src/pkg2/package.json @@ -0,0 +1,4 @@ +{ + "main": "index.js", + "types": "index.d.ts" +} diff --git a/wasm/argon2id/.cargo/config b/wasm/argon2id/.cargo/config new file mode 100644 index 0000000000..e82e5693fb --- /dev/null +++ b/wasm/argon2id/.cargo/config @@ -0,0 +1,3 @@ +[alias] +wasm = "build --release --target wasm32-unknown-unknown" +wasm-debug = "build --target wasm32-unknown-unknown" diff --git a/wasm/argon2id/.gitignore b/wasm/argon2id/.gitignore new file mode 100644 index 0000000000..9412073dcd --- /dev/null +++ b/wasm/argon2id/.gitignore @@ -0,0 +1,3 @@ +pkg/ +pkg2/ +target/ diff --git a/wasm/argon2id/Cargo.lock b/wasm/argon2id/Cargo.lock new file mode 100644 index 0000000000..5b3fd018a3 --- /dev/null +++ b/wasm/argon2id/Cargo.lock @@ -0,0 +1,210 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "argon2" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0a21e93ce9e91fcd0e01744e4f205fb9192f82915646a7e880dfef0ab4a38d8" +dependencies = [ + "base64ct", + "blake2", +] + +[[package]] +name = "argon2id" +version = "0.1.0" +dependencies = [ + "argon2", + "wasm-bindgen", +] + +[[package]] +name = "base64ct" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b" + +[[package]] +name = "blake2" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b94ba84325db59637ffc528bbe8c7f86c02c57cff5c0e2b9b00f9a851f42f309" +dependencies = [ + "digest", +] + +[[package]] +name = "block-buffer" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03588e54c62ae6d763e2a80090d50353b785795361b4ff5b3bf0a5097fc31c0b" +dependencies = [ + "generic-array", +] + +[[package]] +name = "bumpalo" +version = "3.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9df67f7bf9ef8498769f994239c45613ef0c5899415fb58e9add412d2c1a538" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "crypto-common" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d6b536309245c849479fba3da410962a43ed8e51c26b729208ec0ac2798d0" +dependencies = [ + "generic-array", +] + +[[package]] +name = "digest" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b697d66081d42af4fba142d56918a3cb21dc8eb63372c6b85d14f44fb9c5979b" +dependencies = [ + "block-buffer", + "crypto-common", + "generic-array", + "subtle", +] + +[[package]] +name = "generic-array" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "log" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "proc-macro2" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edc3358ebc67bc8b7fa0c007f945b0b18226f78437d61bec735a9eb96b61ee70" +dependencies = [ + "unicode-xid", +] + +[[package]] +name = "quote" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "subtle" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" + +[[package]] +name = "syn" +version = "1.0.80" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d010a1623fbd906d51d650a9916aaefc05ffa0e4053ff7fe601167f3e715d194" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "typenum" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec" + +[[package]] +name = "unicode-xid" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" + +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + +[[package]] +name = "wasm-bindgen" +version = "0.2.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b" +dependencies = [ + "bumpalo", + "lazy_static", + "log", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc" diff --git a/wasm/argon2id/Cargo.toml b/wasm/argon2id/Cargo.toml new file mode 100644 index 0000000000..d8419ea1f4 --- /dev/null +++ b/wasm/argon2id/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "argon2id" +version = "0.1.0" +edition = "2018" +publish = false + +[lib] +crate-type = ["cdylib"] + +[dependencies] +argon2 = { version = "0.3.2", default-features = false, features = ["alloc"] } +wasm-bindgen = { version = "0.2.78" } diff --git a/wasm/argon2id/src/lib.rs b/wasm/argon2id/src/lib.rs new file mode 100644 index 0000000000..2eef843a57 --- /dev/null +++ b/wasm/argon2id/src/lib.rs @@ -0,0 +1,24 @@ +use wasm_bindgen::prelude::*; + +use argon2::{Algorithm, Argon2, Params, Version}; + +#[wasm_bindgen] +pub fn hash( + password: &str, + salt: &[u8], + output_length: usize, + memory_cost: u32, + time_cost: u32, +) -> Result, JsValue> { + let threads = 1; + + let params = + Params::new(memory_cost, time_cost, threads, Some(output_length)).map_err(|e| e.to_string())?; + let argon2 = Argon2::new(Algorithm::Argon2id, Version::V0x13, params); + + let mut out = vec![0; output_length]; + argon2 + .hash_password_into(password.as_bytes(), salt, &mut out[..]) + .map_err(|e| e.to_string())?; + Ok(out) +} diff --git a/wasm/build_argon2id.sh b/wasm/build_argon2id.sh new file mode 100755 index 0000000000..89adaa144b --- /dev/null +++ b/wasm/build_argon2id.sh @@ -0,0 +1,33 @@ +#!/bin/bash +set -o errexit -o nounset -o pipefail +command -v shellcheck >/dev/null && shellcheck "$0" + +gnused="$(command -v gsed || echo sed)" + +( + cd argon2id + wasm-pack build --target nodejs + + # Prettify before inlining the big Wasm blob to keep this fast and bytes list compact + yarn prettier --write 'pkg/*.{js,ts}' + + echo "Wasm blob built:" + ls -l pkg/argon2id_bg.wasm + + BYTES=$(python3 < pkg2/package.json + cp -R pkg2 ../../packages/crypto/src/ +)