diff --git a/e2e/packages/client-vanilla/.env b/e2e/packages/client-vanilla/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/e2e/packages/client-vanilla/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/e2e/packages/contracts/.env b/e2e/packages/contracts/.env deleted file mode 100644 index 5941f0e227..0000000000 --- a/e2e/packages/contracts/.env +++ /dev/null @@ -1,6 +0,0 @@ -# This .env file is for local testing only. -# -# Anvil default private key: -PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 -VITE_CHAIN_ID=31337 -DEBUG=mud:* diff --git a/examples/minimal/packages/client-phaser/.env b/examples/minimal/packages/client-phaser/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/examples/minimal/packages/client-phaser/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/examples/minimal/packages/client-react/.env b/examples/minimal/packages/client-react/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/examples/minimal/packages/client-react/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/examples/minimal/packages/client-vanilla/.env b/examples/minimal/packages/client-vanilla/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/examples/minimal/packages/client-vanilla/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/examples/minimal/packages/contracts/.env b/examples/minimal/packages/contracts/.env deleted file mode 100644 index f1bf437dd4..0000000000 --- a/examples/minimal/packages/contracts/.env +++ /dev/null @@ -1,11 +0,0 @@ -# This .env file is for demonstration purposes only. -# -# This should usually be excluded via .gitignore and the env vars attached to -# your deployment enviroment, but we're including this here for ease of local -# development. Please do not commit changes to this file! -# -# Anvil default private key: -PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 -FAUCET_PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 -RPC_HTTP_URL=http://127.0.0.1:8545 -DEBUG=mud:* diff --git a/packages/cli/src/utils/defaultModuleContracts.ts b/packages/cli/src/utils/defaultModuleContracts.ts index 9629886524..37699db4bb 100644 --- a/packages/cli/src/utils/defaultModuleContracts.ts +++ b/packages/cli/src/utils/defaultModuleContracts.ts @@ -25,6 +25,7 @@ export const defaultModuleContracts = [ name: "HasKeysModule", abi: HasKeysModuleData.abi as Abi, bytecode: HasKeysModuleData.bytecode.object as Hex, + placeholders: findPlaceholders(HasKeysModuleData.bytecode.linkReferences), deployedBytecodeSize: size(HasKeysModuleData.deployedBytecode.object as Hex), }, { diff --git a/packages/noise/.gitignore b/packages/noise/.gitignore new file mode 100644 index 0000000000..c58060e790 --- /dev/null +++ b/packages/noise/.gitignore @@ -0,0 +1,24 @@ +node_modules +.env +coverage +coverage.json + +#Hardhat files +cache +artifacts + + +node_modules +.env +coverage +coverage.json + +#Hardhat files +cache +artifacts + +yarn-error.log + +out +dist +build \ No newline at end of file diff --git a/packages/noise/.npmignore b/packages/noise/.npmignore new file mode 100644 index 0000000000..458dc7ae95 --- /dev/null +++ b/packages/noise/.npmignore @@ -0,0 +1,11 @@ +* + +!ts/** +!dist/** +!build/** +!contracts/** +!out/** +!assembly/** +!package.json +!README.md +!CHANGELOG.md diff --git a/packages/noise/README.md b/packages/noise/README.md new file mode 100644 index 0000000000..022861046d --- /dev/null +++ b/packages/noise/README.md @@ -0,0 +1,3 @@ +# Noise + +Matching Perlin noise implementations in Solidity and AssemblyScript diff --git a/packages/noise/asconfig.json b/packages/noise/asconfig.json new file mode 100644 index 0000000000..e50a76c616 --- /dev/null +++ b/packages/noise/asconfig.json @@ -0,0 +1,22 @@ +{ + "targets": { + "debug": { + "outFile": "build/debug.wasm", + "textFile": "build/debug.wat", + "sourceMap": true, + "debug": true + }, + "release": { + "outFile": "build/release.wasm", + "textFile": "build/release.wat", + "sourceMap": true, + "optimizeLevel": 3, + "shrinkLevel": 0, + "converge": false, + "noAssert": false + } + }, + "options": { + "bindings": "esm" + } +} diff --git a/packages/noise/assembly/index.ts b/packages/noise/assembly/index.ts new file mode 100644 index 0000000000..b7fcaab287 --- /dev/null +++ b/packages/noise/assembly/index.ts @@ -0,0 +1 @@ +export { perlin } from "./perlin"; diff --git a/packages/noise/assembly/perlin.ts b/packages/noise/assembly/perlin.ts new file mode 100644 index 0000000000..102d433b0b --- /dev/null +++ b/packages/noise/assembly/perlin.ts @@ -0,0 +1,119 @@ +// Ported from perlin reference implementation (https://cs.nyu.edu/~perlin/noise/) + +export function perlin(_x: i32, _y: i32, _z: i32, denom: i32): f64 { + // Convert fraction into f64 + let x: f64 = f64(_x) / f64(denom); + let y: f64 = f64(_y) / f64(denom); + let z: f64 = f64(_z) / f64(denom); + + // Find unit cube that contains point + const X: i32 = i32(Math.floor(x)) & 255; + const Y: i32 = i32(Math.floor(y)) & 255; + const Z: i32 = i32(Math.floor(z)) & 255; + + // Find relative x,y,z of point in cube + x -= Math.floor(x); + y -= Math.floor(y); + z -= Math.floor(z); + + // Compute fade curves for each x,y,z + const u: f64 = fade(x); + const v: f64 = fade(y); + const w: f64 = fade(z); + + // Hash coordinates of the 8 cube corners + const A: i32 = p[X] + Y; + const AA: i32 = p[A] + Z; + const AB: i32 = p[A + 1] + Z; + const B: i32 = p[X + 1] + Y; + const BA: i32 = p[B] + Z; + const BB: i32 = p[B + 1] + Z; + + // Add blended results from 8 corners of cube + const r: f64 = lerp( + w, + lerp( + v, + lerp(u, grad(p[AA], x, y, z), grad(p[BA], x - 1, y, z)), + lerp(u, grad(p[AB], x, y - 1, z), grad(p[BB], x - 1, y - 1, z)), + ), + lerp( + v, + lerp(u, grad(p[AA + 1], x, y, z - 1), grad(p[BA + 1], x - 1, y, z - 1)), + lerp(u, grad(p[AB + 1], x, y - 1, z - 1), grad(p[BB + 1], x - 1, y - 1, z - 1)), + ), + ); + + // Shift to range from 0 to 1 + return (r + 1) / 2; +} + +function fade(t: f64): f64 { + return t * t * t * (t * (t * 6 - 15) + 10); +} + +function lerp(t: f64, a: f64, b: f64): f64 { + return a + t * (b - a); +} + +function grad(hash: i32, x: f64, y: f64, z: f64): f64 { + switch (hash & 0xf) { + case 0x0: + return x + y; + case 0x1: + return -x + y; + case 0x2: + return x - y; + case 0x3: + return -x - y; + case 0x4: + return x + z; + case 0x5: + return -x + z; + case 0x6: + return x - z; + case 0x7: + return -x - z; + case 0x8: + return y + z; + case 0x9: + return -y + z; + case 0xa: + return y - z; + case 0xb: + return -y - z; + case 0xc: + return y + x; + case 0xd: + return -y + z; + case 0xe: + return y - x; + case 0xf: + return -y - z; + default: + return 0; // never happens + } +} + +const p: i32[] = [ + 151, 160, 137, 91, 90, 15, 131, 13, 201, 95, 96, 53, 194, 233, 7, 225, 140, 36, 103, 30, 69, 142, 8, 99, 37, 240, 21, + 10, 23, 190, 6, 148, 247, 120, 234, 75, 0, 26, 197, 62, 94, 252, 219, 203, 117, 35, 11, 32, 57, 177, 33, 88, 237, 149, + 56, 87, 174, 20, 125, 136, 171, 168, 68, 175, 74, 165, 71, 134, 139, 48, 27, 166, 77, 146, 158, 231, 83, 111, 229, + 122, 60, 211, 133, 230, 220, 105, 92, 41, 55, 46, 245, 40, 244, 102, 143, 54, 65, 25, 63, 161, 1, 216, 80, 73, 209, + 76, 132, 187, 208, 89, 18, 169, 200, 196, 135, 130, 116, 188, 159, 86, 164, 100, 109, 198, 173, 186, 3, 64, 52, 217, + 226, 250, 124, 123, 5, 202, 38, 147, 118, 126, 255, 82, 85, 212, 207, 206, 59, 227, 47, 16, 58, 17, 182, 189, 28, 42, + 223, 183, 170, 213, 119, 248, 152, 2, 44, 154, 163, 70, 221, 153, 101, 155, 167, 43, 172, 9, 129, 22, 39, 253, 19, 98, + 108, 110, 79, 113, 224, 232, 178, 185, 112, 104, 218, 246, 97, 228, 251, 34, 242, 193, 238, 210, 144, 12, 191, 179, + 162, 241, 81, 51, 145, 235, 249, 14, 239, 107, 49, 192, 214, 31, 181, 199, 106, 157, 184, 84, 204, 176, 115, 121, 50, + 45, 127, 4, 150, 254, 138, 236, 205, 93, 222, 114, 67, 29, 24, 72, 243, 141, 128, 195, 78, 66, 215, 61, 156, 180, 151, + 160, 137, 91, 90, 15, 131, 13, 201, 95, 96, 53, 194, 233, 7, 225, 140, 36, 103, 30, 69, 142, 8, 99, 37, 240, 21, 10, + 23, 190, 6, 148, 247, 120, 234, 75, 0, 26, 197, 62, 94, 252, 219, 203, 117, 35, 11, 32, 57, 177, 33, 88, 237, 149, 56, + 87, 174, 20, 125, 136, 171, 168, 68, 175, 74, 165, 71, 134, 139, 48, 27, 166, 77, 146, 158, 231, 83, 111, 229, 122, + 60, 211, 133, 230, 220, 105, 92, 41, 55, 46, 245, 40, 244, 102, 143, 54, 65, 25, 63, 161, 1, 216, 80, 73, 209, 76, + 132, 187, 208, 89, 18, 169, 200, 196, 135, 130, 116, 188, 159, 86, 164, 100, 109, 198, 173, 186, 3, 64, 52, 217, 226, + 250, 124, 123, 5, 202, 38, 147, 118, 126, 255, 82, 85, 212, 207, 206, 59, 227, 47, 16, 58, 17, 182, 189, 28, 42, 223, + 183, 170, 213, 119, 248, 152, 2, 44, 154, 163, 70, 221, 153, 101, 155, 167, 43, 172, 9, 129, 22, 39, 253, 19, 98, 108, + 110, 79, 113, 224, 232, 178, 185, 112, 104, 218, 246, 97, 228, 251, 34, 242, 193, 238, 210, 144, 12, 191, 179, 162, + 241, 81, 51, 145, 235, 249, 14, 239, 107, 49, 192, 214, 31, 181, 199, 106, 157, 184, 84, 204, 176, 115, 121, 50, 45, + 127, 4, 150, 254, 138, 236, 205, 93, 222, 114, 67, 29, 24, 72, 243, 141, 128, 195, 78, 66, 215, 61, 156, 180, +]; diff --git a/packages/noise/assembly/tsconfig.json b/packages/noise/assembly/tsconfig.json new file mode 100644 index 0000000000..798b474eab --- /dev/null +++ b/packages/noise/assembly/tsconfig.json @@ -0,0 +1,4 @@ +{ + "extends": "assemblyscript/std/assembly.json", + "include": ["./**/*.ts"] +} diff --git a/packages/noise/build/release.wasm b/packages/noise/build/release.wasm deleted file mode 100644 index 90efce1141..0000000000 Binary files a/packages/noise/build/release.wasm and /dev/null differ diff --git a/packages/noise/build/release.wasm.map b/packages/noise/build/release.wasm.map deleted file mode 100644 index 9f3c760db3..0000000000 --- a/packages/noise/build/release.wasm.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["~lib/rt/common.ts","~lib/rt/tlsf.ts","~lib/shared/typeinfo.ts","~lib/rt/itcms.ts","assembly/perlin.ts","~lib/util/math.ts","~lib/util/number.ts","~lib/util/string.ts","~lib/math.ts","~lib/shared/runtime.ts","~lib/util/sort.ts","~lib/array.ts","~lib/util/error.ts"],"names":[],"mappings":"yGWiHI,AAAI,EAAc,AAAK,SAAmC,eAO1D,AANoB,MAAkB,EAAgB,6CPvDhD,EAAO,uBAEJ,EAAI,KAEJ,AAAK,EAAJ,KAED,EAAI,KAEJ,AAAC,GAAI,KAEL,EAAI,KAEJ,AAAK,EAAJ,KAED,EAAI,KAEJ,AAAC,GAAI,KAEL,EAAI,KAEJ,AAAK,EAAJ,KAED,EAAI,KAEJ,AAAC,GAAI,KAEL,EAAI,KAEJ,AAAK,EAAJ,KAED,EAAI,KAEJ,AAAC,GAAI,KAhChB,iEAnCiB,AAfF,AAAe,AALjB,GAAU,aAKa,QAed,AAdP,AAAe,AALjB,GAAU,UAKa,WAepB,MAAE,IAAK,AAdR,AAAe,AALjB,GAAU,UAKa,WAepB,MAAE,EAAI,KAAK,OACZ,MAAE,EAAI,KAAK,OACV,MAAE,IAAK,OACP,MAAE,EAAI,KAAK,OAOV,MAAE,IAAK,AAtBxB,EAAK,KAsBsB,AArB3B,EAAK,KAqByB,AApB9B,EAAK,WAoBkC,QAmB5B,AApCI,AAgCR,AAhCa,EAgCT,GAAI,GAAK,EAAK,EAAI,UAAI,WAAM,aAfE,IAAK,EAAI,YAAG,EAAG,IAmBpC,SAlBH,MAAE,IAAK,EAAG,EAAI,YAAG,QAAS,QAkBhC,AAnCI,AA+BR,AA/Ba,EA+BT,GAAI,GAAK,EAAK,EAAI,UAAI,WAAM,eAI5B,EAlBkC,IAAK,EAAO,EAAO,IAkB5C,cAdH,MAAE,EAAK,KAAI,EAAG,EAAG,EAAI,kBAAS,QAcpC,EAdsC,EAAK,KAAI,EAAO,EAAG,IAchD,SAbH,MAAE,EAAK,KAAI,EAAG,EAAO,QAAa,QAaxC,AAJJ,AA9Ba,EA8BT,GAAI,GAAK,EAAK,EAAI,UAAI,WAAM,aAI5B,MAb0C,EAAK,KAAI,EAAO,EAAO,IAaxD,eARR,UAAK","sourceRoot":"./release","sourcesContent":["// Alignment guarantees\n\n// @ts-ignore: decorator\n@inline export const AL_BITS: u32 = 4; // 16 bytes to fit up to v128\n// @ts-ignore: decorator\n@inline export const AL_SIZE: usize = 1 << AL_BITS;\n// @ts-ignore: decorator\n@inline export const AL_MASK: usize = AL_SIZE - 1;\n\n// Extra debugging\n\n// @ts-ignore: decorator\n@inline export const DEBUG = true;\n// @ts-ignore: decorator\n@inline export const TRACE = false;\n// @ts-ignore: decorator\n@inline export const RTRACE = isDefined(ASC_RTRACE);\n// @ts-ignore: decorator\n@inline export const PROFILE = isDefined(ASC_PROFILE);\n\n// Memory manager\n\n// ╒════════════ Memory manager block layout (32-bit) ═════════════╕\n// 3 2 1\n// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 bits\n// ├─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┤\n// │ MM info │ -4\n// ╞>ptr═══════════════════════════════════════════════════════════╡\n// │ ... │\n@unmanaged export class BLOCK {\n /** Memory manager info. */\n mmInfo: usize;\n}\n\n/** Overhead of a memory manager block. */\n// @ts-ignore: decorator\n@inline export const BLOCK_OVERHEAD: usize = offsetof();\n\n/** Maximum size of a memory manager block's payload. */\n// @ts-ignore: decorator\n@inline export const BLOCK_MAXSIZE: usize = (1 << 30) - BLOCK_OVERHEAD;\n\n// Garbage collector\n\n// ╒══════════ Garbage collector object layout (32-bit) ═══════════╕\n// 3 2 1\n// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 bits\n// ├─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┤\n// │ Memory manager block │ -20\n// ╞═══════════════════════════════════════════════════════════════╡\n// │ GC info │ -16\n// ├───────────────────────────────────────────────────────────────┤\n// │ GC info │ -12\n// ├───────────────────────────────────────────────────────────────┤\n// │ RT id │ -8\n// ├───────────────────────────────────────────────────────────────┤\n// │ RT size │ -4\n// ╞>ptr═══════════════════════════════════════════════════════════╡\n// │ ... │\n@unmanaged export class OBJECT extends BLOCK {\n /** Garbage collector info. */\n gcInfo: u32;\n /** Garbage collector info. */\n gcInfo2: u32;\n /** Runtime class id. */\n rtId: u32;\n /** Runtime object size. */\n rtSize: u32;\n}\n\n/** Overhead of a garbage collector object. Excludes memory manager block overhead. */\n// @ts-ignore: decorator\n@inline export const OBJECT_OVERHEAD: usize = (offsetof() - BLOCK_OVERHEAD + AL_MASK) & ~AL_MASK;\n\n/** Maximum size of a garbage collector object's payload. */\n// @ts-ignore: decorator\n@inline export const OBJECT_MAXSIZE: usize = BLOCK_MAXSIZE - OBJECT_OVERHEAD;\n\n/** Total of memory manager and garbage collector overhead. */\n// @ts-ignore: decorator\n@inline export const TOTAL_OVERHEAD: usize = BLOCK_OVERHEAD + OBJECT_OVERHEAD;\n","import { AL_BITS, AL_SIZE, AL_MASK, DEBUG, BLOCK, BLOCK_OVERHEAD, BLOCK_MAXSIZE } from \"./common\";\nimport { oninit, onalloc, onresize, onmove, onfree } from \"./rtrace\";\nimport { E_ALLOCATION_TOO_LARGE } from \"../util/error\";\n\n// === The TLSF (Two-Level Segregate Fit) memory allocator ===\n// see: http://www.gii.upv.es/tlsf/\n\n// - `ffs(x)` is equivalent to `ctz(x)` with x != 0\n// - `fls(x)` is equivalent to `sizeof(x) * 8 - clz(x) - 1`\n\n// ╒══════════════ Block size interpretation (32-bit) ═════════════╕\n// 3 2 1\n// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 bits\n// ├─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┼─┴─┴─┴─╫─┴─┴─┴─┤\n// │ | FL │ SB = SL + AL │ ◄─ usize\n// └───────────────────────────────────────────────┴───────╨───────┘\n// FL: first level, SL: second level, AL: alignment, SB: small block\n\n// @ts-ignore: decorator\n@inline const SL_BITS: u32 = 4;\n// @ts-ignore: decorator\n@inline const SL_SIZE: u32 = 1 << SL_BITS;\n\n// @ts-ignore: decorator\n@inline const SB_BITS: u32 = SL_BITS + AL_BITS;\n// @ts-ignore: decorator\n@inline const SB_SIZE: u32 = 1 << SB_BITS;\n\n// @ts-ignore: decorator\n@inline const FL_BITS: u32 = 31 - SB_BITS;\n\n// [00]: < 256B (SB) [12]: < 1M\n// [01]: < 512B [13]: < 2M\n// [02]: < 1K [14]: < 4M\n// [03]: < 2K [15]: < 8M\n// [04]: < 4K [16]: < 16M\n// [05]: < 8K [17]: < 32M\n// [06]: < 16K [18]: < 64M\n// [07]: < 32K [19]: < 128M\n// [08]: < 64K [20]: < 256M\n// [09]: < 128K [21]: < 512M\n// [10]: < 256K [22]: <= 1G - OVERHEAD\n// [11]: < 512K\n// VMs limit to 2GB total (currently), making one 1G block max (or three 512M etc.) due to block overhead\n\n// Tags stored in otherwise unused alignment bits\n\n// @ts-ignore: decorator\n@inline const FREE: usize = 1 << 0;\n// @ts-ignore: decorator\n@inline const LEFTFREE: usize = 1 << 1;\n// @ts-ignore: decorator\n@inline const TAGS_MASK: usize = FREE | LEFTFREE; // <= AL_MASK\n\n// ╒════════════════════ Block layout (32-bit) ════════════════════╕\n// 3 2 1\n// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 bits\n// ├─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┼─┼─┤ ┐\n// │ size │L│F│ ◄─┐ info overhead\n// ╞>ptr═══════════════════════════════════════════════════════╧═╧═╡ │ ┘\n// │ if free: ◄ prev │ ◄─┤ usize\n// ├───────────────────────────────────────────────────────────────┤ │\n// │ if free: next ► │ ◄─┤\n// ├───────────────────────────────────────────────────────────────┤ │\n// │ ... │ │ >= 0\n// ├───────────────────────────────────────────────────────────────┤ │\n// │ if free: back ▲ │ ◄─┘\n// └───────────────────────────────────────────────────────────────┘ >= MIN SIZE\n// F: FREE, L: LEFTFREE\n@unmanaged export class Block extends BLOCK {\n\n /** Previous free block, if any. Only valid if free, otherwise part of payload. */\n prev: Block | null;\n /** Next free block, if any. Only valid if free, otherwise part of payload. */\n next: Block | null;\n\n // If the block is free, there is a 'back'reference at its end pointing at its start.\n}\n\n// Block constants. A block must have a minimum size of three pointers so it can hold `prev`,\n// `next` and `back` if free.\n\n// @ts-ignore: decorator\n@inline const BLOCK_MINSIZE: usize = ((3 * sizeof() + BLOCK_OVERHEAD + AL_MASK) & ~AL_MASK) - BLOCK_OVERHEAD; // prev + next + back\n// @ts-ignore: decorator\n// @inline const BLOCK_MAXSIZE: usize = 1 << (FL_BITS + SB_BITS - 1); // exclusive, lives in common.ts\n\n/** Gets the left block of a block. Only valid if the left block is free. */\n// @ts-ignore: decorator\n@inline function GETFREELEFT(block: Block): Block {\n return load(changetype(block) - sizeof());\n}\n\n/** Gets the right block of a block by advancing to the right by its size. */\n// @ts-ignore: decorator\n@inline function GETRIGHT(block: Block): Block {\n return changetype(changetype(block) + BLOCK_OVERHEAD + (block.mmInfo & ~TAGS_MASK));\n}\n\n// ╒═════════════════════ Root layout (32-bit) ════════════════════╕\n// 3 2 1\n// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 bits\n// ├─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┤ ┐\n// │ 0 | flMap S│ ◄────┐\n// ╞═══════════════════════════════════════════════════════════════╡ │\n// │ slMap[0] S │ ◄─┐ │\n// ├───────────────────────────────────────────────────────────────┤ │ │\n// │ slMap[1] │ ◄─┤ │\n// ├───────────────────────────────────────────────────────────────┤ u32 │\n// │ slMap[22] │ ◄─┘ │\n// ╞═══════════════════════════════════════════════════════════════╡ usize\n// │ head[0] │ ◄────┤\n// ├───────────────────────────────────────────────────────────────┤ │\n// │ ... │ ◄────┤\n// ├───────────────────────────────────────────────────────────────┤ │\n// │ head[367] │ ◄────┤\n// ╞═══════════════════════════════════════════════════════════════╡ │\n// │ tail │ ◄────┘\n// └───────────────────────────────────────────────────────────────┘ SIZE ┘\n// S: Small blocks map\n@unmanaged class Root {\n /** First level bitmap. */\n flMap: usize;\n}\n\n// Root constants. Where stuff is stored inside of the root structure.\n\n// @ts-ignore: decorator\n@inline const SL_START: usize = sizeof();\n// @ts-ignore: decorator\n@inline const SL_END: usize = SL_START + (FL_BITS << alignof());\n// @ts-ignore: decorator\n@inline const HL_START: usize = (SL_END + AL_MASK) & ~AL_MASK;\n// @ts-ignore: decorator\n@inline const HL_END: usize = HL_START + FL_BITS * SL_SIZE * sizeof();\n// @ts-ignore: decorator\n@inline const ROOT_SIZE: usize = HL_END + sizeof();\n\n// @ts-ignore: decorator\n@lazy export var ROOT: Root;\n\n/** Gets the second level map of the specified first level. */\n// @ts-ignore: decorator\n@inline function GETSL(root: Root, fl: usize): u32 {\n return load(\n changetype(root) + (fl << alignof()),\n SL_START\n );\n}\n\n/** Sets the second level map of the specified first level. */\n// @ts-ignore: decorator\n@inline function SETSL(root: Root, fl: usize, slMap: u32): void {\n store(\n changetype(root) + (fl << alignof()),\n slMap,\n SL_START\n );\n}\n\n/** Gets the head of the free list for the specified combination of first and second level. */\n// @ts-ignore: decorator\n@inline function GETHEAD(root: Root, fl: usize, sl: u32): Block | null {\n return load(\n changetype(root) + (((fl << SL_BITS) + sl) << alignof()),\n HL_START\n );\n}\n\n/** Sets the head of the free list for the specified combination of first and second level. */\n// @ts-ignore: decorator\n@inline function SETHEAD(root: Root, fl: usize, sl: u32, head: Block | null): void {\n store(\n changetype(root) + (((fl << SL_BITS) + sl) << alignof()),\n head,\n HL_START\n );\n}\n\n/** Gets the tail block.. */\n// @ts-ignore: decorator\n@inline function GETTAIL(root: Root): Block {\n return load(\n changetype(root),\n HL_END\n );\n}\n\n/** Sets the tail block. */\n// @ts-ignore: decorator\n@inline function SETTAIL(root: Root, tail: Block): void {\n store(\n changetype(root),\n tail,\n HL_END\n );\n}\n\n/** Inserts a previously used block back into the free list. */\nfunction insertBlock(root: Root, block: Block): void {\n if (DEBUG) assert(block); // cannot be null\n var blockInfo = block.mmInfo;\n if (DEBUG) assert(blockInfo & FREE); // must be free\n\n var right = GETRIGHT(block);\n var rightInfo = right.mmInfo;\n\n // merge with right block if also free\n if (rightInfo & FREE) {\n removeBlock(root, right);\n block.mmInfo = blockInfo = blockInfo + BLOCK_OVERHEAD + (rightInfo & ~TAGS_MASK); // keep block tags\n right = GETRIGHT(block);\n rightInfo = right.mmInfo;\n // 'back' is set below\n }\n\n // merge with left block if also free\n if (blockInfo & LEFTFREE) {\n let left = GETFREELEFT(block);\n let leftInfo = left.mmInfo;\n if (DEBUG) assert(leftInfo & FREE); // must be free according to right tags\n removeBlock(root, left);\n block = left;\n block.mmInfo = blockInfo = leftInfo + BLOCK_OVERHEAD + (blockInfo & ~TAGS_MASK); // keep left tags\n // 'back' is set below\n }\n\n right.mmInfo = rightInfo | LEFTFREE;\n // reference to right is no longer used now, hence rightInfo is not synced\n\n // we now know the size of the block\n var size = blockInfo & ~TAGS_MASK;\n if (DEBUG) assert(size >= BLOCK_MINSIZE); // must be a valid size\n if (DEBUG) assert(changetype(block) + BLOCK_OVERHEAD + size == changetype(right)); // must match\n\n // set 'back' to itself at the end of block\n store(changetype(right) - sizeof(), block);\n\n // mapping_insert\n var fl: usize, sl: u32;\n if (size < SB_SIZE) {\n fl = 0;\n sl = (size >> AL_BITS);\n } else {\n const inv: usize = sizeof() * 8 - 1;\n let boundedSize = min(size, BLOCK_MAXSIZE);\n fl = inv - clz(boundedSize);\n sl = ((boundedSize >> (fl - SL_BITS)) ^ (1 << SL_BITS));\n fl -= SB_BITS - 1;\n }\n if (DEBUG) assert(fl < FL_BITS && sl < SL_SIZE); // fl/sl out of range\n\n // perform insertion\n var head = GETHEAD(root, fl, sl);\n block.prev = null;\n block.next = head;\n if (head) head.prev = block;\n SETHEAD(root, fl, sl, block);\n\n // update first and second level maps\n root.flMap |= (1 << fl);\n SETSL(root, fl, GETSL(root, fl) | (1 << sl));\n}\n\n/** Removes a free block from internal lists. */\nfunction removeBlock(root: Root, block: Block): void {\n var blockInfo = block.mmInfo;\n if (DEBUG) assert(blockInfo & FREE); // must be free\n var size = blockInfo & ~TAGS_MASK;\n if (DEBUG) assert(size >= BLOCK_MINSIZE); // must be valid\n\n // mapping_insert\n var fl: usize, sl: u32;\n if (size < SB_SIZE) {\n fl = 0;\n sl = (size >> AL_BITS);\n } else {\n const inv: usize = sizeof() * 8 - 1;\n let boundedSize = min(size, BLOCK_MAXSIZE);\n fl = inv - clz(boundedSize);\n sl = ((boundedSize >> (fl - SL_BITS)) ^ (1 << SL_BITS));\n fl -= SB_BITS - 1;\n }\n if (DEBUG) assert(fl < FL_BITS && sl < SL_SIZE); // fl/sl out of range\n\n // link previous and next free block\n var prev = block.prev;\n var next = block.next;\n if (prev) prev.next = next;\n if (next) next.prev = prev;\n\n // update head if we are removing it\n if (block == GETHEAD(root, fl, sl)) {\n SETHEAD(root, fl, sl, next);\n\n // clear second level map if head is empty now\n if (!next) {\n let slMap = GETSL(root, fl);\n SETSL(root, fl, slMap &= ~(1 << sl));\n\n // clear first level map if second level is empty now\n if (!slMap) root.flMap &= ~(1 << fl);\n }\n }\n // note: does not alter left/back because it is likely that splitting\n // is performed afterwards, invalidating those changes. so, the caller\n // must perform those updates.\n}\n\n/** Searches for a free block of at least the specified size. */\nfunction searchBlock(root: Root, size: usize): Block | null {\n // size was already asserted by caller\n\n // mapping_search\n var fl: usize, sl: u32;\n if (size < SB_SIZE) {\n fl = 0;\n sl = (size >> AL_BITS);\n } else {\n const halfMaxSize = BLOCK_MAXSIZE >> 1; // don't round last fl\n const inv: usize = sizeof() * 8 - 1;\n const invRound = inv - SL_BITS;\n let requestSize = size < halfMaxSize\n ? size + (1 << (invRound - clz(size))) - 1\n : size;\n fl = inv - clz(requestSize);\n sl = ((requestSize >> (fl - SL_BITS)) ^ (1 << SL_BITS));\n fl -= SB_BITS - 1;\n }\n if (DEBUG) assert(fl < FL_BITS && sl < SL_SIZE); // fl/sl out of range\n\n // search second level\n var slMap = GETSL(root, fl) & (~0 << sl);\n var head: Block | null = null;\n if (!slMap) {\n // search next larger first level\n let flMap = root.flMap & (~0 << (fl + 1));\n if (!flMap) {\n head = null;\n } else {\n fl = ctz(flMap);\n slMap = GETSL(root, fl);\n if (DEBUG) assert(slMap); // can't be zero if fl points here\n head = GETHEAD(root, fl, ctz(slMap));\n }\n } else {\n head = GETHEAD(root, fl, ctz(slMap));\n }\n return head;\n}\n\n/** Prepares the specified block before (re-)use, possibly splitting it. */\nfunction prepareBlock(root: Root, block: Block, size: usize): void {\n // size was already asserted by caller\n\n var blockInfo = block.mmInfo;\n if (DEBUG) assert(!((size + BLOCK_OVERHEAD) & AL_MASK)); // size must be aligned so the new block is\n\n // split if the block can hold another MINSIZE block incl. overhead\n var remaining = (blockInfo & ~TAGS_MASK) - size;\n if (remaining >= BLOCK_OVERHEAD + BLOCK_MINSIZE) {\n block.mmInfo = size | (blockInfo & LEFTFREE); // also discards FREE\n\n let spare = changetype(changetype(block) + BLOCK_OVERHEAD + size);\n spare.mmInfo = (remaining - BLOCK_OVERHEAD) | FREE; // not LEFTFREE\n insertBlock(root, spare); // also sets 'back'\n\n // otherwise tag block as no longer FREE and right as no longer LEFTFREE\n } else {\n block.mmInfo = blockInfo & ~FREE;\n GETRIGHT(block).mmInfo &= ~LEFTFREE;\n }\n}\n\n/** Adds more memory to the pool. */\nfunction addMemory(root: Root, start: usize, end: usize): bool {\n if (DEBUG) assert(start <= end); // must be valid\n start = ((start + BLOCK_OVERHEAD + AL_MASK) & ~AL_MASK) - BLOCK_OVERHEAD;\n end &= ~AL_MASK;\n\n var tail = GETTAIL(root);\n var tailInfo: usize = 0;\n if (tail) { // more memory\n if (DEBUG) assert(start >= changetype(tail) + BLOCK_OVERHEAD);\n\n // merge with current tail if adjacent\n const offsetToTail = AL_SIZE;\n if (start - offsetToTail == changetype(tail)) {\n start -= offsetToTail;\n tailInfo = tail.mmInfo;\n } else {\n // We don't do this, but a user might `memory.grow` manually\n // leading to non-adjacent pages managed by TLSF.\n }\n\n } else if (DEBUG) { // first memory\n assert(start >= changetype(root) + ROOT_SIZE); // starts after root\n }\n\n // check if size is large enough for a free block and the tail block\n var size = end - start;\n if (size < BLOCK_OVERHEAD + BLOCK_MINSIZE + BLOCK_OVERHEAD) {\n return false;\n }\n\n // left size is total minus its own and the zero-length tail's header\n var leftSize = size - 2 * BLOCK_OVERHEAD;\n var left = changetype(start);\n left.mmInfo = leftSize | FREE | (tailInfo & LEFTFREE);\n left.prev = null;\n left.next = null;\n\n // tail is a zero-length used block\n tail = changetype(start + BLOCK_OVERHEAD + leftSize);\n tail.mmInfo = 0 | LEFTFREE;\n SETTAIL(root, tail);\n\n insertBlock(root, left); // also merges with free left before tail / sets 'back'\n\n return true;\n}\n\n/** Grows memory to fit at least another block of the specified size. */\nfunction growMemory(root: Root, size: usize): void {\n if (ASC_LOW_MEMORY_LIMIT) {\n unreachable();\n return;\n }\n // Here, both rounding performed in searchBlock ...\n const halfMaxSize = BLOCK_MAXSIZE >> 1;\n if (size < halfMaxSize) { // don't round last fl\n const invRound = (sizeof() * 8 - 1) - SL_BITS;\n size += (1 << (invRound - clz(size))) - 1;\n }\n // and additional BLOCK_OVERHEAD must be taken into account. If we are going\n // to merge with the tail block, that's one time, otherwise it's two times.\n var pagesBefore = memory.size();\n size += BLOCK_OVERHEAD << usize((pagesBefore << 16) - BLOCK_OVERHEAD != changetype(GETTAIL(root)));\n var pagesNeeded = (((size + 0xffff) & ~0xffff) >>> 16);\n var pagesWanted = max(pagesBefore, pagesNeeded); // double memory\n if (memory.grow(pagesWanted) < 0) {\n if (memory.grow(pagesNeeded) < 0) unreachable();\n }\n var pagesAfter = memory.size();\n addMemory(root, pagesBefore << 16, pagesAfter << 16);\n}\n\n/** Computes the size (excl. header) of a block. */\nfunction computeSize(size: usize): usize {\n // Size must be large enough and aligned minus preceeding overhead\n return size <= BLOCK_MINSIZE\n ? BLOCK_MINSIZE\n : ((size + BLOCK_OVERHEAD + AL_MASK) & ~AL_MASK) - BLOCK_OVERHEAD;\n}\n\n/** Prepares and checks an allocation size. */\nfunction prepareSize(size: usize): usize {\n if (size > BLOCK_MAXSIZE) throw new Error(E_ALLOCATION_TOO_LARGE);\n return computeSize(size);\n}\n\n/** Initializes the root structure. */\nfunction initialize(): void {\n if (isDefined(ASC_RTRACE)) oninit(__heap_base);\n var rootOffset = (__heap_base + AL_MASK) & ~AL_MASK;\n var pagesBefore = memory.size();\n var pagesNeeded = ((((rootOffset + ROOT_SIZE) + 0xffff) & ~0xffff) >>> 16);\n if (pagesNeeded > pagesBefore && memory.grow(pagesNeeded - pagesBefore) < 0) unreachable();\n var root = changetype(rootOffset);\n root.flMap = 0;\n SETTAIL(root, changetype(0));\n for (let fl: usize = 0; fl < FL_BITS; ++fl) {\n SETSL(root, fl, 0);\n for (let sl: u32 = 0; sl < SL_SIZE; ++sl) {\n SETHEAD(root, fl, sl, null);\n }\n }\n var memStart = rootOffset + ROOT_SIZE;\n if (ASC_LOW_MEMORY_LIMIT) {\n const memEnd = ASC_LOW_MEMORY_LIMIT & ~AL_MASK;\n if (memStart <= memEnd) addMemory(root, memStart, memEnd);\n else unreachable(); // low memory limit already exceeded\n } else {\n addMemory(root, memStart, memory.size() << 16);\n }\n ROOT = root;\n}\n\n/** Allocates a block of the specified size. */\nexport function allocateBlock(root: Root, size: usize): Block {\n var payloadSize = prepareSize(size);\n var block = searchBlock(root, payloadSize);\n if (!block) {\n growMemory(root, payloadSize);\n block = changetype(searchBlock(root, payloadSize));\n if (DEBUG) assert(block); // must be found now\n }\n if (DEBUG) assert((block.mmInfo & ~TAGS_MASK) >= payloadSize); // must fit\n removeBlock(root, block);\n prepareBlock(root, block, payloadSize);\n if (isDefined(ASC_RTRACE)) onalloc(block);\n return block;\n}\n\n/** Reallocates a block to the specified size. */\nexport function reallocateBlock(root: Root, block: Block, size: usize): Block {\n var payloadSize = prepareSize(size);\n var blockInfo = block.mmInfo;\n var blockSize = blockInfo & ~TAGS_MASK;\n\n // possibly split and update runtime size if it still fits\n if (payloadSize <= blockSize) {\n prepareBlock(root, block, payloadSize);\n if (isDefined(ASC_RTRACE)) {\n if (payloadSize != blockSize) onresize(block, BLOCK_OVERHEAD + blockSize);\n }\n return block;\n }\n\n // merge with right free block if merger is large enough\n var right = GETRIGHT(block);\n var rightInfo = right.mmInfo;\n if (rightInfo & FREE) {\n let mergeSize = blockSize + BLOCK_OVERHEAD + (rightInfo & ~TAGS_MASK);\n if (mergeSize >= payloadSize) {\n removeBlock(root, right);\n block.mmInfo = (blockInfo & TAGS_MASK) | mergeSize;\n prepareBlock(root, block, payloadSize);\n if (isDefined(ASC_RTRACE)) onresize(block, BLOCK_OVERHEAD + blockSize);\n return block;\n }\n }\n\n // otherwise move the block\n return moveBlock(root, block, size);\n}\n\n/** Moves a block to a new one of the specified size. */\nfunction moveBlock(root: Root, block: Block, newSize: usize): Block {\n var newBlock = allocateBlock(root, newSize);\n memory.copy(changetype(newBlock) + BLOCK_OVERHEAD, changetype(block) + BLOCK_OVERHEAD, block.mmInfo & ~TAGS_MASK);\n if (changetype(block) >= __heap_base) {\n if (isDefined(ASC_RTRACE)) onmove(block, newBlock);\n freeBlock(root, block);\n }\n return newBlock;\n}\n\n/** Frees a block. */\nexport function freeBlock(root: Root, block: Block): void {\n if (isDefined(ASC_RTRACE)) onfree(block);\n block.mmInfo = block.mmInfo | FREE;\n insertBlock(root, block);\n}\n\n/** Checks that a used block is valid to be freed or reallocated. */\nfunction checkUsedBlock(ptr: usize): Block {\n var block = changetype(ptr - BLOCK_OVERHEAD);\n assert(\n ptr != 0 && !(ptr & AL_MASK) && // must exist and be aligned\n !(block.mmInfo & FREE) // must be used\n );\n return block;\n}\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __alloc(size: usize): usize {\n if (!ROOT) initialize();\n return changetype(allocateBlock(ROOT, size)) + BLOCK_OVERHEAD;\n}\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __realloc(ptr: usize, size: usize): usize {\n if (!ROOT) initialize();\n return (ptr < __heap_base\n ? changetype(moveBlock(ROOT, checkUsedBlock(ptr), size))\n : changetype(reallocateBlock(ROOT, checkUsedBlock(ptr), size))\n ) + BLOCK_OVERHEAD;\n}\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __free(ptr: usize): void {\n if (ptr < __heap_base) return;\n if (!ROOT) initialize();\n freeBlock(ROOT, checkUsedBlock(ptr));\n}\n","// This file is shared with the compiler and must remain portable\n\n// ╒═══════════════════ Typeinfo interpretation ═══════════════════╕\n// 3 2 1\n// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 bits\n// ├─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┤ ◄─ __rtti_base\n// │ count │\n// ╞═══════════════════════════════════════════════════════════════╡ ┐\n// │ Typeinfo#flags [id=0] │ id < count\n// ├ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ┤\n// │ Typeinfo#base [id=0] │\n// ├───────────────────────────────────────────────────────────────┤\n// │ ... │\n\n/** Runtime type information data structure. */\n@unmanaged\nexport class Typeinfo {\n /** Flags describing the shape of this class type. */\n flags: TypeinfoFlags = TypeinfoFlags.NONE;\n /** Base class id or `0` if none. */\n base: u32 = 0;\n}\n\n/** Runtime type information flags. */\nexport const enum TypeinfoFlags {\n /** No specific flags. */\n NONE = 0,\n /** Type is an `ArrayBufferView`. */\n ARRAYBUFFERVIEW = 1 << 0,\n /** Type is an `Array`. */\n ARRAY = 1 << 1,\n /** Type is a `StaticArray`. */\n STATICARRAY = 1 << 2,\n /** Type is a `Set`. */\n SET = 1 << 3,\n /** Type is a `Map`. */\n MAP = 1 << 4,\n /** Type has no outgoing pointers. */\n POINTERFREE = 1 << 5,\n /** Value alignment of 1 byte. */\n VALUE_ALIGN_0 = 1 << 6,\n /** Value alignment of 2 bytes. */\n VALUE_ALIGN_1 = 1 << 7,\n /** Value alignment of 4 bytes. */\n VALUE_ALIGN_2 = 1 << 8,\n /** Value alignment of 8 bytes. */\n VALUE_ALIGN_3 = 1 << 9,\n /** Value alignment of 16 bytes. */\n VALUE_ALIGN_4 = 1 << 10,\n /** Value is a signed type. */\n VALUE_SIGNED = 1 << 11,\n /** Value is a float type. */\n VALUE_FLOAT = 1 << 12,\n /** Value type is nullable. */\n VALUE_NULLABLE = 1 << 13,\n /** Value type is managed. */\n VALUE_MANAGED = 1 << 14,\n /** Key alignment of 1 byte. */\n KEY_ALIGN_0 = 1 << 15,\n /** Key alignment of 2 bytes. */\n KEY_ALIGN_1 = 1 << 16,\n /** Key alignment of 4 bytes. */\n KEY_ALIGN_2 = 1 << 17,\n /** Key alignment of 8 bytes. */\n KEY_ALIGN_3 = 1 << 18,\n /** Key alignment of 16 bytes. */\n KEY_ALIGN_4 = 1 << 19,\n /** Key is a signed type. */\n KEY_SIGNED = 1 << 20,\n /** Key is a float type. */\n KEY_FLOAT = 1 << 21,\n /** Key type is nullable. */\n KEY_NULLABLE = 1 << 22,\n /** Key type is managed. */\n KEY_MANAGED = 1 << 23\n}\n","import { BLOCK, BLOCK_OVERHEAD, OBJECT_OVERHEAD, OBJECT_MAXSIZE, TOTAL_OVERHEAD, DEBUG, TRACE, RTRACE, PROFILE } from \"./common\";\nimport { onvisit, oncollect, oninterrupt, onyield } from \"./rtrace\";\nimport { TypeinfoFlags } from \"../shared/typeinfo\";\nimport { E_ALLOCATION_TOO_LARGE, E_ALREADY_PINNED, E_NOT_PINNED } from \"../util/error\";\n\n// === ITCMS: An incremental Tri-Color Mark & Sweep garbage collector ===\n// Adapted from Bach Le's μgc, see: https://github.com/bullno1/ugc\n\n// ╒═════════════╤══════════════ Colors ═══════════════════════════╕\n// │ Color │ Meaning │\n// ├─────────────┼─────────────────────────────────────────────────┤\n// │ WHITE* │ Unprocessed │\n// │ BLACK* │ Processed │\n// │ GRAY │ Processed with unprocessed children │\n// │ TRANSPARENT │ Manually pinned (always reachable) │\n// └─────────────┴─────────────────────────────────────────────────┘\n// * flipped between cycles\n\n// @ts-ignore: decorator\n@lazy var white = 0;\n// @ts-ignore: decorator\n@inline const gray = 2;\n// @ts-ignore: decorator\n@inline const transparent = 3;\n// @ts-ignore: decorator\n@inline const COLOR_MASK = 3;\n\n/** Size in memory of all objects currently managed by the GC. */\n// @ts-ignore: decorator\n@lazy var total: usize = 0;\n\n/** Currently transitioning from SWEEP to MARK state. */\n// @ts-ignore: decorator\n@inline const STATE_IDLE = 0;\n/** Currently marking reachable objects. */\n// @ts-ignore: decorator\n@inline const STATE_MARK = 1;\n/** Currently sweeping unreachable objects. */\n// @ts-ignore: decorator\n@inline const STATE_SWEEP = 2;\n/** Current collector state. */\n// @ts-ignore: decorator\n@lazy var state = STATE_IDLE;\n\n// @ts-ignore: decorator\n@lazy var fromSpace = initLazy(changetype(memory.data(offsetof())));\n// @ts-ignore: decorator\n@lazy var toSpace = initLazy(changetype(memory.data(offsetof())));\n// @ts-ignore: decorator\n@lazy var pinSpace = initLazy(changetype(memory.data(offsetof())));\n// @ts-ignore: decorator\n@lazy var iter: Object; // null\n\nfunction initLazy(space: Object): Object {\n space.nextWithColor = changetype(space);\n space.prev = space;\n return space;\n}\n\n/** Visit cookie indicating scanning of an object. */\n// @ts-ignore: decorator\n@inline const VISIT_SCAN = 0;\n\n// ╒═══════════════ Managed object layout (32-bit) ════════════════╕\n// 3 2 1\n// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 bits\n// ├─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┴─┤\n// │ Memory manager block │\n// ╞═══════════════════════════════════════════════════════════╤═══╡\n// │ next │ C │ = nextWithColor\n// ├───────────────────────────────────────────────────────────┴───┤\n// │ prev │\n// ├───────────────────────────────────────────────────────────────┤\n// │ rtId │\n// ├───────────────────────────────────────────────────────────────┤\n// │ rtSize │\n// ╞>ptr═══════════════════════════════════════════════════════════╡\n// │ ... │\n// C: color\n\n/** Represents a managed object in memory, consisting of a header followed by the object's data. */\n@unmanaged class Object extends BLOCK {\n /** Pointer to the next object with color flags stored in the alignment bits. */\n nextWithColor: usize; // *u32\n /** Pointer to the previous object. */\n prev: Object; // *u32\n /** Runtime id. */\n rtId: u32;\n /** Runtime size. */\n rtSize: u32;\n\n /** Gets the pointer to the next object. */\n get next(): Object {\n return changetype(this.nextWithColor & ~COLOR_MASK);\n }\n\n /** Sets the pointer to the next object. */\n set next(obj: Object) {\n this.nextWithColor = changetype(obj) | (this.nextWithColor & COLOR_MASK);\n }\n\n /** Gets this object's color. */\n get color(): i32 {\n return i32(this.nextWithColor & COLOR_MASK);\n }\n\n /** Sets this object's color. */\n set color(color: i32) {\n this.nextWithColor = (this.nextWithColor & ~COLOR_MASK) | color;\n }\n\n /** Gets the size of this object in memory. */\n get size(): usize {\n return BLOCK_OVERHEAD + (this.mmInfo & ~3);\n }\n\n /** Tests if this object is pointerfree. */\n get isPointerfree(): bool {\n var rtId = this.rtId;\n return rtId <= idof() || (__typeinfo(rtId) & TypeinfoFlags.POINTERFREE) != 0;\n }\n\n /** Unlinks this object from its list. */\n unlink(): void {\n var next = this.next;\n if (next == null) {\n if (DEBUG) assert(this.prev == null && changetype(this) < __heap_base);\n return; // static data not yet linked\n }\n var prev = this.prev;\n if (DEBUG) assert(prev);\n next.prev = prev;\n prev.next = next;\n }\n\n /** Links this object to the specified list, with the given color. */\n linkTo(list: Object, withColor: i32): void {\n let prev = list.prev;\n this.nextWithColor = changetype(list) | withColor;\n this.prev = prev;\n prev.next = this;\n list.prev = this;\n }\n\n /** Marks this object as gray, that is reachable with unscanned children. */\n makeGray(): void {\n if (this == iter) iter = assert(this.prev);\n this.unlink();\n this.linkTo(toSpace, this.isPointerfree ? i32(!white) : gray);\n }\n}\n\n/** Visits all objects considered to be program roots. */\nfunction visitRoots(cookie: u32): void {\n __visit_globals(cookie);\n var pn = pinSpace;\n var iter = pn.next;\n while (iter != pn) {\n if (DEBUG) assert(iter.color == transparent);\n __visit_members(changetype(iter) + TOTAL_OVERHEAD, cookie);\n iter = iter.next;\n }\n}\n\n/** Visits all objects on the stack. */\nfunction visitStack(cookie: u32): void {\n var ptr = __stack_pointer;\n while (ptr < __heap_base) {\n __visit(load(ptr), cookie);\n ptr += sizeof();\n }\n}\n\n/** Performs a single step according to the current state. */\nfunction step(): usize {\n // Magic constants responsible for pause times. Obtained experimentally\n // using the compiler compiling itself. 2048 budget pro run by default.\n const MARKCOST = isDefined(ASC_GC_MARKCOST) ? ASC_GC_MARKCOST : 1;\n const SWEEPCOST = isDefined(ASC_GC_SWEEPCOST) ? ASC_GC_SWEEPCOST : 10;\n var obj: Object;\n switch (state) {\n case STATE_IDLE: {\n state = STATE_MARK;\n visitCount = 0;\n visitRoots(VISIT_SCAN);\n iter = toSpace;\n return visitCount * MARKCOST;\n }\n case STATE_MARK: {\n let black = i32(!white);\n obj = iter.next;\n while (obj != toSpace) {\n iter = obj;\n if (obj.color != black) { // skip already-blacks (pointerfree)\n obj.color = black;\n visitCount = 0;\n __visit_members(changetype(obj) + TOTAL_OVERHEAD, VISIT_SCAN);\n return visitCount * MARKCOST;\n }\n obj = obj.next;\n }\n visitCount = 0;\n visitRoots(VISIT_SCAN);\n obj = iter.next;\n if (obj == toSpace) {\n visitStack(VISIT_SCAN);\n obj = iter.next;\n while (obj != toSpace) {\n if (obj.color != black) {\n obj.color = black;\n __visit_members(changetype(obj) + TOTAL_OVERHEAD, VISIT_SCAN);\n }\n obj = obj.next;\n }\n let from = fromSpace;\n fromSpace = toSpace;\n toSpace = from;\n white = black;\n iter = from.next;\n state = STATE_SWEEP;\n }\n return visitCount * MARKCOST;\n }\n case STATE_SWEEP: {\n obj = iter;\n if (obj != toSpace) {\n iter = obj.next;\n if (DEBUG) assert(obj.color == i32(!white)); // old white\n free(obj);\n return SWEEPCOST;\n }\n toSpace.nextWithColor = changetype(toSpace);\n toSpace.prev = toSpace;\n state = STATE_IDLE;\n break;\n }\n }\n return 0;\n}\n\n/** Frees an object. */\nfunction free(obj: Object): void {\n if (changetype(obj) < __heap_base) {\n obj.nextWithColor = 0; // may become linked again\n obj.prev = changetype(0);\n } else {\n total -= obj.size;\n if (isDefined(__finalize)) {\n __finalize(changetype(obj) + TOTAL_OVERHEAD);\n }\n __free(changetype(obj) + BLOCK_OVERHEAD);\n }\n}\n\n// Garbage collector interface\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __new(size: usize, id: i32): usize {\n if (size >= OBJECT_MAXSIZE) throw new Error(E_ALLOCATION_TOO_LARGE);\n if (total >= threshold) interrupt();\n var obj = changetype(__alloc(OBJECT_OVERHEAD + size) - BLOCK_OVERHEAD);\n obj.rtId = id;\n obj.rtSize = size;\n obj.linkTo(fromSpace, white); // inits next/prev\n total += obj.size;\n var ptr = changetype(obj) + TOTAL_OVERHEAD;\n // may be visited before being fully initialized, so must fill\n memory.fill(ptr, 0, size);\n return ptr;\n}\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __renew(oldPtr: usize, size: usize): usize {\n var oldObj = changetype(oldPtr - TOTAL_OVERHEAD);\n // Update object size if its block is large enough\n if (size <= (oldObj.mmInfo & ~3) - OBJECT_OVERHEAD) {\n oldObj.rtSize = size;\n return oldPtr;\n }\n // If not the same object anymore, we have to move it move it due to the\n // shadow stack potentially still referencing the old object\n var newPtr = __new(size, oldObj.rtId);\n memory.copy(newPtr, oldPtr, min(size, oldObj.rtSize));\n return newPtr;\n}\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __link(parentPtr: usize, childPtr: usize, expectMultiple: bool): void {\n // Write barrier is unnecessary if non-incremental\n if (!childPtr) return;\n if (DEBUG) assert(parentPtr);\n var child = changetype(childPtr - TOTAL_OVERHEAD);\n if (child.color == white) {\n let parent = changetype(parentPtr - TOTAL_OVERHEAD);\n let parentColor = parent.color;\n if (parentColor == i32(!white)) {\n // Maintain the invariant that no black object may point to a white object.\n if (expectMultiple) {\n // Move the barrier \"backward\". Suitable for containers receiving multiple stores.\n // Avoids a barrier for subsequent objects stored into the same container.\n parent.makeGray();\n } else {\n // Move the barrier \"forward\". Suitable for objects receiving isolated stores.\n child.makeGray();\n }\n } else if (parentColor == transparent && state == STATE_MARK) {\n // Pinned objects are considered 'black' during the mark phase.\n child.makeGray();\n }\n }\n}\n\n// @ts-ignore: decorator\n@lazy var visitCount = 0;\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __visit(ptr: usize, cookie: i32): void {\n if (!ptr) return;\n let obj = changetype(ptr - TOTAL_OVERHEAD);\n if (RTRACE) if (!onvisit(obj)) return;\n if (obj.color == white) {\n obj.makeGray();\n ++visitCount;\n }\n}\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __pin(ptr: usize): usize {\n if (ptr) {\n let obj = changetype(ptr - TOTAL_OVERHEAD);\n if (obj.color == transparent) {\n throw new Error(E_ALREADY_PINNED);\n }\n obj.unlink(); // from fromSpace\n obj.linkTo(pinSpace, transparent);\n }\n return ptr;\n}\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __unpin(ptr: usize): void {\n if (!ptr) return;\n var obj = changetype(ptr - TOTAL_OVERHEAD);\n if (obj.color != transparent) {\n throw new Error(E_NOT_PINNED);\n }\n if (state == STATE_MARK) {\n // We may be right at the point after marking roots for the second time and\n // entering the sweep phase, in which case the object would be missed if it\n // is not only pinned but also a root. Make sure it isn't missed.\n obj.makeGray();\n } else {\n obj.unlink();\n obj.linkTo(fromSpace, white);\n }\n}\n\n// @ts-ignore: decorator\n@global @unsafe\nexport function __collect(): void {\n if (TRACE) trace(\"GC (full) at\", 1, total);\n if (state > STATE_IDLE) {\n // finish current cycle\n while (state != STATE_IDLE) step();\n }\n // perform a full cycle\n step();\n while (state != STATE_IDLE) step();\n threshold = (total * IDLEFACTOR / 100) + GRANULARITY;\n if (TRACE) trace(\"GC (full) done at cur/max\", 2, total, memory.size() << 16);\n if (RTRACE || PROFILE) oncollect(total);\n}\n\n// Garbage collector automation\n\n/** How often to interrupt. The default of 1024 means \"interrupt each 1024 bytes allocated\". */\n// @ts-ignore: decorator\n@inline const GRANULARITY: usize = isDefined(ASC_GC_GRANULARITY) ? ASC_GC_GRANULARITY : 1024;\n/** How long to interrupt. The default of 200% means \"run at double the speed of allocations\". */\n// @ts-ignore: decorator\n@inline const STEPFACTOR: usize = isDefined(ASC_GC_SWEEPFACTOR) ? ASC_GC_SWEEPFACTOR : 200;\n/** How long to idle. The default of 200% means \"wait for memory to double before kicking in again\". */\n// @ts-ignore: decorator\n@inline const IDLEFACTOR: usize = isDefined(ASC_GC_IDLEFACTOR) ? ASC_GC_IDLEFACTOR : 200;\n\n/** Threshold of memory used by objects to exceed before interrupting again. */\n// @ts-ignore: decorator\n@lazy var threshold: usize = ((memory.size() << 16) - __heap_base) >> 1;\n\n/** Performs a reasonable amount of incremental GC steps. */\nfunction interrupt(): void {\n if (PROFILE) oninterrupt(total);\n if (TRACE) trace(\"GC (auto) at\", 1, total);\n var budget: isize = GRANULARITY * STEPFACTOR / 100;\n do {\n budget -= step();\n if (state == STATE_IDLE) {\n if (TRACE) trace(\"└ GC (auto) done at cur/max\", 2, total, memory.size() << 16);\n threshold = (total * IDLEFACTOR / 100) + GRANULARITY;\n if (PROFILE) onyield(total);\n return;\n }\n } while (budget > 0);\n if (TRACE) trace(\"└ GC (auto) ongoing at\", 1, total);\n threshold = total + GRANULARITY * usize(total - threshold < GRANULARITY);\n if (PROFILE) onyield(total);\n}\n","// Ported from perlin reference implementation (https://cs.nyu.edu/~perlin/noise/)\n\nexport function perlin(_x: i32, _y: i32, _z: i32, denom: i32): f64 {\n // Convert fraction into f64\n let x: f64 = f64(_x) / f64(denom);\n let y: f64 = f64(_y) / f64(denom);\n let z: f64 = f64(_z) / f64(denom);\n\n // Find unit cube that contains point\n const X: i32 = i32(Math.floor(x)) & 255;\n const Y: i32 = i32(Math.floor(y)) & 255;\n const Z: i32 = i32(Math.floor(z)) & 255;\n\n // Find relative x,y,z of point in cube\n x -= Math.floor(x);\n y -= Math.floor(y);\n z -= Math.floor(z);\n\n // Compute fade curves for each x,y,z\n const u: f64 = fade(x);\n const v: f64 = fade(y);\n const w: f64 = fade(z);\n\n // Hash coordinates of the 8 cube corners\n const A: i32 = p[X] + Y;\n const AA: i32 = p[A] + Z;\n const AB: i32 = p[A + 1] + Z;\n const B: i32 = p[X + 1] + Y;\n const BA: i32 = p[B] + Z;\n const BB: i32 = p[B + 1] + Z;\n\n // Add blended results from 8 corners of cube\n const r: f64 = lerp(\n w,\n lerp(\n v,\n lerp(u, grad(p[AA], x, y, z), grad(p[BA], x - 1, y, z)),\n lerp(u, grad(p[AB], x, y - 1, z), grad(p[BB], x - 1, y - 1, z))\n ),\n lerp(\n v,\n lerp(u, grad(p[AA + 1], x, y, z - 1), grad(p[BA + 1], x - 1, y, z - 1)),\n lerp(u, grad(p[AB + 1], x, y - 1, z - 1), grad(p[BB + 1], x - 1, y - 1, z - 1))\n )\n );\n\n // Shift to range from 0 to 1\n return (r + 1) / 2;\n}\n\nfunction fade(t: f64): f64 {\n return t * t * t * (t * (t * 6 - 15) + 10);\n}\n\nfunction lerp(t: f64, a: f64, b: f64): f64 {\n return a + t * (b - a);\n}\n\nfunction grad(hash: i32, x: f64, y: f64, z: f64): f64 {\n switch (hash & 0xf) {\n case 0x0:\n return x + y;\n case 0x1:\n return -x + y;\n case 0x2:\n return x - y;\n case 0x3:\n return -x - y;\n case 0x4:\n return x + z;\n case 0x5:\n return -x + z;\n case 0x6:\n return x - z;\n case 0x7:\n return -x - z;\n case 0x8:\n return y + z;\n case 0x9:\n return -y + z;\n case 0xa:\n return y - z;\n case 0xb:\n return -y - z;\n case 0xc:\n return y + x;\n case 0xd:\n return -y + z;\n case 0xe:\n return y - x;\n case 0xf:\n return -y - z;\n default:\n return 0; // never happens\n }\n}\n\nconst p: i32[] = [\n 151, 160, 137, 91, 90, 15, 131, 13, 201, 95, 96, 53, 194, 233, 7, 225, 140, 36, 103, 30, 69, 142, 8, 99, 37, 240, 21,\n 10, 23, 190, 6, 148, 247, 120, 234, 75, 0, 26, 197, 62, 94, 252, 219, 203, 117, 35, 11, 32, 57, 177, 33, 88, 237, 149,\n 56, 87, 174, 20, 125, 136, 171, 168, 68, 175, 74, 165, 71, 134, 139, 48, 27, 166, 77, 146, 158, 231, 83, 111, 229,\n 122, 60, 211, 133, 230, 220, 105, 92, 41, 55, 46, 245, 40, 244, 102, 143, 54, 65, 25, 63, 161, 1, 216, 80, 73, 209,\n 76, 132, 187, 208, 89, 18, 169, 200, 196, 135, 130, 116, 188, 159, 86, 164, 100, 109, 198, 173, 186, 3, 64, 52, 217,\n 226, 250, 124, 123, 5, 202, 38, 147, 118, 126, 255, 82, 85, 212, 207, 206, 59, 227, 47, 16, 58, 17, 182, 189, 28, 42,\n 223, 183, 170, 213, 119, 248, 152, 2, 44, 154, 163, 70, 221, 153, 101, 155, 167, 43, 172, 9, 129, 22, 39, 253, 19, 98,\n 108, 110, 79, 113, 224, 232, 178, 185, 112, 104, 218, 246, 97, 228, 251, 34, 242, 193, 238, 210, 144, 12, 191, 179,\n 162, 241, 81, 51, 145, 235, 249, 14, 239, 107, 49, 192, 214, 31, 181, 199, 106, 157, 184, 84, 204, 176, 115, 121, 50,\n 45, 127, 4, 150, 254, 138, 236, 205, 93, 222, 114, 67, 29, 24, 72, 243, 141, 128, 195, 78, 66, 215, 61, 156, 180, 151,\n 160, 137, 91, 90, 15, 131, 13, 201, 95, 96, 53, 194, 233, 7, 225, 140, 36, 103, 30, 69, 142, 8, 99, 37, 240, 21, 10,\n 23, 190, 6, 148, 247, 120, 234, 75, 0, 26, 197, 62, 94, 252, 219, 203, 117, 35, 11, 32, 57, 177, 33, 88, 237, 149, 56,\n 87, 174, 20, 125, 136, 171, 168, 68, 175, 74, 165, 71, 134, 139, 48, 27, 166, 77, 146, 158, 231, 83, 111, 229, 122,\n 60, 211, 133, 230, 220, 105, 92, 41, 55, 46, 245, 40, 244, 102, 143, 54, 65, 25, 63, 161, 1, 216, 80, 73, 209, 76,\n 132, 187, 208, 89, 18, 169, 200, 196, 135, 130, 116, 188, 159, 86, 164, 100, 109, 198, 173, 186, 3, 64, 52, 217, 226,\n 250, 124, 123, 5, 202, 38, 147, 118, 126, 255, 82, 85, 212, 207, 206, 59, 227, 47, 16, 58, 17, 182, 189, 28, 42, 223,\n 183, 170, 213, 119, 248, 152, 2, 44, 154, 163, 70, 221, 153, 101, 155, 167, 43, 172, 9, 129, 22, 39, 253, 19, 98, 108,\n 110, 79, 113, 224, 232, 178, 185, 112, 104, 218, 246, 97, 228, 251, 34, 242, 193, 238, 210, 144, 12, 191, 179, 162,\n 241, 81, 51, 145, 235, 249, 14, 239, 107, 49, 192, 214, 31, 181, 199, 106, 157, 184, 84, 204, 176, 115, 121, 50, 45,\n 127, 4, 150, 254, 138, 236, 205, 93, 222, 114, 67, 29, 24, 72, 243, 141, 128, 195, 78, 66, 215, 61, 156, 180,\n];\n","//\n// Lookup data for exp2f\n//\n\n// @ts-ignore: decorator\n@inline const EXP2F_TABLE_BITS = 5;\n\n// @ts-ignore: decorator\n@lazy @inline const EXP2F_DATA_TAB = memory.data([\n // exp2f_data_tab[i] = uint(2^(i/N)) - (i << 52-BITS)\n // used for computing 2^(k/N) for an int |k| < 150 N as\n // double(tab[k%N] + (k << 52-BITS))\n 0x3FF0000000000000, 0x3FEFD9B0D3158574, 0x3FEFB5586CF9890F, 0x3FEF9301D0125B51,\n 0x3FEF72B83C7D517B, 0x3FEF54873168B9AA, 0x3FEF387A6E756238, 0x3FEF1E9DF51FDEE1,\n 0x3FEF06FE0A31B715, 0x3FEEF1A7373AA9CB, 0x3FEEDEA64C123422, 0x3FEECE086061892D,\n 0x3FEEBFDAD5362A27, 0x3FEEB42B569D4F82, 0x3FEEAB07DD485429, 0x3FEEA47EB03A5585,\n 0x3FEEA09E667F3BCD, 0x3FEE9F75E8EC5F74, 0x3FEEA11473EB0187, 0x3FEEA589994CCE13,\n 0x3FEEACE5422AA0DB, 0x3FEEB737B0CDC5E5, 0x3FEEC49182A3F090, 0x3FEED503B23E255D,\n 0x3FEEE89F995AD3AD, 0x3FEEFF76F2FB5E47, 0x3FEF199BDD85529C, 0x3FEF3720DCEF9069,\n 0x3FEF5818DCFBA487, 0x3FEF7C97337B9B5F, 0x3FEFA4AFA2A490DA, 0x3FEFD0765B6E4540\n]);\n\n// ULP error: 0.502 (nearest rounding.)\n// Relative error: 1.69 * 2^-34 in [-1/64, 1/64] (before rounding.)\n// Wrong count: 168353 (all nearest rounding wrong results with fma.)\n// @ts-ignore: decorator\n@inline\nexport function exp2f_lut(x: f32): f32 {\n const\n N = 1 << EXP2F_TABLE_BITS,\n N_MASK = N - 1,\n shift = reinterpret(0x4338000000000000) / N, // 0x1.8p+52\n Ox127f = reinterpret(0x7F000000);\n\n const\n C0 = reinterpret(0x3FAC6AF84B912394), // 0x1.c6af84b912394p-5\n C1 = reinterpret(0x3FCEBFCE50FAC4F3), // 0x1.ebfce50fac4f3p-3\n C2 = reinterpret(0x3FE62E42FF0C52D6); // 0x1.62e42ff0c52d6p-1\n\n var xd = x;\n var ix = reinterpret(x);\n var ux = ix >> 20 & 0x7FF;\n if (ux >= 0x430) {\n // |x| >= 128 or x is nan.\n if (ix == 0xFF800000) return 0; // x == -Inf -> 0\n if (ux >= 0x7F8) return x + x; // x == Inf/NaN -> Inf/NaN\n if (x > 0) return x * Ox127f; // x > 0 -> HugeVal (Owerflow)\n if (x <= -150) return 0; // x <= -150 -> 0 (Underflow)\n }\n\n // x = k/N + r with r in [-1/(2N), 1/(2N)] and int k.\n var kd = xd + shift;\n var ki = reinterpret(kd);\n var r = xd - (kd - shift);\n var t: u64, y: f64, s: f64;\n\n // exp2(x) = 2^(k/N) * 2^r ~= s * (C0*r^3 + C1*r^2 + C2*r + 1)\n t = load(EXP2F_DATA_TAB + ((ki & N_MASK) << alignof()));\n t += ki << (52 - EXP2F_TABLE_BITS);\n s = reinterpret(t);\n y = C2 * r + 1;\n y += (C0 * r + C1) * (r * r);\n y *= s;\n\n return y;\n}\n\n// ULP error: 0.502 (nearest rounding.)\n// Relative error: 1.69 * 2^-34 in [-ln2/64, ln2/64] (before rounding.)\n// Wrong count: 170635 (all nearest rounding wrong results with fma.)\n// @ts-ignore: decorator\n@inline\nexport function expf_lut(x: f32): f32 {\n const\n N = 1 << EXP2F_TABLE_BITS,\n N_MASK = N - 1,\n shift = reinterpret(0x4338000000000000), // 0x1.8p+52\n InvLn2N = reinterpret(0x3FF71547652B82FE) * N, // 0x1.71547652b82fep+0\n Ox1p127f = reinterpret(0x7F000000);\n\n const\n C0 = reinterpret(0x3FAC6AF84B912394) / N / N / N, // 0x1.c6af84b912394p-5\n C1 = reinterpret(0x3FCEBFCE50FAC4F3) / N / N, // 0x1.ebfce50fac4f3p-3\n C2 = reinterpret(0x3FE62E42FF0C52D6) / N; // 0x1.62e42ff0c52d6p-1\n\n var xd = x;\n var ix = reinterpret(x);\n var ux = ix >> 20 & 0x7FF;\n if (ux >= 0x42B) {\n // |x| >= 88 or x is nan.\n if (ix == 0xFF800000) return 0; // x == -Inf -> 0\n if (ux >= 0x7F8) return x + x; // x == Inf/NaN -> Inf/NaN\n if (x > reinterpret(0x42B17217)) return x * Ox1p127f; // x > log(0x1p128) ~= 88.72 -> HugeVal (Owerflow)\n if (x < reinterpret(0xC2CFF1B4)) return 0; // x < log(0x1p-150) ~= -103.97 -> 0 (Underflow)\n }\n\n // x*N/Ln2 = k + r with r in [-1/2, 1/2] and int k.\n var z = InvLn2N * xd;\n\n // Round and convert z to int, the result is in [-150*N, 128*N] and\n // ideally ties-to-even rule is used, otherwise the magnitude of r\n // can be bigger which gives larger approximation error.\n var kd = (z + shift);\n var ki = reinterpret(kd);\n var r = z - (kd - shift);\n var s: f64, y: f64, t: u64;\n\n // exp(x) = 2^(k/N) * 2^(r/N) ~= s * (C0*r^3 + C1*r^2 + C2*r + 1)\n t = load(EXP2F_DATA_TAB + ((ki & N_MASK) << alignof()));\n t += ki << (52 - EXP2F_TABLE_BITS);\n s = reinterpret(t);\n z = C0 * r + C1;\n y = C2 * r + 1;\n y += z * (r * r);\n y *= s;\n\n return y;\n}\n\n//\n// Lookup data for log2f\n//\n\n// @ts-ignore: decorator\n@inline const LOG2F_TABLE_BITS = 4;\n\n// @ts-ignore: decorator\n@lazy @inline const LOG2F_DATA_TAB = memory.data([\n reinterpret(0x3FF661EC79F8F3BE), reinterpret(0xBFDEFEC65B963019), // 0x1.661ec79f8f3bep+0, -0x1.efec65b963019p-2,\n reinterpret(0x3FF571ED4AAF883D), reinterpret(0xBFDB0B6832D4FCA4), // 0x1.571ed4aaf883dp+0, -0x1.b0b6832d4fca4p-2,\n reinterpret(0x3FF49539F0F010B0), reinterpret(0xBFD7418B0A1FB77B), // 0x1.49539f0f010bp+0 , -0x1.7418b0a1fb77bp-2,\n reinterpret(0x3FF3C995B0B80385), reinterpret(0xBFD39DE91A6DCF7B), // 0x1.3c995b0b80385p+0, -0x1.39de91a6dcf7bp-2,\n reinterpret(0x3FF30D190C8864A5), reinterpret(0xBFD01D9BF3F2B631), // 0x1.30d190c8864a5p+0, -0x1.01d9bf3f2b631p-2,\n reinterpret(0x3FF25E227B0B8EA0), reinterpret(0xBFC97C1D1B3B7AF0), // 0x1.25e227b0b8eap+0 , -0x1.97c1d1b3b7afp-3 ,\n reinterpret(0x3FF1BB4A4A1A343F), reinterpret(0xBFC2F9E393AF3C9F), // 0x1.1bb4a4a1a343fp+0, -0x1.2f9e393af3c9fp-3,\n reinterpret(0x3FF12358F08AE5BA), reinterpret(0xBFB960CBBF788D5C), // 0x1.12358f08ae5bap+0, -0x1.960cbbf788d5cp-4,\n reinterpret(0x3FF0953F419900A7), reinterpret(0xBFAA6F9DB6475FCE), // 0x1.0953f419900a7p+0, -0x1.a6f9db6475fcep-5,\n reinterpret(0x3FF0000000000000), 0, // 0x1p+0, 0x0,\n reinterpret(0x3FEE608CFD9A47AC), reinterpret(0x3FB338CA9F24F53D), // 0x1.e608cfd9a47acp-1, 0x1.338ca9f24f53dp-4,\n reinterpret(0x3FECA4B31F026AA0), reinterpret(0x3FC476A9543891BA), // 0x1.ca4b31f026aap-1 , 0x1.476a9543891bap-3,\n reinterpret(0x3FEB2036576AFCE6), reinterpret(0x3FCE840B4AC4E4D2), // 0x1.b2036576afce6p-1, 0x1.e840b4ac4e4d2p-3,\n reinterpret(0x3FE9C2D163A1AA2D), reinterpret(0x3FD40645F0C6651C), // 0x1.9c2d163a1aa2dp-1, 0x1.40645f0c6651cp-2,\n reinterpret(0x3FE886E6037841ED), reinterpret(0x3FD88E9C2C1B9FF8), // 0x1.886e6037841edp-1, 0x1.88e9c2c1b9ff8p-2,\n reinterpret(0x3FE767DCF5534862), reinterpret(0x3FDCE0A44EB17BCC) // 0x1.767dcf5534862p-1, 0x1.ce0a44eb17bccp-2\n]);\n\n// ULP error: 0.752 (nearest rounding.)\n// Relative error: 1.9 * 2^-26 (before rounding.)\n// @ts-ignore: decorator\n@inline\nexport function log2f_lut(x: f32): f32 {\n const\n N_MASK = (1 << LOG2F_TABLE_BITS) - 1,\n Ox1p23f = reinterpret(0x4B000000); // 0x1p23f\n\n const\n A0 = reinterpret(0xBFD712B6F70A7E4D), // -0x1.712b6f70a7e4dp-2\n A1 = reinterpret(0x3FDECABF496832E0), // 0x1.ecabf496832ep-2\n A2 = reinterpret(0xBFE715479FFAE3DE), // -0x1.715479ffae3dep-1\n A3 = reinterpret(0x3FF715475F35C8B8); // 0x1.715475f35c8b8p0\n\n var ux = reinterpret(x);\n // Fix sign of zero with downward rounding when x==1.\n // if (WANT_ROUNDING && predict_false(ix == 0x3f800000)) return 0;\n if (ux - 0x00800000 >= 0x7F800000 - 0x00800000) {\n // x < 0x1p-126 or inf or nan.\n if (ux * 2 == 0) return -Infinity;\n if (ux == 0x7F800000) return x; // log2(inf) == inf.\n if ((ux >> 31) || ux * 2 >= 0xFF000000) return (x - x) / (x - x);\n // x is subnormal, normalize it.\n ux = reinterpret(x * Ox1p23f);\n ux -= 23 << 23;\n }\n // x = 2^k z; where z is in range [OFF,2*OFF] and exact.\n // The range is split into N subintervals.\n // The ith subinterval contains z and c is near its center.\n var tmp = ux - 0x3F330000;\n var i = (tmp >> (23 - LOG2F_TABLE_BITS)) & N_MASK;\n var top = tmp & 0xFF800000;\n var iz = ux - top;\n var k = tmp >> 23;\n\n var invc = load(LOG2F_DATA_TAB + (i << (1 + alignof())), 0 << alignof());\n var logc = load(LOG2F_DATA_TAB + (i << (1 + alignof())), 1 << alignof());\n var z = reinterpret(iz);\n\n // log2(x) = log1p(z/c-1)/ln2 + log2(c) + k\n var r = z * invc - 1;\n var y0 = logc + k;\n\n // Pipelined polynomial evaluation to approximate log1p(r)/ln2.\n var y = A1 * r + A2;\n var p = A3 * r + y0;\n var r2 = r * r;\n y += A0 * r2;\n y = y * r2 + p;\n\n return y;\n}\n\n//\n// Lookup data for logf. See: https://git.musl-libc.org/cgit/musl/tree/src/math/logf.c\n//\n\n// @ts-ignore: decorator\n@inline const LOGF_TABLE_BITS = 4;\n\n// @ts-ignore: decorator\n@lazy @inline const LOGF_DATA_TAB = memory.data([\n reinterpret(0x3FF661EC79F8F3BE), reinterpret(0xBFD57BF7808CAADE), // 0x1.661ec79f8f3bep+0, -0x1.57bf7808caadep-2,\n reinterpret(0x3FF571ED4AAF883D), reinterpret(0xBFD2BEF0A7C06DDB), // 0x1.571ed4aaf883dp+0, -0x1.2bef0a7c06ddbp-2,\n reinterpret(0x3FF49539F0F010B0), reinterpret(0xBFD01EAE7F513A67), // 0x1.49539f0f010bp+0 , -0x1.01eae7f513a67p-2,\n reinterpret(0x3FF3C995B0B80385), reinterpret(0xBFCB31D8A68224E9), // 0x1.3c995b0b80385p+0, -0x1.b31d8a68224e9p-3,\n reinterpret(0x3FF30D190C8864A5), reinterpret(0xBFC6574F0AC07758), // 0x1.30d190c8864a5p+0, -0x1.6574f0ac07758p-3,\n reinterpret(0x3FF25E227B0B8EA0), reinterpret(0xBFC1AA2BC79C8100), // 0x1.25e227b0b8eap+0 , -0x1.1aa2bc79c81p-3 ,\n reinterpret(0x3FF1BB4A4A1A343F), reinterpret(0xBFBA4E76CE8C0E5E), // 0x1.1bb4a4a1a343fp+0, -0x1.a4e76ce8c0e5ep-4,\n reinterpret(0x3FF12358F08AE5BA), reinterpret(0xBFB1973C5A611CCC), // 0x1.12358f08ae5bap+0, -0x1.1973c5a611cccp-4,\n reinterpret(0x3FF0953F419900A7), reinterpret(0xBFA252F438E10C1E), // 0x1.0953f419900a7p+0, -0x1.252f438e10c1ep-5,\n reinterpret(0x3FF0000000000000), 0, // 0x1p+0, 0,\n reinterpret(0x3FEE608CFD9A47AC), reinterpret(0x3FAAA5AA5DF25984), // 0x1.e608cfd9a47acp-1, 0x1.aa5aa5df25984p-5,\n reinterpret(0x3FECA4B31F026AA0), reinterpret(0x3FBC5E53AA362EB4), // 0x1.ca4b31f026aap-1 , 0x1.c5e53aa362eb4p-4,\n reinterpret(0x3FEB2036576AFCE6), reinterpret(0x3FC526E57720DB08), // 0x1.b2036576afce6p-1, 0x1.526e57720db08p-3,\n reinterpret(0x3FE9C2D163A1AA2D), reinterpret(0x3FCBC2860D224770), // 0x1.9c2d163a1aa2dp-1, 0x1.bc2860d22477p-3 ,\n reinterpret(0x3FE886E6037841ED), reinterpret(0x3FD1058BC8A07EE1), // 0x1.886e6037841edp-1, 0x1.1058bc8a07ee1p-2,\n reinterpret(0x3FE767DCF5534862), reinterpret(0x3FD4043057B6EE09) // 0x1.767dcf5534862p-1, 0x1.4043057b6ee09p-2\n]);\n\n// ULP error: 0.818 (nearest rounding.)\n// Relative error: 1.957 * 2^-26 (before rounding.)\n// @ts-ignore: decorator\n@inline\nexport function logf_lut(x: f32): f32 {\n const\n N_MASK = (1 << LOGF_TABLE_BITS) - 1,\n Ox1p23f = reinterpret(0x4B000000); // 0x1p23f\n\n const\n Ln2 = reinterpret(0x3FE62E42FEFA39EF), // 0x1.62e42fefa39efp-1;\n A0 = reinterpret(0xBFD00EA348B88334), // -0x1.00ea348b88334p-2\n A1 = reinterpret(0x3FD5575B0BE00B6A), // 0x1.5575b0be00b6ap-2\n A2 = reinterpret(0xBFDFFFFEF20A4123); // -0x1.ffffef20a4123p-2\n\n var ux = reinterpret(x);\n // Fix sign of zero with downward rounding when x==1.\n // if (WANT_ROUNDING && ux == 0x3f800000) return 0;\n if (ux - 0x00800000 >= 0x7F800000 - 0x00800000) {\n // x < 0x1p-126 or inf or nan.\n if ((ux << 1) == 0) return -Infinity;\n if (ux == 0x7F800000) return x; // log(inf) == inf.\n if ((ux >> 31) || (ux << 1) >= 0xFF000000) return (x - x) / (x - x);\n // x is subnormal, normalize it.\n ux = reinterpret(x * Ox1p23f);\n ux -= 23 << 23;\n }\n // x = 2^k z; where z is in range [OFF,2*OFF] and exact.\n // The range is split into N subintervals.\n // The ith subinterval contains z and c is near its center.\n var tmp = ux - 0x3F330000;\n var i = (tmp >> (23 - LOGF_TABLE_BITS)) & N_MASK;\n var k = tmp >> 23;\n var iz = ux - (tmp & 0x1FF << 23);\n\n var invc = load(LOGF_DATA_TAB + (i << (1 + alignof())), 0 << alignof());\n var logc = load(LOGF_DATA_TAB + (i << (1 + alignof())), 1 << alignof());\n\n var z = reinterpret(iz);\n\n // log(x) = log1p(z/c-1) + log(c) + k*Ln2\n var r = z * invc - 1;\n var y0 = logc + k * Ln2;\n\n // Pipelined polynomial evaluation to approximate log1p(r).\n var r2 = r * r;\n var y = A1 * r + A2;\n y += A0 * r2;\n y = y * r2 + (y0 + r);\n\n return y;\n}\n\n//\n// Lookup data for powf. See: https://git.musl-libc.org/cgit/musl/tree/src/math/powf.c\n//\n\n// @ts-ignore: decorator\n@inline\nfunction zeroinfnanf(ux: u32): bool {\n return (ux << 1) - 1 >= (0x7f800000 << 1) - 1;\n}\n\n// Returns 0 if not int, 1 if odd int, 2 if even int. The argument is\n// the bit representation of a non-zero finite floating-point value.\n// @ts-ignore: decorator\n@inline\nfunction checkintf(iy: u32): i32 {\n var e = iy >> 23 & 0xFF;\n if (e < 0x7F ) return 0;\n if (e > 0x7F + 23) return 2;\n e = 1 << (0x7F + 23 - e);\n if (iy & (e - 1)) return 0;\n if (iy & e ) return 1;\n return 2;\n}\n\n// Subnormal input is normalized so ix has negative biased exponent.\n// Output is multiplied by N (POWF_SCALE) if TOINT_INTRINICS is set.\n// @ts-ignore: decorator\n@inline\nfunction log2f_inline(ux: u32): f64 {\n const N_MASK = (1 << LOG2F_TABLE_BITS) - 1;\n\n const\n A0 = reinterpret(0x3FD27616C9496E0B), // 0x1.27616c9496e0bp-2\n A1 = reinterpret(0xBFD71969A075C67A), // -0x1.71969a075c67ap-2\n A2 = reinterpret(0x3FDEC70A6CA7BADD), // 0x1.ec70a6ca7baddp-2\n A3 = reinterpret(0xBFE7154748BEF6C8), // -0x1.7154748bef6c8p-1\n A4 = reinterpret(0x3FF71547652AB82B); // 0x1.71547652ab82bp+0\n\n // x = 2^k z; where z is in range [OFF,2*OFF] and exact.\n // The range is split into N subintervals.\n // The ith subinterval contains z and c is near its center.\n var tmp = ux - 0x3F330000;\n var i = usize((tmp >> (23 - LOG2F_TABLE_BITS)) & N_MASK);\n var top = tmp & 0xFF800000;\n var uz = ux - top;\n var k = top >> 23;\n\n var invc = load(LOG2F_DATA_TAB + (i << (1 + alignof())), 0 << alignof());\n var logc = load(LOG2F_DATA_TAB + (i << (1 + alignof())), 1 << alignof());\n var z = reinterpret(uz);\n\n // log2(x) = log1p(z/c-1)/ln2 + log2(c) + k\n var r = z * invc - 1;\n var y0 = logc + k;\n\n // Pipelined polynomial evaluation to approximate log1p(r)/ln2.\n var y = A0 * r + A1;\n var p = A2 * r + A3;\n var q = A4 * r + y0;\n\n r *= r;\n q += p * r;\n y = y * (r * r) + q;\n\n return y;\n}\n\n// The output of log2 and thus the input of exp2 is either scaled by N\n// (in case of fast toint intrinsics) or not. The unscaled xd must be\n// in [-1021,1023], sign_bias sets the sign of the result.\n// @ts-ignore: decorator\n@inline\nfunction exp2f_inline(xd: f64, signBias: u32): f32 {\n const\n N = 1 << EXP2F_TABLE_BITS,\n N_MASK = N - 1,\n shift = reinterpret(0x4338000000000000) / N; // 0x1.8p+52\n\n const\n C0 = reinterpret(0x3FAC6AF84B912394), // 0x1.c6af84b912394p-5\n C1 = reinterpret(0x3FCEBFCE50FAC4F3), // 0x1.ebfce50fac4f3p-3\n C2 = reinterpret(0x3FE62E42FF0C52D6); // 0x1.62e42ff0c52d6p-1\n\n // x = k/N + r with r in [-1/(2N), 1/(2N)]\n var kd = (xd + shift);\n var ki = reinterpret(kd);\n var r = xd - (kd - shift);\n var t: u64, z: f64, y: f64, s: f64;\n\n // exp2(x) = 2^(k/N) * 2^r ~= s * (C0*r^3 + C1*r^2 + C2*r + 1)\n t = load(EXP2F_DATA_TAB + ((ki & N_MASK) << alignof()));\n t += (ki + signBias) << (52 - EXP2F_TABLE_BITS);\n s = reinterpret(t);\n z = C0 * r + C1;\n y = C2 * r + 1;\n y += z * (r * r);\n y *= s;\n return y;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction xflowf(sign: u32, y: f32): f32 {\n return select(-y, y, sign) * y;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction oflowf(sign: u32): f32 {\n return xflowf(sign, reinterpret(0x70000000)); // 0x1p97f\n}\n\n// @ts-ignore: decorator\n@inline\nfunction uflowf(sign: u32): f32 {\n return xflowf(sign, reinterpret(0x10000000)); // 0x1p-95f\n}\n\n// @ts-ignore: decorator\n@inline\nexport function powf_lut(x: f32, y: f32): f32 {\n const\n Ox1p23f = reinterpret(0x4B000000), // 0x1p23f\n UPPER_LIMIT = reinterpret(0x405FFFFFFFD1D571), // 0x1.fffffffd1d571p+6\n LOWER_LIMIT = -150.0,\n SIGN_BIAS = 1 << (EXP2F_TABLE_BITS + 11);\n\n var signBias: u32 = 0;\n var ix = reinterpret(x);\n var iy = reinterpret(y);\n var ny = 0;\n\n if (i32(ix - 0x00800000 >= 0x7f800000 - 0x00800000) | (ny = i32(zeroinfnanf(iy)))) {\n // Either (x < 0x1p-126 or inf or nan) or (y is 0 or inf or nan).\n if (ny) {\n if ((iy << 1) == 0) return 1.0;\n if (ix == 0x3F800000) return NaN; // original: 1.0\n if ((ix << 1) > (0x7F800000 << 1) || (iy << 1) > (0x7F800000 << 1)) return x + y;\n if ((ix << 1) == (0x3F800000 << 1)) return NaN; // original: 1.0\n if (((ix << 1) < (0x3F800000 << 1)) == !(iy >> 31)) return 0; // |x| < 1 && y==inf or |x| > 1 && y==-inf.\n return y * y;\n }\n if (zeroinfnanf(ix)) {\n let x2 = x * x;\n if ((ix >> 31) && checkintf(iy) == 1) x2 = -x2;\n return iy < 0 ? 1 / x2 : x2;\n }\n // x and y are non-zero finite.\n if (ix < 0) {\n // Finite x < 0.\n let yint = checkintf(iy);\n if (yint == 0) return (x - x) / (x - x);\n if (yint == 1) signBias = SIGN_BIAS;\n ix &= 0x7FFFFFFF;\n }\n if (ix < 0x00800000) {\n // Normalize subnormal x so exponent becomes negative.\n ix = reinterpret(x * Ox1p23f);\n ix &= 0x7FFFFFFF;\n ix -= 23 << 23;\n }\n }\n var logx = log2f_inline(ix);\n var ylogx = y * logx; // cannot overflow, y is single prec.\n if ((reinterpret(ylogx) >> 47 & 0xFFFF) >= 0x80BF) { // reinterpret(126.0) >> 47\n // |y * log(x)| >= 126\n if (ylogx > UPPER_LIMIT) return oflowf(signBias); // overflow\n if (ylogx <= LOWER_LIMIT) return uflowf(signBias); // underflow\n }\n return exp2f_inline(ylogx, signBias);\n}\n\n//\n// Lookup data for exp. See: https://git.musl-libc.org/cgit/musl/tree/src/math/exp.c\n//\n\n// @ts-ignore: decorator\n@inline const EXP_TABLE_BITS = 7;\n\n// @ts-ignore: decorator\n@lazy @inline const EXP_DATA_TAB = memory.data([\n 0x0000000000000000, 0x3FF0000000000000,\n 0x3C9B3B4F1A88BF6E, 0x3FEFF63DA9FB3335,\n 0xBC7160139CD8DC5D, 0x3FEFEC9A3E778061,\n 0xBC905E7A108766D1, 0x3FEFE315E86E7F85,\n 0x3C8CD2523567F613, 0x3FEFD9B0D3158574,\n 0xBC8BCE8023F98EFA, 0x3FEFD06B29DDF6DE,\n 0x3C60F74E61E6C861, 0x3FEFC74518759BC8,\n 0x3C90A3E45B33D399, 0x3FEFBE3ECAC6F383,\n 0x3C979AA65D837B6D, 0x3FEFB5586CF9890F,\n 0x3C8EB51A92FDEFFC, 0x3FEFAC922B7247F7,\n 0x3C3EBE3D702F9CD1, 0x3FEFA3EC32D3D1A2,\n 0xBC6A033489906E0B, 0x3FEF9B66AFFED31B,\n 0xBC9556522A2FBD0E, 0x3FEF9301D0125B51,\n 0xBC5080EF8C4EEA55, 0x3FEF8ABDC06C31CC,\n 0xBC91C923B9D5F416, 0x3FEF829AAEA92DE0,\n 0x3C80D3E3E95C55AF, 0x3FEF7A98C8A58E51,\n 0xBC801B15EAA59348, 0x3FEF72B83C7D517B,\n 0xBC8F1FF055DE323D, 0x3FEF6AF9388C8DEA,\n 0x3C8B898C3F1353BF, 0x3FEF635BEB6FCB75,\n 0xBC96D99C7611EB26, 0x3FEF5BE084045CD4,\n 0x3C9AECF73E3A2F60, 0x3FEF54873168B9AA,\n 0xBC8FE782CB86389D, 0x3FEF4D5022FCD91D,\n 0x3C8A6F4144A6C38D, 0x3FEF463B88628CD6,\n 0x3C807A05B0E4047D, 0x3FEF3F49917DDC96,\n 0x3C968EFDE3A8A894, 0x3FEF387A6E756238,\n 0x3C875E18F274487D, 0x3FEF31CE4FB2A63F,\n 0x3C80472B981FE7F2, 0x3FEF2B4565E27CDD,\n 0xBC96B87B3F71085E, 0x3FEF24DFE1F56381,\n 0x3C82F7E16D09AB31, 0x3FEF1E9DF51FDEE1,\n 0xBC3D219B1A6FBFFA, 0x3FEF187FD0DAD990,\n 0x3C8B3782720C0AB4, 0x3FEF1285A6E4030B,\n 0x3C6E149289CECB8F, 0x3FEF0CAFA93E2F56,\n 0x3C834D754DB0ABB6, 0x3FEF06FE0A31B715,\n 0x3C864201E2AC744C, 0x3FEF0170FC4CD831,\n 0x3C8FDD395DD3F84A, 0x3FEEFC08B26416FF,\n 0xBC86A3803B8E5B04, 0x3FEEF6C55F929FF1,\n 0xBC924AEDCC4B5068, 0x3FEEF1A7373AA9CB,\n 0xBC9907F81B512D8E, 0x3FEEECAE6D05D866,\n 0xBC71D1E83E9436D2, 0x3FEEE7DB34E59FF7,\n 0xBC991919B3CE1B15, 0x3FEEE32DC313A8E5,\n 0x3C859F48A72A4C6D, 0x3FEEDEA64C123422,\n 0xBC9312607A28698A, 0x3FEEDA4504AC801C,\n 0xBC58A78F4817895B, 0x3FEED60A21F72E2A,\n 0xBC7C2C9B67499A1B, 0x3FEED1F5D950A897,\n 0x3C4363ED60C2AC11, 0x3FEECE086061892D,\n 0x3C9666093B0664EF, 0x3FEECA41ED1D0057,\n 0x3C6ECCE1DAA10379, 0x3FEEC6A2B5C13CD0,\n 0x3C93FF8E3F0F1230, 0x3FEEC32AF0D7D3DE,\n 0x3C7690CEBB7AAFB0, 0x3FEEBFDAD5362A27,\n 0x3C931DBDEB54E077, 0x3FEEBCB299FDDD0D,\n 0xBC8F94340071A38E, 0x3FEEB9B2769D2CA7,\n 0xBC87DECCDC93A349, 0x3FEEB6DAA2CF6642,\n 0xBC78DEC6BD0F385F, 0x3FEEB42B569D4F82,\n 0xBC861246EC7B5CF6, 0x3FEEB1A4CA5D920F,\n 0x3C93350518FDD78E, 0x3FEEAF4736B527DA,\n 0x3C7B98B72F8A9B05, 0x3FEEAD12D497C7FD,\n 0x3C9063E1E21C5409, 0x3FEEAB07DD485429,\n 0x3C34C7855019C6EA, 0x3FEEA9268A5946B7,\n 0x3C9432E62B64C035, 0x3FEEA76F15AD2148,\n 0xBC8CE44A6199769F, 0x3FEEA5E1B976DC09,\n 0xBC8C33C53BEF4DA8, 0x3FEEA47EB03A5585,\n 0xBC845378892BE9AE, 0x3FEEA34634CCC320,\n 0xBC93CEDD78565858, 0x3FEEA23882552225,\n 0x3C5710AA807E1964, 0x3FEEA155D44CA973,\n 0xBC93B3EFBF5E2228, 0x3FEEA09E667F3BCD,\n 0xBC6A12AD8734B982, 0x3FEEA012750BDABF,\n 0xBC6367EFB86DA9EE, 0x3FEE9FB23C651A2F,\n 0xBC80DC3D54E08851, 0x3FEE9F7DF9519484,\n 0xBC781F647E5A3ECF, 0x3FEE9F75E8EC5F74,\n 0xBC86EE4AC08B7DB0, 0x3FEE9F9A48A58174,\n 0xBC8619321E55E68A, 0x3FEE9FEB564267C9,\n 0x3C909CCB5E09D4D3, 0x3FEEA0694FDE5D3F,\n 0xBC7B32DCB94DA51D, 0x3FEEA11473EB0187,\n 0x3C94ECFD5467C06B, 0x3FEEA1ED0130C132,\n 0x3C65EBE1ABD66C55, 0x3FEEA2F336CF4E62,\n 0xBC88A1C52FB3CF42, 0x3FEEA427543E1A12,\n 0xBC9369B6F13B3734, 0x3FEEA589994CCE13,\n 0xBC805E843A19FF1E, 0x3FEEA71A4623C7AD,\n 0xBC94D450D872576E, 0x3FEEA8D99B4492ED,\n 0x3C90AD675B0E8A00, 0x3FEEAAC7D98A6699,\n 0x3C8DB72FC1F0EAB4, 0x3FEEACE5422AA0DB,\n 0xBC65B6609CC5E7FF, 0x3FEEAF3216B5448C,\n 0x3C7BF68359F35F44, 0x3FEEB1AE99157736,\n 0xBC93091FA71E3D83, 0x3FEEB45B0B91FFC6,\n 0xBC5DA9B88B6C1E29, 0x3FEEB737B0CDC5E5,\n 0xBC6C23F97C90B959, 0x3FEEBA44CBC8520F,\n 0xBC92434322F4F9AA, 0x3FEEBD829FDE4E50,\n 0xBC85CA6CD7668E4B, 0x3FEEC0F170CA07BA,\n 0x3C71AFFC2B91CE27, 0x3FEEC49182A3F090,\n 0x3C6DD235E10A73BB, 0x3FEEC86319E32323,\n 0xBC87C50422622263, 0x3FEECC667B5DE565,\n 0x3C8B1C86E3E231D5, 0x3FEED09BEC4A2D33,\n 0xBC91BBD1D3BCBB15, 0x3FEED503B23E255D,\n 0x3C90CC319CEE31D2, 0x3FEED99E1330B358,\n 0x3C8469846E735AB3, 0x3FEEDE6B5579FDBF,\n 0xBC82DFCD978E9DB4, 0x3FEEE36BBFD3F37A,\n 0x3C8C1A7792CB3387, 0x3FEEE89F995AD3AD,\n 0xBC907B8F4AD1D9FA, 0x3FEEEE07298DB666,\n 0xBC55C3D956DCAEBA, 0x3FEEF3A2B84F15FB,\n 0xBC90A40E3DA6F640, 0x3FEEF9728DE5593A,\n 0xBC68D6F438AD9334, 0x3FEEFF76F2FB5E47,\n 0xBC91EEE26B588A35, 0x3FEF05B030A1064A,\n 0x3C74FFD70A5FDDCD, 0x3FEF0C1E904BC1D2,\n 0xBC91BDFBFA9298AC, 0x3FEF12C25BD71E09,\n 0x3C736EAE30AF0CB3, 0x3FEF199BDD85529C,\n 0x3C8EE3325C9FFD94, 0x3FEF20AB5FFFD07A,\n 0x3C84E08FD10959AC, 0x3FEF27F12E57D14B,\n 0x3C63CDAF384E1A67, 0x3FEF2F6D9406E7B5,\n 0x3C676B2C6C921968, 0x3FEF3720DCEF9069,\n 0xBC808A1883CCB5D2, 0x3FEF3F0B555DC3FA,\n 0xBC8FAD5D3FFFFA6F, 0x3FEF472D4A07897C,\n 0xBC900DAE3875A949, 0x3FEF4F87080D89F2,\n 0x3C74A385A63D07A7, 0x3FEF5818DCFBA487,\n 0xBC82919E2040220F, 0x3FEF60E316C98398,\n 0x3C8E5A50D5C192AC, 0x3FEF69E603DB3285,\n 0x3C843A59AC016B4B, 0x3FEF7321F301B460,\n 0xBC82D52107B43E1F, 0x3FEF7C97337B9B5F,\n 0xBC892AB93B470DC9, 0x3FEF864614F5A129,\n 0x3C74B604603A88D3, 0x3FEF902EE78B3FF6,\n 0x3C83C5EC519D7271, 0x3FEF9A51FBC74C83,\n 0xBC8FF7128FD391F0, 0x3FEFA4AFA2A490DA,\n 0xBC8DAE98E223747D, 0x3FEFAF482D8E67F1,\n 0x3C8EC3BC41AA2008, 0x3FEFBA1BEE615A27,\n 0x3C842B94C3A9EB32, 0x3FEFC52B376BBA97,\n 0x3C8A64A931D185EE, 0x3FEFD0765B6E4540,\n 0xBC8E37BAE43BE3ED, 0x3FEFDBFDAD9CBE14,\n 0x3C77893B4D91CD9D, 0x3FEFE7C1819E90D8,\n 0x3C5305C14160CC89, 0x3FEFF3C22B8F71F1\n]);\n\n// Handle cases that may overflow or underflow when computing the result that\n// is scale*(1+TMP) without intermediate rounding. The bit representation of\n// scale is in SBITS, however it has a computed exponent that may have\n// overflown into the sign bit so that needs to be adjusted before using it as\n// a double. (int32_t)KI is the k used in the argument reduction and exponent\n// adjustment of scale, positive k here means the result may overflow and\n// negative k means the result may underflow.\n// @ts-ignore: decorator\n@inline\nfunction specialcase(tmp: f64, sbits: u64, ki: u64): f64 {\n const\n Ox1p_1022 = reinterpret(0x0010000000000000), // 0x1p-1022\n Ox1p1009 = reinterpret(0x7F00000000000000); // 0x1p1009\n\n var scale: f64;\n if (!(ki & 0x80000000)) {\n // k > 0, the exponent of scale might have overflowed by <= 460.\n sbits -= u64(1009) << 52;\n scale = reinterpret(sbits);\n return Ox1p1009 * (scale + scale * tmp); // 0x1p1009\n }\n // k < 0, need special care in the subnormal range.\n sbits += u64(1022) << 52;\n // Note: sbits is signed scale.\n scale = reinterpret(sbits);\n var y = scale + scale * tmp;\n if (abs(y) < 1.0) {\n // Round y to the right precision before scaling it into the subnormal\n // range to avoid double rounding that can cause 0.5+E/2 ulp error where\n // E is the worst-case ulp error outside the subnormal range. So this\n // is only useful if the goal is better than 1 ulp worst-case error.\n let one = copysign(1.0, y);\n let lo = scale - y + scale * tmp;\n let hi = one + y;\n lo = one - hi + y + lo;\n y = (hi + lo) - one;\n // Fix the sign of 0.\n if (y == 0.0) y = reinterpret(sbits & 0x8000000000000000);\n }\n return y * Ox1p_1022;\n}\n\n// @ts-ignore: decorator\n@inline\nexport function exp_lut(x: f64): f64 {\n const\n N = 1 << EXP_TABLE_BITS,\n N_MASK = N - 1;\n\n const\n InvLn2N = reinterpret(0x3FF71547652B82FE) * N, // 0x1.71547652b82fep0\n NegLn2hiN = reinterpret(0xBF762E42FEFA0000), // -0x1.62e42fefa0000p-8\n NegLn2loN = reinterpret(0xBD0CF79ABC9E3B3A), // -0x1.cf79abc9e3b3ap-47\n shift = reinterpret(0x4338000000000000); // 0x1.8p52;\n\n const\n C2 = reinterpret(0x3FDFFFFFFFFFFDBD), // __exp_data.poly[0] (0x1.ffffffffffdbdp-2)\n C3 = reinterpret(0x3FC555555555543C), // __exp_data.poly[1] (0x1.555555555543cp-3)\n C4 = reinterpret(0x3FA55555CF172B91), // __exp_data.poly[2] (0x1.55555cf172b91p-5)\n C5 = reinterpret(0x3F81111167A4D017); // __exp_data.poly[3] (0x1.1111167a4d017p-7)\n\n var ux = reinterpret(x);\n var abstop = u32(ux >> 52) & 0x7FF;\n if (abstop - 0x3C9 >= 0x03F) {\n if (abstop - 0x3C9 >= 0x80000000) return 1;\n if (abstop >= 0x409) {\n if (ux == 0xFFF0000000000000) return 0;\n if (abstop >= 0x7FF) {\n return 1.0 + x;\n } else {\n return select(0, Infinity, ux < 0);\n }\n }\n // Large x is special cased below.\n abstop = 0;\n }\n\n // exp(x) = 2^(k/N) * exp(r), with exp(r) in [2^(-1/2N),2^(1/2N)]\n // x = ln2/N*k + r, with int k and r in [-ln2/2N, ln2/2N]\n var z = InvLn2N * x;\n // #if TOINT_INTRINSICS\n // \tkd = roundtoint(z);\n // \tki = converttoint(z);\n // #elif EXP_USE_TOINT_NARROW\n // \t// z - kd is in [-0.5-2^-16, 0.5] in all rounding modes.\n // var kd = z + shift;\n // var ki = reinterpret(kd) >> 16;\n // var kd = ki;\n // #else\n // z - kd is in [-1, 1] in non-nearest rounding modes.\n var kd = z + shift;\n var ki = reinterpret(kd);\n kd -= shift;\n // #endif\n var r = x + kd * NegLn2hiN + kd * NegLn2loN;\n // 2^(k/N) ~= scale * (1 + tail).\n var idx = usize((ki & N_MASK) << 1);\n var top = ki << (52 - EXP_TABLE_BITS);\n\n var tail = reinterpret(load(EXP_DATA_TAB + (idx << alignof()))); // T[idx]\n // This is only a valid scale when -1023*N < k < 1024*N\n var sbits = load(EXP_DATA_TAB + (idx << alignof()), 1 << alignof()) + top; // T[idx + 1]\n // exp(x) = 2^(k/N) * exp(r) ~= scale + scale * (tail + exp(r) - 1).\n // Evaluation is optimized assuming superscalar pipelined execution.\n var r2 = r * r;\n // Without fma the worst case error is 0.25/N ulp larger.\n // Worst case error is less than 0.5+1.11/N+(abs poly error * 2^53) ulp.\n var tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);\n if (abstop == 0) return specialcase(tmp, sbits, ki);\n var scale = reinterpret(sbits);\n // Note: tmp == 0 or |tmp| > 2^-200 and scale > 2^-739, so there\n // is no spurious underflow here even without fma.\n return scale + scale * tmp;\n}\n\n//\n// Lookup data for exp2. See: https://git.musl-libc.org/cgit/musl/tree/src/math/exp2.c\n//\n\n// Handle cases that may overflow or underflow when computing the result that\n// is scale*(1+TMP) without intermediate rounding. The bit representation of\n// scale is in SBITS, however it has a computed exponent that may have\n// overflown into the sign bit so that needs to be adjusted before using it as\n// a double. (int32_t)KI is the k used in the argument reduction and exponent\n// adjustment of scale, positive k here means the result may overflow and\n// negative k means the result may underflow.\n// @ts-ignore: decorator\n@inline\nfunction specialcase2(tmp: f64, sbits: u64, ki: u64): f64 {\n const Ox1p_1022 = reinterpret(0x10000000000000); // 0x1p-1022\n var scale: f64;\n if ((ki & 0x80000000) == 0) {\n // k > 0, the exponent of scale might have overflowed by 1\n sbits -= u64(1) << 52;\n scale = reinterpret(sbits);\n return 2 * (scale * tmp + scale);\n }\n // k < 0, need special care in the subnormal range\n sbits += u64(1022) << 52;\n scale = reinterpret(sbits);\n var y = scale * tmp + scale;\n if (y < 1.0) {\n // Round y to the right precision before scaling it into the subnormal\n // range to avoid double rounding that can cause 0.5+E/2 ulp error where\n // E is the worst-case ulp error outside the subnormal range. So this\n // is only useful if the goal is better than 1 ulp worst-case error.\n let hi: f64, lo: f64;\n lo = scale - y + scale * tmp;\n hi = 1.0 + y;\n lo = 1.0 - hi + y + lo;\n y = (hi + lo) - 1.0;\n }\n return y * Ox1p_1022;\n}\n\n// @ts-ignore: decorator\n@inline\nexport function exp2_lut(x: f64): f64 {\n const\n N = 1 << EXP_TABLE_BITS,\n N_MASK = N - 1,\n shift = reinterpret(0x4338000000000000) / N; // 0x1.8p52\n\n const\n C1 = reinterpret(0x3FE62E42FEFA39EF), // 0x1.62e42fefa39efp-1\n C2 = reinterpret(0x3FCEBFBDFF82C424), // 0x1.ebfbdff82c424p-3\n C3 = reinterpret(0x3FAC6B08D70CF4B5), // 0x1.c6b08d70cf4b5p-5\n C4 = reinterpret(0x3F83B2ABD24650CC), // 0x1.3b2abd24650ccp-7\n C5 = reinterpret(0x3F55D7E09B4E3A84); // 0x1.5d7e09b4e3a84p-10\n\n var ux = reinterpret(x);\n var abstop = u32(ux >> 52) & 0x7ff;\n if (abstop - 0x3C9 >= 0x03F) {\n if (abstop - 0x3C9 >= 0x80000000) return 1.0;\n if (abstop >= 0x409) {\n if (ux == 0xFFF0000000000000) return 0;\n if (abstop >= 0x7FF) return 1.0 + x;\n if (ux >= 0) return Infinity;\n else if (ux >= 0xC090CC0000000000) return 0;\n }\n if ((ux << 1) > 0x811A000000000000) abstop = 0; // Large x is special cased below.\n }\n\n // exp2(x) = 2^(k/N) * 2^r, with 2^r in [2^(-1/2N),2^(1/2N)].\n // x = k/N + r, with int k and r in [-1/2N, 1/2N]\n var kd = x + shift;\n var ki = reinterpret(kd);\n kd -= shift; // k/N for int k\n var r = x - kd;\n // 2^(k/N) ~= scale * (1 + tail)\n var idx = usize((ki & N_MASK) << 1);\n var top = ki << (52 - EXP_TABLE_BITS);\n\n var tail = reinterpret(load(EXP_DATA_TAB + (idx << alignof()), 0 << alignof())); // T[idx])\n // This is only a valid scale when -1023*N < k < 1024*N\n var sbits = load(EXP_DATA_TAB + (idx << alignof()), 1 << alignof()) + top; // T[idx + 1]\n // exp2(x) = 2^(k/N) * 2^r ~= scale + scale * (tail + 2^r - 1).\n // Evaluation is optimized assuming superscalar pipelined execution\n var r2 = r * r;\n // Without fma the worst case error is 0.5/N ulp larger.\n // Worst case error is less than 0.5+0.86/N+(abs poly error * 2^53) ulp.\n var tmp = tail + r * C1 + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);\n if (abstop == 0) return specialcase2(tmp, sbits, ki);\n var scale = reinterpret(sbits);\n // Note: tmp == 0 or |tmp| > 2^-65 and scale > 2^-928, so there\n // is no spurious underflow here even without fma.\n return scale * tmp + scale;\n}\n\n//\n// Lookup data for log2. See: https://git.musl-libc.org/cgit/musl/tree/src/math/log2.c\n//\n\n// @ts-ignore: decorator\n@inline const LOG2_TABLE_BITS = 6;\n\n/* Algorithm:\n\n x = 2^k z\n log2(x) = k + log2(c) + log2(z/c)\n log2(z/c) = poly(z/c - 1)\n\nwhere z is in [1.6p-1; 1.6p0] which is split into N subintervals and z falls\ninto the ith one, then table entries are computed as\n\n tab[i].invc = 1/c\n tab[i].logc = (double)log2(c)\n tab2[i].chi = (double)c\n tab2[i].clo = (double)(c - (double)c)\n\nwhere c is near the center of the subinterval and is chosen by trying +-2^29\nfloating point invc candidates around 1/center and selecting one for which\n\n 1) the rounding error in 0x1.8p10 + logc is 0,\n 2) the rounding error in z - chi - clo is < 0x1p-64 and\n 3) the rounding error in (double)log2(c) is minimized (< 0x1p-68).\n\nNote: 1) ensures that k + logc can be computed without rounding error, 2)\nensures that z/c - 1 can be computed as (z - chi - clo)*invc with close to a\nsingle rounding error when there is no fast fma for z*invc - 1, 3) ensures\nthat logc + poly(z/c - 1) has small error, however near x == 1 when\n|log2(x)| < 0x1p-4, this is not enough so that is special cased. */\n\n// @ts-ignore: decorator\n@lazy @inline const LOG2_DATA_TAB1 = memory.data([\n // invc , logc\n reinterpret(0x3FF724286BB1ACF8), reinterpret(0xBFE1095FEECDB000),\n reinterpret(0x3FF6E1F766D2CCA1), reinterpret(0xBFE08494BD76D000),\n reinterpret(0x3FF6A13D0E30D48A), reinterpret(0xBFE00143AEE8F800),\n reinterpret(0x3FF661EC32D06C85), reinterpret(0xBFDEFEC5360B4000),\n reinterpret(0x3FF623FA951198F8), reinterpret(0xBFDDFDD91AB7E000),\n reinterpret(0x3FF5E75BA4CF026C), reinterpret(0xBFDCFFAE0CC79000),\n reinterpret(0x3FF5AC055A214FB8), reinterpret(0xBFDC043811FDA000),\n reinterpret(0x3FF571ED0F166E1E), reinterpret(0xBFDB0B67323AE000),\n reinterpret(0x3FF53909590BF835), reinterpret(0xBFDA152F5A2DB000),\n reinterpret(0x3FF5014FED61ADDD), reinterpret(0xBFD9217F5AF86000),\n reinterpret(0x3FF4CAB88E487BD0), reinterpret(0xBFD8304DB0719000),\n reinterpret(0x3FF49539B4334FEE), reinterpret(0xBFD74189F9A9E000),\n reinterpret(0x3FF460CBDFAFD569), reinterpret(0xBFD6552BB5199000),\n reinterpret(0x3FF42D664EE4B953), reinterpret(0xBFD56B23A29B1000),\n reinterpret(0x3FF3FB01111DD8A6), reinterpret(0xBFD483650F5FA000),\n reinterpret(0x3FF3C995B70C5836), reinterpret(0xBFD39DE937F6A000),\n reinterpret(0x3FF3991C4AB6FD4A), reinterpret(0xBFD2BAA1538D6000),\n reinterpret(0x3FF3698E0CE099B5), reinterpret(0xBFD1D98340CA4000),\n reinterpret(0x3FF33AE48213E7B2), reinterpret(0xBFD0FA853A40E000),\n reinterpret(0x3FF30D191985BDB1), reinterpret(0xBFD01D9C32E73000),\n reinterpret(0x3FF2E025CAB271D7), reinterpret(0xBFCE857DA2FA6000),\n reinterpret(0x3FF2B404CF13CD82), reinterpret(0xBFCCD3C8633D8000),\n reinterpret(0x3FF288B02C7CCB50), reinterpret(0xBFCB26034C14A000),\n reinterpret(0x3FF25E2263944DE5), reinterpret(0xBFC97C1C2F4FE000),\n reinterpret(0x3FF234563D8615B1), reinterpret(0xBFC7D6023F800000),\n reinterpret(0x3FF20B46E33EAF38), reinterpret(0xBFC633A71A05E000),\n reinterpret(0x3FF1E2EEFDCDA3DD), reinterpret(0xBFC494F5E9570000),\n reinterpret(0x3FF1BB4A580B3930), reinterpret(0xBFC2F9E424E0A000),\n reinterpret(0x3FF19453847F2200), reinterpret(0xBFC162595AFDC000),\n reinterpret(0x3FF16E06C0D5D73C), reinterpret(0xBFBF9C9A75BD8000),\n reinterpret(0x3FF1485F47B7E4C2), reinterpret(0xBFBC7B575BF9C000),\n reinterpret(0x3FF12358AD0085D1), reinterpret(0xBFB960C60FF48000),\n reinterpret(0x3FF0FEF00F532227), reinterpret(0xBFB64CE247B60000),\n reinterpret(0x3FF0DB2077D03A8F), reinterpret(0xBFB33F78B2014000),\n reinterpret(0x3FF0B7E6D65980D9), reinterpret(0xBFB0387D1A42C000),\n reinterpret(0x3FF0953EFE7B408D), reinterpret(0xBFAA6F9208B50000),\n reinterpret(0x3FF07325CAC53B83), reinterpret(0xBFA47A954F770000),\n reinterpret(0x3FF05197E40D1B5C), reinterpret(0xBF9D23A8C50C0000),\n reinterpret(0x3FF03091C1208EA2), reinterpret(0xBF916A2629780000),\n reinterpret(0x3FF0101025B37E21), reinterpret(0xBF7720F8D8E80000),\n reinterpret(0x3FEFC07EF9CAA76B), reinterpret(0x3F86FE53B1500000),\n reinterpret(0x3FEF4465D3F6F184), reinterpret(0x3FA11CCCE10F8000),\n reinterpret(0x3FEECC079F84107F), reinterpret(0x3FAC4DFC8C8B8000),\n reinterpret(0x3FEE573A99975AE8), reinterpret(0x3FB3AA321E574000),\n reinterpret(0x3FEDE5D6F0BD3DE6), reinterpret(0x3FB918A0D08B8000),\n reinterpret(0x3FED77B681FF38B3), reinterpret(0x3FBE72E9DA044000),\n reinterpret(0x3FED0CB5724DE943), reinterpret(0x3FC1DCD2507F6000),\n reinterpret(0x3FECA4B2DC0E7563), reinterpret(0x3FC476AB03DEA000),\n reinterpret(0x3FEC3F8EE8D6CB51), reinterpret(0x3FC7074377E22000),\n reinterpret(0x3FEBDD2B4F020C4C), reinterpret(0x3FC98EDE8BA94000),\n reinterpret(0x3FEB7D6C006015CA), reinterpret(0x3FCC0DB86AD2E000),\n reinterpret(0x3FEB20366E2E338F), reinterpret(0x3FCE840AAFCEE000),\n reinterpret(0x3FEAC57026295039), reinterpret(0x3FD0790AB4678000),\n reinterpret(0x3FEA6D01BC2731DD), reinterpret(0x3FD1AC056801C000),\n reinterpret(0x3FEA16D3BC3FF18B), reinterpret(0x3FD2DB11D4FEE000),\n reinterpret(0x3FE9C2D14967FEAD), reinterpret(0x3FD406464EC58000),\n reinterpret(0x3FE970E4F47C9902), reinterpret(0x3FD52DBE093AF000),\n reinterpret(0x3FE920FB3982BCF2), reinterpret(0x3FD651902050D000),\n reinterpret(0x3FE8D30187F759F1), reinterpret(0x3FD771D2CDEAF000),\n reinterpret(0x3FE886E5EBB9F66D), reinterpret(0x3FD88E9C857D9000),\n reinterpret(0x3FE83C97B658B994), reinterpret(0x3FD9A80155E16000),\n reinterpret(0x3FE7F405FFC61022), reinterpret(0x3FDABE186ED3D000),\n reinterpret(0x3FE7AD22181415CA), reinterpret(0x3FDBD0F2AEA0E000),\n reinterpret(0x3FE767DCF99EFF8C), reinterpret(0x3FDCE0A43DBF4000)\n]);\n\n// @ts-ignore: decorator\n@lazy @inline const LOG2_DATA_TAB2 = memory.data([\n // chi , clo\n reinterpret(0x3FE6200012B90A8E), reinterpret(0x3C8904AB0644B605),\n reinterpret(0x3FE66000045734A6), reinterpret(0x3C61FF9BEA62F7A9),\n reinterpret(0x3FE69FFFC325F2C5), reinterpret(0x3C827ECFCB3C90BA),\n reinterpret(0x3FE6E00038B95A04), reinterpret(0x3C88FF8856739326),\n reinterpret(0x3FE71FFFE09994E3), reinterpret(0x3C8AFD40275F82B1),\n reinterpret(0x3FE7600015590E10), reinterpret(0xBC72FD75B4238341),\n reinterpret(0x3FE7A00012655BD5), reinterpret(0x3C7808E67C242B76),\n reinterpret(0x3FE7E0003259E9A6), reinterpret(0xBC6208E426F622B7),\n reinterpret(0x3FE81FFFEDB4B2D2), reinterpret(0xBC8402461EA5C92F),\n reinterpret(0x3FE860002DFAFCC3), reinterpret(0x3C6DF7F4A2F29A1F),\n reinterpret(0x3FE89FFFF78C6B50), reinterpret(0xBC8E0453094995FD),\n reinterpret(0x3FE8E00039671566), reinterpret(0xBC8A04F3BEC77B45),\n reinterpret(0x3FE91FFFE2BF1745), reinterpret(0xBC77FA34400E203C),\n reinterpret(0x3FE95FFFCC5C9FD1), reinterpret(0xBC76FF8005A0695D),\n reinterpret(0x3FE9A0003BBA4767), reinterpret(0x3C70F8C4C4EC7E03),\n reinterpret(0x3FE9DFFFE7B92DA5), reinterpret(0x3C8E7FD9478C4602),\n reinterpret(0x3FEA1FFFD72EFDAF), reinterpret(0xBC6A0C554DCDAE7E),\n reinterpret(0x3FEA5FFFDE04FF95), reinterpret(0x3C867DA98CE9B26B),\n reinterpret(0x3FEA9FFFCA5E8D2B), reinterpret(0xBC8284C9B54C13DE),\n reinterpret(0x3FEADFFFDDAD03EA), reinterpret(0x3C5812C8EA602E3C),\n reinterpret(0x3FEB1FFFF10D3D4D), reinterpret(0xBC8EFADDAD27789C),\n reinterpret(0x3FEB5FFFCE21165A), reinterpret(0x3C53CB1719C61237),\n reinterpret(0x3FEB9FFFD950E674), reinterpret(0x3C73F7D94194CE00),\n reinterpret(0x3FEBE000139CA8AF), reinterpret(0x3C750AC4215D9BC0),\n reinterpret(0x3FEC20005B46DF99), reinterpret(0x3C6BEEA653E9C1C9),\n reinterpret(0x3FEC600040B9F7AE), reinterpret(0xBC7C079F274A70D6),\n reinterpret(0x3FECA0006255FD8A), reinterpret(0xBC7A0B4076E84C1F),\n reinterpret(0x3FECDFFFD94C095D), reinterpret(0x3C88F933F99AB5D7),\n reinterpret(0x3FED1FFFF975D6CF), reinterpret(0xBC582C08665FE1BE),\n reinterpret(0x3FED5FFFA2561C93), reinterpret(0xBC7B04289BD295F3),\n reinterpret(0x3FED9FFF9D228B0C), reinterpret(0x3C870251340FA236),\n reinterpret(0x3FEDE00065BC7E16), reinterpret(0xBC75011E16A4D80C),\n reinterpret(0x3FEE200002F64791), reinterpret(0x3C89802F09EF62E0),\n reinterpret(0x3FEE600057D7A6D8), reinterpret(0xBC7E0B75580CF7FA),\n reinterpret(0x3FEEA00027EDC00C), reinterpret(0xBC8C848309459811),\n reinterpret(0x3FEEE0006CF5CB7C), reinterpret(0xBC8F8027951576F4),\n reinterpret(0x3FEF2000782B7DCC), reinterpret(0xBC8F81D97274538F),\n reinterpret(0x3FEF6000260C450A), reinterpret(0xBC4071002727FFDC),\n reinterpret(0x3FEF9FFFE88CD533), reinterpret(0xBC581BDCE1FDA8B0),\n reinterpret(0x3FEFDFFFD50F8689), reinterpret(0x3C87F91ACB918E6E),\n reinterpret(0x3FF0200004292367), reinterpret(0x3C9B7FF365324681),\n reinterpret(0x3FF05FFFE3E3D668), reinterpret(0x3C86FA08DDAE957B),\n reinterpret(0x3FF0A0000A85A757), reinterpret(0xBC57E2DE80D3FB91),\n reinterpret(0x3FF0E0001A5F3FCC), reinterpret(0xBC91823305C5F014),\n reinterpret(0x3FF11FFFF8AFBAF5), reinterpret(0xBC8BFABB6680BAC2),\n reinterpret(0x3FF15FFFE54D91AD), reinterpret(0xBC9D7F121737E7EF),\n reinterpret(0x3FF1A00011AC36E1), reinterpret(0x3C9C000A0516F5FF),\n reinterpret(0x3FF1E00019C84248), reinterpret(0xBC9082FBE4DA5DA0),\n reinterpret(0x3FF220000FFE5E6E), reinterpret(0xBC88FDD04C9CFB43),\n reinterpret(0x3FF26000269FD891), reinterpret(0x3C8CFE2A7994D182),\n reinterpret(0x3FF2A00029A6E6DA), reinterpret(0xBC700273715E8BC5),\n reinterpret(0x3FF2DFFFE0293E39), reinterpret(0x3C9B7C39DAB2A6F9),\n reinterpret(0x3FF31FFFF7DCF082), reinterpret(0x3C7DF1336EDC5254),\n reinterpret(0x3FF35FFFF05A8B60), reinterpret(0xBC9E03564CCD31EB),\n reinterpret(0x3FF3A0002E0EAECC), reinterpret(0x3C75F0E74BD3A477),\n reinterpret(0x3FF3E000043BB236), reinterpret(0x3C9C7DCB149D8833),\n reinterpret(0x3FF4200002D187FF), reinterpret(0x3C7E08AFCF2D3D28),\n reinterpret(0x3FF460000D387CB1), reinterpret(0x3C820837856599A6),\n reinterpret(0x3FF4A00004569F89), reinterpret(0xBC89FA5C904FBCD2),\n reinterpret(0x3FF4E000043543F3), reinterpret(0xBC781125ED175329),\n reinterpret(0x3FF51FFFCC027F0F), reinterpret(0x3C9883D8847754DC),\n reinterpret(0x3FF55FFFFD87B36F), reinterpret(0xBC8709E731D02807),\n reinterpret(0x3FF59FFFF21DF7BA), reinterpret(0x3C87F79F68727B02),\n reinterpret(0x3FF5DFFFEBFC3481), reinterpret(0xBC9180902E30E93E)\n]);\n\n// @ts-ignore: decorator\n@inline\nexport function log2_lut(x: f64): f64 {\n const N_MASK = (1 << LOG2_TABLE_BITS) - 1;\n\n const\n LO: u64 = 0x3FEEA4AF00000000, // reinterpret(1.0 - 0x1.5b51p-5)\n HI: u64 = 0x3FF0B55900000000; // reinterpret(1.0 + 0x1.6ab2p-5)\n\n const\n InvLn2hi = reinterpret(0x3FF7154765200000), // 0x1.7154765200000p+0\n InvLn2lo = reinterpret(0x3DE705FC2EEFA200), // 0x1.705fc2eefa200p-33\n Ox1p52 = reinterpret(0x4330000000000000); // 0x1p52\n\n const\n B0 = reinterpret(0xBFE71547652B82FE), // -0x1.71547652b82fep-1\n B1 = reinterpret(0x3FDEC709DC3A03F7), // 0x1.ec709dc3a03f7p-2\n B2 = reinterpret(0xBFD71547652B7C3F), // -0x1.71547652b7c3fp-2\n B3 = reinterpret(0x3FD2776C50F05BE4), // 0x1.2776c50f05be4p-2\n B4 = reinterpret(0xBFCEC709DD768FE5), // -0x1.ec709dd768fe5p-3\n B5 = reinterpret(0x3FCA61761EC4E736), // 0x1.a61761ec4e736p-3\n B6 = reinterpret(0xBFC7153FBC64A79B), // -0x1.7153fbc64a79bp-3\n B7 = reinterpret(0x3FC484D154F01B4A), // 0x1.484d154f01b4ap-3\n B8 = reinterpret(0xBFC289E4A72C383C), // -0x1.289e4a72c383cp-3\n B9 = reinterpret(0x3FC0B32F285AEE66); // 0x1.0b32f285aee66p-3\n\n const\n A0 = reinterpret(0xBFE71547652B8339), // -0x1.71547652b8339p-1\n A1 = reinterpret(0x3FDEC709DC3A04BE), // 0x1.ec709dc3a04bep-2\n A2 = reinterpret(0xBFD7154764702FFB), // -0x1.7154764702ffbp-2\n A3 = reinterpret(0x3FD2776C50034C48), // 0x1.2776c50034c48p-2\n A4 = reinterpret(0xBFCEC7B328EA92BC), // -0x1.ec7b328ea92bcp-3\n A5 = reinterpret(0x3FCA6225E117F92E); // 0x1.a6225e117f92ep-3\n\n var ix = reinterpret(x);\n if (ix - LO < HI - LO) {\n let r = x - 1.0;\n // #if __FP_FAST_FMA\n // hi = r * InvLn2hi;\n // lo = r * InvLn2lo + __builtin_fma(r, InvLn2hi, -hi);\n // #else\n let rhi = reinterpret(reinterpret(r) & 0xFFFFFFFF00000000);\n let rlo = r - rhi;\n let hi = rhi * InvLn2hi;\n let lo = rlo * InvLn2hi + r * InvLn2lo;\n // #endif\n let r2 = r * r; // rounding error: 0x1p-62\n let r4 = r2 * r2;\n // Worst-case error is less than 0.54 ULP (0.55 ULP without fma)\n let p = r2 * (B0 + r * B1);\n let y = hi + p;\n lo += hi - y + p;\n lo += r4 * (B2 + r * B3 + r2 * (B4 + r * B5) +\n r4 * (B6 + r * B7 + r2 * (B8 + r * B9)));\n return y + lo;\n }\n var top = u32(ix >> 48);\n if (top - 0x0010 >= 0x7ff0 - 0x0010) {\n // x < 0x1p-1022 or inf or nan.\n if ((ix << 1) == 0) return -1.0 / (x * x);\n if (ix == 0x7FF0000000000000) return x; // log(inf) == inf\n if ((top & 0x8000) || (top & 0x7FF0) == 0x7FF0) return (x - x) / (x - x);\n // x is subnormal, normalize it.\n ix = reinterpret(x * Ox1p52);\n ix -= u64(52) << 52;\n }\n\n // x = 2^k z; where z is in range [OFF,2*OFF) and exact.\n // The range is split into N subintervals.\n // The ith subinterval contains z and c is near its center.\n var tmp = ix - 0x3FE6000000000000;\n var i = ((tmp >> (52 - LOG2_TABLE_BITS)) & N_MASK);\n var k = tmp >> 52;\n var iz = ix - (tmp & 0xFFF0000000000000);\n\n var invc = load(LOG2_DATA_TAB1 + (i << (1 + alignof())), 0 << alignof()); // T[i].invc;\n var logc = load(LOG2_DATA_TAB1 + (i << (1 + alignof())), 1 << alignof()); // T[i].logc;\n var z = reinterpret(iz);\n var kd = k;\n\n // log2(x) = log2(z/c) + log2(c) + k.\n // r ~= z/c - 1, |r| < 1/(2*N).\n // #if __FP_FAST_FMA\n // \t// rounding error: 0x1p-55/N.\n // \tr = __builtin_fma(z, invc, -1.0);\n // \tt1 = r * InvLn2hi;\n // \tt2 = r * InvLn2lo + __builtin_fma(r, InvLn2hi, -t1);\n // #else\n // rounding error: 0x1p-55/N + 0x1p-65.\n var chi = load(LOG2_DATA_TAB2 + (i << (1 + alignof())), 0 << alignof()); // T[i].chi;\n var clo = load(LOG2_DATA_TAB2 + (i << (1 + alignof())), 1 << alignof()); // T[i].clo;\n\n var r = (z - chi - clo) * invc;\n var rhi = reinterpret(reinterpret(r) & 0xFFFFFFFF00000000);\n var rlo = r - rhi;\n var t1 = rhi * InvLn2hi;\n var t2 = rlo * InvLn2hi + r * InvLn2lo;\n // #endif\n\n // hi + lo = r/ln2 + log2(c) + k\n var t3 = kd + logc;\n var hi = t3 + t1;\n var lo = t3 - hi + t1 + t2;\n\n // log2(r+1) = r/ln2 + r^2*poly(r)\n // Evaluation is optimized assuming superscalar pipelined execution\n var r2 = r * r; // rounding error: 0x1p-54/N^2\n // Worst-case error if |y| > 0x1p-4: 0.547 ULP (0.550 ULP without fma).\n // ~ 0.5 + 2/N/ln2 + abs-poly-error*0x1p56 ULP (+ 0.003 ULP without fma).\n var p = A0 + r * A1 + r2 * (A2 + r * A3) + (r2 * r2) * (A4 + r * A5);\n return lo + r2 * p + hi;\n}\n\n//\n// Lookup data for log. See: https://git.musl-libc.org/cgit/musl/tree/src/math/log.c\n//\n\n// @ts-ignore: decorator\n@inline const LOG_TABLE_BITS = 7;\n\n/* Algorithm:\n\n x = 2^k z\n log(x) = k ln2 + log(c) + log(z/c)\n log(z/c) = poly(z/c - 1)\n\nwhere z is in [1.6p-1; 1.6p0] which is split into N subintervals and z falls\ninto the ith one, then table entries are computed as\n\n tab[i].invc = 1/c\n tab[i].logc = (double)log(c)\n tab2[i].chi = (double)c\n tab2[i].clo = (double)(c - (double)c)\n\nwhere c is near the center of the subinterval and is chosen by trying +-2^29\nfloating point invc candidates around 1/center and selecting one for which\n\n 1) the rounding error in 0x1.8p9 + logc is 0,\n 2) the rounding error in z - chi - clo is < 0x1p-66 and\n 3) the rounding error in (double)log(c) is minimized (< 0x1p-66).\n\nNote: 1) ensures that k*ln2hi + logc can be computed without rounding error,\n2) ensures that z/c - 1 can be computed as (z - chi - clo)*invc with close to\na single rounding error when there is no fast fma for z*invc - 1, 3) ensures\nthat logc + poly(z/c - 1) has small error, however near x == 1 when\n|log(x)| < 0x1p-4, this is not enough so that is special cased.*/\n\n// @ts-ignore: decorator\n@lazy @inline const LOG_DATA_TAB1 = memory.data([\n // invc , logc\n reinterpret(0x3FF734F0C3E0DE9F), reinterpret(0xBFD7CC7F79E69000),\n reinterpret(0x3FF713786A2CE91F), reinterpret(0xBFD76FEEC20D0000),\n reinterpret(0x3FF6F26008FAB5A0), reinterpret(0xBFD713E31351E000),\n reinterpret(0x3FF6D1A61F138C7D), reinterpret(0xBFD6B85B38287800),\n reinterpret(0x3FF6B1490BC5B4D1), reinterpret(0xBFD65D5590807800),\n reinterpret(0x3FF69147332F0CBA), reinterpret(0xBFD602D076180000),\n reinterpret(0x3FF6719F18224223), reinterpret(0xBFD5A8CA86909000),\n reinterpret(0x3FF6524F99A51ED9), reinterpret(0xBFD54F4356035000),\n reinterpret(0x3FF63356AA8F24C4), reinterpret(0xBFD4F637C36B4000),\n reinterpret(0x3FF614B36B9DDC14), reinterpret(0xBFD49DA7FDA85000),\n reinterpret(0x3FF5F66452C65C4C), reinterpret(0xBFD445923989A800),\n reinterpret(0x3FF5D867B5912C4F), reinterpret(0xBFD3EDF439B0B800),\n reinterpret(0x3FF5BABCCB5B90DE), reinterpret(0xBFD396CE448F7000),\n reinterpret(0x3FF59D61F2D91A78), reinterpret(0xBFD3401E17BDA000),\n reinterpret(0x3FF5805612465687), reinterpret(0xBFD2E9E2EF468000),\n reinterpret(0x3FF56397CEE76BD3), reinterpret(0xBFD2941B3830E000),\n reinterpret(0x3FF54725E2A77F93), reinterpret(0xBFD23EC58CDA8800),\n reinterpret(0x3FF52AFF42064583), reinterpret(0xBFD1E9E129279000),\n reinterpret(0x3FF50F22DBB2BDDF), reinterpret(0xBFD1956D2B48F800),\n reinterpret(0x3FF4F38F4734DED7), reinterpret(0xBFD141679AB9F800),\n reinterpret(0x3FF4D843CFDE2840), reinterpret(0xBFD0EDD094EF9800),\n reinterpret(0x3FF4BD3EC078A3C8), reinterpret(0xBFD09AA518DB1000),\n reinterpret(0x3FF4A27FC3E0258A), reinterpret(0xBFD047E65263B800),\n reinterpret(0x3FF4880524D48434), reinterpret(0xBFCFEB224586F000),\n reinterpret(0x3FF46DCE1B192D0B), reinterpret(0xBFCF474A7517B000),\n reinterpret(0x3FF453D9D3391854), reinterpret(0xBFCEA4443D103000),\n reinterpret(0x3FF43A2744B4845A), reinterpret(0xBFCE020D44E9B000),\n reinterpret(0x3FF420B54115F8FB), reinterpret(0xBFCD60A22977F000),\n reinterpret(0x3FF40782DA3EF4B1), reinterpret(0xBFCCC00104959000),\n reinterpret(0x3FF3EE8F5D57FE8F), reinterpret(0xBFCC202956891000),\n reinterpret(0x3FF3D5D9A00B4CE9), reinterpret(0xBFCB81178D811000),\n reinterpret(0x3FF3BD60C010C12B), reinterpret(0xBFCAE2C9CCD3D000),\n reinterpret(0x3FF3A5242B75DAB8), reinterpret(0xBFCA45402E129000),\n reinterpret(0x3FF38D22CD9FD002), reinterpret(0xBFC9A877681DF000),\n reinterpret(0x3FF3755BC5847A1C), reinterpret(0xBFC90C6D69483000),\n reinterpret(0x3FF35DCE49AD36E2), reinterpret(0xBFC87120A645C000),\n reinterpret(0x3FF34679984DD440), reinterpret(0xBFC7D68FB4143000),\n reinterpret(0x3FF32F5CCEFFCB24), reinterpret(0xBFC73CB83C627000),\n reinterpret(0x3FF3187775A10D49), reinterpret(0xBFC6A39A9B376000),\n reinterpret(0x3FF301C8373E3990), reinterpret(0xBFC60B3154B7A000),\n reinterpret(0x3FF2EB4EBB95F841), reinterpret(0xBFC5737D76243000),\n reinterpret(0x3FF2D50A0219A9D1), reinterpret(0xBFC4DC7B8FC23000),\n reinterpret(0x3FF2BEF9A8B7FD2A), reinterpret(0xBFC4462C51D20000),\n reinterpret(0x3FF2A91C7A0C1BAB), reinterpret(0xBFC3B08ABC830000),\n reinterpret(0x3FF293726014B530), reinterpret(0xBFC31B996B490000),\n reinterpret(0x3FF27DFA5757A1F5), reinterpret(0xBFC2875490A44000),\n reinterpret(0x3FF268B39B1D3BBF), reinterpret(0xBFC1F3B9F879A000),\n reinterpret(0x3FF2539D838FF5BD), reinterpret(0xBFC160C8252CA000),\n reinterpret(0x3FF23EB7AAC9083B), reinterpret(0xBFC0CE7F57F72000),\n reinterpret(0x3FF22A012BA940B6), reinterpret(0xBFC03CDC49FEA000),\n reinterpret(0x3FF2157996CC4132), reinterpret(0xBFBF57BDBC4B8000),\n reinterpret(0x3FF201201DD2FC9B), reinterpret(0xBFBE370896404000),\n reinterpret(0x3FF1ECF4494D480B), reinterpret(0xBFBD17983EF94000),\n reinterpret(0x3FF1D8F5528F6569), reinterpret(0xBFBBF9674ED8A000),\n reinterpret(0x3FF1C52311577E7C), reinterpret(0xBFBADC79202F6000),\n reinterpret(0x3FF1B17C74CB26E9), reinterpret(0xBFB9C0C3E7288000),\n reinterpret(0x3FF19E010C2C1AB6), reinterpret(0xBFB8A646B372C000),\n reinterpret(0x3FF18AB07BB670BD), reinterpret(0xBFB78D01B3AC0000),\n reinterpret(0x3FF1778A25EFBCB6), reinterpret(0xBFB674F145380000),\n reinterpret(0x3FF1648D354C31DA), reinterpret(0xBFB55E0E6D878000),\n reinterpret(0x3FF151B990275FDD), reinterpret(0xBFB4485CDEA1E000),\n reinterpret(0x3FF13F0EA432D24C), reinterpret(0xBFB333D94D6AA000),\n reinterpret(0x3FF12C8B7210F9DA), reinterpret(0xBFB22079F8C56000),\n reinterpret(0x3FF11A3028ECB531), reinterpret(0xBFB10E4698622000),\n reinterpret(0x3FF107FBDA8434AF), reinterpret(0xBFAFFA6C6AD20000),\n reinterpret(0x3FF0F5EE0F4E6BB3), reinterpret(0xBFADDA8D4A774000),\n reinterpret(0x3FF0E4065D2A9FCE), reinterpret(0xBFABBCECE4850000),\n reinterpret(0x3FF0D244632CA521), reinterpret(0xBFA9A1894012C000),\n reinterpret(0x3FF0C0A77CE2981A), reinterpret(0xBFA788583302C000),\n reinterpret(0x3FF0AF2F83C636D1), reinterpret(0xBFA5715E67D68000),\n reinterpret(0x3FF09DDB98A01339), reinterpret(0xBFA35C8A49658000),\n reinterpret(0x3FF08CABAF52E7DF), reinterpret(0xBFA149E364154000),\n reinterpret(0x3FF07B9F2F4E28FB), reinterpret(0xBF9E72C082EB8000),\n reinterpret(0x3FF06AB58C358F19), reinterpret(0xBF9A55F152528000),\n reinterpret(0x3FF059EEA5ECF92C), reinterpret(0xBF963D62CF818000),\n reinterpret(0x3FF04949CDD12C90), reinterpret(0xBF9228FB8CAA0000),\n reinterpret(0x3FF038C6C6F0ADA9), reinterpret(0xBF8C317B20F90000),\n reinterpret(0x3FF02865137932A9), reinterpret(0xBF8419355DAA0000),\n reinterpret(0x3FF0182427EA7348), reinterpret(0xBF781203C2EC0000),\n reinterpret(0x3FF008040614B195), reinterpret(0xBF60040979240000),\n reinterpret(0x3FEFE01FF726FA1A), reinterpret(0x3F6FEFF384900000),\n reinterpret(0x3FEFA11CC261EA74), reinterpret(0x3F87DC41353D0000),\n reinterpret(0x3FEF6310B081992E), reinterpret(0x3F93CEA3C4C28000),\n reinterpret(0x3FEF25F63CEEADCD), reinterpret(0x3F9B9FC114890000),\n reinterpret(0x3FEEE9C8039113E7), reinterpret(0x3FA1B0D8CE110000),\n reinterpret(0x3FEEAE8078CBB1AB), reinterpret(0x3FA58A5BD001C000),\n reinterpret(0x3FEE741AA29D0C9B), reinterpret(0x3FA95C8340D88000),\n reinterpret(0x3FEE3A91830A99B5), reinterpret(0x3FAD276AEF578000),\n reinterpret(0x3FEE01E009609A56), reinterpret(0x3FB07598E598C000),\n reinterpret(0x3FEDCA01E577BB98), reinterpret(0x3FB253F5E30D2000),\n reinterpret(0x3FED92F20B7C9103), reinterpret(0x3FB42EDD8B380000),\n reinterpret(0x3FED5CAC66FB5CCE), reinterpret(0x3FB606598757C000),\n reinterpret(0x3FED272CAA5EDE9D), reinterpret(0x3FB7DA76356A0000),\n reinterpret(0x3FECF26E3E6B2CCD), reinterpret(0x3FB9AB434E1C6000),\n reinterpret(0x3FECBE6DA2A77902), reinterpret(0x3FBB78C7BB0D6000),\n reinterpret(0x3FEC8B266D37086D), reinterpret(0x3FBD431332E72000),\n reinterpret(0x3FEC5894BD5D5804), reinterpret(0x3FBF0A3171DE6000),\n reinterpret(0x3FEC26B533BB9F8C), reinterpret(0x3FC067152B914000),\n reinterpret(0x3FEBF583EEECE73F), reinterpret(0x3FC147858292B000),\n reinterpret(0x3FEBC4FD75DB96C1), reinterpret(0x3FC2266ECDCA3000),\n reinterpret(0x3FEB951E0C864A28), reinterpret(0x3FC303D7A6C55000),\n reinterpret(0x3FEB65E2C5EF3E2C), reinterpret(0x3FC3DFC33C331000),\n reinterpret(0x3FEB374867C9888B), reinterpret(0x3FC4BA366B7A8000),\n reinterpret(0x3FEB094B211D304A), reinterpret(0x3FC5933928D1F000),\n reinterpret(0x3FEADBE885F2EF7E), reinterpret(0x3FC66ACD2418F000),\n reinterpret(0x3FEAAF1D31603DA2), reinterpret(0x3FC740F8EC669000),\n reinterpret(0x3FEA82E63FD358A7), reinterpret(0x3FC815C0F51AF000),\n reinterpret(0x3FEA5740EF09738B), reinterpret(0x3FC8E92954F68000),\n reinterpret(0x3FEA2C2A90AB4B27), reinterpret(0x3FC9BB3602F84000),\n reinterpret(0x3FEA01A01393F2D1), reinterpret(0x3FCA8BED1C2C0000),\n reinterpret(0x3FE9D79F24DB3C1B), reinterpret(0x3FCB5B515C01D000),\n reinterpret(0x3FE9AE2505C7B190), reinterpret(0x3FCC2967CCBCC000),\n reinterpret(0x3FE9852EF297CE2F), reinterpret(0x3FCCF635D5486000),\n reinterpret(0x3FE95CBAEEA44B75), reinterpret(0x3FCDC1BD3446C000),\n reinterpret(0x3FE934C69DE74838), reinterpret(0x3FCE8C01B8CFE000),\n reinterpret(0x3FE90D4F2F6752E6), reinterpret(0x3FCF5509C0179000),\n reinterpret(0x3FE8E6528EFFD79D), reinterpret(0x3FD00E6C121FB800),\n reinterpret(0x3FE8BFCE9FCC007C), reinterpret(0x3FD071B80E93D000),\n reinterpret(0x3FE899C0DABEC30E), reinterpret(0x3FD0D46B9E867000),\n reinterpret(0x3FE87427AA2317FB), reinterpret(0x3FD13687334BD000),\n reinterpret(0x3FE84F00ACB39A08), reinterpret(0x3FD1980D67234800),\n reinterpret(0x3FE82A49E8653E55), reinterpret(0x3FD1F8FFE0CC8000),\n reinterpret(0x3FE8060195F40260), reinterpret(0x3FD2595FD7636800),\n reinterpret(0x3FE7E22563E0A329), reinterpret(0x3FD2B9300914A800),\n reinterpret(0x3FE7BEB377DCB5AD), reinterpret(0x3FD3187210436000),\n reinterpret(0x3FE79BAA679725C2), reinterpret(0x3FD377266DEC1800),\n reinterpret(0x3FE77907F2170657), reinterpret(0x3FD3D54FFBAF3000),\n reinterpret(0x3FE756CADBD6130C), reinterpret(0x3FD432EEE32FE000)\n]);\n\n// @ts-ignore: decorator\n@lazy @inline const LOG_DATA_TAB2 = memory.data([\n // chi , clo\n reinterpret(0x3FE61000014FB66B), reinterpret(0x3C7E026C91425B3C),\n reinterpret(0x3FE63000034DB495), reinterpret(0x3C8DBFEA48005D41),\n reinterpret(0x3FE650000D94D478), reinterpret(0x3C8E7FA786D6A5B7),\n reinterpret(0x3FE67000074E6FAD), reinterpret(0x3C61FCEA6B54254C),\n reinterpret(0x3FE68FFFFEDF0FAE), reinterpret(0xBC7C7E274C590EFD),\n reinterpret(0x3FE6B0000763C5BC), reinterpret(0xBC8AC16848DCDA01),\n reinterpret(0x3FE6D0001E5CC1F6), reinterpret(0x3C833F1C9D499311),\n reinterpret(0x3FE6EFFFEB05F63E), reinterpret(0xBC7E80041AE22D53),\n reinterpret(0x3FE710000E869780), reinterpret(0x3C7BFF6671097952),\n reinterpret(0x3FE72FFFFC67E912), reinterpret(0x3C8C00E226BD8724),\n reinterpret(0x3FE74FFFDF81116A), reinterpret(0xBC6E02916EF101D2),\n reinterpret(0x3FE770000F679C90), reinterpret(0xBC67FC71CD549C74),\n reinterpret(0x3FE78FFFFA7EC835), reinterpret(0x3C81BEC19EF50483),\n reinterpret(0x3FE7AFFFFE20C2E6), reinterpret(0xBC707E1729CC6465),\n reinterpret(0x3FE7CFFFED3FC900), reinterpret(0xBC808072087B8B1C),\n reinterpret(0x3FE7EFFFE9261A76), reinterpret(0x3C8DC0286D9DF9AE),\n reinterpret(0x3FE81000049CA3E8), reinterpret(0x3C897FD251E54C33),\n reinterpret(0x3FE8300017932C8F), reinterpret(0xBC8AFEE9B630F381),\n reinterpret(0x3FE850000633739C), reinterpret(0x3C89BFBF6B6535BC),\n reinterpret(0x3FE87000204289C6), reinterpret(0xBC8BBF65F3117B75),\n reinterpret(0x3FE88FFFEBF57904), reinterpret(0xBC89006EA23DCB57),\n reinterpret(0x3FE8B00022BC04DF), reinterpret(0xBC7D00DF38E04B0A),\n reinterpret(0x3FE8CFFFE50C1B8A), reinterpret(0xBC88007146FF9F05),\n reinterpret(0x3FE8EFFFFC918E43), reinterpret(0x3C83817BD07A7038),\n reinterpret(0x3FE910001EFA5FC7), reinterpret(0x3C893E9176DFB403),\n reinterpret(0x3FE9300013467BB9), reinterpret(0x3C7F804E4B980276),\n reinterpret(0x3FE94FFFE6EE076F), reinterpret(0xBC8F7EF0D9FF622E),\n reinterpret(0x3FE96FFFDE3C12D1), reinterpret(0xBC7082AA962638BA),\n reinterpret(0x3FE98FFFF4458A0D), reinterpret(0xBC87801B9164A8EF),\n reinterpret(0x3FE9AFFFDD982E3E), reinterpret(0xBC8740E08A5A9337),\n reinterpret(0x3FE9CFFFED49FB66), reinterpret(0x3C3FCE08C19BE000),\n reinterpret(0x3FE9F00020F19C51), reinterpret(0xBC8A3FAA27885B0A),\n reinterpret(0x3FEA10001145B006), reinterpret(0x3C74FF489958DA56),\n reinterpret(0x3FEA300007BBF6FA), reinterpret(0x3C8CBEAB8A2B6D18),\n reinterpret(0x3FEA500010971D79), reinterpret(0x3C88FECADD787930),\n reinterpret(0x3FEA70001DF52E48), reinterpret(0xBC8F41763DD8ABDB),\n reinterpret(0x3FEA90001C593352), reinterpret(0xBC8EBF0284C27612),\n reinterpret(0x3FEAB0002A4F3E4B), reinterpret(0xBC69FD043CFF3F5F),\n reinterpret(0x3FEACFFFD7AE1ED1), reinterpret(0xBC823EE7129070B4),\n reinterpret(0x3FEAEFFFEE510478), reinterpret(0x3C6A063EE00EDEA3),\n reinterpret(0x3FEB0FFFDB650D5B), reinterpret(0x3C5A06C8381F0AB9),\n reinterpret(0x3FEB2FFFFEAACA57), reinterpret(0xBC79011E74233C1D),\n reinterpret(0x3FEB4FFFD995BADC), reinterpret(0xBC79FF1068862A9F),\n reinterpret(0x3FEB7000249E659C), reinterpret(0x3C8AFF45D0864F3E),\n reinterpret(0x3FEB8FFFF9871640), reinterpret(0x3C7CFE7796C2C3F9),\n reinterpret(0x3FEBAFFFD204CB4F), reinterpret(0xBC63FF27EEF22BC4),\n reinterpret(0x3FEBCFFFD2415C45), reinterpret(0xBC6CFFB7EE3BEA21),\n reinterpret(0x3FEBEFFFF86309DF), reinterpret(0xBC814103972E0B5C),\n reinterpret(0x3FEC0FFFE1B57653), reinterpret(0x3C8BC16494B76A19),\n reinterpret(0x3FEC2FFFF1FA57E3), reinterpret(0xBC64FEEF8D30C6ED),\n reinterpret(0x3FEC4FFFDCBFE424), reinterpret(0xBC843F68BCEC4775),\n reinterpret(0x3FEC6FFFED54B9F7), reinterpret(0x3C847EA3F053E0EC),\n reinterpret(0x3FEC8FFFEB998FD5), reinterpret(0x3C7383068DF992F1),\n reinterpret(0x3FECB0002125219A), reinterpret(0xBC68FD8E64180E04),\n reinterpret(0x3FECCFFFDD94469C), reinterpret(0x3C8E7EBE1CC7EA72),\n reinterpret(0x3FECEFFFEAFDC476), reinterpret(0x3C8EBE39AD9F88FE),\n reinterpret(0x3FED1000169AF82B), reinterpret(0x3C757D91A8B95A71),\n reinterpret(0x3FED30000D0FF71D), reinterpret(0x3C89C1906970C7DA),\n reinterpret(0x3FED4FFFEA790FC4), reinterpret(0xBC580E37C558FE0C),\n reinterpret(0x3FED70002EDC87E5), reinterpret(0xBC7F80D64DC10F44),\n reinterpret(0x3FED900021DC82AA), reinterpret(0xBC747C8F94FD5C5C),\n reinterpret(0x3FEDAFFFD86B0283), reinterpret(0x3C8C7F1DC521617E),\n reinterpret(0x3FEDD000296C4739), reinterpret(0x3C88019EB2FFB153),\n reinterpret(0x3FEDEFFFE54490F5), reinterpret(0x3C6E00D2C652CC89),\n reinterpret(0x3FEE0FFFCDABF694), reinterpret(0xBC7F8340202D69D2),\n reinterpret(0x3FEE2FFFDB52C8DD), reinterpret(0x3C7B00C1CA1B0864),\n reinterpret(0x3FEE4FFFF24216EF), reinterpret(0x3C72FFA8B094AB51),\n reinterpret(0x3FEE6FFFE88A5E11), reinterpret(0xBC57F673B1EFBE59),\n reinterpret(0x3FEE9000119EFF0D), reinterpret(0xBC84808D5E0BC801),\n reinterpret(0x3FEEAFFFDFA51744), reinterpret(0x3C780006D54320B5),\n reinterpret(0x3FEED0001A127FA1), reinterpret(0xBC5002F860565C92),\n reinterpret(0x3FEEF00007BABCC4), reinterpret(0xBC8540445D35E611),\n reinterpret(0x3FEF0FFFF57A8D02), reinterpret(0xBC4FFB3139EF9105),\n reinterpret(0x3FEF30001EE58AC7), reinterpret(0x3C8A81ACF2731155),\n reinterpret(0x3FEF4FFFF5823494), reinterpret(0x3C8A3F41D4D7C743),\n reinterpret(0x3FEF6FFFFCA94C6B), reinterpret(0xBC6202F41C987875),\n reinterpret(0x3FEF8FFFE1F9C441), reinterpret(0x3C777DD1F477E74B),\n reinterpret(0x3FEFAFFFD2E0E37E), reinterpret(0xBC6F01199A7CA331),\n reinterpret(0x3FEFD0001C77E49E), reinterpret(0x3C7181EE4BCEACB1),\n reinterpret(0x3FEFEFFFF7E0C331), reinterpret(0xBC6E05370170875A),\n reinterpret(0x3FF00FFFF465606E), reinterpret(0xBC8A7EAD491C0ADA),\n reinterpret(0x3FF02FFFF3867A58), reinterpret(0xBC977F69C3FCB2E0),\n reinterpret(0x3FF04FFFFDFC0D17), reinterpret(0x3C97BFFE34CB945B),\n reinterpret(0x3FF0700003CD4D82), reinterpret(0x3C820083C0E456CB),\n reinterpret(0x3FF08FFFF9F2CBE8), reinterpret(0xBC6DFFDFBE37751A),\n reinterpret(0x3FF0B000010CDA65), reinterpret(0xBC913F7FAEE626EB),\n reinterpret(0x3FF0D00001A4D338), reinterpret(0x3C807DFA79489FF7),\n reinterpret(0x3FF0EFFFFADAFDFD), reinterpret(0xBC77040570D66BC0),\n reinterpret(0x3FF110000BBAFD96), reinterpret(0x3C8E80D4846D0B62),\n reinterpret(0x3FF12FFFFAE5F45D), reinterpret(0x3C9DBFFA64FD36EF),\n reinterpret(0x3FF150000DD59AD9), reinterpret(0x3C9A0077701250AE),\n reinterpret(0x3FF170000F21559A), reinterpret(0x3C8DFDF9E2E3DEEE),\n reinterpret(0x3FF18FFFFC275426), reinterpret(0x3C910030DC3B7273),\n reinterpret(0x3FF1B000123D3C59), reinterpret(0x3C997F7980030188),\n reinterpret(0x3FF1CFFFF8299EB7), reinterpret(0xBC65F932AB9F8C67),\n reinterpret(0x3FF1EFFFF48AD400), reinterpret(0x3C937FBF9DA75BEB),\n reinterpret(0x3FF210000C8B86A4), reinterpret(0x3C9F806B91FD5B22),\n reinterpret(0x3FF2300003854303), reinterpret(0x3C93FFC2EB9FBF33),\n reinterpret(0x3FF24FFFFFBCF684), reinterpret(0x3C7601E77E2E2E72),\n reinterpret(0x3FF26FFFF52921D9), reinterpret(0x3C7FFCBB767F0C61),\n reinterpret(0x3FF2900014933A3C), reinterpret(0xBC7202CA3C02412B),\n reinterpret(0x3FF2B00014556313), reinterpret(0xBC92808233F21F02),\n reinterpret(0x3FF2CFFFEBFE523B), reinterpret(0xBC88FF7E384FDCF2),\n reinterpret(0x3FF2F0000BB8AD96), reinterpret(0xBC85FF51503041C5),\n reinterpret(0x3FF30FFFFB7AE2AF), reinterpret(0xBC810071885E289D),\n reinterpret(0x3FF32FFFFEAC5F7F), reinterpret(0xBC91FF5D3FB7B715),\n reinterpret(0x3FF350000CA66756), reinterpret(0x3C957F82228B82BD),\n reinterpret(0x3FF3700011FBF721), reinterpret(0x3C8000BAC40DD5CC),\n reinterpret(0x3FF38FFFF9592FB9), reinterpret(0xBC943F9D2DB2A751),\n reinterpret(0x3FF3B00004DDD242), reinterpret(0x3C857F6B707638E1),\n reinterpret(0x3FF3CFFFF5B2C957), reinterpret(0x3C7A023A10BF1231),\n reinterpret(0x3FF3EFFFEAB0B418), reinterpret(0x3C987F6D66B152B0),\n reinterpret(0x3FF410001532AFF4), reinterpret(0x3C67F8375F198524),\n reinterpret(0x3FF4300017478B29), reinterpret(0x3C8301E672DC5143),\n reinterpret(0x3FF44FFFE795B463), reinterpret(0x3C89FF69B8B2895A),\n reinterpret(0x3FF46FFFE80475E0), reinterpret(0xBC95C0B19BC2F254),\n reinterpret(0x3FF48FFFEF6FC1E7), reinterpret(0x3C9B4009F23A2A72),\n reinterpret(0x3FF4AFFFE5BEA704), reinterpret(0xBC94FFB7BF0D7D45),\n reinterpret(0x3FF4D000171027DE), reinterpret(0xBC99C06471DC6A3D),\n reinterpret(0x3FF4F0000FF03EE2), reinterpret(0x3C977F890B85531C),\n reinterpret(0x3FF5100012DC4BD1), reinterpret(0x3C6004657166A436),\n reinterpret(0x3FF530001605277A), reinterpret(0xBC96BFCECE233209),\n reinterpret(0x3FF54FFFECDB704C), reinterpret(0xBC8902720505A1D7),\n reinterpret(0x3FF56FFFEF5F54A9), reinterpret(0x3C9BBFE60EC96412),\n reinterpret(0x3FF5900017E61012), reinterpret(0x3C887EC581AFEF90),\n reinterpret(0x3FF5B00003C93E92), reinterpret(0xBC9F41080ABF0CC0),\n reinterpret(0x3FF5D0001D4919BC), reinterpret(0xBC98812AFB254729),\n reinterpret(0x3FF5EFFFE7B87A89), reinterpret(0xBC947EB780ED6904)\n]);\n\n// @ts-ignore: decorator\n@inline\nexport function log_lut(x: f64): f64 {\n const N_MASK = (1 << LOG_TABLE_BITS) - 1;\n\n const\n B0 = reinterpret(0xBFE0000000000000), // -0x1p-1\n B1 = reinterpret(0x3FD5555555555577), // 0x1.5555555555577p-2\n B2 = reinterpret(0xBFCFFFFFFFFFFDCB), // -0x1.ffffffffffdcbp-3\n B3 = reinterpret(0x3FC999999995DD0C), // 0x1.999999995dd0cp-3\n B4 = reinterpret(0xBFC55555556745A7), // -0x1.55555556745a7p-3\n B5 = reinterpret(0x3FC24924A344DE30), // 0x1.24924a344de3p-3\n B6 = reinterpret(0xBFBFFFFFA4423D65), // -0x1.fffffa4423d65p-4\n B7 = reinterpret(0x3FBC7184282AD6CA), // 0x1.c7184282ad6cap-4\n B8 = reinterpret(0xBFB999EB43B068FF), // -0x1.999eb43b068ffp-4\n B9 = reinterpret(0x3FB78182F7AFD085), // 0x1.78182f7afd085p-4\n B10 = reinterpret(0xBFB5521375D145CD); // -0x1.5521375d145cdp-4\n\n const\n A0 = reinterpret(0xBFE0000000000001), // -0x1.0000000000001p-1\n A1 = reinterpret(0x3FD555555551305B), // 0x1.555555551305bp-2\n A2 = reinterpret(0xBFCFFFFFFFEB4590), // -0x1.fffffffeb459p-3\n A3 = reinterpret(0x3FC999B324F10111), // 0x1.999b324f10111p-3\n A4 = reinterpret(0xBFC55575E506C89F); // -0x1.55575e506c89fp-3\n\n const\n LO: u64 = 0x3FEE000000000000,\n HI: u64 = 0x3FF1090000000000;\n\n const\n Ln2hi = reinterpret(0x3FE62E42FEFA3800), // 0x1.62e42fefa3800p-1\n Ln2lo = reinterpret(0x3D2EF35793C76730), // 0x1.ef35793c76730p-45\n Ox1p27 = reinterpret(0x41A0000000000000), // 0x1p27\n Ox1p52 = reinterpret(0x4330000000000000); // 0x1p52\n\n var ix = reinterpret(x);\n if (ix - LO < HI - LO) {\n let r = x - 1.0;\n let r2 = r * r;\n let r3 = r2 * r;\n let y =\n r3 * (B1 + r * B2 + r2 * B3 +\n r3 * (B4 + r * B5 + r2 * B6 +\n r3 * (B7 + r * B8 + r2 * B9 + r3 * B10)));\n // Worst-case error is around 0.507 ULP\n let w = r * Ox1p27;\n let rhi = r + w - w;\n let rlo = r - rhi;\n w = rhi * rhi * B0; // B[0] == -0.5\n let hi = r + w;\n let lo = r - hi + w;\n lo += B0 * rlo * (rhi + r);\n return y + lo + hi;\n }\n var top = u32(ix >> 48);\n if (top - 0x0010 >= 0x7FF0 - 0x0010) {\n // x < 0x1p-1022 or inf or nan\n if ((ix << 1) == 0) return -1.0 / (x * x);\n if (ix == reinterpret(Infinity)) return x; // log(inf) == inf\n if ((top & 0x8000) || (top & 0x7FF0) == 0x7FF0) return (x - x) / (x - x);\n // x is subnormal, normalize it\n ix = reinterpret(x * Ox1p52);\n ix -= u64(52) << 52;\n }\n\n // x = 2^k z; where z is in range [OFF,2*OFF) and exact.\n // The range is split into N subintervals.\n // The ith subinterval contains z and c is near its center.\n var tmp = ix - 0x3FE6000000000000;\n var i = ((tmp >> (52 - LOG_TABLE_BITS)) & N_MASK);\n var k = tmp >> 52;\n var iz = ix - (tmp & (u64(0xFFF) << 52));\n\n var invc = load(LOG_DATA_TAB1 + (i << (1 + alignof())), 0 << alignof()); // T[i].invc;\n var logc = load(LOG_DATA_TAB1 + (i << (1 + alignof())), 1 << alignof()); // T[i].logc;\n var z = reinterpret(iz);\n\n // log(x) = log1p(z/c-1) + log(c) + k*Ln2.\n // r ~= z/c - 1, |r| < 1/(2*N)\n // #if __FP_FAST_FMA\n // \t// rounding error: 0x1p-55/N\n // \tr = __builtin_fma(z, invc, -1.0);\n // #else\n // rounding error: 0x1p-55/N + 0x1p-66\n const chi = load(LOG_DATA_TAB2 + (i << (1 + alignof())), 0 << alignof()); // T2[i].chi\n const clo = load(LOG_DATA_TAB2 + (i << (1 + alignof())), 1 << alignof()); // T2[i].clo\n var r = (z - chi - clo) * invc;\n // #endif\n var kd = k;\n\n // hi + lo = r + log(c) + k*Ln2\n var w = kd * Ln2hi + logc;\n var hi = w + r;\n var lo = w - hi + r + kd * Ln2lo;\n\n // log(x) = lo + (log1p(r) - r) + hi\n var r2 = r * r; // rounding error: 0x1p-54/N^2\n // Worst case error if |y| > 0x1p-5:\n // 0.5 + 4.13/N + abs-poly-error*2^57 ULP (+ 0.002 ULP without fma)\n // Worst case error if |y| > 0x1p-4:\n // 0.5 + 2.06/N + abs-poly-error*2^56 ULP (+ 0.001 ULP without fma).\n return lo + r2 * A0 + r * r2 * (A1 + r * A2 + r2 * (A3 + r * A4)) + hi;\n}\n\n//\n// Lookup data for pow. See: https://git.musl-libc.org/cgit/musl/tree/src/math/pow.c\n//\n\n// @ts-ignore: decorator\n@inline const POW_LOG_TABLE_BITS = 7;\n\n/* Algorithm:\n\n x = 2^k z\n log(x) = k ln2 + log(c) + log(z/c)\n log(z/c) = poly(z/c - 1)\n\nwhere z is in [0x1.69555p-1; 0x1.69555p0] which is split into N subintervals\nand z falls into the ith one, then table entries are computed as\n\n tab[i].invc = 1/c\n tab[i].logc = round(0x1p43*log(c))/0x1p43\n tab[i].logctail = (double)(log(c) - logc)\n\nwhere c is chosen near the center of the subinterval such that 1/c has only a\nfew precision bits so z/c - 1 is exactly representible as double:\n\n 1/c = center < 1 ? round(N/center)/N : round(2*N/center)/N/2\n\nNote: |z/c - 1| < 1/N for the chosen c, |log(c) - logc - logctail| < 0x1p-97,\nthe last few bits of logc are rounded away so k*ln2hi + logc has no rounding\nerror and the interval for z is selected such that near x == 1, where log(x)\nis tiny, large cancellation error is avoided in logc + poly(z/c - 1). */\n\n// @ts-ignore: decorator\n@lazy @inline const POW_LOG_DATA_TAB = memory.data([\n // invc ,pad, logc , logctail\n reinterpret(0x3FF6A00000000000), 0, reinterpret(0xBFD62C82F2B9C800), reinterpret(0x3CFAB42428375680),\n reinterpret(0x3FF6800000000000), 0, reinterpret(0xBFD5D1BDBF580800), reinterpret(0xBD1CA508D8E0F720),\n reinterpret(0x3FF6600000000000), 0, reinterpret(0xBFD5767717455800), reinterpret(0xBD2362A4D5B6506D),\n reinterpret(0x3FF6400000000000), 0, reinterpret(0xBFD51AAD872DF800), reinterpret(0xBCE684E49EB067D5),\n reinterpret(0x3FF6200000000000), 0, reinterpret(0xBFD4BE5F95777800), reinterpret(0xBD041B6993293EE0),\n reinterpret(0x3FF6000000000000), 0, reinterpret(0xBFD4618BC21C6000), reinterpret(0x3D13D82F484C84CC),\n reinterpret(0x3FF5E00000000000), 0, reinterpret(0xBFD404308686A800), reinterpret(0x3CDC42F3ED820B3A),\n reinterpret(0x3FF5C00000000000), 0, reinterpret(0xBFD3A64C55694800), reinterpret(0x3D20B1C686519460),\n reinterpret(0x3FF5A00000000000), 0, reinterpret(0xBFD347DD9A988000), reinterpret(0x3D25594DD4C58092),\n reinterpret(0x3FF5800000000000), 0, reinterpret(0xBFD2E8E2BAE12000), reinterpret(0x3D267B1E99B72BD8),\n reinterpret(0x3FF5600000000000), 0, reinterpret(0xBFD2895A13DE8800), reinterpret(0x3D15CA14B6CFB03F),\n reinterpret(0x3FF5600000000000), 0, reinterpret(0xBFD2895A13DE8800), reinterpret(0x3D15CA14B6CFB03F),\n reinterpret(0x3FF5400000000000), 0, reinterpret(0xBFD22941FBCF7800), reinterpret(0xBD165A242853DA76),\n reinterpret(0x3FF5200000000000), 0, reinterpret(0xBFD1C898C1699800), reinterpret(0xBD1FAFBC68E75404),\n reinterpret(0x3FF5000000000000), 0, reinterpret(0xBFD1675CABABA800), reinterpret(0x3D1F1FC63382A8F0),\n reinterpret(0x3FF4E00000000000), 0, reinterpret(0xBFD1058BF9AE4800), reinterpret(0xBD26A8C4FD055A66),\n reinterpret(0x3FF4C00000000000), 0, reinterpret(0xBFD0A324E2739000), reinterpret(0xBD0C6BEE7EF4030E),\n reinterpret(0x3FF4A00000000000), 0, reinterpret(0xBFD0402594B4D000), reinterpret(0xBCF036B89EF42D7F),\n reinterpret(0x3FF4A00000000000), 0, reinterpret(0xBFD0402594B4D000), reinterpret(0xBCF036B89EF42D7F),\n reinterpret(0x3FF4800000000000), 0, reinterpret(0xBFCFB9186D5E4000), reinterpret(0x3D0D572AAB993C87),\n reinterpret(0x3FF4600000000000), 0, reinterpret(0xBFCEF0ADCBDC6000), reinterpret(0x3D2B26B79C86AF24),\n reinterpret(0x3FF4400000000000), 0, reinterpret(0xBFCE27076E2AF000), reinterpret(0xBD172F4F543FFF10),\n reinterpret(0x3FF4200000000000), 0, reinterpret(0xBFCD5C216B4FC000), reinterpret(0x3D21BA91BBCA681B),\n reinterpret(0x3FF4000000000000), 0, reinterpret(0xBFCC8FF7C79AA000), reinterpret(0x3D27794F689F8434),\n reinterpret(0x3FF4000000000000), 0, reinterpret(0xBFCC8FF7C79AA000), reinterpret(0x3D27794F689F8434),\n reinterpret(0x3FF3E00000000000), 0, reinterpret(0xBFCBC286742D9000), reinterpret(0x3D194EB0318BB78F),\n reinterpret(0x3FF3C00000000000), 0, reinterpret(0xBFCAF3C94E80C000), reinterpret(0x3CBA4E633FCD9066),\n reinterpret(0x3FF3A00000000000), 0, reinterpret(0xBFCA23BC1FE2B000), reinterpret(0xBD258C64DC46C1EA),\n reinterpret(0x3FF3A00000000000), 0, reinterpret(0xBFCA23BC1FE2B000), reinterpret(0xBD258C64DC46C1EA),\n reinterpret(0x3FF3800000000000), 0, reinterpret(0xBFC9525A9CF45000), reinterpret(0xBD2AD1D904C1D4E3),\n reinterpret(0x3FF3600000000000), 0, reinterpret(0xBFC87FA06520D000), reinterpret(0x3D2BBDBF7FDBFA09),\n reinterpret(0x3FF3400000000000), 0, reinterpret(0xBFC7AB890210E000), reinterpret(0x3D2BDB9072534A58),\n reinterpret(0x3FF3400000000000), 0, reinterpret(0xBFC7AB890210E000), reinterpret(0x3D2BDB9072534A58),\n reinterpret(0x3FF3200000000000), 0, reinterpret(0xBFC6D60FE719D000), reinterpret(0xBD10E46AA3B2E266),\n reinterpret(0x3FF3000000000000), 0, reinterpret(0xBFC5FF3070A79000), reinterpret(0xBD1E9E439F105039),\n reinterpret(0x3FF3000000000000), 0, reinterpret(0xBFC5FF3070A79000), reinterpret(0xBD1E9E439F105039),\n reinterpret(0x3FF2E00000000000), 0, reinterpret(0xBFC526E5E3A1B000), reinterpret(0xBD20DE8B90075B8F),\n reinterpret(0x3FF2C00000000000), 0, reinterpret(0xBFC44D2B6CCB8000), reinterpret(0x3D170CC16135783C),\n reinterpret(0x3FF2C00000000000), 0, reinterpret(0xBFC44D2B6CCB8000), reinterpret(0x3D170CC16135783C),\n reinterpret(0x3FF2A00000000000), 0, reinterpret(0xBFC371FC201E9000), reinterpret(0x3CF178864D27543A),\n reinterpret(0x3FF2800000000000), 0, reinterpret(0xBFC29552F81FF000), reinterpret(0xBD248D301771C408),\n reinterpret(0x3FF2600000000000), 0, reinterpret(0xBFC1B72AD52F6000), reinterpret(0xBD2E80A41811A396),\n reinterpret(0x3FF2600000000000), 0, reinterpret(0xBFC1B72AD52F6000), reinterpret(0xBD2E80A41811A396),\n reinterpret(0x3FF2400000000000), 0, reinterpret(0xBFC0D77E7CD09000), reinterpret(0x3D0A699688E85BF4),\n reinterpret(0x3FF2400000000000), 0, reinterpret(0xBFC0D77E7CD09000), reinterpret(0x3D0A699688E85BF4),\n reinterpret(0x3FF2200000000000), 0, reinterpret(0xBFBFEC9131DBE000), reinterpret(0xBD2575545CA333F2),\n reinterpret(0x3FF2000000000000), 0, reinterpret(0xBFBE27076E2B0000), reinterpret(0x3D2A342C2AF0003C),\n reinterpret(0x3FF2000000000000), 0, reinterpret(0xBFBE27076E2B0000), reinterpret(0x3D2A342C2AF0003C),\n reinterpret(0x3FF1E00000000000), 0, reinterpret(0xBFBC5E548F5BC000), reinterpret(0xBD1D0C57585FBE06),\n reinterpret(0x3FF1C00000000000), 0, reinterpret(0xBFBA926D3A4AE000), reinterpret(0x3D253935E85BAAC8),\n reinterpret(0x3FF1C00000000000), 0, reinterpret(0xBFBA926D3A4AE000), reinterpret(0x3D253935E85BAAC8),\n reinterpret(0x3FF1A00000000000), 0, reinterpret(0xBFB8C345D631A000), reinterpret(0x3D137C294D2F5668),\n reinterpret(0x3FF1A00000000000), 0, reinterpret(0xBFB8C345D631A000), reinterpret(0x3D137C294D2F5668),\n reinterpret(0x3FF1800000000000), 0, reinterpret(0xBFB6F0D28AE56000), reinterpret(0xBD269737C93373DA),\n reinterpret(0x3FF1600000000000), 0, reinterpret(0xBFB51B073F062000), reinterpret(0x3D1F025B61C65E57),\n reinterpret(0x3FF1600000000000), 0, reinterpret(0xBFB51B073F062000), reinterpret(0x3D1F025B61C65E57),\n reinterpret(0x3FF1400000000000), 0, reinterpret(0xBFB341D7961BE000), reinterpret(0x3D2C5EDACCF913DF),\n reinterpret(0x3FF1400000000000), 0, reinterpret(0xBFB341D7961BE000), reinterpret(0x3D2C5EDACCF913DF),\n reinterpret(0x3FF1200000000000), 0, reinterpret(0xBFB16536EEA38000), reinterpret(0x3D147C5E768FA309),\n reinterpret(0x3FF1000000000000), 0, reinterpret(0xBFAF0A30C0118000), reinterpret(0x3D2D599E83368E91),\n reinterpret(0x3FF1000000000000), 0, reinterpret(0xBFAF0A30C0118000), reinterpret(0x3D2D599E83368E91),\n reinterpret(0x3FF0E00000000000), 0, reinterpret(0xBFAB42DD71198000), reinterpret(0x3D1C827AE5D6704C),\n reinterpret(0x3FF0E00000000000), 0, reinterpret(0xBFAB42DD71198000), reinterpret(0x3D1C827AE5D6704C),\n reinterpret(0x3FF0C00000000000), 0, reinterpret(0xBFA77458F632C000), reinterpret(0xBD2CFC4634F2A1EE),\n reinterpret(0x3FF0C00000000000), 0, reinterpret(0xBFA77458F632C000), reinterpret(0xBD2CFC4634F2A1EE),\n reinterpret(0x3FF0A00000000000), 0, reinterpret(0xBFA39E87B9FEC000), reinterpret(0x3CF502B7F526FEAA),\n reinterpret(0x3FF0A00000000000), 0, reinterpret(0xBFA39E87B9FEC000), reinterpret(0x3CF502B7F526FEAA),\n reinterpret(0x3FF0800000000000), 0, reinterpret(0xBF9F829B0E780000), reinterpret(0xBD2980267C7E09E4),\n reinterpret(0x3FF0800000000000), 0, reinterpret(0xBF9F829B0E780000), reinterpret(0xBD2980267C7E09E4),\n reinterpret(0x3FF0600000000000), 0, reinterpret(0xBF97B91B07D58000), reinterpret(0xBD288D5493FAA639),\n reinterpret(0x3FF0400000000000), 0, reinterpret(0xBF8FC0A8B0FC0000), reinterpret(0xBCDF1E7CF6D3A69C),\n reinterpret(0x3FF0400000000000), 0, reinterpret(0xBF8FC0A8B0FC0000), reinterpret(0xBCDF1E7CF6D3A69C),\n reinterpret(0x3FF0200000000000), 0, reinterpret(0xBF7FE02A6B100000), reinterpret(0xBD19E23F0DDA40E4),\n reinterpret(0x3FF0200000000000), 0, reinterpret(0xBF7FE02A6B100000), reinterpret(0xBD19E23F0DDA40E4),\n reinterpret(0x3FF0000000000000), 0, 0, 0,\n reinterpret(0x3FF0000000000000), 0, 0, 0,\n reinterpret(0x3FEFC00000000000), 0, reinterpret(0x3F80101575890000), reinterpret(0xBD10C76B999D2BE8),\n reinterpret(0x3FEF800000000000), 0, reinterpret(0x3F90205658938000), reinterpret(0xBD23DC5B06E2F7D2),\n reinterpret(0x3FEF400000000000), 0, reinterpret(0x3F98492528C90000), reinterpret(0xBD2AA0BA325A0C34),\n reinterpret(0x3FEF000000000000), 0, reinterpret(0x3FA0415D89E74000), reinterpret(0x3D0111C05CF1D753),\n reinterpret(0x3FEEC00000000000), 0, reinterpret(0x3FA466AED42E0000), reinterpret(0xBD2C167375BDFD28),\n reinterpret(0x3FEE800000000000), 0, reinterpret(0x3FA894AA149FC000), reinterpret(0xBD197995D05A267D),\n reinterpret(0x3FEE400000000000), 0, reinterpret(0x3FACCB73CDDDC000), reinterpret(0xBD1A68F247D82807),\n reinterpret(0x3FEE200000000000), 0, reinterpret(0x3FAEEA31C006C000), reinterpret(0xBD0E113E4FC93B7B),\n reinterpret(0x3FEDE00000000000), 0, reinterpret(0x3FB1973BD1466000), reinterpret(0xBD25325D560D9E9B),\n reinterpret(0x3FEDA00000000000), 0, reinterpret(0x3FB3BDF5A7D1E000), reinterpret(0x3D2CC85EA5DB4ED7),\n reinterpret(0x3FED600000000000), 0, reinterpret(0x3FB5E95A4D97A000), reinterpret(0xBD2C69063C5D1D1E),\n reinterpret(0x3FED400000000000), 0, reinterpret(0x3FB700D30AEAC000), reinterpret(0x3CEC1E8DA99DED32),\n reinterpret(0x3FED000000000000), 0, reinterpret(0x3FB9335E5D594000), reinterpret(0x3D23115C3ABD47DA),\n reinterpret(0x3FECC00000000000), 0, reinterpret(0x3FBB6AC88DAD6000), reinterpret(0xBD1390802BF768E5),\n reinterpret(0x3FECA00000000000), 0, reinterpret(0x3FBC885801BC4000), reinterpret(0x3D2646D1C65AACD3),\n reinterpret(0x3FEC600000000000), 0, reinterpret(0x3FBEC739830A2000), reinterpret(0xBD2DC068AFE645E0),\n reinterpret(0x3FEC400000000000), 0, reinterpret(0x3FBFE89139DBE000), reinterpret(0xBD2534D64FA10AFD),\n reinterpret(0x3FEC000000000000), 0, reinterpret(0x3FC1178E8227E000), reinterpret(0x3D21EF78CE2D07F2),\n reinterpret(0x3FEBE00000000000), 0, reinterpret(0x3FC1AA2B7E23F000), reinterpret(0x3D2CA78E44389934),\n reinterpret(0x3FEBA00000000000), 0, reinterpret(0x3FC2D1610C868000), reinterpret(0x3D039D6CCB81B4A1),\n reinterpret(0x3FEB800000000000), 0, reinterpret(0x3FC365FCB0159000), reinterpret(0x3CC62FA8234B7289),\n reinterpret(0x3FEB400000000000), 0, reinterpret(0x3FC4913D8333B000), reinterpret(0x3D25837954FDB678),\n reinterpret(0x3FEB200000000000), 0, reinterpret(0x3FC527E5E4A1B000), reinterpret(0x3D2633E8E5697DC7),\n reinterpret(0x3FEAE00000000000), 0, reinterpret(0x3FC6574EBE8C1000), reinterpret(0x3D19CF8B2C3C2E78),\n reinterpret(0x3FEAC00000000000), 0, reinterpret(0x3FC6F0128B757000), reinterpret(0xBD25118DE59C21E1),\n reinterpret(0x3FEAA00000000000), 0, reinterpret(0x3FC7898D85445000), reinterpret(0xBD1C661070914305),\n reinterpret(0x3FEA600000000000), 0, reinterpret(0x3FC8BEAFEB390000), reinterpret(0xBD073D54AAE92CD1),\n reinterpret(0x3FEA400000000000), 0, reinterpret(0x3FC95A5ADCF70000), reinterpret(0x3D07F22858A0FF6F),\n reinterpret(0x3FEA000000000000), 0, reinterpret(0x3FCA93ED3C8AE000), reinterpret(0xBD28724350562169),\n reinterpret(0x3FE9E00000000000), 0, reinterpret(0x3FCB31D8575BD000), reinterpret(0xBD0C358D4EACE1AA),\n reinterpret(0x3FE9C00000000000), 0, reinterpret(0x3FCBD087383BE000), reinterpret(0xBD2D4BC4595412B6),\n reinterpret(0x3FE9A00000000000), 0, reinterpret(0x3FCC6FFBC6F01000), reinterpret(0xBCF1EC72C5962BD2),\n reinterpret(0x3FE9600000000000), 0, reinterpret(0x3FCDB13DB0D49000), reinterpret(0xBD2AFF2AF715B035),\n reinterpret(0x3FE9400000000000), 0, reinterpret(0x3FCE530EFFE71000), reinterpret(0x3CC212276041F430),\n reinterpret(0x3FE9200000000000), 0, reinterpret(0x3FCEF5ADE4DD0000), reinterpret(0xBCCA211565BB8E11),\n reinterpret(0x3FE9000000000000), 0, reinterpret(0x3FCF991C6CB3B000), reinterpret(0x3D1BCBECCA0CDF30),\n reinterpret(0x3FE8C00000000000), 0, reinterpret(0x3FD07138604D5800), reinterpret(0x3CF89CDB16ED4E91),\n reinterpret(0x3FE8A00000000000), 0, reinterpret(0x3FD0C42D67616000), reinterpret(0x3D27188B163CEAE9),\n reinterpret(0x3FE8800000000000), 0, reinterpret(0x3FD1178E8227E800), reinterpret(0xBD2C210E63A5F01C),\n reinterpret(0x3FE8600000000000), 0, reinterpret(0x3FD16B5CCBACF800), reinterpret(0x3D2B9ACDF7A51681),\n reinterpret(0x3FE8400000000000), 0, reinterpret(0x3FD1BF99635A6800), reinterpret(0x3D2CA6ED5147BDB7),\n reinterpret(0x3FE8200000000000), 0, reinterpret(0x3FD214456D0EB800), reinterpret(0x3D0A87DEBA46BAEA),\n reinterpret(0x3FE7E00000000000), 0, reinterpret(0x3FD2BEF07CDC9000), reinterpret(0x3D2A9CFA4A5004F4),\n reinterpret(0x3FE7C00000000000), 0, reinterpret(0x3FD314F1E1D36000), reinterpret(0xBD28E27AD3213CB8),\n reinterpret(0x3FE7A00000000000), 0, reinterpret(0x3FD36B6776BE1000), reinterpret(0x3D116ECDB0F177C8),\n reinterpret(0x3FE7800000000000), 0, reinterpret(0x3FD3C25277333000), reinterpret(0x3D183B54B606BD5C),\n reinterpret(0x3FE7600000000000), 0, reinterpret(0x3FD419B423D5E800), reinterpret(0x3D08E436EC90E09D),\n reinterpret(0x3FE7400000000000), 0, reinterpret(0x3FD4718DC271C800), reinterpret(0xBD2F27CE0967D675),\n reinterpret(0x3FE7200000000000), 0, reinterpret(0x3FD4C9E09E173000), reinterpret(0xBD2E20891B0AD8A4),\n reinterpret(0x3FE7000000000000), 0, reinterpret(0x3FD522AE0738A000), reinterpret(0x3D2EBE708164C759),\n reinterpret(0x3FE6E00000000000), 0, reinterpret(0x3FD57BF753C8D000), reinterpret(0x3D1FADEDEE5D40EF),\n reinterpret(0x3FE6C00000000000), 0, reinterpret(0x3FD5D5BDDF596000), reinterpret(0xBD0A0B2A08A465DC)\n]);\n\n// Returns 0 if not int, 1 if odd int, 2 if even int. The argument is\n// the bit representation of a non-zero finite floating-point value.\n// @ts-ignore: decorator\n@inline\nfunction checkint(iy: u64): i32 {\n var e = iy >> 52 & 0x7FF;\n if (e < 0x3FF ) return 0;\n if (e > 0x3FF + 52) return 2;\n e = u64(1) << (0x3FF + 52 - e);\n if (iy & (e - 1)) return 0;\n if (iy & e ) return 1;\n return 2;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction xflow(sign: u32, y: f64): f64 {\n return select(-y, y, sign) * y;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction uflow(sign: u32): f64 {\n return xflow(sign, reinterpret(0x1000000000000000)); // 0x1p-767\n}\n\n// @ts-ignore: decorator\n@inline\nfunction oflow(sign: u32): f64 {\n return xflow(sign, reinterpret(0x7000000000000000)); // 0x1p769\n}\n\n// Returns 1 if input is the bit representation of 0, infinity or nan.\n// @ts-ignore: decorator\n@inline\nfunction zeroinfnan(u: u64): bool {\n return (u << 1) - 1 >= 0xFFE0000000000000 - 1;\n}\n\n// @ts-ignore: decorator\n@lazy var log_tail: f64 = 0;\n\n// Compute y+TAIL = log(x) where the rounded result is y and TAIL has about\n// additional 15 bits precision. IX is the bit representation of x, but\n// normalized in the subnormal range using the sign bit for the exponent.\n// @ts-ignore: decorator\n@inline\nfunction log_inline(ix: u64): f64 {\n const N = 1 << POW_LOG_TABLE_BITS;\n const N_MASK = N - 1;\n\n const\n Ln2hi = reinterpret(0x3FE62E42FEFA3800),\n Ln2lo = reinterpret(0x3D2EF35793C76730);\n\n const\n A0 = reinterpret(0xBFE0000000000000),\n A1 = reinterpret(0xBFE5555555555560),\n A2 = reinterpret(0x3FE0000000000006),\n A3 = reinterpret(0x3FE999999959554E),\n A4 = reinterpret(0xBFE555555529A47A),\n A5 = reinterpret(0xBFF2495B9B4845E9),\n A6 = reinterpret(0x3FF0002B8B263FC3);\n\n // x = 2^k z; where z is in range [OFF,2*OFF) and exact.\n // The range is split into N subintervals.\n // The ith subinterval contains z and c is near its center.\n var tmp = ix - 0x3fE6955500000000;\n var i = usize((tmp >> (52 - POW_LOG_TABLE_BITS)) & N_MASK);\n var k = tmp >> 52;\n var iz = ix - (tmp & u64(0xFFF) << 52);\n var z = reinterpret(iz);\n var kd = k;\n\n // log(x) = k*Ln2 + log(c) + log1p(z/c-1).\n var invc = load(POW_LOG_DATA_TAB + (i << (2 + alignof())), 0 << alignof()); // tab[i].invc\n var logc = load(POW_LOG_DATA_TAB + (i << (2 + alignof())), 2 << alignof()); // tab[i].logc\n var logctail = load(POW_LOG_DATA_TAB + (i << (2 + alignof())), 3 << alignof()); // tab[i].logctail\n\n // Note: 1/c is j/N or j/N/2 where j is an integer in [N,2N) and\n // |z/c - 1| < 1/N, so r = z/c - 1 is exactly representible.\n // Split z such that rhi, rlo and rhi*rhi are exact and |rlo| <= |r|.\n var zhi = reinterpret((iz + u64(0x80000000)) & 0xFFFFFFFF00000000);\n var zlo = z - zhi;\n var rhi = zhi * invc - 1.0;\n var rlo = zlo * invc;\n var r = rhi + rlo;\n\n // k * Ln2 + log(c) + r.\n var t1 = kd * Ln2hi + logc;\n var t2 = t1 + r;\n var lo1 = kd * Ln2lo + logctail;\n var lo2 = t1 - t2 + r;\n\n // Evaluation is optimized assuming superscalar pipelined execution.\n var ar = A0 * r; // A[0] = -0.5\n var ar2 = r * ar;\n var ar3 = r * ar2;\n // k * Ln2 + log(c) + r + A[0] * r * r.\n var arhi = A0 * rhi;\n var arhi2 = rhi * arhi;\n var hi = t2 + arhi2;\n var lo3 = rlo * (ar + arhi);\n var lo4 = t2 - hi + arhi2;\n\n // p = log1p(r) - r - A[0] * r * r.\n var p = ar3 * (A1 + r * A2 + ar2 * (A3 + r * A4 + ar2 * (A5 + r * A6)));\n var lo = lo1 + lo2 + lo3 + lo4 + p;\n var y = hi + lo;\n log_tail = hi - y + lo;\n\n return y;\n}\n\n// @ts-ignore: decorator\n@inline const SIGN_BIAS = 0x800 << EXP_TABLE_BITS;\n\n// Computes sign*exp(x+xtail) where |xtail| < 2^-8/N and |xtail| <= |x|.\n// The sign_bias argument is SIGN_BIAS or 0 and sets the sign to -1 or 1.\n// @ts-ignore: decorator\n@inline\nfunction exp_inline(x: f64, xtail: f64, sign_bias: u32): f64 {\n const N = 1 << EXP_TABLE_BITS;\n const N_MASK = N - 1;\n\n const\n InvLn2N = reinterpret(0x3FF71547652B82FE) * N, // 0x1.71547652b82fep0\n NegLn2hiN = reinterpret(0xBF762E42FEFA0000), // -0x1.62e42fefa0000p-8\n NegLn2loN = reinterpret(0xBD0CF79ABC9E3B3A), // -0x1.cf79abc9e3b3ap-47\n shift = reinterpret(0x4338000000000000); // 0x1.8p52\n\n const\n C2 = reinterpret(0x3FDFFFFFFFFFFDBD), // __exp_data.poly[0] (0x1.ffffffffffdbdp-2)\n C3 = reinterpret(0x3FC555555555543C), // __exp_data.poly[1] (0x1.555555555543cp-3)\n C4 = reinterpret(0x3FA55555CF172B91), // __exp_data.poly[2] (0x1.55555cf172b91p-5)\n C5 = reinterpret(0x3F81111167A4D017); // __exp_data.poly[3] (0x1.1111167a4d017p-7)\n\n var abstop: u32;\n var ki: u64, top: u64, sbits: u64;\n var idx: usize;\n // double_t for better performance on targets with FLT_EVAL_METHOD==2.\n var kd: f64, z: f64, r: f64, r2: f64, scale: f64, tail: f64, tmp: f64;\n\n var ux = reinterpret(x);\n abstop = u32(ux >> 52) & 0x7FF;\n if (abstop - 0x3C9 >= 0x03F) {\n if (abstop - 0x3C9 >= 0x80000000) {\n // Avoid spurious underflow for tiny x.\n // Note: 0 is common input.\n return select(-1.0, 1.0, sign_bias);\n }\n if (abstop >= 0x409) { // top12(1024.0)\n // Note: inf and nan are already handled.\n return ux < 0\n ? uflow(sign_bias)\n : oflow(sign_bias);\n }\n // Large x is special cased below.\n abstop = 0;\n }\n\n // exp(x) = 2^(k/N) * exp(r), with exp(r) in [2^(-1/2N),2^(1/2N)].\n // x = ln2/N*k + r, with int k and r in [-ln2/2N, ln2/2N].\n z = InvLn2N * x;\n\n // #if TOINT_INTRINSICS\n // kd = roundtoint(z);\n // ki = converttoint(z);\n // #elif EXP_USE_TOINT_NARROW\n // // z - kd is in [-0.5-2^-16, 0.5] in all rounding modes.\n // kd = eval_as_double(z + shift);\n // ki = asuint64(kd) >> 16;\n // kd = (double_t)(int32_t)ki;\n // #else\n // z - kd is in [-1, 1] in non-nearest rounding modes\n kd = z + shift;\n ki = reinterpret(kd);\n kd -= shift;\n // #endif\n r = x + kd * NegLn2hiN + kd * NegLn2loN;\n // The code assumes 2^-200 < |xtail| < 2^-8/N\n r += xtail;\n // 2^(k/N) ~= scale * (1 + tail)\n idx = usize((ki & N_MASK) << 1);\n top = (ki + sign_bias) << (52 - EXP_TABLE_BITS);\n\n tail = reinterpret(load(EXP_DATA_TAB + (idx << alignof())));\n // This is only a valid scale when -1023*N < k < 1024*N\n sbits = load(EXP_DATA_TAB + (idx << alignof()), 1 << alignof()) + top;\n // exp(x) = 2^(k/N) * exp(r) ~= scale + scale * (tail + exp(r) - 1).\n // Evaluation is optimized assuming superscalar pipelined execution.\n r2 = r * r;\n // Without fma the worst case error is 0.25/N ulp larger.\n // Worst case error is less than 0.5+1.11/N+(abs poly error * 2^53) ulp\n tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);\n if (abstop == 0) return specialcase(tmp, sbits, ki);\n scale = reinterpret(sbits);\n // Note: tmp == 0 or |tmp| > 2^-200 and scale > 2^-739, so there\n // is no spurious underflow here even without fma.\n return scale + scale * tmp;\n}\n\n// @ts-ignore: decorator\n@inline\nexport function pow_lut(x: f64, y: f64): f64 {\n const Ox1p52 = reinterpret(0x4330000000000000); // 0x1p52\n\n var sign_bias: u32 = 0;\n var ix = reinterpret(x);\n var iy = reinterpret(y);\n var topx = ix >> 52;\n var topy = iy >> 52;\n\n if (topx - 0x001 >= 0x7FF - 0x001 || (topy & 0x7FF) - 0x3BE >= 0x43e - 0x3BE) {\n // Note: if |y| > 1075 * ln2 * 2^53 ~= 0x1.749p62 then pow(x,y) = inf/0\n // and if |y| < 2^-54 / 1075 ~= 0x1.e7b6p-65 then pow(x,y) = +-1.\n // Special cases: (x < 0x1p-126 or inf or nan) or\n // (|y| < 0x1p-65 or |y| >= 0x1p63 or nan).\n if (zeroinfnan(iy)) {\n if ((iy << 1) == 0) return 1.0;\n if (ix == 0x3FF0000000000000) return NaN; // original: 1.0\n if ((ix << 1) > 0xFFE0000000000000 || (iy << 1) > 0xFFE0000000000000) return x + y;\n if ((ix << 1) == 0x7FE0000000000000) return NaN; // original: 1.0\n if (((ix << 1) < 0x7FE0000000000000) == !(iy >> 63)) return 0; // |x|<1 && y==inf or |x|>1 && y==-inf.\n return y * y;\n }\n if (zeroinfnan(ix)) {\n let x2 = x * x;\n if (i32(ix >> 63) && checkint(iy) == 1) x2 = -x2;\n return iy < 0 ? 1 / x2 : x2;\n }\n // Here x and y are non-zero finite\n if (ix < 0) {\n // Finite x < 0\n let yint = checkint(iy);\n if (yint == 0) return (x - x) / (x - x);\n if (yint == 1) sign_bias = SIGN_BIAS;\n ix &= 0x7FFFFFFFFFFFFFFF;\n topx &= 0x7FF;\n }\n if ((topy & 0x7FF) - 0x3BE >= 0x43E - 0x3BE) {\n // Note: sign_bias == 0 here because y is not odd.\n if (ix == 0x3FF0000000000000) return 1;\n if ((topy & 0x7FF) < 0x3BE) return 1; // |y| < 2^-65, x^y ~= 1 + y*log(x).\n return (ix > 0x3FF0000000000000) == (topy < 0x800) ? Infinity : 0;\n }\n if (topx == 0) {\n // Normalize subnormal x so exponent becomes negative.\n ix = reinterpret(x * Ox1p52);\n ix &= 0x7FFFFFFFFFFFFFFF;\n ix -= u64(52) << 52;\n }\n }\n\n var hi = log_inline(ix);\n var lo = log_tail;\n var ehi: f64, elo: f64;\n // #if __FP_FAST_FMA\n // ehi = y * hi;\n // elo = y * lo + __builtin_fma(y, hi, -ehi);\n // #else\n var yhi = reinterpret(iy & 0xFFFFFFFFF8000000);\n var ylo = y - yhi;\n var lhi = reinterpret(reinterpret(hi) & 0xFFFFFFFFF8000000);\n var llo = hi - lhi + lo;\n ehi = yhi * lhi;\n elo = ylo * lhi + y * llo; // |elo| < |ehi| * 2^-25.\n // #endif\n return exp_inline(ehi, elo, sign_bias);\n}\n","/// \n\nimport { idof } from \"../builtins\";\nimport { CharCode } from \"./string\";\n\n// @ts-ignore: decorator\n@inline\nexport const MAX_DOUBLE_LENGTH = 28;\n\n// @ts-ignore: decorator\n@lazy @inline const POWERS10 = memory.data([\n 1,\n 10,\n 100,\n 1000,\n 10000,\n 100000,\n 1000000,\n 10000000,\n 100000000,\n 1000000000\n]);\n\n/*\n Lookup table for pairwise char codes in range [0-99]\n\n \"00\", \"01\", \"02\", \"03\", \"04\", \"05\", \"06\", \"07\", \"08\", \"09\",\n \"10\", \"11\", \"12\", \"13\", \"14\", \"15\", \"16\", \"17\", \"18\", \"19\",\n \"20\", \"21\", \"22\", \"23\", \"24\", \"25\", \"26\", \"27\", \"28\", \"29\",\n \"30\", \"31\", \"32\", \"33\", \"34\", \"35\", \"36\", \"37\", \"38\", \"39\",\n \"40\", \"41\", \"42\", \"43\", \"44\", \"45\", \"46\", \"47\", \"48\", \"49\",\n \"50\", \"51\", \"52\", \"53\", \"54\", \"55\", \"56\", \"57\", \"58\", \"59\",\n \"60\", \"61\", \"62\", \"63\", \"64\", \"65\", \"66\", \"67\", \"68\", \"69\",\n \"70\", \"71\", \"72\", \"73\", \"74\", \"75\", \"76\", \"77\", \"78\", \"79\",\n \"80\", \"81\", \"82\", \"83\", \"84\", \"85\", \"86\", \"87\", \"88\", \"89\",\n \"90\", \"91\", \"92\", \"93\", \"94\", \"95\", \"96\", \"97\", \"98\", \"99\"\n*/\n// @ts-ignore: decorator\n@lazy @inline const DIGITS = memory.data([\n 0x00300030, 0x00310030, 0x00320030, 0x00330030, 0x00340030,\n 0x00350030, 0x00360030, 0x00370030, 0x00380030, 0x00390030,\n 0x00300031, 0x00310031, 0x00320031, 0x00330031, 0x00340031,\n 0x00350031, 0x00360031, 0x00370031, 0x00380031, 0x00390031,\n 0x00300032, 0x00310032, 0x00320032, 0x00330032, 0x00340032,\n 0x00350032, 0x00360032, 0x00370032, 0x00380032, 0x00390032,\n 0x00300033, 0x00310033, 0x00320033, 0x00330033, 0x00340033,\n 0x00350033, 0x00360033, 0x00370033, 0x00380033, 0x00390033,\n 0x00300034, 0x00310034, 0x00320034, 0x00330034, 0x00340034,\n 0x00350034, 0x00360034, 0x00370034, 0x00380034, 0x00390034,\n 0x00300035, 0x00310035, 0x00320035, 0x00330035, 0x00340035,\n 0x00350035, 0x00360035, 0x00370035, 0x00380035, 0x00390035,\n 0x00300036, 0x00310036, 0x00320036, 0x00330036, 0x00340036,\n 0x00350036, 0x00360036, 0x00370036, 0x00380036, 0x00390036,\n 0x00300037, 0x00310037, 0x00320037, 0x00330037, 0x00340037,\n 0x00350037, 0x00360037, 0x00370037, 0x00380037, 0x00390037,\n 0x00300038, 0x00310038, 0x00320038, 0x00330038, 0x00340038,\n 0x00350038, 0x00360038, 0x00370038, 0x00380038, 0x00390038,\n 0x00300039, 0x00310039, 0x00320039, 0x00330039, 0x00340039,\n 0x00350039, 0x00360039, 0x00370039, 0x00380039, 0x00390039\n]);\n\n// Lookup table for pairwise char codes in range [0x00-0xFF]\n// @ts-ignore: decorator\n@lazy @inline const HEX_DIGITS =\n\"000102030405060708090a0b0c0d0e0f\\\n101112131415161718191a1b1c1d1e1f\\\n202122232425262728292a2b2c2d2e2f\\\n303132333435363738393a3b3c3d3e3f\\\n404142434445464748494a4b4c4d4e4f\\\n505152535455565758595a5b5c5d5e5f\\\n606162636465666768696a6b6c6d6e6f\\\n707172737475767778797a7b7c7d7e7f\\\n808182838485868788898a8b8c8d8e8f\\\n909192939495969798999a9b9c9d9e9f\\\na0a1a2a3a4a5a6a7a8a9aaabacadaeaf\\\nb0b1b2b3b4b5b6b7b8b9babbbcbdbebf\\\nc0c1c2c3c4c5c6c7c8c9cacbcccdcecf\\\nd0d1d2d3d4d5d6d7d8d9dadbdcdddedf\\\ne0e1e2e3e4e5e6e7e8e9eaebecedeeef\\\nf0f1f2f3f4f5f6f7f8f9fafbfcfdfeff\";\n\n// @ts-ignore: decorator\n@lazy @inline const ANY_DIGITS = \"0123456789abcdefghijklmnopqrstuvwxyz\";\n\n// @ts-ignore: decorator\n@lazy @inline const EXP_POWERS = memory.data([/* eslint-disable indent */\n -1220, -1193, -1166, -1140, -1113, -1087, -1060, -1034, -1007, -980,\n -954, -927, -901, -874, -847, -821, -794, -768, -741, -715,\n -688, -661, -635, -608, -582, -555, -529, -502, -475, -449,\n -422, -396, -369, -343, -316, -289, -263, -236, -210, -183,\n -157, -130, -103, -77, -50, -24, 3, 30, 56, 83,\n 109, 136, 162, 189, 216, 242, 269, 295, 322, 348,\n 375, 402, 428, 455, 481, 508, 534, 561, 588, 614,\n 641, 667, 694, 720, 747, 774, 800, 827, 853, 880,\n 907, 933, 960, 986, 1013, 1039, 1066\n/* eslint-enable indent */]);\n\n// 1e-348, 1e-340, ..., 1e340\n// @ts-ignore: decorator\n@lazy @inline const FRC_POWERS = memory.data([\n 0xFA8FD5A0081C0288, 0xBAAEE17FA23EBF76, 0x8B16FB203055AC76, 0xCF42894A5DCE35EA,\n 0x9A6BB0AA55653B2D, 0xE61ACF033D1A45DF, 0xAB70FE17C79AC6CA, 0xFF77B1FCBEBCDC4F,\n 0xBE5691EF416BD60C, 0x8DD01FAD907FFC3C, 0xD3515C2831559A83, 0x9D71AC8FADA6C9B5,\n 0xEA9C227723EE8BCB, 0xAECC49914078536D, 0x823C12795DB6CE57, 0xC21094364DFB5637,\n 0x9096EA6F3848984F, 0xD77485CB25823AC7, 0xA086CFCD97BF97F4, 0xEF340A98172AACE5,\n 0xB23867FB2A35B28E, 0x84C8D4DFD2C63F3B, 0xC5DD44271AD3CDBA, 0x936B9FCEBB25C996,\n 0xDBAC6C247D62A584, 0xA3AB66580D5FDAF6, 0xF3E2F893DEC3F126, 0xB5B5ADA8AAFF80B8,\n 0x87625F056C7C4A8B, 0xC9BCFF6034C13053, 0x964E858C91BA2655, 0xDFF9772470297EBD,\n 0xA6DFBD9FB8E5B88F, 0xF8A95FCF88747D94, 0xB94470938FA89BCF, 0x8A08F0F8BF0F156B,\n 0xCDB02555653131B6, 0x993FE2C6D07B7FAC, 0xE45C10C42A2B3B06, 0xAA242499697392D3,\n 0xFD87B5F28300CA0E, 0xBCE5086492111AEB, 0x8CBCCC096F5088CC, 0xD1B71758E219652C,\n 0x9C40000000000000, 0xE8D4A51000000000, 0xAD78EBC5AC620000, 0x813F3978F8940984,\n 0xC097CE7BC90715B3, 0x8F7E32CE7BEA5C70, 0xD5D238A4ABE98068, 0x9F4F2726179A2245,\n 0xED63A231D4C4FB27, 0xB0DE65388CC8ADA8, 0x83C7088E1AAB65DB, 0xC45D1DF942711D9A,\n 0x924D692CA61BE758, 0xDA01EE641A708DEA, 0xA26DA3999AEF774A, 0xF209787BB47D6B85,\n 0xB454E4A179DD1877, 0x865B86925B9BC5C2, 0xC83553C5C8965D3D, 0x952AB45CFA97A0B3,\n 0xDE469FBD99A05FE3, 0xA59BC234DB398C25, 0xF6C69A72A3989F5C, 0xB7DCBF5354E9BECE,\n 0x88FCF317F22241E2, 0xCC20CE9BD35C78A5, 0x98165AF37B2153DF, 0xE2A0B5DC971F303A,\n 0xA8D9D1535CE3B396, 0xFB9B7CD9A4A7443C, 0xBB764C4CA7A44410, 0x8BAB8EEFB6409C1A,\n 0xD01FEF10A657842C, 0x9B10A4E5E9913129, 0xE7109BFBA19C0C9D, 0xAC2820D9623BF429,\n 0x80444B5E7AA7CF85, 0xBF21E44003ACDD2D, 0x8E679C2F5E44FF8F, 0xD433179D9C8CB841,\n 0x9E19DB92B4E31BA9, 0xEB96BF6EBADF77D9, 0xAF87023B9BF0EE6B\n]);\n\n// @ts-ignore: decorator\n@inline\nexport function isPowerOf2(value: T): bool {\n return popcnt(value) == 1;\n}\n\n// Count number of decimals for u32 values\n// In our case input value always non-zero so we can simplify some parts\nexport function decimalCount32(value: u32): u32 {\n if (value < 100000) {\n if (value < 100) {\n return 1 + u32(value >= 10);\n } else {\n return 3 + u32(value >= 10000) + u32(value >= 1000);\n }\n } else {\n if (value < 10000000) {\n return 6 + u32(value >= 1000000);\n } else {\n return 8 + u32(value >= 1000000000) + u32(value >= 100000000);\n }\n }\n}\n\n// Count number of decimals for u64 values\n// In our case input value always greater than 2^32-1 so we can skip some parts\nexport function decimalCount64High(value: u64): u32 {\n if (value < 1000000000000000) {\n if (value < 1000000000000) {\n return 10 + u32(value >= 100000000000) + u32(value >= 10000000000);\n } else {\n return 13 + u32(value >= 100000000000000) + u32(value >= 10000000000000);\n }\n } else {\n if (value < 100000000000000000) {\n return 16 + u32(value >= 10000000000000000);\n } else {\n return 18 + u32(value >= 10000000000000000000) + u32(value >= 1000000000000000000);\n }\n }\n}\n\nfunction ulog_base(num: u64, base: i32): u32 {\n if (isPowerOf2(base)) {\n return (63 - clz(num)) / (31 - clz(base)) + 1;\n }\n var b64 = u64(base), b = b64, e: u32 = 1;\n while (num >= b) {\n num /= b;\n b *= b;\n e <<= 1;\n }\n while (num >= 1) {\n num /= b64;\n e++;\n }\n return e - 1;\n}\n\nfunction utoa32_dec_lut(buffer: usize, num: u32, offset: usize): void {\n while (num >= 10000) {\n // in most VMs i32/u32 div and modulo by constant can be shared and simplificate\n let t = num / 10000;\n let r = num % 10000;\n num = t;\n\n let d1 = r / 100;\n let d2 = r % 100;\n\n let digits1 = load(DIGITS + (d1 << alignof()));\n let digits2 = load(DIGITS + (d2 << alignof()));\n\n offset -= 4;\n store(buffer + (offset << 1), digits1 | (digits2 << 32));\n }\n\n if (num >= 100) {\n let t = num / 100;\n let d1 = num % 100;\n num = t;\n offset -= 2;\n let digits = load(DIGITS + (d1 << alignof()));\n store(buffer + (offset << 1), digits);\n }\n\n if (num >= 10) {\n offset -= 2;\n let digits = load(DIGITS + (num << alignof()));\n store(buffer + (offset << 1), digits);\n } else {\n offset -= 1;\n let digit = CharCode._0 + num;\n store(buffer + (offset << 1), digit);\n }\n}\n\nfunction utoa64_dec_lut(buffer: usize, num: u64, offset: usize): void {\n while (num >= 100000000) {\n let t = num / 100000000;\n let r = (num - t * 100000000);\n num = t;\n\n let b = r / 10000;\n let c = r % 10000;\n\n let b1 = b / 100;\n let b2 = b % 100;\n let c1 = c / 100;\n let c2 = c % 100;\n\n let digits1 = load(DIGITS + (c1 << alignof()));\n let digits2 = load(DIGITS + (c2 << alignof()));\n\n offset -= 4;\n store(buffer + (offset << 1), digits1 | (digits2 << 32));\n\n digits1 = load(DIGITS + (b1 << alignof()));\n digits2 = load(DIGITS + (b2 << alignof()));\n\n offset -= 4;\n store(buffer + (offset << 1), digits1 | (digits2 << 32));\n }\n\n utoa32_dec_lut(buffer, num, offset);\n}\n\nfunction utoa_hex_lut(buffer: usize, num: u64, offset: usize): void {\n const lut = changetype(HEX_DIGITS);\n while (offset >= 2) {\n offset -= 2;\n store(\n buffer + (offset << 1),\n load(lut + ((num & 0xFF) << alignof()))\n );\n num >>= 8;\n }\n if (offset & 1) {\n store(buffer, load(lut + (num << 6)));\n }\n}\n\nfunction utoa_dec_simple(buffer: usize, num: T, offset: usize): void {\n do {\n let t = num / 10;\n let r = (num % 10);\n num = changetype(t);\n offset--;\n store(buffer + (offset << 1), CharCode._0 + r);\n } while (num);\n}\n\nfunction utoa_hex_simple(buffer: usize, num: T, offset: usize): void {\n do {\n let d = num & 0x0F | CharCode._0;\n d += select(0x27, 0, d > CharCode._9);\n offset--;\n store(buffer + (offset << 1), d);\n // @ts-ignore: type\n num >>= 4;\n } while (num);\n}\n\n// @ts-ignore: decorator\n@inline\nexport function utoa32_dec_core(buffer: usize, num: u32, offset: usize): void {\n if (ASC_SHRINK_LEVEL >= 1) {\n utoa_dec_simple(buffer, num, offset);\n } else {\n utoa32_dec_lut(buffer, num, offset);\n }\n}\n\n// @ts-ignore: decorator\n@inline\nfunction utoa32_hex_core(buffer: usize, num: u32, offset: usize): void {\n if (ASC_SHRINK_LEVEL >= 1) {\n utoa_hex_simple(buffer, num, offset);\n } else {\n utoa_hex_lut(buffer, num, offset);\n }\n}\n\n// @ts-ignore: decorator\n@inline\nfunction utoa64_dec_core(buffer: usize, num: u64, offset: usize): void {\n if (ASC_SHRINK_LEVEL >= 1) {\n utoa_dec_simple(buffer, num, offset);\n } else {\n utoa64_dec_lut(buffer, num, offset);\n }\n}\n\n// @ts-ignore: decorator\n@inline\nfunction utoa64_hex_core(buffer: usize, num: u64, offset: usize): void {\n if (ASC_SHRINK_LEVEL >= 1) {\n utoa_hex_simple(buffer, num, offset);\n } else {\n utoa_hex_lut(buffer, num, offset);\n }\n}\n\nfunction utoa64_any_core(buffer: usize, num: u64, offset: usize, radix: i32): void {\n const lut = changetype(ANY_DIGITS);\n var base = u64(radix);\n if ((radix & (radix - 1)) == 0) { // for radix which pow of two\n let shift = u64(ctz(radix) & 7);\n let mask = base - 1;\n do {\n offset--;\n store(buffer + (offset << 1), load(lut + (usize(num & mask) << 1)));\n num >>= shift;\n } while (num);\n } else {\n do {\n offset--;\n let q = num / base;\n store(buffer + (offset << 1), load(lut + (usize(num - q * base) << 1)));\n num = q;\n } while (num);\n }\n}\n\nexport function utoa32(value: u32, radix: i32): String {\n if (radix < 2 || radix > 36) {\n throw new RangeError(\"toString() radix argument must be between 2 and 36\");\n }\n if (!value) return \"0\";\n var out: String;\n\n if (radix == 10) {\n let decimals = decimalCount32(value);\n out = changetype(__new(decimals << 1, idof()));\n utoa32_dec_core(changetype(out), value, decimals);\n } else if (radix == 16) {\n let decimals = (31 - clz(value) >> 2) + 1;\n out = changetype(__new(decimals << 1, idof()));\n utoa32_hex_core(changetype(out), value, decimals);\n } else {\n let decimals = ulog_base(value, radix);\n out = changetype(__new(decimals << 1, idof()));\n utoa64_any_core(changetype(out), value, decimals, radix);\n }\n return out;\n}\n\nexport function itoa32(value: i32, radix: i32): String {\n if (radix < 2 || radix > 36) {\n throw new RangeError(\"toString() radix argument must be between 2 and 36\");\n }\n if (!value) return \"0\";\n\n var sign = (value >>> 31) << 1;\n if (sign) value = -value;\n var out: String;\n\n if (radix == 10) {\n let decimals = decimalCount32(value);\n out = changetype(__new((decimals << 1) + sign, idof()));\n utoa32_dec_core(changetype(out) + sign, value, decimals);\n } else if (radix == 16) {\n let decimals = (31 - clz(value) >> 2) + 1;\n out = changetype(__new((decimals << 1) + sign, idof()));\n utoa32_hex_core(changetype(out) + sign, value, decimals);\n } else {\n let val32 = u32(value);\n let decimals = ulog_base(val32, radix);\n out = changetype(__new((decimals << 1) + sign, idof()));\n utoa64_any_core(changetype(out) + sign, val32, decimals, radix);\n }\n if (sign) store(changetype(out), CharCode.MINUS);\n return out;\n}\n\nexport function utoa64(value: u64, radix: i32): String {\n if (radix < 2 || radix > 36) {\n throw new RangeError(\"toString() radix argument must be between 2 and 36\");\n }\n if (!value) return \"0\";\n var out: String;\n\n if (radix == 10) {\n if (value <= u32.MAX_VALUE) {\n let val32 = value;\n let decimals = decimalCount32(val32);\n out = changetype(__new(decimals << 1, idof()));\n utoa32_dec_core(changetype(out), val32, decimals);\n } else {\n let decimals = decimalCount64High(value);\n out = changetype(__new(decimals << 1, idof()));\n utoa64_dec_core(changetype(out), value, decimals);\n }\n } else if (radix == 16) {\n let decimals = (63 - u32(clz(value)) >> 2) + 1;\n out = changetype(__new(decimals << 1, idof()));\n utoa64_hex_core(changetype(out), value, decimals);\n } else {\n let decimals = ulog_base(value, radix);\n out = changetype(__new(decimals << 1, idof()));\n utoa64_any_core(changetype(out), value, decimals, radix);\n }\n return out;\n}\n\nexport function itoa64(value: i64, radix: i32): String {\n if (radix < 2 || radix > 36) {\n throw new RangeError(\"toString() radix argument must be between 2 and 36\");\n }\n if (!value) return \"0\";\n\n var sign = u32(value >>> 63) << 1;\n if (sign) value = -value;\n var out: String;\n\n if (radix == 10) {\n if (value <= u32.MAX_VALUE) {\n let val32 = value;\n let decimals = decimalCount32(val32);\n out = changetype(__new((decimals << 1) + sign, idof()));\n utoa32_dec_core(changetype(out) + sign, val32, decimals);\n } else {\n let decimals = decimalCount64High(value);\n out = changetype(__new((decimals << 1) + sign, idof()));\n utoa64_dec_core(changetype(out) + sign, value, decimals);\n }\n } else if (radix == 16) {\n let decimals = (63 - u32(clz(value)) >> 2) + 1;\n out = changetype(__new((decimals << 1) + sign, idof()));\n utoa64_hex_core(changetype(out) + sign, value, decimals);\n } else {\n let decimals = ulog_base(value, radix);\n out = changetype(__new((decimals << 1) + sign, idof()));\n utoa64_any_core(changetype(out) + sign, value, decimals, radix);\n }\n if (sign) store(changetype(out), CharCode.MINUS);\n return out;\n}\n\n// @ts-ignore: decorator\n@lazy var _K: i32 = 0;\n\n// // @ts-ignore: decorator\n// @lazy\n// var _frc: u64 = 0;\n\n// @ts-ignore: decorator\n@lazy var _exp: i32 = 0;\n\n// @ts-ignore: decorator\n@lazy var _frc_minus: u64 = 0;\n\n// @ts-ignore: decorator\n@lazy var _frc_plus: u64 = 0;\n\n// @ts-ignore: decorator\n@lazy var _frc_pow: u64 = 0;\n\n// @ts-ignore: decorator\n@lazy var _exp_pow: i32 = 0;\n\n// @ts-ignore: decorator\n@inline\nfunction umul64f(u: u64, v: u64): u64 {\n var u0 = u & 0xFFFFFFFF;\n var v0 = v & 0xFFFFFFFF;\n\n var u1 = u >> 32;\n var v1 = v >> 32;\n\n var l = u0 * v0;\n var t = u1 * v0 + (l >> 32);\n var w = u0 * v1 + (t & 0xFFFFFFFF);\n\n w += 0x7FFFFFFF; // rounding\n\n t >>= 32;\n w >>= 32;\n\n return u1 * v1 + t + w;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction umul64e(e1: i32, e2: i32): i32 {\n return e1 + e2 + 64; // where 64 is significand size\n}\n\n// @ts-ignore: decorator\n@inline\nfunction normalizedBoundaries(f: u64, e: i32): void {\n var frc = (f << 1) + 1;\n var exp = e - 1;\n var off = clz(frc);\n frc <<= off;\n exp -= off;\n\n var m = 1 + i32(f == 0x0010000000000000);\n\n _frc_plus = frc;\n _frc_minus = ((f << m) - 1) << e - m - exp;\n _exp = exp;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction grisuRound(buffer: usize, len: i32, delta: u64, rest: u64, ten_kappa: u64, wp_w: u64): void {\n var lastp = buffer + ((len - 1) << 1);\n var digit = load(lastp);\n while (\n rest < wp_w &&\n delta - rest >= ten_kappa && (\n rest + ten_kappa < wp_w ||\n wp_w - rest > rest + ten_kappa - wp_w\n )\n ) {\n --digit;\n rest += ten_kappa;\n }\n store(lastp, digit);\n}\n\n// @ts-ignore: decorator\n@inline\nfunction getCachedPower(minExp: i32): void {\n const c = reinterpret(0x3FD34413509F79FE); // 1 / lg(10) = 0.30102999566398114\n var dk = (-61 - minExp) * c + 347;\t // dk must be positive, so can do ceiling in positive\n var k = dk;\n k += i32(k != dk); // conversion with ceil\n\n var index = (k >> 3) + 1;\n _K = 348 - (index << 3);\t// decimal exponent no need lookup table\n _frc_pow = load(FRC_POWERS + (index << alignof()));\n _exp_pow = load(EXP_POWERS + (index << alignof()));\n}\n\n// @ts-ignore: decorator\n@inline\nfunction grisu2(value: f64, buffer: usize, sign: i32): i32 {\n\n // frexp routine\n var uv = reinterpret(value);\n var exp = i32((uv & 0x7FF0000000000000) >>> 52);\n var sid = uv & 0x000FFFFFFFFFFFFF;\n var frc = (u64(exp != 0) << 52) + sid;\n exp = select(exp, 1, exp) - (0x3FF + 52);\n\n normalizedBoundaries(frc, exp);\n getCachedPower(_exp);\n\n // normalize\n var off = clz(frc);\n frc <<= off;\n exp -= off;\n\n var frc_pow = _frc_pow;\n var exp_pow = _exp_pow;\n\n var w_frc = umul64f(frc, frc_pow);\n var w_exp = umul64e(exp, exp_pow);\n\n var wp_frc = umul64f(_frc_plus, frc_pow) - 1;\n var wp_exp = umul64e(_exp, exp_pow);\n\n var wm_frc = umul64f(_frc_minus, frc_pow) + 1;\n var delta = wp_frc - wm_frc;\n\n return genDigits(buffer, w_frc, w_exp, wp_frc, wp_exp, delta, sign);\n}\n\nfunction genDigits(buffer: usize, w_frc: u64, w_exp: i32, mp_frc: u64, mp_exp: i32, delta: u64, sign: i32): i32 {\n var one_exp = -mp_exp;\n var one_frc = (1) << one_exp;\n var mask = one_frc - 1;\n\n var wp_w_frc = mp_frc - w_frc;\n\n var p1 = u32(mp_frc >> one_exp);\n var p2 = mp_frc & mask;\n\n var kappa = decimalCount32(p1);\n var len = sign;\n\n while (kappa > 0) {\n let d: u32;\n switch (kappa) {\n case 10: { d = p1 / 1000000000; p1 %= 1000000000; break; }\n case 9: { d = p1 / 100000000; p1 %= 100000000; break; }\n case 8: { d = p1 / 10000000; p1 %= 10000000; break; }\n case 7: { d = p1 / 1000000; p1 %= 1000000; break; }\n case 6: { d = p1 / 100000; p1 %= 100000; break; }\n case 5: { d = p1 / 10000; p1 %= 10000; break; }\n case 4: { d = p1 / 1000; p1 %= 1000; break; }\n case 3: { d = p1 / 100; p1 %= 100; break; }\n case 2: { d = p1 / 10; p1 %= 10; break; }\n case 1: { d = p1; p1 = 0; break; }\n default: { d = 0; break; }\n }\n\n if (d | len) store(buffer + (len++ << 1), CharCode._0 + d);\n\n --kappa;\n let tmp = ((p1) << one_exp) + p2;\n if (tmp <= delta) {\n _K += kappa;\n grisuRound(buffer, len, delta, tmp, load(POWERS10 + (kappa << alignof())) << one_exp, wp_w_frc);\n return len;\n }\n }\n\n while (true) {\n p2 *= 10;\n delta *= 10;\n\n let d = p2 >> one_exp;\n if (d | len) store(buffer + (len++ << 1), CharCode._0 + d);\n\n p2 &= mask;\n --kappa;\n if (p2 < delta) {\n _K += kappa;\n wp_w_frc *= load(POWERS10 + (-kappa << alignof()));\n grisuRound(buffer, len, delta, p2, one_frc, wp_w_frc);\n return len;\n }\n }\n}\n\n// @ts-ignore: decorator\n@inline\nfunction genExponent(buffer: usize, k: i32): i32 {\n var sign = k < 0;\n if (sign) k = -k;\n var decimals = decimalCount32(k) + 1;\n utoa32_dec_core(buffer, k, decimals);\n store(buffer, select(CharCode.MINUS, CharCode.PLUS, sign));\n return decimals;\n}\n\nfunction prettify(buffer: usize, length: i32, k: i32): i32 {\n if (!k) {\n store(buffer + (length << 1), CharCode.DOT | (CharCode._0 << 16));\n return length + 2;\n }\n\n var kk = length + k;\n if (length <= kk && kk <= 21) {\n // 1234e7 -> 12340000000\n for (let i = length; i < kk; ++i) {\n store(buffer + (i << 1), CharCode._0);\n }\n store(buffer + (kk << 1), CharCode.DOT | (CharCode._0 << 16));\n return kk + 2;\n } else if (kk > 0 && kk <= 21) {\n // 1234e-2 -> 12.34\n let ptr = buffer + (kk << 1);\n memory.copy(\n ptr + 2,\n ptr,\n -k << 1\n );\n store(buffer + (kk << 1), CharCode.DOT);\n return length + 1;\n } else if (-6 < kk && kk <= 0) {\n // 1234e-6 -> 0.001234\n let offset = 2 - kk;\n memory.copy(\n buffer + (offset << 1),\n buffer,\n length << 1\n );\n store(buffer, CharCode._0 | (CharCode.DOT << 16));\n for (let i = 2; i < offset; ++i) {\n store(buffer + (i << 1), CharCode._0);\n }\n return length + offset;\n } else if (length == 1) {\n // 1e30\n store(buffer, CharCode.e, 2);\n length = genExponent(buffer + 4, kk - 1);\n return length + 2;\n } else {\n let len = length << 1;\n memory.copy(\n buffer + 4,\n buffer + 2,\n len - 2\n );\n store(buffer, CharCode.DOT, 2);\n store(buffer + len, CharCode.e, 2);\n length += genExponent(buffer + len + 4, kk - 1);\n return length + 2;\n }\n}\n\nfunction dtoa_core(buffer: usize, value: f64): i32 {\n var sign = i32(value < 0);\n if (sign) {\n value = -value;\n store(buffer, CharCode.MINUS);\n }\n // assert(value > 0 && value <= 1.7976931348623157e308);\n var len = grisu2(value, buffer, sign);\n len = prettify(buffer + (sign << 1), len - sign, _K);\n return len + sign;\n}\n\n// @ts-ignore: decorator\n@lazy @inline const dtoa_buf = memory.data(MAX_DOUBLE_LENGTH << 1);\n\nexport function dtoa(value: f64): String {\n if (value == 0) return \"0.0\";\n if (!isFinite(value)) {\n if (isNaN(value)) return \"NaN\";\n return select(\"-Infinity\", \"Infinity\", value < 0);\n }\n var size = dtoa_core(dtoa_buf, value) << 1;\n var result = changetype(__new(size, idof()));\n memory.copy(changetype(result), dtoa_buf, size);\n return result;\n}\n\nexport function itoa_buffered(buffer: usize, value: T): u32 {\n var sign: u32 = 0;\n if (isSigned()) {\n sign = u32(value < 0);\n if (sign) {\n if (sizeof() == 1) {\n if (value == -0x80) {\n // -0x80 -> -128\n store(buffer,\n CharCode.MINUS |\n (CharCode._0 + 1) << 16 |\n (CharCode._0 + 2) << 32 |\n (CharCode._0 + 8) << 48\n );\n return 4;\n }\n }\n if (sizeof() == 2) {\n if (value == -0x8000) {\n // -0x8000 -> -32768\n store(buffer,\n CharCode.MINUS |\n (CharCode._0 + 3) << 16 |\n (CharCode._0 + 2) << 32 |\n (CharCode._0 + 7) << 48\n ); // -327\n store(buffer + 8,\n (CharCode._0 + 6) << 0 |\n (CharCode._0 + 8) << 16\n ); // 68\n return 6;\n }\n }\n store(buffer, CharCode.MINUS);\n // @ts-ignore\n value = -value;\n }\n }\n var dest = buffer + (sign << 1);\n if (ASC_SHRINK_LEVEL <= 1) {\n if (isSigned()) {\n if (sizeof() <= 4) {\n if (value < 10) {\n store(dest, value | CharCode._0);\n return 1 + sign;\n }\n } else {\n if (value < 10) {\n store(dest, value | CharCode._0);\n return 1 + sign;\n }\n }\n } else {\n if (value < 10) {\n store(buffer, value | CharCode._0);\n return 1;\n }\n }\n }\n var decimals: u32 = 0;\n if (sizeof() <= 4) {\n let val32 = value;\n decimals = decimalCount32(val32);\n utoa32_dec_core(dest, val32, decimals);\n } else {\n if (value <= u32.MAX_VALUE) {\n let val32 = value;\n decimals = decimalCount32(val32);\n utoa32_dec_core(dest, val32, decimals);\n } else {\n let val64 = value;\n decimals = decimalCount64High(val64);\n utoa64_dec_core(dest, val64, decimals);\n }\n }\n return sign + decimals;\n}\n\nexport function dtoa_buffered(buffer: usize, value: f64): u32 {\n if (value == 0) {\n store(buffer, CharCode._0);\n store(buffer, CharCode.DOT, 2);\n store(buffer, CharCode._0, 4);\n return 3;\n }\n if (!isFinite(value)) {\n if (isNaN(value)) {\n store(buffer, CharCode.N);\n store(buffer, CharCode.a, 2);\n store(buffer, CharCode.N, 4);\n return 3;\n } else {\n let sign = value < 0;\n if (sign) {\n store(buffer, CharCode.MINUS); // -\n buffer += 2;\n }\n store(buffer, 0x690066006E0049, 0); // ifnI\n store(buffer, 0x7900740069006E, 8); // ytin\n return 8 + u32(sign);\n }\n }\n return dtoa_core(buffer, value);\n}\n","import {\n itoa32,\n utoa32,\n itoa64,\n utoa64,\n dtoa,\n itoa_buffered,\n dtoa_buffered,\n MAX_DOUBLE_LENGTH\n} from \"./number\";\n\nimport {\n ipow32\n} from \"../math\";\n\n// All tables are stored as two staged lookup tables (static tries)\n// because the full range of Unicode symbols can't be efficiently\n// represented as-is in memory (see Unicode spec ch 5, p.196):\n// https://www.unicode.org/versions/Unicode12.0.0/ch05.pdf\n// Tables have been generated using these forked musl tools:\n// https://github.com/MaxGraey/musl-chartable-tools/tree/case-ignorable\n\n// Lookup table to check if a character is alphanumeric or not\n// See: https://git.musl-libc.org/cgit/musl/tree/src/ctype/alpha.h\n// size: 3904 bytes\n// @ts-ignore\n@inline @lazy const ALPHA_TABLE = memory.data([\n 18,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,17,34,35,36,17,37,38,39,40,\n 41,42,43,44,17,45,46,47,16,16,48,16,16,16,16,16,16,16,49,50,51,16,52,53,16,16,\n 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,54,\n 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,\n 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,\n 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,\n 17,17,17,55,17,17,17,17,56,17,57,58,59,60,61,62,17,17,17,17,17,17,17,17,17,17,\n 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,\n 17,17,17,17,17,17,17,63,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,64,65,17,66,67,\n 68,69,70,71,72,73,74,17,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,\n 93,94,16,95,96,97,98,17,17,17,99,100,101,16,16,16,16,16,16,16,16,16,16,17,17,\n 17,17,102,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,103,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,17,17,104,105,16,16,106,107,17,17,17,17,17,17,17,17,17,17,17,17,17,\n 17,17,17,17,17,17,17,17,17,17,108,17,17,17,17,109,110,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 17,111,112,16,16,16,16,16,16,16,16,16,113,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,114,115,116,117,16,16,16,16,16,16,16,16,118,\n 119,120,16,16,16,16,16,121,122,16,16,16,16,123,16,16,124,16,16,16,16,16,16,16,\n 16,16,125,16,16,16,\n 16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,254,255,255,7,254,\n 255,255,7,0,0,0,0,0,4,32,4,255,255,127,255,255,255,127,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,195,255,3,0,31,80,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,223,188,64,215,255,255,\n 251,255,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,3,252,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,254,255,255,255,127,2,255,255,255,\n 255,255,1,0,0,0,0,255,191,182,0,255,255,255,135,7,0,0,0,255,7,255,255,255,255,\n 255,255,255,254,255,195,255,255,255,255,255,255,255,255,255,255,255,255,239,\n 31,254,225,255,\n 159,0,0,255,255,255,255,255,255,0,224,255,255,255,255,255,255,255,255,255,255,\n 255,255,3,0,255,255,255,255,255,7,48,4,255,255,255,252,255,31,0,0,255,255,255,\n 1,255,7,0,0,0,0,0,0,255,255,223,255,255,0,240,255,248,3,255,255,255,255,255,\n 255,255,255,255,239,255,223,225,255,207,255,254,255,239,159,249,255,255,253,\n 197,227,159,89,128,176,207,255,3,16,238,135,249,255,255,253,109,195,135,25,2,\n 94,192,255,63,0,238,191,251,255,255,253,237,227,191,27,1,0,207,255,0,30,238,\n 159,249,255,255,253,237,227,159,25,192,176,207,255,2,0,236,199,61,214,24,199,\n 255,195,199,29,129,0,192,255,0,0,239,223,253,255,255,253,255,227,223,29,96,7,\n 207,255,0,0,239,223,253,255,255,253,239,227,223,29,96,64,207,255,6,0,255,223,\n 253,255,255,255,255,231,223,93,240,128,207,255,0,252,238,255,127,252,255,255,\n 251,47,127,128,95,255,192,255,12,0,254,255,255,255,255,127,255,7,63,32,255,3,\n 0,0,0,0,214,247,255,255,175,255,255,59,95,32,255,243,0,0,0,\n 0,1,0,0,0,255,3,0,0,255,254,255,255,255,31,254,255,3,255,255,254,255,255,255,\n 31,0,0,0,0,0,0,0,0,255,255,255,255,255,255,127,249,255,3,255,255,255,255,255,\n 255,255,255,255,63,255,255,255,255,191,32,255,255,255,255,255,247,255,255,255,\n 255,255,255,255,255,255,61,127,61,255,255,255,255,255,61,255,255,255,255,61,\n 127,61,255,127,255,255,255,255,255,255,255,61,255,255,255,255,255,255,255,255,\n 7,0,0,0,0,255,255,0,0,255,255,255,255,255,255,255,255,255,255,63,63,254,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,159,255,255,254,255,255,7,255,255,255,255,255,255,255,255,\n 255,199,255,1,255,223,15,0,255,255,15,0,255,255,15,0,255,223,13,0,255,255,255,\n 255,255,255,207,255,255,1,128,16,255,3,0,0,0,0,255,3,255,255,255,255,255,255,\n 255,255,255,255,255,1,255,255,255,255,255,7,255,255,255,255,255,255,255,255,\n 63,\n 0,255,255,255,127,255,15,255,1,192,255,255,255,255,63,31,0,255,255,255,255,\n 255,15,255,255,255,3,255,3,0,0,0,0,255,255,255,15,255,255,255,255,255,255,255,\n 127,254,255,31,0,255,3,255,3,128,0,0,128,1,0,0,0,0,0,0,0,255,255,255,255,255,\n 255,239,255,239,15,255,3,0,0,0,0,255,255,255,255,255,243,255,255,255,255,255,\n 255,191,255,3,0,255,255,255,255,255,255,127,0,255,227,255,255,255,255,255,63,\n 255,1,255,255,255,255,255,231,0,0,0,0,0,222,111,4,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,\n 128,255,31,0,255,255,63,63,255,255,255,255,63,63,255,170,255,255,255,63,255,\n 255,255,255,255,255,223,95,220,31,207,15,255,31,220,31,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,2,128,0,0,255,31,0,0,0,0,0,0,0,0,0,0,0,0,132,252,47,62,80,189,255,243,\n 224,67,0,0,255,255,255,255,255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,255,255,255,255,255,255,3,0,\n 0,255,255,255,255,255,127,255,255,255,255,255,127,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,31,120,12,0,255,255,255,255,191,32,255,\n 255,255,255,255,255,255,128,0,0,255,255,127,0,127,127,127,127,127,127,127,127,\n 255,255,255,255,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,224,0,0,0,254,3,62,31,254,255,255,255,255,255,255,255,255,255,127,224,254,\n 255,255,255,255,255,255,255,255,255,255,247,224,255,255,255,255,255,254,255,\n 255,255,255,255,255,255,255,255,255,127,0,0,255,255,255,255,0,0,0,0,0,0,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,\n 31,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,31,0,0,\n 0,0,0,0,0,0,255,255,255,255,255,63,255,31,255,255,255,15,0,0,255,255,255,255,\n 255,127,240,143,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,\n 0,128,255,252,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,\n 255,255,255,252,7,0,0,0,0,224,255,191,255,255,255,255,0,0,0,255,255,255,255,\n 255,255,15,0,255,255,255,255,255,255,255,255,47,0,255,3,0,0,252,232,255,255,\n 255,255,255,7,255,255,255,255,7,0,255,255,255,31,255,255,255,255,255,255,247,\n 255,0,128,255,3,255,255,255,127,255,255,255,255,255,255,127,0,255,63,255,3,\n 255,255,127,252,255,255,255,255,255,255,255,127,5,0,0,56,255,255,60,0,126,126,\n 126,0,127,127,255,255,255,255,255,247,255,3,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,7,255,3,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,15,0,255,255,127,248,255,255,255,255,\n 255,\n 15,255,255,255,255,255,255,255,255,255,255,255,255,255,63,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,3,0,0,0,0,127,0,248,224,255,253,127,95,219,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,3,0,0,0,248,255,255,255,\n 255,255,255,255,255,255,255,255,255,63,0,0,255,255,255,255,255,255,255,255,\n 252,255,255,255,255,255,255,0,0,0,0,0,255,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,31,0,0,255,3,\n 254,255,255,7,254,255,255,7,192,255,255,255,255,255,255,255,255,255,255,127,\n 252,252,252,28,0,0,0,0,255,239,255,255,127,255,255,183,255,63,255,63,0,0,0,0,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,7,0,0,0,0,0,0,0,0,\n 255,255,255,255,255,255,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,255,255,255,31,255,255,255,255,255,255,1,0,0,0,0,\n 0,255,255,255,255,0,224,255,255,255,7,255,255,255,255,255,7,255,255,255,63,\n 255,255,255,255,15,255,62,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,63,255,3,255,255,255,255,15,255,255,255,\n 255,15,255,255,255,255,255,0,255,255,255,255,255,255,15,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,255,255,255,255,255,255,127,0,255,255,63,0,255,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,63,253,255,255,255,255,191,145,255,255,63,0,255,255,\n 127,0,255,255,255,127,0,0,0,0,0,0,0,0,255,255,55,0,255,255,63,0,255,255,255,3,\n 0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,111,240,239,\n 254,255,255,63,0,0,0,0,0,255,255,255,31,255,255,255,31,0,0,0,0,255,254,255,\n 255,31,0,0,0,255,255,255,255,255,255,63,0,255,255,63,0,255,255,7,0,255,255,3,\n 0,0,0,0,0,0,0,0,0,0,0,0,\n 0,255,255,255,255,255,255,255,255,255,1,0,0,0,0,0,0,255,255,255,255,255,255,7,\n 0,255,255,255,255,255,255,7,0,255,255,255,255,255,0,255,3,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,\n 255,27,3,0,0,0,0,0,0,0,0,0,255,255,255,31,128,0,255,255,63,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,255,255,31,0,0,0,255,255,127,0,255,255,255,255,255,255,255,255,63,0,0,\n 0,192,255,0,0,252,255,255,255,255,255,255,1,0,0,255,255,255,1,255,3,255,255,\n 255,255,255,255,199,255,240,0,255,255,255,255,71,0,255,255,255,255,255,255,\n 255,255,30,192,255,23,0,0,0,0,255,255,251,255,255,255,159,64,0,0,0,0,0,0,0,0,\n 127,189,255,191,255,1,255,255,255,255,255,255,255,1,255,3,239,159,249,255,255,\n 253,237,227,159,25,129,224,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,255,255,255,255,255,255,255,255,187,7,255,131,3,0,0,0,255,255,255,255,255,\n 255,255,255,179,0,255,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,\n 255,255,255,63,127,0,0,0,63,0,0,0,0,255,255,255,255,255,255,255,127,17,0,255,\n 3,0,0,0,0,255,255,255,255,255,255,63,1,255,3,0,0,0,0,0,0,255,255,255,231,255,\n 7,255,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,\n 255,255,1,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,3,0,128,\n 127,242,111,255,255,255,191,153,7,0,255,3,0,0,0,0,0,0,0,0,255,252,255,255,255,\n 255,255,252,26,0,0,0,255,255,255,255,255,255,231,127,0,0,255,255,255,255,255,\n 255,255,255,255,32,0,0,0,0,255,255,255,255,255,255,255,1,255,253,255,255,255,\n 255,127,127,1,0,255,3,0,0,252,255,255,255,252,255,255,254,127,0,0,0,0,0,0,0,0,\n 0,127,251,255,255,255,255,127,180,203,0,255,3,191,253,255,255,255,127,123,1,\n 255,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,255,255,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,\n 0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,3,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,127,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,255,255,255,255,255,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,255,255,255,255,255,255,255,255,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,\n 0,255,255,255,255,255,255,255,1,255,255,255,127,255,3,0,0,0,0,0,0,0,0,0,0,0,0,\n 255,255,255,63,0,0,255,255,255,255,255,255,0,0,15,0,255,3,248,255,255,224,255,\n 255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,\n 255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,135,\n 255,255,255,255,255,255,255,128,255,255,0,0,0,0,0,0,0,0,11,0,3,0,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,63,0,0,0,0,0,\n 255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,\n 127,0,0,0,0,0,0,7,0,240,0,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,15,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,7,255,31,255,1,255,67,0,0,0,0,0,0,0,0,0,0,0,0,\n 255,255,255,255,255,255,255,255,255,255,223,255,255,255,255,255,255,255,255,\n 223,100,222,255,235,239,255,255,255,255,255,255,255,191,231,223,223,255,255,\n 255,123,95,252,253,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,63,255,255,255,253,255,255,247,255,255,255,\n 247,255,255,223,255,255,255,223,255,255,127,255,255,255,127,255,255,255,253,\n 255,255,255,253,255,255,247,207,255,255,255,255,255,255,127,255,255,249,219,7,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,31,\n 128,63,255,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,15,255,\n 3,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,31,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,143,8,\n 255,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,255,255,255,150,254,247,10,\n 132,234,150,170,150,247,247,94,255,251,255,15,238,251,255,15,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,255,255,255,3,255,255,255,3,255,255,255,3,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,3\n]);\n\n// size: 1568 bytes (compressed to ~1380 bytes after binaryen)\n// @ts-ignore: decorator\n@lazy @inline const CASED = memory.data([\n 18,19,20,21,22,23,16,16,16,16,16,16,16,16,16,16,\n 24,16,16,25,16,16,16,16,16,16,16,16,26,27,17,28,\n 29,30,16,16,31,16,16,16,16,16,16,16,32,33,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,34,35,16,16,16,36,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,37,16,16,16,38,\n 16,16,16,16,39,16,16,16,16,16,16,16,40,16,16,16,\n 16,16,16,16,16,16,16,16,41,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,42,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,43,44,45,46,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,47,16,16,16,16,16,16,\n 16,48,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 0,0,0,0,0,0,0,0,254,255,255,7,254,255,255,7,0,0,0,0,0,4,32,4,\n 255,255,127,255,255,255,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,247,240,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,239,255,255,255,255,1,3,0,0,0,31,0,0,0,\n 0,0,0,0,0,0,0,0,32,0,0,0,0,0,207,188,64,215,255,255,251,255,255,255,\n 255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 3,252,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,255,\n 255,255,127,0,255,255,255,255,255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,\n 191,32,255,255,255,255,255,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,255,255,255,255,255,255,255,255,255,255,63,63,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,255,1,255,255,255,255,255,231,0,0,0,0,0,0,0,0,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 0,0,0,0,0,0,0,0,255,255,63,63,255,255,255,255,63,63,255,170,255,255,255,63,\n 255,255,255,255,255,255,223,95,220,31,207,15,255,31,220,31,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,2,128,0,0,255,31,0,0,0,0,0,0,0,0,0,0,0,0,\n 132,252,47,62,80,189,31,242,224,67,0,0,255,255,255,255,24,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,192,255,255,255,255,255,255,3,0,0,255,255,255,255,255,127,255,255,\n 255,255,255,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,31,120,12,0,\n 255,255,255,255,191,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,63,0,0,\n 255,255,255,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,255,255,255,\n 255,255,255,255,255,255,255,255,255,120,255,255,255,255,255,255,252,7,0,0,0,0,96,7,\n 0,0,0,0,0,0,255,255,255,255,255,247,255,1,255,255,255,255,255,255,255,255,255,255,\n 0,0,0,0,0,0,0,0,127,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,255,255,7,\n 254,255,255,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,255,255,\n 255,255,15,255,255,255,255,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 255,255,255,255,255,255,7,0,255,255,255,255,255,255,7,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,\n 0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,223,255,255,255,255,255,\n 255,255,255,223,100,222,255,235,239,255,255,255,255,255,255,255,191,231,223,223,255,255,255,123,\n 95,252,253,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,63,255,255,255,\n 253,255,255,247,255,255,255,247,255,255,223,255,255,255,223,255,255,127,255,255,255,127,255,255,\n 255,253,255,255,255,253,255,255,247,15,0,0,0,0,0,0,255,255,255,255,255,255,255,255,\n 15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,255,255,255,3,255,255,255,3,255,255,255,3,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0\n]);\n\n// size: 2976 bytes (compressed to ~2050 bytes after binaryen)\n// @ts-ignore: decorator\n@lazy @inline const CASE_IGNORABLES = memory.data([\n 18,16,19,20,21,22,23,24,25,26,27,28,29,30,31,32,\n 33,16,16,34,16,16,16,35,36,37,38,39,40,41,16,42,\n 43,16,16,16,16,16,16,16,16,16,16,16,44,45,46,16,\n 47,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 48,16,16,16,49,16,50,51,52,53,54,55,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,56,16,16,57,58,\n 16,59,60,61,16,16,16,16,16,16,62,16,16,63,64,65,\n 66,67,68,69,70,71,72,73,74,75,76,16,77,78,79,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,80,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,81,82,16,16,16,83,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,84,16,16,16,\n 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,\n 16,85,86,16,16,16,16,16,16,16,87,16,16,16,16,16,\n 88,89,90,16,16,16,16,16,91,92,16,16,16,16,16,16,\n 16,16,16,93,16,16,16,16,16,16,16,16,16,16,16,16,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 0,0,0,0,128,64,0,4,0,0,0,64,1,0,0,0,0,0,0,0,0,161,144,1,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,\n 255,255,255,255,255,255,48,4,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,3,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,\n 0,0,254,255,255,255,255,191,182,0,0,0,0,0,16,0,63,0,255,23,0,0,0,0,\n 1,248,255,255,0,0,1,0,0,0,0,0,0,0,0,0,0,0,192,191,255,61,0,0,\n 0,128,2,0,0,0,255,255,255,7,0,0,0,0,0,0,0,0,0,0,192,255,1,0,\n 0,0,0,0,0,248,63,36,0,0,192,255,255,63,0,0,0,0,0,14,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,248,255,255,255,255,255,7,0,0,0,0,0,0,20,\n 254,33,254,0,12,0,2,0,2,0,0,0,0,0,0,16,30,32,0,0,12,0,0,64,\n 6,0,0,0,0,0,0,16,134,57,2,0,0,0,35,0,6,0,0,0,0,0,0,16,\n 190,33,0,0,12,0,0,252,2,0,0,0,0,0,0,144,30,32,96,0,12,0,0,0,\n 4,0,0,0,0,0,0,0,1,32,0,0,0,0,0,0,17,0,0,0,0,0,0,192,\n 193,61,96,0,12,0,0,0,2,0,0,0,0,0,0,144,64,48,0,0,12,0,0,0,\n 3,0,0,0,0,0,0,24,30,32,0,0,12,0,0,0,2,0,0,0,0,0,0,0,\n 0,4,92,0,0,0,0,0,0,0,0,0,0,0,242,7,192,127,0,0,0,0,0,0,\n 0,0,0,0,0,0,242,31,64,63,0,0,0,0,0,0,0,0,0,3,0,0,160,2,\n 0,0,0,0,0,0,254,127,223,224,255,254,255,255,255,31,64,0,0,0,0,0,0,0,\n 0,0,0,0,0,224,253,102,0,0,0,195,1,0,30,0,100,32,0,32,0,0,0,0,\n 0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,28,0,\n 0,0,12,0,0,0,12,0,0,0,0,0,0,0,176,63,64,254,143,32,0,0,0,0,\n 0,120,0,0,0,0,0,0,8,0,0,0,0,0,0,0,96,0,0,0,0,2,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,135,1,4,14,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,9,0,0,0,0,\n 0,0,64,127,229,31,248,159,0,0,0,0,128,0,255,255,1,0,0,0,0,0,0,0,\n 15,0,0,0,0,0,208,23,4,0,0,0,0,248,15,0,3,0,0,0,60,59,0,0,\n 0,0,0,0,64,163,3,0,0,0,0,0,0,240,207,0,0,0,0,0,0,0,0,63,\n 0,0,0,0,0,0,0,0,0,0,247,255,253,33,16,3,0,0,0,0,0,240,255,255,\n 255,255,255,255,255,7,0,1,0,0,0,248,255,255,255,255,255,255,255,255,255,255,255,251,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,\n 3,224,0,224,0,224,0,96,0,248,0,3,144,124,0,0,0,0,0,0,223,255,2,128,\n 0,0,255,31,0,0,0,0,0,0,255,255,255,255,1,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,128,3,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,128,0,0,0,0,0,0,0,0,\n 0,0,0,0,255,255,255,255,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,60,62,8,\n 0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,112,\n 0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,16,0,0,0,0,0,0,\n 0,0,0,0,0,128,247,191,0,0,0,240,0,0,0,0,0,0,0,0,0,0,3,0,\n 255,255,255,255,3,0,0,0,0,0,0,0,0,0,1,0,0,7,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,3,68,8,0,0,96,16,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,48,0,0,0,255,255,3,128,0,0,0,0,192,63,0,0,\n 128,255,3,0,0,0,0,0,7,0,0,0,0,0,200,51,0,128,0,0,96,0,0,0,\n 0,0,0,0,0,126,102,0,8,16,0,0,0,0,1,16,0,0,0,0,0,0,157,193,\n 2,0,0,32,0,48,88,0,0,0,0,0,0,0,0,0,0,0,0,248,0,14,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,32,33,0,0,0,0,0,64,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,255,3,0,0,0,0,0,0,0,\n 255,255,8,0,255,255,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,128,128,64,0,4,0,0,0,64,1,0,0,0,0,0,1,0,\n 0,0,0,192,0,0,0,0,0,0,0,0,8,0,0,14,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,7,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,240,0,0,0,0,0,135,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,\n 0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 192,255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 2,0,0,0,0,0,0,255,127,0,0,0,0,0,0,128,3,0,0,0,0,0,120,38,\n 0,32,0,0,0,0,0,0,7,0,0,0,128,239,31,0,0,0,0,0,0,0,8,0,\n 3,0,0,0,0,0,192,127,0,158,0,0,0,0,0,0,0,0,0,0,0,128,211,64,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,248,7,0,0,\n 3,0,0,0,0,0,0,24,1,0,0,0,192,31,31,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,92,0,0,64,0,0,0,0,\n 0,0,0,0,0,0,248,133,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,176,1,0,0,48,0,0,0,0,\n 0,0,0,0,0,0,248,167,1,0,0,0,0,0,0,0,0,0,0,0,0,40,191,0,\n 0,0,0,0,0,0,0,0,0,0,0,224,188,15,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,255,6,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,88,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,240,12,1,0,0,0,254,7,0,0,0,0,248,121,128,0,126,14,0,0,0,0,\n 0,252,127,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,191,\n 0,0,0,0,0,0,0,0,0,0,252,255,255,252,109,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,126,180,191,0,0,0,0,0,0,0,0,0,163,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,255,1,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,31,0,0,0,0,0,0,0,127,0,15,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,128,0,0,0,0,0,0,0,128,255,255,0,0,0,0,0,0,0,0,27,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,15,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,3,248,255,\n 231,15,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 255,255,255,255,255,255,127,248,255,255,255,255,255,31,32,0,16,0,0,248,254,255,0,0,\n 0,0,0,0,0,0,0,0,127,255,255,249,219,7,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,63,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 240,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n 0,0,0,0,0,0,0,248\n]);\n\n// @ts-ignore: decorator\n@lazy @inline const LOWER127 = memory.data([\n 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,\n 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,\n 32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,\n 48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,\n 64,\n 97,98,99,100,101,102,103,104,105,106,107,108,109,\n 110,111,112,113,114,115,116,117,118,119,120,121,122,\n 91,92,93,94,95,96,\n 97,98,99,100,101,102,103,104,105,106,107,108,109,\n 110,111,112,113,114,115,116,117,118,119,120,121,122,\n 123,124,125,126,127\n]);\n\n// @ts-ignore: decorator\n@lazy @inline const UPPER127 = memory.data([\n 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,\n 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,\n 32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,\n 48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,\n 64,\n 65,66,67,68,69,70,71,72,73,74,75,76,77,\n 78,79,80,81,82,83,84,85,86,87,88,89,90,\n 91,92,93,94,95,96,\n 65,66,67,68,69,70,71,72,73,74,75,76,77,\n 78,79,80,81,82,83,84,85,86,87,88,89,90,\n 123,124,125,126,127\n]);\n\n// 23 * 8 = 184 bytes\n// @ts-ignore: decorator\n@lazy @inline const POWERS10 = memory.data([\n 1e00, 1e01, 1e02, 1e03, 1e04, 1e05, 1e06, 1e07, 1e08, 1e09,\n 1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19,\n 1e20, 1e21, 1e22\n]);\n\n// @ts-ignore: decorator\n@inline\nexport const enum CharCode {\n PERCENT = 0x25,\n PLUS = 0x2B,\n MINUS = 0x2D,\n DOT = 0x2E,\n _0 = 0x30,\n _1 = 0x31,\n _2 = 0x32,\n _3 = 0x33,\n _4 = 0x34,\n _5 = 0x35,\n _6 = 0x36,\n _7 = 0x37,\n _8 = 0x38,\n _9 = 0x39,\n A = 0x41,\n B = 0x42,\n E = 0x45,\n I = 0x49,\n N = 0x4E,\n O = 0x4F,\n X = 0x58,\n Z = 0x5A,\n a = 0x61,\n b = 0x62,\n e = 0x65,\n n = 0x6E,\n o = 0x6F,\n u = 0x75,\n x = 0x78,\n z = 0x7A\n}\n\n// @ts-ignore: decorator\n@inline\nexport function isAscii(c: u32): bool {\n return !(c >> 7);\n}\n\n// @ts-ignore: decorator\n@inline\nexport function isLower8(c: u32): bool {\n return c - CharCode.a < 26;\n}\n\n// @ts-ignore: decorator\n@inline\nexport function isUpper8(c: u32): bool {\n return c - CharCode.A < 26;\n}\n\nexport function isSpace(c: u32): bool {\n if (c < 0x1680) { // < (1)\n // , , , , , and \n // (c == 0x20 || c == 0xA0) was optimized to (c | 0x80) == 0xA0\n return ((c | 0x80) == 0xA0) || (c - 0x09 <= 0x0D - 0x09);\n }\n if (c - 0x2000 <= 0x200A - 0x2000) return true;\n switch (c) {\n case 0x1680: // (1)\n case 0x2028: // (2)\n case 0x2029: // \n case 0x202F: // \n case 0x205F: // \n case 0x3000: // \n case 0xFEFF: return true; // \n }\n return false;\n}\n\nexport function isAlpha(c: u32): bool {\n if (isAscii(c)) return (c | 32) - CharCode.a < 26;\n if (c < 0x20000) {\n // @ts-ignore: cast\n return stagedBinaryLookup(ALPHA_TABLE, c);\n }\n return c < 0x2FFFE;\n}\n\n// @ts-ignore: decorator\n@inline\nexport function isCased(c: u32): bool {\n // @ts-ignore: cast\n return c < 0x1F18A && stagedBinaryLookup(CASED, c);\n}\n\n// @ts-ignore: decorator\n@inline\nexport function isCaseIgnorable(c: u32): bool {\n // @ts-ignore: cast\n return c < 0xE01F0 && stagedBinaryLookup(CASE_IGNORABLES, c);\n}\n\n// @ts-ignore: decorator\n@inline\nexport function isFinalSigma(buffer: usize, index: isize, len: isize): bool {\n const lookaheadLimit = 30; // max lookahead limit\n var found = false;\n var pos = index;\n var minPos = max(0, pos - lookaheadLimit);\n while (pos > minPos) {\n let c = codePointBefore(buffer, pos);\n if (!isCaseIgnorable(c)) {\n if (isCased(c)) {\n found = true;\n } else {\n return false;\n }\n }\n pos -= isize(c >= 0x10000) + 1;\n }\n if (!found) return false;\n pos = index + 1;\n var maxPos = min(pos + lookaheadLimit, len);\n while (pos < maxPos) {\n let c = load(buffer + (pos << 1));\n if (u32((c & 0xFC00) == 0xD800) & u32(pos + 1 != len)) {\n let c1 = load(buffer + (pos << 1), 2);\n if ((c1 & 0xFC00) == 0xDC00) {\n c = (c - 0xD800 << 10) + (c1 - 0xDC00) + 0x10000;\n }\n }\n if (!isCaseIgnorable(c)) {\n return !isCased(c);\n }\n pos += isize(c >= 0x10000) + 1;\n }\n return true;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction codePointBefore(buffer: usize, index: isize): i32 {\n if (index <= 0) return -1;\n var c = load(buffer + (index - 1 << 1));\n if (u32((c & 0xFC00) == 0xDC00) & u32(index - 2 >= 0)) {\n let c1 = load(buffer + (index - 2 << 1));\n if ((c1 & 0xFC00) == 0xD800) {\n return ((c1 & 0x3FF) << 10) + (c & 0x3FF) + 0x10000;\n }\n }\n return (c & 0xF800) == 0xD800 ? 0xFFFD : c;\n}\n\n// Search routine for two-staged lookup tables\nfunction stagedBinaryLookup(table: usize, c: u32): bool {\n return ((load(table + (load(table + (c >>> 8)) << 5) + ((c & 255) >> 3)) >>> (c & 7)) & 1);\n}\n\nexport function compareImpl(str1: string, index1: usize, str2: string, index2: usize, len: usize): i32 {\n var ptr1 = changetype(str1) + (index1 << 1);\n var ptr2 = changetype(str2) + (index2 << 1);\n if (ASC_SHRINK_LEVEL < 2) {\n if (len >= 4 && !((ptr1 & 7) | (ptr2 & 7))) {\n do {\n if (load(ptr1) != load(ptr2)) break;\n ptr1 += 8;\n ptr2 += 8;\n len -= 4;\n } while (len >= 4);\n }\n }\n while (len--) {\n let a = load(ptr1);\n let b = load(ptr2);\n if (a != b) return a - b;\n ptr1 += 2;\n ptr2 += 2;\n }\n return 0;\n}\n\n// @ts-ignore: decorator\n@inline\nexport function toLower8(c: u32): u32 {\n if (ASC_SHRINK_LEVEL > 0) {\n return c | u32(isUpper8(c)) << 5;\n } else {\n return load(LOWER127 + c);\n }\n}\n\n// @ts-ignore: decorator\n@inline\nexport function toUpper8(c: u32): u32 {\n if (ASC_SHRINK_LEVEL > 0) {\n return c & ~(u32(isLower8(c)) << 5);\n } else {\n return load(UPPER127 + c);\n }\n}\n\n/** Parses a string to an integer (usually), using the specified radix. */\nexport function strtol(str: string, radix: i32 = 0): T {\n var len = str.length;\n if (!len) {\n if (isFloat()) {\n // @ts-ignore: cast\n return NaN;\n } else {\n // @ts-ignore: cast\n return 0;\n }\n }\n\n var ptr = changetype(str) /* + HEAD -> offset */;\n var code = load(ptr);\n\n // trim white spaces\n while (isSpace(code)) {\n code = load(ptr += 2);\n --len;\n }\n // determine sign\n // @ts-ignore\n var sign: T = 1;\n if (code == CharCode.MINUS || code == CharCode.PLUS) {\n if (!--len) {\n if (isFloat()) {\n // @ts-ignore: cast\n return NaN;\n } else {\n // @ts-ignore: cast\n return 0;\n }\n }\n if (code == CharCode.MINUS) {\n // @ts-ignore: type\n sign = -1;\n }\n code = load(ptr += 2);\n }\n\n // See https://tc39.es/ecma262/#sec-parseint-string-radix\n if (radix) {\n if (radix < 2 || radix > 36) {\n if (isFloat()) {\n // @ts-ignore: cast\n return NaN;\n } else {\n // @ts-ignore: cast\n return 0;\n }\n }\n // handle case as parseInt(\"0xFF\", 16) by spec\n if (radix == 16) {\n if (\n len > 2 &&\n code == CharCode._0 &&\n (load(ptr, 2) | 32) == CharCode.x\n ) {\n ptr += 4; len -= 2;\n }\n }\n } else {\n // determine radix by literal prefix\n if (code == CharCode._0 && len > 2) {\n switch (load(ptr, 2) | 32) {\n case CharCode.b: {\n ptr += 4; len -= 2;\n radix = 2;\n break;\n }\n case CharCode.o: {\n ptr += 4; len -= 2;\n radix = 8;\n break;\n }\n case CharCode.x: {\n ptr += 4; len -= 2;\n radix = 16;\n break;\n }\n }\n }\n if (!radix) radix = 10;\n }\n\n // calculate value\n // @ts-ignore: type\n var num: T = 0;\n var initial = len - 1;\n while (len--) {\n code = load(ptr);\n if (code - CharCode._0 < 10) {\n code -= CharCode._0;\n } else if (code - CharCode.A <= (CharCode.Z - CharCode.A)) {\n code -= CharCode.A - 10;\n } else if (code - CharCode.a <= (CharCode.z - CharCode.a)) {\n code -= CharCode.a - 10;\n }\n if (code >= radix) {\n if (initial == len) {\n if (isFloat()) {\n // @ts-ignore: cast\n return NaN;\n } else {\n // @ts-ignore: cast\n return 0;\n }\n }\n break;\n }\n // @ts-ignore: type\n num = num * radix + code;\n ptr += 2;\n }\n // @ts-ignore: type\n return sign * num;\n}\n\nexport function strtod(str: string): f64 {\n var len = str.length;\n if (!len) return NaN;\n\n var ptr = changetype(str);\n var code = load(ptr);\n\n var sign = 1.0;\n // skip white spaces\n while (len && isSpace(code)) {\n code = load(ptr += 2);\n --len;\n }\n if (!len) return NaN;\n\n // try parse '-' or '+'\n if (code == CharCode.MINUS) {\n if (!--len) return NaN;\n code = load(ptr += 2);\n sign = -1;\n } else if (code == CharCode.PLUS) {\n if (!--len) return NaN;\n code = load(ptr += 2);\n }\n\n // try parse Infinity\n if (len >= 8 && code == CharCode.I) {\n if (\n load(ptr, 0) == 0x690066006E0049 && // ifnI\n load(ptr, 8) == 0x7900740069006E // ytin\n ) {\n return Infinity * sign;\n }\n return NaN;\n }\n // validate next symbol\n if (code != CharCode.DOT && (code - CharCode._0) >= 10) {\n return NaN;\n }\n var savedPtr = ptr;\n // skip zeros\n while (code == CharCode._0) {\n code = load(ptr += 2);\n --len;\n }\n if (len <= 0) return 0.0 * sign;\n const capacity = 19; // int(64 * 0.3010)\n var pointed = false;\n var consumed = 0;\n var position = 0;\n var x: u64 = 0;\n if (code == CharCode.DOT) {\n let noDigits = !(savedPtr - ptr);\n ptr += 2; --len;\n if (!len && noDigits) return NaN;\n for (pointed = true; (code = load(ptr)) == CharCode._0; --position, ptr += 2) --len;\n if (len <= 0) return 0.0 * sign;\n if (!position && noDigits && code - CharCode._0 >= 10) return NaN;\n }\n for (let digit = code - CharCode._0; digit < 10 || (code == CharCode.DOT && !pointed); digit = code - CharCode._0) {\n if (digit < 10) {\n x = consumed < capacity ? 10 * x + digit : x | u64(!!digit);\n ++consumed;\n } else {\n position = consumed;\n pointed = true;\n }\n if (!--len) break;\n code = load(ptr += 2);\n }\n\n if (!pointed) position = consumed;\n return copysign(scientific(x, position - min(capacity, consumed) + parseExp(ptr, len)), sign);\n}\n\nexport function strtob(str: string): bool {\n var size: usize = str.length << 1;\n var offset: usize = 0;\n if (size > 8) {\n // try trim end whitespaces first\n while (size && isSpace(load(changetype(str) + size - 2))) size -= 2;\n if (size > 8) {\n // trim start whitespaces\n while (offset < size && isSpace(load(changetype(str) + offset))) offset += 2;\n size -= offset;\n }\n }\n if (size != 8) return false;\n // \"true\" represents as \\00\\e\\00\\u\\00\\e\\00\\t (00 65 00 75 00 72 00 74)\n return load(changetype(str) + offset) == 0x0065_0075_0072_0074;\n}\n\nexport function joinBooleanArray(dataStart: usize, length: i32, separator: string): string {\n var lastIndex = length - 1;\n if (lastIndex < 0) return \"\";\n if (!lastIndex) return select(\"true\", \"false\", load(dataStart));\n\n var sepLen = separator.length;\n var valueLen = 5; // max possible length of element len(\"false\")\n var estLen = (valueLen + sepLen) * lastIndex + valueLen;\n var result = changetype(__new(estLen << 1, idof()));\n var offset = 0;\n var value: bool;\n for (let i = 0; i < lastIndex; ++i) {\n value = load(dataStart + i);\n valueLen = 4 + i32(!value);\n memory.copy(\n changetype(result) + (offset << 1),\n changetype(select(\"true\", \"false\", value)),\n valueLen << 1\n );\n offset += valueLen;\n if (sepLen) {\n memory.copy(\n changetype(result) + (offset << 1),\n changetype(separator),\n sepLen << 1\n );\n offset += sepLen;\n }\n }\n value = load(dataStart + lastIndex);\n valueLen = 4 + i32(!value);\n memory.copy(\n changetype(result) + (offset << 1),\n changetype(select(\"true\", \"false\", value)),\n valueLen << 1\n );\n offset += valueLen;\n\n if (estLen > offset) return result.substring(0, offset);\n return result;\n}\n\nexport function joinIntegerArray(dataStart: usize, length: i32, separator: string): string {\n var lastIndex = length - 1;\n if (lastIndex < 0) return \"\";\n if (!lastIndex) {\n let value = load(dataStart);\n if (isSigned()) {\n if (sizeof() <= 4) {\n // @ts-ignore: type\n return changetype(itoa32(value, 10));\n } else {\n // @ts-ignore: type\n return changetype(itoa64(value, 10));\n }\n } else {\n if (sizeof() <= 4) {\n // @ts-ignore: type\n return changetype(utoa32(value, 10));\n } else {\n // @ts-ignore: type\n return changetype(utoa64(value, 10));\n }\n }\n }\n\n var sepLen = separator.length;\n const valueLen = (sizeof() <= 4 ? 10 : 20) + i32(isSigned());\n var estLen = (valueLen + sepLen) * lastIndex + valueLen;\n var result = changetype(__new(estLen << 1, idof()));\n var offset = 0;\n var value: T;\n for (let i = 0; i < lastIndex; ++i) {\n value = load(dataStart + (i << alignof()));\n // @ts-ignore: type\n offset += itoa_buffered(changetype(result) + (offset << 1), value);\n if (sepLen) {\n memory.copy(\n changetype(result) + (offset << 1),\n changetype(separator),\n sepLen << 1\n );\n offset += sepLen;\n }\n }\n value = load(dataStart + (lastIndex << alignof()));\n // @ts-ignore: type\n offset += itoa_buffered(changetype(result) + (offset << 1), value);\n if (estLen > offset) return result.substring(0, offset);\n return result;\n}\n\nexport function joinFloatArray(dataStart: usize, length: i32, separator: string): string {\n var lastIndex = length - 1;\n if (lastIndex < 0) return \"\";\n if (!lastIndex) {\n return changetype(dtoa(\n // @ts-ignore: type\n load(dataStart))\n );\n }\n\n const valueLen = MAX_DOUBLE_LENGTH;\n var sepLen = separator.length;\n var estLen = (valueLen + sepLen) * lastIndex + valueLen;\n var result = changetype(__new(estLen << 1, idof()));\n var offset = 0;\n var value: T;\n for (let i = 0; i < lastIndex; ++i) {\n value = load(dataStart + (i << alignof()));\n // @ts-ignore: type\n offset += dtoa_buffered(changetype(result) + (offset << 1), value);\n if (sepLen) {\n memory.copy(\n changetype(result) + (offset << 1),\n changetype(separator),\n sepLen << 1\n );\n offset += sepLen;\n }\n }\n value = load(dataStart + (lastIndex << alignof()));\n // @ts-ignore: type\n offset += dtoa_buffered(changetype(result) + (offset << 1), value);\n if (estLen > offset) return result.substring(0, offset);\n return result;\n}\n\nexport function joinStringArray(dataStart: usize, length: i32, separator: string): string {\n var lastIndex = length - 1;\n if (lastIndex < 0) return \"\";\n if (!lastIndex) {\n // @ts-ignore: type\n return load(dataStart) || \"\";\n }\n var estLen = 0;\n var value: string;\n for (let i = 0; i < length; ++i) {\n value = load(dataStart + (i << alignof()));\n if (changetype(value) != 0) estLen += value.length;\n }\n var offset = 0;\n var sepLen = separator.length;\n var result = changetype(__new((estLen + sepLen * lastIndex) << 1, idof()));\n for (let i = 0; i < lastIndex; ++i) {\n value = load(dataStart + (i << alignof()));\n if (changetype(value) != 0) {\n let valueLen = value.length;\n memory.copy(\n changetype(result) + (offset << 1),\n changetype(value),\n valueLen << 1\n );\n offset += valueLen;\n }\n if (sepLen) {\n memory.copy(\n changetype(result) + (offset << 1),\n changetype(separator),\n sepLen << 1\n );\n offset += sepLen;\n }\n }\n value = load(dataStart + (lastIndex << alignof()));\n if (changetype(value) != 0) {\n memory.copy(\n changetype(result) + (offset << 1),\n changetype(value),\n value.length << 1\n );\n }\n return result;\n}\n\nexport function joinReferenceArray(dataStart: usize, length: i32, separator: string): string {\n var lastIndex = length - 1;\n if (lastIndex < 0) return \"\";\n var value: T;\n if (!lastIndex) {\n value = load(dataStart);\n // @ts-ignore: type\n return value != null ? value.toString() : \"\";\n }\n var result = \"\";\n var sepLen = separator.length;\n for (let i = 0; i < lastIndex; ++i) {\n value = load(dataStart + (i << alignof()));\n // @ts-ignore: type\n if (value != null) result += value.toString();\n if (sepLen) result += separator;\n }\n value = load(dataStart + (lastIndex << alignof()));\n // @ts-ignore: type\n if (value != null) result += value.toString();\n return result;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction scientific(significand: u64, exp: i32): f64 {\n if (!significand || exp < -342) return 0;\n if (exp > 308) return Infinity;\n // Try use fast path\n // Use fast path for string-to-double conversion if possible\n // see http://www.exploringbinary.com/fast-path-decimal-to-floating-point-conversion\n // Simple integer\n var significandf = significand;\n if (!exp) return significandf;\n if (exp > 22 && exp <= 22 + 15) {\n significandf *= pow10(exp - 22);\n exp = 22;\n }\n if (significand <= 9007199254740991 && abs(exp) <= 22) {\n if (exp > 0) return significandf * pow10(exp);\n return significandf / pow10(-exp);\n } else if (exp < 0) {\n return scaledown(significand, exp);\n } else {\n return scaleup(significand, exp);\n }\n}\n\n// Adopted from metallic lib:\n// https://github.com/jdh8/metallic/blob/master/src/stdlib/parse/scientific.h\n// @ts-ignore: decorator\n@inline\nfunction scaledown(significand: u64, exp: i32): f64 {\n const denom: u64 = 6103515625; // 1e14 * 0x1p-14\n const scale = reinterpret(0x3F06849B86A12B9B); // 1e-14 * 0x1p32\n\n var shift = clz(significand);\n significand <<= shift;\n shift = exp - shift;\n\n for (; exp <= -14; exp += 14) {\n let q = significand / denom;\n let r = significand % denom;\n let s = clz(q);\n significand = (q << s) + nearest(scale * (r << (s - 18)));\n shift -= s;\n }\n var b = ipow32(5, -exp);\n var q = significand / b;\n var r = significand % b;\n var s = clz(q);\n significand = (q << s) + (reinterpret(reinterpret(r) + (s << 52)) / b);\n shift -= s;\n\n return NativeMath.scalbn(significand, shift);\n}\n\n// Adopted from metallic lib:\n// https://github.com/jdh8/metallic/blob/master/src/stdlib/parse/scientific.h\n// @ts-ignore: decorator\n@inline\nfunction scaleup(significand: u64, exp: i32): f64 {\n const coeff: u32 = 1220703125; // 1e13 * 0x1p-13;\n var shift = ctz(significand);\n significand >>= shift;\n shift += exp;\n\n __fixmulShift = shift;\n for (; exp >= 13; exp -= 13) {\n significand = fixmul(significand, coeff);\n }\n significand = fixmul(significand, ipow32(5, exp));\n shift = __fixmulShift;\n return NativeMath.scalbn(significand, shift);\n}\n\n// Adopted from metallic lib:\n// https://github.com/jdh8/metallic/blob/master/src/stdlib/parse/scientific.h\n// @ts-ignore: decorator\n@inline\nfunction parseExp(ptr: usize, len: i32): i32 {\n var sign = 1, magnitude = 0;\n var code = load(ptr);\n // check code is 'e' or 'E'\n if ((code | 32) != CharCode.e) return 0;\n\n if (!--len) return 0;\n code = load(ptr += 2);\n if (code == CharCode.MINUS) {\n if (!--len) return 0;\n code = load(ptr += 2);\n sign = -1;\n } else if (code == CharCode.PLUS) {\n if (!--len) return 0;\n code = load(ptr += 2);\n }\n // skip zeros\n while (code == CharCode._0) {\n if (!--len) return 0;\n code = load(ptr += 2);\n }\n for (let digit: u32 = code - CharCode._0; len && digit < 10; digit = code - CharCode._0) {\n if (magnitude >= 3200) return sign * 3200;\n magnitude = 10 * magnitude + digit;\n code = load(ptr += 2);\n --len;\n }\n return sign * magnitude;\n}\n\n// @ts-ignore: decorator\n@lazy var __fixmulShift: u64 = 0;\n\n// Adopted from metallic lib:\n// https://github.com/jdh8/metallic/blob/master/src/stdlib/parse/scientific.h\n// @ts-ignore: decorator\n@inline\nfunction fixmul(a: u64, b: u32): u64 {\n var low = (a & 0xFFFFFFFF) * b;\n var high = (a >> 32) * b + (low >> 32);\n var overflow = (high >> 32);\n var space = clz(overflow);\n var revspace: u64 = 32 - space;\n __fixmulShift += revspace;\n return (high << space | (low & 0xFFFFFFFF) >> revspace) + (low << space >> 31 & 1);\n}\n\n// @ts-ignore: decorator\n@inline\nfunction pow10(n: i32): f64 {\n // argument `n` should bounds in [0, 22] range\n return load(POWERS10 + (n << alignof()));\n}\n","import { Math as JSMath } from \"./bindings/dom\";\nexport { JSMath };\n\nimport {\n pow_lut, exp_lut, exp2_lut, log_lut, log2_lut,\n powf_lut, expf_lut, exp2f_lut, logf_lut, log2f_lut\n} from \"./util/math\";\n\nimport {\n abs as builtin_abs,\n ceil as builtin_ceil,\n clz as builtin_clz,\n copysign as builtin_copysign,\n floor as builtin_floor,\n max as builtin_max,\n min as builtin_min,\n sqrt as builtin_sqrt,\n trunc as builtin_trunc\n} from \"./builtins\";\n\n// SUN COPYRIGHT NOTICE\n//\n// Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.\n// Developed at SunPro, a Sun Microsystems, Inc. business.\n// Permission to use, copy, modify, and distribute this software\n// is freely granted, provided that this notice is preserved.\n//\n// Applies to all functions marked with a comment referring here.\n\n/** @internal */\n// @ts-ignore: decorator\n@lazy var rempio2_y0: f64, rempio2_y1: f64, res128_hi: u64;\n\n/** @internal */\n// @ts-ignore: decorator\n@lazy @inline const PIO2_TABLE = memory.data([\n 0x00000000A2F9836E, 0x4E441529FC2757D1, 0xF534DDC0DB629599, 0x3C439041FE5163AB,\n 0xDEBBC561B7246E3A, 0x424DD2E006492EEA, 0x09D1921CFE1DEB1C, 0xB129A73EE88235F5,\n 0x2EBB4484E99C7026, 0xB45F7E413991D639, 0x835339F49C845F8B, 0xBDF9283B1FF897FF,\n 0xDE05980FEF2F118B, 0x5A0A6D1F6D367ECF, 0x27CB09B74F463F66, 0x9E5FEA2D7527BAC7,\n 0xEBE5F17B3D0739F7, 0x8A5292EA6BFB5FB1, 0x1F8D5D0856033046, 0xFC7B6BABF0CFBC20,\n 0x9AF4361DA9E39161, 0x5EE61B086599855F, 0x14A068408DFFD880, 0x4D73273106061557\n]);\n\n/** @internal */\nfunction R(z: f64): f64 { // Rational approximation of (asin(x)-x)/x^3\n const // see: musl/src/math/asin.c and SUN COPYRIGHT NOTICE above\n pS0 = reinterpret(0x3FC5555555555555), // 1.66666666666666657415e-01\n pS1 = reinterpret(0xBFD4D61203EB6F7D), // -3.25565818622400915405e-01\n pS2 = reinterpret(0x3FC9C1550E884455), // 2.01212532134862925881e-01\n pS3 = reinterpret(0xBFA48228B5688F3B), // -4.00555345006794114027e-02\n pS4 = reinterpret(0x3F49EFE07501B288), // 7.91534994289814532176e-04\n pS5 = reinterpret(0x3F023DE10DFDF709), // 3.47933107596021167570e-05\n qS1 = reinterpret(0xC0033A271C8A2D4B), // -2.40339491173441421878e+00\n qS2 = reinterpret(0x40002AE59C598AC8), // 2.02094576023350569471e+00\n qS3 = reinterpret(0xBFE6066C1B8D0159), // -6.88283971605453293030e-01\n qS4 = reinterpret(0x3FB3B8C5B12E9282); // 7.70381505559019352791e-02\n\n var p = z * (pS0 + z * (pS1 + z * (pS2 + z * (pS3 + z * (pS4 + z * pS5)))));\n var q = 1.0 + z * (qS1 + z * (qS2 + z * (qS3 + z * qS4)));\n return p / q;\n}\n\n/** @internal */\n// @ts-ignore: decorator\n@inline\nfunction expo2(x: f64, sign: f64): f64 { // exp(x)/2 for x >= log(DBL_MAX)\n const // see: musl/src/math/__expo2.c\n k = 2043,\n kln2 = reinterpret(0x40962066151ADD8B); // 0x1.62066151add8bp+10\n var scale = reinterpret(((0x3FF + k / 2) << 20) << 32);\n // in directed rounding correct sign before rounding or overflow is important\n return NativeMath.exp(x - kln2) * (sign * scale) * scale;\n}\n\n/** @internal */\n/* Helper function to eventually get bits of π/2 * |x|\n *\n * y = π/4 * (frac << clz(frac) >> 11)\n * return clz(frac)\n *\n * Right shift 11 bits to make upper half fit in `double`\n */\n// @ts-ignore: decorator\n@inline\nfunction pio2_right(q0: u64, q1: u64): u64 { // see: jdh8/metallic/blob/master/src/math/double/rem_pio2.c\n // Bits of π/4\n const p0: u64 = 0xC4C6628B80DC1CD1;\n const p1: u64 = 0xC90FDAA22168C234;\n\n const Ox1p_64 = reinterpret(0x3BF0000000000000); // 0x1p-64\n const Ox1p_75 = reinterpret(0x3B40000000000000); // 0x1p-75\n\n var shift = clz(q1);\n\n q1 = q1 << shift | q0 >> (64 - shift);\n q0 <<= shift;\n\n var lo = umuldi(p1, q1);\n var hi = res128_hi;\n\n var ahi = hi >> 11;\n var alo = lo >> 11 | hi << 53;\n var blo = (Ox1p_75 * p0 * q1 + Ox1p_75 * p1 * q0);\n\n rempio2_y0 = (ahi + u64(lo < blo));\n rempio2_y1 = Ox1p_64 * (alo + blo);\n\n return shift;\n}\n\n/** @internal */\n// @ts-ignore: decorator\n@inline\nfunction umuldi(u: u64, v: u64): u64 {\n var u1: u64 , v1: u64, w0: u64, w1: u64, t: u64;\n\n u1 = u & 0xFFFFFFFF;\n v1 = v & 0xFFFFFFFF;\n\n u >>= 32;\n v >>= 32;\n\n t = u1 * v1;\n w0 = t & 0xFFFFFFFF;\n t = u * v1 + (t >> 32);\n w1 = t >> 32;\n t = u1 * v + (t & 0xFFFFFFFF);\n\n res128_hi = u * v + w1 + (t >> 32);\n return (t << 32) + w0;\n}\n\n/** @internal */\nfunction pio2_large_quot(x: f64, u: i64): i32 { // see: jdh8/metallic/blob/master/src/math/double/rem_pio2.c\n var magnitude = u & 0x7FFFFFFFFFFFFFFF;\n var offset = (magnitude >> 52) - 1045;\n var shift = offset & 63;\n var tblPtr = PIO2_TABLE + ((offset >> 6) << 3);\n var s0: u64, s1: u64, s2: u64;\n\n var b0 = load(tblPtr, 0 << 3);\n var b1 = load(tblPtr, 1 << 3);\n var b2 = load(tblPtr, 2 << 3);\n\n // Get 192 bits of 0x1p-31 / π with `offset` bits skipped\n if (shift) {\n let rshift = 64 - shift;\n let b3 = load(tblPtr, 3 << 3);\n s0 = b1 >> rshift | b0 << shift;\n s1 = b2 >> rshift | b1 << shift;\n s2 = b3 >> rshift | b2 << shift;\n } else {\n s0 = b0;\n s1 = b1;\n s2 = b2;\n }\n\n var significand = (u & 0x000FFFFFFFFFFFFF) | 0x0010000000000000;\n\n // First 128 bits of fractional part of x/(2π)\n var blo = umuldi(s1, significand);\n var bhi = res128_hi;\n\n var ahi = s0 * significand;\n var clo = (s2 >> 32) * (significand >> 32);\n var plo = blo + clo;\n var phi = ahi + bhi + u64(plo < clo);\n\n // r: u128 = p << 2\n var rlo = plo << 2;\n var rhi = phi << 2 | plo >> 62;\n\n // s: i128 = r >> 127\n var slo = rhi >> 63;\n var shi = slo >> 1;\n var q = (phi >> 62) - slo;\n\n var shifter = 0x3CB0000000000000 - (pio2_right(rlo ^ slo, rhi ^ shi) << 52);\n var signbit = (u ^ rhi) & 0x8000000000000000;\n var coeff = reinterpret(shifter | signbit);\n\n rempio2_y0 *= coeff;\n rempio2_y1 *= coeff;\n\n return q;\n}\n\n/** @internal */\n// @ts-ignore: decorator\n@inline\nfunction rempio2(x: f64, u: u64, sign: i32): i32 {\n const\n pio2_1 = reinterpret(0x3FF921FB54400000), // 1.57079632673412561417e+00\n pio2_1t = reinterpret(0x3DD0B4611A626331), // 6.07710050650619224932e-11\n pio2_2 = reinterpret(0x3DD0B4611A600000), // 6.07710050630396597660e-11\n pio2_2t = reinterpret(0x3BA3198A2E037073), // 2.02226624879595063154e-21\n pio2_3 = reinterpret(0x3BA3198A2E000000), // 2.02226624871116645580e-21\n pio2_3t = reinterpret(0x397B839A252049C1), // 8.47842766036889956997e-32\n invpio2 = reinterpret(0x3FE45F306DC9C883); // 0.63661977236758134308\n\n var ix = (u >> 32) & 0x7FFFFFFF;\n\n if (ASC_SHRINK_LEVEL < 1) {\n if (ix < 0x4002D97C) { // |x| < 3pi/4, special case with n=+-1\n let q = 1, z: f64, y0: f64, y1: f64;\n if (!sign) {\n z = x - pio2_1;\n if (ix != 0x3FF921FB) { // 33+53 bit pi is good enough\n y0 = z - pio2_1t;\n y1 = (z - y0) - pio2_1t;\n } else { // near pi/2, use 33+33+53 bit pi\n z -= pio2_2;\n y0 = z - pio2_2t;\n y1 = (z - y0) - pio2_2t;\n }\n } else { // negative x\n z = x + pio2_1;\n if (ix != 0x3FF921FB) { // 33+53 bit pi is good enough\n y0 = z + pio2_1t;\n y1 = (z - y0) + pio2_1t;\n } else { // near pi/2, use 33+33+53 bit pi\n z += pio2_2;\n y0 = z + pio2_2t;\n y1 = (z - y0) + pio2_2t;\n }\n q = -1;\n }\n rempio2_y0 = y0;\n rempio2_y1 = y1;\n return q;\n }\n }\n\n if (ix < 0x413921FB) { // |x| ~< 2^20*pi/2 (1647099)\n // Use precise Cody Waite scheme\n let q = nearest(x * invpio2);\n let r = x - q * pio2_1;\n let w = q * pio2_1t; // 1st round good to 85 bit\n let j = ix >> 20;\n let y0 = r - w;\n let hi = (reinterpret(y0) >> 32);\n let i = j - ((hi >> 20) & 0x7FF);\n\n if (i > 16) { // 2nd iteration needed, good to 118\n let t = r;\n w = q * pio2_2;\n r = t - w;\n w = q * pio2_2t - ((t - r) - w);\n y0 = r - w;\n hi = (reinterpret(y0) >> 32);\n i = j - ((hi >> 20) & 0x7FF);\n if (i > 49) { // 3rd iteration need, 151 bits acc\n let t = r;\n w = q * pio2_3;\n r = t - w;\n w = q * pio2_3t - ((t - r) - w);\n y0 = r - w;\n }\n }\n let y1 = (r - y0) - w;\n rempio2_y0 = y0;\n rempio2_y1 = y1;\n return q;\n }\n var q = pio2_large_quot(x, u);\n return select(-q, q, sign);\n}\n\n/** @internal */\n// @ts-ignore: decorator\n@inline\nfunction sin_kern(x: f64, y: f64, iy: i32): f64 { // see: musl/tree/src/math/__sin.c\n const\n S1 = reinterpret(0xBFC5555555555549), // -1.66666666666666324348e-01\n S2 = reinterpret(0x3F8111111110F8A6), // 8.33333333332248946124e-03\n S3 = reinterpret(0xBF2A01A019C161D5), // -1.98412698298579493134e-04\n S4 = reinterpret(0x3EC71DE357B1FE7D), // 2.75573137070700676789e-06\n S5 = reinterpret(0xBE5AE5E68A2B9CEB), // -2.50507602534068634195e-08\n S6 = reinterpret(0x3DE5D93A5ACFD57C); // 1.58969099521155010221e-10\n\n var z = x * x;\n var w = z * z;\n var r = S2 + z * (S3 + z * S4) + z * w * (S5 + z * S6);\n var v = z * x;\n if (!iy) {\n return x + v * (S1 + z * r);\n } else {\n return x - ((z * (0.5 * y - v * r) - y) - v * S1);\n }\n}\n\n/** @internal */\n// @ts-ignore: decorator\n@inline\nfunction cos_kern(x: f64, y: f64): f64 { // see: musl/tree/src/math/__cos.c\n const\n C1 = reinterpret(0x3FA555555555554C), // 4.16666666666666019037e-02\n C2 = reinterpret(0xBF56C16C16C15177), // -1.38888888888741095749e-03\n C3 = reinterpret(0x3EFA01A019CB1590), // 2.48015872894767294178e-05\n C4 = reinterpret(0xBE927E4F809C52AD), // -2.75573143513906633035e-07\n C5 = reinterpret(0x3E21EE9EBDB4B1C4), // 2.08757232129817482790e-09\n C6 = reinterpret(0xBDA8FAE9BE8838D4); // -1.13596475577881948265e-11\n\n var z = x * x;\n var w = z * z;\n var r = z * (C1 + z * (C2 + z * C3)) + w * w * (C4 + z * (C5 + z * C6));\n var hz = 0.5 * z;\n w = 1.0 - hz;\n return w + (((1.0 - w) - hz) + (z * r - x * y));\n}\n\n/** @internal */\nfunction tan_kern(x: f64, y: f64, iy: i32): f64 { // see: src/lib/msun/src/k_tan.c\n const\n T0 = reinterpret(0x3FD5555555555563), // 3.33333333333334091986e-01\n T1 = reinterpret(0x3FC111111110FE7A), // 1.33333333333201242699e-01\n T2 = reinterpret(0x3FABA1BA1BB341FE), // 5.39682539762260521377e-02\n T3 = reinterpret(0x3F9664F48406D637), // 2.18694882948595424599e-02\n T4 = reinterpret(0x3F8226E3E96E8493), // 8.86323982359930005737e-03\n T5 = reinterpret(0x3F6D6D22C9560328), // 3.59207910759131235356e-03\n T6 = reinterpret(0x3F57DBC8FEE08315), // 1.45620945432529025516e-03\n T7 = reinterpret(0x3F4344D8F2F26501), // 5.88041240820264096874e-04\n T8 = reinterpret(0x3F3026F71A8D1068), // 2.46463134818469906812e-04\n T9 = reinterpret(0x3F147E88A03792A6), // 7.81794442939557092300e-05\n T10 = reinterpret(0x3F12B80F32F0A7E9), // 7.14072491382608190305e-05\n T11 = reinterpret(0xBEF375CBDB605373), // -1.85586374855275456654e-05\n T12 = reinterpret(0x3EFB2A7074BF7AD4); // 2.59073051863633712884e-05\n\n const\n one = reinterpret(0x3FF0000000000000), // 1.00000000000000000000e+00\n pio4 = reinterpret(0x3FE921FB54442D18), // 7.85398163397448278999e-01\n pio4lo = reinterpret(0x3C81A62633145C07); // 3.06161699786838301793e-17\n\n var z: f64, r: f64, v: f64, w: f64, s: f64;\n var hx = (reinterpret(x) >> 32); // high word of x\n var ix = hx & 0x7FFFFFFF; // high word of |x|\n var big = ix >= 0x3FE59428;\n if (big) { // |x| >= 0.6744\n if (hx < 0) { x = -x, y = -y; }\n z = pio4 - x;\n w = pio4lo - y;\n x = z + w;\n y = 0.0;\n }\n z = x * x;\n w = z * z;\n r = T1 + w * (T3 + w * (T5 + w * (T7 + w * (T9 + w * T11))));\n v = z * (T2 + w * (T4 + w * (T6 + w * (T8 + w * (T10 + w * T12)))));\n s = z * x;\n r = y + z * (s * (r + v) + y);\n r += T0 * s;\n w = x + r;\n if (big) {\n v = iy;\n return (1 - ((hx >> 30) & 2)) * (v - 2.0 * (x - (w * w / (w + v) - r)));\n }\n if (iy == 1) return w;\n var a: f64, t: f64;\n z = w;\n z = reinterpret(reinterpret(z) & 0xFFFFFFFF00000000);\n v = r - (z - x); // z + v = r + x\n t = a = -one / w; // a = -1.0 / w\n t = reinterpret(reinterpret(t) & 0xFFFFFFFF00000000);\n s = one + t * z;\n return t + a * (s + t * v);\n}\n\n/** @internal */\nfunction dtoi32(x: f64): i32 {\n if (ASC_SHRINK_LEVEL > 0) {\n const inv32 = 1.0 / 4294967296;\n return (x - 4294967296 * floor(x * inv32));\n } else {\n let result = 0;\n let u = reinterpret(x);\n let e = (u >> 52) & 0x7FF;\n if (e <= 1023 + 30) {\n result = x;\n } else if (e <= 1023 + 30 + 53) {\n let v = (u & ((1 << 52) - 1)) | (1 << 52);\n v = v << e - 1023 - 52 + 32;\n result = (v >> 32);\n result = select(-result, result, u < 0);\n }\n return result;\n }\n}\n\n// @ts-ignore: decorator\n@lazy var random_seeded = false;\n\n// @ts-ignore: decorator\n@lazy var random_state0_64: u64, random_state1_64: u64;\n\n// @ts-ignore: decorator\n@lazy var random_state0_32: u32, random_state1_32: u32;\n\nfunction murmurHash3(h: u64): u64 { // Force all bits of a hash block to avalanche\n h ^= h >> 33; // see: https://github.com/aappleby/smhasher\n h *= 0xFF51AFD7ED558CCD;\n h ^= h >> 33;\n h *= 0xC4CEB9FE1A85EC53;\n h ^= h >> 33;\n return h;\n}\n\nfunction splitMix32(h: u32): u32 {\n h += 0x6D2B79F5;\n h = (h ^ (h >> 15)) * (h | 1);\n h ^= h + (h ^ (h >> 7)) * (h | 61);\n return h ^ (h >> 14);\n}\n\nexport namespace NativeMath {\n\n // @ts-ignore: decorator\n @lazy\n export const E = reinterpret(0x4005BF0A8B145769); // 2.7182818284590452354\n\n // @ts-ignore: decorator\n @lazy\n export const LN2 = reinterpret(0x3FE62E42FEFA39EF); // 0.69314718055994530942\n\n // @ts-ignore: decorator\n @lazy\n export const LN10 = reinterpret(0x40026BB1BBB55516); // 2.30258509299404568402\n\n // @ts-ignore: decorator\n @lazy\n export const LOG2E = reinterpret(0x3FF71547652B82FE); // 1.4426950408889634074\n\n // @ts-ignore: decorator\n @lazy\n export const LOG10E = reinterpret(0x3FDBCB7B1526E50E); // 0.43429448190325182765\n\n // @ts-ignore: decorator\n @lazy\n export const PI = reinterpret(0x400921FB54442D18); // 3.14159265358979323846\n\n // @ts-ignore: decorator\n @lazy\n export const SQRT1_2 = reinterpret(0x3FE6A09E667F3BCD); // 0.70710678118654752440\n\n // @ts-ignore: decorator\n @lazy\n export const SQRT2 = reinterpret(0x3FF6A09E667F3BCD); // 1.41421356237309504880\n\n // @ts-ignore: decorator\n @lazy\n export var sincos_sin: f64 = 0;\n\n // @ts-ignore: decorator\n @lazy\n export var sincos_cos: f64 = 0;\n\n // @ts-ignore: decorator\n @inline export function abs(x: f64): f64 {\n return builtin_abs(x);\n }\n\n export function acos(x: f64): f64 { // see: musl/src/math/acos.c and SUN COPYRIGHT NOTICE above\n const\n pio2_hi = reinterpret(0x3FF921FB54442D18), // 1.57079632679489655800e+00\n pio2_lo = reinterpret(0x3C91A62633145C07), // 6.12323399573676603587e-17\n Ox1p_120f = reinterpret(0x03800000);\n\n var hx = (reinterpret(x) >> 32);\n var ix = hx & 0x7FFFFFFF;\n if (ix >= 0x3FF00000) {\n let lx = reinterpret(x);\n if ((ix - 0x3FF00000 | lx) == 0) {\n if (hx < 0) return 2 * pio2_hi + Ox1p_120f;\n return 0;\n }\n return 0 / (x - x);\n }\n if (ix < 0x3FE00000) {\n if (ix <= 0x3C600000) return pio2_hi + Ox1p_120f;\n return pio2_hi - (x - (pio2_lo - x * R(x * x)));\n }\n var s: f64, w: f64, z: f64;\n if (hx < 0) {\n // z = (1.0 + x) * 0.5;\n z = 0.5 + x * 0.5;\n s = builtin_sqrt(z);\n w = R(z) * s - pio2_lo;\n return 2 * (pio2_hi - (s + w));\n }\n // z = (1.0 - x) * 0.5;\n z = 0.5 - x * 0.5;\n s = builtin_sqrt(z);\n var df = reinterpret(reinterpret(s) & 0xFFFFFFFF00000000);\n var c = (z - df * df) / (s + df);\n w = R(z) * s + c;\n return 2 * (df + w);\n }\n\n export function acosh(x: f64): f64 { // see: musl/src/math/acosh.c\n const s = reinterpret(0x3FE62E42FEFA39EF);\n var u = reinterpret(x);\n // Prevent propagation for all input values less than 1.0.\n // Note musl lib didn't fix this yet.\n if (u < 0x3FF0000000000000) return (x - x) / 0.0;\n var e = u >> 52 & 0x7FF;\n if (e < 0x3FF + 1) return log1p(x - 1 + builtin_sqrt((x - 1) * (x - 1) + 2 * (x - 1)));\n if (e < 0x3FF + 26) return log(2 * x - 1 / (x + builtin_sqrt(x * x - 1)));\n return log(x) + s;\n }\n\n export function asin(x: f64): f64 { // see: musl/src/math/asin.c and SUN COPYRIGHT NOTICE above\n const\n pio2_hi = reinterpret(0x3FF921FB54442D18), // 1.57079632679489655800e+00\n pio2_lo = reinterpret(0x3C91A62633145C07), // 6.12323399573676603587e-17\n Ox1p_120f = reinterpret(0x03800000);\n\n var hx = (reinterpret(x) >> 32);\n var ix = hx & 0x7FFFFFFF;\n if (ix >= 0x3FF00000) {\n let lx = reinterpret(x);\n if ((ix - 0x3FF00000 | lx) == 0) return x * pio2_hi + Ox1p_120f;\n return 0 / (x - x);\n }\n if (ix < 0x3FE00000) {\n if (ix < 0x3E500000 && ix >= 0x00100000) return x;\n return x + x * R(x * x);\n }\n // var z = (1.0 - builtin_abs(x)) * 0.5;\n var z = 0.5 - builtin_abs(x) * 0.5;\n var s = builtin_sqrt(z);\n var r = R(z);\n if (ix >= 0x3FEF3333) x = pio2_hi - (2 * (s + s * r) - pio2_lo);\n else {\n let f = reinterpret(reinterpret(s) & 0xFFFFFFFF00000000);\n let c = (z - f * f) / (s + f);\n x = 0.5 * pio2_hi - (2 * s * r - (pio2_lo - 2 * c) - (0.5 * pio2_hi - 2 * f));\n }\n return select(-x, x, hx < 0);\n }\n\n export function asinh(x: f64): f64 { // see: musl/src/math/asinh.c\n const c = reinterpret(0x3FE62E42FEFA39EF); // 0.693147180559945309417232121458176568\n var u = reinterpret(x);\n var e = u >> 52 & 0x7FF;\n var y = reinterpret(u & 0x7FFFFFFFFFFFFFFF);\n if (e >= 0x3FF + 26) y = log(y) + c;\n else if (e >= 0x3FF + 1) y = log(2 * y + 1 / (builtin_sqrt(y * y + 1) + y));\n else if (e >= 0x3FF - 26) y = log1p(y + y * y / (builtin_sqrt(y * y + 1) + 1));\n return builtin_copysign(y, x);\n }\n\n export function atan(x: f64): f64 { // see musl/src/math/atan.c and SUN COPYRIGHT NOTICE above\n const\n atanhi0 = reinterpret(0x3FDDAC670561BB4F), // 4.63647609000806093515e-01\n atanhi1 = reinterpret(0x3FE921FB54442D18), // 7.85398163397448278999e-01\n atanhi2 = reinterpret(0x3FEF730BD281F69B), // 9.82793723247329054082e-01\n atanhi3 = reinterpret(0x3FF921FB54442D18), // 1.57079632679489655800e+00\n atanlo0 = reinterpret(0x3C7A2B7F222F65E2), // 2.26987774529616870924e-17\n atanlo1 = reinterpret(0x3C81A62633145C07), // 3.06161699786838301793e-17\n atanlo2 = reinterpret(0x3C7007887AF0CBBD), // 1.39033110312309984516e-17\n atanlo3 = reinterpret(0x3C91A62633145C07), // 6.12323399573676603587e-17\n aT0 = reinterpret(0x3FD555555555550D), // 3.33333333333329318027e-01\n aT1 = reinterpret(0xBFC999999998EBC4), // -1.99999999998764832476e-01\n aT2 = reinterpret(0x3FC24924920083FF), // 1.42857142725034663711e-01\n aT3 = reinterpret(0xBFBC71C6FE231671), // -1.11111104054623557880e-01,\n aT4 = reinterpret(0x3FB745CDC54C206E), // 9.09088713343650656196e-02\n aT5 = reinterpret(0xBFB3B0F2AF749A6D), // -7.69187620504482999495e-02\n aT6 = reinterpret(0x3FB10D66A0D03D51), // 6.66107313738753120669e-02\n aT7 = reinterpret(0xBFADDE2D52DEFD9A), // -5.83357013379057348645e-02\n aT8 = reinterpret(0x3FA97B4B24760DEB), // 4.97687799461593236017e-02\n aT9 = reinterpret(0xBFA2B4442C6A6C2F), // -3.65315727442169155270e-02\n aT10 = reinterpret(0x3F90AD3AE322DA11), // 1.62858201153657823623e-02\n Ox1p_120f = reinterpret(0x03800000);\n\n var ix = (reinterpret(x) >> 32);\n var sx = x;\n ix &= 0x7FFFFFFF;\n var z: f64;\n if (ix >= 0x44100000) {\n if (isNaN(x)) return x;\n z = atanhi3 + Ox1p_120f;\n return builtin_copysign(z, sx);\n }\n var id: i32;\n if (ix < 0x3FDC0000) {\n if (ix < 0x3E400000) return x;\n id = -1;\n } else {\n x = builtin_abs(x);\n if (ix < 0x3FF30000) {\n if (ix < 0x3FE60000) {\n id = 0;\n x = (2.0 * x - 1.0) / (2.0 + x);\n } else {\n id = 1;\n x = (x - 1.0) / (x + 1.0);\n }\n } else {\n if (ix < 0x40038000) {\n id = 2;\n x = (x - 1.5) / (1.0 + 1.5 * x);\n } else {\n id = 3;\n x = -1.0 / x;\n }\n }\n }\n z = x * x;\n var w = z * z;\n var s1 = z * (aT0 + w * (aT2 + w * (aT4 + w * (aT6 + w * (aT8 + w * aT10)))));\n var s2 = w * (aT1 + w * (aT3 + w * (aT5 + w * (aT7 + w * aT9))));\n var s3 = x * (s1 + s2);\n if (id < 0) return x - s3;\n switch (id) {\n case 0: { z = atanhi0 - ((s3 - atanlo0) - x); break; }\n case 1: { z = atanhi1 - ((s3 - atanlo1) - x); break; }\n case 2: { z = atanhi2 - ((s3 - atanlo2) - x); break; }\n case 3: { z = atanhi3 - ((s3 - atanlo3) - x); break; }\n default: unreachable();\n }\n return builtin_copysign(z, sx);\n }\n\n export function atanh(x: f64): f64 { // see: musl/src/math/atanh.c\n var u = reinterpret(x);\n var e = u >> 52 & 0x7FF;\n var y = builtin_abs(x);\n if (e < 0x3FF - 1) {\n if (e >= 0x3FF - 32) y = 0.5 * log1p(2 * y + 2 * y * y / (1 - y));\n } else {\n y = 0.5 * log1p(2 * (y / (1 - y)));\n }\n return builtin_copysign(y, x);\n }\n\n export function atan2(y: f64, x: f64): f64 { // see: musl/src/math/atan2.c and SUN COPYRIGHT NOTICE above\n const pi_lo = reinterpret(0x3CA1A62633145C07); // 1.2246467991473531772E-16\n if (isNaN(x) || isNaN(y)) return x + y;\n var u = reinterpret(x);\n var ix = (u >> 32);\n var lx = u;\n u = reinterpret(y);\n var iy = (u >> 32);\n var ly = u;\n if ((ix - 0x3FF00000 | lx) == 0) return atan(y);\n var m = ((iy >> 31) & 1) | ((ix >> 30) & 2);\n ix = ix & 0x7FFFFFFF;\n iy = iy & 0x7FFFFFFF;\n if ((iy | ly) == 0) {\n switch (m) {\n case 0:\n case 1: return y;\n case 2: return PI;\n case 3: return -PI;\n }\n }\n if ((ix | lx) == 0) return m & 1 ? -PI / 2 : PI / 2;\n if (ix == 0x7FF00000) {\n if (iy == 0x7FF00000) {\n let t = m & 2 ? 3 * PI / 4 : PI / 4;\n return m & 1 ? -t : t;\n } else {\n let t = m & 2 ? PI : 0;\n return m & 1 ? -t : t;\n }\n }\n var z: f64;\n if (ix + (64 << 20) < iy || iy == 0x7FF00000) return m & 1 ? -PI / 2 : PI / 2;\n if ((m & 2) && iy + (64 << 20) < ix) z = 0;\n else z = atan(builtin_abs(y / x));\n switch (m) {\n case 0: return z;\n case 1: return -z;\n case 2: return PI - (z - pi_lo);\n case 3: return (z - pi_lo) - PI;\n }\n unreachable();\n return 0;\n }\n\n export function cbrt(x: f64): f64 { // see: musl/src/math/cbrt.c and SUN COPYRIGHT NOTICE above\n const\n B1 = 715094163,\n B2 = 696219795,\n P0 = reinterpret(0x3FFE03E60F61E692), // 1.87595182427177009643\n P1 = reinterpret(0xBFFE28E092F02420), // -1.88497979543377169875\n P2 = reinterpret(0x3FF9F1604A49D6C2), // 1.621429720105354466140\n P3 = reinterpret(0xBFE844CBBEE751D9), // -0.758397934778766047437\n P4 = reinterpret(0x3FC2B000D4E4EDD7), // 0.145996192886612446982\n Ox1p54 = reinterpret(0x4350000000000000); // 0x1p54\n\n var u = reinterpret(x);\n var hx = (u >> 32) & 0x7FFFFFFF;\n if (hx >= 0x7FF00000) return x + x;\n if (hx < 0x00100000) {\n u = reinterpret(x * Ox1p54);\n hx = (u >> 32) & 0x7FFFFFFF;\n if (hx == 0) return x;\n hx = hx / 3 + B2;\n } else {\n hx = hx / 3 + B1;\n }\n u &= 1 << 63;\n u |= hx << 32;\n var t = reinterpret(u);\n var r = (t * t) * (t / x);\n t = t * ((P0 + r * (P1 + r * P2)) + ((r * r) * r) * (P3 + r * P4));\n t = reinterpret((reinterpret(t) + 0x80000000) & 0xFFFFFFFFC0000000);\n var s = t * t;\n r = x / s;\n r = (r - t) / (2 * t + r);\n t = t + t * r;\n return t;\n }\n\n // @ts-ignore: decorator\n @inline\n export function ceil(x: f64): f64 {\n return builtin_ceil(x);\n }\n\n export function clz32(x: f64): f64 {\n if (!isFinite(x)) return 32;\n /*\n * Wasm (MVP) and JS have different approaches for double->int conversions.\n *\n * For emulate JS conversion behavior and avoid trapping from wasm we should modulate by MAX_INT\n * our float-point arguments before actual convertion to integers.\n */\n return builtin_clz(dtoi32(x));\n }\n\n export function cos(x: f64): f64 { // see: musl/src/math/cos.c\n var u = reinterpret(x);\n var ux = u32(u >> 32);\n var sign = ux >> 31;\n\n ux &= 0x7FFFFFFF;\n\n // |x| ~< pi/4\n if (ux <= 0x3FE921FB) {\n if (ux < 0x3E46A09E) { // |x| < 2**-27 * sqrt(2)\n return 1.0;\n }\n return cos_kern(x, 0);\n }\n\n // sin(Inf or NaN) is NaN\n if (ux >= 0x7FF00000) return x - x;\n\n // argument reduction needed\n var n = rempio2(x, u, sign);\n var y0 = rempio2_y0;\n var y1 = rempio2_y1;\n\n x = n & 1 ? sin_kern(y0, y1, 1) : cos_kern(y0, y1);\n return (n + 1) & 2 ? -x : x;\n }\n\n export function cosh(x: f64): f64 { // see: musl/src/math/cosh.c\n var u = reinterpret(x);\n u &= 0x7FFFFFFFFFFFFFFF;\n x = reinterpret(u);\n var w = (u >> 32);\n var t: f64;\n if (w < 0x3FE62E42) {\n if (w < 0x3FF00000 - (26 << 20)) return 1;\n t = expm1(x);\n // return 1 + t * t / (2 * (1 + t));\n return 1 + t * t / (2 + 2 * t);\n }\n if (w < 0x40862E42) {\n t = exp(x);\n return 0.5 * (t + 1 / t);\n }\n t = expo2(x, 1);\n return t;\n }\n\n export function exp(x: f64): f64 { // see: musl/src/math/exp.c and SUN COPYRIGHT NOTICE above\n if (ASC_SHRINK_LEVEL < 1) {\n return exp_lut(x);\n } else {\n const\n ln2hi = reinterpret(0x3FE62E42FEE00000), // 6.93147180369123816490e-01\n ln2lo = reinterpret(0x3DEA39EF35793C76), // 1.90821492927058770002e-10\n invln2 = reinterpret(0x3FF71547652B82FE), // 1.44269504088896338700e+00\n P1 = reinterpret(0x3FC555555555553E), // 1.66666666666666019037e-01\n P2 = reinterpret(0xBF66C16C16BEBD93), // -2.77777777770155933842e-03\n P3 = reinterpret(0x3F11566AAF25DE2C), // 6.61375632143793436117e-05\n P4 = reinterpret(0xBEBBBD41C5D26BF1), // -1.65339022054652515390e-06\n P5 = reinterpret(0x3E66376972BEA4D0), // 4.13813679705723846039e-08\n overflow = reinterpret(0x40862E42FEFA39EF), // 709.782712893383973096\n underflow = reinterpret(0xC0874910D52D3051), // -745.13321910194110842\n Ox1p1023 = reinterpret(0x7FE0000000000000); // 0x1p1023\n\n let hx = u32(reinterpret(x) >> 32);\n let sign = hx >> 31;\n hx &= 0x7FFFFFFF;\n if (hx >= 0x4086232B) {\n if (isNaN(x)) return x;\n if (x > overflow) return x * Ox1p1023;\n if (x < underflow) return 0;\n }\n let hi: f64, lo: f64 = 0;\n let k = 0;\n if (hx > 0x3FD62E42) {\n if (hx >= 0x3FF0A2B2) {\n k = i32(invln2 * x + builtin_copysign(0.5, x));\n } else {\n k = 1 - (sign << 1);\n }\n hi = x - k * ln2hi;\n lo = k * ln2lo;\n x = hi - lo;\n } else if (hx > 0x3E300000) {\n hi = x;\n } else return 1.0 + x;\n let xs = x * x;\n // var c = x - xp2 * (P1 + xp2 * (P2 + xp2 * (P3 + xp2 * (P4 + xp2 * P5))));\n let xq = xs * xs;\n let c = x - (xs * P1 + xq * ((P2 + xs * P3) + xq * (P4 + xs * P5)));\n let y = 1.0 + (x * c / (2 - c) - lo + hi);\n return k == 0 ? y : scalbn(y, k);\n }\n }\n\n export function exp2(x: f64): f64 {\n return exp2_lut(x);\n }\n\n export function expm1(x: f64): f64 { // see: musl/src/math/expm1.c and SUN COPYRIGHT NOTICE above\n const\n o_threshold = reinterpret(0x40862E42FEFA39EF), // 7.09782712893383973096e+02\n ln2_hi = reinterpret(0x3FE62E42FEE00000), // 6.93147180369123816490e-01\n ln2_lo = reinterpret(0x3DEA39EF35793C76), // 1.90821492927058770002e-10\n invln2 = reinterpret(0x3FF71547652B82FE), // 1.44269504088896338700e+00\n Q1 = reinterpret(0xBFA11111111110F4), // -3.33333333333331316428e-02\n Q2 = reinterpret(0x3F5A01A019FE5585), // 1.58730158725481460165e-03\n Q3 = reinterpret(0xBF14CE199EAADBB7), // -7.93650757867487942473e-05\n Q4 = reinterpret(0x3ED0CFCA86E65239), // 4.00821782732936239552e-06\n Q5 = reinterpret(0xBE8AFDB76E09C32D), // -2.01099218183624371326e-07\n Ox1p1023 = reinterpret(0x7FE0000000000000); // 0x1p1023\n\n var u = reinterpret(x);\n var hx = u32(u >> 32) & 0x7FFFFFFF;\n var sign = u32(u >> 63);\n var k = 0;\n if (hx >= 0x4043687A) {\n if (isNaN(x)) return x;\n if (sign) return -1;\n if (x > o_threshold) return x * Ox1p1023;\n }\n var c = 0.0, t: f64;\n if (hx > 0x3FD62E42) {\n k = select(\n 1 - (sign << 1),\n i32(invln2 * x + builtin_copysign(0.5, x)),\n hx < 0x3FF0A2B2\n );\n t = k;\n let hi = x - t * ln2_hi;\n let lo = t * ln2_lo;\n x = hi - lo;\n c = (hi - x) - lo;\n } else if (hx < 0x3C900000) return x;\n var hfx = 0.5 * x;\n var hxs = x * hfx;\n // var r1 = 1.0 + hxs * (Q1 + hxs * (Q2 + hxs * (Q3 + hxs * (Q4 + hxs * Q5))));\n var hxq = hxs * hxs;\n var r1 = (1.0 + hxs * Q1) + hxq * ((Q2 + hxs * Q3) + hxq * (Q4 + hxs * Q5));\n t = 3.0 - r1 * hfx;\n var e = hxs * ((r1 - t) / (6.0 - x * t));\n if (k == 0) return x - (x * e - hxs);\n e = x * (e - c) - c;\n e -= hxs;\n if (k == -1) return 0.5 * (x - e) - 0.5;\n if (k == 1) {\n if (x < -0.25) return -2.0 * (e - (x + 0.5));\n return 1.0 + 2.0 * (x - e);\n }\n u = (0x3FF + k) << 52;\n var twopk = reinterpret(u);\n var y: f64;\n if (k < 0 || k > 56) {\n y = x - e + 1.0;\n if (k == 1024) y = y * 2.0 * Ox1p1023;\n else y = y * twopk;\n return y - 1.0;\n }\n u = (0x3FF - k) << 52;\n y = reinterpret(u);\n if (k < 20) y = (1 - y) - e;\n else y = 1 - (e + y);\n return (x + y) * twopk;\n }\n\n // @ts-ignore: decorator\n @inline\n export function floor(x: f64): f64 {\n return builtin_floor(x);\n }\n\n // @ts-ignore: decorator\n @inline\n export function fround(x: f64): f64 {\n return x;\n }\n\n export function hypot(x: f64, y: f64): f64 { // see: musl/src/math/hypot.c\n const\n SPLIT = reinterpret(0x41A0000000000000) + 1, // 0x1p27 + 1\n Ox1p700 = reinterpret(0x6BB0000000000000),\n Ox1p_700 = reinterpret(0x1430000000000000);\n\n var ux = reinterpret(x);\n var uy = reinterpret(y);\n ux &= 0x7FFFFFFFFFFFFFFF;\n uy &= 0x7FFFFFFFFFFFFFFF;\n if (ux < uy) {\n let ut = ux;\n ux = uy;\n uy = ut;\n }\n var ex = i32(ux >> 52);\n var ey = i32(uy >> 52);\n y = reinterpret(uy);\n if (ey == 0x7FF) return y;\n x = reinterpret(ux);\n if (ex == 0x7FF || uy == 0) return x;\n if (ex - ey > 64) return x + y;\n var z = 1.0;\n if (ex > 0x3FF + 510) {\n z = Ox1p700;\n x *= Ox1p_700;\n y *= Ox1p_700;\n } else if (ey < 0x3FF - 450) {\n z = Ox1p_700;\n x *= Ox1p700;\n y *= Ox1p700;\n }\n var c = x * SPLIT;\n var h = x - c + c;\n var l = x - h;\n var hx = x * x;\n var lx = h * h - hx + (2 * h + l) * l;\n c = y * SPLIT;\n h = y - c + c;\n l = y - h;\n var hy = y * y;\n var ly = h * h - hy + (2 * h + l) * l;\n return z * builtin_sqrt(ly + lx + hy + hx);\n }\n\n export function imul(x: f64, y: f64): f64 {\n /*\n * Wasm (MVP) and JS have different approaches for double->int conversions.\n *\n * For emulate JS conversion behavior and avoid trapping from wasm we should modulate by MAX_INT\n * our float-point arguments before actual convertion to integers.\n */\n if (!isFinite(x + y)) return 0;\n return dtoi32(x) * dtoi32(y);\n }\n\n export function log(x: f64): f64 { // see: musl/src/math/log.c and SUN COPYRIGHT NOTICE above\n if (ASC_SHRINK_LEVEL < 1) {\n return log_lut(x);\n } else {\n const\n ln2_hi = reinterpret(0x3FE62E42FEE00000), // 6.93147180369123816490e-01\n ln2_lo = reinterpret(0x3DEA39EF35793C76), // 1.90821492927058770002e-10\n Lg1 = reinterpret(0x3FE5555555555593), // 6.666666666666735130e-01\n Lg2 = reinterpret(0x3FD999999997FA04), // 3.999999999940941908e-01\n Lg3 = reinterpret(0x3FD2492494229359), // 2.857142874366239149e-01\n Lg4 = reinterpret(0x3FCC71C51D8E78AF), // 2.222219843214978396e-01\n Lg5 = reinterpret(0x3FC7466496CB03DE), // 1.818357216161805012e-01\n Lg6 = reinterpret(0x3FC39A09D078C69F), // 1.531383769920937332e-01\n Lg7 = reinterpret(0x3FC2F112DF3E5244), // 1.479819860511658591e-01\n Ox1p54 = reinterpret(0x4350000000000000); // 0x1p54\n\n let u = reinterpret(x);\n let hx = u32(u >> 32);\n let k = 0;\n let sign = hx >> 31;\n if (sign || hx < 0x00100000) {\n if (u << 1 == 0) return -1 / (x * x);\n if (sign) return (x - x) / 0.0;\n k -= 54;\n x *= Ox1p54;\n u = reinterpret(x);\n hx = u32(u >> 32);\n } else if (hx >= 0x7FF00000) {\n return x;\n } else if (hx == 0x3FF00000 && u << 32 == 0) {\n return 0;\n }\n hx += 0x3FF00000 - 0x3FE6A09E;\n k += (hx >> 20) - 0x3FF;\n hx = (hx & 0x000FFFFF) + 0x3FE6A09E;\n u = hx << 32 | (u & 0xFFFFFFFF);\n x = reinterpret(u);\n let f = x - 1.0;\n let hfsq = 0.5 * f * f;\n let s = f / (2.0 + f);\n let z = s * s;\n let w = z * z;\n let t1 = w * (Lg2 + w * (Lg4 + w * Lg6));\n let t2 = z * (Lg1 + w * (Lg3 + w * (Lg5 + w * Lg7)));\n let r = t2 + t1;\n let dk = k;\n return s * (hfsq + r) + dk * ln2_lo - hfsq + f + dk * ln2_hi;\n }\n }\n\n export function log10(x: f64): f64 { // see: musl/src/math/log10.c and SUN COPYRIGHT NOTICE above\n const\n ivln10hi = reinterpret(0x3FDBCB7B15200000), // 4.34294481878168880939e-01\n ivln10lo = reinterpret(0x3DBB9438CA9AADD5), // 2.50829467116452752298e-11\n log10_2hi = reinterpret(0x3FD34413509F6000), // 3.01029995663611771306e-01\n log10_2lo = reinterpret(0x3D59FEF311F12B36), // 3.69423907715893078616e-13\n Lg1 = reinterpret(0x3FE5555555555593), // 6.666666666666735130e-01\n Lg2 = reinterpret(0x3FD999999997FA04), // 3.999999999940941908e-01\n Lg3 = reinterpret(0x3FD2492494229359), // 2.857142874366239149e-01\n Lg4 = reinterpret(0x3FCC71C51D8E78AF), // 2.222219843214978396e-01\n Lg5 = reinterpret(0x3FC7466496CB03DE), // 1.818357216161805012e-01\n Lg6 = reinterpret(0x3FC39A09D078C69F), // 1.531383769920937332e-01\n Lg7 = reinterpret(0x3FC2F112DF3E5244), // 1.479819860511658591e-01\n Ox1p54 = reinterpret(0x4350000000000000); // 0x1p54\n\n var u = reinterpret(x);\n var hx = u32(u >> 32);\n var k = 0;\n var sign = hx >> 31;\n if (sign || hx < 0x00100000) {\n if (u << 1 == 0) return -1 / (x * x);\n if (sign) return (x - x) / 0.0;\n k -= 54;\n x *= Ox1p54;\n u = reinterpret(x);\n hx = u32(u >> 32);\n } else if (hx >= 0x7FF00000) {\n return x;\n } else if (hx == 0x3FF00000 && u << 32 == 0) {\n return 0;\n }\n hx += 0x3FF00000 - 0x3FE6A09E;\n k += i32(hx >> 20) - 0x3FF;\n hx = (hx & 0x000FFFFF) + 0x3FE6A09E;\n u = hx << 32 | (u & 0xFFFFFFFF);\n x = reinterpret(u);\n var f = x - 1.0;\n var hfsq = 0.5 * f * f;\n var s = f / (2.0 + f);\n var z = s * s;\n var w = z * z;\n var t1 = w * (Lg2 + w * (Lg4 + w * Lg6));\n var t2 = z * (Lg1 + w * (Lg3 + w * (Lg5 + w * Lg7)));\n var r = t2 + t1;\n var hi = f - hfsq;\n u = reinterpret(hi);\n u &= 0xFFFFFFFF00000000;\n hi = reinterpret(u);\n var lo = f - hi - hfsq + s * (hfsq + r);\n var val_hi = hi * ivln10hi;\n var dk = k;\n var y = dk * log10_2hi;\n var val_lo = dk * log10_2lo + (lo + hi) * ivln10lo + lo * ivln10hi;\n w = y + val_hi;\n val_lo += (y - w) + val_hi;\n return val_lo + w;\n }\n\n export function log1p(x: f64): f64 { // see: musl/src/math/log1p.c and SUN COPYRIGHT NOTICE above\n const\n ln2_hi = reinterpret(0x3FE62E42FEE00000), // 6.93147180369123816490e-01\n ln2_lo = reinterpret(0x3DEA39EF35793C76), // 1.90821492927058770002e-10\n Lg1 = reinterpret(0x3FE5555555555593), // 6.666666666666735130e-01\n Lg2 = reinterpret(0x3FD999999997FA04), // 3.999999999940941908e-01\n Lg3 = reinterpret(0x3FD2492494229359), // 2.857142874366239149e-01\n Lg4 = reinterpret(0x3FCC71C51D8E78AF), // 2.222219843214978396e-01\n Lg5 = reinterpret(0x3FC7466496CB03DE), // 1.818357216161805012e-01\n Lg6 = reinterpret(0x3FC39A09D078C69F), // 1.531383769920937332e-01\n Lg7 = reinterpret(0x3FC2F112DF3E5244); // 1.479819860511658591e-01\n\n var u = reinterpret(x);\n var hx = u32(u >> 32);\n var k = 1;\n var c = 0.0, f = 0.0;\n if (hx < 0x3FDA827A || bool(hx >> 31)) {\n if (hx >= 0xBFF00000) {\n if (x == -1) return x / 0.0;\n return (x - x) / 0.0;\n }\n if (hx << 1 < 0x3CA00000 << 1) return x;\n if (hx <= 0xBFD2BEC4) {\n k = 0;\n c = 0;\n f = x;\n }\n } else if (hx >= 0x7FF00000) return x;\n if (k) {\n u = reinterpret(1 + x);\n let hu = u32(u >> 32);\n hu += 0x3FF00000 - 0x3FE6A09E;\n k = i32(hu >> 20) - 0x3FF;\n if (k < 54) {\n let uf = reinterpret(u);\n c = k >= 2 ? 1 - (uf - x) : x - (uf - 1);\n c /= uf;\n } else c = 0;\n hu = (hu & 0x000FFFFF) + 0x3FE6A09E;\n u = hu << 32 | (u & 0xFFFFFFFF);\n f = reinterpret(u) - 1;\n }\n var hfsq = 0.5 * f * f;\n var s = f / (2.0 + f);\n var z = s * s;\n var w = z * z;\n var t1 = w * (Lg2 + w * (Lg4 + w * Lg6));\n var t2 = z * (Lg1 + w * (Lg3 + w * (Lg5 + w * Lg7)));\n var r = t2 + t1;\n var dk = k;\n return s * (hfsq + r) + (dk * ln2_lo + c) - hfsq + f + dk * ln2_hi;\n }\n\n export function log2(x: f64): f64 { // see: musl/src/math/log2.c and SUN COPYRIGHT NOTICE above\n if (ASC_SHRINK_LEVEL < 1) {\n return log2_lut(x);\n } else {\n const\n ivln2hi = reinterpret(0x3FF7154765200000), // 1.44269504072144627571e+00\n ivln2lo = reinterpret(0x3DE705FC2EEFA200), // 1.67517131648865118353e-10\n Lg1 = reinterpret(0x3FE5555555555593), // 6.666666666666735130e-01\n Lg2 = reinterpret(0x3FD999999997FA04), // 3.999999999940941908e-01\n Lg3 = reinterpret(0x3FD2492494229359), // 2.857142874366239149e-01\n Lg4 = reinterpret(0x3FCC71C51D8E78AF), // 2.222219843214978396e-01\n Lg5 = reinterpret(0x3FC7466496CB03DE), // 1.818357216161805012e-01\n Lg6 = reinterpret(0x3FC39A09D078C69F), // 1.531383769920937332e-01\n Lg7 = reinterpret(0x3FC2F112DF3E5244), // 1.479819860511658591e-01\n Ox1p54 = reinterpret(0x4350000000000000); // 1p54\n\n let u = reinterpret(x);\n let hx = u32(u >> 32);\n let k = 0;\n let sign = hx >> 31;\n if (sign || hx < 0x00100000) {\n if (u << 1 == 0) return -1 / (x * x);\n if (sign) return (x - x) / 0.0;\n k -= 54;\n x *= Ox1p54;\n u = reinterpret(x);\n hx = u32(u >> 32);\n } else if (hx >= 0x7FF00000) {\n return x;\n } else if (hx == 0x3FF00000 && u << 32 == 0) {\n return 0;\n }\n hx += 0x3FF00000 - 0x3FE6A09E;\n k += i32(hx >> 20) - 0x3FF;\n hx = (hx & 0x000FFFFF) + 0x3FE6A09E;\n u = hx << 32 | (u & 0xFFFFFFFF);\n x = reinterpret(u);\n let f = x - 1.0;\n let hfsq = 0.5 * f * f;\n let s = f / (2.0 + f);\n let z = s * s;\n let w = z * z;\n let t1 = w * (Lg2 + w * (Lg4 + w * Lg6));\n let t2 = z * (Lg1 + w * (Lg3 + w * (Lg5 + w * Lg7)));\n let r = t2 + t1;\n let hi = f - hfsq;\n u = reinterpret(hi);\n u &= 0xFFFFFFFF00000000;\n hi = reinterpret(u);\n let lo = f - hi - hfsq + s * (hfsq + r);\n let val_hi = hi * ivln2hi;\n let val_lo = (lo + hi) * ivln2lo + lo * ivln2hi;\n let y = k;\n w = y + val_hi;\n val_lo += (y - w) + val_hi;\n val_hi = w;\n return val_lo + val_hi;\n }\n }\n\n // @ts-ignore: decorator\n @inline\n export function max(value1: f64, value2: f64): f64 {\n return builtin_max(value1, value2);\n }\n\n // @ts-ignore: decorator\n @inline\n export function min(value1: f64, value2: f64): f64 {\n return builtin_min(value1, value2);\n }\n\n export function pow(x: f64, y: f64): f64 { // see: musl/src/math/pow.c and SUN COPYRIGHT NOTICE above\n // TODO: remove this fast pathes after introduced own mid-end IR with \"stdlib call simplify\" transforms\n if (builtin_abs(y) <= 2) {\n if (y == 2.0) return x * x;\n if (y == 0.5) {\n return select(\n builtin_abs(builtin_sqrt(x)),\n Infinity,\n x != -Infinity\n );\n }\n if (y == -1.0) return 1 / x;\n if (y == 1.0) return x;\n if (y == 0.0) return 1.0;\n }\n if (ASC_SHRINK_LEVEL < 1) {\n return pow_lut(x, y);\n } else {\n const\n dp_h1 = reinterpret(0x3FE2B80340000000), // 5.84962487220764160156e-01\n dp_l1 = reinterpret(0x3E4CFDEB43CFD006), // 1.35003920212974897128e-08\n two53 = reinterpret(0x4340000000000000), // 9007199254740992.0\n huge = reinterpret(0x7E37E43C8800759C), // 1e+300\n tiny = reinterpret(0x01A56E1FC2F8F359), // 1e-300\n L1 = reinterpret(0x3FE3333333333303), // 5.99999999999994648725e-01\n L2 = reinterpret(0x3FDB6DB6DB6FABFF), // 4.28571428578550184252e-01\n L3 = reinterpret(0x3FD55555518F264D), // 3.33333329818377432918e-01\n L4 = reinterpret(0x3FD17460A91D4101), // 2.72728123808534006489e-01\n L5 = reinterpret(0x3FCD864A93C9DB65), // 2.30660745775561754067e-01\n L6 = reinterpret(0x3FCA7E284A454EEF), // 2.06975017800338417784e-01\n P1 = reinterpret(0x3FC555555555553E), // 1.66666666666666019037e-01\n P2 = reinterpret(0xBF66C16C16BEBD93), // -2.77777777770155933842e-03\n P3 = reinterpret(0x3F11566AAF25DE2C), // 6.61375632143793436117e-05\n P4 = reinterpret(0xBEBBBD41C5D26BF1), // -1.65339022054652515390e-06\n P5 = reinterpret(0x3E66376972BEA4D0), // 4.13813679705723846039e-08\n lg2 = reinterpret(0x3FE62E42FEFA39EF), // 6.93147180559945286227e-01\n lg2_h = reinterpret(0x3FE62E4300000000), // 6.93147182464599609375e-01\n lg2_l = reinterpret(0xBE205C610CA86C39), // -1.90465429995776804525e-09\n ovt = reinterpret(0x3C971547652B82FE), // 8.0085662595372944372e-017\n cp = reinterpret(0x3FEEC709DC3A03FD), // 9.61796693925975554329e-01\n cp_h = reinterpret(0x3FEEC709E0000000), // 9.61796700954437255859e-01\n cp_l = reinterpret(0xBE3E2FE0145B01F5), // -7.02846165095275826516e-09\n ivln2 = reinterpret(0x3FF71547652B82FE), // 1.44269504088896338700e+00\n ivln2_h = reinterpret(0x3FF7154760000000), // 1.44269502162933349609e+00\n ivln2_l = reinterpret(0x3E54AE0BF85DDF44), // 1.92596299112661746887e-08\n inv3 = reinterpret(0x3FD5555555555555); // 0.3333333333333333333333\n\n let u_ = reinterpret(x);\n let hx = i32(u_ >> 32);\n let lx = u_;\n u_ = reinterpret(y);\n let hy = i32(u_ >> 32);\n let ly = u_;\n let ix = hx & 0x7FFFFFFF;\n let iy = hy & 0x7FFFFFFF;\n if ((iy | ly) == 0) return 1.0; // x**0 = 1, even if x is NaN\n // if (hx == 0x3FF00000 && lx == 0) return 1.0; // C: 1**y = 1, even if y is NaN, JS: NaN\n if ( // NaN if either arg is NaN\n ix > 0x7FF00000 || (ix == 0x7FF00000 && lx != 0) ||\n iy > 0x7FF00000 || (iy == 0x7FF00000 && ly != 0)\n ) return x + y;\n let yisint = 0, k: i32;\n if (hx < 0) {\n if (iy >= 0x43400000) yisint = 2;\n else if (iy >= 0x3FF00000) {\n k = (iy >> 20) - 0x3FF;\n let offset = select(52, 20, k > 20) - k;\n let Ly = select(ly, iy, k > 20);\n let jj = Ly >> offset;\n if ((jj << offset) == Ly) yisint = 2 - (jj & 1);\n }\n }\n if (ly == 0) {\n if (iy == 0x7FF00000) { // y is +-inf\n if (((ix - 0x3FF00000) | lx) == 0) return NaN; // C: (-1)**+-inf is 1, JS: NaN\n else if (ix >= 0x3FF00000) return hy >= 0 ? y : 0.0; // (|x|>1)**+-inf = inf,0\n else return hy >= 0 ? 0.0 : -y; // (|x|<1)**+-inf = 0,inf\n }\n if (iy == 0x3FF00000) {\n if (hy >= 0) return x;\n return 1 / x;\n }\n if (hy == 0x40000000) return x * x;\n if (hy == 0x3FE00000) {\n if (hx >= 0) return builtin_sqrt(x);\n }\n }\n let ax = builtin_abs(x), z: f64;\n if (lx == 0) {\n if (ix == 0 || ix == 0x7FF00000 || ix == 0x3FF00000) {\n z = ax;\n if (hy < 0) z = 1.0 / z;\n if (hx < 0) {\n if (((ix - 0x3FF00000) | yisint) == 0) {\n let d = z - z;\n z = d / d;\n } else if (yisint == 1) z = -z;\n }\n return z;\n }\n }\n let s = 1.0;\n if (hx < 0) {\n if (yisint == 0) {\n let d = x - x;\n return d / d;\n }\n if (yisint == 1) s = -1.0;\n }\n let t1: f64, t2: f64, p_h: f64, p_l: f64, r: f64, t: f64, u: f64, v: f64, w: f64;\n let j: i32, n: i32;\n if (iy > 0x41E00000) {\n if (iy > 0x43F00000) {\n if (ix <= 0x3FEFFFFF) return hy < 0 ? huge * huge : tiny * tiny;\n if (ix >= 0x3FF00000) return hy > 0 ? huge * huge : tiny * tiny;\n }\n if (ix < 0x3FEFFFFF) return hy < 0 ? s * huge * huge : s * tiny * tiny;\n if (ix > 0x3FF00000) return hy > 0 ? s * huge * huge : s * tiny * tiny;\n t = ax - 1.0;\n w = (t * t) * (0.5 - t * (inv3 - t * 0.25));\n u = ivln2_h * t;\n v = t * ivln2_l - w * ivln2;\n t1 = u + v;\n t1 = reinterpret(reinterpret(t1) & 0xFFFFFFFF00000000);\n t2 = v - (t1 - u);\n } else {\n let ss: f64, s2: f64, s_h: f64, s_l: f64, t_h: f64, t_l: f64;\n n = 0;\n if (ix < 0x00100000) {\n ax *= two53;\n n -= 53;\n ix = (reinterpret(ax) >> 32);\n }\n n += (ix >> 20) - 0x3FF;\n j = ix & 0x000FFFFF;\n ix = j | 0x3FF00000;\n if (j <= 0x3988E) k = 0;\n else if (j < 0xBB67A) k = 1;\n else {\n k = 0;\n n += 1;\n ix -= 0x00100000;\n }\n ax = reinterpret(reinterpret(ax) & 0xFFFFFFFF | (ix << 32));\n let bp = select(1.5, 1.0, k); // k ? 1.5 : 1.0\n u = ax - bp;\n v = 1.0 / (ax + bp);\n ss = u * v;\n s_h = ss;\n s_h = reinterpret(reinterpret(s_h) & 0xFFFFFFFF00000000);\n t_h = reinterpret(u64(((ix >> 1) | 0x20000000) + 0x00080000 + (k << 18)) << 32);\n t_l = ax - (t_h - bp);\n s_l = v * ((u - s_h * t_h) - s_h * t_l);\n s2 = ss * ss;\n r = s2 * s2 * (L1 + s2 * (L2 + s2 * (L3 + s2 * (L4 + s2 * (L5 + s2 * L6)))));\n r += s_l * (s_h + ss);\n s2 = s_h * s_h;\n t_h = 3.0 + s2 + r;\n t_h = reinterpret(reinterpret(t_h) & 0xFFFFFFFF00000000);\n t_l = r - ((t_h - 3.0) - s2);\n u = s_h * t_h;\n v = s_l * t_h + t_l * ss;\n p_h = u + v;\n p_h = reinterpret(reinterpret(p_h) & 0xFFFFFFFF00000000);\n p_l = v - (p_h - u);\n let z_h = cp_h * p_h;\n let dp_l = select(dp_l1, 0.0, k);\n let z_l = cp_l * p_h + p_l * cp + dp_l;\n t = n;\n let dp_h = select(dp_h1, 0.0, k);\n t1 = ((z_h + z_l) + dp_h) + t;\n t1 = reinterpret(reinterpret(t1) & 0xFFFFFFFF00000000);\n t2 = z_l - (((t1 - t) - dp_h) - z_h);\n }\n let y1 = y;\n y1 = reinterpret(reinterpret(y1) & 0xFFFFFFFF00000000);\n p_l = (y - y1) * t1 + y * t2;\n p_h = y1 * t1;\n z = p_l + p_h;\n u_ = reinterpret(z);\n j = u32(u_ >> 32);\n let i = u_;\n if (j >= 0x40900000) {\n if (((j - 0x40900000) | i) != 0) return s * huge * huge;\n if (p_l + ovt > z - p_h) return s * huge * huge;\n } else if ((j & 0x7FFFFFFF) >= 0x4090CC00) {\n if (((j - 0xC090CC00) | i) != 0) return s * tiny * tiny;\n if (p_l <= z - p_h) return s * tiny * tiny;\n }\n i = j & 0x7FFFFFFF;\n k = (i >> 20) - 0x3FF;\n n = 0;\n if (i > 0x3FE00000) {\n n = j + (0x00100000 >> (k + 1));\n k = ((n & 0x7FFFFFFF) >> 20) - 0x3FF;\n t = 0.0;\n t = reinterpret(u64(n & ~(0x000FFFFF >> k)) << 32);\n n = ((n & 0x000FFFFF) | 0x00100000) >> (20 - k);\n if (j < 0) n = -n;\n p_h -= t;\n }\n t = p_l + p_h;\n t = reinterpret(reinterpret(t) & 0xFFFFFFFF00000000);\n u = t * lg2_h;\n v = (p_l - (t - p_h)) * lg2 + t * lg2_l;\n z = u + v;\n w = v - (z - u);\n t = z * z;\n t1 = z - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5))));\n r = (z * t1) / (t1 - 2.0) - (w + z * w);\n z = 1.0 - (r - z);\n j = u32(reinterpret(z) >> 32);\n j += n << 20;\n if ((j >> 20) <= 0) z = scalbn(z, n);\n else z = reinterpret(reinterpret(z) & 0xFFFFFFFF | (j << 32));\n return s * z;\n }\n }\n\n export function seedRandom(value: i64): void {\n // Instead zero seed use golden ratio:\n // phi = (1 + sqrt(5)) / 2\n // trunc(2^64 / phi) = 0x9e3779b97f4a7c15\n if (value == 0) value = 0x9e3779b97f4a7c15;\n random_state0_64 = murmurHash3(value);\n random_state1_64 = murmurHash3(~random_state0_64);\n random_state0_32 = splitMix32(value);\n random_state1_32 = splitMix32(random_state0_32);\n random_seeded = true;\n }\n\n export function random(): f64 { // see: v8/src/base/utils/random-number-generator.cc\n if (!random_seeded) seedRandom(reinterpret(seed()));\n var s1 = random_state0_64;\n var s0 = random_state1_64;\n random_state0_64 = s0;\n s1 ^= s1 << 23;\n s1 ^= s1 >> 17;\n s1 ^= s0;\n s1 ^= s0 >> 26;\n random_state1_64 = s1;\n var r = (s0 >> 12) | 0x3FF0000000000000;\n return reinterpret(r) - 1;\n }\n\n export function round(x: f64): f64 {\n if (ASC_SHRINK_LEVEL > 0) {\n return builtin_ceil(x) - f64(builtin_ceil(x) - 0.5 > x);\n } else {\n let roundUp = builtin_ceil(x);\n return select(roundUp, roundUp - 1.0, roundUp - 0.5 <= x);\n }\n }\n\n export function sign(x: f64): f64 {\n if (ASC_SHRINK_LEVEL > 0) {\n return select(builtin_copysign(1, x), x, builtin_abs(x) > 0);\n } else {\n return select(1, select(-1, x, x < 0), x > 0);\n }\n }\n\n // @ts-ignore: decorator\n @inline\n export function signbit(x: f64): bool {\n return bool(reinterpret(x) >>> 63);\n }\n\n export function sin(x: f64): f64 { // see: musl/src/math/sin.c\n var u = reinterpret(x);\n var ux = u32(u >> 32);\n var sign = ux >> 31;\n\n ux &= 0x7FFFFFFF;\n\n // |x| ~< pi/4\n if (ux <= 0x3FE921FB) {\n if (ux < 0x3E500000) { // |x| < 2**-26\n return x;\n }\n return sin_kern(x, 0.0, 0);\n }\n\n // sin(Inf or NaN) is NaN\n if (ux >= 0x7FF00000) return x - x;\n\n // argument reduction needed\n var n = rempio2(x, u, sign);\n var y0 = rempio2_y0;\n var y1 = rempio2_y1;\n\n x = n & 1 ? cos_kern(y0, y1) : sin_kern(y0, y1, 1);\n return n & 2 ? -x : x;\n }\n\n export function sinh(x: f64): f64 { // see: musl/src/math/sinh.c\n var u = reinterpret(x) & 0x7FFFFFFFFFFFFFFF;\n var a = reinterpret(u);\n var w = u32(u >> 32);\n var h = builtin_copysign(0.5, x);\n if (w < 0x40862E42) {\n let t = expm1(a);\n if (w < 0x3FF00000) {\n if (w < 0x3FF00000 - (26 << 20)) return x;\n return h * (2 * t - t * t / (t + 1));\n }\n return h * (t + t / (t + 1));\n }\n return expo2(a, 2 * h);\n }\n\n // @ts-ignore: decorator\n @inline\n export function sqrt(x: f64): f64 {\n return builtin_sqrt(x);\n }\n\n export function tan(x: f64): f64 { // see: musl/src/math/tan.c\n var u = reinterpret(x);\n var ux = u32(u >> 32);\n var sign = ux >>> 31;\n\n ux &= 0x7FFFFFFF;\n\n // |x| ~< pi/4\n if (ux <= 0x3FE921FB) {\n if (ux < 0x3E400000) { // |x| < 2**-27\n return x;\n }\n return tan_kern(x, 0.0, 1);\n }\n\n // tan(Inf or NaN) is NaN\n if (ux >= 0x7FF00000) return x - x;\n\n var n = rempio2(x, u, sign);\n return tan_kern(rempio2_y0, rempio2_y1, 1 - ((n & 1) << 1));\n }\n\n export function tanh(x: f64): f64 { // see: musl/src/math/tanh.c\n var u = reinterpret(x);\n u &= 0x7FFFFFFFFFFFFFFF;\n var y = reinterpret(u);\n var w = u32(u >> 32);\n var t: f64;\n if (w > 0x3FE193EA) {\n if (w > 0x40340000) {\n t = 1 - 0 / y;\n } else {\n t = expm1(2 * y);\n t = 1 - 2 / (t + 2);\n }\n } else if (w > 0x3FD058AE) {\n t = expm1(2 * y);\n t = t / (t + 2);\n } else if (w >= 0x00100000) {\n t = expm1(-2 * y);\n t = -t / (t + 2);\n } else t = y;\n return builtin_copysign(t, x);\n }\n\n // @ts-ignore: decorator\n @inline\n export function trunc(x: f64): f64 {\n return builtin_trunc(x);\n }\n\n export function scalbn(x: f64, n: i32): f64 { // see: https://git.musl-libc.org/cgit/musl/tree/src/math/scalbn.c\n const\n Ox1p53 = reinterpret(0x4340000000000000),\n Ox1p1023 = reinterpret(0x7FE0000000000000),\n Ox1p_1022 = reinterpret(0x0010000000000000);\n\n var y = x;\n if (n > 1023) {\n y *= Ox1p1023;\n n -= 1023;\n if (n > 1023) {\n y *= Ox1p1023;\n n = builtin_min(n - 1023, 1023);\n }\n } else if (n < -1022) {\n // make sure final n < -53 to avoid double\n // rounding in the subnormal range\n y *= Ox1p_1022 * Ox1p53;\n n += 1022 - 53;\n if (n < -1022) {\n y *= Ox1p_1022 * Ox1p53;\n n = builtin_max(n + 1022 - 53, -1022);\n }\n }\n return y * reinterpret((0x3FF + n) << 52);\n }\n\n export function mod(x: f64, y: f64): f64 { // see: musl/src/math/fmod.c\n if (builtin_abs(y) == 1.0) {\n // x % 1, x % -1 ==> sign(x) * abs(x - 1.0 * trunc(x / 1.0))\n // TODO: move this rule to compiler's optimization pass.\n // It could be apply for any x % C_pot, where \"C_pot\" is pow of two const.\n return builtin_copysign(x - builtin_trunc(x), x);\n }\n var ux = reinterpret(x);\n var uy = reinterpret(y);\n var ex = i64(ux >> 52 & 0x7FF);\n var ey = i64(uy >> 52 & 0x7FF);\n var sx = ux >> 63;\n var uy1 = uy << 1;\n if (uy1 == 0 || ex == 0x7FF || isNaN(y)) {\n let m = x * y;\n return m / m;\n }\n var ux1 = ux << 1;\n if (ux1 <= uy1) {\n return x * f64(ux1 != uy1);\n }\n if (!ex) {\n ex -= builtin_clz(ux << 12);\n ux <<= 1 - ex;\n } else {\n ux &= u64(-1) >> 12;\n ux |= 1 << 52;\n }\n if (!ey) {\n ey -= builtin_clz(uy << 12);\n uy <<= 1 - ey;\n } else {\n uy &= u64(-1) >> 12;\n uy |= 1 << 52;\n }\n while (ex > ey) {\n if (ux >= uy) {\n if (ux == uy) return 0 * x;\n ux -= uy;\n }\n ux <<= 1;\n --ex;\n }\n if (ux >= uy) {\n if (ux == uy) return 0 * x;\n ux -= uy;\n }\n // for (; !(ux >> 52); ux <<= 1) --ex;\n var shift = builtin_clz(ux << 11);\n ex -= shift;\n ux <<= shift;\n if (ex > 0) {\n ux -= 1 << 52;\n ux |= ex << 52;\n } else {\n ux >>= -ex + 1;\n }\n return reinterpret(ux | (sx << 63));\n }\n\n export function rem(x: f64, y: f64): f64 { // see: musl/src/math/remquo.c\n var ux = reinterpret(x);\n var uy = reinterpret(y);\n var ex = i64(ux >> 52 & 0x7FF);\n var ey = i64(uy >> 52 & 0x7FF);\n if (uy << 1 == 0 || ex == 0x7FF || isNaN(y)) {\n let m = x * y;\n return m / m;\n }\n if (ux << 1 == 0) return x;\n var uxi = ux;\n if (!ex) {\n ex -= builtin_clz(uxi << 12);\n uxi <<= 1 - ex;\n } else {\n uxi &= u64(-1) >> 12;\n uxi |= 1 << 52;\n }\n if (!ey) {\n ey -= builtin_clz(uy << 12);\n uy <<= 1 - ey;\n } else {\n uy &= u64(-1) >> 12;\n uy |= 1 << 52;\n }\n var q: u32 = 0;\n do {\n if (ex < ey) {\n if (ex + 1 == ey) break; // goto end\n return x;\n }\n while (ex > ey) {\n if (uxi >= uy) {\n uxi -= uy;\n ++q;\n }\n uxi <<= 1;\n q <<= 1;\n --ex;\n }\n if (uxi >= uy) {\n uxi -= uy;\n ++q;\n }\n if (uxi == 0) ex = -60;\n else {\n let shift = builtin_clz(uxi << 11);\n ex -= shift;\n uxi <<= shift;\n }\n break;\n } while (false);\n // end:\n if (ex > 0) {\n uxi -= 1 << 52;\n uxi |= ex << 52;\n } else {\n uxi >>= -ex + 1;\n }\n x = reinterpret(uxi);\n y = builtin_abs(y);\n var x2 = x + x;\n if (ex == ey || (ex + 1 == ey && (x2 > y || (x2 == y && (q & 1))))) {\n x -= y;\n // ++q;\n }\n return ux < 0 ? -x : x;\n }\n\n export function sincos(x: f64): void { // see: musl/tree/src/math/sincos.c\n var u = reinterpret(x);\n var ux = u32(u >> 32);\n var sign = ux >> 31;\n ux &= 0x7FFFFFFF;\n\n if (ux <= 0x3FE921FB) { // |x| ~<= π/4\n if (ux < 0x3E46A09E) { // if |x| < 2**-27 * sqrt(2)\n sincos_sin = x;\n sincos_cos = 1;\n return;\n }\n sincos_sin = sin_kern(x, 0, 0);\n sincos_cos = cos_kern(x, 0);\n return;\n }\n // sin(Inf or NaN) is NaN\n if (ux >= 0x7F800000) {\n let xx = x - x;\n sincos_sin = xx;\n sincos_cos = xx;\n return;\n }\n // general argument reduction needed\n var n = rempio2(x, u, sign);\n var y0 = rempio2_y0;\n var y1 = rempio2_y1;\n var s = sin_kern(y0, y1, 1);\n var c = cos_kern(y0, y1);\n var sin = s, cos = c;\n if (n & 1) {\n sin = c;\n cos = -s;\n }\n if (n & 2) {\n sin = -sin;\n cos = -cos;\n }\n sincos_sin = sin;\n sincos_cos = cos;\n }\n}\n\n// @ts-ignore: decorator\n@lazy var rempio2f_y: f64;\n\n// @ts-ignore: decorator\n@lazy @inline const PIO2F_TABLE = memory.data([\n 0xA2F9836E4E441529,\n 0xFC2757D1F534DDC0,\n 0xDB6295993C439041,\n 0xFE5163ABDEBBC561\n]);\n\nfunction Rf(z: f32): f32 { // Rational approximation of (asin(x)-x)/x^3\n const // see: musl/src/math/asinf.c and SUN COPYRIGHT NOTICE above\n pS0 = reinterpret(0x3E2AAA75), // 1.6666586697e-01f\n pS1 = reinterpret(0xBD2F13BA), // -4.2743422091e-02f\n pS2 = reinterpret(0xBC0DD36B), // -8.6563630030e-03f\n qS1 = reinterpret(0xBF34E5AE); // -7.0662963390e-01f\n\n var p = z * (pS0 + z * (pS1 + z * pS2));\n var q: f32 = 1 + z * qS1;\n return p / q;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction expo2f(x: f32, sign: f32): f32 { // exp(x)/2 for x >= log(DBL_MAX)\n const // see: musl/src/math/__expo2f.c\n k = 235,\n kln2 = reinterpret(0x4322E3BC); // 0x1.45c778p+7f\n var scale = reinterpret(u32(0x7F + (k >> 1)) << 23);\n // in directed rounding correct sign before rounding or overflow is important\n return NativeMathf.exp(x - kln2) * (sign * scale) * scale;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction pio2f_large_quot(x: f32, u: i32): i32 { // see: jdh8/metallic/blob/master/src/math/float/rem_pio2f.c\n const coeff = reinterpret(0x3BF921FB54442D18); // π * 0x1p-65 = 8.51530395021638647334e-20\n\n var offset = (u >> 23) - 152;\n var shift = u64(offset & 63);\n var tblPtr = PIO2F_TABLE + (offset >> 6 << 3);\n\n var b0 = load(tblPtr, 0 << 3);\n var b1 = load(tblPtr, 1 << 3);\n var lo: u64;\n\n if (shift > 32) {\n let b2 = load(tblPtr, 2 << 3);\n lo = b2 >> (96 - shift);\n lo |= b1 << (shift - 32);\n } else {\n lo = b1 >> (32 - shift);\n }\n\n var hi = (b1 >> (64 - shift)) | (b0 << shift);\n var mantissa: u64 = (u & 0x007FFFFF) | 0x00800000;\n var product = mantissa * hi + (mantissa * lo >> 32);\n var r: i64 = product << 2;\n var q = i32((product >> 62) + (r >>> 63));\n rempio2f_y = copysign(coeff, x) * r;\n return q;\n}\n\n// @ts-ignore: decorator\n@inline\nfunction rempio2f(x: f32, u: u32, sign: i32): i32 { // see: jdh8/metallic/blob/master/src/math/float/rem_pio2f.c\n const\n pi2hi = reinterpret(0x3FF921FB50000000), // 1.57079631090164184570\n pi2lo = reinterpret(0x3E5110B4611A6263), // 1.58932547735281966916e-8\n _2_pi = reinterpret(0x3FE45F306DC9C883); // 0.63661977236758134308\n\n if (u < 0x4DC90FDB) { // π * 0x1p28\n let q = nearest(x * _2_pi);\n rempio2f_y = x - q * pi2hi - q * pi2lo;\n return q;\n }\n\n var q = pio2f_large_quot(x, u);\n return select(-q, q, sign);\n}\n\n// |sin(x)/x - s(x)| < 2**-37.5 (~[-4.89e-12, 4.824e-12]).\n// @ts-ignore: decorator\n@inline\nfunction sin_kernf(x: f64): f32 { // see: musl/tree/src/math/__sindf.c\n const\n S1 = reinterpret(0xBFC5555554CBAC77), // -0x15555554cbac77.0p-55\n S2 = reinterpret(0x3F811110896EFBB2), // 0x111110896efbb2.0p-59\n S3 = reinterpret(0xBF2A00F9E2CAE774), // -0x1a00f9e2cae774.0p-65\n S4 = reinterpret(0x3EC6CD878C3B46A7); // 0x16cd878c3b46a7.0p-71\n\n var z = x * x;\n var w = z * z;\n var r = S3 + z * S4;\n var s = z * x;\n return f32((x + s * (S1 + z * S2)) + s * w * r);\n}\n\n// |cos(x) - c(x)| < 2**-34.1 (~[-5.37e-11, 5.295e-11]).\n// @ts-ignore: decorator\n@inline\nfunction cos_kernf(x: f64): f32 { // see: musl/tree/src/math/__cosdf.c\n const\n C0 = reinterpret(0xBFDFFFFFFD0C5E81), // -0x1ffffffd0c5e81.0p-54\n C1 = reinterpret(0x3FA55553E1053A42), // 0x155553e1053a42.0p-57\n C2 = reinterpret(0xBF56C087E80F1E27), // -0x16c087e80f1e27.0p-62\n C3 = reinterpret(0x3EF99342E0EE5069); // 0x199342e0ee5069.0p-68\n\n var z = x * x;\n var w = z * z;\n var r = C2 + z * C3;\n return f32(((1 + z * C0) + w * C1) + (w * z) * r);\n}\n\n// |tan(x)/x - t(x)| < 2**-25.5 (~[-2e-08, 2e-08]).\n// @ts-ignore: decorator\n@inline\nfunction tan_kernf(x: f64, odd: i32): f32 { // see: musl/tree/src/math/__tandf.c\n const\n T0 = reinterpret(0x3FD5554D3418C99F), // 0x15554d3418c99f.0p-54\n T1 = reinterpret(0x3FC112FD38999F72), // 0x1112fd38999f72.0p-55\n T2 = reinterpret(0x3FAB54C91D865AFE), // 0x1b54c91d865afe.0p-57\n T3 = reinterpret(0x3F991DF3908C33CE), // 0x191df3908c33ce.0p-58\n T4 = reinterpret(0x3F685DADFCECF44E), // 0x185dadfcecf44e.0p-61\n T5 = reinterpret(0x3F8362B9BF971BCD); // 0x1362b9bf971bcd.0p-59\n\n var z = x * x;\n var r = T4 + z * T5;\n var t = T2 + z * T3;\n var w = z * z;\n var s = z * x;\n var u = T0 + z * T1;\n\n r = (x + s * u) + (s * w) * (t + w * r);\n return f32(odd ? -1 / r : r);\n}\n\n// See: jdh8/metallic/src/math/float/log2f.c and jdh8/metallic/src/math/float/kernel/atanh.h\n// @ts-ignore: decorator\n@inline\nfunction log2f(x: f64): f64 {\n const\n log2e = reinterpret(0x3FF71547652B82FE), // 1.44269504088896340736\n c0 = reinterpret(0x3FD555554FD9CAEF), // 0.33333332822728226129\n c1 = reinterpret(0x3FC999A7A8AF4132), // 0.20000167595436263505\n c2 = reinterpret(0x3FC2438D79437030), // 0.14268654271188685375\n c3 = reinterpret(0x3FBE2F663B001C97); // 0.11791075649681414150\n\n var i = reinterpret(x);\n var exponent = (i - 0x3FE6A09E667F3BCD) >> 52;\n x = reinterpret(i - (exponent << 52));\n x = (x - 1) / (x + 1);\n var xx = x * x;\n var y = x + x * xx * (c0 + c1 * xx + (c2 + c3 * xx) * (xx * xx));\n return (2 * log2e) * y + exponent;\n}\n\n// See: jdh8/metallic/src/math/float/exp2f.h and jdh8/metallic/blob/master/src/math/float/kernel/exp2f.h\n// @ts-ignore: decorator\n@inline\nfunction exp2f(x: f64): f64 {\n const\n c0 = reinterpret(0x3FE62E4302FCC24A), // 6.931471880289532425e-1\n c1 = reinterpret(0x3FCEBFBE07D97B91), // 2.402265108421173406e-1\n c2 = reinterpret(0x3FAC6AF6CCFC1A65), // 5.550357105498874537e-2\n c3 = reinterpret(0x3F83B29E3CE9AEF6), // 9.618030771171497658e-3\n c4 = reinterpret(0x3F55F0896145A89F), // 1.339086685300950937e-3\n c5 = reinterpret(0x3F2446C81E384864); // 1.546973499989028719e-4\n\n if (x < -1022) return 0;\n if (x >= 1024) return Infinity;\n\n var n = nearest(x);\n x -= n;\n var xx = x * x;\n var y = 1 + x * (c0 + c1 * x + (c2 + c3 * x) * xx + (c4 + c5 * x) * (xx * xx));\n return reinterpret(reinterpret(y) + (n << 52));\n}\n\nexport namespace NativeMathf {\n\n // @ts-ignore: decorator\n @lazy\n export const E = NativeMath.E;\n\n // @ts-ignore: decorator\n @lazy\n export const LN2 = NativeMath.LN2;\n\n // @ts-ignore: decorator\n @lazy\n export const LN10 = NativeMath.LN10;\n\n // @ts-ignore: decorator\n @lazy\n export const LOG2E = NativeMath.LOG2E;\n\n // @ts-ignore: decorator\n @lazy\n export const LOG10E = NativeMath.LOG10E;\n\n // @ts-ignore: decorator\n @lazy\n export const PI = NativeMath.PI;\n\n // @ts-ignore: decorator\n @lazy\n export const SQRT1_2 = NativeMath.SQRT1_2;\n\n // @ts-ignore: decorator\n @lazy\n export const SQRT2 = NativeMath.SQRT2;\n\n // @ts-ignore: decorator\n @lazy\n export var sincos_sin: f32 = 0;\n\n // @ts-ignore: decorator\n @lazy\n export var sincos_cos: f32 = 0;\n\n // @ts-ignore: decorator\n @inline\n export function abs(x: f32): f32 {\n return builtin_abs(x);\n }\n\n export function acos(x: f32): f32 { // see: musl/src/math/acosf.c and SUN COPYRIGHT NOTICE above\n const\n pio2_hi = reinterpret(0x3FC90FDA), // 1.5707962513e+00f\n pio2_lo = reinterpret(0x33A22168), // 7.5497894159e-08f\n Ox1p_120f = reinterpret(0x03800000); // 0x1p-120f\n\n var hx = reinterpret(x);\n var ix = hx & 0x7FFFFFFF;\n if (ix >= 0x3F800000) {\n if (ix == 0x3F800000) {\n return select(2 * pio2_hi + Ox1p_120f, 0, hx < 0);\n }\n return 0 / (x - x);\n }\n if (ix < 0x3F000000) {\n if (ix <= 0x32800000) return pio2_hi + Ox1p_120f;\n return pio2_hi - (x - (pio2_lo - x * Rf(x * x)));\n }\n var z: f32, w: f32, s: f32;\n if (hx < 0) {\n // z = (1 + x) * 0.5;\n z = 0.5 + x * 0.5;\n s = builtin_sqrt(z);\n w = Rf(z) * s - pio2_lo;\n return 2 * (pio2_hi - (s + w));\n }\n // z = (1 - x) * 0.5;\n z = 0.5 - x * 0.5;\n s = builtin_sqrt(z);\n hx = reinterpret(s);\n var df = reinterpret(hx & 0xFFFFF000);\n var c = (z - df * df) / (s + df);\n w = Rf(z) * s + c;\n return 2 * (df + w);\n }\n\n export function acosh(x: f32): f32 { // see: musl/src/math/acoshf.c\n const s = reinterpret(0x3F317218); // 0.693147180559945309417232121458176568f\n var u = reinterpret(x);\n var a = u & 0x7FFFFFFF;\n if (a < 0x3F800000 + (1 << 23)) { // |x| < 2, invalid if x < 1\n let xm1 = x - 1;\n return log1p(xm1 + builtin_sqrt(xm1 * (xm1 + 2)));\n }\n if (u < 0x3F800000 + (12 << 23)) { // 2 <= x < 0x1p12\n return log(2 * x - 1 / (x + builtin_sqrt(x * x - 1)));\n }\n // x >= 0x1p12 or x <= -2 or NaN\n return log(x) + s;\n }\n\n export function asin(x: f32): f32 { // see: musl/src/math/asinf.c and SUN COPYRIGHT NOTICE above\n const\n pio2 = reinterpret(0x3FC90FDB), // 1.570796326794896558e+00f\n Ox1p_120f = reinterpret(0x03800000); // 0x1p-120f\n\n var sx = x;\n var hx = reinterpret(x) & 0x7FFFFFFF;\n if (hx >= 0x3F800000) {\n if (hx == 0x3F800000) return x * pio2 + Ox1p_120f;\n return 0 / (x - x);\n }\n if (hx < 0x3F000000) {\n if (hx < 0x39800000 && hx >= 0x00800000) return x;\n return x + x * Rf(x * x);\n }\n // var z: f32 = (1 - builtin_abs(x)) * 0.5;\n var z: f32 = 0.5 - builtin_abs(x) * 0.5;\n var s = builtin_sqrt(z); // sic\n x = f32(pio2 - 2 * (s + s * Rf(z)));\n return builtin_copysign(x, sx);\n }\n\n export function asinh(x: f32): f32 { // see: musl/src/math/asinhf.c\n const c = reinterpret(0x3F317218); // 0.693147180559945309417232121458176568f\n var u = reinterpret(x) & 0x7FFFFFFF;\n var y = reinterpret(u);\n if (u >= 0x3F800000 + (12 << 23)) y = log(y) + c;\n else if (u >= 0x3F800000 + (1 << 23)) y = log(2 * y + 1 / (builtin_sqrt(y * y + 1) + y));\n else if (u >= 0x3F800000 - (12 << 23)) y = log1p(y + y * y / (builtin_sqrt(y * y + 1) + 1));\n return builtin_copysign(y, x);\n }\n\n export function atan(x: f32): f32 { // see: musl/src/math/atanf.c and SUN COPYRIGHT NOTICE above\n const\n atanhi0 = reinterpret(0x3EED6338), // 4.6364760399e-01f\n atanhi1 = reinterpret(0x3F490FDA), // 7.8539812565e-01f\n atanhi2 = reinterpret(0x3F7B985E), // 9.8279368877e-01f\n atanhi3 = reinterpret(0x3FC90FDA), // 1.5707962513e+00f\n atanlo0 = reinterpret(0x31AC3769), // 5.0121582440e-09f\n atanlo1 = reinterpret(0x33222168), // 3.7748947079e-08f\n atanlo2 = reinterpret(0x33140FB4), // 3.4473217170e-08f\n atanlo3 = reinterpret(0x33A22168), // 7.5497894159e-08f\n aT0 = reinterpret(0x3EAAAAA9), // 3.3333328366e-01f\n aT1 = reinterpret(0xBE4CCA98), // -1.9999158382e-01f\n aT2 = reinterpret(0x3E11F50D), // 1.4253635705e-01f\n aT3 = reinterpret(0xBDDA1247), // -1.0648017377e-01f\n aT4 = reinterpret(0x3D7CAC25), // 6.1687607318e-02f\n Ox1p_120f = reinterpret(0x03800000); // 0x1p-120f\n\n var ix = reinterpret(x);\n var sx = x;\n ix &= 0x7FFFFFFF;\n var z: f32;\n if (ix >= 0x4C800000) {\n if (isNaN(x)) return x;\n z = atanhi3 + Ox1p_120f;\n return builtin_copysign(z, sx);\n }\n var id: i32;\n if (ix < 0x3EE00000) {\n if (ix < 0x39800000) return x;\n id = -1;\n } else {\n x = builtin_abs(x);\n if (ix < 0x3F980000) {\n if (ix < 0x3F300000) {\n id = 0;\n x = (2.0 * x - 1.0) / (2.0 + x);\n } else {\n id = 1;\n x = (x - 1.0) / (x + 1.0);\n }\n } else {\n if (ix < 0x401C0000) {\n id = 2;\n x = (x - 1.5) / (1.0 + 1.5 * x);\n } else {\n id = 3;\n x = -1.0 / x;\n }\n }\n }\n z = x * x;\n var w = z * z;\n var s1 = z * (aT0 + w * (aT2 + w * aT4));\n var s2 = w * (aT1 + w * aT3);\n var s3 = x * (s1 + s2);\n if (id < 0) return x - s3;\n switch (id) {\n case 0: { z = atanhi0 - ((s3 - atanlo0) - x); break; }\n case 1: { z = atanhi1 - ((s3 - atanlo1) - x); break; }\n case 2: { z = atanhi2 - ((s3 - atanlo2) - x); break; }\n case 3: { z = atanhi3 - ((s3 - atanlo3) - x); break; }\n default: unreachable();\n }\n return builtin_copysign(z, sx);\n }\n\n export function atanh(x: f32): f32 { // see: musl/src/math/atanhf.c\n var u = reinterpret(x);\n var y = builtin_abs(x);\n if (u < 0x3F800000 - (1 << 23)) {\n if (u >= 0x3F800000 - (32 << 23)) y = 0.5 * log1p(2 * y * (1.0 + y / (1 - y)));\n } else y = 0.5 * log1p(2 * (y / (1 - y)));\n return builtin_copysign(y, x);\n }\n\n export function atan2(y: f32, x: f32): f32 { // see: musl/src/math/atan2f.c and SUN COPYRIGHT NOTICE above\n const\n pi = reinterpret(0x40490FDB), // 3.1415927410e+00f\n pi_lo = reinterpret(0xB3BBBD2E); // -8.7422776573e-08f\n\n if (isNaN(x) || isNaN(y)) return x + y;\n var ix = reinterpret(x);\n var iy = reinterpret(y);\n if (ix == 0x3F800000) return atan(y);\n var m = u32(((iy >> 31) & 1) | ((ix >> 30) & 2));\n ix &= 0x7FFFFFFF;\n iy &= 0x7FFFFFFF;\n if (iy == 0) {\n switch (m) {\n case 0:\n case 1: return y;\n case 2: return pi;\n case 3: return -pi;\n }\n }\n if (ix == 0) return m & 1 ? -pi / 2 : pi / 2;\n if (ix == 0x7F800000) {\n if (iy == 0x7F800000) {\n let t: f32 = m & 2 ? 3 * pi / 4 : pi / 4;\n return m & 1 ? -t : t;\n } else {\n let t: f32 = m & 2 ? pi : 0.0;\n return m & 1 ? -t : t;\n }\n }\n if (ix + (26 << 23) < iy || iy == 0x7F800000) return m & 1 ? -pi / 2 : pi / 2;\n var z: f32;\n if ((m & 2) && iy + (26 << 23) < ix) z = 0.0;\n else z = atan(builtin_abs(y / x));\n switch (m) {\n case 0: return z;\n case 1: return -z;\n case 2: return pi - (z - pi_lo);\n case 3: return (z - pi_lo) - pi;\n }\n unreachable();\n return 0;\n }\n\n export function cbrt(x: f32): f32 { // see: musl/src/math/cbrtf.c and SUN COPYRIGHT NOTICE above\n const\n B1 = 709958130,\n B2 = 642849266,\n Ox1p24f = reinterpret(0x4B800000);\n\n var u = reinterpret(x);\n var hx = u & 0x7FFFFFFF;\n if (hx >= 0x7F800000) return x + x;\n if (hx < 0x00800000) {\n if (hx == 0) return x;\n u = reinterpret(x * Ox1p24f);\n hx = u & 0x7FFFFFFF;\n hx = hx / 3 + B2;\n } else {\n hx = hx / 3 + B1;\n }\n u &= 0x80000000;\n u |= hx;\n var t = reinterpret(u);\n var r = t * t * t;\n t = t * (x + x + r) / (x + r + r);\n r = t * t * t;\n t = t * (x + x + r) / (x + r + r);\n return t;\n }\n\n // @ts-ignore: decorator\n @inline\n export function ceil(x: f32): f32 {\n return builtin_ceil(x);\n }\n\n export function clz32(x: f32): f32 {\n if (!isFinite(x)) return 32;\n return builtin_clz(dtoi32(x));\n }\n\n export function cos(x: f32): f32 { // see: musl/src/math/cosf.c\n const\n c1pio2 = reinterpret(0x3FF921FB54442D18), // M_PI_2 * 1\n c2pio2 = reinterpret(0x400921FB54442D18), // M_PI_2 * 2\n c3pio2 = reinterpret(0x4012D97C7F3321D2), // M_PI_2 * 3\n c4pio2 = reinterpret(0x401921FB54442D18); // M_PI_2 * 4\n\n var ux = reinterpret(x);\n var sign = ux >> 31;\n ux &= 0x7FFFFFFF;\n\n if (ux <= 0x3F490FDA) { // |x| ~<= π/4\n if (ux < 0x39800000) { // |x| < 2**-12\n // raise inexact if x != 0\n return 1;\n }\n return cos_kernf(x);\n }\n\n if (ASC_SHRINK_LEVEL < 1) {\n if (ux <= 0x407B53D1) { // |x| ~<= 5π/4\n if (ux > 0x4016CBE3) { // |x| ~> 3π/4\n return -cos_kernf(sign ? x + c2pio2 : x - c2pio2);\n } else {\n return sign ? sin_kernf(x + c1pio2) : sin_kernf(c1pio2 - x);\n }\n }\n if (ux <= 0x40E231D5) { // |x| ~<= 9π/4\n if (ux > 0x40AFEDDF) { // |x| ~> 7π/4\n return cos_kernf(sign ? x + c4pio2 : x - c4pio2);\n } else {\n return sign ? sin_kernf(-x - c3pio2) : sin_kernf(x - c3pio2);\n }\n }\n }\n\n // cos(Inf or NaN) is NaN\n if (ux >= 0x7F800000) return x - x;\n\n // general argument reduction needed\n var n = rempio2f(x, ux, sign);\n var y = rempio2f_y;\n\n var t = n & 1 ? sin_kernf(y) : cos_kernf(y);\n return (n + 1) & 2 ? -t : t;\n }\n\n export function cosh(x: f32): f32 { // see: musl/src/math/coshf.c\n var u = reinterpret(x);\n u &= 0x7FFFFFFF;\n x = reinterpret(u);\n if (u < 0x3F317217) {\n if (u < 0x3F800000 - (12 << 23)) return 1;\n let t = expm1(x);\n // return 1 + t * t / (2 * (1 + t));\n return 1 + t * t / (2 + 2 * t);\n }\n if (u < 0x42B17217) {\n let t = exp(x);\n // return 0.5 * (t + 1 / t);\n return 0.5 * t + 0.5 / t;\n }\n return expo2f(x, 1);\n }\n\n // @ts-ignore: decorator\n @inline\n export function floor(x: f32): f32 {\n return builtin_floor(x);\n }\n\n export function exp(x: f32): f32 { // see: musl/src/math/expf.c and SUN COPYRIGHT NOTICE above\n if (ASC_SHRINK_LEVEL < 1) {\n return expf_lut(x);\n } else {\n const\n ln2hi = reinterpret(0x3F317200), // 6.9314575195e-1f\n ln2lo = reinterpret(0x35BFBE8E), // 1.4286067653e-6f\n invln2 = reinterpret(0x3FB8AA3B), // 1.4426950216e+0f\n P1 = reinterpret(0x3E2AAA8F), // 1.6666625440e-1f\n P2 = reinterpret(0xBB355215), // -2.7667332906e-3f\n Ox1p127f = reinterpret(0x7F000000); // 0x1p+127f\n\n let hx = reinterpret(x);\n let sign = hx >> 31;\n hx &= 0x7FFFFFFF;\n if (hx >= 0x42AEAC50) {\n if (hx > 0x7F800000) return x; // NaN\n if (hx >= 0x42B17218) {\n if (!sign) return x * Ox1p127f;\n else if (hx >= 0x42CFF1B5) return 0;\n }\n }\n let hi: f32, lo: f32;\n let k: i32;\n if (hx > 0x3EB17218) {\n if (hx > 0x3F851592) {\n k = i32(invln2 * x + builtin_copysign(0.5, x));\n } else {\n k = 1 - (sign << 1);\n }\n hi = x - k * ln2hi;\n lo = k * ln2lo;\n x = hi - lo;\n } else if (hx > 0x39000000) {\n k = 0;\n hi = x;\n lo = 0;\n } else {\n return 1 + x;\n }\n let xx = x * x;\n let c = x - xx * (P1 + xx * P2);\n let y: f32 = 1 + (x * c / (2 - c) - lo + hi);\n return k == 0 ? y : scalbn(y, k);\n }\n }\n\n export function exp2(x: f32): f32 {\n return exp2f_lut(x);\n }\n\n export function expm1(x: f32): f32 { // see: musl/src/math/expm1f.c and SUN COPYRIGHT NOTICE above\n const\n ln2_hi = reinterpret(0x3F317180), // 6.9313812256e-01f\n ln2_lo = reinterpret(0x3717F7D1), // 9.0580006145e-06f\n invln2 = reinterpret(0x3FB8AA3B), // 1.4426950216e+00f\n Q1 = reinterpret(0xBD088868), // -3.3333212137e-02f\n Q2 = reinterpret(0x3ACF3010), // 1.5807170421e-03f\n Ox1p127f = reinterpret(0x7F000000); // 0x1p+127f\n\n var u = reinterpret(x);\n var hx = u & 0x7FFFFFFF;\n var sign = u >> 31;\n if (hx >= 0x4195B844) {\n if (hx > 0x7F800000) return x;\n if (sign) return -1;\n if (hx > 0x42B17217) { // x > log(FLT_MAX)\n x *= Ox1p127f;\n return x;\n }\n }\n var c: f32 = 0.0, t: f32, k: i32;\n if (hx > 0x3EB17218) {\n k = select(\n 1 - (sign << 1),\n i32(invln2 * x + builtin_copysign(0.5, x)),\n hx < 0x3F851592\n );\n t = k;\n let hi = x - t * ln2_hi;\n let lo = t * ln2_lo;\n x = hi - lo;\n c = (hi - x) - lo;\n } else if (hx < 0x33000000) {\n return x;\n } else k = 0;\n var hfx: f32 = 0.5 * x;\n var hxs: f32 = x * hfx;\n var r1: f32 = 1.0 + hxs * (Q1 + hxs * Q2);\n t = 3.0 - r1 * hfx;\n var e = hxs * ((r1 - t) / (6.0 - x * t));\n if (k == 0) return x - (x * e - hxs);\n e = x * (e - c) - c;\n e -= hxs;\n if (k == -1) return 0.5 * (x - e) - 0.5;\n if (k == 1) {\n if (x < -0.25) return -2.0 * (e - (x + 0.5));\n return 1.0 + 2.0 * (x - e);\n }\n u = (0x7F + k) << 23;\n var twopk = reinterpret(u);\n var y: f32;\n if (k < 0 || k > 56) {\n y = x - e + 1.0;\n if (k == 128) y = y * 2.0 * Ox1p127f;\n else y = y * twopk;\n return y - 1.0;\n }\n u = (0x7F - k) << 23;\n y = reinterpret(u);\n if (k < 20) y = (1 - y) - e;\n else y = 1 - (e + y);\n return (x + y) * twopk;\n }\n\n // @ts-ignore: decorator\n @inline\n export function fround(x: f32): f32 {\n return x;\n }\n\n export function hypot(x: f32, y: f32): f32 { // see: musl/src/math/hypotf.c\n const\n Ox1p90f = reinterpret(0x6C800000),\n Ox1p_90f = reinterpret(0x12800000);\n\n var ux = reinterpret(x);\n var uy = reinterpret(y);\n ux &= 0x7FFFFFFF;\n uy &= 0x7FFFFFFF;\n if (ux < uy) {\n let ut = ux;\n ux = uy;\n uy = ut;\n }\n x = reinterpret(ux);\n y = reinterpret(uy);\n if (uy == 0xFF << 23) return y;\n if (ux >= 0xFF << 23 || uy == 0 || ux - uy >= 25 << 23) return x + y;\n var z: f32 = 1;\n if (ux >= (0x7F + 60) << 23) {\n z = Ox1p90f;\n x *= Ox1p_90f;\n y *= Ox1p_90f;\n } else if (uy < (0x7F - 60) << 23) {\n z = Ox1p_90f;\n x *= Ox1p90f;\n y *= Ox1p90f;\n }\n return z * builtin_sqrt(f32(x * x + y * y));\n }\n\n // @ts-ignore: decorator\n @inline\n export function imul(x: f32, y: f32): f32 {\n /*\n * Wasm (MVP) and JS have different approaches for double->int conversions.\n *\n * For emulate JS conversion behavior and avoid trapping from wasm we should modulate by MAX_INT\n * our float-point arguments before actual convertion to integers.\n */\n if (!isFinite(x + y)) return 0;\n return (dtoi32(x) * dtoi32(y));\n }\n\n export function log(x: f32): f32 { // see: musl/src/math/logf.c and SUN COPYRIGHT NOTICE above\n if (ASC_SHRINK_LEVEL < 1) {\n return logf_lut(x);\n } else {\n const\n ln2_hi = reinterpret(0x3F317180), // 6.9313812256e-01f\n ln2_lo = reinterpret(0x3717F7D1), // 9.0580006145e-06f\n Lg1 = reinterpret(0x3F2AAAAA), // 0xaaaaaa.0p-24f\n Lg2 = reinterpret(0x3ECCCE13), // 0xccce13.0p-25f\n Lg3 = reinterpret(0x3E91E9EE), // 0x91e9ee.0p-25f\n Lg4 = reinterpret(0x3E789E26), // 0xf89e26.0p-26f\n Ox1p25f = reinterpret(0x4C000000);\n\n let u = reinterpret(x);\n let k = 0;\n let sign = u >> 31;\n if (sign || u < 0x00800000) {\n if (u << 1 == 0) return -1 / (x * x);\n if (sign) return (x - x) / 0;\n k -= 25;\n x *= Ox1p25f;\n u = reinterpret(x);\n } else if (u >= 0x7F800000) {\n return x;\n } else if (u == 0x3F800000) {\n return 0;\n }\n u += 0x3F800000 - 0x3F3504F3;\n k += i32(u >> 23) - 0x7F;\n u = (u & 0x007FFFFF) + 0x3F3504F3;\n x = reinterpret(u);\n let f = x - 1.0;\n let s = f / (2.0 + f);\n let z = s * s;\n let w = z * z;\n let t1 = w * (Lg2 + w * Lg4);\n let t2 = z * (Lg1 + w * Lg3);\n let r = t2 + t1;\n let hfsq = 0.5 * f * f;\n let dk = k;\n return s * (hfsq + r) + dk * ln2_lo - hfsq + f + dk * ln2_hi;\n }\n }\n\n export function log10(x: f32): f32 { // see: musl/src/math/log10f.c and SUN COPYRIGHT NOTICE above\n const\n ivln10hi = reinterpret(0x3EDE6000), // 4.3432617188e-01f\n ivln10lo = reinterpret(0xB804EAD9), // -3.1689971365e-05f\n log10_2hi = reinterpret(0x3E9A2080), // 3.0102920532e-01f\n log10_2lo = reinterpret(0x355427DB), // 7.9034151668e-07f\n Lg1 = reinterpret(0x3F2AAAAA), // 0xaaaaaa.0p-24f, 0.66666662693f\n Lg2 = reinterpret(0x3ECCCE13), // 0xccce13.0p-25f, 0.40000972152f\n Lg3 = reinterpret(0x3E91E9EE), // 0x91e9ee.0p-25f, 0.28498786688f\n Lg4 = reinterpret(0x3E789E26), // 0xf89e26.0p-26f, 0.24279078841f\n Ox1p25f = reinterpret(0x4C000000); // 0x1p25f\n\n var ux = reinterpret(x);\n var k = 0;\n var sign = ux >> 31;\n if (sign || ux < 0x00800000) {\n if (ux << 1 == 0) return -1 / (x * x);\n if (sign) return (x - x) / 0.0;\n k -= 25;\n x *= Ox1p25f;\n ux = reinterpret(x);\n } else if (ux >= 0x7F800000) {\n return x;\n } else if (ux == 0x3F800000) {\n return 0;\n }\n ux += 0x3F800000 - 0x3F3504F3;\n k += i32(ux >> 23) - 0x7F;\n ux = (ux & 0x007FFFFF) + 0x3F3504F3;\n x = reinterpret(ux);\n var f = x - 1.0;\n var s = f / (2.0 + f);\n var z = s * s;\n var w = z * z;\n var t1 = w * (Lg2 + w * Lg4);\n var t2 = z * (Lg1 + w * Lg3);\n var r = t2 + t1;\n var hfsq: f32 = 0.5 * f * f;\n var hi = f - hfsq;\n ux = reinterpret(hi);\n ux &= 0xFFFFF000;\n hi = reinterpret(ux);\n var lo = f - hi - hfsq + s * (hfsq + r);\n var dk = k;\n return dk * log10_2lo + (lo + hi) * ivln10lo + lo * ivln10hi + hi * ivln10hi + dk * log10_2hi;\n }\n\n export function log1p(x: f32): f32 { // see: musl/src/math/log1pf.c and SUN COPYRIGHT NOTICE above\n const\n ln2_hi = reinterpret(0x3F317180), // 6.9313812256e-01\n ln2_lo = reinterpret(0x3717F7D1), // 9.0580006145e-06\n Lg1 = reinterpret(0x3F2AAAAA), // 0xaaaaaa.0p-24f, 0.66666662693f\n Lg2 = reinterpret(0x3ECCCE13), // 0xccce13.0p-25f, 0.40000972152f\n Lg3 = reinterpret(0x3E91E9EE), // 0x91e9ee.0p-25f, 0.28498786688f\n Lg4 = reinterpret(0x3E789E26); // 0xf89e26.0p-26f, 0.24279078841f\n\n var ix = reinterpret(x);\n var c: f32 = 0;\n var f: f32 = 0;\n var k = 1;\n if (ix < 0x3ED413D0 || bool(ix >> 31)) {\n if (ix >= 0xBF800000) {\n if (x == -1) return x / 0.0;\n return (x - x) / 0.0;\n }\n if (ix << 1 < 0x33800000 << 1) return x;\n if (ix <= 0xBE95F619) {\n k = 0;\n c = 0;\n f = x;\n }\n } else if (ix >= 0x7F800000) return x;\n if (k) {\n let uf: f32 = 1 + x;\n let iu = reinterpret(uf);\n iu += 0x3F800000 - 0x3F3504F3;\n k = i32(iu >> 23) - 0x7F;\n if (k < 25) {\n c = k >= 2 ? 1 - (uf - x) : x - (uf - 1);\n c /= uf;\n } else c = 0;\n iu = (iu & 0x007FFFFF) + 0x3F3504F3;\n f = reinterpret(iu) - 1;\n }\n var s = f / (2.0 + f);\n var z = s * s;\n var w = z * z;\n var t1 = w * (Lg2 + w * Lg4);\n var t2 = z * (Lg1 + w * Lg3);\n var r = t2 + t1;\n var hfsq: f32 = 0.5 * f * f;\n var dk = k;\n return s * (hfsq + r) + (dk * ln2_lo + c) - hfsq + f + dk * ln2_hi;\n }\n\n export function log2(x: f32): f32 { // see: musl/src/math/log2f.c and SUN COPYRIGHT NOTICE above\n if (ASC_SHRINK_LEVEL < 1) {\n return log2f_lut(x);\n } else {\n const\n ivln2hi = reinterpret(0x3FB8B000), // 1.4428710938e+00f\n ivln2lo = reinterpret(0xB9389AD4), // -1.7605285393e-04\n Lg1 = reinterpret(0x3F2AAAAA), // 0xaaaaaa.0p-24f, 0.66666662693f\n Lg2 = reinterpret(0x3ECCCE13), // 0xccce13.0p-25f, 0.40000972152f\n Lg3 = reinterpret(0x3E91E9EE), // 0x91e9ee.0p-25f, 0.28498786688f\n Lg4 = reinterpret(0x3E789E26), // 0xf89e26.0p-26f, 0.24279078841f\n Ox1p25f = reinterpret(0x4C000000); // 0x1p25f\n\n let ux = reinterpret(x);\n let k = 0;\n let sign = ux >> 31;\n if (sign || ux < 0x00800000) {\n if (ux << 1 == 0) return -1 / (x * x);\n if (sign) return (x - x) / 0.0;\n k -= 25;\n x *= Ox1p25f;\n ux = reinterpret(x);\n } else if (ux >= 0x7F800000) {\n return x;\n } else if (ux == 0x3F800000) {\n return 0;\n }\n ux += 0x3F800000 - 0x3F3504F3;\n k += i32(ux >> 23) - 0x7F;\n ux = (ux & 0x007FFFFF) + 0x3F3504F3;\n x = reinterpret(ux);\n let f = x - 1.0;\n let s = f / (2.0 + f);\n let z = s * s;\n let w = z * z;\n let t1 = w * (Lg2 + w * Lg4);\n let t2 = z * (Lg1 + w * Lg3);\n let r = t2 + t1;\n let hfsq: f32 = 0.5 * f * f;\n let hi = f - hfsq;\n let u = reinterpret(hi);\n u &= 0xFFFFF000;\n hi = reinterpret(u);\n let lo: f32 = f - hi - hfsq + s * (hfsq + r);\n let dk = k;\n return (lo + hi) * ivln2lo + lo * ivln2hi + hi * ivln2hi + dk;\n }\n }\n\n // @ts-ignore: decorator\n @inline\n export function max(value1: f32, value2: f32): f32 {\n return builtin_max(value1, value2);\n }\n\n // @ts-ignore: decorator\n @inline\n export function min(value1: f32, value2: f32): f32 {\n return builtin_min(value1, value2);\n }\n\n export function pow(x: f32, y: f32): f32 {\n // TODO: remove this fast pathes after introduced own mid-end IR with \"stdlib call simplify\" transforms\n if (builtin_abs(y) <= 2) {\n if (y == 2.0) return x * x;\n if (y == 0.5) {\n return select(\n builtin_abs(builtin_sqrt(x)),\n Infinity,\n x != -Infinity\n );\n }\n if (y == -1.0) return 1 / x;\n if (y == 1.0) return x;\n if (y == 0.0) return 1.0;\n }\n if (ASC_SHRINK_LEVEL < 1) {\n // see: musl/src/math/powf.c\n return powf_lut(x, y);\n } else {\n // based on: jdh8/metallic/src/math/float/powf.c\n if (y == 0) return 1;\n // @ts-ignore: cast\n if (isNaN(x) | isNaN(y)) {\n return NaN;\n }\n let sign: u32 = 0;\n let uy = reinterpret(y);\n let ux = reinterpret(x);\n let sx = ux >> 31;\n ux &= 0x7FFFFFFF;\n if (sx && nearest(y) == y) {\n x = -x;\n sx = 0;\n sign = u32(nearest(y * 0.5) != y * 0.5) << 31;\n }\n let m: u32;\n if (ux == 0x3F800000) { // x == 1\n m = sx | u32((uy & 0x7FFFFFFF) == 0x7F800000) ? 0x7FC00000 : 0x3F800000;\n } else if (ux == 0) {\n m = uy < 0 ? 0x7F800000 : 0;\n } else if (ux == 0x7F800000) {\n m = uy < 0 ? 0 : 0x7F800000;\n } else if (sx) {\n m = 0x7FC00000;\n } else {\n m = reinterpret(exp2f(y * log2f(x)));\n }\n return reinterpret(m | sign);\n }\n }\n\n // @ts-ignore: decorator\n @inline\n export function seedRandom(value: i64): void {\n NativeMath.seedRandom(value);\n }\n\n // Using xoroshiro64starstar from http://xoshiro.di.unimi.it/xoroshiro64starstar.c\n export function random(): f32 {\n if (!random_seeded) seedRandom(reinterpret(seed()));\n\n var s0 = random_state0_32;\n var s1 = random_state1_32;\n var r = rotl(s0 * 0x9E3779BB, 5) * 5;\n\n s1 ^= s0;\n random_state0_32 = rotl(s0, 26) ^ s1 ^ (s1 << 9);\n random_state1_32 = rotl(s1, 13);\n\n return reinterpret((r >> 9) | (127 << 23)) - 1.0;\n }\n\n export function round(x: f32): f32 {\n if (ASC_SHRINK_LEVEL > 0) {\n return builtin_ceil(x) - f32(builtin_ceil(x) - 0.5 > x);\n } else {\n let roundUp = builtin_ceil(x);\n return select(roundUp, roundUp - 1.0, roundUp - 0.5 <= x);\n }\n }\n\n export function sign(x: f32): f32 {\n if (ASC_SHRINK_LEVEL > 0) {\n return select(builtin_copysign(1, x), x, builtin_abs(x) > 0);\n } else {\n return select(1, select(-1, x, x < 0), x > 0);\n }\n }\n\n // @ts-ignore: decorator\n @inline\n export function signbit(x: f32): bool {\n return (reinterpret(x) >>> 31);\n }\n\n export function sin(x: f32): f32 { // see: musl/src/math/sinf.c\n const\n s1pio2 = reinterpret(0x3FF921FB54442D18), // M_PI_2 * 1\n s2pio2 = reinterpret(0x400921FB54442D18), // M_PI_2 * 2\n s3pio2 = reinterpret(0x4012D97C7F3321D2), // M_PI_2 * 3\n s4pio2 = reinterpret(0x401921FB54442D18); // M_PI_2 * 4\n\n var ux = reinterpret(x);\n var sign = ux >> 31;\n ux &= 0x7FFFFFFF;\n\n if (ux <= 0x3F490FDA) { // |x| ~<= π/4\n if (ux < 0x39800000) { // |x| < 2**-12\n return x;\n }\n return sin_kernf(x);\n }\n\n if (ASC_SHRINK_LEVEL < 1) {\n if (ux <= 0x407B53D1) { // |x| ~<= 5π/4\n if (ux <= 0x4016CBE3) { // |x| ~<= 3π/4\n return sign ? -cos_kernf(x + s1pio2) : cos_kernf(x - s1pio2);\n }\n return sin_kernf(-(sign ? x + s2pio2 : x - s2pio2));\n }\n\n if (ux <= 0x40E231D5) { // |x| ~<= 9π/4\n if (ux <= 0x40AFEDDF) { // |x| ~<= 7π/4\n return sign ? cos_kernf(x + s3pio2) : -cos_kernf(x - s3pio2);\n }\n return sin_kernf(sign ? x + s4pio2 : x - s4pio2);\n }\n }\n\n // sin(Inf or NaN) is NaN\n if (ux >= 0x7F800000) return x - x;\n\n var n = rempio2f(x, ux, sign);\n var y = rempio2f_y;\n\n var t = n & 1 ? cos_kernf(y) : sin_kernf(y);\n return n & 2 ? -t : t;\n }\n\n export function sinh(x: f32): f32 { // see: musl/src/math/sinhf.c\n var u = reinterpret(x) & 0x7FFFFFFF;\n var a = reinterpret(u);\n var h = builtin_copysign(0.5, x);\n if (u < 0x42B17217) {\n let t = expm1(a);\n if (u < 0x3F800000) {\n if (u < 0x3F800000 - (12 << 23)) return x;\n return h * (2 * t - t * t / (t + 1));\n }\n return h * (t + t / (t + 1));\n }\n return expo2f(a, 2 * h);\n }\n\n // @ts-ignore: decorator\n @inline\n export function sqrt(x: f32): f32 {\n return builtin_sqrt(x);\n }\n\n export function tan(x: f32): f32 { // see: musl/src/math/tanf.c\n const\n t1pio2 = reinterpret(0x3FF921FB54442D18), // 1 * M_PI_2\n t2pio2 = reinterpret(0x400921FB54442D18), // 2 * M_PI_2\n t3pio2 = reinterpret(0x4012D97C7F3321D2), // 3 * M_PI_2\n t4pio2 = reinterpret(0x401921FB54442D18); // 4 * M_PI_2\n\n var ux = reinterpret(x);\n var sign = ux >> 31;\n ux &= 0x7FFFFFFF;\n\n if (ux <= 0x3F490FDA) { // |x| ~<= π/4\n if (ux < 0x39800000) { // |x| < 2**-12\n return x;\n }\n return tan_kernf(x, 0);\n }\n\n if (ASC_SHRINK_LEVEL < 1) {\n if (ux <= 0x407B53D1) { // |x| ~<= 5π/4\n if (ux <= 0x4016CBE3) { // |x| ~<= 3π/4\n return tan_kernf((sign ? x + t1pio2 : x - t1pio2), 1);\n } else {\n return tan_kernf((sign ? x + t2pio2 : x - t2pio2), 0);\n }\n }\n if (ux <= 0x40E231D5) { // |x| ~<= 9π/4\n if (ux <= 0x40AFEDDF) { // |x| ~<= 7π/4\n return tan_kernf((sign ? x + t3pio2 : x - t3pio2), 1);\n } else {\n return tan_kernf((sign ? x + t4pio2 : x - t4pio2), 0);\n }\n }\n }\n\n // tan(Inf or NaN) is NaN\n if (ux >= 0x7F800000) return x - x;\n\n // argument reduction\n var n = rempio2f(x, ux, sign);\n var y = rempio2f_y;\n return tan_kernf(y, n & 1);\n }\n\n export function tanh(x: f32): f32 { // see: musl/src/math/tanhf.c\n var u = reinterpret(x);\n u &= 0x7FFFFFFF;\n var y = reinterpret(u);\n var t: f32;\n if (u > 0x3F0C9F54) {\n if (u > 0x41200000) t = 1 + 0 / y;\n else {\n t = expm1(2 * y);\n t = 1 - 2 / (t + 2);\n }\n } else if (u > 0x3E82C578) {\n t = expm1(2 * y);\n t = t / (t + 2);\n } else if (u >= 0x00800000) {\n t = expm1(-2 * y);\n t = -t / (t + 2);\n } else t = y;\n return builtin_copysign(t, x);\n }\n\n // @ts-ignore: decorator\n @inline\n export function trunc(x: f32): f32 {\n return builtin_trunc(x);\n }\n\n export function scalbn(x: f32, n: i32): f32 { // see: https://git.musl-libc.org/cgit/musl/tree/src/math/scalbnf.c\n const\n Ox1p24f = reinterpret(0x4B800000),\n Ox1p127f = reinterpret(0x7F000000),\n Ox1p_126f = reinterpret(0x00800000);\n\n var y = x;\n if (n > 127) {\n y *= Ox1p127f;\n n -= 127;\n if (n > 127) {\n y *= Ox1p127f;\n n = builtin_min(n - 127, 127);\n }\n } else if (n < -126) {\n y *= Ox1p_126f * Ox1p24f;\n n += 126 - 24;\n if (n < -126) {\n y *= Ox1p_126f * Ox1p24f;\n n = builtin_max(n + 126 - 24, -126);\n }\n }\n return y * reinterpret((0x7F + n) << 23);\n }\n\n export function mod(x: f32, y: f32): f32 { // see: musl/src/math/fmodf.c\n if (builtin_abs(y) == 1.0) {\n // x % 1, x % -1 ==> sign(x) * abs(x - 1.0 * trunc(x / 1.0))\n // TODO: move this rule to compiler's optimization pass.\n // It could be apply for any x % C_pot, where \"C_pot\" is pow of two const.\n return builtin_copysign(x - builtin_trunc(x), x);\n }\n var ux = reinterpret(x);\n var uy = reinterpret(y);\n var ex = i32(ux >> 23 & 0xFF);\n var ey = i32(uy >> 23 & 0xFF);\n var sm = ux & 0x80000000;\n var uy1 = uy << 1;\n if (uy1 == 0 || ex == 0xFF || isNaN(y)) {\n let m = x * y;\n return m / m;\n }\n var ux1 = ux << 1;\n if (ux1 <= uy1) {\n return x * f32(ux1 != uy1);\n }\n if (!ex) {\n ex -= builtin_clz(ux << 9);\n ux <<= 1 - ex;\n } else {\n ux &= -1 >> 9;\n ux |= 1 << 23;\n }\n if (!ey) {\n ey -= builtin_clz(uy << 9);\n uy <<= 1 - ey;\n } else {\n uy &= u32(-1) >> 9;\n uy |= 1 << 23;\n }\n while (ex > ey) {\n if (ux >= uy) {\n if (ux == uy) return 0 * x;\n ux -= uy;\n }\n ux <<= 1;\n --ex;\n }\n if (ux >= uy) {\n if (ux == uy) return 0 * x;\n ux -= uy;\n }\n // for (; !(ux >> 23); ux <<= 1) --ex;\n var shift = builtin_clz(ux << 8);\n ex -= shift;\n ux <<= shift;\n if (ex > 0) {\n ux -= 1 << 23;\n ux |= ex << 23;\n } else {\n ux >>= -ex + 1;\n }\n return reinterpret(ux | sm);\n }\n\n export function rem(x: f32, y: f32): f32 { // see: musl/src/math/remquof.c\n var ux = reinterpret(x);\n var uy = reinterpret(y);\n var ex = i32(ux >> 23 & 0xFF);\n var ey = i32(uy >> 23 & 0xFF);\n var uxi = ux;\n if (uy << 1 == 0 || ex == 0xFF || isNaN(y)) return (x * y) / (x * y);\n if (ux << 1 == 0) return x;\n if (!ex) {\n ex -= builtin_clz(uxi << 9);\n uxi <<= 1 - ex;\n } else {\n uxi &= u32(-1) >> 9;\n uxi |= 1 << 23;\n }\n if (!ey) {\n ey -= builtin_clz(uy << 9);\n uy <<= 1 - ey;\n } else {\n uy &= u32(-1) >> 9;\n uy |= 1 << 23;\n }\n var q = 0;\n do {\n if (ex < ey) {\n if (ex + 1 == ey) break; // goto end\n return x;\n }\n while (ex > ey) {\n if (uxi >= uy) {\n uxi -= uy;\n ++q;\n }\n uxi <<= 1;\n q <<= 1;\n --ex;\n }\n if (uxi >= uy) {\n uxi -= uy;\n ++q;\n }\n if (uxi == 0) ex = -30;\n else {\n let shift = builtin_clz(uxi << 8);\n ex -= shift;\n uxi <<= shift;\n }\n break;\n } while (false);\n // end:\n if (ex > 0) {\n uxi -= 1 << 23;\n uxi |= ex << 23;\n } else {\n uxi >>= -ex + 1;\n }\n x = reinterpret(uxi);\n y = builtin_abs(y);\n var x2 = x + x;\n if (ex == ey || (ex + 1 == ey && (x2 > y || (x2 == y && bool(q & 1))))) {\n x -= y;\n // q++;\n }\n return ux < 0 ? -x : x;\n }\n\n export function sincos(x: f32): void { // see: musl/tree/src/math/sincosf.c\n const\n s1pio2 = reinterpret(0x3FF921FB54442D18), // 1 * M_PI_2\n s2pio2 = reinterpret(0x400921FB54442D18), // 2 * M_PI_2\n s3pio2 = reinterpret(0x4012D97C7F3321D2), // 3 * M_PI_2\n s4pio2 = reinterpret(0x401921FB54442D18); // 4 * M_PI_2\n\n var ux = reinterpret(x);\n var sign = ux >> 31;\n ux &= 0x7FFFFFFF;\n\n if (ux <= 0x3F490FDA) { // |x| ~<= π/4\n if (ux < 0x39800000) { // |x| < 2**-12\n sincos_sin = x;\n sincos_cos = 1;\n return;\n }\n sincos_sin = sin_kernf(x);\n sincos_cos = cos_kernf(x);\n return;\n }\n if (ASC_SHRINK_LEVEL < 1) {\n if (ux <= 0x407B53D1) { // |x| ~<= 5π/4\n if (ux <= 0x4016CBE3) { // |x| ~<= 3π/4\n if (sign) {\n sincos_sin = -cos_kernf(x + s1pio2);\n sincos_cos = sin_kernf(x + s1pio2);\n } else {\n sincos_sin = cos_kernf(s1pio2 - x);\n sincos_cos = sin_kernf(s1pio2 - x);\n }\n return;\n }\n // -sin(x + c) is not correct if x+c could be 0: -0 vs +0\n sincos_sin = -sin_kernf(sign ? x + s2pio2 : x - s2pio2);\n sincos_cos = -cos_kernf(sign ? x + s2pio2 : x - s2pio2);\n return;\n }\n if (ux <= 0x40E231D5) { // |x| ~<= 9π/4\n if (ux <= 0x40AFEDDF) { // |x| ~<= 7π/4\n if (sign) {\n sincos_sin = cos_kernf(x + s3pio2);\n sincos_cos = -sin_kernf(x + s3pio2);\n } else {\n sincos_sin = -cos_kernf(x - s3pio2);\n sincos_cos = sin_kernf(x - s3pio2);\n }\n return;\n }\n sincos_sin = sin_kernf(sign ? x + s4pio2 : x - s4pio2);\n sincos_cos = cos_kernf(sign ? x + s4pio2 : x - s4pio2);\n return;\n }\n }\n // sin(Inf or NaN) is NaN\n if (ux >= 0x7F800000) {\n let xx = x - x;\n sincos_sin = xx;\n sincos_cos = xx;\n return;\n }\n // general argument reduction needed\n var n = rempio2f(x, ux, sign);\n var y = rempio2f_y;\n var s = sin_kernf(y);\n var c = cos_kernf(y);\n var sin = s, cos = c;\n if (n & 1) {\n sin = c;\n cos = -s;\n }\n if (n & 2) {\n sin = -sin;\n cos = -cos;\n }\n sincos_sin = sin;\n sincos_cos = cos;\n }\n}\n\nexport function ipow32(x: i32, e: i32): i32 {\n var out = 1;\n if (ASC_SHRINK_LEVEL < 1) {\n if (x == 2) {\n return select(1 << e, 0, e < 32);\n }\n if (e <= 0) {\n if (x == -1) return select(-1, 1, e & 1);\n return i32(e == 0) | i32(x == 1);\n }\n else if (e == 1) return x;\n else if (e == 2) return x * x;\n else if (e < 32) {\n let log = 32 - clz(e);\n // 32 = 2 ^ 5, so need only five cases.\n // But some extra cases needs for properly overflowing\n switch (log) {\n case 5: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 4: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 3: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 2: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 1: {\n if (e & 1) out *= x;\n }\n }\n return out;\n }\n }\n while (e) {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n return out;\n}\n\nexport function ipow64(x: i64, e: i64): i64 {\n var out: i64 = 1;\n if (ASC_SHRINK_LEVEL < 1) {\n if (x == 2) {\n return select(1 << e, 0, e < 64);\n }\n if (e <= 0) {\n if (x == -1) return select(-1, 1, e & 1);\n return i64(e == 0) | i64(x == 1);\n }\n else if (e == 1) return x;\n else if (e == 2) return x * x;\n else if (e < 64) {\n let log = 64 - clz(e);\n // 64 = 2 ^ 6, so need only six cases.\n // But some extra cases needs for properly overflowing\n switch (log) {\n case 6: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 5: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 4: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 3: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 2: {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n case 1: {\n if (e & 1) out *= x;\n }\n }\n return out;\n }\n }\n while (e) {\n if (e & 1) out *= x;\n e >>>= 1;\n x *= x;\n }\n return out;\n}\n\n/*\nTODO:\nIn compile time if only exponent is constant we could replace ipow32/ipow64 by shortest addition chains\nwhich usually faster than exponentiation by squaring\n\nfor ipow32 and e < 32:\n\nlet b: i32, c: i32, d: i32, h: i32, k: i32, g: i32;\nswitch (e) {\n case 1: return x;\n case 2: return x * x;\n case 3: return x * x * x;\n case 4: return (b = x * x) * b;\n case 5: return (b = x * x) * b * x;\n case 6: return (b = x * x) * b * b;\n case 7: return (b = x * x) * b * b * x;\n case 8: return (d = (b = x * x) * b) * d;\n case 9: return (c = x * x * x) * c * c;\n case 10: return (d = (b = x * x) * b) * d * b;\n case 11: return (d = (b = x * x) * b) * d * b * x;\n case 12: return (d = (b = x * x) * b) * d * d;\n case 13: return (d = (b = x * x) * b) * d * d * x;\n case 14: return (d = (b = x * x) * b) * d * d * b;\n case 15: return (k = (b = x * x) * b * x) * k * k;\n case 16: return (h = (d = (b = x * x) * b) * d) * h;\n case 17: return (h = (d = (b = x * x) * b) * d) * h * x;\n case 18: return (h = (d = (b = x * x) * b) * d * x) * h;\n case 19: return (h = (d = (b = x * x) * b) * d * x) * h * x;\n case 20: return (h = (k = (b = x * x) * b * x) * k) * h;\n case 21: return (h = (k = (b = x * x) * b * x) * k) * h * x;\n case 22: return (g = (h = (k = (b = x * x) * b * x) * k) * x) * g;\n case 23: return (h = (d = (c = (b = x * x) * x) * b) * d) * h * c;\n case 24: return (h = (d = (c = x * x * x) * c) * d) * h;\n case 25: return (h = (d = (c = x * x * x) * c) * d) * h * x;\n case 26: return (g = (h = (d = (c = x * x * x) * c) * d) * x) * g;\n case 27: return (h = (d = (c = x * x * x) * c) * d) * h * c;\n case 28: return (h = (d = (c = x * x * x) * c * x) * d) * h;\n case 29: return (h = (d = (c = x * x * x) * c * x) * d) * h * x;\n case 30: return (h = (d = (c = x * x * x) * c) * d * c) * h;\n case 31: return (h = (d = (c = x * x * x) * c) * d * c) * h * x;\n}\n\nfor ipow64: TODO\nswitch (e) {\n case 32:\n ...\n case 63:\n}\n*/\n","// This file is shared with the compiler and must remain portable\n\n/** Runtime types. */\nexport enum Runtime {\n /** Simple bump allocator without GC. */\n Stub = 0,\n /** Stop the world semi-automatic GC. */\n Minimal = 1,\n /** incremental GC. */\n Incremental = 2,\n}\n","import { compareImpl } from \"./string\";\n\ntype Comparator = (a: T, b: T) => i32;\n\n// @ts-ignore: decorator\n@lazy @inline const EMPTY = u32.MAX_VALUE;\n// @ts-ignore: decorator\n@inline const INSERTION_SORT_THRESHOLD = 48;\n// @ts-ignore: decorator\n@inline const MIN_RUN_LENGTH = 32;\n\n// @ts-ignore: decorator\n@inline\nfunction log2u(n: u32): u32 {\n return 31 - clz(n);\n}\n\n// @ts-ignore: decorator\n@inline\nexport function COMPARATOR(): Comparator {\n if (isInteger()) {\n if (isSigned() && sizeof() <= 4) {\n return (a, b) => i32(a) - i32(b);\n } else {\n return (a, b) => i32(a > b) - i32(a < b);\n }\n } else if (isFloat()) {\n if (sizeof() == 4) {\n return (a, b) => {\n var ia = reinterpret(f32(a));\n var ib = reinterpret(f32(b));\n ia ^= ia >> 31 >>> 1;\n ib ^= ib >> 31 >>> 1;\n return i32(ia > ib) - i32(ia < ib);\n };\n } else {\n return (a, b) => {\n var ia = reinterpret(f64(a));\n var ib = reinterpret(f64(b));\n ia ^= ia >> 63 >>> 1;\n ib ^= ib >> 63 >>> 1;\n return i32(ia > ib) - i32(ia < ib);\n };\n }\n } else if (isString()) {\n return (a, b) => {\n if (\n changetype(a) == changetype(b) ||\n changetype(a) == 0 ||\n changetype(b) == 0\n ) return 0;\n var alen = changetype(a).length;\n var blen = changetype(b).length;\n if (!(alen | blen)) return 0;\n if (!alen) return -1;\n if (!blen) return 1;\n let res = compareImpl(\n changetype(a), 0,\n changetype(b), 0,\n min(alen, blen)\n );\n return res ? res : alen - blen;\n };\n } else {\n return (a, b) => i32(a > b) - i32(a < b);\n }\n}\n\n// Power Sort implementation (stable) from paper \"Nearly-Optimal Mergesorts\"\n// https://arxiv.org/pdf/1805.04154.pdf\n// This method usually outperform TimSort.\n// TODO: refactor c >>> 31 to c < 0 when binaryen will support this opt\nexport function SORT(\n ptr: usize,\n len: i32,\n comparator: Comparator\n): void {\n if (len <= INSERTION_SORT_THRESHOLD) {\n if (len <= 1) return;\n if (ASC_SHRINK_LEVEL < 1) {\n switch (len) {\n case 3: {\n let a = load(ptr, 0);\n let b = load(ptr, 1 << alignof());\n let c = comparator(a, b) > 0;\n store(ptr, select(b, a, c), 0);\n a = select(a, b, c);\n b = load(ptr, 2 << alignof());\n c = comparator(a, b) > 0;\n store(ptr, select(b, a, c), 1 << alignof());\n store(ptr, select(a, b, c), 2 << alignof());\n }\n case 2: {\n let a = load(ptr, 0);\n let b = load(ptr, 1 << alignof());\n let c = comparator(a, b) > 0;\n store(ptr, select(b, a, c), 0);\n store(ptr, select(a, b, c), 1 << alignof());\n return;\n }\n }\n }\n insertionSort(ptr, 0, len - 1, 0, comparator);\n return;\n }\n\n var lgPlus2 = log2u(len) + 2;\n var lgPlus2Size = lgPlus2 << alignof();\n var leftRunStartBuf = __alloc(lgPlus2Size << 1);\n var leftRunEndBuf = leftRunStartBuf + lgPlus2Size;\n\n for (let i: u32 = 0; i < lgPlus2; ++i) {\n store(leftRunStartBuf + (i << alignof()), EMPTY);\n }\n\n var buffer = __alloc(len << alignof());\n\n var hi = len - 1;\n var endA = extendRunRight(ptr, 0, hi, comparator);\n var lenA = endA + 1;\n\n if (lenA < MIN_RUN_LENGTH) {\n endA = min(hi, MIN_RUN_LENGTH - 1);\n insertionSort(ptr, 0, endA, lenA, comparator);\n }\n\n var top: u32 = 0, startA = 0;\n while (endA < hi) {\n let startB = endA + 1;\n let endB = extendRunRight(ptr, startB, hi, comparator);\n let lenB = endB - startB + 1;\n\n if (lenB < MIN_RUN_LENGTH) {\n endB = min(hi, startB + MIN_RUN_LENGTH - 1);\n insertionSort(ptr, startB, endB, lenB, comparator);\n }\n\n let k = nodePower(0, hi, startA, startB, endB);\n\n for (let i = top; i > k; --i) {\n let start = load(leftRunStartBuf + (i << alignof()));\n if (start != EMPTY) {\n mergeRuns(\n ptr,\n start,\n load(leftRunEndBuf + (i << alignof())) + 1,\n endA,\n buffer,\n comparator\n );\n startA = start;\n store(leftRunStartBuf + (i << alignof()), EMPTY);\n }\n }\n\n store(leftRunStartBuf + (k << alignof()), startA);\n store(leftRunEndBuf + (k << alignof()), endA);\n startA = startB;\n endA = endB;\n top = k;\n }\n\n for (let i = top; i != 0; --i) {\n let start = load(leftRunStartBuf + (i << alignof()));\n if (start != EMPTY) {\n mergeRuns(\n ptr,\n start,\n load(leftRunEndBuf + (i << alignof())) + 1,\n hi,\n buffer,\n comparator\n );\n }\n }\n // dealloc aux buffers\n __free(buffer);\n __free(leftRunStartBuf);\n}\n\nfunction insertionSort(\n ptr: usize,\n left: i32,\n right: i32,\n presorted: i32,\n comparator: Comparator\n): void {\n if (ASC_SHRINK_LEVEL >= 1) {\n // slightly improved original insertion sort\n for (let i = left + presorted; i <= right; ++i) {\n let j = i - 1;\n let a = load(ptr + (i << alignof()));\n while (j >= left) {\n let b = load(ptr + (j << alignof()));\n if (comparator(a, b) < 0) {\n store(ptr + (j << alignof()), b, 1 << alignof()); --j;\n } else break;\n }\n store(ptr + (j << alignof()), a, 1 << alignof());\n }\n } else {\n // even-odd two-way insertion sort which allow increase minRunLen\n let range = right - left + 1;\n let i = left + select(range & 1, presorted - ((range - presorted) & 1), presorted == 0);\n for (; i <= right; i += 2) {\n let a = load(ptr + (i << alignof()), 0);\n let b = load(ptr + (i << alignof()), 1 << alignof());\n let min = b, max = a;\n if (comparator(a, b) <= 0) {\n min = a, max = b;\n }\n let j = i - 1;\n while (j >= left) {\n a = load(ptr + (j << alignof()));\n if (comparator(a, max) > 0) {\n store(ptr + (j << alignof()), a, 2 << alignof()); --j;\n } else break;\n }\n store(ptr + (j << alignof()), max, 2 << alignof());\n while (j >= left) {\n a = load(ptr + (j << alignof()));\n if (comparator(a, min) > 0) {\n store(ptr + (j << alignof()), a, 1 << alignof()); --j;\n } else break;\n }\n store(ptr + (j << alignof()), min, 1 << alignof());\n }\n }\n}\n\nfunction nodePower(left: u32, right: u32, startA: u32, startB: u32, endB: u32): u32 {\n var n: u64 = right - left + 1;\n var s = startB - (left << 1);\n var l = startA + s;\n var r = endB + s + 1;\n var a = (l << 30) / n;\n var b = (r << 30) / n;\n return clz((a ^ b));\n}\n\nfunction extendRunRight(\n ptr: usize,\n i: i32,\n right: i32,\n comparator: Comparator\n): i32 {\n if (i == right) return i;\n var j = i;\n if (comparator(\n load(ptr + ( j << alignof())),\n load(ptr + (++j << alignof()))\n ) > 0) {\n while (\n j < right &&\n (comparator(\n load(ptr + (j << alignof()), 1 << alignof()),\n load(ptr + (j << alignof()))\n ) >>> 31) // < 0\n ) ++j;\n // reverse\n let k = j;\n while (i < k) {\n let tmp = load(ptr + (i << alignof()));\n store(ptr + (i << alignof()), load(ptr + (k << alignof()))); ++i;\n store(ptr + (k << alignof()), tmp); --k;\n }\n } else {\n while (\n j < right &&\n comparator(\n load(ptr + (j << alignof()), 1 << alignof()),\n load(ptr + (j << alignof()))\n ) >= 0\n ) ++j;\n }\n return j;\n}\n\n// Merges arr[l..m - 1] and arr[m..r]\nfunction mergeRuns(\n ptr: usize,\n l: i32,\n m: i32,\n r: i32,\n buffer: usize,\n comparator: Comparator\n): void {\n --m;\n var i: i32, j: i32, t = r + m;\n for (i = m + 1; i > l; --i) {\n store(\n buffer + ((i - 1) << alignof()),\n load(ptr + ((i - 1) << alignof()))\n );\n }\n for (j = m; j < r; ++j) {\n store(\n buffer + ((t - j) << alignof()),\n load(ptr + (j << alignof()), 1 << alignof())\n );\n }\n for (let k = l; k <= r; ++k) {\n let a = load(buffer + (j << alignof()));\n let b = load(buffer + (i << alignof()));\n if (comparator(a, b) < 0) {\n store(ptr + (k << alignof()), a);\n --j;\n } else {\n store(ptr + (k << alignof()), b);\n ++i;\n }\n }\n}\n","/// \n\nimport { BLOCK_MAXSIZE } from \"./rt/common\";\nimport { Runtime } from \"shared/runtime\";\nimport { COMPARATOR, SORT } from \"./util/sort\";\nimport { REVERSE, FILL } from \"./util/bytes\";\nimport { joinBooleanArray, joinIntegerArray, joinFloatArray, joinStringArray, joinReferenceArray } from \"./util/string\";\nimport { idof, isArray as builtin_isArray } from \"./builtins\";\nimport { E_INDEXOUTOFRANGE, E_INVALIDLENGTH, E_EMPTYARRAY, E_HOLEYARRAY } from \"./util/error\";\n\n// @ts-ignore: decorator\n@inline @lazy const MIN_SIZE: usize = 8;\n\n/** Ensures that the given array has _at least_ the specified backing size. */\nfunction ensureCapacity(array: usize, newSize: usize, alignLog2: u32, canGrow: bool = true): void {\n // Depends on the fact that Arrays mimic ArrayBufferView\n var oldCapacity = changetype(array).byteLength;\n if (newSize > oldCapacity >>> alignLog2) {\n if (newSize > BLOCK_MAXSIZE >>> alignLog2) throw new RangeError(E_INVALIDLENGTH);\n let oldData = changetype(changetype(array).buffer);\n // Grows old capacity by factor of two.\n // Make sure we don't reach BLOCK_MAXSIZE for new growed capacity.\n let newCapacity = max(newSize, MIN_SIZE) << alignLog2;\n if (canGrow) newCapacity = max(min(oldCapacity << 1, BLOCK_MAXSIZE), newCapacity);\n let newData = __renew(oldData, newCapacity);\n // __new / __renew already init memory range as zeros in Incremental runtime.\n // So try to avoid this.\n if (ASC_RUNTIME != Runtime.Incremental) {\n memory.fill(newData + oldCapacity, 0, newCapacity - oldCapacity);\n }\n if (newData != oldData) { // oldData has been free'd\n store(array, newData, offsetof(\"buffer\"));\n store(array, newData, offsetof(\"dataStart\"));\n __link(array, changetype(newData), false);\n }\n store(array, newCapacity, offsetof(\"byteLength\"));\n }\n}\n\nexport class Array {\n [key: number]: T;\n\n // Mimicking ArrayBufferView isn't strictly necessary here but is done to allow glue code\n // to work with typed and normal arrays interchangeably. Technically, normal arrays do not need\n // `dataStart` (equals `buffer`) and `byteLength` (equals computed `buffer.byteLength`), but the\n // block is 16 bytes anyway so it's fine to have a couple extra fields in there.\n\n private buffer: ArrayBuffer;\n @unsafe readonly dataStart: usize;\n private byteLength: i32; // Uses here as capacity\n\n // Also note that Array with non-nullable T must guard against uninitialized null values\n // whenever an element is accessed. Otherwise, the compiler wouldn't be able to guarantee\n // type-safety anymore. For lack of a better word, such an array is \"holey\".\n\n private length_: i32;\n\n static isArray(value: U): bool {\n return isReference() ? changetype(value) != 0 && builtin_isArray(value) : false;\n }\n\n static create(capacity: i32 = 0): Array {\n WARNING(\"'Array.create' is deprecated. Use 'new Array' instead, making sure initial elements are initialized.\");\n var array = new Array(capacity);\n array.length = 0;\n return array;\n }\n\n constructor(length: i32 = 0) {\n if (length > BLOCK_MAXSIZE >>> alignof()) throw new RangeError(E_INVALIDLENGTH);\n // reserve capacity for at least MIN_SIZE elements\n var bufferSize = max(length, MIN_SIZE) << alignof();\n var buffer = changetype(__new(bufferSize, idof()));\n if (ASC_RUNTIME != Runtime.Incremental) {\n memory.fill(changetype(buffer), 0, bufferSize);\n }\n this.buffer = buffer; // links\n this.dataStart = changetype(buffer);\n this.byteLength = bufferSize;\n this.length_ = length;\n }\n\n get length(): i32 {\n return this.length_;\n }\n\n set length(newLength: i32) {\n ensureCapacity(changetype(this), newLength, alignof(), false);\n this.length_ = newLength;\n }\n\n every(fn: (value: T, index: i32, array: Array) => bool): bool {\n for (let i = 0, len = this.length_; i < min(len, this.length_); ++i) {\n if (!fn(load(this.dataStart + (i << alignof())), i, this)) return false;\n }\n return true;\n }\n\n findIndex(fn: (value: T, index: i32, array: Array) => bool): i32 {\n for (let i = 0, len = this.length_; i < min(len, this.length_); ++i) {\n if (fn(load(this.dataStart + (i << alignof())), i, this)) return i;\n }\n return -1;\n }\n\n findLastIndex(fn: (value: T, index: i32, array: Array) => bool): i32 {\n for (let i = this.length_ - 1; i >= 0; --i) {\n if (fn(load(this.dataStart + (i << alignof())), i, this)) return i;\n }\n return -1;\n }\n\n @operator(\"[]\") private __get(index: i32): T {\n if (index >= this.length_) throw new RangeError(E_INDEXOUTOFRANGE);\n var value = load(this.dataStart + (index << alignof()));\n if (isReference()) {\n if (!isNullable()) {\n if (!changetype(value)) throw new Error(E_HOLEYARRAY);\n }\n }\n return value;\n }\n\n @unsafe @operator(\"{}\") private __uget(index: i32): T {\n return load(this.dataStart + (index << alignof()));\n }\n\n @operator(\"[]=\") private __set(index: i32, value: T): void {\n if (index >= this.length_) {\n if (index < 0) throw new RangeError(E_INDEXOUTOFRANGE);\n ensureCapacity(changetype(this), index + 1, alignof());\n this.length_ = index + 1;\n }\n this.__uset(index, value);\n }\n\n @unsafe @operator(\"{}=\") private __uset(index: i32, value: T): void {\n store(this.dataStart + (index << alignof()), value);\n if (isManaged()) {\n __link(changetype(this), changetype(value), true);\n }\n }\n\n at(index: i32): T {\n var len = this.length_;\n index += select(0, len, index >= 0);\n if (index >= len) throw new RangeError(E_INDEXOUTOFRANGE);\n var value = load(this.dataStart + (index << alignof()));\n if (isReference()) {\n if (!isNullable()) {\n if (!changetype(value)) throw new Error(E_HOLEYARRAY);\n }\n }\n return value;\n }\n\n fill(value: T, start: i32 = 0, end: i32 = i32.MAX_VALUE): Array {\n if (isManaged()) {\n FILL(this.dataStart, this.length_, changetype(value), start, end);\n __link(changetype(this), changetype(value), false);\n } else {\n FILL(this.dataStart, this.length_, value, start, end);\n }\n return this;\n }\n\n includes(value: T, fromIndex: i32 = 0): bool {\n if (isFloat()) {\n let len = this.length_;\n if (len == 0 || fromIndex >= len) return false;\n if (fromIndex < 0) fromIndex = max(len + fromIndex, 0);\n let ptr = this.dataStart;\n while (fromIndex < len) {\n let elem = load(ptr + (fromIndex << alignof()));\n // @ts-ignore\n if (elem == value || isNaN(elem) & isNaN(value)) return true;\n ++fromIndex;\n }\n return false;\n } else {\n return this.indexOf(value, fromIndex) >= 0;\n }\n }\n\n indexOf(value: T, fromIndex: i32 = 0): i32 {\n var len = this.length_;\n if (len == 0 || fromIndex >= len) return -1;\n if (fromIndex < 0) fromIndex = max(len + fromIndex, 0);\n var ptr = this.dataStart;\n while (fromIndex < len) {\n if (load(ptr + (fromIndex << alignof())) == value) return fromIndex;\n ++fromIndex;\n }\n return -1;\n }\n\n lastIndexOf(value: T, fromIndex: i32 = this.length_): i32 {\n var len = this.length_;\n if (len == 0) return -1;\n if (fromIndex < 0) fromIndex = len + fromIndex;\n else if (fromIndex >= len) fromIndex = len - 1;\n var ptr = this.dataStart;\n while (fromIndex >= 0) {\n if (load(ptr + (fromIndex << alignof())) == value) return fromIndex;\n --fromIndex;\n }\n return -1;\n }\n\n push(value: T): i32 {\n var oldLen = this.length_;\n var len = oldLen + 1;\n ensureCapacity(changetype(this), len, alignof());\n if (isManaged()) {\n store(this.dataStart + (oldLen << alignof()), changetype(value));\n __link(changetype(this), changetype(value), true);\n } else {\n store(this.dataStart + (oldLen << alignof()), value);\n }\n this.length_ = len;\n return len;\n }\n\n concat(other: Array): Array {\n var thisLen = this.length_;\n var otherLen = other.length_;\n var outLen = thisLen + otherLen;\n if (outLen > BLOCK_MAXSIZE >>> alignof()) throw new Error(E_INVALIDLENGTH);\n var out = changetype>(__newArray(outLen, alignof(), idof>()));\n var outStart = out.dataStart;\n var thisSize = thisLen << alignof();\n if (isManaged()) {\n let thisStart = this.dataStart;\n for (let offset: usize = 0; offset < thisSize; offset += sizeof()) {\n let ref = load(thisStart + offset);\n store(outStart + offset, ref);\n __link(changetype(out), ref, true);\n }\n outStart += thisSize;\n let otherStart = other.dataStart;\n let otherSize = otherLen << alignof();\n for (let offset: usize = 0; offset < otherSize; offset += sizeof()) {\n let ref = load(otherStart + offset);\n store(outStart + offset, ref);\n __link(changetype(out), ref, true);\n }\n } else {\n memory.copy(outStart, this.dataStart, thisSize);\n memory.copy(outStart + thisSize, other.dataStart, otherLen << alignof());\n }\n return out;\n }\n\n copyWithin(target: i32, start: i32, end: i32 = i32.MAX_VALUE): Array {\n var ptr = this.dataStart;\n var len = this.length_;\n\n end = min(end, len);\n\n var to = target < 0 ? max(len + target, 0) : min(target, len);\n var from = start < 0 ? max(len + start, 0) : min(start, len);\n var last = end < 0 ? max(len + end, 0) : min(end, len);\n var count = min(last - from, len - to);\n\n memory.copy( // is memmove\n ptr + (to << alignof()),\n ptr + (from << alignof()),\n count << alignof()\n );\n return this;\n }\n\n pop(): T {\n var len = this.length_;\n if (len < 1) throw new RangeError(E_EMPTYARRAY);\n var val = load(this.dataStart + ((--len) << alignof()));\n this.length_ = len;\n return val;\n }\n\n forEach(fn: (value: T, index: i32, array: Array) => void): void {\n for (let i = 0, len = this.length_; i < min(len, this.length_); ++i) {\n fn(load(this.dataStart + (i << alignof())), i, this);\n }\n }\n\n map(fn: (value: T, index: i32, array: Array) => U): Array {\n var len = this.length_;\n var out = changetype>(__newArray(len, alignof(), idof>()));\n var outStart = out.dataStart;\n for (let i = 0; i < min(len, this.length_); ++i) {\n let result = fn(load(this.dataStart + (i << alignof())), i, this);\n store(outStart + (i << alignof()), result);\n if (isManaged()) {\n __link(changetype(out), changetype(result), true);\n }\n }\n return out;\n }\n\n filter(fn: (value: T, index: i32, array: Array) => bool): Array {\n var result = changetype>(__newArray(0, alignof(), idof>()));\n for (let i = 0, len = this.length_; i < min(len, this.length_); ++i) {\n let value = load(this.dataStart + (i << alignof()));\n if (fn(value, i, this)) result.push(value);\n }\n return result;\n }\n\n reduce(\n fn: (previousValue: U, currentValue: T, currentIndex: i32, array: Array) => U,\n initialValue: U\n ): U {\n var acc = initialValue;\n for (let i = 0, len = this.length_; i < min(len, this.length_); ++i) {\n acc = fn(acc, load(this.dataStart + (i << alignof())), i, this);\n }\n return acc;\n }\n\n reduceRight(\n fn: (previousValue: U, currentValue: T, currentIndex: i32, array: Array) => U,\n initialValue: U\n ): U {\n var acc = initialValue;\n for (let i = this.length_ - 1; i >= 0; --i) {\n acc = fn(acc, load(this.dataStart + (i << alignof())), i, this);\n }\n return acc;\n }\n\n shift(): T {\n var len = this.length_;\n if (len < 1) throw new RangeError(E_EMPTYARRAY);\n var base = this.dataStart;\n var element = load(base);\n var lastIndex = len - 1;\n memory.copy(\n base,\n base + sizeof(),\n lastIndex << alignof()\n );\n if (isReference()) {\n store(base + (lastIndex << alignof()), 0);\n } else {\n // @ts-ignore\n store(base + (lastIndex << alignof()), 0);\n }\n this.length_ = lastIndex;\n return element;\n }\n\n some(fn: (value: T, index: i32, array: Array) => bool): bool {\n for (let i = 0, len = this.length_; i < min(len, this.length_); ++i) {\n if (fn(load(this.dataStart + (i << alignof())), i, this)) return true;\n }\n return false;\n }\n\n unshift(value: T): i32 {\n var len = this.length_ + 1;\n ensureCapacity(changetype(this), len, alignof());\n var ptr = this.dataStart;\n memory.copy(\n ptr + sizeof(),\n ptr,\n (len - 1) << alignof()\n );\n store(ptr, value);\n if (isManaged()) {\n __link(changetype(this), changetype(value), true);\n }\n this.length_ = len;\n return len;\n }\n\n slice(start: i32 = 0, end: i32 = i32.MAX_VALUE): Array {\n var len = this.length_;\n start = start < 0 ? max(start + len, 0) : min(start, len);\n end = end < 0 ? max(end + len, 0) : min(end , len);\n len = max(end - start, 0);\n var slice = changetype>(__newArray(len, alignof(), idof>()));\n var sliceBase = slice.dataStart;\n var thisBase = this.dataStart + (start << alignof());\n if (isManaged()) {\n let off = 0;\n let end = len << alignof();\n while (off < end) {\n let ref = load(thisBase + off);\n store(sliceBase + off, ref);\n __link(changetype(slice), ref, true);\n off += sizeof();\n }\n } else {\n memory.copy(sliceBase, thisBase, len << alignof());\n }\n return slice;\n }\n\n splice(start: i32, deleteCount: i32 = i32.MAX_VALUE): Array {\n var len = this.length_;\n start = start < 0 ? max(len + start, 0) : min(start, len);\n deleteCount = max(min(deleteCount, len - start), 0);\n var result = changetype>(__newArray(deleteCount, alignof(), idof>()));\n var resultStart = result.dataStart;\n var thisStart = this.dataStart;\n var thisBase = thisStart + (start << alignof());\n memory.copy(\n resultStart,\n thisBase,\n deleteCount << alignof()\n );\n var offset = start + deleteCount;\n if (len != offset) {\n memory.copy(\n thisBase,\n thisStart + (offset << alignof()),\n (len - offset) << alignof()\n );\n }\n this.length_ = len - deleteCount;\n return result;\n }\n\n reverse(): Array {\n REVERSE(this.dataStart, this.length_);\n return this;\n }\n\n sort(comparator: (a: T, b: T) => i32 = COMPARATOR()): Array {\n SORT(this.dataStart, this.length_, comparator);\n return this;\n }\n\n join(separator: string = \",\"): string {\n var ptr = this.dataStart;\n var len = this.length_;\n if (isBoolean()) return joinBooleanArray(ptr, len, separator);\n if (isInteger()) return joinIntegerArray(ptr, len, separator);\n if (isFloat()) return joinFloatArray(ptr, len, separator);\n\n if (ASC_SHRINK_LEVEL < 1) {\n if (isString()) return joinStringArray(ptr, len, separator);\n }\n // For rest objects and arrays use general join routine\n if (isReference()) return joinReferenceArray(ptr, len, separator);\n ERROR(\"unspported element type\");\n return unreachable();\n }\n\n flat(): T {\n if (!isArray()) {\n ERROR(\"Cannot call flat() on Array where T is not an Array.\");\n }\n // Get the length and data start values\n var ptr = this.dataStart;\n var len = this.length_;\n\n // calculate the end size with an initial pass\n var size = 0;\n for (let i = 0; i < len; ++i) {\n let child = load(ptr + (i << alignof()));\n size += child == 0 ? 0 : load(child, offsetof(\"length_\"));\n }\n\n // calculate the byteLength of the resulting backing ArrayBuffer\n const align = alignof>();\n var byteLength = size << align;\n var outBuffer = changetype(__new(byteLength, idof()));\n\n // create the return value and initialize it\n var outArray = changetype(__new(offsetof(), idof()));\n store(changetype(outArray), size, offsetof(\"length_\"));\n\n // byteLength, dataStart, and buffer are all readonly\n store(changetype(outArray), byteLength, offsetof(\"byteLength\"));\n store(changetype(outArray), changetype(outBuffer), offsetof(\"dataStart\"));\n store(changetype(outArray), changetype(outBuffer), offsetof(\"buffer\"));\n __link(changetype(outArray), changetype(outBuffer), false);\n\n // set the elements\n var resultOffset: usize = 0;\n for (let i = 0; i < len; ++i) { // for each child\n let child = load(ptr + (i << alignof()));\n\n // ignore null arrays\n if (!child) continue;\n\n // copy the underlying buffer data to the result buffer\n let childDataLength = load(child, offsetof(\"length_\")) << align;\n memory.copy(\n changetype(outBuffer) + resultOffset,\n load(child, offsetof(\"dataStart\")),\n childDataLength\n );\n\n // advance the result length\n resultOffset += childDataLength;\n }\n\n // if the `valueof` type is managed, we must link each reference\n if (isManaged>()) {\n for (let i = 0; i < size; ++i) {\n let ref = load(changetype(outBuffer) + (i << usize(alignof>())));\n __link(changetype(outBuffer), ref, true);\n }\n }\n\n return outArray;\n }\n\n toString(): string {\n return this.join();\n }\n\n // RT integration\n\n @unsafe private __visit(cookie: u32): void {\n if (isManaged()) {\n let cur = this.dataStart;\n let end = cur + (this.length_ << alignof());\n while (cur < end) {\n let val = load(cur);\n if (val) __visit(val, cookie);\n cur += sizeof();\n }\n }\n __visit(changetype(this.buffer), cookie);\n }\n}\n","// Common error messages for use across the standard library. Keeping error messages compact\n// and reusing them where possible ensures minimal static data in binaries.\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_INDEXOUTOFRANGE: string = \"Index out of range\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_VALUEOUTOFRANGE: string = \"Value out of range\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_INVALIDLENGTH: string = \"Invalid length\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_EMPTYARRAY: string = \"Array is empty\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_HOLEYARRAY: string = \"Element type must be nullable if array is holey\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_NOTIMPLEMENTED: string = \"Not implemented\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_KEYNOTFOUND: string = \"Key does not exist\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_ALLOCATION_TOO_LARGE: string = \"Allocation too large\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_ALREADY_PINNED: string = \"Object already pinned\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_NOT_PINNED: string = \"Object is not pinned\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_URI_MALFORMED: string = \"URI malformed\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_INVALIDDATE: string = \"Invalid Date\";\n\n// @ts-ignore: decorator\n@lazy @inline\nexport const E_UNPAIRED_SURROGATE: string = \"Unpaired surrogate\";\n"]} \ No newline at end of file diff --git a/packages/noise/build/release.wat b/packages/noise/build/release.wat deleted file mode 100644 index b5e4b15e78..0000000000 --- a/packages/noise/build/release.wat +++ /dev/null @@ -1,468 +0,0 @@ -(module - (type $i32_i32_i32_i32_=>_none (func (param i32 i32 i32 i32))) - (type $i32_=>_i32 (func (param i32) (result i32))) - (type $i32_f64_f64_f64_=>_f64 (func (param i32 f64 f64 f64) (result f64))) - (type $i32_i32_i32_i32_=>_f64 (func (param i32 i32 i32 i32) (result f64))) - (import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32))) - (global $~lib/memory/__stack_pointer (mut i32) (i32.const 19660)) - (memory $0 1) - (data (i32.const 1036) "\1c\08") - (data (i32.const 1053) "\08\00\00\97\00\00\00\a0\00\00\00\89\00\00\00[\00\00\00Z\00\00\00\0f\00\00\00\83\00\00\00\r\00\00\00\c9\00\00\00_\00\00\00`\00\00\005\00\00\00\c2\00\00\00\e9\00\00\00\07\00\00\00\e1\00\00\00\8c\00\00\00$\00\00\00g\00\00\00\1e\00\00\00E\00\00\00\8e\00\00\00\08\00\00\00c\00\00\00%\00\00\00\f0\00\00\00\15\00\00\00\n\00\00\00\17\00\00\00\be\00\00\00\06\00\00\00\94\00\00\00\f7\00\00\00x\00\00\00\ea\00\00\00K\00\00\00\00\00\00\00\1a\00\00\00\c5\00\00\00>\00\00\00^\00\00\00\fc\00\00\00\db\00\00\00\cb\00\00\00u\00\00\00#\00\00\00\0b\00\00\00 \00\00\009\00\00\00\b1\00\00\00!\00\00\00X\00\00\00\ed\00\00\00\95\00\00\008\00\00\00W\00\00\00\ae\00\00\00\14\00\00\00}\00\00\00\88\00\00\00\ab\00\00\00\a8\00\00\00D\00\00\00\af\00\00\00J\00\00\00\a5\00\00\00G\00\00\00\86\00\00\00\8b\00\00\000\00\00\00\1b\00\00\00\a6\00\00\00M\00\00\00\92\00\00\00\9e\00\00\00\e7\00\00\00S\00\00\00o\00\00\00\e5\00\00\00z\00\00\00<\00\00\00\d3\00\00\00\85\00\00\00\e6\00\00\00\dc\00\00\00i\00\00\00\\\00\00\00)\00\00\007\00\00\00.\00\00\00\f5\00\00\00(\00\00\00\f4\00\00\00f\00\00\00\8f\00\00\006\00\00\00A\00\00\00\19\00\00\00?\00\00\00\a1\00\00\00\01\00\00\00\d8\00\00\00P\00\00\00I\00\00\00\d1\00\00\00L\00\00\00\84\00\00\00\bb\00\00\00\d0\00\00\00Y\00\00\00\12\00\00\00\a9\00\00\00\c8\00\00\00\c4\00\00\00\87\00\00\00\82\00\00\00t\00\00\00\bc\00\00\00\9f\00\00\00V\00\00\00\a4\00\00\00d\00\00\00m\00\00\00\c6\00\00\00\ad\00\00\00\ba\00\00\00\03\00\00\00@\00\00\004\00\00\00\d9\00\00\00\e2\00\00\00\fa\00\00\00|\00\00\00{\00\00\00\05\00\00\00\ca\00\00\00&\00\00\00\93\00\00\00v\00\00\00~\00\00\00\ff\00\00\00R\00\00\00U\00\00\00\d4\00\00\00\cf\00\00\00\ce\00\00\00;\00\00\00\e3\00\00\00/\00\00\00\10\00\00\00:\00\00\00\11\00\00\00\b6\00\00\00\bd\00\00\00\1c\00\00\00*\00\00\00\df\00\00\00\b7\00\00\00\aa\00\00\00\d5\00\00\00w\00\00\00\f8\00\00\00\98\00\00\00\02\00\00\00,\00\00\00\9a\00\00\00\a3\00\00\00F\00\00\00\dd\00\00\00\99\00\00\00e\00\00\00\9b\00\00\00\a7\00\00\00+\00\00\00\ac\00\00\00\t\00\00\00\81\00\00\00\16\00\00\00\'\00\00\00\fd\00\00\00\13\00\00\00b\00\00\00l\00\00\00n\00\00\00O\00\00\00q\00\00\00\e0\00\00\00\e8\00\00\00\b2\00\00\00\b9\00\00\00p\00\00\00h\00\00\00\da\00\00\00\f6\00\00\00a\00\00\00\e4\00\00\00\fb\00\00\00\"\00\00\00\f2\00\00\00\c1\00\00\00\ee\00\00\00\d2\00\00\00\90\00\00\00\0c\00\00\00\bf\00\00\00\b3\00\00\00\a2\00\00\00\f1\00\00\00Q\00\00\003\00\00\00\91\00\00\00\eb\00\00\00\f9\00\00\00\0e\00\00\00\ef\00\00\00k\00\00\001\00\00\00\c0\00\00\00\d6\00\00\00\1f\00\00\00\b5\00\00\00\c7\00\00\00j\00\00\00\9d\00\00\00\b8\00\00\00T\00\00\00\cc\00\00\00\b0\00\00\00s\00\00\00y\00\00\002\00\00\00-\00\00\00\7f\00\00\00\04\00\00\00\96\00\00\00\fe\00\00\00\8a\00\00\00\ec\00\00\00\cd\00\00\00]\00\00\00\de\00\00\00r\00\00\00C\00\00\00\1d\00\00\00\18\00\00\00H\00\00\00\f3\00\00\00\8d\00\00\00\80\00\00\00\c3\00\00\00N\00\00\00B\00\00\00\d7\00\00\00=\00\00\00\9c\00\00\00\b4\00\00\00\97\00\00\00\a0\00\00\00\89\00\00\00[\00\00\00Z\00\00\00\0f\00\00\00\83\00\00\00\r\00\00\00\c9\00\00\00_\00\00\00`\00\00\005\00\00\00\c2\00\00\00\e9\00\00\00\07\00\00\00\e1\00\00\00\8c\00\00\00$\00\00\00g\00\00\00\1e\00\00\00E\00\00\00\8e\00\00\00\08\00\00\00c\00\00\00%\00\00\00\f0\00\00\00\15\00\00\00\n\00\00\00\17\00\00\00\be\00\00\00\06\00\00\00\94\00\00\00\f7\00\00\00x\00\00\00\ea\00\00\00K\00\00\00\00\00\00\00\1a\00\00\00\c5\00\00\00>\00\00\00^\00\00\00\fc\00\00\00\db\00\00\00\cb\00\00\00u\00\00\00#\00\00\00\0b\00\00\00 \00\00\009\00\00\00\b1\00\00\00!\00\00\00X\00\00\00\ed\00\00\00\95\00\00\008\00\00\00W\00\00\00\ae\00\00\00\14\00\00\00}\00\00\00\88\00\00\00\ab\00\00\00\a8\00\00\00D\00\00\00\af\00\00\00J\00\00\00\a5\00\00\00G\00\00\00\86\00\00\00\8b\00\00\000\00\00\00\1b\00\00\00\a6\00\00\00M\00\00\00\92\00\00\00\9e\00\00\00\e7\00\00\00S\00\00\00o\00\00\00\e5\00\00\00z\00\00\00<\00\00\00\d3\00\00\00\85\00\00\00\e6\00\00\00\dc\00\00\00i\00\00\00\\\00\00\00)\00\00\007\00\00\00.\00\00\00\f5\00\00\00(\00\00\00\f4\00\00\00f\00\00\00\8f\00\00\006\00\00\00A\00\00\00\19\00\00\00?\00\00\00\a1\00\00\00\01\00\00\00\d8\00\00\00P\00\00\00I\00\00\00\d1\00\00\00L\00\00\00\84\00\00\00\bb\00\00\00\d0\00\00\00Y\00\00\00\12\00\00\00\a9\00\00\00\c8\00\00\00\c4\00\00\00\87\00\00\00\82\00\00\00t\00\00\00\bc\00\00\00\9f\00\00\00V\00\00\00\a4\00\00\00d\00\00\00m\00\00\00\c6\00\00\00\ad\00\00\00\ba\00\00\00\03\00\00\00@\00\00\004\00\00\00\d9\00\00\00\e2\00\00\00\fa\00\00\00|\00\00\00{\00\00\00\05\00\00\00\ca\00\00\00&\00\00\00\93\00\00\00v\00\00\00~\00\00\00\ff\00\00\00R\00\00\00U\00\00\00\d4\00\00\00\cf\00\00\00\ce\00\00\00;\00\00\00\e3\00\00\00/\00\00\00\10\00\00\00:\00\00\00\11\00\00\00\b6\00\00\00\bd\00\00\00\1c\00\00\00*\00\00\00\df\00\00\00\b7\00\00\00\aa\00\00\00\d5\00\00\00w\00\00\00\f8\00\00\00\98\00\00\00\02\00\00\00,\00\00\00\9a\00\00\00\a3\00\00\00F\00\00\00\dd\00\00\00\99\00\00\00e\00\00\00\9b\00\00\00\a7\00\00\00+\00\00\00\ac\00\00\00\t\00\00\00\81\00\00\00\16\00\00\00\'\00\00\00\fd\00\00\00\13\00\00\00b\00\00\00l\00\00\00n\00\00\00O\00\00\00q\00\00\00\e0\00\00\00\e8\00\00\00\b2\00\00\00\b9\00\00\00p\00\00\00h\00\00\00\da\00\00\00\f6\00\00\00a\00\00\00\e4\00\00\00\fb\00\00\00\"\00\00\00\f2\00\00\00\c1\00\00\00\ee\00\00\00\d2\00\00\00\90\00\00\00\0c\00\00\00\bf\00\00\00\b3\00\00\00\a2\00\00\00\f1\00\00\00Q\00\00\003\00\00\00\91\00\00\00\eb\00\00\00\f9\00\00\00\0e\00\00\00\ef\00\00\00k\00\00\001\00\00\00\c0\00\00\00\d6\00\00\00\1f\00\00\00\b5\00\00\00\c7\00\00\00j\00\00\00\9d\00\00\00\b8\00\00\00T\00\00\00\cc\00\00\00\b0\00\00\00s\00\00\00y\00\00\002\00\00\00-\00\00\00\7f\00\00\00\04\00\00\00\96\00\00\00\fe\00\00\00\8a\00\00\00\ec\00\00\00\cd\00\00\00]\00\00\00\de\00\00\00r\00\00\00C\00\00\00\1d\00\00\00\18\00\00\00H\00\00\00\f3\00\00\00\8d\00\00\00\80\00\00\00\c3\00\00\00N\00\00\00B\00\00\00\d7\00\00\00=\00\00\00\9c\00\00\00\b4") - (data (i32.const 3116) ",") - (data (i32.const 3128) "\03\00\00\00\10\00\00\00 \04\00\00 \04\00\00\00\08\00\00\00\02") - (data (i32.const 3164) "<") - (data (i32.const 3176) "\01\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e") - (data (i32.const 3228) ",") - (data (i32.const 3240) "\01\00\00\00\1a\00\00\00~\00l\00i\00b\00/\00a\00r\00r\00a\00y\00.\00t\00s") - (export "perlin" (func $assembly/perlin/perlin)) - (export "memory" (memory $0)) - (func $~lib/array/Array#__get (param $0 i32) (result i32) - local.get $0 - i32.const 3148 - i32.load $0 - i32.ge_u - if - i32.const 3184 - i32.const 3248 - i32.const 114 - i32.const 42 - call $~lib/builtins/abort - unreachable - end - i32.const 3140 - i32.load $0 - local.get $0 - i32.const 2 - i32.shl - i32.add - i32.load $0 - ) - (func $assembly/perlin/grad (param $0 i32) (param $1 f64) (param $2 f64) (param $3 f64) (result f64) - block $case16|0 - block $case15|0 - block $case14|0 - block $case13|0 - block $case12|0 - block $case11|0 - block $case10|0 - block $case9|0 - block $case8|0 - block $case7|0 - block $case6|0 - block $case5|0 - block $case4|0 - block $case3|0 - block $case2|0 - block $case1|0 - block $case0|0 - local.get $0 - i32.const 15 - i32.and - br_table $case0|0 $case1|0 $case2|0 $case3|0 $case4|0 $case5|0 $case6|0 $case7|0 $case8|0 $case9|0 $case10|0 $case11|0 $case12|0 $case13|0 $case14|0 $case15|0 $case16|0 - end - local.get $1 - local.get $2 - f64.add - return - end - local.get $2 - local.get $1 - f64.sub - return - end - local.get $1 - local.get $2 - f64.sub - return - end - local.get $1 - f64.neg - local.get $2 - f64.sub - return - end - local.get $1 - local.get $3 - f64.add - return - end - local.get $3 - local.get $1 - f64.sub - return - end - local.get $1 - local.get $3 - f64.sub - return - end - local.get $1 - f64.neg - local.get $3 - f64.sub - return - end - local.get $2 - local.get $3 - f64.add - return - end - local.get $3 - local.get $2 - f64.sub - return - end - local.get $2 - local.get $3 - f64.sub - return - end - local.get $2 - f64.neg - local.get $3 - f64.sub - return - end - local.get $2 - local.get $1 - f64.add - return - end - local.get $3 - local.get $2 - f64.sub - return - end - local.get $2 - local.get $1 - f64.sub - return - end - local.get $2 - f64.neg - local.get $3 - f64.sub - return - end - f64.const 0 - ) - (func $assembly/perlin/perlin (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (result f64) - (local $4 f64) - (local $5 f64) - (local $6 f64) - (local $7 i32) - (local $8 f64) - (local $9 f64) - (local $10 f64) - (local $11 f64) - (local $12 f64) - (local $13 f64) - (local $14 f64) - global.get $~lib/memory/__stack_pointer - i32.const 4 - i32.sub - global.set $~lib/memory/__stack_pointer - global.get $~lib/memory/__stack_pointer - i32.const 3276 - i32.lt_s - if - i32.const 19680 - i32.const 19728 - i32.const 1 - i32.const 1 - call $~lib/builtins/abort - unreachable - end - global.get $~lib/memory/__stack_pointer - local.tee $7 - i32.const 0 - i32.store $0 - local.get $7 - i32.const 3136 - i32.store $0 - local.get $0 - f64.convert_i32_s - local.get $3 - f64.convert_i32_s - local.tee $4 - f64.div - local.tee $5 - f64.floor - local.tee $6 - i32.trunc_sat_f64_s - i32.const 255 - i32.and - local.tee $0 - call $~lib/array/Array#__get - local.get $1 - f64.convert_i32_s - local.get $4 - f64.div - local.tee $8 - f64.floor - local.tee $9 - i32.trunc_sat_f64_s - i32.const 255 - i32.and - local.tee $1 - i32.add - local.set $3 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $3 - call $~lib/array/Array#__get - local.get $2 - f64.convert_i32_s - local.get $4 - f64.div - local.tee $4 - f64.floor - local.tee $10 - i32.trunc_sat_f64_s - i32.const 255 - i32.and - local.tee $2 - i32.add - local.set $7 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $3 - i32.const 1 - i32.add - call $~lib/array/Array#__get - local.get $2 - i32.add - local.set $3 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $0 - i32.const 1 - i32.add - call $~lib/array/Array#__get - local.get $1 - i32.add - local.set $0 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $0 - call $~lib/array/Array#__get - local.get $2 - i32.add - local.set $1 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $0 - i32.const 1 - i32.add - call $~lib/array/Array#__get - local.get $2 - i32.add - local.set $0 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $7 - call $~lib/array/Array#__get - local.get $5 - local.get $6 - f64.sub - local.tee $11 - local.get $8 - local.get $9 - f64.sub - local.tee $8 - local.get $4 - local.get $10 - f64.sub - local.tee $9 - call $assembly/perlin/grad - local.set $5 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $5 - local.get $11 - local.get $11 - f64.mul - local.get $11 - f64.mul - local.get $11 - local.get $11 - f64.const 6 - f64.mul - f64.const -15 - f64.add - f64.mul - f64.const 10 - f64.add - f64.mul - local.tee $10 - local.get $1 - call $~lib/array/Array#__get - local.get $11 - f64.const -1 - f64.add - local.tee $4 - local.get $8 - local.get $9 - call $assembly/perlin/grad - local.get $5 - f64.sub - f64.mul - f64.add - local.set $6 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $3 - call $~lib/array/Array#__get - local.get $11 - local.get $8 - f64.const -1 - f64.add - local.tee $5 - local.get $9 - call $assembly/perlin/grad - local.set $12 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $6 - local.get $8 - local.get $8 - f64.mul - local.get $8 - f64.mul - local.get $8 - local.get $8 - f64.const 6 - f64.mul - f64.const -15 - f64.add - f64.mul - f64.const 10 - f64.add - f64.mul - local.tee $13 - local.get $12 - local.get $10 - local.get $0 - call $~lib/array/Array#__get - local.get $4 - local.get $5 - local.get $9 - call $assembly/perlin/grad - local.get $12 - f64.sub - f64.mul - f64.add - local.get $6 - f64.sub - f64.mul - f64.add - local.set $12 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $7 - i32.const 1 - i32.add - call $~lib/array/Array#__get - local.get $11 - local.get $8 - local.get $9 - f64.const -1 - f64.add - local.tee $6 - call $assembly/perlin/grad - local.set $14 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $14 - local.get $10 - local.get $1 - i32.const 1 - i32.add - call $~lib/array/Array#__get - local.get $4 - local.get $8 - local.get $6 - call $assembly/perlin/grad - local.get $14 - f64.sub - f64.mul - f64.add - local.set $8 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $3 - i32.const 1 - i32.add - call $~lib/array/Array#__get - local.get $11 - local.get $5 - local.get $6 - call $assembly/perlin/grad - local.set $11 - global.get $~lib/memory/__stack_pointer - i32.const 3136 - i32.store $0 - local.get $12 - local.get $9 - local.get $9 - f64.mul - local.get $9 - f64.mul - local.get $9 - local.get $9 - f64.const 6 - f64.mul - f64.const -15 - f64.add - f64.mul - f64.const 10 - f64.add - f64.mul - local.get $8 - local.get $13 - local.get $11 - local.get $10 - local.get $0 - i32.const 1 - i32.add - call $~lib/array/Array#__get - local.get $4 - local.get $5 - local.get $6 - call $assembly/perlin/grad - local.get $11 - f64.sub - f64.mul - f64.add - local.get $8 - f64.sub - f64.mul - f64.add - local.get $12 - f64.sub - f64.mul - f64.add - f64.const 1 - f64.add - f64.const 0.5 - f64.mul - local.set $4 - global.get $~lib/memory/__stack_pointer - i32.const 4 - i32.add - global.set $~lib/memory/__stack_pointer - local.get $4 - ) -) diff --git a/packages/noise/contracts/Perlin.sol b/packages/noise/contracts/Perlin.sol new file mode 100644 index 0000000000..9c64b72c1f --- /dev/null +++ b/packages/noise/contracts/Perlin.sol @@ -0,0 +1,1341 @@ +// SPDX-License-Identifier: MIT +pragma solidity >=0.8.24; + +import { ABDKMath64x64 as Math } from "abdk-libraries-solidity/ABDKMath64x64.sol"; + +// Commonly used numbers as 64.64 fixed point +int128 constant _1 = 2 ** 64; +int128 constant _2 = 2 * 2 ** 64; +int128 constant _6 = 6 * 2 ** 64; +int128 constant _10 = 10 * 2 ** 64; +int128 constant _15 = 15 * 2 ** 64; + +struct H { + int16 X; + int16 Y; + int16 Z; + int16 A; + int16 AA; + int16 AB; + int16 B; + int16 BA; + int16 BB; + int16 pX; + int16 pA; + int16 pB; + int16 pAA; + int16 pAB; + int16 pBA; + int16 pBB; + int128 x; + int128 y; + int128 z; + int128 u; + int128 v; + int128 w; + int128 r; +} + +struct H2 { + int16 X; + int16 Y; + int16 A; + int16 AA; + int16 AB; + int16 B; + int16 BA; + int16 BB; + int16 pX; + int16 pA; + int16 pB; + int128 x; + int128 y; + int128 u; + int128 r; +} + +/// @title Perlin noise library +/// @author alvarius +/// @notice Ported from perlin reference implementation (https://cs.nyu.edu/~perlin/noise/) +library Perlin { + function noise2d(int256 _x, int256 _y, int256 denom, uint8 precision) internal pure returns (int128) { + H2 memory h = H2(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); + + // Convert fraction into 64.64 fixed point number + h.x = Math.divi(_x, denom); + h.y = Math.divi(_y, denom); + + // Find unit cube that contains point + h.X = int16(Math.toInt(h.x)) & 0xff; + h.Y = int16(Math.toInt(h.y)) & 0xff; + + // Find relative x,y,z of point in cube + h.x = Math.sub(h.x, floor(h.x)); + h.y = Math.sub(h.y, floor(h.y)); + + // Compute fade curves for each x,y,z + h.u = fade(h.x); + + // Hash coordinates of the 4 square corners + h.pX = p2(h.X); + h.A = i0(h.pX) + h.Y; + h.pA = p2(h.A); + h.AA = i0(h.pA); + h.AB = i1(h.pA); + h.B = i1(h.pX) + h.Y; + h.pB = p2(h.B); + h.BA = i0(h.pB); + h.BB = i1(h.pB); + + // Add blended results from 4 corners of square + h.r = lerp( + fade(h.y), + lerp(h.u, grad2d(int16(p(h.AA)), h.x, h.y), grad2d(int16(p(h.BA)), dec(h.x), h.y)), + lerp(h.u, grad2d(int16(p(h.AB)), h.x, dec(h.y)), grad2d(int16(p(h.BB)), dec(h.x), dec(h.y))) + ); + + // Shift to range from 0 to 1 + return Math.div(Math.add(h.r, _1), _2) >> (64 - precision); + } + + function noise(int256 _x, int256 _y, int256 _z, int256 denom, uint8 precision) internal pure returns (int128) { + H memory h = H(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); + + // Convert fraction into 64.64 fixed point number + h.x = Math.divi(_x, denom); + h.y = Math.divi(_y, denom); + h.z = Math.divi(_z, denom); + + // Find unit cube that contains point + h.X = int16(Math.toInt(h.x)) & 255; + h.Y = int16(Math.toInt(h.y)) & 255; + h.Z = int16(Math.toInt(h.z)) & 255; + + // Find relative x,y,z of point in cube + h.x = Math.sub(h.x, floor(h.x)); + h.y = Math.sub(h.y, floor(h.y)); + h.z = Math.sub(h.z, floor(h.z)); + + // Compute fade curves for each x,y,z + h.u = fade(h.x); + h.v = fade(h.y); + h.w = fade(h.z); + + // Hash coordinates of the 8 cube corners + h.pX = p2(h.X); + h.A = i0(h.pX) + h.Y; + h.pA = p2(h.A); + h.AA = i0(h.pA) + h.Z; + h.AB = i1(h.pA) + h.Z; + h.B = i1(h.pX) + h.Y; + h.pB = p2(h.B); + h.BA = i0(h.pB) + h.Z; + h.BB = i1(h.pB) + h.Z; + h.pAA = p2(h.AA); + h.pAB = p2(h.AB); + h.pBA = p2(h.BA); + h.pBB = p2(h.BB); + + // Add blended results from 8 corners of cube + h.r = lerp( + h.w, + lerp( + h.v, + lerp(h.u, grad(i0(h.pAA), h.x, h.y, h.z), grad(i0(h.pBA), dec(h.x), h.y, h.z)), + lerp(h.u, grad(i0(h.pAB), h.x, dec(h.y), h.z), grad(i0(h.pBB), dec(h.x), dec(h.y), h.z)) + ), + lerp( + h.v, + lerp(h.u, grad(i1(h.pAA), h.x, h.y, dec(h.z)), grad(i1(h.pBA), dec(h.x), h.y, dec(h.z))), + lerp(h.u, grad(i1(h.pAB), h.x, dec(h.y), dec(h.z)), grad(i1(h.pBB), dec(h.x), dec(h.y), dec(h.z))) + ) + ); + + // Shift to range from 0 to 1 + return Math.div(Math.add(h.r, _1), _2) >> (64 - precision); + } + + function dec(int128 x) internal pure returns (int128) { + return Math.sub(x, _1); + } + + function floor(int128 x) internal pure returns (int128) { + return Math.fromInt(int256(Math.toInt(x))); + } + + /** + * Computes t * t * t * (t * (t * 6 - 15) + 10) + **/ + function fade(int128 t) internal pure returns (int128) { + return Math.mul(t, Math.mul(t, Math.mul(t, (Math.add(Math.mul(t, (Math.sub(Math.mul(t, _6), _15))), _10))))); + } + + /** + * Computes a + t * (b - a) + **/ + function lerp(int128 t, int128 a, int128 b) internal pure returns (int128) { + return Math.add(a, Math.mul(t, (Math.sub(b, a)))); + } + + /** + * Modified from original perlin paper based on http://riven8192.blogspot.com/2010/08/calculate-perlinnoise-twice-as-fast.html + **/ + function grad(int16 _hash, int128 x, int128 y, int128 z) internal pure returns (int128) { + // Convert lower 4 bits to hash code into 12 gradient directions + int16 h = _hash & 0xF; + + if (h <= 0x7) { + if (h <= 0x3) { + if (h <= 0x1) { + if (h == 0x0) return Math.add(x, y); + return Math.sub(y, x); + } else { + if (h == 0x2) return Math.sub(x, y); + return Math.sub(Math.neg(x), y); + } + } else { + if (h <= 0x5) { + if (h == 0x4) return Math.add(x, z); + return Math.sub(z, x); + } else { + if (h == 0x6) return Math.sub(x, z); + return Math.sub(Math.neg(x), z); + } + } + } else { + if (h <= 0xB) { + if (h <= 0x9) { + if (h == 0x8) return Math.add(y, z); + return Math.sub(z, y); + } else { + if (h == 0xA) return Math.sub(y, z); + return Math.sub(Math.neg(y), z); + } + } else { + if (h <= 0xD) { + if (h == 0xC) return Math.add(y, x); + return Math.add(Math.neg(y), z); + } else { + if (h == 0xE) return Math.sub(y, x); + return Math.sub(Math.neg(y), z); + } + } + } + } + + /** + * Modified from original perlin paper based on http://riven8192.blogspot.com/2010/08/calculate-perlinnoise-twice-as-fast.html + **/ + function grad2d(int16 _hash, int128 x, int128 y) internal pure returns (int128) { + // Convert lower 4 bits to hash code into 12 gradient directions + int16 h = _hash & 0xF; + if (h <= 0x7) { + if (h <= 0x3) { + if (h <= 0x1) { + if (h == 0x0) return Math.add(x, y); + return Math.sub(y, x); + } else { + if (h == 0x2) return Math.sub(x, y); + return Math.sub(Math.neg(x), y); + } + } else { + if (h <= 0x5) { + if (h == 0x4) return x; + return Math.neg(x); + } else { + if (h == 0x6) return x; + return Math.neg(x); + } + } + } else { + if (h <= 0xB) { + if (h <= 0x9) { + if (h == 0x8) return y; + return Math.neg(y); + } else { + if (h == 0xA) return y; + return Math.neg(y); + } + } else { + if (h <= 0xD) { + if (h == 0xC) return Math.add(y, x); + return Math.neg(y); + } else { + if (h == 0xE) return Math.sub(y, x); + return Math.neg(y); + } + } + } + } + + /** + * Returns the value at the given index from the ptable + */ + function p(int64 i) internal pure returns (int64) { + return int64(ptable(int256(i)) >> 8); + } + + /** + * Returns an encoded tuple of the value at the given index and the subsequent value from the ptable. + * Value of the requested index is at i0(result), subsequent value is at i1(result) + */ + function p2(int16 i) internal pure returns (int16) { + return int16(ptable(int256(i))); + } + + /** + * Helper function to access value at index 0 from the encoded tuple returned by p2 + */ + function i0(int16 tuple) internal pure returns (int16) { + return tuple >> 8; + } + + /** + * Helper function to access value at index 1 from the encoded tuple returned by p2 + */ + function i1(int16 tuple) internal pure returns (int16) { + return tuple & 0xff; + } + + /** + * From https://github.com/0x10f/solidity-perlin-noise/blob/master/contracts/PerlinNoise.sol + * + * @notice Gets a subsequent values in the permutation table at an index. The values are encoded + * into a single 16 bit integer with the value at the specified index being the most + * significant 8 bits and the subsequent value being the least significant 8 bits. + * + * @param i the index in the permutation table. + * + * @dev The values from the table are mapped out into a binary tree for faster lookups. + * Looking up any value in the table in this implementation is is O(8), in + * the implementation of sequential if statements it is O(255). + * + * @dev The body of this function is autogenerated. Check out the 'gen-ptable' script. + * (https://github.com/0x10f/solidity-perlin-noise/blob/master/scripts/gen-ptable.js) + */ + function ptable(int256 i) internal pure returns (int256) { + i &= 0xff; + + if (i <= 127) { + if (i <= 63) { + if (i <= 31) { + if (i <= 15) { + if (i <= 7) { + if (i <= 3) { + if (i <= 1) { + if (i == 0) { + return 38816; + } else { + return 41097; + } + } else { + if (i == 2) { + return 35163; + } else { + return 23386; + } + } + } else { + if (i <= 5) { + if (i == 4) { + return 23055; + } else { + return 3971; + } + } else { + if (i == 6) { + return 33549; + } else { + return 3529; + } + } + } + } else { + if (i <= 11) { + if (i <= 9) { + if (i == 8) { + return 51551; + } else { + return 24416; + } + } else { + if (i == 10) { + return 24629; + } else { + return 13762; + } + } + } else { + if (i <= 13) { + if (i == 12) { + return 49897; + } else { + return 59655; + } + } else { + if (i == 14) { + return 2017; + } else { + return 57740; + } + } + } + } + } else { + if (i <= 23) { + if (i <= 19) { + if (i <= 17) { + if (i == 16) { + return 35876; + } else { + return 9319; + } + } else { + if (i == 18) { + return 26398; + } else { + return 7749; + } + } + } else { + if (i <= 21) { + if (i == 20) { + return 17806; + } else { + return 36360; + } + } else { + if (i == 22) { + return 2147; + } else { + return 25381; + } + } + } + } else { + if (i <= 27) { + if (i <= 25) { + if (i == 24) { + return 9712; + } else { + return 61461; + } + } else { + if (i == 26) { + return 5386; + } else { + return 2583; + } + } + } else { + if (i <= 29) { + if (i == 28) { + return 6078; + } else { + return 48646; + } + } else { + if (i == 30) { + return 1684; + } else { + return 38135; + } + } + } + } + } + } else { + if (i <= 47) { + if (i <= 39) { + if (i <= 35) { + if (i <= 33) { + if (i == 32) { + return 63352; + } else { + return 30954; + } + } else { + if (i == 34) { + return 59979; + } else { + return 19200; + } + } + } else { + if (i <= 37) { + if (i == 36) { + return 26; + } else { + return 6853; + } + } else { + if (i == 38) { + return 50494; + } else { + return 15966; + } + } + } + } else { + if (i <= 43) { + if (i <= 41) { + if (i == 40) { + return 24316; + } else { + return 64731; + } + } else { + if (i == 42) { + return 56267; + } else { + return 52085; + } + } + } else { + if (i <= 45) { + if (i == 44) { + return 29987; + } else { + return 8971; + } + } else { + if (i == 46) { + return 2848; + } else { + return 8249; + } + } + } + } + } else { + if (i <= 55) { + if (i <= 51) { + if (i <= 49) { + if (i == 48) { + return 14769; + } else { + return 45345; + } + } else { + if (i == 50) { + return 8536; + } else { + return 22765; + } + } + } else { + if (i <= 53) { + if (i == 52) { + return 60821; + } else { + return 38200; + } + } else { + if (i == 54) { + return 14423; + } else { + return 22446; + } + } + } + } else { + if (i <= 59) { + if (i <= 57) { + if (i == 56) { + return 44564; + } else { + return 5245; + } + } else { + if (i == 58) { + return 32136; + } else { + return 34987; + } + } + } else { + if (i <= 61) { + if (i == 60) { + return 43944; + } else { + return 43076; + } + } else { + if (i == 62) { + return 17583; + } else { + return 44874; + } + } + } + } + } + } + } else { + if (i <= 95) { + if (i <= 79) { + if (i <= 71) { + if (i <= 67) { + if (i <= 65) { + if (i == 64) { + return 19109; + } else { + return 42311; + } + } else { + if (i == 66) { + return 18310; + } else { + return 34443; + } + } + } else { + if (i <= 69) { + if (i == 68) { + return 35632; + } else { + return 12315; + } + } else { + if (i == 70) { + return 7078; + } else { + return 42573; + } + } + } + } else { + if (i <= 75) { + if (i <= 73) { + if (i == 72) { + return 19858; + } else { + return 37534; + } + } else { + if (i == 74) { + return 40679; + } else { + return 59219; + } + } + } else { + if (i <= 77) { + if (i == 76) { + return 21359; + } else { + return 28645; + } + } else { + if (i == 78) { + return 58746; + } else { + return 31292; + } + } + } + } + } else { + if (i <= 87) { + if (i <= 83) { + if (i <= 81) { + if (i == 80) { + return 15571; + } else { + return 54149; + } + } else { + if (i == 82) { + return 34278; + } else { + return 59100; + } + } + } else { + if (i <= 85) { + if (i == 84) { + return 56425; + } else { + return 26972; + } + } else { + if (i == 86) { + return 23593; + } else { + return 10551; + } + } + } + } else { + if (i <= 91) { + if (i <= 89) { + if (i == 88) { + return 14126; + } else { + return 12021; + } + } else { + if (i == 90) { + return 62760; + } else { + return 10484; + } + } + } else { + if (i <= 93) { + if (i == 92) { + return 62566; + } else { + return 26255; + } + } else { + if (i == 94) { + return 36662; + } else { + return 13889; + } + } + } + } + } + } else { + if (i <= 111) { + if (i <= 103) { + if (i <= 99) { + if (i <= 97) { + if (i == 96) { + return 16665; + } else { + return 6463; + } + } else { + if (i == 98) { + return 16289; + } else { + return 41217; + } + } + } else { + if (i <= 101) { + if (i == 100) { + return 472; + } else { + return 55376; + } + } else { + if (i == 102) { + return 20553; + } else { + return 18897; + } + } + } + } else { + if (i <= 107) { + if (i <= 105) { + if (i == 104) { + return 53580; + } else { + return 19588; + } + } else { + if (i == 106) { + return 33979; + } else { + return 48080; + } + } + } else { + if (i <= 109) { + if (i == 108) { + return 53337; + } else { + return 22802; + } + } else { + if (i == 110) { + return 4777; + } else { + return 43464; + } + } + } + } + } else { + if (i <= 119) { + if (i <= 115) { + if (i <= 113) { + if (i == 112) { + return 51396; + } else { + return 50311; + } + } else { + if (i == 114) { + return 34690; + } else { + return 33396; + } + } + } else { + if (i <= 117) { + if (i == 116) { + return 29884; + } else { + return 48287; + } + } else { + if (i == 118) { + return 40790; + } else { + return 22180; + } + } + } + } else { + if (i <= 123) { + if (i <= 121) { + if (i == 120) { + return 42084; + } else { + return 25709; + } + } else { + if (i == 122) { + return 28102; + } else { + return 50861; + } + } + } else { + if (i <= 125) { + if (i == 124) { + return 44474; + } else { + return 47619; + } + } else { + if (i == 126) { + return 832; + } else { + return 16436; + } + } + } + } + } + } + } + } else { + if (i <= 191) { + if (i <= 159) { + if (i <= 143) { + if (i <= 135) { + if (i <= 131) { + if (i <= 129) { + if (i == 128) { + return 13529; + } else { + return 55778; + } + } else { + if (i == 130) { + return 58106; + } else { + return 64124; + } + } + } else { + if (i <= 133) { + if (i == 132) { + return 31867; + } else { + return 31493; + } + } else { + if (i == 134) { + return 1482; + } else { + return 51750; + } + } + } + } else { + if (i <= 139) { + if (i <= 137) { + if (i == 136) { + return 9875; + } else { + return 37750; + } + } else { + if (i == 138) { + return 30334; + } else { + return 32511; + } + } + } else { + if (i <= 141) { + if (i == 140) { + return 65362; + } else { + return 21077; + } + } else { + if (i == 142) { + return 21972; + } else { + return 54479; + } + } + } + } + } else { + if (i <= 151) { + if (i <= 147) { + if (i <= 145) { + if (i == 144) { + return 53198; + } else { + return 52795; + } + } else { + if (i == 146) { + return 15331; + } else { + return 58159; + } + } + } else { + if (i <= 149) { + if (i == 148) { + return 12048; + } else { + return 4154; + } + } else { + if (i == 150) { + return 14865; + } else { + return 4534; + } + } + } + } else { + if (i <= 155) { + if (i <= 153) { + if (i == 152) { + return 46781; + } else { + return 48412; + } + } else { + if (i == 154) { + return 7210; + } else { + return 10975; + } + } + } else { + if (i <= 157) { + if (i == 156) { + return 57271; + } else { + return 47018; + } + } else { + if (i == 158) { + return 43733; + } else { + return 54647; + } + } + } + } + } + } else { + if (i <= 175) { + if (i <= 167) { + if (i <= 163) { + if (i <= 161) { + if (i == 160) { + return 30712; + } else { + return 63640; + } + } else { + if (i == 162) { + return 38914; + } else { + return 556; + } + } + } else { + if (i <= 165) { + if (i == 164) { + return 11418; + } else { + return 39587; + } + } else { + if (i == 166) { + return 41798; + } else { + return 18141; + } + } + } + } else { + if (i <= 171) { + if (i <= 169) { + if (i == 168) { + return 56729; + } else { + return 39269; + } + } else { + if (i == 170) { + return 26011; + } else { + return 39847; + } + } + } else { + if (i <= 173) { + if (i == 172) { + return 42795; + } else { + return 11180; + } + } else { + if (i == 174) { + return 44041; + } else { + return 2433; + } + } + } + } + } else { + if (i <= 183) { + if (i <= 179) { + if (i <= 177) { + if (i == 176) { + return 33046; + } else { + return 5671; + } + } else { + if (i == 178) { + return 10237; + } else { + return 64787; + } + } + } else { + if (i <= 181) { + if (i == 180) { + return 4962; + } else { + return 25196; + } + } else { + if (i == 182) { + return 27758; + } else { + return 28239; + } + } + } + } else { + if (i <= 187) { + if (i <= 185) { + if (i == 184) { + return 20337; + } else { + return 29152; + } + } else { + if (i == 186) { + return 57576; + } else { + return 59570; + } + } + } else { + if (i <= 189) { + if (i == 188) { + return 45753; + } else { + return 47472; + } + } else { + if (i == 190) { + return 28776; + } else { + return 26842; + } + } + } + } + } + } + } else { + if (i <= 223) { + if (i <= 207) { + if (i <= 199) { + if (i <= 195) { + if (i <= 193) { + if (i == 192) { + return 56054; + } else { + return 63073; + } + } else { + if (i == 194) { + return 25060; + } else { + return 58619; + } + } + } else { + if (i <= 197) { + if (i == 196) { + return 64290; + } else { + return 8946; + } + } else { + if (i == 198) { + return 62145; + } else { + return 49646; + } + } + } + } else { + if (i <= 203) { + if (i <= 201) { + if (i == 200) { + return 61138; + } else { + return 53904; + } + } else { + if (i == 202) { + return 36876; + } else { + return 3263; + } + } + } else { + if (i <= 205) { + if (i == 204) { + return 49075; + } else { + return 45986; + } + } else { + if (i == 206) { + return 41713; + } else { + return 61777; + } + } + } + } + } else { + if (i <= 215) { + if (i <= 211) { + if (i <= 209) { + if (i == 208) { + return 20787; + } else { + return 13201; + } + } else { + if (i == 210) { + return 37355; + } else { + return 60409; + } + } + } else { + if (i <= 213) { + if (i == 212) { + return 63758; + } else { + return 3823; + } + } else { + if (i == 214) { + return 61291; + } else { + return 27441; + } + } + } + } else { + if (i <= 219) { + if (i <= 217) { + if (i == 216) { + return 12736; + } else { + return 49366; + } + } else { + if (i == 218) { + return 54815; + } else { + return 8117; + } + } + } else { + if (i <= 221) { + if (i == 220) { + return 46535; + } else { + return 51050; + } + } else { + if (i == 222) { + return 27293; + } else { + return 40376; + } + } + } + } + } + } else { + if (i <= 239) { + if (i <= 231) { + if (i <= 227) { + if (i <= 225) { + if (i == 224) { + return 47188; + } else { + return 21708; + } + } else { + if (i == 226) { + return 52400; + } else { + return 45171; + } + } + } else { + if (i <= 229) { + if (i == 228) { + return 29561; + } else { + return 31026; + } + } else { + if (i == 230) { + return 12845; + } else { + return 11647; + } + } + } + } else { + if (i <= 235) { + if (i <= 233) { + if (i == 232) { + return 32516; + } else { + return 1174; + } + } else { + if (i == 234) { + return 38654; + } else { + return 65162; + } + } + } else { + if (i <= 237) { + if (i == 236) { + return 35564; + } else { + return 60621; + } + } else { + if (i == 238) { + return 52573; + } else { + return 24030; + } + } + } + } + } else { + if (i <= 247) { + if (i <= 243) { + if (i <= 241) { + if (i == 240) { + return 56946; + } else { + return 29251; + } + } else { + if (i == 242) { + return 17181; + } else { + return 7448; + } + } + } else { + if (i <= 245) { + if (i == 244) { + return 6216; + } else { + return 18675; + } + } else { + if (i == 246) { + return 62349; + } else { + return 36224; + } + } + } + } else { + if (i <= 251) { + if (i <= 249) { + if (i == 248) { + return 32963; + } else { + return 49998; + } + } else { + if (i == 250) { + return 20034; + } else { + return 17111; + } + } + } else { + if (i <= 253) { + if (i == 252) { + return 55101; + } else { + return 15772; + } + } else { + if (i == 254) { + return 40116; + } else { + return 46231; + } + } + } + } + } + } + } + } + } +} diff --git a/packages/noise/dist/index.d.ts b/packages/noise/dist/index.d.ts deleted file mode 100644 index af1700bf44..0000000000 --- a/packages/noise/dist/index.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -declare function fetchAndCompileWasmModule(url: URL | string): Promise; -declare function lerp(t: number, a: number, b: number): number; -declare function createSplines(splines: [number, number][]): (x: number) => number; -type Perlin = (_x: number, _y: number, _z: number, denom: number) => number; -declare function createPerlin(): Promise; - -export { Perlin, createPerlin, createSplines, fetchAndCompileWasmModule, lerp }; diff --git a/packages/noise/dist/index.js b/packages/noise/dist/index.js deleted file mode 100644 index 806b2a9c31..0000000000 --- a/packages/noise/dist/index.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict";var p=Object.create;var o=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var y=(e,r)=>{for(var n in r)o(e,n,{get:r[n],enumerable:!0})},i=(e,r,n,t)=>{if(r&&typeof r=="object"||typeof r=="function")for(let m of d(r))!h.call(e,m)&&m!==n&&o(e,m,{get:()=>r[m],enumerable:!(t=f(r,m))||t.enumerable});return e};var u=(e,r,n)=>(n=e!=null?p(w(e)):{},i(r||!e||!e.__esModule?o(n,"default",{value:e,enumerable:!0}):n,e)),x=e=>i(o({},"__esModule",{value:!0}),e);var A={};y(A,{createPerlin:()=>_,createSplines:()=>P,fetchAndCompileWasmModule:()=>c,lerp:()=>l});module.exports=x(A);var s=u(require("fs")),b=u(require("path")),a={};async function c(e){try{return await WebAssembly.compileStreaming(fetch(e))}catch{return WebAssembly.compile(s.default.readFileSync(e))}}function l(e,r,n){return r+e*(n-r)}function g(e,r){let n=e.findIndex(t=>t[0]>=r);if(n>0)return[e[n-1],e[n]];console.warn("out of reach",r,e)}function P(e){return r=>{let n=g(e,r);if(!n)return r;let t=(r-n[0][0])/(n[1][0]-n[0][0]);return l(t,n[0][1],n[1][1])}}async function _(){let e=await c(a.url?new URL("../build/release.wasm",a.url):b.default.resolve(__dirname,"../build/release.wasm"));return(await WebAssembly.instantiate(e,{env:{abort:n=>{throw new Error("abort called in wasm perlin: "+n)}}})).exports.perlin}0&&(module.exports={createPerlin,createSplines,fetchAndCompileWasmModule,lerp}); -//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/packages/noise/dist/index.js.map b/packages/noise/dist/index.js.map deleted file mode 100644 index bcdf46ed18..0000000000 --- a/packages/noise/dist/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../ts/index.ts"],"sourcesContent":["import fs from \"fs\";\nimport path from \"path\";\n// import * as buffer from \"buffer\";\n// const { Buffer } = buffer;\n\n// export function encodePackedU32(inputs: number[]): Buffer {\n// const buffer = Buffer.from(inputs.map((i) => i.toString(16).padStart(8, \"0\")).join(\"\"), \"hex\");\n// return buffer;\n// }\n\nexport async function fetchAndCompileWasmModule(url: URL | string) {\n try {\n return await WebAssembly.compileStreaming(fetch(url));\n } catch {\n return WebAssembly.compile(fs.readFileSync(url));\n }\n}\n\nexport function lerp(t: number, a: number, b: number): number {\n return a + t * (b - a);\n}\n\nfunction getSplinePoints(splines: [number, number][], x: number) {\n const index = splines.findIndex((s) => s[0] >= x);\n if (index > 0) return [splines[index - 1], splines[index]];\n console.warn(\"out of reach\", x, splines);\n return undefined;\n}\n\nexport function createSplines(splines: [number, number][]): (x: number) => number {\n return (x: number) => {\n const points = getSplinePoints(splines, x);\n if (!points) return x;\n\n const t = (x - points[0][0]) / (points[1][0] - points[0][0]);\n const height = lerp(t, points[0][1], points[1][1]);\n\n return height;\n };\n}\n\nexport type Perlin = (_x: number, _y: number, _z: number, denom: number) => number;\n\nexport async function createPerlin(): Promise {\n const wasmModule = await fetchAndCompileWasmModule(\n import.meta.url\n ? new URL(\"../build/release.wasm\", import.meta.url)\n : path.resolve(__dirname, \"../build/release.wasm\")\n );\n const wasmInstance = await WebAssembly.instantiate(wasmModule, {\n env: {\n abort: (e: string) => {\n throw new Error(\"abort called in wasm perlin: \" + e);\n },\n },\n });\n\n return wasmInstance.exports.perlin as Perlin;\n}\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,kBAAAC,EAAA,8BAAAC,EAAA,SAAAC,IAAA,eAAAC,EAAAN,GAAA,IAAAO,EAAe,iBACfC,EAAiB,mBADjBC,EAAA,GAUA,eAAsBL,EAA0BM,EAAmB,CACjE,GAAI,CACF,OAAO,MAAM,YAAY,iBAAiB,MAAMA,CAAG,CAAC,CACtD,MAAE,CACA,OAAO,YAAY,QAAQ,EAAAC,QAAG,aAAaD,CAAG,CAAC,CACjD,CACF,CAEO,SAASL,EAAKO,EAAWC,EAAWC,EAAmB,CAC5D,OAAOD,EAAID,GAAKE,EAAID,EACtB,CAEA,SAASE,EAAgBC,EAA6BC,EAAW,CAC/D,IAAMC,EAAQF,EAAQ,UAAWG,GAAMA,EAAE,CAAC,GAAKF,CAAC,EAChD,GAAIC,EAAQ,EAAG,MAAO,CAACF,EAAQE,EAAQ,CAAC,EAAGF,EAAQE,CAAK,CAAC,EACzD,QAAQ,KAAK,eAAgBD,EAAGD,CAAO,CAEzC,CAEO,SAASb,EAAca,EAAoD,CAChF,OAAQC,GAAc,CACpB,IAAMG,EAASL,EAAgBC,EAASC,CAAC,EACzC,GAAI,CAACG,EAAQ,OAAOH,EAEpB,IAAM,GAAKA,EAAIG,EAAO,CAAC,EAAE,CAAC,IAAMA,EAAO,CAAC,EAAE,CAAC,EAAIA,EAAO,CAAC,EAAE,CAAC,GAG1D,OAFef,EAAK,EAAGe,EAAO,CAAC,EAAE,CAAC,EAAGA,EAAO,CAAC,EAAE,CAAC,CAAC,CAGnD,CACF,CAIA,eAAsBlB,GAAgC,CACpD,IAAMmB,EAAa,MAAMjB,EACvBK,EAAY,IACR,IAAI,IAAI,wBAAyBA,EAAY,GAAG,EAChD,EAAAa,QAAK,QAAQ,UAAW,uBAAuB,CACrD,EASA,OARqB,MAAM,YAAY,YAAYD,EAAY,CAC7D,IAAK,CACH,MAAQE,GAAc,CACpB,MAAM,IAAI,MAAM,gCAAkCA,CAAC,CACrD,CACF,CACF,CAAC,GAEmB,QAAQ,MAC9B","names":["ts_exports","__export","createPerlin","createSplines","fetchAndCompileWasmModule","lerp","__toCommonJS","import_fs","import_path","import_meta","url","fs","t","a","b","getSplinePoints","splines","x","index","s","points","wasmModule","path","e"]} \ No newline at end of file diff --git a/packages/noise/dist/index.mjs b/packages/noise/dist/index.mjs deleted file mode 100644 index c1de3d4fbb..0000000000 --- a/packages/noise/dist/index.mjs +++ /dev/null @@ -1,2 +0,0 @@ -import m from"fs";import o from"path";async function i(n){try{return await WebAssembly.compileStreaming(fetch(n))}catch{return WebAssembly.compile(m.readFileSync(n))}}function u(n,r,e){return r+n*(e-r)}function a(n,r){let e=n.findIndex(t=>t[0]>=r);if(e>0)return[n[e-1],n[e]];console.warn("out of reach",r,n)}function l(n){return r=>{let e=a(n,r);if(!e)return r;let t=(r-e[0][0])/(e[1][0]-e[0][0]);return u(t,e[0][1],e[1][1])}}async function p(){let n=await i(import.meta.url?new URL("../build/release.wasm",import.meta.url):o.resolve(__dirname,"../build/release.wasm"));return(await WebAssembly.instantiate(n,{env:{abort:e=>{throw new Error("abort called in wasm perlin: "+e)}}})).exports.perlin}export{p as createPerlin,l as createSplines,i as fetchAndCompileWasmModule,u as lerp}; -//# sourceMappingURL=index.mjs.map \ No newline at end of file diff --git a/packages/noise/dist/index.mjs.map b/packages/noise/dist/index.mjs.map deleted file mode 100644 index 88ec6748b3..0000000000 --- a/packages/noise/dist/index.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../ts/index.ts"],"sourcesContent":["import fs from \"fs\";\nimport path from \"path\";\n// import * as buffer from \"buffer\";\n// const { Buffer } = buffer;\n\n// export function encodePackedU32(inputs: number[]): Buffer {\n// const buffer = Buffer.from(inputs.map((i) => i.toString(16).padStart(8, \"0\")).join(\"\"), \"hex\");\n// return buffer;\n// }\n\nexport async function fetchAndCompileWasmModule(url: URL | string) {\n try {\n return await WebAssembly.compileStreaming(fetch(url));\n } catch {\n return WebAssembly.compile(fs.readFileSync(url));\n }\n}\n\nexport function lerp(t: number, a: number, b: number): number {\n return a + t * (b - a);\n}\n\nfunction getSplinePoints(splines: [number, number][], x: number) {\n const index = splines.findIndex((s) => s[0] >= x);\n if (index > 0) return [splines[index - 1], splines[index]];\n console.warn(\"out of reach\", x, splines);\n return undefined;\n}\n\nexport function createSplines(splines: [number, number][]): (x: number) => number {\n return (x: number) => {\n const points = getSplinePoints(splines, x);\n if (!points) return x;\n\n const t = (x - points[0][0]) / (points[1][0] - points[0][0]);\n const height = lerp(t, points[0][1], points[1][1]);\n\n return height;\n };\n}\n\nexport type Perlin = (_x: number, _y: number, _z: number, denom: number) => number;\n\nexport async function createPerlin(): Promise {\n const wasmModule = await fetchAndCompileWasmModule(\n import.meta.url\n ? new URL(\"../build/release.wasm\", import.meta.url)\n : path.resolve(__dirname, \"../build/release.wasm\")\n );\n const wasmInstance = await WebAssembly.instantiate(wasmModule, {\n env: {\n abort: (e: string) => {\n throw new Error(\"abort called in wasm perlin: \" + e);\n },\n },\n });\n\n return wasmInstance.exports.perlin as Perlin;\n}\n"],"mappings":"AAAA,OAAOA,MAAQ,KACf,OAAOC,MAAU,OASjB,eAAsBC,EAA0BC,EAAmB,CACjE,GAAI,CACF,OAAO,MAAM,YAAY,iBAAiB,MAAMA,CAAG,CAAC,CACtD,MAAE,CACA,OAAO,YAAY,QAAQH,EAAG,aAAaG,CAAG,CAAC,CACjD,CACF,CAEO,SAASC,EAAKC,EAAWC,EAAWC,EAAmB,CAC5D,OAAOD,EAAID,GAAKE,EAAID,EACtB,CAEA,SAASE,EAAgBC,EAA6BC,EAAW,CAC/D,IAAMC,EAAQF,EAAQ,UAAWG,GAAMA,EAAE,CAAC,GAAKF,CAAC,EAChD,GAAIC,EAAQ,EAAG,MAAO,CAACF,EAAQE,EAAQ,CAAC,EAAGF,EAAQE,CAAK,CAAC,EACzD,QAAQ,KAAK,eAAgBD,EAAGD,CAAO,CAEzC,CAEO,SAASI,EAAcJ,EAAoD,CAChF,OAAQC,GAAc,CACpB,IAAMI,EAASN,EAAgBC,EAASC,CAAC,EACzC,GAAI,CAACI,EAAQ,OAAOJ,EAEpB,IAAM,GAAKA,EAAII,EAAO,CAAC,EAAE,CAAC,IAAMA,EAAO,CAAC,EAAE,CAAC,EAAIA,EAAO,CAAC,EAAE,CAAC,GAG1D,OAFeV,EAAK,EAAGU,EAAO,CAAC,EAAE,CAAC,EAAGA,EAAO,CAAC,EAAE,CAAC,CAAC,CAGnD,CACF,CAIA,eAAsBC,GAAgC,CACpD,IAAMC,EAAa,MAAMd,EACvB,YAAY,IACR,IAAI,IAAI,wBAAyB,YAAY,GAAG,EAChDD,EAAK,QAAQ,UAAW,uBAAuB,CACrD,EASA,OARqB,MAAM,YAAY,YAAYe,EAAY,CAC7D,IAAK,CACH,MAAQ,GAAc,CACpB,MAAM,IAAI,MAAM,gCAAkC,CAAC,CACrD,CACF,CACF,CAAC,GAEmB,QAAQ,MAC9B","names":["fs","path","fetchAndCompileWasmModule","url","lerp","t","a","b","getSplinePoints","splines","x","index","s","createSplines","points","createPerlin","wasmModule"]} \ No newline at end of file diff --git a/packages/noise/foundry.toml b/packages/noise/foundry.toml new file mode 100644 index 0000000000..555dbf1c24 --- /dev/null +++ b/packages/noise/foundry.toml @@ -0,0 +1,14 @@ +[profile.default] +solc = "0.8.24" +ffi = false +fuzz_runs = 256 +optimizer = true +optimizer_runs = 3000 +verbosity = 2 +allow_paths = ["../../node_modules"] +src = "contracts" +out = "out" +extra_output_files = [ + "abi", + "evm.bytecode" +] diff --git a/packages/noise/hardhat.config.cts b/packages/noise/hardhat.config.cts new file mode 100644 index 0000000000..98e2e0da85 --- /dev/null +++ b/packages/noise/hardhat.config.cts @@ -0,0 +1,11 @@ +import { HardhatUserConfig } from "hardhat/config"; +import "@nomicfoundation/hardhat-chai-matchers"; + +const config: HardhatUserConfig = { + solidity: "0.8.9", + paths: { + tests: "test/hardhat/", + }, +}; + +export default config; diff --git a/packages/noise/modules.d.ts b/packages/noise/modules.d.ts new file mode 100644 index 0000000000..451295253b --- /dev/null +++ b/packages/noise/modules.d.ts @@ -0,0 +1 @@ +declare module "keccak-wasm"; diff --git a/packages/noise/package.json b/packages/noise/package.json index da10af978c..d09d623a97 100644 --- a/packages/noise/package.json +++ b/packages/noise/package.json @@ -2,6 +2,7 @@ "name": "@latticexyz/noise", "version": "2.0.0-next.17", "license": "MIT", + "type": "module", "exports": { ".": "./dist/index.js" }, diff --git a/packages/noise/remappings.txt b/packages/noise/remappings.txt new file mode 100644 index 0000000000..2a8e2bcd27 --- /dev/null +++ b/packages/noise/remappings.txt @@ -0,0 +1,3 @@ +ds-test/=node_modules/ds-test/src/ +forge-std/=node_modules/forge-std/src/ +abdk-libraries-solidity/=node_modules/abdk-libraries-solidity/ diff --git a/packages/noise/test/forge/Perlin.t.sol b/packages/noise/test/forge/Perlin.t.sol new file mode 100644 index 0000000000..8e3eb5f95c --- /dev/null +++ b/packages/noise/test/forge/Perlin.t.sol @@ -0,0 +1,19 @@ +// SPDX-License-Identifier: MIT +pragma solidity >=0.8.24; + +import "forge-std/Test.sol"; +import { Perlin } from "../../contracts/Perlin.sol"; + +contract PerlinTest is Test { + function testGaslimitNoise3D(int64 x, int64 y, int64 z) public { + Perlin.noise(x, y, z, 7, 64); + } + + function testGasLimitNoise2D(int64 x, int64 y) public { + Perlin.noise2d(x, y, 7, 64); + } + + function testEquality(int64 x, int64 y) public { + assertEq(Perlin.noise(x, y, 0, 7, 64), Perlin.noise2d(x, y, 7, 64)); + } +} diff --git a/packages/noise/test/hardhat/keccak.spec.ts b/packages/noise/test/hardhat/keccak.spec.ts new file mode 100644 index 0000000000..bd68a733ff --- /dev/null +++ b/packages/noise/test/hardhat/keccak.spec.ts @@ -0,0 +1,35 @@ +// eslint-disable-next-line @typescript-eslint/ban-ts-comment +// @ts-ignore +import { InitializeKeccak, keccak256 } from "keccak-wasm"; +import { expect } from "chai"; +import web3Utils from "web3-utils"; +import { encodePackedU32 } from "../../ts"; + +const { soliditySha3 } = web3Utils; + +describe("keccak256", () => { + before(async () => { + await InitializeKeccak(); + }); + it("should compute the same hash as soliditySha3 for a string", () => { + const msg = "hello"; + expect("0x" + keccak256(msg)).to.eq(soliditySha3(msg)); + expect(keccak256(msg)).to.eq("1c8aff950685c2ed4bc3174f3472287b56d9517b9c948127319a09a7a36deac8"); + }); + it("should compute the same hash as soliditySha3 for abi.encodePacked params", () => { + const x = 10; + const y = 11; + const scale = 12; + const seed = 13; + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const correctHash = soliditySha3( + { t: "uint32", v: x }, + { t: "uint32", v: y }, + { t: "uint32", v: scale }, + { t: "uint32", v: seed }, + )!; + const encodedString = encodePackedU32([x, y, scale, seed]); + const testHash = "0x" + keccak256(encodedString, true); + expect(testHash).to.eq(correctHash); + }); +}); diff --git a/packages/noise/test/hardhat/perlin.spec.ts b/packages/noise/test/hardhat/perlin.spec.ts new file mode 100644 index 0000000000..01c3780b91 --- /dev/null +++ b/packages/noise/test/hardhat/perlin.spec.ts @@ -0,0 +1,112 @@ +import { expect } from "chai"; +import hardhat from "hardhat"; +import fs from "fs"; +import { fetchAndCompileWasmModule } from "../../ts"; + +const { ethers } = hardhat; + +const SCALE = 7; +const PRECISION = 10; + +describe("Perlin", () => { + let getPerlinWasm: (x: number, y: number) => number = () => 0; + let getPerlinSol: (x: number, y: number) => Promise = async () => 0; + + before(async () => { + // Solidity setup + const PerlinSol = await ethers.getContractFactory("Perlin"); + const deployedPerlinNoise = await PerlinSol.deploy(); + getPerlinSol = async (x: number, y: number) => + (await deployedPerlinNoise.noise(x, y, 0, SCALE, PRECISION)) / 2 ** PRECISION; + + // AssemblyScript setup + // In esm environments the compiled function can be imported directly + // but hardhat does not support esm + // import { perlin } from "../build/release"; + const wasmModule = await fetchAndCompileWasmModule(new URL("../../build/release.wasm", import.meta.url)); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const wasmInstance: any = await WebAssembly.instantiate(wasmModule, { + env: { + abort: (e: string) => { + throw new Error("abort called in wasm perlin: " + e); + }, + }, + }); + + getPerlinWasm = (x: number, y: number) => + Math.floor(wasmInstance.exports.perlin(x, y, 0, SCALE) * 2 ** PRECISION) / 2 ** PRECISION; + }); + + describe("getPerlinSol", () => { + it("should return perlin noise", async () => { + expect(await getPerlinSol(10, 10)).to.eq(0.748046875); + }); + + it("should support negative coordinates", async () => { + expect(await getPerlinSol(-10, 10)).to.eq(0.2421875); + }); + + it("should generate json for 16x16 rect", async () => { + const values: number[] = []; + for (let y = -8; y < 8; y++) { + for (let x = -8; x < 8; x++) { + values.push(Number(await getPerlinSol(x, y))); + } + } + fs.writeFileSync("web/sol_perlin.json", JSON.stringify([...values])); + }); + }); + + describe("getPerlinWasm", () => { + it("should return perlin noise", () => { + expect(getPerlinWasm(10, 10)).to.eq(0.748046875); + }); + + it("should support negative coordinates", () => { + expect(getPerlinWasm(-10, 10)).to.eq(0.2421875); + }); + + it("should the same perlin values as getPerlinSol", async () => { + for (let x = -5; x < 5; x++) { + for (let y = -5; y < 5; y++) { + const solPerlin = await getPerlinSol(x, y); + const wasmPerlin = getPerlinWasm(x, y); + expect(solPerlin).to.eq(wasmPerlin); + } + } + }); + + it("should compute 256x256 perlin values in < 16ms", () => { + const start = Date.now(); + for (let x = -128; x < 128; x++) { + for (let y = -128; y < 128; y++) { + getPerlinWasm(x, y); + } + } + const end = Date.now(); + const duration = end - start; + expect(duration).to.be.lte(16); + console.log("Time to compute 256x256 perlin values:", duration); + }); + + it("should return values between 0 and 1", () => { + for (let x = -8; x < 8; x++) { + for (let y = -8; y < 8; y++) { + const p = getPerlinWasm(x, y); + expect(p).to.lte(1); + expect(p).to.gte(0); + } + } + }); + + it("should generate json for 512x512 rect", async () => { + const values: number[] = []; + for (let y = -256; y < 256; y++) { + for (let x = -256; x < 256; x++) { + values.push(getPerlinWasm(x, y)); + } + } + fs.writeFileSync("web/wasm_perlin.json", JSON.stringify([...values])); + }); + }); +}); diff --git a/packages/noise/ts/index.ts b/packages/noise/ts/index.ts index 228ddab7ab..00ec42ec5e 100644 --- a/packages/noise/ts/index.ts +++ b/packages/noise/ts/index.ts @@ -1,5 +1,4 @@ import fs from "fs"; -import path from "path"; // import * as buffer from "buffer"; // const { Buffer } = buffer; @@ -8,7 +7,7 @@ import path from "path"; // return buffer; // } -export async function fetchAndCompileWasmModule(url: URL | string) { +export async function fetchAndCompileWasmModule(url: URL) { try { return await WebAssembly.compileStreaming(fetch(url)); } catch { @@ -39,14 +38,10 @@ export function createSplines(splines: [number, number][]): (x: number) => numbe }; } -export type Perlin = (_x: number, _y: number, _z: number, denom: number) => number; +type Perlin = (_x: number, _y: number, _z: number, denom: number) => number; export async function createPerlin(): Promise { - const wasmModule = await fetchAndCompileWasmModule( - import.meta.url - ? new URL("../build/release.wasm", import.meta.url) - : path.resolve(__dirname, "../build/release.wasm") - ); + const wasmModule = await fetchAndCompileWasmModule(new URL("../build/release.wasm", import.meta.url)); const wasmInstance = await WebAssembly.instantiate(wasmModule, { env: { abort: (e: string) => { diff --git a/packages/noise/tsconfig.json b/packages/noise/tsconfig.json new file mode 100644 index 0000000000..a2a2cc8f36 --- /dev/null +++ b/packages/noise/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "es2020", + "module": "ES2022", + "moduleResolution": "node", + "types": ["hardhat"], + "resolveJsonModule": true, + "declaration": true, + "sourceMap": true, + "outDir": "dist", + "isolatedModules": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "skipLibCheck": true + }, + "include": ["ts"] +} diff --git a/packages/noise/tsup.config.ts b/packages/noise/tsup.config.ts index 59f79395cc..5837375692 100644 --- a/packages/noise/tsup.config.ts +++ b/packages/noise/tsup.config.ts @@ -3,7 +3,7 @@ import { defineConfig } from "tsup"; export default defineConfig({ entry: ["ts/index.ts"], target: "esnext", - format: ["esm", "cjs"], + format: ["esm"], dts: true, sourcemap: true, clean: true, diff --git a/packages/noise/web/index.html b/packages/noise/web/index.html new file mode 100644 index 0000000000..52852d5b3d --- /dev/null +++ b/packages/noise/web/index.html @@ -0,0 +1,53 @@ + + + + + + diff --git a/packages/noise/web/sol_perlin.json b/packages/noise/web/sol_perlin.json new file mode 100644 index 0000000000..1d587ef4f4 --- /dev/null +++ b/packages/noise/web/sol_perlin.json @@ -0,0 +1 @@ +[0.580078125,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.5869140625,0.6123046875,0.6328125,0.623046875,0.5751953125,0.5029296875,0.4296875,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.421875,0.419921875,0.41796875,0.4169921875,0.41796875,0.4208984375,0.423828125,0.427734375,0.4296875,0.4443359375,0.501953125,0.583984375,0.6494140625,0.6669921875,0.6328125,0.5693359375,0.337890625,0.3251953125,0.3154296875,0.3076171875,0.3095703125,0.3232421875,0.3447265625,0.3642578125,0.376953125,0.400390625,0.466796875,0.5615234375,0.6435546875,0.6806640625,0.6669921875,0.6220703125,0.2890625,0.2587890625,0.232421875,0.2099609375,0.208984375,0.2373046875,0.28515625,0.33203125,0.3642578125,0.3984375,0.4619140625,0.541015625,0.609375,0.6474609375,0.650390625,0.634765625,0.3095703125,0.2587890625,0.2119140625,0.1689453125,0.15625,0.1923828125,0.2646484375,0.3408203125,0.39453125,0.4404296875,0.48828125,0.529296875,0.5576171875,0.57421875,0.587890625,0.6044921875,0.390625,0.3251953125,0.2607421875,0.1943359375,0.1650390625,0.197265625,0.28125,0.376953125,0.4482421875,0.5029296875,0.5302734375,0.52734375,0.5068359375,0.4931640625,0.5078125,0.55078125,0.4912109375,0.419921875,0.34375,0.259765625,0.2109375,0.228515625,0.3095703125,0.41015625,0.4892578125,0.548828125,0.5625,0.529296875,0.4755859375,0.4404296875,0.4521484375,0.509765625,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.6435546875,0.5791015625,0.4990234375,0.3955078125,0.30859375,0.2841796875,0.330078125,0.412109375,0.4892578125,0.5498046875,0.5595703125,0.51953125,0.458984375,0.4189453125,0.4296875,0.4892578125,0.7236328125,0.673828125,0.5986328125,0.484375,0.369140625,0.3056640625,0.314453125,0.375,0.4482421875,0.5078125,0.5185546875,0.478515625,0.41796875,0.376953125,0.3876953125,0.4482421875,0.76953125,0.740234375,0.677734375,0.5615234375,0.421875,0.3193359375,0.2900390625,0.326171875,0.39453125,0.4541015625,0.46484375,0.4248046875,0.3642578125,0.32421875,0.3349609375,0.39453125,0.748046875,0.740234375,0.6953125,0.5888671875,0.447265625,0.328125,0.27734375,0.2998046875,0.3642578125,0.423828125,0.4345703125,0.39453125,0.333984375,0.2939453125,0.3046875,0.3642578125,0.6669921875,0.673828125,0.646484375,0.5615234375,0.439453125,0.3359375,0.2900390625,0.3134765625,0.376953125,0.4375,0.4482421875,0.4072265625,0.3466796875,0.306640625,0.3173828125,0.376953125,0.5673828125,0.5791015625,0.564453125,0.5029296875,0.416015625,0.3466796875,0.328125,0.36328125,0.4296875,0.4892578125,0.5,0.4599609375,0.3994140625,0.359375,0.3701171875,0.4296875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5] \ No newline at end of file diff --git a/packages/noise/web/wasm_perlin.json b/packages/noise/web/wasm_perlin.json new file mode 100644 index 0000000000..29e97f2122 --- /dev/null +++ b/packages/noise/web/wasm_perlin.json @@ -0,0 +1 @@ +[0.48046875,0.58203125,0.685546875,0.7431640625,0.740234375,0.7119140625,0.6552734375,0.587890625,0.541015625,0.533203125,0.5615234375,0.6044921875,0.640625,0.6318359375,0.5634765625,0.4521484375,0.341796875,0.2734375,0.2587890625,0.2626953125,0.2841796875,0.3310546875,0.39453125,0.4580078125,0.5048828125,0.5302734375,0.5380859375,0.5107421875,0.4609375,0.421875,0.4208984375,0.462890625,0.5302734375,0.6015625,0.6611328125,0.681640625,0.6513671875,0.587890625,0.5283203125,0.5,0.4814453125,0.466796875,0.4521484375,0.435546875,0.4150390625,0.390625,0.3642578125,0.3408203125,0.3330078125,0.341796875,0.361328125,0.376953125,0.37890625,0.3642578125,0.34765625,0.3466796875,0.3671875,0.40234375,0.4404296875,0.4638671875,0.46875,0.4697265625,0.4716796875,0.4697265625,0.4580078125,0.4375,0.4150390625,0.39453125,0.375,0.3603515625,0.369140625,0.4140625,0.4833984375,0.552734375,0.6044921875,0.6328125,0.595703125,0.4970703125,0.3837890625,0.3095703125,0.306640625,0.3642578125,0.44140625,0.529296875,0.599609375,0.6240234375,0.6025390625,0.5615234375,0.5302734375,0.5126953125,0.5283203125,0.57421875,0.6240234375,0.65234375,0.6435546875,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2705078125,0.328125,0.435546875,0.5634765625,0.6708984375,0.728515625,0.740234375,0.73828125,0.7236328125,0.6904296875,0.642578125,0.5927734375,0.552734375,0.5302734375,0.5068359375,0.4755859375,0.455078125,0.4638671875,0.5029296875,0.5556640625,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.7568359375,0.71484375,0.6552734375,0.6044921875,0.55859375,0.5185546875,0.501953125,0.521484375,0.5654296875,0.609375,0.634765625,0.6416015625,0.599609375,0.515625,0.4248046875,0.365234375,0.3583984375,0.39453125,0.4404296875,0.482421875,0.5078125,0.5078125,0.4912109375,0.4736328125,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.416015625,0.3447265625,0.2900390625,0.2861328125,0.33984375,0.4228515625,0.5,0.58203125,0.693359375,0.7900390625,0.826171875,0.7890625,0.7119140625,0.634765625,0.572265625,0.544921875,0.5546875,0.580078125,0.58984375,0.5625,0.5,0.431640625,0.3935546875,0.4140625,0.4970703125,0.6083984375,0.69921875,0.740234375,0.76953125,0.7978515625,0.794921875,0.7431640625,0.6494140625,0.548828125,0.46875,0.4072265625,0.388671875,0.4228515625,0.48828125,0.546875,0.5625,0.5302734375,0.4921875,0.484375,0.4990234375,0.513671875,0.50390625,0.4609375,0.39453125,0.3359375,0.3349609375,0.40234375,0.5078125,0.599609375,0.6337890625,0.6044921875,0.5615234375,0.533203125,0.541015625,0.587890625,0.6552734375,0.7119140625,0.740234375,0.7646484375,0.8046875,0.8427734375,0.853515625,0.8310546875,0.787109375,0.740234375,0.6943359375,0.6513671875,0.6162109375,0.5908203125,0.572265625,0.5537109375,0.5302734375,0.494140625,0.43359375,0.375,0.35546875,0.388671875,0.4560546875,0.5302734375,0.5966796875,0.6318359375,0.6044921875,0.513671875,0.39453125,0.30078125,0.2587890625,0.2412109375,0.2646484375,0.34765625,0.474609375,0.6064453125,0.69921875,0.740234375,0.7529296875,0.712890625,0.6240234375,0.521484375,0.4501953125,0.4345703125,0.46875,0.51171875,0.5419921875,0.5498046875,0.5380859375,0.521484375,0.5166015625,0.5302734375,0.5595703125,0.625,0.708984375,0.7763671875,0.80078125,0.7822265625,0.740234375,0.6884765625,0.619140625,0.5498046875,0.5048828125,0.4951171875,0.509765625,0.5302734375,0.544921875,0.54296875,0.52734375,0.5078125,0.4990234375,0.5068359375,0.5302734375,0.5458984375,0.5224609375,0.4638671875,0.3974609375,0.35546875,0.357421875,0.39453125,0.435546875,0.458984375,0.4638671875,0.4609375,0.4658203125,0.4892578125,0.5302734375,0.5732421875,0.6015625,0.59375,0.546875,0.478515625,0.421875,0.39453125,0.3779296875,0.3779296875,0.408203125,0.46875,0.5419921875,0.6005859375,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.63671875,0.61328125,0.5244140625,0.40234375,0.296875,0.248046875,0.2587890625,0.3037109375,0.41015625,0.5517578125,0.6708984375,0.7216796875,0.69921875,0.634765625,0.5498046875,0.42578125,0.294921875,0.20703125,0.1845703125,0.2138671875,0.2587890625,0.306640625,0.35546875,0.3828125,0.375,0.3369140625,0.291015625,0.2587890625,0.24609375,0.28515625,0.3642578125,0.44140625,0.4775390625,0.45703125,0.39453125,0.32421875,0.26953125,0.2587890625,0.30078125,0.3740234375,0.439453125,0.46875,0.4931640625,0.5224609375,0.533203125,0.4990234375,0.4248046875,0.3359375,0.2587890625,0.1923828125,0.158203125,0.1845703125,0.2705078125,0.380859375,0.4658203125,0.5,0.515625,0.5185546875,0.5078125,0.4912109375,0.48046875,0.4833984375,0.5,0.5107421875,0.4931640625,0.447265625,0.3916015625,0.3525390625,0.34375,0.3642578125,0.3896484375,0.4072265625,0.4033203125,0.3720703125,0.3251953125,0.283203125,0.2587890625,0.25390625,0.3095703125,0.427734375,0.5712890625,0.689453125,0.7451171875,0.740234375,0.7158203125,0.6689453125,0.6044921875,0.541015625,0.4951171875,0.47265625,0.46875,0.4833984375,0.544921875,0.6357421875,0.708984375,0.7333984375,0.701171875,0.634765625,0.5498046875,0.42578125,0.294921875,0.20703125,0.1845703125,0.2138671875,0.2587890625,0.3154296875,0.4091796875,0.521484375,0.61328125,0.658203125,0.658203125,0.634765625,0.6005859375,0.5419921875,0.46875,0.408203125,0.3779296875,0.3779296875,0.39453125,0.41015625,0.4130859375,0.40234375,0.38671875,0.3759765625,0.37890625,0.39453125,0.416015625,0.44140625,0.4580078125,0.453125,0.4267578125,0.392578125,0.3642578125,0.3408203125,0.3408203125,0.3857421875,0.4775390625,0.58984375,0.68359375,0.740234375,0.7763671875,0.7666015625,0.6875,0.5517578125,0.40625,0.3017578125,0.2587890625,0.25,0.3046875,0.4140625,0.52734375,0.59375,0.58984375,0.5302734375,0.453125,0.3701171875,0.3056640625,0.2841796875,0.3037109375,0.33984375,0.3642578125,0.39453125,0.4697265625,0.5771484375,0.6796875,0.744140625,0.759765625,0.740234375,0.6953125,0.5888671875,0.447265625,0.328125,0.27734375,0.2998046875,0.3642578125,0.4296875,0.4697265625,0.482421875,0.4853515625,0.4990234375,0.5390625,0.6044921875,0.6708984375,0.70703125,0.6904296875,0.4248046875,0.5107421875,0.62109375,0.7060546875,0.740234375,0.751953125,0.73828125,0.6982421875,0.6513671875,0.619140625,0.6142578125,0.634765625,0.65234375,0.6259765625,0.546875,0.435546875,0.33203125,0.271484375,0.2587890625,0.2666015625,0.302734375,0.3642578125,0.427734375,0.470703125,0.482421875,0.46875,0.4404296875,0.384765625,0.328125,0.3056640625,0.3330078125,0.396484375,0.46875,0.537109375,0.58203125,0.587890625,0.5576171875,0.5146484375,0.490234375,0.5,0.521484375,0.548828125,0.5634765625,0.546875,0.5009765625,0.443359375,0.39453125,0.34765625,0.3037109375,0.28125,0.2919921875,0.3291015625,0.3701171875,0.39453125,0.416015625,0.4462890625,0.48046875,0.5078125,0.5234375,0.529296875,0.5302734375,0.5234375,0.4921875,0.44140625,0.3896484375,0.35546875,0.349609375,0.3642578125,0.384765625,0.4169921875,0.4609375,0.513671875,0.564453125,0.60546875,0.634765625,0.6455078125,0.59375,0.4912109375,0.3857421875,0.326171875,0.333984375,0.39453125,0.47265625,0.560546875,0.6240234375,0.6328125,0.5869140625,0.521484375,0.46875,0.4326171875,0.4345703125,0.4833984375,0.5576171875,0.623046875,0.650390625,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2705078125,0.328125,0.435546875,0.5634765625,0.6708984375,0.728515625,0.740234375,0.7314453125,0.6875,0.6123046875,0.533203125,0.4765625,0.45703125,0.46875,0.4873046875,0.5068359375,0.52734375,0.5517578125,0.580078125,0.6083984375,0.634765625,0.6640625,0.69921875,0.7236328125,0.7236328125,0.69921875,0.6640625,0.634765625,0.611328125,0.599609375,0.6015625,0.61328125,0.6220703125,0.6201171875,0.6044921875,0.5771484375,0.5185546875,0.44140625,0.375,0.33984375,0.341796875,0.3642578125,0.3935546875,0.4326171875,0.474609375,0.5078125,0.5244140625,0.529296875,0.5302734375,0.533203125,0.548828125,0.568359375,0.580078125,0.5751953125,0.5556640625,0.5302734375,0.4931640625,0.4287109375,0.36328125,0.3369140625,0.3623046875,0.4267578125,0.5,0.58203125,0.6884765625,0.7783203125,0.806640625,0.763671875,0.681640625,0.6044921875,0.5419921875,0.5185546875,0.53515625,0.568359375,0.5849609375,0.5615234375,0.5,0.4287109375,0.3798828125,0.3857421875,0.4609375,0.576171875,0.6806640625,0.740234375,0.7890625,0.8388671875,0.853515625,0.8095703125,0.71484375,0.6103515625,0.5302734375,0.4619140625,0.41796875,0.4111328125,0.4365234375,0.4716796875,0.486328125,0.46875,0.451171875,0.4609375,0.4853515625,0.5,0.482421875,0.4326171875,0.3642578125,0.3046875,0.2998046875,0.3671875,0.48046875,0.5888671875,0.64453125,0.634765625,0.6142578125,0.619140625,0.6513671875,0.6982421875,0.73828125,0.751953125,0.740234375,0.7255859375,0.7265625,0.7431640625,0.76171875,0.771484375,0.7626953125,0.740234375,0.71484375,0.6884765625,0.6572265625,0.6162109375,0.56640625,0.515625,0.46875,0.4150390625,0.33984375,0.2783203125,0.267578125,0.314453125,0.3935546875,0.46875,0.5400390625,0.59375,0.59375,0.52734375,0.41796875,0.318359375,0.2587890625,0.2197265625,0.21875,0.2841796875,0.4111328125,0.560546875,0.6787109375,0.740234375,0.775390625,0.767578125,0.7099609375,0.6240234375,0.5478515625,0.515625,0.5302734375,0.556640625,0.580078125,0.5849609375,0.56640625,0.529296875,0.4931640625,0.46875,0.4609375,0.4951171875,0.5712890625,0.662109375,0.732421875,0.7568359375,0.740234375,0.7109375,0.669921875,0.6181640625,0.56640625,0.521484375,0.490234375,0.46875,0.4443359375,0.404296875,0.3671875,0.35546875,0.3779296875,0.4228515625,0.46875,0.5068359375,0.51171875,0.4775390625,0.4189453125,0.3671875,0.3466796875,0.3642578125,0.388671875,0.4052734375,0.4140625,0.4189453125,0.427734375,0.4443359375,0.46875,0.490234375,0.4853515625,0.4521484375,0.4052734375,0.3662109375,0.3515625,0.3642578125,0.3818359375,0.3984375,0.421875,0.4580078125,0.505859375,0.5576171875,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.6455078125,0.5927734375,0.48046875,0.3505859375,0.2548828125,0.2275390625,0.2587890625,0.3212890625,0.4375,0.5771484375,0.6796875,0.708984375,0.6728515625,0.6044921875,0.5234375,0.4130859375,0.3037109375,0.2314453125,0.2119140625,0.2314453125,0.2587890625,0.291015625,0.3369140625,0.375,0.3828125,0.35546875,0.306640625,0.2587890625,0.2275390625,0.2490234375,0.3173828125,0.39453125,0.4384765625,0.4248046875,0.3642578125,0.30078125,0.279296875,0.3173828125,0.3994140625,0.486328125,0.5341796875,0.5302734375,0.5146484375,0.509765625,0.5,0.4658203125,0.40625,0.33203125,0.2587890625,0.197265625,0.185546875,0.240234375,0.341796875,0.4453125,0.501953125,0.5,0.4833984375,0.48046875,0.4912109375,0.5078125,0.5185546875,0.515625,0.5,0.47265625,0.4189453125,0.3583984375,0.3193359375,0.318359375,0.3505859375,0.39453125,0.4326171875,0.4384765625,0.40234375,0.33984375,0.279296875,0.25,0.2587890625,0.2861328125,0.34765625,0.4443359375,0.5546875,0.6513671875,0.712890625,0.740234375,0.75390625,0.7421875,0.6982421875,0.634765625,0.57421875,0.537109375,0.5302734375,0.5419921875,0.5927734375,0.662109375,0.712890625,0.7158203125,0.6728515625,0.6044921875,0.5234375,0.4130859375,0.3037109375,0.2314453125,0.2119140625,0.2314453125,0.2587890625,0.298828125,0.38671875,0.501953125,0.6015625,0.650390625,0.64453125,0.6044921875,0.5576171875,0.505859375,0.4580078125,0.421875,0.3984375,0.3818359375,0.3642578125,0.3486328125,0.345703125,0.3564453125,0.3720703125,0.3828125,0.3798828125,0.3642578125,0.3525390625,0.369140625,0.40625,0.44140625,0.453125,0.435546875,0.39453125,0.3544921875,0.3486328125,0.3974609375,0.4970703125,0.6123046875,0.7001953125,0.740234375,0.7607421875,0.748046875,0.6796875,0.560546875,0.4248046875,0.318359375,0.2587890625,0.2294921875,0.263671875,0.35546875,0.4609375,0.5283203125,0.52734375,0.46875,0.400390625,0.349609375,0.333984375,0.3525390625,0.3857421875,0.404296875,0.39453125,0.390625,0.4443359375,0.5517578125,0.6708984375,0.75390625,0.7734375,0.740234375,0.677734375,0.5615234375,0.421875,0.3193359375,0.2900390625,0.326171875,0.39453125,0.4599609375,0.5,0.513671875,0.5166015625,0.529296875,0.5693359375,0.634765625,0.7021484375,0.7421875,0.7314453125,0.353515625,0.408203125,0.509765625,0.609375,0.673828125,0.720703125,0.7451171875,0.7353515625,0.6953125,0.6484375,0.6201171875,0.6220703125,0.625,0.5966796875,0.5322265625,0.4501953125,0.3759765625,0.333984375,0.3251953125,0.3349609375,0.376953125,0.4384765625,0.4873046875,0.5009765625,0.4765625,0.4287109375,0.369140625,0.2900390625,0.2275390625,0.21875,0.2705078125,0.3525390625,0.4287109375,0.4931640625,0.5244140625,0.515625,0.482421875,0.4541015625,0.4580078125,0.5,0.556640625,0.623046875,0.6669921875,0.6572265625,0.5966796875,0.515625,0.4482421875,0.380859375,0.306640625,0.2568359375,0.26171875,0.31640625,0.3896484375,0.4482421875,0.5,0.552734375,0.5888671875,0.599609375,0.5888671875,0.57421875,0.5703125,0.55859375,0.505859375,0.4248046875,0.3515625,0.318359375,0.33203125,0.376953125,0.4306640625,0.4921875,0.5478515625,0.5869140625,0.60546875,0.61328125,0.6220703125,0.6181640625,0.5625,0.47265625,0.3916015625,0.3583984375,0.3837890625,0.4482421875,0.525390625,0.611328125,0.666015625,0.6572265625,0.587890625,0.4990234375,0.4287109375,0.375,0.359375,0.3994140625,0.48046875,0.5673828125,0.619140625,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.333984375,0.3759765625,0.453125,0.5458984375,0.623046875,0.6650390625,0.673828125,0.66015625,0.6015625,0.5087890625,0.4228515625,0.3779296875,0.384765625,0.4287109375,0.4814453125,0.5361328125,0.5810546875,0.60546875,0.61328125,0.6142578125,0.6220703125,0.6328125,0.646484375,0.65625,0.65625,0.646484375,0.6328125,0.6220703125,0.6171875,0.630859375,0.650390625,0.658203125,0.640625,0.6005859375,0.55078125,0.49609375,0.431640625,0.3759765625,0.3466796875,0.34765625,0.3642578125,0.376953125,0.3916015625,0.4228515625,0.4677734375,0.5146484375,0.5498046875,0.5673828125,0.5703125,0.5712890625,0.5771484375,0.5849609375,0.58984375,0.587890625,0.580078125,0.5703125,0.5478515625,0.490234375,0.4189453125,0.375,0.3798828125,0.4296875,0.5,0.580078125,0.6806640625,0.7587890625,0.7724609375,0.7177734375,0.6298828125,0.55078125,0.490234375,0.4736328125,0.501953125,0.548828125,0.5771484375,0.560546875,0.5,0.4248046875,0.3583984375,0.337890625,0.388671875,0.4921875,0.599609375,0.673828125,0.740234375,0.814453125,0.8564453125,0.8330078125,0.7509765625,0.650390625,0.5703125,0.498046875,0.4345703125,0.3974609375,0.3955078125,0.4150390625,0.4326171875,0.4287109375,0.427734375,0.455078125,0.4951171875,0.5166015625,0.5,0.447265625,0.376953125,0.314453125,0.2978515625,0.3466796875,0.4462890625,0.552734375,0.6162109375,0.6220703125,0.6201171875,0.6484375,0.6953125,0.7353515625,0.7451171875,0.720703125,0.673828125,0.625,0.59375,0.5927734375,0.6181640625,0.654296875,0.6767578125,0.673828125,0.666015625,0.6640625,0.6533203125,0.619140625,0.5615234375,0.4931640625,0.4287109375,0.359375,0.2724609375,0.2080078125,0.2041015625,0.2626953125,0.3505859375,0.4287109375,0.5048828125,0.580078125,0.6162109375,0.5849609375,0.4970703125,0.3974609375,0.3251953125,0.265625,0.2275390625,0.248046875,0.33984375,0.474609375,0.5966796875,0.673828125,0.7294921875,0.755859375,0.736328125,0.6787109375,0.611328125,0.5712890625,0.5703125,0.583984375,0.6044921875,0.6123046875,0.5927734375,0.5439453125,0.4833984375,0.4287109375,0.38671875,0.384765625,0.4375,0.5283203125,0.619140625,0.6708984375,0.673828125,0.6650390625,0.6572265625,0.638671875,0.599609375,0.5439453125,0.482421875,0.4287109375,0.37109375,0.2978515625,0.2431640625,0.23828125,0.2880859375,0.3623046875,0.4287109375,0.486328125,0.5185546875,0.5107421875,0.466796875,0.4111328125,0.376953125,0.376953125,0.38671875,0.39453125,0.400390625,0.4052734375,0.4111328125,0.4189453125,0.4287109375,0.4306640625,0.40234375,0.3544921875,0.3154296875,0.3056640625,0.330078125,0.376953125,0.4228515625,0.4453125,0.447265625,0.4462890625,0.4580078125,0.494140625,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.6162109375,0.552734375,0.4423828125,0.333984375,0.271484375,0.2744140625,0.3251953125,0.400390625,0.5146484375,0.6298828125,0.693359375,0.6845703125,0.6240234375,0.55078125,0.474609375,0.388671875,0.3173828125,0.2841796875,0.2890625,0.310546875,0.3251953125,0.3447265625,0.3876953125,0.435546875,0.45703125,0.4375,0.38671875,0.3251953125,0.27734375,0.2802734375,0.333984375,0.404296875,0.4482421875,0.4375,0.376953125,0.3193359375,0.3193359375,0.3876953125,0.490234375,0.5771484375,0.60546875,0.5703125,0.5244140625,0.5,0.4892578125,0.4765625,0.4462890625,0.3935546875,0.3251953125,0.2666015625,0.265625,0.3291015625,0.4267578125,0.509765625,0.53515625,0.5,0.45703125,0.44921875,0.4775390625,0.521484375,0.5498046875,0.5419921875,0.5,0.4404296875,0.361328125,0.2939453125,0.2763671875,0.314453125,0.3818359375,0.4482421875,0.498046875,0.498046875,0.4443359375,0.3642578125,0.30078125,0.287109375,0.3251953125,0.3759765625,0.42578125,0.4755859375,0.5234375,0.5732421875,0.623046875,0.673828125,0.720703125,0.7451171875,0.7314453125,0.6826171875,0.6220703125,0.5791015625,0.5703125,0.5791015625,0.619140625,0.66796875,0.693359375,0.67578125,0.62109375,0.55078125,0.474609375,0.388671875,0.3173828125,0.2841796875,0.2890625,0.310546875,0.3251953125,0.349609375,0.419921875,0.5185546875,0.599609375,0.630859375,0.607421875,0.55078125,0.494140625,0.4580078125,0.4462890625,0.447265625,0.4453125,0.4228515625,0.376953125,0.3349609375,0.3271484375,0.35546875,0.3984375,0.427734375,0.419921875,0.376953125,0.337890625,0.3447265625,0.396484375,0.462890625,0.505859375,0.4990234375,0.4482421875,0.3916015625,0.3681640625,0.3994140625,0.48046875,0.5791015625,0.6494140625,0.673828125,0.68359375,0.6845703125,0.6552734375,0.5849609375,0.48828125,0.39453125,0.3251953125,0.2783203125,0.2880859375,0.3525390625,0.4365234375,0.4921875,0.48828125,0.4287109375,0.3671875,0.3466796875,0.375,0.431640625,0.48046875,0.4873046875,0.4482421875,0.412109375,0.4375,0.5244140625,0.6318359375,0.708984375,0.720703125,0.673828125,0.5986328125,0.484375,0.369140625,0.3056640625,0.314453125,0.375,0.4482421875,0.51171875,0.5439453125,0.5419921875,0.52734375,0.5263671875,0.5576171875,0.6220703125,0.6904296875,0.736328125,0.73828125,0.29296875,0.3154296875,0.3994140625,0.5009765625,0.5791015625,0.6455078125,0.693359375,0.7021484375,0.669921875,0.6171875,0.5771484375,0.5693359375,0.5673828125,0.55078125,0.517578125,0.4775390625,0.4423828125,0.423828125,0.419921875,0.4296875,0.4716796875,0.52734375,0.5615234375,0.5537109375,0.505859375,0.439453125,0.36328125,0.271484375,0.205078125,0.2041015625,0.2685546875,0.3603515625,0.439453125,0.5009765625,0.521484375,0.4970703125,0.453125,0.42578125,0.44140625,0.5,0.5751953125,0.6650390625,0.7275390625,0.7255859375,0.6591796875,0.5673828125,0.4892578125,0.412109375,0.3212890625,0.2568359375,0.2578125,0.322265625,0.4130859375,0.4892578125,0.5576171875,0.6162109375,0.64453125,0.6337890625,0.5986328125,0.5673828125,0.5595703125,0.546875,0.4912109375,0.4111328125,0.3486328125,0.33203125,0.3662109375,0.4296875,0.4990234375,0.5654296875,0.607421875,0.615234375,0.595703125,0.57421875,0.5693359375,0.55859375,0.5087890625,0.4375,0.3857421875,0.3798828125,0.421875,0.4892578125,0.568359375,0.6552734375,0.708984375,0.6953125,0.6181640625,0.5185546875,0.439453125,0.375,0.33984375,0.357421875,0.421875,0.5029296875,0.55859375,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.423828125,0.4423828125,0.478515625,0.5205078125,0.556640625,0.5751953125,0.5791015625,0.56640625,0.509765625,0.427734375,0.3623046875,0.34375,0.3759765625,0.439453125,0.5087890625,0.57421875,0.6142578125,0.619140625,0.5966796875,0.57421875,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5751953125,0.5732421875,0.5712890625,0.5693359375,0.576171875,0.607421875,0.64453125,0.658203125,0.6337890625,0.5771484375,0.509765625,0.4404296875,0.3798828125,0.3486328125,0.35546875,0.3896484375,0.4208984375,0.4296875,0.4345703125,0.451171875,0.48046875,0.513671875,0.5419921875,0.556640625,0.5595703125,0.5595703125,0.560546875,0.5615234375,0.5625,0.5625,0.560546875,0.5595703125,0.5458984375,0.49609375,0.4287109375,0.3837890625,0.384765625,0.4306640625,0.5,0.5791015625,0.6748046875,0.744140625,0.74609375,0.681640625,0.5888671875,0.509765625,0.44921875,0.4375,0.4755859375,0.533203125,0.5712890625,0.5595703125,0.5,0.421875,0.3388671875,0.291015625,0.3125,0.396484375,0.4990234375,0.5791015625,0.6572265625,0.7470703125,0.8095703125,0.8046875,0.734375,0.6396484375,0.5595703125,0.4873046875,0.4208984375,0.3818359375,0.3818359375,0.408203125,0.4345703125,0.439453125,0.4482421875,0.4873046875,0.5380859375,0.56640625,0.5517578125,0.4990234375,0.4296875,0.36328125,0.3291015625,0.34765625,0.416015625,0.5,0.5576171875,0.5693359375,0.5771484375,0.6171875,0.669921875,0.7021484375,0.693359375,0.6455078125,0.5791015625,0.5126953125,0.4638671875,0.4521484375,0.482421875,0.533203125,0.5712890625,0.5791015625,0.583984375,0.6064453125,0.626953125,0.62109375,0.578125,0.5107421875,0.439453125,0.361328125,0.2685546875,0.2021484375,0.201171875,0.2666015625,0.3603515625,0.439453125,0.5185546875,0.609375,0.6708984375,0.6640625,0.59375,0.498046875,0.419921875,0.345703125,0.2734375,0.2431640625,0.28515625,0.38671875,0.498046875,0.5791015625,0.646484375,0.6943359375,0.7021484375,0.666015625,0.609375,0.568359375,0.5595703125,0.5673828125,0.59375,0.619140625,0.615234375,0.5751953125,0.5087890625,0.439453125,0.376953125,0.3447265625,0.3642578125,0.4306640625,0.5126953125,0.568359375,0.5791015625,0.583984375,0.60546875,0.625,0.6181640625,0.5751953125,0.5087890625,0.439453125,0.36328125,0.2724609375,0.2080078125,0.20703125,0.271484375,0.3623046875,0.439453125,0.5078125,0.556640625,0.5654296875,0.533203125,0.478515625,0.4384765625,0.4296875,0.431640625,0.4326171875,0.4345703125,0.435546875,0.4365234375,0.4384765625,0.439453125,0.431640625,0.3916015625,0.3388671875,0.306640625,0.3154296875,0.36328125,0.4296875,0.48828125,0.5068359375,0.4853515625,0.4482421875,0.427734375,0.44921875,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5576171875,0.5,0.4150390625,0.3447265625,0.3232421875,0.35546875,0.419921875,0.5,0.603515625,0.6904296875,0.71484375,0.6689453125,0.5869140625,0.509765625,0.4375,0.373046875,0.3388671875,0.3447265625,0.3779296875,0.41015625,0.419921875,0.4306640625,0.47265625,0.525390625,0.5546875,0.5400390625,0.48828125,0.419921875,0.3623046875,0.353515625,0.396484375,0.458984375,0.5,0.4892578125,0.4296875,0.3720703125,0.3759765625,0.4423828125,0.5361328125,0.60546875,0.61328125,0.5595703125,0.5,0.474609375,0.484375,0.505859375,0.5126953125,0.4833984375,0.419921875,0.361328125,0.3583984375,0.4140625,0.494140625,0.552734375,0.5546875,0.5,0.4423828125,0.4326171875,0.470703125,0.5283203125,0.56640625,0.556640625,0.5,0.4228515625,0.3310546875,0.263671875,0.2607421875,0.322265625,0.412109375,0.4892578125,0.546875,0.5498046875,0.49609375,0.4189453125,0.3642578125,0.3642578125,0.419921875,0.48046875,0.509765625,0.5078125,0.4912109375,0.4892578125,0.5185546875,0.5791015625,0.6455078125,0.6923828125,0.701171875,0.6669921875,0.611328125,0.5693359375,0.5595703125,0.568359375,0.603515625,0.646484375,0.6630859375,0.638671875,0.580078125,0.509765625,0.4375,0.373046875,0.3388671875,0.3447265625,0.3779296875,0.41015625,0.419921875,0.43359375,0.486328125,0.55859375,0.611328125,0.6171875,0.576171875,0.509765625,0.44921875,0.427734375,0.4482421875,0.4853515625,0.5068359375,0.48828125,0.4296875,0.373046875,0.3623046875,0.400390625,0.458984375,0.4970703125,0.486328125,0.4296875,0.3740234375,0.3720703125,0.4248046875,0.5,0.55078125,0.546875,0.4892578125,0.4228515625,0.3818359375,0.3876953125,0.4404296875,0.5126953125,0.5654296875,0.5791015625,0.5869140625,0.609375,0.6259765625,0.61328125,0.5634765625,0.4921875,0.419921875,0.3623046875,0.35546875,0.400390625,0.46484375,0.5087890625,0.4990234375,0.439453125,0.380859375,0.3740234375,0.4228515625,0.4951171875,0.546875,0.544921875,0.4892578125,0.4345703125,0.4365234375,0.49609375,0.578125,0.63671875,0.6357421875,0.5791015625,0.4990234375,0.3955078125,0.30859375,0.2841796875,0.330078125,0.412109375,0.4892578125,0.55078125,0.5712890625,0.548828125,0.509765625,0.4873046875,0.5078125,0.5693359375,0.638671875,0.6904296875,0.701171875,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.48828125,0.5419921875,0.55859375,0.5322265625,0.4814453125,0.4404296875,0.4296875,0.431640625,0.4501953125,0.484375,0.525390625,0.5595703125,0.5771484375,0.5791015625,0.5869140625,0.626953125,0.6787109375,0.708984375,0.697265625,0.6474609375,0.5791015625,0.5009765625,0.4052734375,0.3349609375,0.328125,0.3896484375,0.48046875,0.5595703125,0.6181640625,0.62109375,0.5673828125,0.4912109375,0.4375,0.44140625,0.5,0.5791015625,0.673828125,0.7412109375,0.7431640625,0.6787109375,0.5869140625,0.509765625,0.431640625,0.33984375,0.2734375,0.271484375,0.333984375,0.423828125,0.5,0.564453125,0.607421875,0.6064453125,0.5615234375,0.498046875,0.4501953125,0.439453125,0.4326171875,0.4072265625,0.3818359375,0.3857421875,0.4287109375,0.49609375,0.5693359375,0.6357421875,0.669921875,0.6513671875,0.5830078125,0.4990234375,0.44140625,0.4296875,0.4228515625,0.3916015625,0.3544921875,0.3408203125,0.365234375,0.421875,0.4892578125,0.5673828125,0.6669921875,0.7470703125,0.7666015625,0.7177734375,0.6357421875,0.5595703125,0.4873046875,0.4189453125,0.373046875,0.365234375,0.38671875,0.412109375,0.419921875,0.4248046875,0.4443359375,0.4794921875,0.51953125,0.5546875,0.57421875,0.5791015625,0.5771484375,0.5595703125,0.525390625,0.484375,0.4501953125,0.431640625,0.4296875,0.4248046875,0.40234375,0.3828125,0.3916015625,0.4365234375,0.505859375,0.5791015625,0.6455078125,0.6796875,0.658203125,0.5869140625,0.4970703125,0.435546875,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.423828125,0.3828125,0.390625,0.443359375,0.515625,0.5673828125,0.5791015625,0.576171875,0.55859375,0.5283203125,0.4912109375,0.4599609375,0.443359375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.576171875,0.66796875,0.7353515625,0.73828125,0.6767578125,0.5869140625,0.509765625,0.451171875,0.4404296875,0.478515625,0.5361328125,0.572265625,0.5595703125,0.5,0.4189453125,0.3193359375,0.2421875,0.2275390625,0.2802734375,0.3642578125,0.439453125,0.515625,0.6025390625,0.662109375,0.65625,0.5888671875,0.49609375,0.419921875,0.3564453125,0.322265625,0.33984375,0.404296875,0.4873046875,0.544921875,0.5595703125,0.5703125,0.61328125,0.666015625,0.697265625,0.685546875,0.6357421875,0.5693359375,0.4990234375,0.4296875,0.3828125,0.37109375,0.3896484375,0.412109375,0.419921875,0.431640625,0.4755859375,0.533203125,0.5673828125,0.5576171875,0.5078125,0.439453125,0.37109375,0.318359375,0.302734375,0.3271484375,0.375,0.412109375,0.419921875,0.431640625,0.4892578125,0.5732421875,0.640625,0.66015625,0.6259765625,0.5595703125,0.48046875,0.3876953125,0.3232421875,0.3251953125,0.3916015625,0.482421875,0.5595703125,0.6357421875,0.7275390625,0.7958984375,0.8017578125,0.7421875,0.6552734375,0.5791015625,0.4990234375,0.3896484375,0.2900390625,0.2490234375,0.2802734375,0.353515625,0.4296875,0.4990234375,0.548828125,0.5595703125,0.525390625,0.4697265625,0.4287109375,0.419921875,0.4345703125,0.4921875,0.57421875,0.6396484375,0.6572265625,0.623046875,0.5595703125,0.4892578125,0.421875,0.3759765625,0.3681640625,0.3876953125,0.412109375,0.419921875,0.4345703125,0.49609375,0.583984375,0.6552734375,0.6767578125,0.6435546875,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.6396484375,0.6923828125,0.70703125,0.677734375,0.6240234375,0.5810546875,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5498046875,0.5107421875,0.4619140625,0.4365234375,0.4541015625,0.5087890625,0.5791015625,0.6376953125,0.640625,0.5859375,0.5078125,0.4521484375,0.453125,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.43359375,0.4091796875,0.388671875,0.3955078125,0.439453125,0.5078125,0.5791015625,0.6552734375,0.7373046875,0.783203125,0.7607421875,0.6748046875,0.5712890625,0.4892578125,0.421875,0.3818359375,0.3896484375,0.4443359375,0.517578125,0.568359375,0.5791015625,0.5869140625,0.6259765625,0.6767578125,0.7060546875,0.6943359375,0.6455078125,0.5791015625,0.5224609375,0.5107421875,0.5458984375,0.5986328125,0.6318359375,0.6181640625,0.5595703125,0.498046875,0.474609375,0.48828125,0.5166015625,0.5283203125,0.5029296875,0.439453125,0.3828125,0.3876953125,0.45703125,0.5517578125,0.62109375,0.6259765625,0.5693359375,0.5078125,0.4873046875,0.509765625,0.548828125,0.5712890625,0.55078125,0.4892578125,0.4296875,0.4208984375,0.462890625,0.5263671875,0.568359375,0.55859375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.560546875,0.580078125,0.5546875,0.509765625,0.4833984375,0.5,0.5595703125,0.6142578125,0.6083984375,0.5390625,0.4443359375,0.376953125,0.373046875,0.4296875,0.4990234375,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.4306640625,0.4814453125,0.5546875,0.609375,0.6171875,0.5771484375,0.509765625,0.44140625,0.3974609375,0.3994140625,0.4482421875,0.517578125,0.5673828125,0.5791015625,0.5869140625,0.6171875,0.650390625,0.658203125,0.6279296875,0.568359375,0.5,0.4443359375,0.4462890625,0.5048828125,0.5849609375,0.640625,0.6376953125,0.5791015625,0.51953125,0.5068359375,0.544921875,0.603515625,0.6416015625,0.62890625,0.5693359375,0.5078125,0.4892578125,0.5146484375,0.55859375,0.5859375,0.5693359375,0.509765625,0.439453125,0.3779296875,0.3466796875,0.353515625,0.384765625,0.4140625,0.419921875,0.431640625,0.490234375,0.578125,0.650390625,0.673828125,0.6435546875,0.5791015625,0.521484375,0.51171875,0.5517578125,0.6123046875,0.6513671875,0.6396484375,0.5791015625,0.5166015625,0.4931640625,0.5107421875,0.546875,0.5673828125,0.5478515625,0.4892578125,0.4306640625,0.4140625,0.4384765625,0.48046875,0.505859375,0.48828125,0.4296875,0.35546875,0.2744140625,0.2275390625,0.248046875,0.3291015625,0.4296875,0.509765625,0.56640625,0.56640625,0.5087890625,0.4267578125,0.3671875,0.365234375,0.419921875,0.486328125,0.5380859375,0.5537109375,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3876953125,0.4453125,0.4755859375,0.4677734375,0.431640625,0.39453125,0.376953125,0.3759765625,0.41015625,0.4814453125,0.5693359375,0.640625,0.6748046875,0.673828125,0.671875,0.7001953125,0.744140625,0.7744140625,0.7705078125,0.7314453125,0.673828125,0.6015625,0.501953125,0.4140625,0.3828125,0.4189453125,0.494140625,0.5703125,0.6279296875,0.6298828125,0.57421875,0.4951171875,0.439453125,0.44140625,0.5,0.5791015625,0.673828125,0.744140625,0.7529296875,0.7001953125,0.6201171875,0.55078125,0.4833984375,0.40234375,0.341796875,0.33203125,0.3759765625,0.4423828125,0.5,0.5478515625,0.576171875,0.5703125,0.529296875,0.4755859375,0.4375,0.4287109375,0.423828125,0.4052734375,0.39453125,0.4150390625,0.4716796875,0.5478515625,0.6220703125,0.6845703125,0.701171875,0.65234375,0.552734375,0.4462890625,0.3828125,0.376953125,0.3818359375,0.3681640625,0.3486328125,0.3408203125,0.3583984375,0.3984375,0.4482421875,0.5087890625,0.5966796875,0.6787109375,0.7158203125,0.693359375,0.6337890625,0.5703125,0.5029296875,0.4228515625,0.3486328125,0.3056640625,0.298828125,0.3125,0.3251953125,0.3427734375,0.3857421875,0.4580078125,0.541015625,0.61328125,0.65625,0.673828125,0.6748046875,0.640625,0.5693359375,0.4814453125,0.41015625,0.3759765625,0.376953125,0.384765625,0.3857421875,0.400390625,0.4443359375,0.515625,0.5986328125,0.673828125,0.736328125,0.7529296875,0.6962890625,0.578125,0.4453125,0.353515625,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.3935546875,0.3759765625,0.4150390625,0.5009765625,0.5966796875,0.6591796875,0.673828125,0.66796875,0.6376953125,0.5830078125,0.5185546875,0.46484375,0.4345703125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.55859375,0.6376953125,0.705078125,0.72265625,0.6845703125,0.6171875,0.55078125,0.5,0.4912109375,0.521484375,0.564453125,0.5849609375,0.5615234375,0.5,0.4208984375,0.330078125,0.263671875,0.25390625,0.30078125,0.37109375,0.4287109375,0.4833984375,0.537109375,0.5615234375,0.5341796875,0.4638671875,0.384765625,0.3251953125,0.2802734375,0.2666015625,0.3037109375,0.3857421875,0.48046875,0.546875,0.5703125,0.5888671875,0.6318359375,0.68359375,0.7138671875,0.708984375,0.671875,0.6220703125,0.5634765625,0.484375,0.4013671875,0.33984375,0.314453125,0.3154296875,0.3251953125,0.3466796875,0.40234375,0.4736328125,0.5224609375,0.5263671875,0.4873046875,0.4287109375,0.3681640625,0.3173828125,0.2900390625,0.29296875,0.314453125,0.330078125,0.3251953125,0.3310546875,0.39453125,0.5009765625,0.6005859375,0.6494140625,0.6328125,0.5703125,0.4931640625,0.4111328125,0.3603515625,0.369140625,0.431640625,0.5107421875,0.5703125,0.62890625,0.708984375,0.779296875,0.806640625,0.7822265625,0.7275390625,0.673828125,0.607421875,0.4921875,0.36328125,0.2763671875,0.26171875,0.3076171875,0.376953125,0.4443359375,0.484375,0.478515625,0.4296875,0.3671875,0.3271484375,0.3251953125,0.3486328125,0.4150390625,0.509765625,0.591796875,0.62890625,0.615234375,0.5703125,0.513671875,0.4404296875,0.369140625,0.3212890625,0.306640625,0.314453125,0.3251953125,0.3525390625,0.4375,0.5634765625,0.6767578125,0.7353515625,0.7265625,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.693359375,0.7509765625,0.7724609375,0.74609375,0.69140625,0.6416015625,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5625,0.533203125,0.5029296875,0.5,0.5361328125,0.6015625,0.673828125,0.7314453125,0.7333984375,0.673828125,0.5849609375,0.515625,0.50390625,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.42578125,0.419921875,0.4287109375,0.4677734375,0.533203125,0.6083984375,0.673828125,0.7373046875,0.796875,0.8115234375,0.755859375,0.646484375,0.53125,0.4482421875,0.384765625,0.3662109375,0.41015625,0.5048828125,0.6064453125,0.66796875,0.673828125,0.669921875,0.6923828125,0.728515625,0.7548828125,0.7529296875,0.7216796875,0.673828125,0.6298828125,0.6162109375,0.62890625,0.6494140625,0.65234375,0.625,0.5703125,0.5166015625,0.4970703125,0.5078125,0.5263671875,0.52734375,0.4931640625,0.4287109375,0.3740234375,0.38671875,0.4697265625,0.5810546875,0.6640625,0.6767578125,0.6220703125,0.5576171875,0.5263671875,0.52734375,0.5419921875,0.5439453125,0.51171875,0.4482421875,0.3896484375,0.384765625,0.4365234375,0.5107421875,0.5625,0.55859375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5625,0.587890625,0.5712890625,0.533203125,0.5068359375,0.5185546875,0.5703125,0.615234375,0.5947265625,0.509765625,0.40234375,0.3271484375,0.3203125,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.3310546875,0.392578125,0.494140625,0.5888671875,0.6328125,0.6142578125,0.55078125,0.484375,0.4462890625,0.4609375,0.5234375,0.6044921875,0.66015625,0.673828125,0.6767578125,0.6845703125,0.6845703125,0.66015625,0.611328125,0.552734375,0.5,0.4638671875,0.4892578125,0.572265625,0.669921875,0.7333984375,0.732421875,0.673828125,0.6123046875,0.595703125,0.6240234375,0.6708984375,0.69921875,0.6826171875,0.6220703125,0.55859375,0.533203125,0.5498046875,0.587890625,0.6142578125,0.6025390625,0.55078125,0.4873046875,0.421875,0.3671875,0.337890625,0.33203125,0.33203125,0.3251953125,0.33203125,0.40234375,0.5234375,0.646484375,0.7197265625,0.7236328125,0.673828125,0.6240234375,0.6201171875,0.6630859375,0.71875,0.7509765625,0.734375,0.673828125,0.60546875,0.5556640625,0.529296875,0.521484375,0.515625,0.4931640625,0.4482421875,0.4033203125,0.3876953125,0.400390625,0.4248046875,0.4375,0.421875,0.376953125,0.3232421875,0.271484375,0.2548828125,0.296875,0.384765625,0.48046875,0.55078125,0.5986328125,0.5859375,0.509765625,0.40234375,0.3154296875,0.2900390625,0.3251953125,0.3759765625,0.419921875,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3095703125,0.3701171875,0.421875,0.44140625,0.4267578125,0.3935546875,0.3642578125,0.3505859375,0.392578125,0.4912109375,0.61328125,0.7119140625,0.7529296875,0.740234375,0.720703125,0.7275390625,0.7568359375,0.787109375,0.7978515625,0.7802734375,0.740234375,0.6806640625,0.5810546875,0.4716796875,0.4052734375,0.4052734375,0.458984375,0.5302734375,0.5888671875,0.595703125,0.548828125,0.48046875,0.43359375,0.4404296875,0.5,0.578125,0.669921875,0.740234375,0.7568359375,0.71875,0.65625,0.6044921875,0.5556640625,0.498046875,0.4521484375,0.435546875,0.4501953125,0.4775390625,0.5,0.517578125,0.52734375,0.5244140625,0.5078125,0.4873046875,0.47265625,0.46875,0.462890625,0.44140625,0.4248046875,0.4384765625,0.4892578125,0.5615234375,0.634765625,0.6943359375,0.69921875,0.6318359375,0.5185546875,0.41015625,0.3544921875,0.3642578125,0.3876953125,0.3994140625,0.3974609375,0.3857421875,0.376953125,0.37890625,0.39453125,0.421875,0.478515625,0.546875,0.59375,0.6015625,0.5732421875,0.5302734375,0.4755859375,0.39453125,0.3056640625,0.2421875,0.220703125,0.2333984375,0.2587890625,0.2919921875,0.3544921875,0.447265625,0.5517578125,0.64453125,0.70703125,0.740234375,0.7529296875,0.7119140625,0.61328125,0.4912109375,0.392578125,0.3505859375,0.3642578125,0.388671875,0.412109375,0.447265625,0.5048828125,0.58203125,0.6650390625,0.740234375,0.802734375,0.8115234375,0.7373046875,0.5908203125,0.4248046875,0.3056640625,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.3583984375,0.3671875,0.435546875,0.546875,0.6572265625,0.7255859375,0.740234375,0.7333984375,0.701171875,0.640625,0.568359375,0.5087890625,0.4755859375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.5263671875,0.580078125,0.640625,0.6796875,0.6806640625,0.6484375,0.6044921875,0.568359375,0.5634765625,0.5849609375,0.607421875,0.6044921875,0.5654296875,0.5,0.4267578125,0.359375,0.3251953125,0.33984375,0.3896484375,0.44140625,0.46875,0.4853515625,0.484375,0.455078125,0.3994140625,0.3349609375,0.28515625,0.2587890625,0.2431640625,0.2470703125,0.2841796875,0.3525390625,0.431640625,0.4951171875,0.5302734375,0.560546875,0.603515625,0.646484375,0.6708984375,0.6708984375,0.654296875,0.634765625,0.6044921875,0.529296875,0.421875,0.3193359375,0.2548828125,0.2392578125,0.2587890625,0.2958984375,0.3671875,0.4521484375,0.5166015625,0.53515625,0.51171875,0.46875,0.423828125,0.380859375,0.3447265625,0.3193359375,0.3017578125,0.283203125,0.2587890625,0.25,0.3046875,0.4140625,0.52734375,0.59375,0.58984375,0.5302734375,0.45703125,0.3935546875,0.3662109375,0.388671875,0.4462890625,0.5009765625,0.5302734375,0.5556640625,0.6064453125,0.6708984375,0.7265625,0.755859375,0.755859375,0.740234375,0.703125,0.6015625,0.4609375,0.3388671875,0.2822265625,0.30078125,0.3642578125,0.427734375,0.4521484375,0.421875,0.3525390625,0.28125,0.24609375,0.2587890625,0.2939453125,0.3564453125,0.4365234375,0.5048828125,0.5419921875,0.5458984375,0.5302734375,0.5009765625,0.439453125,0.35546875,0.28125,0.2392578125,0.2373046875,0.2587890625,0.3017578125,0.40625,0.5517578125,0.6875,0.7666015625,0.7763671875,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.7080078125,0.7763671875,0.8095703125,0.7900390625,0.7314453125,0.6708984375,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5244140625,0.5087890625,0.501953125,0.52734375,0.587890625,0.6650390625,0.740234375,0.80078125,0.8095703125,0.7587890625,0.673828125,0.5986328125,0.5732421875,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.46875,0.4755859375,0.501953125,0.5546875,0.6240234375,0.689453125,0.740234375,0.7861328125,0.8193359375,0.8037109375,0.7236328125,0.599609375,0.478515625,0.39453125,0.3359375,0.3408203125,0.4248046875,0.5576171875,0.68359375,0.748046875,0.740234375,0.716796875,0.708984375,0.7177734375,0.7373046875,0.7529296875,0.7548828125,0.740234375,0.72265625,0.7099609375,0.693359375,0.6650390625,0.6240234375,0.576171875,0.5302734375,0.494140625,0.4951171875,0.52734375,0.560546875,0.5673828125,0.5341796875,0.46875,0.4130859375,0.4228515625,0.5,0.6044921875,0.681640625,0.6904296875,0.634765625,0.5693359375,0.529296875,0.5166015625,0.513671875,0.5,0.4599609375,0.39453125,0.3369140625,0.3388671875,0.40234375,0.4912109375,0.5546875,0.556640625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5634765625,0.59375,0.580078125,0.5380859375,0.5,0.4951171875,0.5302734375,0.560546875,0.53125,0.44921875,0.3564453125,0.298828125,0.3046875,0.3642578125,0.4345703125,0.490234375,0.5,0.4521484375,0.37109375,0.296875,0.2587890625,0.2509765625,0.3154296875,0.44140625,0.57421875,0.658203125,0.6630859375,0.6044921875,0.5380859375,0.501953125,0.5185546875,0.5849609375,0.6689453125,0.7265625,0.740234375,0.7373046875,0.71875,0.6796875,0.6240234375,0.56640625,0.5234375,0.5,0.4970703125,0.5537109375,0.6572265625,0.7587890625,0.8134765625,0.8017578125,0.740234375,0.677734375,0.654296875,0.6708984375,0.7041015625,0.720703125,0.697265625,0.634765625,0.5703125,0.541015625,0.5546875,0.5966796875,0.634765625,0.6396484375,0.6044921875,0.5556640625,0.49609375,0.4306640625,0.369140625,0.3212890625,0.2861328125,0.2587890625,0.2509765625,0.31640625,0.4521484375,0.6103515625,0.728515625,0.76953125,0.740234375,0.7060546875,0.71484375,0.759765625,0.8095703125,0.830078125,0.8037109375,0.740234375,0.6650390625,0.5810546875,0.5048828125,0.4521484375,0.4248046875,0.4111328125,0.39453125,0.3779296875,0.37109375,0.375,0.3828125,0.38671875,0.380859375,0.3642578125,0.3447265625,0.333984375,0.3505859375,0.40234375,0.478515625,0.552734375,0.6044921875,0.6376953125,0.6181640625,0.53515625,0.4169921875,0.3095703125,0.2548828125,0.2587890625,0.2783203125,0.302734375,0.3330078125,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.2939453125,0.3564453125,0.4248046875,0.46875,0.470703125,0.439453125,0.39453125,0.3642578125,0.3994140625,0.501953125,0.6318359375,0.734375,0.76953125,0.740234375,0.69921875,0.681640625,0.693359375,0.7236328125,0.751953125,0.759765625,0.740234375,0.6982421875,0.6044921875,0.4853515625,0.39453125,0.3671875,0.40234375,0.46875,0.529296875,0.5439453125,0.5107421875,0.4580078125,0.4248046875,0.439453125,0.5,0.576171875,0.66015625,0.7236328125,0.740234375,0.7119140625,0.6669921875,0.634765625,0.6083984375,0.583984375,0.5634765625,0.546875,0.5322265625,0.517578125,0.5,0.4814453125,0.4716796875,0.474609375,0.4912109375,0.51171875,0.5263671875,0.5302734375,0.521484375,0.4892578125,0.4521484375,0.44140625,0.4716796875,0.533203125,0.6044921875,0.6630859375,0.6640625,0.5966796875,0.4912109375,0.3994140625,0.365234375,0.39453125,0.4404296875,0.48046875,0.4970703125,0.4775390625,0.43359375,0.3896484375,0.3642578125,0.3515625,0.3662109375,0.4052734375,0.4521484375,0.4853515625,0.490234375,0.46875,0.4326171875,0.361328125,0.275390625,0.2119140625,0.193359375,0.2158203125,0.2587890625,0.3076171875,0.373046875,0.455078125,0.5439453125,0.6259765625,0.69140625,0.740234375,0.76953125,0.734375,0.6318359375,0.501953125,0.3994140625,0.3642578125,0.39453125,0.4365234375,0.4697265625,0.501953125,0.5439453125,0.6005859375,0.6689453125,0.740234375,0.8046875,0.8251953125,0.7646484375,0.626953125,0.45703125,0.32421875,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.3466796875,0.373046875,0.4521484375,0.5634765625,0.6669921875,0.7275390625,0.740234375,0.7353515625,0.7099609375,0.6630859375,0.607421875,0.560546875,0.53515625,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.48828125,0.505859375,0.5517578125,0.607421875,0.646484375,0.6552734375,0.634765625,0.6162109375,0.6220703125,0.640625,0.646484375,0.6220703125,0.568359375,0.5,0.4326171875,0.3955078125,0.4033203125,0.44921875,0.505859375,0.5380859375,0.5302734375,0.5029296875,0.4443359375,0.3662109375,0.294921875,0.251953125,0.244140625,0.2587890625,0.2763671875,0.2890625,0.3056640625,0.333984375,0.375,0.4228515625,0.46875,0.513671875,0.552734375,0.5771484375,0.5849609375,0.5849609375,0.5888671875,0.6044921875,0.6083984375,0.5546875,0.447265625,0.328125,0.2451171875,0.2255859375,0.2587890625,0.3134765625,0.39453125,0.482421875,0.546875,0.568359375,0.5556640625,0.5302734375,0.50390625,0.478515625,0.447265625,0.4052734375,0.3564453125,0.3056640625,0.2587890625,0.2294921875,0.263671875,0.35546875,0.4609375,0.5283203125,0.52734375,0.46875,0.40234375,0.3603515625,0.361328125,0.3994140625,0.4501953125,0.4775390625,0.46875,0.4541015625,0.462890625,0.5048828125,0.5771484375,0.6552734375,0.712890625,0.740234375,0.740234375,0.6708984375,0.5439453125,0.4140625,0.3359375,0.3349609375,0.39453125,0.455078125,0.4638671875,0.4140625,0.328125,0.2529296875,0.2275390625,0.2587890625,0.3056640625,0.3525390625,0.39453125,0.4228515625,0.439453125,0.4521484375,0.46875,0.4765625,0.4384765625,0.361328125,0.2783203125,0.2255859375,0.22265625,0.2587890625,0.318359375,0.4248046875,0.560546875,0.6796875,0.748046875,0.7607421875,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.6806640625,0.759765625,0.806640625,0.794921875,0.7333984375,0.6591796875,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.4658203125,0.45703125,0.4638671875,0.5048828125,0.5791015625,0.6640625,0.740234375,0.8037109375,0.828125,0.7978515625,0.728515625,0.6572265625,0.6220703125,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.53125,0.541015625,0.568359375,0.61328125,0.6650390625,0.7099609375,0.740234375,0.7666015625,0.7822265625,0.7568359375,0.6767578125,0.5595703125,0.4462890625,0.3642578125,0.3095703125,0.3291015625,0.43359375,0.58203125,0.7109375,0.765625,0.740234375,0.693359375,0.6494140625,0.626953125,0.6376953125,0.6748046875,0.7158203125,0.740234375,0.755859375,0.751953125,0.71484375,0.646484375,0.5673828125,0.50390625,0.46875,0.455078125,0.484375,0.546875,0.6044921875,0.6240234375,0.5947265625,0.5302734375,0.4716796875,0.4697265625,0.52734375,0.607421875,0.6640625,0.6630859375,0.6044921875,0.5390625,0.4990234375,0.4853515625,0.482421875,0.4697265625,0.4296875,0.3642578125,0.3076171875,0.3134765625,0.3837890625,0.48046875,0.55078125,0.556640625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.564453125,0.5986328125,0.5849609375,0.53515625,0.48046875,0.4541015625,0.46875,0.4833984375,0.451171875,0.38671875,0.3251953125,0.3017578125,0.330078125,0.39453125,0.4677734375,0.529296875,0.546875,0.4990234375,0.4072265625,0.31640625,0.2587890625,0.2333984375,0.2880859375,0.4169921875,0.5654296875,0.669921875,0.689453125,0.634765625,0.5673828125,0.5283203125,0.5380859375,0.5966796875,0.6728515625,0.7275390625,0.740234375,0.7314453125,0.69140625,0.6240234375,0.5517578125,0.501953125,0.486328125,0.5,0.533203125,0.6181640625,0.728515625,0.814453125,0.8408203125,0.806640625,0.740234375,0.6767578125,0.650390625,0.66015625,0.6845703125,0.6943359375,0.66796875,0.6044921875,0.5390625,0.505859375,0.5185546875,0.568359375,0.6240234375,0.650390625,0.634765625,0.6064453125,0.568359375,0.513671875,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.2294921875,0.2705078125,0.388671875,0.546875,0.6826171875,0.748046875,0.740234375,0.724609375,0.7470703125,0.794921875,0.8369140625,0.8427734375,0.806640625,0.740234375,0.6591796875,0.5498046875,0.4384765625,0.361328125,0.3349609375,0.3447265625,0.3642578125,0.380859375,0.38671875,0.3828125,0.375,0.37109375,0.3779296875,0.39453125,0.4150390625,0.4423828125,0.48046875,0.5244140625,0.5693359375,0.6064453125,0.634765625,0.654296875,0.6396484375,0.57421875,0.4716796875,0.3642578125,0.2900390625,0.2587890625,0.240234375,0.2333984375,0.2568359375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3466796875,0.4052734375,0.48046875,0.5341796875,0.5419921875,0.505859375,0.4482421875,0.40234375,0.419921875,0.5048828125,0.6162109375,0.701171875,0.7197265625,0.673828125,0.615234375,0.576171875,0.572265625,0.603515625,0.646484375,0.6748046875,0.673828125,0.6474609375,0.568359375,0.458984375,0.3681640625,0.3349609375,0.36328125,0.4287109375,0.490234375,0.509765625,0.4853515625,0.443359375,0.4189453125,0.4384765625,0.5,0.5732421875,0.646484375,0.6953125,0.701171875,0.673828125,0.638671875,0.6220703125,0.6162109375,0.623046875,0.6318359375,0.6259765625,0.5966796875,0.55078125,0.5,0.451171875,0.4228515625,0.4287109375,0.4697265625,0.5234375,0.5615234375,0.5703125,0.5595703125,0.515625,0.4580078125,0.4228515625,0.431640625,0.4814453125,0.55078125,0.6103515625,0.6142578125,0.55859375,0.4755859375,0.41015625,0.400390625,0.4482421875,0.5126953125,0.5791015625,0.6123046875,0.58984375,0.5185546875,0.4375,0.376953125,0.330078125,0.3056640625,0.3154296875,0.3544921875,0.40234375,0.4306640625,0.4287109375,0.408203125,0.3525390625,0.28125,0.232421875,0.228515625,0.2666015625,0.3251953125,0.384765625,0.4365234375,0.4794921875,0.51953125,0.5625,0.6142578125,0.673828125,0.7197265625,0.701171875,0.6162109375,0.5048828125,0.419921875,0.40234375,0.4482421875,0.5029296875,0.533203125,0.5419921875,0.544921875,0.5625,0.6064453125,0.673828125,0.7431640625,0.7890625,0.7705078125,0.6748046875,0.5322265625,0.4033203125,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.3740234375,0.40234375,0.466796875,0.548828125,0.623046875,0.6650390625,0.673828125,0.6708984375,0.658203125,0.6357421875,0.6083984375,0.5849609375,0.572265625,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.4541015625,0.4375,0.4638671875,0.521484375,0.5849609375,0.6220703125,0.6220703125,0.619140625,0.6376953125,0.662109375,0.6650390625,0.6318359375,0.5703125,0.5,0.4384765625,0.423828125,0.46484375,0.53515625,0.5947265625,0.6083984375,0.5703125,0.5078125,0.4111328125,0.3095703125,0.244140625,0.2373046875,0.2744140625,0.3251953125,0.369140625,0.3828125,0.3701171875,0.349609375,0.3466796875,0.3740234375,0.4287109375,0.484375,0.5146484375,0.5146484375,0.5,0.4912109375,0.5068359375,0.55078125,0.5869140625,0.5615234375,0.474609375,0.3671875,0.2900390625,0.2783203125,0.3251953125,0.392578125,0.47265625,0.546875,0.58984375,0.5966796875,0.5830078125,0.5703125,0.5625,0.5615234375,0.55078125,0.5166015625,0.4580078125,0.3896484375,0.3251953125,0.2783203125,0.2880859375,0.3525390625,0.4365234375,0.4921875,0.48828125,0.4287109375,0.3662109375,0.34375,0.3681640625,0.419921875,0.4638671875,0.46875,0.4287109375,0.3779296875,0.3408203125,0.34765625,0.412109375,0.5146484375,0.611328125,0.673828125,0.7080078125,0.67578125,0.58203125,0.4697265625,0.39453125,0.390625,0.4482421875,0.505859375,0.5078125,0.4482421875,0.359375,0.2900390625,0.2783203125,0.3251953125,0.380859375,0.408203125,0.4052734375,0.384765625,0.37109375,0.3857421875,0.4287109375,0.4677734375,0.45703125,0.3974609375,0.322265625,0.2724609375,0.275390625,0.3251953125,0.39453125,0.48828125,0.5849609375,0.6552734375,0.6845703125,0.68359375,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.6298828125,0.7177734375,0.7763671875,0.7724609375,0.70703125,0.62109375,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.4248046875,0.4130859375,0.4140625,0.4482421875,0.515625,0.59765625,0.673828125,0.740234375,0.7802734375,0.7744140625,0.7265625,0.6630859375,0.623046875,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.5712890625,0.5771484375,0.5927734375,0.6162109375,0.640625,0.6611328125,0.673828125,0.6865234375,0.7001953125,0.689453125,0.63671875,0.5498046875,0.455078125,0.376953125,0.3232421875,0.341796875,0.4404296875,0.5751953125,0.68359375,0.7158203125,0.673828125,0.6064453125,0.5322265625,0.482421875,0.4873046875,0.5419921875,0.615234375,0.673828125,0.71875,0.732421875,0.6953125,0.61328125,0.5185546875,0.4521484375,0.4287109375,0.4326171875,0.4833984375,0.56640625,0.638671875,0.6640625,0.634765625,0.5703125,0.509765625,0.4970703125,0.533203125,0.5888671875,0.6240234375,0.611328125,0.55078125,0.4873046875,0.455078125,0.45703125,0.4716796875,0.47265625,0.44140625,0.376953125,0.3203125,0.32421875,0.3916015625,0.4853515625,0.552734375,0.556640625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.56640625,0.6044921875,0.59375,0.5400390625,0.4736328125,0.4306640625,0.4287109375,0.4296875,0.3974609375,0.3505859375,0.3203125,0.330078125,0.37890625,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.283203125,0.3154296875,0.423828125,0.55859375,0.6572265625,0.67578125,0.6220703125,0.552734375,0.5068359375,0.5048828125,0.548828125,0.6142578125,0.662109375,0.673828125,0.662109375,0.611328125,0.53515625,0.466796875,0.4375,0.4541015625,0.5,0.5634765625,0.6630859375,0.7646484375,0.8193359375,0.806640625,0.74609375,0.673828125,0.6103515625,0.5849609375,0.59765625,0.626953125,0.6396484375,0.6142578125,0.55078125,0.484375,0.4462890625,0.45703125,0.509765625,0.5771484375,0.6201171875,0.6220703125,0.61328125,0.60546875,0.5830078125,0.53515625,0.4658203125,0.390625,0.3251953125,0.275390625,0.279296875,0.3525390625,0.4755859375,0.5966796875,0.6669921875,0.673828125,0.6728515625,0.70703125,0.7587890625,0.7939453125,0.7880859375,0.7421875,0.673828125,0.58984375,0.4716796875,0.3544921875,0.28515625,0.28125,0.32421875,0.376953125,0.421875,0.4375,0.4248046875,0.400390625,0.3876953125,0.4033203125,0.4482421875,0.5,0.552734375,0.5927734375,0.61328125,0.615234375,0.6142578125,0.6220703125,0.6318359375,0.6328125,0.607421875,0.5458984375,0.462890625,0.3837890625,0.3251953125,0.2734375,0.23046875,0.2294921875,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.4326171875,0.4833984375,0.55078125,0.5986328125,0.599609375,0.556640625,0.4892578125,0.43359375,0.43359375,0.4931640625,0.576171875,0.634765625,0.6357421875,0.5791015625,0.51171875,0.4609375,0.44921875,0.4794921875,0.53125,0.5712890625,0.5791015625,0.564453125,0.5048828125,0.419921875,0.353515625,0.3369140625,0.373046875,0.439453125,0.5009765625,0.5185546875,0.4921875,0.447265625,0.419921875,0.4384765625,0.5,0.5712890625,0.6328125,0.6630859375,0.65234375,0.61328125,0.5791015625,0.5693359375,0.5751953125,0.60546875,0.640625,0.65234375,0.625,0.5673828125,0.5,0.4345703125,0.3916015625,0.392578125,0.4375,0.5009765625,0.548828125,0.5595703125,0.5478515625,0.5,0.435546875,0.392578125,0.39453125,0.4404296875,0.509765625,0.5693359375,0.578125,0.53515625,0.4697265625,0.4248046875,0.431640625,0.4892578125,0.5654296875,0.6494140625,0.7001953125,0.68359375,0.60546875,0.5078125,0.4296875,0.36328125,0.3154296875,0.306640625,0.3388671875,0.3916015625,0.431640625,0.439453125,0.427734375,0.3837890625,0.326171875,0.2919921875,0.3017578125,0.3515625,0.419921875,0.4814453125,0.51171875,0.5078125,0.4912109375,0.4873046875,0.517578125,0.5791015625,0.6357421875,0.634765625,0.576171875,0.4931640625,0.43359375,0.43359375,0.4892578125,0.5498046875,0.5703125,0.5498046875,0.513671875,0.494140625,0.517578125,0.5791015625,0.6552734375,0.728515625,0.7587890625,0.7158203125,0.6142578125,0.501953125,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.431640625,0.4482421875,0.4814453125,0.521484375,0.556640625,0.5751953125,0.5791015625,0.5791015625,0.576171875,0.572265625,0.56640625,0.5625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.4345703125,0.39453125,0.3984375,0.4462890625,0.5126953125,0.5595703125,0.5693359375,0.576171875,0.6083984375,0.6455078125,0.658203125,0.630859375,0.5703125,0.5,0.4404296875,0.435546875,0.486328125,0.5615234375,0.615234375,0.6142578125,0.5595703125,0.48046875,0.373046875,0.2783203125,0.2421875,0.2744140625,0.3466796875,0.419921875,0.4765625,0.48828125,0.453125,0.400390625,0.3671875,0.380859375,0.439453125,0.5,0.51953125,0.4970703125,0.45703125,0.43359375,0.451171875,0.509765625,0.564453125,0.5625,0.5029296875,0.4208984375,0.3623046875,0.36328125,0.419921875,0.4912109375,0.560546875,0.60546875,0.6142578125,0.5927734375,0.5673828125,0.5595703125,0.564453125,0.5869140625,0.607421875,0.6005859375,0.55859375,0.4912109375,0.419921875,0.3623046875,0.35546875,0.400390625,0.46484375,0.5087890625,0.4990234375,0.439453125,0.3798828125,0.3671875,0.404296875,0.4638671875,0.5048828125,0.49609375,0.439453125,0.3671875,0.2939453125,0.26171875,0.298828125,0.3935546875,0.5,0.5791015625,0.6337890625,0.630859375,0.5703125,0.4873046875,0.4296875,0.431640625,0.4892578125,0.5478515625,0.55078125,0.4970703125,0.41796875,0.3623046875,0.36328125,0.419921875,0.478515625,0.4931640625,0.458984375,0.40625,0.37109375,0.3828125,0.439453125,0.49609375,0.5029296875,0.458984375,0.3955078125,0.3525390625,0.361328125,0.419921875,0.4921875,0.5634765625,0.61328125,0.6259765625,0.609375,0.5869140625,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.5888671875,0.6826171875,0.748046875,0.7470703125,0.6806640625,0.587890625,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.4326171875,0.408203125,0.3857421875,0.392578125,0.4365234375,0.505859375,0.5791015625,0.6484375,0.69921875,0.708984375,0.6748046875,0.619140625,0.578125,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.564453125,0.568359375,0.5732421875,0.5771484375,0.5791015625,0.5869140625,0.6123046875,0.6328125,0.623046875,0.5751953125,0.5029296875,0.4296875,0.373046875,0.3798828125,0.4521484375,0.5517578125,0.625,0.6337890625,0.5791015625,0.501953125,0.41015625,0.3466796875,0.34765625,0.412109375,0.5029296875,0.5791015625,0.642578125,0.6767578125,0.6591796875,0.5947265625,0.51171875,0.4541015625,0.439453125,0.451171875,0.505859375,0.5859375,0.6484375,0.6630859375,0.6259765625,0.5595703125,0.498046875,0.4814453125,0.5107421875,0.55859375,0.5869140625,0.5703125,0.509765625,0.4482421875,0.427734375,0.4501953125,0.4892578125,0.51171875,0.4912109375,0.4296875,0.37109375,0.369140625,0.4248046875,0.50390625,0.5595703125,0.5576171875,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5673828125,0.6123046875,0.6103515625,0.5634765625,0.4970703125,0.44921875,0.439453125,0.4326171875,0.3984375,0.3564453125,0.337890625,0.361328125,0.4189453125,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.4990234375,0.419921875,0.365234375,0.3740234375,0.447265625,0.546875,0.619140625,0.6259765625,0.5693359375,0.5,0.4482421875,0.4375,0.470703125,0.5263671875,0.5693359375,0.5791015625,0.568359375,0.5185546875,0.44921875,0.3994140625,0.39453125,0.4345703125,0.5,0.578125,0.6796875,0.7626953125,0.78515625,0.7392578125,0.65625,0.5791015625,0.517578125,0.4990234375,0.5234375,0.5654296875,0.58984375,0.5712890625,0.509765625,0.44140625,0.3974609375,0.3984375,0.4453125,0.51171875,0.5595703125,0.5693359375,0.57421875,0.595703125,0.6142578125,0.6044921875,0.5595703125,0.4912109375,0.419921875,0.35546875,0.3251953125,0.3486328125,0.4208984375,0.5087890625,0.5673828125,0.5791015625,0.587890625,0.6279296875,0.681640625,0.7119140625,0.7001953125,0.6484375,0.5791015625,0.49609375,0.3857421875,0.2890625,0.25,0.283203125,0.3564453125,0.4296875,0.48828125,0.505859375,0.48046875,0.4384765625,0.4140625,0.4306640625,0.4892578125,0.5576171875,0.6162109375,0.6455078125,0.63671875,0.6044921875,0.5751953125,0.5693359375,0.5771484375,0.599609375,0.6171875,0.6064453125,0.5595703125,0.490234375,0.419921875,0.3466796875,0.2734375,0.2392578125,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.46875,0.5048828125,0.5361328125,0.5546875,0.5595703125,0.568359375,0.6015625,0.63671875,0.646484375,0.6171875,0.5576171875,0.4892578125,0.431640625,0.416015625,0.4443359375,0.490234375,0.5166015625,0.5,0.439453125,0.37109375,0.3193359375,0.3046875,0.333984375,0.38671875,0.4287109375,0.439453125,0.4345703125,0.412109375,0.3916015625,0.3984375,0.4404296875,0.5078125,0.5791015625,0.6357421875,0.634765625,0.576171875,0.4931640625,0.43359375,0.43359375,0.4892578125,0.5556640625,0.5986328125,0.595703125,0.5478515625,0.48046875,0.4306640625,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5498046875,0.564453125,0.529296875,0.474609375,0.4384765625,0.451171875,0.509765625,0.5888671875,0.689453125,0.7685546875,0.78515625,0.7333984375,0.6474609375,0.5693359375,0.4990234375,0.4443359375,0.427734375,0.455078125,0.505859375,0.5478515625,0.5595703125,0.5517578125,0.5146484375,0.466796875,0.4423828125,0.4580078125,0.5107421875,0.5791015625,0.6337890625,0.625,0.5517578125,0.4521484375,0.3798828125,0.373046875,0.4296875,0.4912109375,0.51171875,0.4892578125,0.4501953125,0.427734375,0.4482421875,0.509765625,0.568359375,0.572265625,0.51953125,0.44140625,0.384765625,0.384765625,0.439453125,0.51953125,0.626953125,0.72265625,0.7607421875,0.7275390625,0.6533203125,0.5791015625,0.5107421875,0.45703125,0.439453125,0.4638671875,0.51171875,0.5498046875,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.568359375,0.552734375,0.5234375,0.486328125,0.4541015625,0.4345703125,0.4296875,0.4287109375,0.4287109375,0.4306640625,0.43359375,0.4375,0.439453125,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.443359375,0.494140625,0.5634765625,0.611328125,0.61328125,0.568359375,0.5,0.4287109375,0.369140625,0.341796875,0.3564453125,0.396484375,0.4306640625,0.439453125,0.451171875,0.4990234375,0.5654296875,0.61328125,0.6162109375,0.57421875,0.509765625,0.4501953125,0.4306640625,0.4501953125,0.484375,0.5029296875,0.48046875,0.419921875,0.3447265625,0.2705078125,0.236328125,0.2734375,0.369140625,0.478515625,0.5595703125,0.6181640625,0.6279296875,0.58984375,0.533203125,0.49609375,0.5087890625,0.5693359375,0.626953125,0.6279296875,0.5703125,0.48828125,0.4306640625,0.431640625,0.4892578125,0.55078125,0.5703125,0.5458984375,0.5029296875,0.478515625,0.498046875,0.5595703125,0.6259765625,0.6640625,0.650390625,0.5888671875,0.5087890625,0.4521484375,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5205078125,0.505859375,0.5400390625,0.5927734375,0.6279296875,0.6162109375,0.5595703125,0.5029296875,0.49609375,0.5400390625,0.603515625,0.646484375,0.6376953125,0.5791015625,0.498046875,0.38671875,0.28515625,0.2431640625,0.2734375,0.345703125,0.419921875,0.48046875,0.5,0.4794921875,0.443359375,0.4248046875,0.447265625,0.509765625,0.5712890625,0.5908203125,0.568359375,0.5263671875,0.501953125,0.51953125,0.5791015625,0.6376953125,0.646484375,0.6064453125,0.546875,0.5078125,0.51953125,0.5791015625,0.6396484375,0.650390625,0.6103515625,0.548828125,0.505859375,0.5126953125,0.5693359375,0.6318359375,0.6630859375,0.640625,0.572265625,0.48828125,0.4306640625,0.419921875,0.4130859375,0.3818359375,0.345703125,0.333984375,0.361328125,0.419921875,0.4892578125,0.5673828125,0.658203125,0.7216796875,0.7216796875,0.65625,0.5654296875,0.4892578125,0.4248046875,0.3818359375,0.3837890625,0.4306640625,0.4970703125,0.546875,0.5595703125,0.548828125,0.494140625,0.416015625,0.353515625,0.3388671875,0.375,0.439453125,0.5078125,0.55859375,0.572265625,0.5419921875,0.490234375,0.44921875,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.4443359375,0.501953125,0.583984375,0.6494140625,0.6669921875,0.6328125,0.5693359375,0.5087890625,0.4814453125,0.4892578125,0.509765625,0.517578125,0.490234375,0.4296875,0.353515625,0.26171875,0.1953125,0.1943359375,0.2578125,0.3505859375,0.4296875,0.5029296875,0.572265625,0.615234375,0.6201171875,0.5947265625,0.568359375,0.5595703125,0.5634765625,0.5859375,0.60546875,0.59765625,0.5556640625,0.4892578125,0.419921875,0.365234375,0.3681640625,0.4287109375,0.51171875,0.5693359375,0.5673828125,0.509765625,0.451171875,0.4482421875,0.501953125,0.5810546875,0.63671875,0.6357421875,0.5791015625,0.51953125,0.5,0.5244140625,0.564453125,0.5888671875,0.5693359375,0.509765625,0.431640625,0.33984375,0.2734375,0.271484375,0.333984375,0.423828125,0.5,0.5673828125,0.6259765625,0.6533203125,0.640625,0.6025390625,0.5693359375,0.5595703125,0.546875,0.4970703125,0.4306640625,0.3837890625,0.3818359375,0.4248046875,0.4892578125,0.5673828125,0.6669921875,0.7470703125,0.7666015625,0.7177734375,0.6357421875,0.5595703125,0.498046875,0.470703125,0.478515625,0.5009765625,0.5087890625,0.4814453125,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.412109375,0.380859375,0.345703125,0.3349609375,0.36328125,0.421875,0.4892578125,0.5634765625,0.6455078125,0.693359375,0.6748046875,0.595703125,0.4970703125,0.419921875,0.365234375,0.3671875,0.4267578125,0.5087890625,0.56640625,0.56640625,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.4521484375,0.5087890625,0.5908203125,0.6572265625,0.67578125,0.642578125,0.5791015625,0.5087890625,0.439453125,0.3916015625,0.3779296875,0.3935546875,0.4140625,0.419921875,0.4296875,0.47265625,0.5283203125,0.5615234375,0.55078125,0.4990234375,0.4296875,0.353515625,0.2763671875,0.240234375,0.27734375,0.375,0.486328125,0.5693359375,0.6279296875,0.6328125,0.580078125,0.50390625,0.4501953125,0.453125,0.509765625,0.576171875,0.6181640625,0.615234375,0.564453125,0.494140625,0.443359375,0.4296875,0.4404296875,0.49609375,0.578125,0.64453125,0.6640625,0.6318359375,0.5693359375,0.4892578125,0.380859375,0.283203125,0.400390625,0.4609375,0.5166015625,0.5546875,0.5703125,0.583984375,0.6064453125,0.619140625,0.6044921875,0.5595703125,0.501953125,0.4482421875,0.40625,0.40234375,0.4345703125,0.4775390625,0.4990234375,0.482421875,0.4287109375,0.3681640625,0.3173828125,0.2978515625,0.3193359375,0.3671875,0.41015625,0.4287109375,0.4365234375,0.4375,0.4482421875,0.482421875,0.541015625,0.609375,0.673828125,0.7197265625,0.701171875,0.6162109375,0.5048828125,0.419921875,0.40234375,0.4482421875,0.5048828125,0.5341796875,0.5185546875,0.4609375,0.3876953125,0.3369140625,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.51171875,0.541015625,0.53125,0.501953125,0.4833984375,0.4990234375,0.55078125,0.6220703125,0.7177734375,0.7978515625,0.8212890625,0.7783203125,0.6982421875,0.6220703125,0.548828125,0.484375,0.4521484375,0.4638671875,0.5078125,0.55078125,0.5703125,0.57421875,0.55859375,0.5380859375,0.53515625,0.5615234375,0.6123046875,0.673828125,0.7158203125,0.68359375,0.5751953125,0.4404296875,0.341796875,0.3232421875,0.376953125,0.44140625,0.47265625,0.4716796875,0.45703125,0.455078125,0.4873046875,0.55078125,0.611328125,0.619140625,0.5673828125,0.482421875,0.4111328125,0.392578125,0.4287109375,0.4931640625,0.595703125,0.705078125,0.7744140625,0.779296875,0.734375,0.673828125,0.611328125,0.5537109375,0.51953125,0.5185546875,0.541015625,0.5634765625,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.6279296875,0.611328125,0.56640625,0.501953125,0.4375,0.39453125,0.376953125,0.3681640625,0.3671875,0.376953125,0.39453125,0.4140625,0.4267578125,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.400390625,0.46484375,0.546875,0.60546875,0.611328125,0.568359375,0.5,0.427734375,0.3671875,0.337890625,0.349609375,0.3876953125,0.4208984375,0.4287109375,0.4384765625,0.4833984375,0.548828125,0.6025390625,0.6201171875,0.59765625,0.55078125,0.5048828125,0.4755859375,0.4619140625,0.4501953125,0.42578125,0.3837890625,0.3251953125,0.2626953125,0.2119140625,0.2099609375,0.2744140625,0.3857421875,0.49609375,0.5703125,0.62109375,0.6298828125,0.599609375,0.5576171875,0.5361328125,0.5595703125,0.6220703125,0.677734375,0.6669921875,0.587890625,0.4814453125,0.40234375,0.3916015625,0.4482421875,0.5107421875,0.5361328125,0.5234375,0.4951171875,0.4814453125,0.5078125,0.5703125,0.63671875,0.671875,0.6533203125,0.5859375,0.5009765625,0.4423828125,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6181640625,0.5908203125,0.59375,0.6142578125,0.6279296875,0.61328125,0.5703125,0.53125,0.5419921875,0.6015625,0.6767578125,0.7265625,0.7236328125,0.673828125,0.5966796875,0.474609375,0.33984375,0.248046875,0.2275390625,0.265625,0.3251953125,0.380859375,0.4111328125,0.4189453125,0.4228515625,0.4404296875,0.484375,0.55078125,0.615234375,0.646484375,0.6416015625,0.6181640625,0.6025390625,0.62109375,0.673828125,0.72265625,0.7265625,0.6845703125,0.6279296875,0.595703125,0.6123046875,0.673828125,0.734375,0.7509765625,0.71484375,0.6494140625,0.59375,0.5830078125,0.6220703125,0.6630859375,0.658203125,0.59375,0.4892578125,0.3876953125,0.3291015625,0.3251953125,0.330078125,0.31640625,0.30078125,0.3017578125,0.3330078125,0.38671875,0.4482421875,0.5146484375,0.5888671875,0.638671875,0.6337890625,0.5791015625,0.505859375,0.4482421875,0.3994140625,0.37109375,0.380859375,0.4306640625,0.498046875,0.5498046875,0.5703125,0.568359375,0.5234375,0.4482421875,0.3798828125,0.3525390625,0.3740234375,0.4287109375,0.48828125,0.533203125,0.544921875,0.5185546875,0.4736328125,0.4375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.400390625,0.466796875,0.5615234375,0.6435546875,0.6806640625,0.6669921875,0.6220703125,0.5732421875,0.5361328125,0.509765625,0.4892578125,0.462890625,0.42578125,0.376953125,0.3173828125,0.2392578125,0.17578125,0.1669921875,0.21875,0.30078125,0.376953125,0.453125,0.53515625,0.5986328125,0.6240234375,0.611328125,0.5859375,0.5703125,0.5615234375,0.5537109375,0.53515625,0.4970703125,0.4404296875,0.3798828125,0.3251953125,0.291015625,0.3232421875,0.4169921875,0.529296875,0.6044921875,0.6083984375,0.55078125,0.4931640625,0.4912109375,0.55078125,0.6396484375,0.708984375,0.720703125,0.673828125,0.619140625,0.595703125,0.6025390625,0.6220703125,0.62890625,0.60546875,0.55078125,0.4833984375,0.40234375,0.341796875,0.33203125,0.3759765625,0.4423828125,0.5,0.5517578125,0.6044921875,0.63671875,0.638671875,0.6142578125,0.5859375,0.5703125,0.5498046875,0.498046875,0.4306640625,0.380859375,0.37109375,0.3994140625,0.4482421875,0.5087890625,0.5966796875,0.6787109375,0.7158203125,0.693359375,0.6337890625,0.5703125,0.513671875,0.474609375,0.4541015625,0.44140625,0.4208984375,0.3828125,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.3212890625,0.306640625,0.2958984375,0.306640625,0.34375,0.3955078125,0.4482421875,0.501953125,0.5537109375,0.57421875,0.5419921875,0.466796875,0.384765625,0.3251953125,0.2900390625,0.3154296875,0.40234375,0.509765625,0.5859375,0.5986328125,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.44140625,0.5009765625,0.59375,0.6796875,0.724609375,0.716796875,0.673828125,0.615234375,0.5361328125,0.44921875,0.37890625,0.3388671875,0.326171875,0.3251953125,0.3369140625,0.384765625,0.4501953125,0.494140625,0.4921875,0.4462890625,0.376953125,0.3037109375,0.2392578125,0.2265625,0.291015625,0.412109375,0.5361328125,0.6220703125,0.681640625,0.689453125,0.6416015625,0.56640625,0.5087890625,0.5029296875,0.55078125,0.6083984375,0.6376953125,0.6181640625,0.55078125,0.46484375,0.400390625,0.376953125,0.3798828125,0.431640625,0.5224609375,0.61328125,0.666015625,0.6640625,0.6220703125,0.556640625,0.4482421875,0.330078125,0.3203125,0.3798828125,0.4453125,0.498046875,0.5302734375,0.5546875,0.5693359375,0.5576171875,0.5185546875,0.46484375,0.419921875,0.39453125,0.3837890625,0.4052734375,0.4521484375,0.5,0.521484375,0.5087890625,0.46875,0.421875,0.373046875,0.3447265625,0.3525390625,0.3916015625,0.4375,0.46875,0.4951171875,0.5205078125,0.5517578125,0.59375,0.642578125,0.693359375,0.740234375,0.76953125,0.734375,0.6318359375,0.501953125,0.3994140625,0.3642578125,0.39453125,0.435546875,0.4521484375,0.4306640625,0.375,0.3115234375,0.2685546875,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.462890625,0.5146484375,0.541015625,0.546875,0.548828125,0.5654296875,0.6044921875,0.6591796875,0.73828125,0.806640625,0.826171875,0.78515625,0.7099609375,0.634765625,0.5595703125,0.478515625,0.421875,0.4140625,0.4482421875,0.4970703125,0.5302734375,0.5537109375,0.572265625,0.5908203125,0.6162109375,0.6513671875,0.6943359375,0.740234375,0.765625,0.7109375,0.58203125,0.43359375,0.3291015625,0.3095703125,0.3642578125,0.4296875,0.4697265625,0.482421875,0.4853515625,0.4990234375,0.5390625,0.6044921875,0.6689453125,0.693359375,0.662109375,0.587890625,0.5078125,0.4638671875,0.46875,0.5,0.5732421875,0.6708984375,0.75390625,0.7919921875,0.7802734375,0.740234375,0.69140625,0.6328125,0.5771484375,0.541015625,0.52734375,0.5283203125,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.658203125,0.66015625,0.6240234375,0.5517578125,0.466796875,0.3994140625,0.3642578125,0.3408203125,0.333984375,0.3525390625,0.3916015625,0.4345703125,0.462890625,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.4033203125,0.48046875,0.568359375,0.6240234375,0.62109375,0.5693359375,0.5,0.4287109375,0.373046875,0.3525390625,0.375,0.421875,0.4599609375,0.46875,0.474609375,0.501953125,0.546875,0.5908203125,0.6171875,0.6201171875,0.6044921875,0.583984375,0.5546875,0.5078125,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.21484375,0.1884765625,0.20703125,0.2783203125,0.380859375,0.4736328125,0.5302734375,0.56640625,0.5703125,0.548828125,0.52734375,0.5302734375,0.5693359375,0.634765625,0.689453125,0.6708984375,0.5771484375,0.4521484375,0.3583984375,0.33984375,0.39453125,0.45703125,0.484375,0.474609375,0.44921875,0.439453125,0.466796875,0.5302734375,0.5986328125,0.6435546875,0.642578125,0.5966796875,0.529296875,0.48046875,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.693359375,0.646484375,0.6044921875,0.576171875,0.5595703125,0.546875,0.5302734375,0.5224609375,0.560546875,0.6376953125,0.720703125,0.7734375,0.7763671875,0.740234375,0.6787109375,0.560546875,0.4111328125,0.2841796875,0.21875,0.2197265625,0.2587890625,0.30078125,0.3349609375,0.3662109375,0.408203125,0.46484375,0.533203125,0.6044921875,0.6708984375,0.7138671875,0.7236328125,0.7099609375,0.6953125,0.703125,0.740234375,0.7744140625,0.765625,0.720703125,0.6708984375,0.650390625,0.6767578125,0.740234375,0.8046875,0.8330078125,0.8095703125,0.7431640625,0.669921875,0.62890625,0.634765625,0.640625,0.59375,0.494140625,0.375,0.2822265625,0.2451171875,0.2587890625,0.28125,0.291015625,0.2919921875,0.2978515625,0.31640625,0.3505859375,0.39453125,0.44140625,0.4853515625,0.5078125,0.4970703125,0.458984375,0.4189453125,0.39453125,0.375,0.3623046875,0.3701171875,0.40234375,0.451171875,0.498046875,0.5302734375,0.5478515625,0.533203125,0.4912109375,0.4443359375,0.419921875,0.4296875,0.46875,0.513671875,0.546875,0.5546875,0.53515625,0.501953125,0.4755859375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.3984375,0.4619140625,0.541015625,0.609375,0.6474609375,0.650390625,0.634765625,0.61328125,0.5771484375,0.52734375,0.4716796875,0.421875,0.3857421875,0.3642578125,0.3359375,0.2802734375,0.2236328125,0.201171875,0.228515625,0.2919921875,0.3642578125,0.44140625,0.529296875,0.599609375,0.6240234375,0.6025390625,0.5615234375,0.5302734375,0.5009765625,0.458984375,0.408203125,0.35546875,0.3115234375,0.2802734375,0.2587890625,0.2587890625,0.328125,0.455078125,0.5849609375,0.6630859375,0.6640625,0.6044921875,0.5439453125,0.53515625,0.5849609375,0.6708984375,0.74609375,0.771484375,0.740234375,0.69921875,0.67578125,0.6708984375,0.673828125,0.6689453125,0.6455078125,0.6044921875,0.5556640625,0.498046875,0.4521484375,0.435546875,0.4501953125,0.4775390625,0.5,0.5224609375,0.5556640625,0.5849609375,0.5966796875,0.583984375,0.5576171875,0.5302734375,0.498046875,0.451171875,0.40234375,0.3701171875,0.3623046875,0.375,0.39453125,0.421875,0.478515625,0.546875,0.59375,0.6015625,0.5732421875,0.5302734375,0.4853515625,0.4462890625,0.4111328125,0.3779296875,0.3427734375,0.302734375,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.259765625,0.2646484375,0.28125,0.30859375,0.3427734375,0.373046875,0.39453125,0.412109375,0.4208984375,0.408203125,0.3720703125,0.32421875,0.283203125,0.2587890625,0.2548828125,0.3095703125,0.4169921875,0.53515625,0.6181640625,0.6376953125,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.478515625,0.5224609375,0.5966796875,0.67578125,0.7333984375,0.751953125,0.740234375,0.7099609375,0.6376953125,0.52734375,0.408203125,0.314453125,0.267578125,0.2587890625,0.271484375,0.326171875,0.40234375,0.4609375,0.470703125,0.431640625,0.3642578125,0.291015625,0.2294921875,0.2236328125,0.294921875,0.421875,0.548828125,0.634765625,0.697265625,0.7197265625,0.6923828125,0.6357421875,0.5830078125,0.5712890625,0.6044921875,0.646484375,0.666015625,0.640625,0.568359375,0.4765625,0.4013671875,0.3642578125,0.34765625,0.3720703125,0.44140625,0.5322265625,0.609375,0.6435546875,0.634765625,0.6005859375,0.51171875,0.39453125,0.26953125,0.306640625,0.361328125,0.419921875,0.46875,0.5078125,0.517578125,0.48828125,0.43359375,0.3798828125,0.3544921875,0.3642578125,0.3896484375,0.439453125,0.5,0.546875,0.564453125,0.5546875,0.5302734375,0.498046875,0.4521484375,0.4140625,0.4052734375,0.43359375,0.482421875,0.5302734375,0.5751953125,0.6181640625,0.654296875,0.6796875,0.697265625,0.7158203125,0.740234375,0.7529296875,0.7119140625,0.61328125,0.4912109375,0.392578125,0.3505859375,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.4365234375,0.5068359375,0.560546875,0.5908203125,0.6025390625,0.61328125,0.634765625,0.669921875,0.7275390625,0.7783203125,0.7900390625,0.75,0.6787109375,0.6044921875,0.525390625,0.4296875,0.3525390625,0.328125,0.359375,0.41796875,0.46875,0.515625,0.56640625,0.6162109375,0.6572265625,0.6884765625,0.71484375,0.740234375,0.748046875,0.68359375,0.5576171875,0.4248046875,0.3408203125,0.3359375,0.39453125,0.4599609375,0.5,0.513671875,0.5166015625,0.529296875,0.5693359375,0.634765625,0.705078125,0.755859375,0.759765625,0.708984375,0.62890625,0.560546875,0.5302734375,0.51953125,0.546875,0.6103515625,0.6845703125,0.7412109375,0.7578125,0.740234375,0.7080078125,0.65625,0.5908203125,0.5302734375,0.4892578125,0.4716796875,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.650390625,0.6845703125,0.6796875,0.6240234375,0.53515625,0.44921875,0.39453125,0.353515625,0.3369140625,0.3583984375,0.4140625,0.4775390625,0.5205078125,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.451171875,0.5380859375,0.6240234375,0.6630859375,0.638671875,0.5732421875,0.5,0.4306640625,0.3818359375,0.375,0.4140625,0.4736328125,0.51953125,0.5302734375,0.529296875,0.53125,0.541015625,0.560546875,0.587890625,0.6142578125,0.634765625,0.6484375,0.6318359375,0.5712890625,0.474609375,0.3720703125,0.2958984375,0.2587890625,0.234375,0.2255859375,0.248046875,0.3037109375,0.375,0.4345703125,0.46875,0.48828125,0.482421875,0.4638671875,0.4580078125,0.4814453125,0.53515625,0.6044921875,0.6591796875,0.640625,0.546875,0.421875,0.328125,0.3095703125,0.3642578125,0.4267578125,0.4501953125,0.4326171875,0.400390625,0.3837890625,0.4072265625,0.46875,0.5400390625,0.6005859375,0.626953125,0.6123046875,0.572265625,0.5380859375,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.705078125,0.642578125,0.5625,0.494140625,0.45703125,0.453125,0.46875,0.498046875,0.5595703125,0.6435546875,0.7177734375,0.759765625,0.76171875,0.740234375,0.69921875,0.6064453125,0.474609375,0.34765625,0.2646484375,0.2412109375,0.2587890625,0.283203125,0.306640625,0.341796875,0.3994140625,0.4775390625,0.560546875,0.634765625,0.703125,0.7529296875,0.7705078125,0.7568359375,0.7314453125,0.7216796875,0.740234375,0.755859375,0.7333984375,0.6845703125,0.6435546875,0.63671875,0.673828125,0.740234375,0.8095703125,0.8564453125,0.853515625,0.794921875,0.7080078125,0.6357421875,0.6044921875,0.572265625,0.4892578125,0.375,0.2724609375,0.2177734375,0.220703125,0.2587890625,0.3017578125,0.33203125,0.3447265625,0.341796875,0.3369140625,0.341796875,0.3642578125,0.38671875,0.3955078125,0.3857421875,0.3671875,0.3505859375,0.349609375,0.3642578125,0.37890625,0.37890625,0.3720703125,0.373046875,0.390625,0.4248046875,0.46875,0.5107421875,0.5361328125,0.5380859375,0.5244140625,0.5087890625,0.5087890625,0.5302734375,0.5556640625,0.5751953125,0.580078125,0.568359375,0.548828125,0.533203125,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.4404296875,0.48828125,0.529296875,0.5576171875,0.57421875,0.587890625,0.6044921875,0.615234375,0.5927734375,0.53515625,0.4638671875,0.40625,0.3837890625,0.39453125,0.4033203125,0.375,0.3251953125,0.287109375,0.2861328125,0.3271484375,0.39453125,0.47265625,0.560546875,0.6240234375,0.6328125,0.5869140625,0.521484375,0.46875,0.41796875,0.34765625,0.2783203125,0.234375,0.224609375,0.2392578125,0.2587890625,0.2958984375,0.3974609375,0.5380859375,0.66015625,0.716796875,0.6982421875,0.634765625,0.5712890625,0.546875,0.5771484375,0.646484375,0.7177734375,0.7529296875,0.740234375,0.7158203125,0.69921875,0.6904296875,0.6845703125,0.67578125,0.6591796875,0.634765625,0.6083984375,0.583984375,0.5634765625,0.546875,0.5322265625,0.517578125,0.5,0.486328125,0.4951171875,0.5185546875,0.5380859375,0.537109375,0.51171875,0.46875,0.4248046875,0.390625,0.373046875,0.3720703125,0.37890625,0.37890625,0.3642578125,0.3515625,0.3662109375,0.4052734375,0.4521484375,0.4853515625,0.490234375,0.46875,0.4423828125,0.4130859375,0.380859375,0.34765625,0.3154296875,0.2861328125,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.263671875,0.2880859375,0.3251953125,0.361328125,0.380859375,0.3798828125,0.3642578125,0.3408203125,0.302734375,0.26171875,0.234375,0.228515625,0.240234375,0.2587890625,0.2900390625,0.3642578125,0.4716796875,0.57421875,0.6396484375,0.654296875,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5322265625,0.546875,0.5791015625,0.626953125,0.677734375,0.716796875,0.740234375,0.7470703125,0.703125,0.5986328125,0.4638671875,0.341796875,0.2724609375,0.2587890625,0.2724609375,0.330078125,0.4140625,0.48046875,0.4970703125,0.4609375,0.39453125,0.3193359375,0.2509765625,0.2314453125,0.287109375,0.400390625,0.51953125,0.6044921875,0.671875,0.7119140625,0.712890625,0.6787109375,0.6376953125,0.6181640625,0.634765625,0.6611328125,0.677734375,0.6630859375,0.607421875,0.525390625,0.4482421875,0.39453125,0.3525390625,0.333984375,0.3583984375,0.4248046875,0.5087890625,0.5751953125,0.6044921875,0.6083984375,0.5546875,0.4580078125,0.2734375,0.275390625,0.3095703125,0.3671875,0.4287109375,0.48046875,0.4892578125,0.451171875,0.3896484375,0.341796875,0.337890625,0.376953125,0.4326171875,0.5,0.5595703125,0.59375,0.5966796875,0.5830078125,0.5703125,0.5517578125,0.5078125,0.4609375,0.4384765625,0.4580078125,0.5087890625,0.5703125,0.630859375,0.681640625,0.708984375,0.7060546875,0.6845703125,0.6689453125,0.673828125,0.6748046875,0.640625,0.5693359375,0.4814453125,0.41015625,0.3759765625,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.451171875,0.52734375,0.587890625,0.6171875,0.6201171875,0.6162109375,0.6220703125,0.6396484375,0.6806640625,0.720703125,0.7275390625,0.69140625,0.6240234375,0.55078125,0.4697265625,0.3671875,0.28125,0.2529296875,0.2900390625,0.3623046875,0.4287109375,0.4931640625,0.5615234375,0.619140625,0.6533203125,0.6640625,0.666015625,0.673828125,0.66796875,0.6064453125,0.5048828125,0.41015625,0.3662109375,0.384765625,0.4482421875,0.51171875,0.5439453125,0.5419921875,0.52734375,0.5263671875,0.5576171875,0.6220703125,0.697265625,0.7734375,0.8125,0.7900390625,0.7158203125,0.630859375,0.5703125,0.5244140625,0.505859375,0.52734375,0.580078125,0.6396484375,0.673828125,0.673828125,0.6572265625,0.6201171875,0.5634765625,0.50390625,0.45703125,0.43359375,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.6171875,0.6845703125,0.71875,0.69140625,0.611328125,0.5185546875,0.4482421875,0.390625,0.361328125,0.376953125,0.435546875,0.5078125,0.55859375,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.5185546875,0.611328125,0.6875,0.7060546875,0.658203125,0.576171875,0.5,0.431640625,0.3876953125,0.3896484375,0.439453125,0.5078125,0.55859375,0.5703125,0.564453125,0.541015625,0.5146484375,0.5068359375,0.52734375,0.5712890625,0.6220703125,0.666015625,0.6728515625,0.6240234375,0.529296875,0.4228515625,0.349609375,0.3251953125,0.31640625,0.3154296875,0.3291015625,0.3564453125,0.388671875,0.4150390625,0.4287109375,0.431640625,0.4130859375,0.388671875,0.3857421875,0.4189453125,0.48046875,0.55078125,0.607421875,0.5966796875,0.517578125,0.4111328125,0.33203125,0.3212890625,0.376953125,0.4384765625,0.455078125,0.4267578125,0.3798828125,0.3505859375,0.3681640625,0.4287109375,0.501953125,0.5712890625,0.6162109375,0.623046875,0.6015625,0.5771484375,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.650390625,0.583984375,0.4892578125,0.4072265625,0.3701171875,0.3837890625,0.4287109375,0.4853515625,0.55859375,0.6298828125,0.677734375,0.6923828125,0.6845703125,0.673828125,0.6533203125,0.59765625,0.5107421875,0.4189453125,0.3505859375,0.322265625,0.3251953125,0.3330078125,0.3349609375,0.3486328125,0.392578125,0.4638671875,0.546875,0.6220703125,0.69140625,0.744140625,0.7607421875,0.740234375,0.7001953125,0.671875,0.673828125,0.673828125,0.6396484375,0.587890625,0.552734375,0.55859375,0.60546875,0.673828125,0.7470703125,0.814453125,0.8388671875,0.7978515625,0.70703125,0.61328125,0.55078125,0.48828125,0.3876953125,0.2822265625,0.2177734375,0.216796875,0.263671875,0.3251953125,0.384765625,0.4296875,0.4453125,0.4287109375,0.396484375,0.375,0.376953125,0.3798828125,0.3583984375,0.322265625,0.2958984375,0.2978515625,0.3291015625,0.376953125,0.419921875,0.427734375,0.40234375,0.369140625,0.353515625,0.375,0.4287109375,0.490234375,0.546875,0.5810546875,0.5888671875,0.576171875,0.5654296875,0.5703125,0.580078125,0.587890625,0.58984375,0.5849609375,0.5771484375,0.5712890625,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.5029296875,0.5302734375,0.52734375,0.5068359375,0.4931640625,0.5078125,0.55078125,0.5908203125,0.5859375,0.53515625,0.4638671875,0.4130859375,0.408203125,0.4482421875,0.4873046875,0.4833984375,0.439453125,0.38671875,0.3623046875,0.384765625,0.4482421875,0.525390625,0.611328125,0.666015625,0.6572265625,0.587890625,0.4990234375,0.4287109375,0.359375,0.2724609375,0.2001953125,0.177734375,0.2099609375,0.26953125,0.3251953125,0.3916015625,0.5068359375,0.6357421875,0.72265625,0.7373046875,0.69140625,0.6220703125,0.5546875,0.5146484375,0.5205078125,0.5693359375,0.6318359375,0.671875,0.673828125,0.6630859375,0.6552734375,0.650390625,0.6455078125,0.6396484375,0.6318359375,0.6220703125,0.6162109375,0.623046875,0.6318359375,0.6259765625,0.5966796875,0.55078125,0.5,0.45703125,0.4462890625,0.466796875,0.49609375,0.5068359375,0.4833984375,0.4287109375,0.375,0.353515625,0.369140625,0.40234375,0.427734375,0.419921875,0.376953125,0.330078125,0.3056640625,0.3154296875,0.3544921875,0.40234375,0.4306640625,0.4287109375,0.41796875,0.404296875,0.38671875,0.3681640625,0.3505859375,0.3369140625,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.333984375,0.3701171875,0.4189453125,0.4541015625,0.45703125,0.42578125,0.376953125,0.3193359375,0.24609375,0.1875,0.173828125,0.2099609375,0.2705078125,0.3251953125,0.3837890625,0.462890625,0.5458984375,0.607421875,0.6328125,0.6318359375,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5654296875,0.5478515625,0.533203125,0.5390625,0.5712890625,0.62109375,0.673828125,0.71484375,0.7099609375,0.6416015625,0.5283203125,0.4130859375,0.3408203125,0.3251953125,0.3388671875,0.39453125,0.4755859375,0.5380859375,0.552734375,0.5146484375,0.4482421875,0.3701171875,0.2890625,0.2451171875,0.2724609375,0.3623046875,0.46875,0.55078125,0.62109375,0.67578125,0.697265625,0.681640625,0.6455078125,0.6201171875,0.6220703125,0.63671875,0.658203125,0.6669921875,0.642578125,0.5849609375,0.5126953125,0.4482421875,0.3837890625,0.3212890625,0.294921875,0.3271484375,0.4052734375,0.490234375,0.55078125,0.5888671875,0.5712890625,0.50390625,0.32421875,0.2998046875,0.3173828125,0.37109375,0.439453125,0.498046875,0.5087890625,0.4677734375,0.4072265625,0.365234375,0.373046875,0.4296875,0.5,0.56640625,0.609375,0.615234375,0.5927734375,0.5673828125,0.5595703125,0.5478515625,0.505859375,0.453125,0.4248046875,0.4384765625,0.4912109375,0.5595703125,0.6279296875,0.6806640625,0.6962890625,0.671875,0.6240234375,0.5869140625,0.5791015625,0.5771484375,0.5595703125,0.525390625,0.484375,0.4501953125,0.431640625,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.5029296875,0.5712890625,0.6142578125,0.6201171875,0.59765625,0.57421875,0.5693359375,0.5791015625,0.615234375,0.6552734375,0.6689453125,0.6416015625,0.5810546875,0.509765625,0.4287109375,0.3271484375,0.24609375,0.2275390625,0.2783203125,0.36328125,0.439453125,0.5107421875,0.578125,0.62109375,0.626953125,0.6064453125,0.583984375,0.5791015625,0.568359375,0.517578125,0.4443359375,0.3896484375,0.3818359375,0.421875,0.4892578125,0.55078125,0.5712890625,0.548828125,0.509765625,0.4873046875,0.5078125,0.5693359375,0.6484375,0.7392578125,0.8017578125,0.796875,0.728515625,0.6357421875,0.5595703125,0.4931640625,0.447265625,0.439453125,0.474609375,0.5302734375,0.5712890625,0.5791015625,0.57421875,0.556640625,0.5244140625,0.48828125,0.458984375,0.4423828125,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5869140625,0.6767578125,0.7373046875,0.7314453125,0.662109375,0.568359375,0.4892578125,0.4228515625,0.3798828125,0.3828125,0.4306640625,0.4990234375,0.5478515625,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.568359375,0.662109375,0.73046875,0.734375,0.6708984375,0.5791015625,0.5,0.4306640625,0.3857421875,0.3857421875,0.4326171875,0.4990234375,0.5478515625,0.5595703125,0.5498046875,0.51171875,0.462890625,0.4365234375,0.451171875,0.5029296875,0.5693359375,0.6328125,0.6650390625,0.6455078125,0.578125,0.4931640625,0.4345703125,0.419921875,0.41796875,0.4189453125,0.421875,0.4267578125,0.4326171875,0.4375,0.439453125,0.4326171875,0.4013671875,0.36328125,0.3505859375,0.3779296875,0.4384765625,0.509765625,0.5673828125,0.568359375,0.5107421875,0.4287109375,0.37109375,0.3720703125,0.4296875,0.490234375,0.501953125,0.4638671875,0.4052734375,0.3681640625,0.3798828125,0.439453125,0.5126953125,0.5791015625,0.619140625,0.6201171875,0.59375,0.56640625,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.564453125,0.5068359375,0.4248046875,0.359375,0.341796875,0.3759765625,0.439453125,0.509765625,0.5771484375,0.623046875,0.630859375,0.611328125,0.5869140625,0.5791015625,0.5732421875,0.5517578125,0.5146484375,0.47265625,0.4384765625,0.421875,0.419921875,0.4150390625,0.392578125,0.373046875,0.380859375,0.4267578125,0.49609375,0.5693359375,0.638671875,0.69140625,0.7060546875,0.677734375,0.626953125,0.5869140625,0.5791015625,0.5712890625,0.5302734375,0.4775390625,0.4462890625,0.4580078125,0.509765625,0.5791015625,0.6572265625,0.740234375,0.7890625,0.76953125,0.6875,0.587890625,0.509765625,0.4306640625,0.3291015625,0.2451171875,0.220703125,0.263671875,0.34375,0.419921875,0.48828125,0.5390625,0.5537109375,0.525390625,0.4755859375,0.4375,0.4296875,0.421875,0.3837890625,0.3330078125,0.302734375,0.314453125,0.36328125,0.4296875,0.486328125,0.4970703125,0.4599609375,0.404296875,0.3681640625,0.380859375,0.439453125,0.5107421875,0.5751953125,0.61328125,0.615234375,0.58984375,0.564453125,0.5595703125,0.560546875,0.5625,0.5625,0.5615234375,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.548828125,0.5625,0.529296875,0.4755859375,0.4404296875,0.4521484375,0.509765625,0.56640625,0.57421875,0.53125,0.4677734375,0.4248046875,0.4326171875,0.4892578125,0.5458984375,0.5546875,0.513671875,0.4541015625,0.4169921875,0.4296875,0.4892578125,0.568359375,0.6552734375,0.708984375,0.6953125,0.6181640625,0.5185546875,0.439453125,0.361328125,0.2685546875,0.2001953125,0.1953125,0.255859375,0.34375,0.419921875,0.5,0.609375,0.708984375,0.75,0.71875,0.6455078125,0.5693359375,0.5,0.4501953125,0.439453125,0.4736328125,0.529296875,0.5703125,0.5791015625,0.5771484375,0.576171875,0.5751953125,0.5732421875,0.572265625,0.5712890625,0.5693359375,0.5751953125,0.60546875,0.640625,0.65234375,0.625,0.5673828125,0.5,0.44140625,0.4248046875,0.451171875,0.494140625,0.5185546875,0.5,0.439453125,0.380859375,0.3681640625,0.404296875,0.4599609375,0.4970703125,0.486328125,0.4296875,0.36328125,0.3154296875,0.306640625,0.3388671875,0.3916015625,0.431640625,0.439453125,0.4375,0.435546875,0.431640625,0.427734375,0.423828125,0.421875,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.4296875,0.470703125,0.5234375,0.5556640625,0.544921875,0.49609375,0.4296875,0.353515625,0.2626953125,0.1962890625,0.1943359375,0.255859375,0.34375,0.419921875,0.490234375,0.5595703125,0.6064453125,0.6171875,0.599609375,0.5771484375,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5498046875,0.5126953125,0.466796875,0.4423828125,0.4599609375,0.5126953125,0.5791015625,0.6416015625,0.6728515625,0.6494140625,0.5791015625,0.4921875,0.4326171875,0.419921875,0.431640625,0.4814453125,0.55078125,0.599609375,0.6015625,0.5576171875,0.4892578125,0.41015625,0.318359375,0.255859375,0.26171875,0.3330078125,0.4296875,0.509765625,0.580078125,0.638671875,0.6640625,0.6494140625,0.609375,0.576171875,0.5693359375,0.5791015625,0.611328125,0.6455078125,0.6533203125,0.6220703125,0.5595703125,0.4892578125,0.412109375,0.32421875,0.2646484375,0.2705078125,0.33984375,0.4326171875,0.509765625,0.5654296875,0.5712890625,0.5263671875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.466796875,0.431640625,0.4404296875,0.490234375,0.5595703125,0.619140625,0.6328125,0.5966796875,0.5419921875,0.505859375,0.5185546875,0.5791015625,0.6455078125,0.681640625,0.6630859375,0.595703125,0.51171875,0.453125,0.439453125,0.4296875,0.3896484375,0.3369140625,0.3076171875,0.3203125,0.37109375,0.439453125,0.5078125,0.556640625,0.5654296875,0.533203125,0.478515625,0.4384765625,0.4296875,0.4345703125,0.4541015625,0.486328125,0.5234375,0.552734375,0.568359375,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.556640625,0.5419921875,0.515625,0.4833984375,0.45703125,0.4423828125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.43359375,0.4091796875,0.38671875,0.392578125,0.43359375,0.5,0.5693359375,0.6318359375,0.6630859375,0.640625,0.572265625,0.48828125,0.4306640625,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.412109375,0.3271484375,0.2783203125,0.2998046875,0.3837890625,0.4873046875,0.5693359375,0.6357421875,0.6708984375,0.65234375,0.5830078125,0.49609375,0.4345703125,0.419921875,0.41015625,0.3779296875,0.3447265625,0.3388671875,0.373046875,0.4375,0.509765625,0.5673828125,0.5693359375,0.51171875,0.4287109375,0.3681640625,0.365234375,0.419921875,0.4970703125,0.5908203125,0.6611328125,0.66796875,0.6083984375,0.5185546875,0.439453125,0.3701171875,0.31640625,0.3017578125,0.3310546875,0.384765625,0.427734375,0.439453125,0.4443359375,0.4599609375,0.48828125,0.5205078125,0.548828125,0.564453125,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.5869140625,0.677734375,0.7392578125,0.7353515625,0.6650390625,0.5693359375,0.4892578125,0.4189453125,0.3603515625,0.3359375,0.3525390625,0.3955078125,0.4306640625,0.439453125,0.4306640625,0.396484375,0.3564453125,0.341796875,0.369140625,0.4287109375,0.5,0.5791015625,0.673828125,0.7412109375,0.7431640625,0.6787109375,0.5869140625,0.509765625,0.439453125,0.37890625,0.3486328125,0.359375,0.396484375,0.4296875,0.439453125,0.4306640625,0.3896484375,0.333984375,0.30078125,0.310546875,0.3603515625,0.4296875,0.5029296875,0.572265625,0.615234375,0.6201171875,0.5947265625,0.568359375,0.5595703125,0.5576171875,0.5576171875,0.55859375,0.5595703125,0.560546875,0.560546875,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5498046875,0.568359375,0.5458984375,0.5068359375,0.486328125,0.5078125,0.5693359375,0.6298828125,0.642578125,0.60546875,0.548828125,0.509765625,0.5205078125,0.5791015625,0.6435546875,0.67578125,0.654296875,0.583984375,0.4990234375,0.44140625,0.4296875,0.4306640625,0.4296875,0.4267578125,0.4228515625,0.419921875,0.4189453125,0.419921875,0.416015625,0.396484375,0.3818359375,0.3935546875,0.4404296875,0.5087890625,0.5791015625,0.642578125,0.6748046875,0.654296875,0.587890625,0.505859375,0.451171875,0.439453125,0.4443359375,0.458984375,0.484375,0.5146484375,0.5400390625,0.5546875,0.5595703125,0.548828125,0.494140625,0.4150390625,0.3505859375,0.3330078125,0.3662109375,0.4296875,0.49609375,0.544921875,0.5556640625,0.5234375,0.470703125,0.4296875,0.419921875,0.4111328125,0.373046875,0.3271484375,0.3037109375,0.3203125,0.373046875,0.439453125,0.517578125,0.6142578125,0.689453125,0.7041015625,0.6513671875,0.56640625,0.4892578125,0.4140625,0.33203125,0.2861328125,0.30859375,0.390625,0.4912109375,0.5693359375,0.63671875,0.6884765625,0.7041015625,0.6787109375,0.6298828125,0.58984375,0.5791015625,0.568359375,0.5263671875,0.4736328125,0.4443359375,0.458984375,0.5107421875,0.5791015625,0.63671875,0.6455078125,0.6025390625,0.5400390625,0.4990234375,0.509765625,0.5693359375,0.6357421875,0.6728515625,0.65625,0.5888671875,0.5048828125,0.4443359375,0.4296875,0.4287109375,0.4287109375,0.4306640625,0.43359375,0.4375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5498046875,0.5595703125,0.51953125,0.458984375,0.4189453125,0.4296875,0.4892578125,0.5498046875,0.564453125,0.529296875,0.474609375,0.4384765625,0.451171875,0.509765625,0.5673828125,0.5771484375,0.5341796875,0.470703125,0.4267578125,0.43359375,0.4892578125,0.5673828125,0.6669921875,0.748046875,0.76953125,0.7236328125,0.6435546875,0.5693359375,0.4931640625,0.400390625,0.333984375,0.330078125,0.392578125,0.4814453125,0.5595703125,0.6337890625,0.708984375,0.7431640625,0.7060546875,0.609375,0.5009765625,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.44140625,0.4375,0.4912109375,0.5673828125,0.62109375,0.6181640625,0.5595703125,0.5,0.4912109375,0.5361328125,0.6025390625,0.646484375,0.638671875,0.5791015625,0.5087890625,0.4541015625,0.4375,0.46484375,0.5166015625,0.5576171875,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5751953125,0.5732421875,0.5712890625,0.5693359375,0.5673828125,0.56640625,0.5673828125,0.5703125,0.57421875,0.5771484375,0.5791015625,0.5908203125,0.6328125,0.68359375,0.7109375,0.6943359375,0.6396484375,0.5693359375,0.4892578125,0.3955078125,0.3271484375,0.3251953125,0.3896484375,0.4814453125,0.5595703125,0.625,0.6611328125,0.6474609375,0.5859375,0.5078125,0.4521484375,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.408203125,0.3662109375,0.3154296875,0.2880859375,0.3046875,0.359375,0.4296875,0.5029296875,0.572265625,0.6181640625,0.6259765625,0.6064453125,0.583984375,0.5791015625,0.5888671875,0.6220703125,0.6591796875,0.669921875,0.6396484375,0.5791015625,0.509765625,0.4306640625,0.3359375,0.2646484375,0.2587890625,0.3193359375,0.41015625,0.4892578125,0.5576171875,0.6025390625,0.6015625,0.5537109375,0.484375,0.4326171875,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.431640625,0.33984375,0.2734375,0.271484375,0.333984375,0.423828125,0.5,0.5556640625,0.564453125,0.5234375,0.5302734375,0.47265625,0.462890625,0.5029296875,0.5703125,0.6318359375,0.6552734375,0.638671875,0.60546875,0.587890625,0.611328125,0.673828125,0.7373046875,0.759765625,0.71875,0.6240234375,0.515625,0.4443359375,0.4287109375,0.4208984375,0.384765625,0.3388671875,0.3134765625,0.32421875,0.369140625,0.4287109375,0.486328125,0.5185546875,0.5107421875,0.466796875,0.4111328125,0.376953125,0.376953125,0.39453125,0.4375,0.501953125,0.56640625,0.611328125,0.6279296875,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.56640625,0.5498046875,0.5185546875,0.48046875,0.44921875,0.4326171875,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4267578125,0.419921875,0.4248046875,0.4541015625,0.5068359375,0.5673828125,0.6220703125,0.6630859375,0.658203125,0.59375,0.4892578125,0.3876953125,0.3291015625,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.3720703125,0.298828125,0.271484375,0.3173828125,0.4228515625,0.5380859375,0.6220703125,0.685546875,0.708984375,0.6630859375,0.5595703125,0.4375,0.3525390625,0.3251953125,0.310546875,0.2890625,0.2841796875,0.3173828125,0.388671875,0.474609375,0.55078125,0.6083984375,0.6044921875,0.529296875,0.4169921875,0.3232421875,0.291015625,0.3251953125,0.3876953125,0.4794921875,0.5654296875,0.6015625,0.5732421875,0.50390625,0.4287109375,0.357421875,0.2998046875,0.2783203125,0.3046875,0.359375,0.4091796875,0.4287109375,0.4423828125,0.466796875,0.50390625,0.546875,0.583984375,0.6083984375,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.6181640625,0.6923828125,0.734375,0.7109375,0.62890625,0.5283203125,0.4482421875,0.3779296875,0.3232421875,0.3056640625,0.3310546875,0.3798828125,0.419921875,0.4287109375,0.4208984375,0.3876953125,0.349609375,0.337890625,0.3671875,0.427734375,0.5,0.5791015625,0.673828125,0.744140625,0.7529296875,0.7001953125,0.6201171875,0.55078125,0.4873046875,0.421875,0.375,0.3642578125,0.384765625,0.4130859375,0.4287109375,0.427734375,0.3876953125,0.32421875,0.2763671875,0.2705078125,0.310546875,0.376953125,0.453125,0.53515625,0.5986328125,0.6240234375,0.611328125,0.5859375,0.5703125,0.5615234375,0.5595703125,0.5654296875,0.57421875,0.580078125,0.5791015625,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.501953125,0.525390625,0.5224609375,0.51171875,0.5185546875,0.556640625,0.6220703125,0.6845703125,0.70703125,0.6865234375,0.6435546875,0.61328125,0.6220703125,0.673828125,0.724609375,0.7275390625,0.6650390625,0.556640625,0.4462890625,0.3828125,0.376953125,0.384765625,0.3798828125,0.3623046875,0.33984375,0.3232421875,0.318359375,0.3251953125,0.3369140625,0.3564453125,0.3984375,0.46484375,0.5439453125,0.6171875,0.673828125,0.7158203125,0.7177734375,0.6640625,0.57421875,0.4833984375,0.431640625,0.4287109375,0.44140625,0.4599609375,0.4853515625,0.513671875,0.5390625,0.5576171875,0.5703125,0.568359375,0.5234375,0.4443359375,0.3671875,0.326171875,0.333984375,0.376953125,0.42578125,0.45703125,0.4541015625,0.4189453125,0.3701171875,0.333984375,0.3251953125,0.3212890625,0.3037109375,0.2890625,0.294921875,0.3271484375,0.376953125,0.4287109375,0.4873046875,0.5625,0.6220703125,0.6318359375,0.5859375,0.513671875,0.4482421875,0.384765625,0.33203125,0.3212890625,0.3720703125,0.4658203125,0.5595703125,0.6220703125,0.673828125,0.7236328125,0.751953125,0.7490234375,0.720703125,0.689453125,0.673828125,0.654296875,0.611328125,0.5634765625,0.5419921875,0.5615234375,0.6123046875,0.673828125,0.7216796875,0.71875,0.6650390625,0.5947265625,0.55078125,0.5615234375,0.6220703125,0.6875,0.7158203125,0.6826171875,0.591796875,0.482421875,0.4033203125,0.376953125,0.3681640625,0.3671875,0.376953125,0.39453125,0.4140625,0.4267578125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.5078125,0.5185546875,0.478515625,0.41796875,0.376953125,0.3876953125,0.4482421875,0.51171875,0.541015625,0.53125,0.501953125,0.4833984375,0.4990234375,0.55078125,0.6015625,0.6044921875,0.5546875,0.4794921875,0.419921875,0.4091796875,0.4482421875,0.5087890625,0.5966796875,0.6826171875,0.728515625,0.7197265625,0.673828125,0.6220703125,0.5625,0.4833984375,0.4169921875,0.3984375,0.4365234375,0.5048828125,0.5703125,0.6328125,0.68359375,0.685546875,0.62109375,0.509765625,0.3994140625,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.44140625,0.439453125,0.4951171875,0.57421875,0.6298828125,0.6279296875,0.5703125,0.5126953125,0.5146484375,0.578125,0.666015625,0.728515625,0.73046875,0.673828125,0.6005859375,0.5361328125,0.50390625,0.515625,0.5595703125,0.6025390625,0.6220703125,0.6328125,0.646484375,0.65625,0.65625,0.646484375,0.6328125,0.6220703125,0.611328125,0.6044921875,0.60546875,0.619140625,0.640625,0.66015625,0.673828125,0.6923828125,0.7353515625,0.779296875,0.791015625,0.7587890625,0.6943359375,0.6220703125,0.5419921875,0.4482421875,0.376953125,0.3681640625,0.4208984375,0.501953125,0.5703125,0.6259765625,0.654296875,0.6337890625,0.5703125,0.4931640625,0.4404296875,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.306640625,0.263671875,0.2197265625,0.2080078125,0.240234375,0.3046875,0.376953125,0.4521484375,0.53515625,0.6064453125,0.650390625,0.6640625,0.666015625,0.673828125,0.689453125,0.7177734375,0.73828125,0.7275390625,0.6806640625,0.615234375,0.55078125,0.4794921875,0.3798828125,0.2919921875,0.2607421875,0.296875,0.3720703125,0.4482421875,0.5166015625,0.5595703125,0.5537109375,0.4951171875,0.4130859375,0.3486328125,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.4833984375,0.40234375,0.341796875,0.33203125,0.3759765625,0.4423828125,0.5,0.5390625,0.5341796875,0.490234375,0.5576171875,0.4716796875,0.4384765625,0.46484375,0.5302734375,0.5947265625,0.630859375,0.6376953125,0.6328125,0.638671875,0.67578125,0.740234375,0.8037109375,0.8232421875,0.775390625,0.673828125,0.5595703125,0.4853515625,0.46875,0.462890625,0.4365234375,0.40234375,0.3837890625,0.3916015625,0.4248046875,0.46875,0.5068359375,0.51171875,0.4775390625,0.4189453125,0.3671875,0.3466796875,0.3642578125,0.3994140625,0.466796875,0.5517578125,0.6240234375,0.66015625,0.658203125,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5283203125,0.521484375,0.5078125,0.4912109375,0.4775390625,0.470703125,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.470703125,0.4794921875,0.501953125,0.5380859375,0.5791015625,0.6123046875,0.634765625,0.640625,0.59375,0.494140625,0.375,0.2822265625,0.2451171875,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.3203125,0.2548828125,0.2421875,0.3056640625,0.4267578125,0.5498046875,0.634765625,0.69921875,0.7216796875,0.6708984375,0.5517578125,0.41015625,0.3037109375,0.2587890625,0.2314453125,0.2119140625,0.2314453125,0.3037109375,0.4130859375,0.5234375,0.6044921875,0.6640625,0.6630859375,0.5849609375,0.455078125,0.328125,0.2587890625,0.2587890625,0.2919921875,0.373046875,0.4775390625,0.5546875,0.57421875,0.537109375,0.46875,0.3955078125,0.328125,0.294921875,0.314453125,0.3720703125,0.43359375,0.46875,0.4951171875,0.51953125,0.541015625,0.5625,0.5849609375,0.609375,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.6533203125,0.703125,0.7177734375,0.673828125,0.580078125,0.4755859375,0.39453125,0.326171875,0.283203125,0.2861328125,0.3369140625,0.40625,0.45703125,0.46875,0.4599609375,0.421875,0.375,0.3525390625,0.373046875,0.4287109375,0.5,0.578125,0.669921875,0.740234375,0.7568359375,0.71875,0.65625,0.6044921875,0.5537109375,0.4892578125,0.4306640625,0.40234375,0.4111328125,0.4404296875,0.46875,0.482421875,0.447265625,0.375,0.3056640625,0.2763671875,0.30078125,0.3642578125,0.44140625,0.529296875,0.599609375,0.6240234375,0.6025390625,0.5615234375,0.5302734375,0.5078125,0.50390625,0.5185546875,0.541015625,0.5556640625,0.5517578125,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.4345703125,0.455078125,0.4638671875,0.4775390625,0.5107421875,0.5654296875,0.634765625,0.701171875,0.7392578125,0.7421875,0.720703125,0.69921875,0.703125,0.740234375,0.771484375,0.744140625,0.6484375,0.5185546875,0.40625,0.353515625,0.3642578125,0.3837890625,0.375,0.3369140625,0.2861328125,0.248046875,0.2392578125,0.2587890625,0.29296875,0.359375,0.4580078125,0.56640625,0.6572265625,0.7138671875,0.740234375,0.7490234375,0.7138671875,0.6376953125,0.546875,0.4775390625,0.4521484375,0.46875,0.4921875,0.50390625,0.5029296875,0.49609375,0.4951171875,0.5068359375,0.5302734375,0.548828125,0.537109375,0.4912109375,0.427734375,0.375,0.353515625,0.3642578125,0.3798828125,0.380859375,0.361328125,0.3251953125,0.2880859375,0.263671875,0.2587890625,0.2607421875,0.275390625,0.30859375,0.3564453125,0.40625,0.4462890625,0.46875,0.4921875,0.5234375,0.5439453125,0.53515625,0.49609375,0.443359375,0.39453125,0.353515625,0.337890625,0.369140625,0.4443359375,0.53515625,0.6044921875,0.634765625,0.6591796875,0.701171875,0.748046875,0.779296875,0.783203125,0.765625,0.740234375,0.7080078125,0.662109375,0.6240234375,0.6162109375,0.6435546875,0.6923828125,0.740234375,0.771484375,0.75,0.681640625,0.6044921875,0.560546875,0.57421875,0.634765625,0.7021484375,0.7373046875,0.708984375,0.619140625,0.5,0.40625,0.3642578125,0.3408203125,0.333984375,0.3525390625,0.3916015625,0.4345703125,0.462890625,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.4541015625,0.46484375,0.4248046875,0.3642578125,0.32421875,0.3349609375,0.39453125,0.462890625,0.5146484375,0.541015625,0.546875,0.548828125,0.5654296875,0.6044921875,0.6416015625,0.6376953125,0.5849609375,0.501953125,0.4248046875,0.38671875,0.39453125,0.4208984375,0.4755859375,0.546875,0.6103515625,0.646484375,0.650390625,0.634765625,0.607421875,0.5546875,0.494140625,0.455078125,0.4541015625,0.4853515625,0.5302734375,0.57421875,0.6005859375,0.58203125,0.5107421875,0.408203125,0.3154296875,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4404296875,0.43359375,0.48046875,0.548828125,0.595703125,0.5888671875,0.5302734375,0.474609375,0.490234375,0.5771484375,0.693359375,0.7802734375,0.794921875,0.740234375,0.6640625,0.583984375,0.52734375,0.5185546875,0.5537109375,0.6015625,0.634765625,0.6640625,0.69921875,0.7236328125,0.7236328125,0.69921875,0.6640625,0.634765625,0.6083984375,0.5859375,0.5849609375,0.61328125,0.6611328125,0.7080078125,0.740234375,0.7734375,0.8212890625,0.8564453125,0.84765625,0.791015625,0.7109375,0.634765625,0.556640625,0.46484375,0.39453125,0.3779296875,0.416015625,0.478515625,0.5302734375,0.572265625,0.5986328125,0.5927734375,0.5576171875,0.5107421875,0.4765625,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.2255859375,0.177734375,0.142578125,0.1513671875,0.2080078125,0.2880859375,0.3642578125,0.4384765625,0.521484375,0.599609375,0.6572265625,0.6923828125,0.7158203125,0.740234375,0.7685546875,0.7978515625,0.806640625,0.7783203125,0.720703125,0.6552734375,0.6044921875,0.5458984375,0.4453125,0.3369140625,0.26953125,0.26953125,0.3232421875,0.39453125,0.46484375,0.515625,0.5185546875,0.4638671875,0.375,0.2978515625,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5556640625,0.498046875,0.4521484375,0.435546875,0.4501953125,0.4775390625,0.5,0.5078125,0.48046875,0.4306640625,0.53515625,0.43359375,0.3857421875,0.4052734375,0.46875,0.53515625,0.5791015625,0.599609375,0.6103515625,0.6298828125,0.673828125,0.740234375,0.8046875,0.83203125,0.7978515625,0.7119140625,0.6123046875,0.544921875,0.5302734375,0.5263671875,0.5107421875,0.4912109375,0.48046875,0.4853515625,0.50390625,0.5302734375,0.5458984375,0.5224609375,0.4638671875,0.3974609375,0.35546875,0.357421875,0.39453125,0.44921875,0.53515625,0.6240234375,0.6796875,0.6845703125,0.650390625,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.470703125,0.4775390625,0.4912109375,0.5078125,0.521484375,0.5283203125,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5341796875,0.5546875,0.5849609375,0.61328125,0.6259765625,0.62109375,0.6044921875,0.572265625,0.4892578125,0.375,0.2724609375,0.2177734375,0.220703125,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.2900390625,0.224609375,0.2119140625,0.275390625,0.3955078125,0.51953125,0.6044921875,0.6728515625,0.708984375,0.6796875,0.5771484375,0.4375,0.3212890625,0.2587890625,0.2138671875,0.1845703125,0.20703125,0.294921875,0.42578125,0.5498046875,0.634765625,0.6982421875,0.716796875,0.66015625,0.5380859375,0.3974609375,0.2958984375,0.2587890625,0.2568359375,0.3173828125,0.427734375,0.5380859375,0.599609375,0.5908203125,0.5302734375,0.4541015625,0.375,0.328125,0.3388671875,0.4013671875,0.4755859375,0.5302734375,0.5693359375,0.5849609375,0.576171875,0.5576171875,0.548828125,0.5654296875,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.6640625,0.6923828125,0.6904296875,0.6376953125,0.544921875,0.443359375,0.3642578125,0.2978515625,0.265625,0.2900390625,0.36328125,0.4541015625,0.515625,0.5302734375,0.51953125,0.4736328125,0.4140625,0.375,0.3818359375,0.4306640625,0.5,0.576171875,0.66015625,0.7236328125,0.740234375,0.7119140625,0.6669921875,0.634765625,0.6005859375,0.5419921875,0.48046875,0.4443359375,0.44921875,0.484375,0.5302734375,0.560546875,0.5361328125,0.4609375,0.375,0.32421875,0.333984375,0.39453125,0.47265625,0.560546875,0.6240234375,0.6328125,0.5869140625,0.521484375,0.46875,0.431640625,0.4248046875,0.4501953125,0.48828125,0.513671875,0.5068359375,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.3857421875,0.392578125,0.3974609375,0.4189453125,0.466796875,0.533203125,0.6044921875,0.673828125,0.7275390625,0.7509765625,0.7451171875,0.7275390625,0.7216796875,0.740234375,0.7509765625,0.7021484375,0.5966796875,0.474609375,0.3857421875,0.3623046875,0.39453125,0.4287109375,0.4189453125,0.36328125,0.2900390625,0.234375,0.224609375,0.2587890625,0.31640625,0.419921875,0.5498046875,0.6650390625,0.7353515625,0.75390625,0.740234375,0.7099609375,0.64453125,0.560546875,0.494140625,0.4697265625,0.48828125,0.5302734375,0.56640625,0.5654296875,0.5263671875,0.47265625,0.43359375,0.4326171875,0.46875,0.5146484375,0.548828125,0.5546875,0.5244140625,0.4697265625,0.4208984375,0.39453125,0.373046875,0.3427734375,0.30859375,0.28125,0.2646484375,0.259765625,0.2587890625,0.267578125,0.3115234375,0.38671875,0.4658203125,0.5224609375,0.5419921875,0.5302734375,0.51171875,0.4921875,0.4716796875,0.447265625,0.4189453125,0.390625,0.3642578125,0.3466796875,0.3671875,0.4306640625,0.513671875,0.5830078125,0.6142578125,0.6044921875,0.595703125,0.625,0.685546875,0.748046875,0.7841796875,0.7783203125,0.740234375,0.6923828125,0.6435546875,0.6162109375,0.6240234375,0.662109375,0.7080078125,0.740234375,0.7529296875,0.7138671875,0.634765625,0.5576171875,0.521484375,0.5419921875,0.6044921875,0.67578125,0.7294921875,0.7294921875,0.662109375,0.5537109375,0.453125,0.39453125,0.353515625,0.3369140625,0.3583984375,0.4140625,0.4775390625,0.5205078125,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.423828125,0.4345703125,0.39453125,0.333984375,0.2939453125,0.3046875,0.3642578125,0.4365234375,0.5068359375,0.560546875,0.5908203125,0.6025390625,0.61328125,0.634765625,0.6572265625,0.654296875,0.61328125,0.5380859375,0.4541015625,0.392578125,0.3642578125,0.3486328125,0.3525390625,0.388671875,0.4521484375,0.5234375,0.578125,0.6044921875,0.6162109375,0.5986328125,0.5517578125,0.4970703125,0.45703125,0.44921875,0.46875,0.4931640625,0.5029296875,0.48046875,0.4248046875,0.353515625,0.29296875,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.439453125,0.4248046875,0.4580078125,0.5107421875,0.5439453125,0.529296875,0.46875,0.416015625,0.4375,0.5380859375,0.6708984375,0.771484375,0.7939453125,0.740234375,0.6611328125,0.5654296875,0.48828125,0.4638671875,0.4951171875,0.5537109375,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.7568359375,0.71484375,0.6552734375,0.6044921875,0.5576171875,0.5146484375,0.501953125,0.5380859375,0.6103515625,0.6865234375,0.740234375,0.791015625,0.849609375,0.880859375,0.8564453125,0.779296875,0.68359375,0.6044921875,0.5283203125,0.443359375,0.380859375,0.3642578125,0.392578125,0.4365234375,0.46875,0.49609375,0.5224609375,0.541015625,0.5458984375,0.5400390625,0.5322265625,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.2080078125,0.1494140625,0.1181640625,0.142578125,0.2197265625,0.3154296875,0.39453125,0.4658203125,0.5341796875,0.5908203125,0.6328125,0.6640625,0.6982421875,0.740234375,0.78515625,0.8212890625,0.826171875,0.7900390625,0.7275390625,0.6689453125,0.634765625,0.5927734375,0.4990234375,0.3798828125,0.2900390625,0.26171875,0.296875,0.3642578125,0.4375,0.50390625,0.52734375,0.48828125,0.4033203125,0.3154296875,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6083984375,0.583984375,0.5634765625,0.546875,0.5322265625,0.517578125,0.5,0.470703125,0.416015625,0.3583984375,0.478515625,0.3837890625,0.341796875,0.365234375,0.4287109375,0.494140625,0.53515625,0.548828125,0.552734375,0.5673828125,0.607421875,0.673828125,0.7412109375,0.7802734375,0.7705078125,0.712890625,0.63671875,0.58203125,0.5703125,0.568359375,0.5625,0.5546875,0.55078125,0.552734375,0.5595703125,0.5703125,0.568359375,0.525390625,0.455078125,0.392578125,0.3681640625,0.392578125,0.4482421875,0.5185546875,0.611328125,0.69140625,0.71875,0.6845703125,0.6171875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.4326171875,0.44921875,0.48046875,0.5185546875,0.5498046875,0.56640625,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5771484375,0.6044921875,0.6376953125,0.654296875,0.640625,0.6015625,0.55078125,0.48828125,0.3876953125,0.2822265625,0.2177734375,0.216796875,0.263671875,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.3017578125,0.228515625,0.201171875,0.2470703125,0.3525390625,0.4677734375,0.55078125,0.6240234375,0.6845703125,0.693359375,0.6298828125,0.5146484375,0.400390625,0.3251953125,0.2626953125,0.2119140625,0.2138671875,0.287109375,0.412109375,0.5361328125,0.6220703125,0.69140625,0.7373046875,0.72265625,0.6357421875,0.5068359375,0.3916015625,0.3251953125,0.2919921875,0.326171875,0.4248046875,0.541015625,0.6201171875,0.626953125,0.5703125,0.4921875,0.4033203125,0.3447265625,0.3486328125,0.4140625,0.5,0.5703125,0.62109375,0.6279296875,0.5888671875,0.5322265625,0.4931640625,0.5,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.6357421875,0.6552734375,0.65625,0.6181640625,0.5419921875,0.4541015625,0.376953125,0.3125,0.283203125,0.3125,0.3935546875,0.490234375,0.5556640625,0.5703125,0.55859375,0.5078125,0.439453125,0.3896484375,0.3876953125,0.431640625,0.5,0.5732421875,0.646484375,0.6953125,0.701171875,0.673828125,0.638671875,0.6220703125,0.6015625,0.552734375,0.4931640625,0.4580078125,0.4658203125,0.509765625,0.5703125,0.6171875,0.60546875,0.5361328125,0.447265625,0.3876953125,0.3896484375,0.4482421875,0.525390625,0.611328125,0.666015625,0.6572265625,0.587890625,0.4990234375,0.4287109375,0.3779296875,0.369140625,0.4033203125,0.455078125,0.4892578125,0.48046875,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.3818359375,0.3681640625,0.35546875,0.3671875,0.4111328125,0.478515625,0.55078125,0.6220703125,0.68359375,0.716796875,0.7138671875,0.689453125,0.669921875,0.673828125,0.669921875,0.6142578125,0.5205078125,0.4296875,0.3837890625,0.39453125,0.4482421875,0.49609375,0.490234375,0.4287109375,0.3447265625,0.283203125,0.27734375,0.3251953125,0.400390625,0.517578125,0.64453125,0.7314453125,0.75390625,0.7236328125,0.673828125,0.61328125,0.52734375,0.44921875,0.41796875,0.443359375,0.505859375,0.5703125,0.6181640625,0.6103515625,0.5439453125,0.455078125,0.388671875,0.380859375,0.4287109375,0.49609375,0.5732421875,0.626953125,0.626953125,0.576171875,0.505859375,0.4482421875,0.3955078125,0.34375,0.306640625,0.2958984375,0.306640625,0.3212890625,0.3251953125,0.3388671875,0.3974609375,0.490234375,0.576171875,0.62109375,0.6142578125,0.5703125,0.517578125,0.462890625,0.41796875,0.3935546875,0.3857421875,0.384765625,0.376953125,0.3779296875,0.421875,0.49609375,0.568359375,0.60546875,0.595703125,0.55078125,0.5126953125,0.5263671875,0.58984375,0.669921875,0.7236328125,0.72265625,0.673828125,0.6123046875,0.5615234375,0.5419921875,0.5634765625,0.611328125,0.654296875,0.673828125,0.6708984375,0.6220703125,0.54296875,0.4755859375,0.4541015625,0.4853515625,0.55078125,0.626953125,0.7021484375,0.73828125,0.70703125,0.619140625,0.51953125,0.4482421875,0.390625,0.361328125,0.376953125,0.435546875,0.5078125,0.55859375,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.4375,0.4482421875,0.4072265625,0.3466796875,0.306640625,0.3173828125,0.376953125,0.451171875,0.52734375,0.587890625,0.6171875,0.6201171875,0.6162109375,0.6220703125,0.6328125,0.640625,0.6259765625,0.5791015625,0.5068359375,0.43359375,0.376953125,0.3251953125,0.279296875,0.2705078125,0.31640625,0.40234375,0.490234375,0.55078125,0.5966796875,0.61328125,0.5869140625,0.529296875,0.4658203125,0.4287109375,0.4287109375,0.4384765625,0.439453125,0.42578125,0.3984375,0.3662109375,0.33984375,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.4384765625,0.4189453125,0.443359375,0.4853515625,0.509765625,0.490234375,0.4287109375,0.375,0.3935546875,0.48828125,0.6142578125,0.708984375,0.7275390625,0.673828125,0.591796875,0.4892578125,0.4033203125,0.375,0.4130859375,0.484375,0.55078125,0.619140625,0.7001953125,0.7568359375,0.7568359375,0.7001953125,0.619140625,0.55078125,0.4853515625,0.419921875,0.390625,0.4228515625,0.5068359375,0.6025390625,0.673828125,0.740234375,0.8115234375,0.849609375,0.8212890625,0.7353515625,0.6328125,0.55078125,0.4775390625,0.404296875,0.35546875,0.349609375,0.376953125,0.412109375,0.4287109375,0.4423828125,0.466796875,0.5,0.533203125,0.556640625,0.568359375,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.2587890625,0.1875,0.1494140625,0.177734375,0.263671875,0.3662109375,0.4482421875,0.5146484375,0.55859375,0.576171875,0.580078125,0.587890625,0.6181640625,0.673828125,0.7333984375,0.7783203125,0.78515625,0.75,0.69140625,0.6416015625,0.6220703125,0.595703125,0.5166015625,0.4072265625,0.31640625,0.283203125,0.3115234375,0.376953125,0.4541015625,0.5361328125,0.583984375,0.5654296875,0.4892578125,0.396484375,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.6162109375,0.623046875,0.6318359375,0.6259765625,0.5966796875,0.55078125,0.5,0.4404296875,0.361328125,0.2978515625,0.4228515625,0.35546875,0.337890625,0.373046875,0.439453125,0.5029296875,0.5302734375,0.521484375,0.498046875,0.48828125,0.5166015625,0.5791015625,0.6484375,0.6982421875,0.70703125,0.671875,0.6142578125,0.5693359375,0.5595703125,0.55859375,0.55859375,0.556640625,0.556640625,0.556640625,0.5576171875,0.5595703125,0.5498046875,0.501953125,0.4345703125,0.3857421875,0.3818359375,0.4228515625,0.4892578125,0.568359375,0.662109375,0.7314453125,0.7373046875,0.6767578125,0.5869140625,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.4423828125,0.45703125,0.4833984375,0.515625,0.5419921875,0.556640625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5673828125,0.6015625,0.6416015625,0.6572265625,0.6328125,0.5771484375,0.509765625,0.4306640625,0.3291015625,0.2451171875,0.220703125,0.263671875,0.34375,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.3515625,0.267578125,0.21875,0.2392578125,0.32421875,0.427734375,0.509765625,0.5869140625,0.6689453125,0.71484375,0.6904296875,0.603515625,0.5,0.419921875,0.3447265625,0.2705078125,0.2373046875,0.2763671875,0.375,0.486328125,0.5693359375,0.6455078125,0.71875,0.75,0.708984375,0.609375,0.5,0.419921875,0.3662109375,0.375,0.447265625,0.54296875,0.6123046875,0.6162109375,0.5595703125,0.4794921875,0.38671875,0.3212890625,0.322265625,0.388671875,0.4814453125,0.5595703125,0.6162109375,0.62109375,0.5703125,0.498046875,0.4482421875,0.4521484375,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5771484375,0.603515625,0.6259765625,0.619140625,0.5732421875,0.5029296875,0.4296875,0.36328125,0.326171875,0.341796875,0.40625,0.4892578125,0.5458984375,0.5595703125,0.5478515625,0.4990234375,0.4326171875,0.3857421875,0.3857421875,0.4306640625,0.5,0.5712890625,0.6328125,0.6630859375,0.65234375,0.61328125,0.5791015625,0.5693359375,0.5576171875,0.5146484375,0.4599609375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.6162109375,0.6171875,0.560546875,0.482421875,0.427734375,0.4306640625,0.4892578125,0.568359375,0.6552734375,0.708984375,0.6953125,0.6181640625,0.5185546875,0.439453125,0.380859375,0.37109375,0.41015625,0.4697265625,0.5087890625,0.498046875,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.4228515625,0.392578125,0.357421875,0.3466796875,0.376953125,0.4384765625,0.509765625,0.5810546875,0.640625,0.66796875,0.6552734375,0.6181640625,0.5859375,0.5791015625,0.5693359375,0.5185546875,0.4462890625,0.392578125,0.384765625,0.423828125,0.4892578125,0.5458984375,0.5478515625,0.4931640625,0.416015625,0.361328125,0.36328125,0.419921875,0.5009765625,0.611328125,0.7109375,0.751953125,0.7236328125,0.6513671875,0.5791015625,0.5029296875,0.4091796875,0.33984375,0.333984375,0.3935546875,0.482421875,0.5595703125,0.615234375,0.611328125,0.544921875,0.4541015625,0.3876953125,0.3837890625,0.439453125,0.5185546875,0.615234375,0.6904296875,0.703125,0.6494140625,0.564453125,0.4892578125,0.421875,0.36328125,0.3349609375,0.345703125,0.380859375,0.412109375,0.419921875,0.4326171875,0.4892578125,0.5712890625,0.63671875,0.6552734375,0.623046875,0.5595703125,0.490234375,0.4248046875,0.384765625,0.3798828125,0.40234375,0.4248046875,0.4296875,0.439453125,0.4873046875,0.5556640625,0.6064453125,0.61328125,0.57421875,0.509765625,0.4541015625,0.453125,0.5087890625,0.5859375,0.6396484375,0.63671875,0.5791015625,0.5107421875,0.458984375,0.4443359375,0.4736328125,0.5263671875,0.568359375,0.5791015625,0.5693359375,0.5205078125,0.451171875,0.40234375,0.3984375,0.44140625,0.509765625,0.5888671875,0.6796875,0.740234375,0.734375,0.6630859375,0.568359375,0.4892578125,0.4228515625,0.3798828125,0.3828125,0.4306640625,0.4990234375,0.5478515625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.4892578125,0.5,0.4599609375,0.3994140625,0.359375,0.3701171875,0.4296875,0.5029296875,0.5712890625,0.6142578125,0.6201171875,0.59765625,0.57421875,0.5693359375,0.5771484375,0.6015625,0.62109375,0.6123046875,0.5673828125,0.5,0.4296875,0.35546875,0.275390625,0.2294921875,0.2509765625,0.33203125,0.431640625,0.509765625,0.57421875,0.6142578125,0.6103515625,0.5625,0.49609375,0.44921875,0.439453125,0.44140625,0.4404296875,0.4375,0.4326171875,0.4267578125,0.421875,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.4384765625,0.419921875,0.447265625,0.4921875,0.5185546875,0.5009765625,0.439453125,0.3828125,0.3896484375,0.4609375,0.55859375,0.6298828125,0.6357421875,0.5791015625,0.498046875,0.396484375,0.3154296875,0.2978515625,0.3486328125,0.4326171875,0.509765625,0.5869140625,0.6796875,0.744140625,0.744140625,0.6796875,0.5869140625,0.509765625,0.43359375,0.349609375,0.2998046875,0.318359375,0.3994140625,0.5,0.5791015625,0.6552734375,0.740234375,0.791015625,0.7734375,0.6923828125,0.5908203125,0.509765625,0.4375,0.3759765625,0.345703125,0.357421875,0.3955078125,0.4296875,0.439453125,0.4443359375,0.4599609375,0.4873046875,0.517578125,0.54296875,0.556640625,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.34375,0.2587890625,0.2080078125,0.2255859375,0.306640625,0.408203125,0.4892578125,0.5517578125,0.57421875,0.5556640625,0.51953125,0.4990234375,0.5185546875,0.5791015625,0.6474609375,0.6982421875,0.7099609375,0.6787109375,0.6240234375,0.5810546875,0.5693359375,0.5546875,0.494140625,0.41015625,0.3427734375,0.326171875,0.36328125,0.4296875,0.5087890625,0.6005859375,0.6640625,0.6611328125,0.591796875,0.498046875,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5751953125,0.60546875,0.640625,0.65234375,0.625,0.5673828125,0.5,0.4228515625,0.3310546875,0.265625,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.375,0.376953125,0.4189453125,0.486328125,0.5595703125,0.6162109375,0.61328125,0.5478515625,0.4560546875,0.3896484375,0.384765625,0.439453125,0.5078125,0.556640625,0.564453125,0.529296875,0.47265625,0.4296875,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4130859375,0.380859375,0.34375,0.3310546875,0.3583984375,0.41796875,0.4892578125,0.568359375,0.6611328125,0.7255859375,0.7236328125,0.658203125,0.56640625,0.4892578125,0.4248046875,0.3837890625,0.3876953125,0.4365234375,0.505859375,0.556640625,0.5693359375,0.5673828125,0.5517578125,0.51953125,0.48046875,0.4453125,0.4248046875,0.419921875,0.41796875,0.4189453125,0.421875,0.4267578125,0.4326171875,0.4375,0.439453125,0.453125,0.5029296875,0.5712890625,0.6181640625,0.6201171875,0.576171875,0.509765625,0.43359375,0.349609375,0.2998046875,0.318359375,0.3994140625,0.5,0.5791015625,0.65625,0.74609375,0.8076171875,0.8046875,0.7373046875,0.6455078125,0.5693359375,0.4912109375,0.390625,0.30859375,0.2861328125,0.33203125,0.4140625,0.4892578125,0.5693359375,0.6708984375,0.7548828125,0.7783203125,0.7333984375,0.6533203125,0.5791015625,0.5,0.3916015625,0.294921875,0.255859375,0.28515625,0.357421875,0.4296875,0.5087890625,0.615234375,0.7099609375,0.7470703125,0.71484375,0.6416015625,0.5693359375,0.5087890625,0.48046875,0.4853515625,0.50390625,0.5087890625,0.48046875,0.419921875,0.34375,0.2529296875,0.1875,0.1875,0.2509765625,0.341796875,0.419921875,0.48046875,0.501953125,0.482421875,0.447265625,0.427734375,0.44921875,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4521484375,0.5078125,0.5859375,0.6474609375,0.6611328125,0.625,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.564453125,0.6044921875,0.599609375,0.5498046875,0.48046875,0.4306640625,0.419921875,0.41015625,0.369140625,0.318359375,0.291015625,0.3056640625,0.359375,0.4296875,0.4912109375,0.5126953125,0.4921875,0.453125,0.4306640625,0.44921875,0.509765625,0.5888671875,0.6875,0.765625,0.779296875,0.724609375,0.6376953125,0.5595703125,0.5,0.4892578125,0.529296875,0.58984375,0.6298828125,0.619140625,0.5595703125,0.490234375,0.439453125,0.4296875,0.4638671875,0.5185546875,0.560546875,0.5693359375,0.556640625,0.5068359375,0.44140625,0.396484375,0.3974609375,0.4423828125,0.509765625,0.576171875,0.6181640625,0.615234375,0.564453125,0.494140625,0.443359375,0.4296875,0.419921875,0.3857421875,0.3466796875,0.3359375,0.3662109375,0.427734375,0.5,0.5615234375,0.58203125,0.5595703125,0.51953125,0.4970703125,0.517578125,0.5791015625,0.6552734375,0.7275390625,0.755859375,0.712890625,0.611328125,0.5,0.419921875,0.34375,0.255859375,0.1953125,0.2001953125,0.2685546875,0.361328125,0.439453125,0.5009765625,0.5244140625,0.5107421875,0.482421875,0.470703125,0.49609375,0.5595703125,0.63671875,0.720703125,0.76953125,0.7490234375,0.66796875,0.5673828125,0.4892578125,0.4248046875,0.3857421875,0.3935546875,0.4462890625,0.5166015625,0.5673828125,0.5791015625,0.5859375,0.6103515625,0.6328125,0.626953125,0.58203125,0.5126953125,0.439453125,0.373046875,0.3349609375,0.349609375,0.4130859375,0.49609375,0.5546875,0.5693359375,0.5791015625,0.611328125,0.6455078125,0.6533203125,0.6220703125,0.5595703125,0.4892578125,0.4296875,0.4111328125,0.435546875,0.478515625,0.5048828125,0.48828125,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.568359375,0.662109375,0.7314453125,0.7373046875,0.6767578125,0.5869140625,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.412109375,0.3896484375,0.37109375,0.3828125,0.4296875,0.4990234375,0.5693359375,0.6259765625,0.6337890625,0.59375,0.5341796875,0.49609375,0.5087890625,0.5693359375,0.6357421875,0.6708984375,0.65234375,0.5830078125,0.49609375,0.4345703125,0.419921875,0.431640625,0.4912109375,0.580078125,0.6533203125,0.6767578125,0.6455078125,0.5791015625,0.498046875,0.3974609375,0.318359375,0.30078125,0.3515625,0.4345703125,0.509765625,0.5771484375,0.634765625,0.6591796875,0.64453125,0.6044921875,0.5693359375,0.5595703125,0.55859375,0.5595703125,0.5625,0.56640625,0.5693359375,0.5703125,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5869140625,0.619140625,0.6552734375,0.6640625,0.6328125,0.5712890625,0.5,0.44140625,0.439453125,0.4951171875,0.57421875,0.6298828125,0.6279296875,0.5693359375,0.505859375,0.474609375,0.4794921875,0.4990234375,0.505859375,0.4794921875,0.419921875,0.345703125,0.265625,0.2197265625,0.2412109375,0.322265625,0.421875,0.5,0.576171875,0.666015625,0.73046875,0.728515625,0.662109375,0.5693359375,0.4892578125,0.4091796875,0.310546875,0.2353515625,0.2236328125,0.2783203125,0.3642578125,0.439453125,0.517578125,0.6171875,0.697265625,0.716796875,0.66796875,0.5859375,0.509765625,0.4423828125,0.3974609375,0.3955078125,0.4384765625,0.501953125,0.548828125,0.5595703125,0.556640625,0.541015625,0.5126953125,0.48046875,0.4541015625,0.4404296875,0.439453125,0.4541015625,0.5126953125,0.595703125,0.6591796875,0.673828125,0.63671875,0.5693359375,0.48828125,0.38671875,0.3046875,0.2841796875,0.3330078125,0.4150390625,0.4892578125,0.544921875,0.5458984375,0.4912109375,0.4169921875,0.365234375,0.37109375,0.4296875,0.5,0.5537109375,0.5693359375,0.541015625,0.490234375,0.44921875,0.439453125,0.43359375,0.4091796875,0.38671875,0.392578125,0.43359375,0.5,0.5693359375,0.6455078125,0.7373046875,0.8046875,0.8076171875,0.74609375,0.65625,0.5791015625,0.5068359375,0.435546875,0.3857421875,0.373046875,0.3896484375,0.412109375,0.419921875,0.43359375,0.486328125,0.55859375,0.611328125,0.6171875,0.576171875,0.509765625,0.431640625,0.33984375,0.2734375,0.3564453125,0.3671875,0.419921875,0.4951171875,0.5703125,0.6279296875,0.6279296875,0.5634765625,0.4697265625,0.396484375,0.3828125,0.4287109375,0.486328125,0.5185546875,0.5068359375,0.453125,0.384765625,0.3369140625,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.3291015625,0.3095703125,0.28515625,0.2822265625,0.3154296875,0.376953125,0.4482421875,0.5244140625,0.6064453125,0.658203125,0.6494140625,0.5859375,0.5078125,0.4482421875,0.400390625,0.37890625,0.400390625,0.4638671875,0.5419921875,0.6005859375,0.6220703125,0.6259765625,0.6044921875,0.5478515625,0.4697265625,0.3935546875,0.34375,0.3251953125,0.31640625,0.3154296875,0.3291015625,0.3564453125,0.388671875,0.4150390625,0.4287109375,0.4501953125,0.5087890625,0.5830078125,0.6376953125,0.6455078125,0.609375,0.55078125,0.4853515625,0.419921875,0.390625,0.4228515625,0.5068359375,0.6025390625,0.673828125,0.7392578125,0.806640625,0.8447265625,0.8271484375,0.759765625,0.6806640625,0.6220703125,0.5595703125,0.4658203125,0.3720703125,0.3212890625,0.33203125,0.384765625,0.4482421875,0.51953125,0.6220703125,0.7216796875,0.7763671875,0.771484375,0.7265625,0.673828125,0.609375,0.5068359375,0.3935546875,0.3154296875,0.296875,0.3271484375,0.376953125,0.439453125,0.5361328125,0.6376953125,0.703125,0.7099609375,0.6728515625,0.6220703125,0.572265625,0.5283203125,0.4912109375,0.4560546875,0.4189453125,0.375,0.3251953125,0.267578125,0.1943359375,0.1396484375,0.134765625,0.1845703125,0.2587890625,0.3251953125,0.3818359375,0.4189453125,0.4345703125,0.4423828125,0.4580078125,0.4951171875,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4404296875,0.4931640625,0.5703125,0.6337890625,0.654296875,0.6259765625,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.544921875,0.5615234375,0.5322265625,0.4638671875,0.3876953125,0.3369140625,0.3251953125,0.31640625,0.28125,0.2392578125,0.22265625,0.248046875,0.306640625,0.376953125,0.4423828125,0.48046875,0.4873046875,0.4765625,0.4736328125,0.4970703125,0.55078125,0.62109375,0.7099609375,0.779296875,0.7880859375,0.7333984375,0.6474609375,0.5703125,0.509765625,0.5,0.5400390625,0.6005859375,0.640625,0.6298828125,0.5703125,0.5029296875,0.462890625,0.46875,0.517578125,0.580078125,0.62109375,0.6220703125,0.6015625,0.5498046875,0.486328125,0.4462890625,0.44921875,0.4921875,0.55078125,0.6083984375,0.6376953125,0.6181640625,0.55078125,0.46484375,0.400390625,0.376953125,0.3603515625,0.3251953125,0.2978515625,0.3037109375,0.3525390625,0.42578125,0.5,0.5634765625,0.5947265625,0.59375,0.5791015625,0.578125,0.609375,0.673828125,0.7421875,0.7822265625,0.755859375,0.6552734375,0.5146484375,0.3935546875,0.3251953125,0.26953125,0.2099609375,0.177734375,0.2001953125,0.2724609375,0.359375,0.4287109375,0.482421875,0.501953125,0.4912109375,0.47265625,0.4716796875,0.505859375,0.5703125,0.6435546875,0.7109375,0.7353515625,0.6943359375,0.6044921875,0.509765625,0.4482421875,0.4033203125,0.3935546875,0.4345703125,0.515625,0.6044921875,0.6611328125,0.673828125,0.677734375,0.689453125,0.6884765625,0.654296875,0.5869140625,0.5048828125,0.4287109375,0.3623046875,0.3271484375,0.349609375,0.42578125,0.5244140625,0.5966796875,0.6220703125,0.63671875,0.658203125,0.6669921875,0.642578125,0.5849609375,0.5126953125,0.4482421875,0.3935546875,0.3701171875,0.380859375,0.4091796875,0.4296875,0.419921875,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.5185546875,0.611328125,0.69140625,0.71875,0.6845703125,0.6171875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.3154296875,0.314453125,0.33984375,0.4013671875,0.484375,0.5634765625,0.6220703125,0.6611328125,0.6572265625,0.61328125,0.560546875,0.5361328125,0.55859375,0.6220703125,0.685546875,0.708984375,0.6630859375,0.5595703125,0.4375,0.3525390625,0.3251953125,0.333984375,0.41015625,0.5390625,0.666015625,0.7373046875,0.7333984375,0.673828125,0.59375,0.4970703125,0.41796875,0.39453125,0.4306640625,0.494140625,0.55078125,0.6025390625,0.6484375,0.669921875,0.6572265625,0.6220703125,0.5869140625,0.5703125,0.5625,0.5673828125,0.5849609375,0.607421875,0.6240234375,0.62890625,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.6796875,0.7001953125,0.71484375,0.69921875,0.646484375,0.5732421875,0.5,0.4423828125,0.4462890625,0.513671875,0.607421875,0.6748046875,0.6787109375,0.6220703125,0.5517578125,0.4931640625,0.4521484375,0.42578125,0.4033203125,0.3720703125,0.3251953125,0.2734375,0.2275390625,0.21875,0.2646484375,0.3505859375,0.4384765625,0.5,0.5576171875,0.630859375,0.681640625,0.6767578125,0.6142578125,0.5263671875,0.4482421875,0.3701171875,0.2861328125,0.23046875,0.234375,0.29296875,0.3701171875,0.4287109375,0.490234375,0.578125,0.66015625,0.697265625,0.6748046875,0.615234375,0.55078125,0.4921875,0.44921875,0.4423828125,0.4736328125,0.5234375,0.5615234375,0.5703125,0.5654296875,0.5419921875,0.5029296875,0.4609375,0.431640625,0.421875,0.4287109375,0.453125,0.5263671875,0.625,0.701171875,0.7236328125,0.6884765625,0.6220703125,0.541015625,0.4375,0.34765625,0.310546875,0.3349609375,0.392578125,0.4482421875,0.4853515625,0.47265625,0.4130859375,0.3427734375,0.3017578125,0.31640625,0.376953125,0.4482421875,0.5068359375,0.5322265625,0.5146484375,0.4736328125,0.4375,0.4287109375,0.4267578125,0.419921875,0.4248046875,0.4541015625,0.5068359375,0.5673828125,0.6220703125,0.6806640625,0.759765625,0.8271484375,0.8447265625,0.806640625,0.7392578125,0.673828125,0.6044921875,0.5107421875,0.4140625,0.34375,0.314453125,0.3154296875,0.3251953125,0.349609375,0.419921875,0.5185546875,0.599609375,0.630859375,0.607421875,0.55078125,0.4833984375,0.40234375,0.341796875,0.3369140625,0.3330078125,0.3798828125,0.455078125,0.5302734375,0.591796875,0.6103515625,0.576171875,0.5107421875,0.4521484375,0.4365234375,0.46875,0.5087890625,0.515625,0.4775390625,0.40234375,0.322265625,0.2705078125,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.27734375,0.271484375,0.25390625,0.248046875,0.271484375,0.3251953125,0.39453125,0.466796875,0.5302734375,0.5576171875,0.53515625,0.478515625,0.4228515625,0.39453125,0.3779296875,0.3779296875,0.408203125,0.46875,0.5419921875,0.6005859375,0.634765625,0.6552734375,0.64453125,0.5849609375,0.4853515625,0.376953125,0.296875,0.2587890625,0.234375,0.2255859375,0.248046875,0.3037109375,0.375,0.4345703125,0.46875,0.50390625,0.56640625,0.6357421875,0.6787109375,0.681640625,0.6494140625,0.6044921875,0.5576171875,0.5146484375,0.501953125,0.5380859375,0.6103515625,0.6865234375,0.740234375,0.7841796875,0.8154296875,0.814453125,0.775390625,0.71484375,0.662109375,0.634765625,0.6044921875,0.53515625,0.4443359375,0.369140625,0.337890625,0.353515625,0.39453125,0.44921875,0.53515625,0.634765625,0.71484375,0.7548828125,0.7568359375,0.740234375,0.7099609375,0.6396484375,0.5380859375,0.4384765625,0.3720703125,0.3515625,0.3642578125,0.3916015625,0.44921875,0.52734375,0.5986328125,0.6416015625,0.6494140625,0.634765625,0.6103515625,0.5615234375,0.48828125,0.4052734375,0.33203125,0.283203125,0.2587890625,0.234375,0.1943359375,0.15625,0.1455078125,0.16796875,0.2119140625,0.2587890625,0.3046875,0.353515625,0.4052734375,0.4580078125,0.509765625,0.55859375,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4765625,0.5107421875,0.5576171875,0.5927734375,0.5986328125,0.572265625,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.5126953125,0.4970703125,0.447265625,0.375,0.3076171875,0.267578125,0.2587890625,0.2509765625,0.22265625,0.1923828125,0.189453125,0.2265625,0.2919921875,0.3642578125,0.43359375,0.48828125,0.521484375,0.53515625,0.5439453125,0.564453125,0.6044921875,0.6572265625,0.72265625,0.767578125,0.7587890625,0.6953125,0.607421875,0.5302734375,0.4697265625,0.458984375,0.4990234375,0.560546875,0.6005859375,0.58984375,0.5302734375,0.4658203125,0.44140625,0.4716796875,0.541015625,0.61328125,0.6484375,0.634765625,0.6025390625,0.552734375,0.5078125,0.4912109375,0.5126953125,0.5576171875,0.6044921875,0.646484375,0.666015625,0.640625,0.568359375,0.4765625,0.4013671875,0.3642578125,0.33203125,0.287109375,0.2587890625,0.275390625,0.3388671875,0.4228515625,0.5,0.564453125,0.6044921875,0.6181640625,0.62109375,0.634765625,0.6748046875,0.740234375,0.8017578125,0.806640625,0.7265625,0.5771484375,0.412109375,0.298828125,0.2587890625,0.2392578125,0.224609375,0.234375,0.2783203125,0.34765625,0.41796875,0.46875,0.5048828125,0.50390625,0.4716796875,0.4384765625,0.431640625,0.46484375,0.5302734375,0.5986328125,0.646484375,0.6435546875,0.5849609375,0.498046875,0.42578125,0.39453125,0.3837890625,0.412109375,0.4853515625,0.5849609375,0.6767578125,0.7294921875,0.740234375,0.744140625,0.7529296875,0.7451171875,0.7041015625,0.630859375,0.544921875,0.46875,0.3994140625,0.3515625,0.3564453125,0.4189453125,0.5146484375,0.595703125,0.634765625,0.6611328125,0.677734375,0.6630859375,0.607421875,0.525390625,0.4482421875,0.39453125,0.3525390625,0.326171875,0.3251953125,0.3447265625,0.3681640625,0.376953125,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.44921875,0.53515625,0.6240234375,0.6796875,0.6845703125,0.650390625,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.2392578125,0.2548828125,0.3193359375,0.421875,0.529296875,0.6044921875,0.634765625,0.6435546875,0.615234375,0.5654296875,0.52734375,0.5263671875,0.5673828125,0.634765625,0.69921875,0.7216796875,0.6708984375,0.5517578125,0.41015625,0.3037109375,0.2587890625,0.2548828125,0.3349609375,0.4912109375,0.66015625,0.7734375,0.794921875,0.740234375,0.6640625,0.5849609375,0.52734375,0.513671875,0.5400390625,0.5791015625,0.6044921875,0.625,0.6455078125,0.6513671875,0.634765625,0.599609375,0.5595703125,0.5302734375,0.5107421875,0.51953125,0.5576171875,0.607421875,0.6455078125,0.654296875,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.744140625,0.7568359375,0.7568359375,0.7236328125,0.65625,0.5751953125,0.5,0.4423828125,0.4482421875,0.5185546875,0.615234375,0.685546875,0.69140625,0.634765625,0.5595703125,0.4716796875,0.388671875,0.328125,0.2939453125,0.2763671875,0.2587890625,0.2431640625,0.248046875,0.2841796875,0.34765625,0.4189453125,0.47265625,0.5,0.525390625,0.568359375,0.6015625,0.5966796875,0.5458984375,0.4697265625,0.39453125,0.32421875,0.26953125,0.2587890625,0.30078125,0.3740234375,0.439453125,0.46875,0.4970703125,0.5537109375,0.62109375,0.66796875,0.67578125,0.6484375,0.6044921875,0.55859375,0.5166015625,0.4912109375,0.4912109375,0.5078125,0.525390625,0.5302734375,0.5244140625,0.501953125,0.46875,0.44140625,0.4326171875,0.4453125,0.46875,0.5087890625,0.58984375,0.685546875,0.748046875,0.751953125,0.7041015625,0.634765625,0.556640625,0.4638671875,0.3828125,0.341796875,0.345703125,0.3720703125,0.39453125,0.40234375,0.37109375,0.3134765625,0.267578125,0.259765625,0.2978515625,0.3642578125,0.4365234375,0.5009765625,0.5380859375,0.53515625,0.505859375,0.4765625,0.46875,0.470703125,0.4794921875,0.501953125,0.5380859375,0.5791015625,0.6123046875,0.634765625,0.662109375,0.71484375,0.775390625,0.814453125,0.8154296875,0.7841796875,0.740234375,0.6806640625,0.57421875,0.4384765625,0.3193359375,0.2509765625,0.23828125,0.2587890625,0.298828125,0.38671875,0.501953125,0.6015625,0.650390625,0.64453125,0.6044921875,0.5556640625,0.498046875,0.4521484375,0.31640625,0.2900390625,0.3232421875,0.39453125,0.46875,0.537109375,0.5810546875,0.587890625,0.5625,0.52734375,0.5126953125,0.5302734375,0.548828125,0.53515625,0.48046875,0.3974609375,0.3173828125,0.2685546875,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.2958984375,0.2998046875,0.2783203125,0.2568359375,0.259765625,0.2978515625,0.3642578125,0.431640625,0.47265625,0.4716796875,0.43359375,0.3837890625,0.35546875,0.3642578125,0.3818359375,0.3984375,0.421875,0.4580078125,0.505859375,0.5576171875,0.6044921875,0.6474609375,0.6640625,0.6298828125,0.5380859375,0.4189453125,0.3173828125,0.2587890625,0.21484375,0.1884765625,0.20703125,0.2783203125,0.380859375,0.4736328125,0.5302734375,0.580078125,0.6416015625,0.6923828125,0.712890625,0.697265625,0.6640625,0.634765625,0.6083984375,0.5859375,0.5849609375,0.61328125,0.6611328125,0.7080078125,0.740234375,0.759765625,0.751953125,0.7119140625,0.6572265625,0.611328125,0.5927734375,0.6044921875,0.6142578125,0.5830078125,0.513671875,0.4306640625,0.3671875,0.3466796875,0.3642578125,0.3955078125,0.4501953125,0.5244140625,0.6044921875,0.6728515625,0.716796875,0.740234375,0.7529296875,0.736328125,0.6767578125,0.5849609375,0.490234375,0.423828125,0.39453125,0.3779296875,0.37890625,0.408203125,0.4638671875,0.5283203125,0.5791015625,0.6044921875,0.6123046875,0.5732421875,0.4853515625,0.3779296875,0.2900390625,0.2509765625,0.2587890625,0.2734375,0.2724609375,0.255859375,0.2373046875,0.2275390625,0.236328125,0.2587890625,0.2900390625,0.3388671875,0.408203125,0.4853515625,0.5546875,0.6044921875,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5322265625,0.5400390625,0.5458984375,0.541015625,0.5224609375,0.49609375,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.4755859375,0.4326171875,0.375,0.3193359375,0.2802734375,0.26171875,0.2587890625,0.251953125,0.2265625,0.2041015625,0.208984375,0.2529296875,0.3212890625,0.39453125,0.4658203125,0.5322265625,0.580078125,0.6015625,0.6064453125,0.61328125,0.634765625,0.6669921875,0.7080078125,0.728515625,0.7041015625,0.634765625,0.546875,0.46875,0.4091796875,0.3984375,0.4384765625,0.5,0.5400390625,0.529296875,0.46875,0.4091796875,0.3994140625,0.4501953125,0.53515625,0.6103515625,0.6357421875,0.6044921875,0.5576171875,0.5126953125,0.4912109375,0.5078125,0.552734375,0.6025390625,0.634765625,0.6611328125,0.677734375,0.6630859375,0.607421875,0.525390625,0.4482421875,0.39453125,0.3427734375,0.2802734375,0.2421875,0.2587890625,0.3291015625,0.4208984375,0.5,0.564453125,0.6044921875,0.6181640625,0.62109375,0.634765625,0.6748046875,0.740234375,0.7958984375,0.779296875,0.6708984375,0.5048828125,0.34765625,0.26171875,0.2587890625,0.2802734375,0.3115234375,0.35546875,0.408203125,0.458984375,0.5009765625,0.5302734375,0.5439453125,0.5146484375,0.4521484375,0.39453125,0.375,0.404296875,0.46875,0.5341796875,0.5625,0.5380859375,0.4716796875,0.3984375,0.3583984375,0.3642578125,0.3916015625,0.451171875,0.5380859375,0.6298828125,0.69921875,0.734375,0.740234375,0.7451171875,0.76171875,0.767578125,0.7421875,0.6826171875,0.6044921875,0.5302734375,0.455078125,0.3857421875,0.35546875,0.38671875,0.46484375,0.548828125,0.6044921875,0.646484375,0.666015625,0.640625,0.568359375,0.4765625,0.4013671875,0.3642578125,0.3369140625,0.3095703125,0.2978515625,0.30859375,0.3388671875,0.3720703125,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.3994140625,0.466796875,0.5517578125,0.6240234375,0.66015625,0.658203125,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.2255859375,0.2451171875,0.328125,0.447265625,0.5546875,0.6083984375,0.6044921875,0.576171875,0.5205078125,0.4638671875,0.44140625,0.46875,0.5322265625,0.6044921875,0.6728515625,0.708984375,0.6796875,0.5771484375,0.4375,0.3212890625,0.2587890625,0.236328125,0.302734375,0.455078125,0.6318359375,0.759765625,0.7919921875,0.740234375,0.6708984375,0.6162109375,0.59375,0.6044921875,0.630859375,0.6455078125,0.634765625,0.619140625,0.611328125,0.6044921875,0.587890625,0.556640625,0.5146484375,0.46875,0.4345703125,0.4443359375,0.5,0.57421875,0.6298828125,0.6396484375,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.744140625,0.7568359375,0.7568359375,0.7236328125,0.65625,0.5751953125,0.5,0.4423828125,0.4443359375,0.5078125,0.5966796875,0.66015625,0.662109375,0.6044921875,0.5244140625,0.4189453125,0.314453125,0.2451171875,0.224609375,0.23828125,0.2587890625,0.28515625,0.33984375,0.4111328125,0.474609375,0.5107421875,0.5146484375,0.5,0.48828125,0.4990234375,0.5185546875,0.521484375,0.4921875,0.4345703125,0.3642578125,0.30078125,0.279296875,0.3173828125,0.3994140625,0.486328125,0.5341796875,0.5302734375,0.517578125,0.5322265625,0.5712890625,0.6181640625,0.6513671875,0.6552734375,0.634765625,0.60546875,0.56640625,0.5244140625,0.4912109375,0.474609375,0.4697265625,0.46875,0.4638671875,0.4453125,0.4248046875,0.421875,0.443359375,0.484375,0.5302734375,0.5859375,0.669921875,0.748046875,0.779296875,0.7490234375,0.6787109375,0.6044921875,0.5322265625,0.4609375,0.408203125,0.3828125,0.3798828125,0.3779296875,0.3642578125,0.3359375,0.2841796875,0.234375,0.2197265625,0.25390625,0.3212890625,0.39453125,0.4677734375,0.5361328125,0.580078125,0.5849609375,0.5615234375,0.537109375,0.5302734375,0.5341796875,0.5546875,0.5849609375,0.61328125,0.6259765625,0.62109375,0.6044921875,0.5927734375,0.611328125,0.6572265625,0.7119140625,0.751953125,0.759765625,0.740234375,0.697265625,0.5927734375,0.447265625,0.3115234375,0.232421875,0.22265625,0.2587890625,0.3154296875,0.4091796875,0.521484375,0.61328125,0.658203125,0.658203125,0.634765625,0.6083984375,0.583984375,0.5634765625,0.296875,0.255859375,0.283203125,0.353515625,0.4287109375,0.5009765625,0.564453125,0.6015625,0.603515625,0.583984375,0.56640625,0.5703125,0.57421875,0.552734375,0.5,0.4306640625,0.3681640625,0.3330078125,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.376953125,0.3857421875,0.35546875,0.3125,0.2919921875,0.314453125,0.376953125,0.4404296875,0.462890625,0.4384765625,0.3857421875,0.341796875,0.337890625,0.376953125,0.4228515625,0.4453125,0.447265625,0.4462890625,0.4580078125,0.494140625,0.55078125,0.6142578125,0.6669921875,0.673828125,0.6142578125,0.5068359375,0.3994140625,0.3251953125,0.2626953125,0.2119140625,0.2099609375,0.2744140625,0.3857421875,0.49609375,0.5703125,0.6328125,0.689453125,0.7197265625,0.7119140625,0.67578125,0.638671875,0.6220703125,0.611328125,0.6044921875,0.60546875,0.619140625,0.640625,0.66015625,0.673828125,0.673828125,0.63671875,0.5732421875,0.5146484375,0.4892578125,0.505859375,0.55078125,0.595703125,0.60546875,0.568359375,0.49609375,0.421875,0.3779296875,0.376953125,0.3876953125,0.4013671875,0.4306640625,0.4833984375,0.55078125,0.6181640625,0.673828125,0.724609375,0.7646484375,0.76171875,0.7021484375,0.6044921875,0.509765625,0.4482421875,0.3935546875,0.3388671875,0.314453125,0.341796875,0.4130859375,0.4921875,0.55078125,0.5888671875,0.568359375,0.490234375,0.38671875,0.30859375,0.2880859375,0.3251953125,0.3740234375,0.4052734375,0.40625,0.380859375,0.3447265625,0.322265625,0.3251953125,0.3408203125,0.37890625,0.4384765625,0.5087890625,0.568359375,0.6064453125,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.568359375,0.556640625,0.533203125,0.5,0.466796875,0.4423828125,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.4462890625,0.3876953125,0.3388671875,0.314453125,0.314453125,0.322265625,0.3251953125,0.318359375,0.2919921875,0.265625,0.267578125,0.3076171875,0.375,0.4482421875,0.5205078125,0.587890625,0.6318359375,0.6435546875,0.630859375,0.6171875,0.6220703125,0.6376953125,0.6630859375,0.67578125,0.650390625,0.5869140625,0.5048828125,0.4287109375,0.369140625,0.3583984375,0.3984375,0.458984375,0.4990234375,0.4892578125,0.4287109375,0.37109375,0.369140625,0.4287109375,0.5166015625,0.5859375,0.59765625,0.55078125,0.4921875,0.44921875,0.4462890625,0.486328125,0.5498046875,0.6015625,0.6220703125,0.63671875,0.658203125,0.6669921875,0.642578125,0.5849609375,0.5126953125,0.4482421875,0.37890625,0.298828125,0.24609375,0.2548828125,0.3251953125,0.419921875,0.5,0.5634765625,0.5947265625,0.59375,0.5791015625,0.578125,0.609375,0.673828125,0.7275390625,0.708984375,0.6064453125,0.462890625,0.3408203125,0.2939453125,0.3251953125,0.3798828125,0.4404296875,0.4970703125,0.53515625,0.5537109375,0.5615234375,0.5703125,0.56640625,0.515625,0.4326171875,0.3603515625,0.3349609375,0.3642578125,0.4287109375,0.490234375,0.5068359375,0.470703125,0.4052734375,0.349609375,0.3388671875,0.376953125,0.43359375,0.5068359375,0.58203125,0.638671875,0.6669921875,0.673828125,0.673828125,0.6806640625,0.7099609375,0.740234375,0.7431640625,0.70703125,0.642578125,0.5703125,0.4912109375,0.4013671875,0.337890625,0.3369140625,0.3974609375,0.482421875,0.55078125,0.6083984375,0.6376953125,0.6181640625,0.55078125,0.46484375,0.400390625,0.376953125,0.361328125,0.3330078125,0.30859375,0.310546875,0.34375,0.3955078125,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.39453125,0.4375,0.501953125,0.56640625,0.611328125,0.6279296875,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.2783203125,0.2900390625,0.3671875,0.474609375,0.5615234375,0.5869140625,0.55078125,0.4912109375,0.4130859375,0.349609375,0.3408203125,0.392578125,0.474609375,0.55078125,0.6240234375,0.6845703125,0.693359375,0.6298828125,0.5146484375,0.400390625,0.3251953125,0.2841796875,0.3232421875,0.4423828125,0.5908203125,0.701171875,0.7265625,0.673828125,0.609375,0.580078125,0.59375,0.6318359375,0.6640625,0.662109375,0.6220703125,0.576171875,0.55078125,0.544921875,0.541015625,0.5244140625,0.486328125,0.4287109375,0.380859375,0.38671875,0.4482421875,0.5322265625,0.59375,0.599609375,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.6796875,0.7001953125,0.71484375,0.69921875,0.646484375,0.5732421875,0.5,0.4404296875,0.4365234375,0.48828125,0.5625,0.6142578125,0.609375,0.55078125,0.46875,0.359375,0.2578125,0.20703125,0.2197265625,0.271484375,0.3251953125,0.38671875,0.474609375,0.560546875,0.6064453125,0.59765625,0.5517578125,0.5,0.45703125,0.4462890625,0.4638671875,0.4833984375,0.48046875,0.4423828125,0.376953125,0.3193359375,0.3193359375,0.3876953125,0.490234375,0.5771484375,0.60546875,0.5703125,0.5234375,0.498046875,0.5078125,0.5478515625,0.5947265625,0.623046875,0.6220703125,0.607421875,0.576171875,0.53125,0.484375,0.44921875,0.431640625,0.4287109375,0.423828125,0.4052734375,0.390625,0.40234375,0.4453125,0.5068359375,0.5703125,0.6396484375,0.7236328125,0.7841796875,0.783203125,0.720703125,0.6298828125,0.55078125,0.484375,0.4404296875,0.4267578125,0.4326171875,0.4375,0.4208984375,0.376953125,0.3193359375,0.2490234375,0.2021484375,0.2119140625,0.2783203125,0.369140625,0.4482421875,0.5205078125,0.587890625,0.6279296875,0.6298828125,0.6044921875,0.5771484375,0.5703125,0.5771484375,0.6044921875,0.6376953125,0.654296875,0.640625,0.6015625,0.55078125,0.505859375,0.4892578125,0.5146484375,0.5732421875,0.63671875,0.673828125,0.673828125,0.646484375,0.5615234375,0.435546875,0.322265625,0.263671875,0.2724609375,0.3251953125,0.3935546875,0.48046875,0.5654296875,0.6220703125,0.640625,0.6337890625,0.6220703125,0.6162109375,0.623046875,0.6318359375,0.2783203125,0.2451171875,0.2841796875,0.36328125,0.439453125,0.51171875,0.578125,0.6171875,0.6171875,0.5908203125,0.564453125,0.5595703125,0.5576171875,0.5419921875,0.5107421875,0.4736328125,0.44140625,0.4228515625,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.478515625,0.4892578125,0.4501953125,0.3935546875,0.3564453125,0.369140625,0.4296875,0.490234375,0.5029296875,0.46484375,0.4052734375,0.365234375,0.373046875,0.4296875,0.48828125,0.5068359375,0.4853515625,0.4482421875,0.427734375,0.44921875,0.509765625,0.5849609375,0.666015625,0.7119140625,0.6875,0.6025390625,0.5,0.419921875,0.3447265625,0.2705078125,0.236328125,0.2734375,0.369140625,0.478515625,0.5595703125,0.6279296875,0.681640625,0.697265625,0.671875,0.62109375,0.580078125,0.5693359375,0.5673828125,0.56640625,0.5673828125,0.5703125,0.57421875,0.5771484375,0.5791015625,0.5693359375,0.5224609375,0.4560546875,0.408203125,0.404296875,0.4443359375,0.509765625,0.57421875,0.61328125,0.6064453125,0.5556640625,0.4873046875,0.439453125,0.4296875,0.42578125,0.4052734375,0.3876953125,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.6533203125,0.732421875,0.775390625,0.751953125,0.66796875,0.5673828125,0.4892578125,0.4140625,0.326171875,0.267578125,0.2724609375,0.3408203125,0.4326171875,0.509765625,0.564453125,0.5634765625,0.505859375,0.423828125,0.365234375,0.365234375,0.419921875,0.486328125,0.53515625,0.546875,0.5166015625,0.4658203125,0.427734375,0.419921875,0.4248046875,0.443359375,0.4755859375,0.513671875,0.5458984375,0.564453125,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.556640625,0.54296875,0.517578125,0.4873046875,0.4599609375,0.4443359375,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.4306640625,0.37109375,0.3408203125,0.3486328125,0.3818359375,0.412109375,0.419921875,0.4111328125,0.3779296875,0.33984375,0.328125,0.357421875,0.41796875,0.4892578125,0.560546875,0.6220703125,0.65234375,0.6416015625,0.6064453125,0.576171875,0.5693359375,0.578125,0.60546875,0.6298828125,0.625,0.58203125,0.5126953125,0.439453125,0.3798828125,0.369140625,0.4091796875,0.4697265625,0.509765625,0.4990234375,0.439453125,0.380859375,0.3779296875,0.4326171875,0.5107421875,0.5673828125,0.56640625,0.509765625,0.4423828125,0.3974609375,0.396484375,0.44140625,0.5068359375,0.556640625,0.5693359375,0.5791015625,0.611328125,0.6455078125,0.6533203125,0.6220703125,0.5595703125,0.4892578125,0.412109375,0.3203125,0.255859375,0.2578125,0.3251953125,0.419921875,0.5,0.5615234375,0.58203125,0.5595703125,0.51953125,0.4970703125,0.517578125,0.5791015625,0.6357421875,0.62890625,0.5556640625,0.4541015625,0.3779296875,0.3671875,0.419921875,0.4892578125,0.5556640625,0.59765625,0.60546875,0.5859375,0.5634765625,0.5595703125,0.5478515625,0.4931640625,0.4130859375,0.3505859375,0.3359375,0.373046875,0.439453125,0.5,0.5107421875,0.4716796875,0.4091796875,0.3662109375,0.373046875,0.4296875,0.5,0.568359375,0.6142578125,0.6240234375,0.6064453125,0.5849609375,0.5791015625,0.5888671875,0.6279296875,0.6767578125,0.7021484375,0.6845703125,0.6298828125,0.5595703125,0.478515625,0.3798828125,0.302734375,0.2900390625,0.345703125,0.4326171875,0.509765625,0.576171875,0.6181640625,0.615234375,0.564453125,0.494140625,0.443359375,0.4296875,0.419921875,0.38671875,0.3486328125,0.3359375,0.36328125,0.421875,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.4345703125,0.4541015625,0.486328125,0.5234375,0.552734375,0.568359375,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.36328125,0.3623046875,0.4208984375,0.5029296875,0.5625,0.564453125,0.509765625,0.4326171875,0.3408203125,0.275390625,0.2734375,0.337890625,0.4306640625,0.509765625,0.5869140625,0.6689453125,0.71484375,0.6904296875,0.603515625,0.5,0.419921875,0.365234375,0.375,0.451171875,0.5537109375,0.6279296875,0.6357421875,0.5791015625,0.5185546875,0.5048828125,0.5400390625,0.5966796875,0.6357421875,0.6259765625,0.5693359375,0.509765625,0.484375,0.4951171875,0.51953125,0.5283203125,0.5009765625,0.439453125,0.3828125,0.380859375,0.435546875,0.513671875,0.568359375,0.56640625,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.5869140625,0.619140625,0.6552734375,0.6640625,0.6328125,0.5712890625,0.5,0.4404296875,0.4306640625,0.47265625,0.5361328125,0.578125,0.5693359375,0.509765625,0.427734375,0.3251953125,0.2412109375,0.21875,0.2646484375,0.345703125,0.419921875,0.498046875,0.5966796875,0.6787109375,0.69921875,0.6533203125,0.5732421875,0.5,0.44140625,0.4248046875,0.4501953125,0.490234375,0.5126953125,0.4912109375,0.4296875,0.3720703125,0.3759765625,0.4423828125,0.5361328125,0.60546875,0.61328125,0.5595703125,0.4931640625,0.4453125,0.4365234375,0.46875,0.521484375,0.5615234375,0.5693359375,0.564453125,0.5478515625,0.5185546875,0.4853515625,0.45703125,0.4423828125,0.439453125,0.4326171875,0.40625,0.380859375,0.3828125,0.4228515625,0.48828125,0.5595703125,0.63671875,0.72265625,0.7783203125,0.765625,0.689453125,0.58984375,0.509765625,0.447265625,0.4248046875,0.4453125,0.4833984375,0.505859375,0.48828125,0.4296875,0.3544921875,0.2705078125,0.2177734375,0.2314453125,0.3095703125,0.4091796875,0.4892578125,0.560546875,0.6220703125,0.650390625,0.638671875,0.6005859375,0.5673828125,0.5595703125,0.5673828125,0.6015625,0.6416015625,0.6572265625,0.6328125,0.5771484375,0.509765625,0.4443359375,0.404296875,0.408203125,0.4560546875,0.5224609375,0.5693359375,0.5791015625,0.564453125,0.5029296875,0.4150390625,0.34375,0.322265625,0.35546875,0.419921875,0.4912109375,0.5615234375,0.609375,0.6201171875,0.6005859375,0.5771484375,0.5693359375,0.5751953125,0.60546875,0.640625,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.240234375,0.283203125,0.384765625,0.4970703125,0.5791015625,0.64453125,0.677734375,0.6591796875,0.5908203125,0.5048828125,0.4443359375,0.4296875,0.431640625,0.4482421875,0.4814453125,0.521484375,0.556640625,0.5751953125,0.5791015625,0.5693359375,0.5283203125,0.4765625,0.447265625,0.4599609375,0.5107421875,0.5791015625,0.6376953125,0.6484375,0.609375,0.5498046875,0.5107421875,0.5205078125,0.5791015625,0.63671875,0.6435546875,0.5986328125,0.5341796875,0.490234375,0.5,0.5595703125,0.6181640625,0.6240234375,0.57421875,0.5009765625,0.44921875,0.4521484375,0.509765625,0.5888671875,0.6884765625,0.767578125,0.78515625,0.736328125,0.654296875,0.5791015625,0.5,0.3916015625,0.294921875,0.255859375,0.28515625,0.357421875,0.4296875,0.49609375,0.544921875,0.5556640625,0.5234375,0.470703125,0.4296875,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.5791015625,0.638671875,0.666015625,0.6533203125,0.6142578125,0.5791015625,0.5693359375,0.5546875,0.494140625,0.41015625,0.3427734375,0.326171875,0.36328125,0.4296875,0.5107421875,0.609375,0.6875,0.7021484375,0.6494140625,0.564453125,0.4892578125,0.4140625,0.3251953125,0.263671875,0.2666015625,0.33203125,0.4228515625,0.5,0.5576171875,0.57421875,0.5478515625,0.5048828125,0.48046875,0.4990234375,0.5595703125,0.6279296875,0.681640625,0.69921875,0.6748046875,0.626953125,0.5888671875,0.5791015625,0.576171875,0.55859375,0.5263671875,0.48828125,0.4541015625,0.4345703125,0.4296875,0.4287109375,0.4287109375,0.4306640625,0.43359375,0.4375,0.439453125,0.439453125,0.4423828125,0.4580078125,0.486328125,0.5185546875,0.544921875,0.55859375,0.5595703125,0.5546875,0.5380859375,0.509765625,0.478515625,0.453125,0.4404296875,0.439453125,0.453125,0.5029296875,0.5703125,0.615234375,0.6142578125,0.568359375,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5673828125,0.515625,0.4443359375,0.3935546875,0.388671875,0.431640625,0.5,0.568359375,0.61328125,0.611328125,0.5634765625,0.494140625,0.443359375,0.4296875,0.44140625,0.5,0.5869140625,0.6572265625,0.6787109375,0.6455078125,0.5791015625,0.51953125,0.5068359375,0.544921875,0.603515625,0.6416015625,0.62890625,0.5693359375,0.5068359375,0.484375,0.5048828125,0.54296875,0.5654296875,0.5478515625,0.4892578125,0.421875,0.365234375,0.3408203125,0.3544921875,0.3916015625,0.4228515625,0.4296875,0.439453125,0.48828125,0.5576171875,0.6064453125,0.6103515625,0.5673828125,0.5,0.419921875,0.328125,0.263671875,0.265625,0.3310546875,0.4228515625,0.5,0.5546875,0.5537109375,0.4970703125,0.4169921875,0.361328125,0.36328125,0.419921875,0.482421875,0.5126953125,0.5107421875,0.494140625,0.490234375,0.5185546875,0.5791015625,0.6416015625,0.671875,0.6474609375,0.5751953125,0.4892578125,0.431640625,0.419921875,0.4150390625,0.3916015625,0.369140625,0.375,0.41796875,0.486328125,0.5595703125,0.619140625,0.6298828125,0.58984375,0.529296875,0.4892578125,0.5,0.5595703125,0.6259765625,0.66015625,0.640625,0.5732421875,0.4892578125,0.431640625,0.419921875,0.4306640625,0.4716796875,0.5234375,0.5517578125,0.537109375,0.486328125,0.419921875,0.345703125,0.265625,0.220703125,0.244140625,0.328125,0.4296875,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.55859375,0.6181640625,0.6455078125,0.6328125,0.5966796875,0.5654296875,0.5595703125,0.5615234375,0.56640625,0.572265625,0.5771484375,0.580078125,0.5810546875,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.419921875,0.4208984375,0.421875,0.4228515625,0.4228515625,0.421875,0.419921875,0.4306640625,0.4873046875,0.5703125,0.6376953125,0.6572265625,0.6240234375,0.5595703125,0.5,0.4833984375,0.51171875,0.5576171875,0.5859375,0.5693359375,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5166015625,0.486328125,0.48828125,0.5048828125,0.5087890625,0.48046875,0.419921875,0.36328125,0.3564453125,0.400390625,0.46484375,0.5068359375,0.498046875,0.439453125,0.384765625,0.3896484375,0.4560546875,0.5478515625,0.61328125,0.6162109375,0.5595703125,0.498046875,0.478515625,0.5029296875,0.5458984375,0.5703125,0.55078125,0.4892578125,0.4287109375,0.41015625,0.4384765625,0.4853515625,0.5146484375,0.4990234375,0.439453125,0.3720703125,0.3212890625,0.3095703125,0.33984375,0.3916015625,0.431640625,0.439453125,0.44921875,0.49609375,0.5625,0.6103515625,0.6142578125,0.57421875,0.509765625,0.453125,0.443359375,0.4833984375,0.5419921875,0.5791015625,0.568359375,0.509765625,0.4326171875,0.3466796875,0.29296875,0.3056640625,0.3818359375,0.48046875,0.5595703125,0.6357421875,0.720703125,0.771484375,0.7529296875,0.671875,0.5703125,0.4892578125,0.4306640625,0.427734375,0.482421875,0.560546875,0.6171875,0.6162109375,0.5595703125,0.498046875,0.470703125,0.478515625,0.5009765625,0.5087890625,0.4814453125,0.419921875,0.3525390625,0.3037109375,0.294921875,0.330078125,0.38671875,0.4296875,0.439453125,0.4423828125,0.4560546875,0.4814453125,0.51171875,0.5390625,0.5546875,0.5595703125,0.5478515625,0.4921875,0.41015625,0.3447265625,0.3271484375,0.36328125,0.4296875,0.5107421875,0.6123046875,0.6923828125,0.7080078125,0.654296875,0.568359375,0.4892578125,0.431640625,0.431640625,0.4921875,0.576171875,0.63671875,0.63671875,0.5791015625,0.498046875,0.3955078125,0.3134765625,0.294921875,0.345703125,0.431640625,0.509765625,0.5771484375,0.6201171875,0.6142578125,0.5615234375,0.4873046875,0.43359375,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.439453125,0.37890625,0.3486328125,0.359375,0.396484375,0.4296875,0.439453125,0.4345703125,0.408203125,0.3818359375,0.3818359375,0.4208984375,0.4873046875,0.5595703125,0.6259765625,0.66015625,0.640625,0.5732421875,0.4892578125,0.431640625,0.419921875,0.43359375,0.4853515625,0.5576171875,0.228515625,0.32421875,0.466796875,0.595703125,0.673828125,0.7275390625,0.7421875,0.6953125,0.595703125,0.482421875,0.4033203125,0.376953125,0.3740234375,0.40234375,0.466796875,0.548828125,0.623046875,0.6650390625,0.673828125,0.6650390625,0.62890625,0.5830078125,0.5576171875,0.5693359375,0.61328125,0.673828125,0.724609375,0.7333984375,0.69921875,0.6474609375,0.61328125,0.6220703125,0.673828125,0.720703125,0.7109375,0.646484375,0.5625,0.5068359375,0.5107421875,0.5703125,0.630859375,0.6455078125,0.6083984375,0.5478515625,0.5009765625,0.501953125,0.55078125,0.62109375,0.7099609375,0.787109375,0.814453125,0.787109375,0.728515625,0.673828125,0.609375,0.5068359375,0.3935546875,0.3154296875,0.296875,0.3271484375,0.376953125,0.42578125,0.45703125,0.4541015625,0.4189453125,0.3701171875,0.333984375,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.6142578125,0.673828125,0.7080078125,0.705078125,0.673828125,0.638671875,0.6220703125,0.595703125,0.5166015625,0.4072265625,0.31640625,0.283203125,0.3115234375,0.376953125,0.4560546875,0.546875,0.61328125,0.623046875,0.576171875,0.505859375,0.4482421875,0.392578125,0.33203125,0.2958984375,0.3095703125,0.3681640625,0.44140625,0.5,0.5419921875,0.552734375,0.5322265625,0.5029296875,0.4921875,0.515625,0.5703125,0.6318359375,0.689453125,0.7236328125,0.7255859375,0.7021484375,0.6796875,0.673828125,0.66796875,0.6376953125,0.580078125,0.505859375,0.4375,0.39453125,0.376953125,0.3681640625,0.3671875,0.376953125,0.39453125,0.4140625,0.4267578125,0.4287109375,0.43359375,0.45703125,0.49609375,0.5380859375,0.5673828125,0.5771484375,0.5703125,0.5556640625,0.5244140625,0.4833984375,0.4462890625,0.423828125,0.4208984375,0.4287109375,0.451171875,0.5087890625,0.580078125,0.6240234375,0.619140625,0.5693359375,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.6591796875,0.5966796875,0.50390625,0.427734375,0.40234375,0.43359375,0.5,0.568359375,0.611328125,0.60546875,0.546875,0.46484375,0.400390625,0.376953125,0.3837890625,0.4541015625,0.5712890625,0.6845703125,0.7451171875,0.734375,0.673828125,0.6123046875,0.595703125,0.6240234375,0.6708984375,0.69921875,0.6826171875,0.6220703125,0.5546875,0.5107421875,0.4970703125,0.5029296875,0.5078125,0.4912109375,0.4482421875,0.3984375,0.3583984375,0.3408203125,0.3486328125,0.3681640625,0.3818359375,0.376953125,0.3798828125,0.4287109375,0.5078125,0.5751953125,0.5966796875,0.5654296875,0.5,0.4228515625,0.3408203125,0.2890625,0.2978515625,0.361328125,0.4404296875,0.5,0.5361328125,0.5166015625,0.4423828125,0.3486328125,0.283203125,0.27734375,0.3251953125,0.38671875,0.443359375,0.4951171875,0.5390625,0.580078125,0.6240234375,0.673828125,0.7138671875,0.7021484375,0.626953125,0.5087890625,0.39453125,0.3310546875,0.3251953125,0.3310546875,0.3271484375,0.330078125,0.3603515625,0.419921875,0.49609375,0.5703125,0.6298828125,0.640625,0.6005859375,0.5400390625,0.5,0.509765625,0.5703125,0.6328125,0.6494140625,0.6005859375,0.5009765625,0.39453125,0.3310546875,0.3251953125,0.3427734375,0.3798828125,0.419921875,0.4375,0.419921875,0.376953125,0.3251953125,0.2724609375,0.2275390625,0.22265625,0.27734375,0.376953125,0.4794921875,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.5087890625,0.5625,0.59375,0.595703125,0.5791015625,0.5654296875,0.5703125,0.583984375,0.6103515625,0.642578125,0.669921875,0.68359375,0.6826171875,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.3271484375,0.3330078125,0.3408203125,0.345703125,0.34375,0.3359375,0.3251953125,0.330078125,0.3876953125,0.486328125,0.5810546875,0.6318359375,0.623046875,0.5703125,0.5185546875,0.5068359375,0.537109375,0.583984375,0.6142578125,0.6025390625,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.6123046875,0.5556640625,0.50390625,0.4599609375,0.4189453125,0.375,0.3251953125,0.287109375,0.2978515625,0.357421875,0.4326171875,0.4814453125,0.4794921875,0.4287109375,0.3828125,0.396484375,0.4697265625,0.5634765625,0.6279296875,0.6279296875,0.5703125,0.5078125,0.4814453125,0.4951171875,0.5234375,0.5361328125,0.5107421875,0.4482421875,0.3857421875,0.3671875,0.3955078125,0.4462890625,0.484375,0.4794921875,0.4287109375,0.37109375,0.33203125,0.328125,0.3583984375,0.40234375,0.4306640625,0.4287109375,0.4287109375,0.4658203125,0.529296875,0.5869140625,0.61328125,0.5966796875,0.55078125,0.509765625,0.5087890625,0.544921875,0.5927734375,0.619140625,0.603515625,0.55078125,0.4833984375,0.4052734375,0.3525390625,0.357421875,0.4189453125,0.5009765625,0.5703125,0.63671875,0.708984375,0.74609375,0.7177734375,0.6318359375,0.529296875,0.4482421875,0.3896484375,0.3876953125,0.447265625,0.5361328125,0.60546875,0.6171875,0.5703125,0.513671875,0.474609375,0.4541015625,0.44140625,0.4208984375,0.3828125,0.3251953125,0.2685546875,0.236328125,0.248046875,0.30078125,0.3701171875,0.41796875,0.4287109375,0.4306640625,0.4423828125,0.4658203125,0.4990234375,0.5322265625,0.556640625,0.5703125,0.5654296875,0.5078125,0.4140625,0.328125,0.2900390625,0.3134765625,0.376953125,0.458984375,0.5615234375,0.6435546875,0.662109375,0.611328125,0.5263671875,0.4482421875,0.3935546875,0.41015625,0.5,0.62109375,0.7109375,0.7275390625,0.673828125,0.5908203125,0.4814453125,0.3876953125,0.35546875,0.39453125,0.474609375,0.55078125,0.6171875,0.6484375,0.619140625,0.533203125,0.427734375,0.3505859375,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.4873046875,0.421875,0.375,0.3642578125,0.384765625,0.4130859375,0.4287109375,0.4326171875,0.4150390625,0.3955078125,0.3974609375,0.4345703125,0.498046875,0.5703125,0.6328125,0.6494140625,0.6005859375,0.5009765625,0.39453125,0.3310546875,0.3251953125,0.349609375,0.419921875,0.5146484375,0.234375,0.3720703125,0.5419921875,0.6748046875,0.740234375,0.779296875,0.7822265625,0.7255859375,0.619140625,0.49609375,0.404296875,0.3642578125,0.3466796875,0.373046875,0.4521484375,0.5634765625,0.6669921875,0.7275390625,0.740234375,0.7333984375,0.70703125,0.673828125,0.654296875,0.6630859375,0.6962890625,0.740234375,0.7783203125,0.7841796875,0.7587890625,0.720703125,0.6953125,0.7021484375,0.740234375,0.76953125,0.7353515625,0.6435546875,0.5380859375,0.470703125,0.4716796875,0.5302734375,0.5947265625,0.6298828125,0.6259765625,0.5966796875,0.568359375,0.568359375,0.6044921875,0.654296875,0.71484375,0.767578125,0.7919921875,0.78515625,0.76171875,0.740234375,0.7099609375,0.6396484375,0.5380859375,0.4384765625,0.3720703125,0.3515625,0.3642578125,0.3798828125,0.380859375,0.361328125,0.3251953125,0.2880859375,0.263671875,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.6533203125,0.705078125,0.740234375,0.740234375,0.7080078125,0.666015625,0.634765625,0.5927734375,0.4990234375,0.3798828125,0.2900390625,0.26171875,0.296875,0.3642578125,0.4375,0.50390625,0.5380859375,0.5244140625,0.4736328125,0.421875,0.39453125,0.3759765625,0.36328125,0.369140625,0.3974609375,0.4384765625,0.4755859375,0.5,0.5126953125,0.50390625,0.48046875,0.4609375,0.4619140625,0.4873046875,0.5302734375,0.5791015625,0.6376953125,0.6923828125,0.7294921875,0.7421875,0.7412109375,0.740234375,0.7353515625,0.705078125,0.640625,0.5517578125,0.4638671875,0.3984375,0.3642578125,0.3408203125,0.333984375,0.3525390625,0.3916015625,0.4345703125,0.462890625,0.46875,0.474609375,0.4970703125,0.5302734375,0.5576171875,0.56640625,0.5537109375,0.5302734375,0.4990234375,0.45703125,0.4189453125,0.4033203125,0.4140625,0.44140625,0.46875,0.505859375,0.5703125,0.6357421875,0.662109375,0.63671875,0.572265625,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.724609375,0.6533203125,0.546875,0.4521484375,0.412109375,0.435546875,0.5,0.5693359375,0.62109375,0.6240234375,0.568359375,0.48046875,0.4033203125,0.3642578125,0.357421875,0.4248046875,0.5576171875,0.6982421875,0.7890625,0.7978515625,0.740234375,0.677734375,0.654296875,0.6708984375,0.7041015625,0.720703125,0.697265625,0.634765625,0.5625,0.4912109375,0.4384765625,0.4140625,0.41015625,0.408203125,0.39453125,0.37890625,0.376953125,0.3857421875,0.3974609375,0.3994140625,0.3876953125,0.3642578125,0.3515625,0.390625,0.46875,0.546875,0.5830078125,0.5625,0.5,0.4267578125,0.36328125,0.3359375,0.3583984375,0.416015625,0.470703125,0.5,0.505859375,0.4638671875,0.3798828125,0.2900390625,0.23046875,0.22265625,0.2587890625,0.3115234375,0.392578125,0.494140625,0.59375,0.6708984375,0.716796875,0.740234375,0.7431640625,0.68359375,0.560546875,0.4140625,0.296875,0.2470703125,0.2587890625,0.28125,0.291015625,0.3037109375,0.3330078125,0.3876953125,0.45703125,0.5302734375,0.58984375,0.6005859375,0.560546875,0.5,0.458984375,0.4697265625,0.5302734375,0.58984375,0.59375,0.52734375,0.4140625,0.3046875,0.25,0.2587890625,0.287109375,0.3173828125,0.3369140625,0.3330078125,0.310546875,0.28125,0.2587890625,0.2421875,0.244140625,0.2841796875,0.3642578125,0.4638671875,0.5498046875,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.4375,0.47265625,0.4912109375,0.4970703125,0.498046875,0.5078125,0.5302734375,0.564453125,0.6240234375,0.6953125,0.7509765625,0.7734375,0.7646484375,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.2626953125,0.2783203125,0.2978515625,0.30859375,0.3037109375,0.2841796875,0.2587890625,0.24609375,0.2861328125,0.375,0.4775390625,0.548828125,0.564453125,0.5302734375,0.494140625,0.49609375,0.5380859375,0.5966796875,0.638671875,0.640625,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.6875,0.6064453125,0.5048828125,0.4052734375,0.328125,0.2822265625,0.2587890625,0.251953125,0.2900390625,0.3671875,0.44921875,0.501953125,0.505859375,0.46875,0.4365234375,0.4521484375,0.5107421875,0.576171875,0.6103515625,0.591796875,0.5302734375,0.466796875,0.439453125,0.44921875,0.474609375,0.484375,0.45703125,0.39453125,0.3330078125,0.3154296875,0.3525390625,0.421875,0.484375,0.501953125,0.46875,0.4287109375,0.4111328125,0.421875,0.4521484375,0.4814453125,0.48828125,0.46875,0.44921875,0.45703125,0.4970703125,0.5517578125,0.5986328125,0.6162109375,0.6044921875,0.5927734375,0.60546875,0.6357421875,0.662109375,0.66796875,0.646484375,0.6044921875,0.552734375,0.484375,0.4248046875,0.4052734375,0.4306640625,0.4814453125,0.5302734375,0.5810546875,0.6396484375,0.6708984375,0.646484375,0.5693359375,0.4736328125,0.39453125,0.333984375,0.32421875,0.375,0.4609375,0.5361328125,0.560546875,0.5302734375,0.4853515625,0.4462890625,0.4111328125,0.3779296875,0.3427734375,0.302734375,0.2587890625,0.2197265625,0.2119140625,0.2509765625,0.3251953125,0.40625,0.4580078125,0.46875,0.466796875,0.458984375,0.453125,0.4580078125,0.4765625,0.5029296875,0.5302734375,0.5419921875,0.4990234375,0.4140625,0.328125,0.28515625,0.3017578125,0.3642578125,0.4443359375,0.5419921875,0.6162109375,0.6240234375,0.5634765625,0.4736328125,0.39453125,0.3427734375,0.3740234375,0.4912109375,0.6435546875,0.7607421875,0.7919921875,0.740234375,0.6572265625,0.546875,0.44921875,0.4140625,0.4501953125,0.5283203125,0.6044921875,0.669921875,0.6953125,0.6513671875,0.541015625,0.4052734375,0.302734375,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5537109375,0.4892578125,0.4306640625,0.40234375,0.4111328125,0.4404296875,0.46875,0.486328125,0.4716796875,0.4365234375,0.4111328125,0.41796875,0.4619140625,0.5302734375,0.58984375,0.59375,0.52734375,0.4140625,0.3046875,0.25,0.2587890625,0.2998046875,0.390625,0.501953125,0.26171875,0.408203125,0.57421875,0.693359375,0.740234375,0.763671875,0.767578125,0.7294921875,0.6455078125,0.541015625,0.4501953125,0.39453125,0.3583984375,0.3671875,0.435546875,0.546875,0.6572265625,0.7255859375,0.740234375,0.736328125,0.720703125,0.701171875,0.6904296875,0.6953125,0.71484375,0.740234375,0.76171875,0.765625,0.7509765625,0.728515625,0.7138671875,0.7177734375,0.740234375,0.7490234375,0.6943359375,0.5849609375,0.4716796875,0.4052734375,0.4091796875,0.46875,0.5390625,0.5966796875,0.626953125,0.62890625,0.6181640625,0.615234375,0.634765625,0.66015625,0.681640625,0.6953125,0.7041015625,0.7119140625,0.72265625,0.740234375,0.7529296875,0.736328125,0.6767578125,0.5849609375,0.490234375,0.423828125,0.39453125,0.373046875,0.3427734375,0.30859375,0.28125,0.2646484375,0.259765625,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.666015625,0.7080078125,0.740234375,0.740234375,0.705078125,0.6533203125,0.6044921875,0.5458984375,0.4453125,0.3369140625,0.26953125,0.26953125,0.3232421875,0.39453125,0.4609375,0.4990234375,0.4912109375,0.4443359375,0.3876953125,0.3564453125,0.3642578125,0.388671875,0.4296875,0.4775390625,0.513671875,0.525390625,0.517578125,0.5,0.4765625,0.443359375,0.4140625,0.40234375,0.4150390625,0.44140625,0.46875,0.5009765625,0.5537109375,0.619140625,0.6787109375,0.7197265625,0.7373046875,0.740234375,0.73828125,0.72265625,0.6796875,0.607421875,0.521484375,0.4462890625,0.39453125,0.353515625,0.3369140625,0.3583984375,0.4140625,0.4775390625,0.5205078125,0.5302734375,0.53515625,0.5537109375,0.57421875,0.5771484375,0.5556640625,0.5146484375,0.46875,0.419921875,0.3681640625,0.33984375,0.35546875,0.4111328125,0.478515625,0.5302734375,0.5830078125,0.654296875,0.708984375,0.712890625,0.6591796875,0.576171875,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.724609375,0.6533203125,0.546875,0.4521484375,0.412109375,0.435546875,0.5,0.5732421875,0.638671875,0.6630859375,0.6240234375,0.5380859375,0.451171875,0.39453125,0.3681640625,0.4189453125,0.541015625,0.681640625,0.779296875,0.7958984375,0.740234375,0.6767578125,0.650390625,0.66015625,0.6845703125,0.6943359375,0.66796875,0.6044921875,0.5263671875,0.43359375,0.3525390625,0.3115234375,0.314453125,0.3408203125,0.3642578125,0.3896484375,0.43359375,0.4775390625,0.4970703125,0.48046875,0.4404296875,0.39453125,0.3623046875,0.3837890625,0.4521484375,0.5302734375,0.57421875,0.560546875,0.5,0.4326171875,0.390625,0.3916015625,0.4306640625,0.48046875,0.5078125,0.5,0.4716796875,0.4130859375,0.3369140625,0.26953125,0.2353515625,0.236328125,0.2587890625,0.298828125,0.38671875,0.513671875,0.6376953125,0.7216796875,0.7509765625,0.740234375,0.7041015625,0.60546875,0.4609375,0.322265625,0.2373046875,0.2236328125,0.2587890625,0.2978515625,0.314453125,0.31640625,0.3232421875,0.349609375,0.400390625,0.46875,0.529296875,0.5400390625,0.4990234375,0.4384765625,0.3984375,0.4091796875,0.46875,0.52734375,0.5283203125,0.4609375,0.35546875,0.263671875,0.2294921875,0.2587890625,0.30078125,0.322265625,0.31640625,0.2900390625,0.259765625,0.2470703125,0.2587890625,0.2822265625,0.326171875,0.39453125,0.474609375,0.548828125,0.603515625,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.3857421875,0.3916015625,0.3857421875,0.3837890625,0.3955078125,0.4267578125,0.46875,0.525390625,0.6181640625,0.720703125,0.7919921875,0.810546875,0.7841796875,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.265625,0.2919921875,0.3251953125,0.3447265625,0.3359375,0.302734375,0.2587890625,0.2236328125,0.2314453125,0.2890625,0.375,0.451171875,0.4833984375,0.46875,0.451171875,0.466796875,0.5185546875,0.5849609375,0.63671875,0.6533203125,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7001953125,0.6123046875,0.4853515625,0.361328125,0.27734375,0.248046875,0.2587890625,0.287109375,0.349609375,0.4326171875,0.5078125,0.548828125,0.5517578125,0.5302734375,0.5126953125,0.52734375,0.5625,0.587890625,0.5810546875,0.537109375,0.46875,0.4072265625,0.3837890625,0.400390625,0.4326171875,0.4501953125,0.4267578125,0.3642578125,0.3017578125,0.28515625,0.328125,0.4140625,0.4990234375,0.5419921875,0.5302734375,0.5107421875,0.517578125,0.546875,0.5771484375,0.587890625,0.5703125,0.5302734375,0.4853515625,0.4541015625,0.455078125,0.494140625,0.5546875,0.607421875,0.634765625,0.6572265625,0.6865234375,0.708984375,0.712890625,0.693359375,0.6630859375,0.634765625,0.6015625,0.546875,0.4853515625,0.44140625,0.4287109375,0.443359375,0.46875,0.501953125,0.55078125,0.5849609375,0.5771484375,0.5205078125,0.439453125,0.3642578125,0.30078125,0.2763671875,0.3056640625,0.375,0.447265625,0.482421875,0.46875,0.4423828125,0.4130859375,0.380859375,0.34765625,0.3154296875,0.2861328125,0.2587890625,0.2392578125,0.2529296875,0.30859375,0.3916015625,0.4716796875,0.51953125,0.5302734375,0.5224609375,0.48828125,0.44140625,0.40625,0.400390625,0.4267578125,0.46875,0.501953125,0.484375,0.421875,0.3525390625,0.3154296875,0.3330078125,0.39453125,0.4736328125,0.5634765625,0.6240234375,0.6162109375,0.5419921875,0.4443359375,0.3642578125,0.3134765625,0.34765625,0.4716796875,0.6318359375,0.755859375,0.791015625,0.740234375,0.658203125,0.55078125,0.4609375,0.4326171875,0.4765625,0.5576171875,0.634765625,0.7021484375,0.7353515625,0.6982421875,0.587890625,0.4423828125,0.3212890625,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6005859375,0.5419921875,0.48046875,0.4443359375,0.44921875,0.484375,0.5302734375,0.5625,0.546875,0.48828125,0.4228515625,0.388671875,0.4072265625,0.46875,0.52734375,0.5283203125,0.4609375,0.35546875,0.263671875,0.2294921875,0.2587890625,0.318359375,0.4228515625,0.5380859375,0.302734375,0.4208984375,0.5537109375,0.6455078125,0.673828125,0.6865234375,0.7021484375,0.7001953125,0.662109375,0.5927734375,0.5146484375,0.4482421875,0.3935546875,0.3759765625,0.4150390625,0.5009765625,0.5966796875,0.6591796875,0.673828125,0.671875,0.666015625,0.658203125,0.6533203125,0.6552734375,0.6630859375,0.673828125,0.681640625,0.68359375,0.677734375,0.6689453125,0.6630859375,0.6650390625,0.673828125,0.66796875,0.6044921875,0.498046875,0.3984375,0.349609375,0.3662109375,0.4287109375,0.501953125,0.5712890625,0.6201171875,0.63671875,0.6279296875,0.6171875,0.6220703125,0.6259765625,0.6103515625,0.5859375,0.5732421875,0.5869140625,0.6240234375,0.673828125,0.724609375,0.7646484375,0.76171875,0.7021484375,0.6044921875,0.509765625,0.4482421875,0.3955078125,0.34375,0.306640625,0.2958984375,0.306640625,0.3212890625,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.638671875,0.673828125,0.705078125,0.7080078125,0.673828125,0.6142578125,0.55078125,0.4794921875,0.3798828125,0.2919921875,0.2607421875,0.296875,0.3720703125,0.4482421875,0.5087890625,0.5234375,0.482421875,0.412109375,0.3525390625,0.33984375,0.376953125,0.4365234375,0.5185546875,0.5927734375,0.6259765625,0.60546875,0.5537109375,0.5,0.447265625,0.39453125,0.3623046875,0.3603515625,0.384765625,0.4130859375,0.4287109375,0.4443359375,0.482421875,0.5380859375,0.5986328125,0.6455078125,0.6689453125,0.673828125,0.6767578125,0.6845703125,0.6806640625,0.646484375,0.5849609375,0.5126953125,0.4482421875,0.390625,0.361328125,0.376953125,0.435546875,0.5078125,0.55859375,0.5703125,0.5751953125,0.59375,0.6083984375,0.5966796875,0.5537109375,0.4921875,0.4287109375,0.3642578125,0.30078125,0.275390625,0.3125,0.4013671875,0.4990234375,0.5703125,0.6376953125,0.7158203125,0.7646484375,0.7509765625,0.67578125,0.5791015625,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.6591796875,0.5966796875,0.50390625,0.427734375,0.40234375,0.43359375,0.5,0.576171875,0.658203125,0.7060546875,0.6875,0.611328125,0.5185546875,0.4482421875,0.4033203125,0.427734375,0.5205078125,0.6357421875,0.71875,0.7294921875,0.673828125,0.6103515625,0.5849609375,0.59765625,0.626953125,0.6396484375,0.6142578125,0.55078125,0.470703125,0.3671875,0.27734375,0.240234375,0.263671875,0.322265625,0.376953125,0.4375,0.5185546875,0.58984375,0.6123046875,0.5791015625,0.5126953125,0.4482421875,0.3994140625,0.40234375,0.4560546875,0.5263671875,0.5703125,0.5595703125,0.5,0.4365234375,0.4140625,0.4384765625,0.490234375,0.5341796875,0.5390625,0.5,0.4443359375,0.3798828125,0.32421875,0.294921875,0.296875,0.3125,0.3251953125,0.3505859375,0.4306640625,0.5478515625,0.6572265625,0.7177734375,0.7158203125,0.673828125,0.607421875,0.4921875,0.359375,0.2626953125,0.234375,0.2666015625,0.3251953125,0.3779296875,0.3935546875,0.3740234375,0.345703125,0.3359375,0.365234375,0.4287109375,0.4892578125,0.5,0.458984375,0.3984375,0.3583984375,0.369140625,0.4287109375,0.48828125,0.4921875,0.4365234375,0.3525390625,0.2880859375,0.2783203125,0.3251953125,0.3779296875,0.3935546875,0.3671875,0.3193359375,0.283203125,0.2841796875,0.3251953125,0.380859375,0.4482421875,0.515625,0.568359375,0.59765625,0.611328125,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.3798828125,0.3583984375,0.326171875,0.3095703125,0.32421875,0.369140625,0.4287109375,0.5029296875,0.61328125,0.724609375,0.7890625,0.787109375,0.736328125,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.333984375,0.3701171875,0.416015625,0.44140625,0.4296875,0.3857421875,0.3251953125,0.26953125,0.2431640625,0.2626953125,0.3203125,0.3876953125,0.427734375,0.4287109375,0.4248046875,0.4462890625,0.4951171875,0.5556640625,0.6044921875,0.6259765625,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.6484375,0.568359375,0.451171875,0.341796875,0.28125,0.283203125,0.3251953125,0.3828125,0.455078125,0.52734375,0.57421875,0.5888671875,0.5810546875,0.5703125,0.56640625,0.583984375,0.603515625,0.6015625,0.564453125,0.5009765625,0.4287109375,0.3681640625,0.3505859375,0.3798828125,0.4267578125,0.455078125,0.4384765625,0.376953125,0.3134765625,0.2900390625,0.328125,0.4140625,0.5078125,0.5654296875,0.5703125,0.568359375,0.5966796875,0.640625,0.6708984375,0.6669921875,0.6279296875,0.5703125,0.5048828125,0.4365234375,0.3984375,0.4169921875,0.4833984375,0.5625,0.6220703125,0.6728515625,0.7158203125,0.7333984375,0.7158203125,0.67578125,0.638671875,0.6220703125,0.60546875,0.568359375,0.515625,0.46484375,0.431640625,0.421875,0.4287109375,0.4482421875,0.4912109375,0.53515625,0.546875,0.5146484375,0.4501953125,0.376953125,0.310546875,0.2705078125,0.2763671875,0.32421875,0.3876953125,0.427734375,0.4287109375,0.41796875,0.404296875,0.38671875,0.3681640625,0.3505859375,0.3369140625,0.3251953125,0.3212890625,0.34375,0.3955078125,0.46484375,0.52734375,0.5625,0.5703125,0.55859375,0.505859375,0.4287109375,0.365234375,0.3447265625,0.373046875,0.4287109375,0.4794921875,0.484375,0.4462890625,0.3955078125,0.3671875,0.3857421875,0.4482421875,0.5263671875,0.611328125,0.662109375,0.6435546875,0.5615234375,0.458984375,0.376953125,0.32421875,0.349609375,0.4560546875,0.5947265625,0.701171875,0.7265625,0.673828125,0.5927734375,0.4921875,0.4140625,0.400390625,0.455078125,0.54296875,0.6220703125,0.693359375,0.7451171875,0.73828125,0.6552734375,0.5244140625,0.40234375,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.6015625,0.552734375,0.4931640625,0.4580078125,0.4658203125,0.509765625,0.5703125,0.6162109375,0.6025390625,0.529296875,0.435546875,0.37109375,0.37109375,0.4287109375,0.48828125,0.4921875,0.4365234375,0.3525390625,0.2880859375,0.2783203125,0.3251953125,0.3994140625,0.5068359375,0.6103515625,0.3408203125,0.412109375,0.501953125,0.5634765625,0.5791015625,0.5888671875,0.619140625,0.65234375,0.6572265625,0.623046875,0.5595703125,0.4892578125,0.423828125,0.3828125,0.390625,0.443359375,0.515625,0.5673828125,0.5791015625,0.5791015625,0.578125,0.5771484375,0.576171875,0.576171875,0.5771484375,0.5791015625,0.5810546875,0.5810546875,0.580078125,0.578125,0.5771484375,0.578125,0.5791015625,0.5673828125,0.509765625,0.42578125,0.3583984375,0.3388671875,0.373046875,0.439453125,0.5126953125,0.5791015625,0.6201171875,0.6240234375,0.599609375,0.57421875,0.5693359375,0.5615234375,0.5244140625,0.4755859375,0.44921875,0.462890625,0.5126953125,0.5791015625,0.6533203125,0.732421875,0.775390625,0.751953125,0.66796875,0.5673828125,0.4892578125,0.421875,0.36328125,0.3349609375,0.345703125,0.380859375,0.412109375,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5791015625,0.6142578125,0.6533203125,0.666015625,0.638671875,0.5791015625,0.509765625,0.4306640625,0.3359375,0.2646484375,0.2587890625,0.3193359375,0.41015625,0.4892578125,0.548828125,0.5537109375,0.5029296875,0.427734375,0.3740234375,0.375,0.4296875,0.5078125,0.60546875,0.6845703125,0.703125,0.6552734375,0.57421875,0.5,0.431640625,0.373046875,0.345703125,0.3583984375,0.396484375,0.4296875,0.439453125,0.4443359375,0.462890625,0.494140625,0.5302734375,0.560546875,0.576171875,0.5791015625,0.5869140625,0.6171875,0.6484375,0.6552734375,0.6220703125,0.5595703125,0.4892578125,0.4228515625,0.3798828125,0.3828125,0.4306640625,0.4990234375,0.5478515625,0.5595703125,0.56640625,0.5927734375,0.6181640625,0.6162109375,0.576171875,0.5107421875,0.439453125,0.3642578125,0.287109375,0.2490234375,0.2802734375,0.3720703125,0.478515625,0.5595703125,0.6357421875,0.7216796875,0.7744140625,0.759765625,0.6806640625,0.580078125,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5673828125,0.515625,0.4443359375,0.3935546875,0.388671875,0.431640625,0.5,0.5791015625,0.6708984375,0.734375,0.73046875,0.662109375,0.568359375,0.4892578125,0.43359375,0.4345703125,0.4951171875,0.5791015625,0.6376953125,0.63671875,0.5791015625,0.517578125,0.4990234375,0.5234375,0.5654296875,0.58984375,0.5712890625,0.509765625,0.4287109375,0.326171875,0.244140625,0.224609375,0.2734375,0.35546875,0.4296875,0.5078125,0.60546875,0.68359375,0.7001953125,0.6494140625,0.5654296875,0.4892578125,0.431640625,0.4228515625,0.4658203125,0.5283203125,0.5693359375,0.5595703125,0.5,0.439453125,0.4267578125,0.4638671875,0.5234375,0.564453125,0.5556640625,0.5,0.4306640625,0.3701171875,0.3388671875,0.345703125,0.37890625,0.41015625,0.419921875,0.4345703125,0.4951171875,0.58203125,0.65234375,0.673828125,0.642578125,0.5791015625,0.4990234375,0.3896484375,0.2890625,0.24609375,0.2744140625,0.345703125,0.419921875,0.478515625,0.490234375,0.4541015625,0.3994140625,0.365234375,0.37890625,0.439453125,0.5,0.509765625,0.4697265625,0.4091796875,0.369140625,0.3798828125,0.439453125,0.4990234375,0.5087890625,0.46484375,0.400390625,0.35546875,0.3623046875,0.419921875,0.478515625,0.490234375,0.4521484375,0.3935546875,0.353515625,0.36328125,0.419921875,0.4892578125,0.556640625,0.6015625,0.611328125,0.59375,0.5732421875,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.421875,0.3837890625,0.333984375,0.306640625,0.3203125,0.37109375,0.439453125,0.5205078125,0.6298828125,0.7255859375,0.7626953125,0.728515625,0.654296875,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.4296875,0.470703125,0.5224609375,0.5517578125,0.5390625,0.48828125,0.419921875,0.3525390625,0.3046875,0.296875,0.3330078125,0.3896484375,0.4306640625,0.439453125,0.44140625,0.45703125,0.486328125,0.5224609375,0.5517578125,0.5673828125,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.564453125,0.50390625,0.4169921875,0.3466796875,0.3251953125,0.3564453125,0.419921875,0.490234375,0.5576171875,0.6025390625,0.611328125,0.5908203125,0.5673828125,0.5595703125,0.564453125,0.5908203125,0.6171875,0.6171875,0.578125,0.51171875,0.439453125,0.3798828125,0.3681640625,0.4052734375,0.4638671875,0.501953125,0.490234375,0.4296875,0.36328125,0.3271484375,0.3447265625,0.41015625,0.4921875,0.5478515625,0.5595703125,0.5673828125,0.607421875,0.6591796875,0.689453125,0.677734375,0.626953125,0.5595703125,0.4814453125,0.392578125,0.330078125,0.333984375,0.400390625,0.4931640625,0.5693359375,0.6357421875,0.6865234375,0.701171875,0.6728515625,0.62109375,0.580078125,0.5693359375,0.564453125,0.546875,0.515625,0.4814453125,0.4541015625,0.4404296875,0.439453125,0.451171875,0.4931640625,0.5439453125,0.5712890625,0.5546875,0.5,0.4296875,0.3603515625,0.310546875,0.30078125,0.333984375,0.3896484375,0.4306640625,0.439453125,0.4375,0.435546875,0.431640625,0.427734375,0.423828125,0.421875,0.419921875,0.421875,0.4375,0.4677734375,0.505859375,0.5380859375,0.5556640625,0.5595703125,0.546875,0.4912109375,0.4130859375,0.3515625,0.337890625,0.3740234375,0.439453125,0.4990234375,0.5146484375,0.4853515625,0.4384765625,0.41015625,0.4287109375,0.4892578125,0.568359375,0.654296875,0.7080078125,0.6923828125,0.6123046875,0.5107421875,0.4296875,0.373046875,0.380859375,0.4541015625,0.5546875,0.6279296875,0.6357421875,0.5791015625,0.4990234375,0.404296875,0.3349609375,0.33203125,0.396484375,0.490234375,0.5693359375,0.6455078125,0.720703125,0.751953125,0.7119140625,0.6123046875,0.5009765625,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5576171875,0.5146484375,0.4599609375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.6142578125,0.609375,0.54296875,0.451171875,0.3857421875,0.3828125,0.439453125,0.4990234375,0.5087890625,0.46484375,0.400390625,0.35546875,0.3623046875,0.419921875,0.5,0.6025390625,0.6865234375,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.3798828125,0.373046875,0.3955078125,0.421875,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.421875,0.396484375,0.3740234375,0.3798828125,0.4228515625,0.4892578125,0.5595703125,0.623046875,0.658203125,0.6435546875,0.5810546875,0.5009765625,0.4443359375,0.4296875,0.41796875,0.375,0.3203125,0.2890625,0.30078125,0.3515625,0.419921875,0.4990234375,0.5986328125,0.677734375,0.6953125,0.646484375,0.564453125,0.4892578125,0.4248046875,0.384765625,0.388671875,0.4365234375,0.5029296875,0.5498046875,0.5595703125,0.5458984375,0.4951171875,0.42578125,0.376953125,0.3759765625,0.4208984375,0.4892578125,0.5576171875,0.6015625,0.6005859375,0.5537109375,0.4873046875,0.439453125,0.4296875,0.4423828125,0.490234375,0.5546875,0.599609375,0.5986328125,0.5546875,0.4892578125,0.4130859375,0.32421875,0.259765625,0.259765625,0.32421875,0.4130859375,0.4892578125,0.5478515625,0.564453125,0.5390625,0.498046875,0.4765625,0.4970703125,0.5595703125,0.6376953125,0.724609375,0.779296875,0.765625,0.6875,0.5888671875,0.509765625,0.4423828125,0.3984375,0.3984375,0.44140625,0.5048828125,0.5498046875,0.5595703125,0.5546875,0.5361328125,0.5048828125,0.46875,0.4384765625,0.4228515625,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.4521484375,0.5078125,0.587890625,0.650390625,0.6669921875,0.6328125,0.5693359375,0.490234375,0.3837890625,0.2890625,0.251953125,0.2841796875,0.357421875,0.4296875,0.5078125,0.6083984375,0.689453125,0.7099609375,0.6611328125,0.5771484375,0.5,0.4287109375,0.3701171875,0.3447265625,0.359375,0.3994140625,0.4326171875,0.439453125,0.4296875,0.396484375,0.3583984375,0.345703125,0.373046875,0.431640625,0.5,0.576171875,0.66796875,0.7353515625,0.73828125,0.6767578125,0.5869140625,0.509765625,0.44921875,0.4306640625,0.453125,0.4921875,0.5126953125,0.4912109375,0.4296875,0.37109375,0.369140625,0.4267578125,0.5078125,0.5654296875,0.5654296875,0.509765625,0.43359375,0.349609375,0.2998046875,0.318359375,0.3994140625,0.5,0.5791015625,0.6552734375,0.7353515625,0.7783203125,0.75390625,0.669921875,0.568359375,0.4892578125,0.4326171875,0.423828125,0.4638671875,0.5244140625,0.5654296875,0.556640625,0.5,0.443359375,0.4345703125,0.4755859375,0.53515625,0.572265625,0.5595703125,0.5,0.4306640625,0.3857421875,0.3876953125,0.435546875,0.5048828125,0.5556640625,0.5693359375,0.5771484375,0.603515625,0.626953125,0.6220703125,0.5791015625,0.5107421875,0.439453125,0.365234375,0.2900390625,0.255859375,0.29296875,0.3896484375,0.498046875,0.5791015625,0.6376953125,0.6484375,0.609375,0.5498046875,0.5107421875,0.5205078125,0.5791015625,0.6376953125,0.646484375,0.603515625,0.5400390625,0.49609375,0.5029296875,0.5595703125,0.6162109375,0.6240234375,0.5830078125,0.5244140625,0.486328125,0.4990234375,0.5595703125,0.619140625,0.630859375,0.591796875,0.5322265625,0.4912109375,0.5009765625,0.5595703125,0.625,0.6611328125,0.6474609375,0.5859375,0.5078125,0.4521484375,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5791015625,0.638671875,0.666015625,0.6533203125,0.6142578125,0.5791015625,0.5693359375,0.5576171875,0.515625,0.4619140625,0.431640625,0.443359375,0.4931640625,0.5595703125,0.6318359375,0.7060546875,0.7412109375,0.70703125,0.6142578125,0.5087890625,0.4296875,0.3662109375,0.33203125,0.3486328125,0.4111328125,0.4912109375,0.546875,0.5595703125,0.5693359375,0.609375,0.662109375,0.69140625,0.6787109375,0.6279296875,0.5595703125,0.4912109375,0.4404296875,0.4287109375,0.4599609375,0.5146484375,0.5576171875,0.5693359375,0.5673828125,0.5517578125,0.51953125,0.48046875,0.4453125,0.4248046875,0.419921875,0.4189453125,0.419921875,0.4228515625,0.4267578125,0.4296875,0.4306640625,0.4296875,0.427734375,0.4267578125,0.427734375,0.4306640625,0.4345703125,0.4375,0.439453125,0.4345703125,0.4091796875,0.3837890625,0.3857421875,0.423828125,0.48828125,0.5595703125,0.625,0.662109375,0.650390625,0.58984375,0.5107421875,0.4541015625,0.439453125,0.451171875,0.5068359375,0.5888671875,0.654296875,0.671875,0.6357421875,0.5693359375,0.5087890625,0.49609375,0.533203125,0.58984375,0.6279296875,0.6181640625,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.44921875,0.48828125,0.537109375,0.5625,0.544921875,0.490234375,0.419921875,0.33984375,0.2470703125,0.1826171875,0.185546875,0.2548828125,0.349609375,0.4296875,0.5,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.421875,0.4375,0.4677734375,0.505859375,0.5380859375,0.5556640625,0.5595703125,0.5693359375,0.6123046875,0.6689453125,0.7041015625,0.6953125,0.646484375,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.5791015625,0.5771484375,0.57421875,0.5693359375,0.5654296875,0.5615234375,0.5595703125,0.5546875,0.5380859375,0.509765625,0.478515625,0.453125,0.4404296875,0.439453125,0.4345703125,0.4091796875,0.3857421875,0.388671875,0.4296875,0.4970703125,0.5693359375,0.6279296875,0.6298828125,0.57421875,0.4951171875,0.439453125,0.44140625,0.5,0.580078125,0.6806640625,0.7607421875,0.7783203125,0.7275390625,0.64453125,0.5693359375,0.5087890625,0.48046875,0.4853515625,0.50390625,0.5087890625,0.48046875,0.419921875,0.34375,0.255859375,0.1943359375,0.1962890625,0.2626953125,0.353515625,0.4296875,0.5087890625,0.615234375,0.708984375,0.744140625,0.708984375,0.6337890625,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.4814453125,0.51171875,0.5078125,0.4912109375,0.4873046875,0.517578125,0.5791015625,0.6376953125,0.6484375,0.609375,0.5498046875,0.5107421875,0.5205078125,0.5791015625,0.6552734375,0.7392578125,0.7880859375,0.380859375,0.3427734375,0.34375,0.36328125,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.3642578125,0.3505859375,0.353515625,0.3876953125,0.4482421875,0.5146484375,0.5703125,0.6162109375,0.63671875,0.6103515625,0.54296875,0.4599609375,0.3994140625,0.376953125,0.357421875,0.3076171875,0.2490234375,0.2138671875,0.220703125,0.265625,0.3251953125,0.3955078125,0.484375,0.5615234375,0.5888671875,0.5615234375,0.5029296875,0.4482421875,0.40234375,0.3857421875,0.412109375,0.4697265625,0.533203125,0.5703125,0.5703125,0.546875,0.4833984375,0.400390625,0.341796875,0.3359375,0.3798828125,0.4482421875,0.5146484375,0.552734375,0.5419921875,0.4892578125,0.421875,0.37890625,0.376953125,0.396484375,0.4423828125,0.4970703125,0.533203125,0.5322265625,0.4970703125,0.4482421875,0.3916015625,0.32421875,0.27734375,0.27734375,0.32421875,0.3916015625,0.4482421875,0.490234375,0.5009765625,0.484375,0.4638671875,0.466796875,0.5048828125,0.5703125,0.6474609375,0.7333984375,0.7880859375,0.779296875,0.7099609375,0.62109375,0.55078125,0.4931640625,0.45703125,0.45703125,0.4931640625,0.541015625,0.5712890625,0.5703125,0.5546875,0.5166015625,0.4609375,0.400390625,0.353515625,0.330078125,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.4404296875,0.4931640625,0.57421875,0.6474609375,0.6806640625,0.6669921875,0.6220703125,0.5595703125,0.462890625,0.361328125,0.2958984375,0.2890625,0.326171875,0.376953125,0.439453125,0.533203125,0.6240234375,0.6650390625,0.640625,0.5732421875,0.5,0.4296875,0.375,0.353515625,0.369140625,0.4052734375,0.4306640625,0.4287109375,0.4130859375,0.384765625,0.3603515625,0.3623046875,0.39453125,0.447265625,0.5,0.55859375,0.6376953125,0.705078125,0.72265625,0.6845703125,0.6171875,0.55078125,0.4970703125,0.4736328125,0.4765625,0.4873046875,0.48046875,0.4423828125,0.376953125,0.3203125,0.32421875,0.3955078125,0.498046875,0.5791015625,0.5966796875,0.55078125,0.4853515625,0.419921875,0.390625,0.4228515625,0.5068359375,0.6025390625,0.673828125,0.7353515625,0.7822265625,0.78125,0.716796875,0.611328125,0.5107421875,0.4482421875,0.40625,0.4052734375,0.4453125,0.501953125,0.5419921875,0.541015625,0.5,0.4599609375,0.46484375,0.5087890625,0.560546875,0.5849609375,0.5625,0.5,0.4306640625,0.3876953125,0.3935546875,0.4521484375,0.5341796875,0.5986328125,0.6220703125,0.6357421875,0.6552734375,0.66015625,0.630859375,0.5693359375,0.494140625,0.4287109375,0.3662109375,0.3154296875,0.3134765625,0.3779296875,0.4892578125,0.599609375,0.673828125,0.724609375,0.7333984375,0.69921875,0.6474609375,0.61328125,0.6220703125,0.673828125,0.7236328125,0.7265625,0.6767578125,0.6015625,0.5419921875,0.53125,0.5703125,0.609375,0.60546875,0.5615234375,0.5087890625,0.484375,0.5078125,0.5703125,0.630859375,0.6484375,0.615234375,0.5595703125,0.517578125,0.5205078125,0.5703125,0.6259765625,0.654296875,0.6337890625,0.5703125,0.4931640625,0.4404296875,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.6142578125,0.673828125,0.7080078125,0.705078125,0.673828125,0.638671875,0.6220703125,0.603515625,0.5595703125,0.5087890625,0.4775390625,0.4833984375,0.5205078125,0.5703125,0.6220703125,0.666015625,0.669921875,0.619140625,0.5283203125,0.4384765625,0.376953125,0.33203125,0.318359375,0.3515625,0.4248046875,0.505859375,0.55859375,0.5703125,0.578125,0.6142578125,0.66015625,0.685546875,0.6748046875,0.6298828125,0.5703125,0.509765625,0.4658203125,0.4580078125,0.4931640625,0.552734375,0.6015625,0.6220703125,0.6259765625,0.6044921875,0.5478515625,0.4697265625,0.3935546875,0.34375,0.3251953125,0.318359375,0.3232421875,0.33984375,0.3623046875,0.3798828125,0.384765625,0.376953125,0.3671875,0.359375,0.361328125,0.375,0.396484375,0.416015625,0.4287109375,0.43359375,0.4228515625,0.41015625,0.41796875,0.4521484375,0.5087890625,0.5703125,0.6279296875,0.6611328125,0.6494140625,0.5908203125,0.51171875,0.451171875,0.4287109375,0.43359375,0.4912109375,0.5849609375,0.6708984375,0.708984375,0.685546875,0.6220703125,0.5595703125,0.5361328125,0.5576171875,0.599609375,0.6298828125,0.62109375,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.4365234375,0.4658203125,0.49609375,0.4990234375,0.462890625,0.3974609375,0.3251953125,0.2470703125,0.1591796875,0.1044921875,0.1181640625,0.1962890625,0.296875,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.3212890625,0.34375,0.3955078125,0.46484375,0.52734375,0.5625,0.5703125,0.5810546875,0.62890625,0.6982421875,0.7509765625,0.7626953125,0.73046875,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.6728515625,0.666015625,0.650390625,0.6279296875,0.6025390625,0.58203125,0.5703125,0.5556640625,0.5244140625,0.4833984375,0.4462890625,0.423828125,0.4208984375,0.4287109375,0.43359375,0.4228515625,0.4140625,0.4306640625,0.4794921875,0.548828125,0.6220703125,0.6787109375,0.6748046875,0.607421875,0.513671875,0.4462890625,0.4423828125,0.5,0.5791015625,0.67578125,0.7548828125,0.7783203125,0.7421875,0.6787109375,0.6220703125,0.572265625,0.5283203125,0.4912109375,0.4560546875,0.4189453125,0.375,0.3251953125,0.2705078125,0.2099609375,0.173828125,0.1875,0.24609375,0.3193359375,0.376953125,0.439453125,0.5361328125,0.634765625,0.689453125,0.68359375,0.6318359375,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.384765625,0.4365234375,0.4794921875,0.51953125,0.5625,0.6142578125,0.673828125,0.724609375,0.7333984375,0.69921875,0.6474609375,0.61328125,0.6220703125,0.673828125,0.73828125,0.8046875,0.833984375,0.361328125,0.30859375,0.306640625,0.3349609375,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.33984375,0.3291015625,0.34765625,0.39453125,0.4541015625,0.50390625,0.5302734375,0.5478515625,0.5576171875,0.54296875,0.5029296875,0.4462890625,0.396484375,0.3642578125,0.330078125,0.271484375,0.208984375,0.1728515625,0.177734375,0.2138671875,0.2587890625,0.30859375,0.369140625,0.421875,0.447265625,0.439453125,0.416015625,0.39453125,0.3828125,0.400390625,0.447265625,0.501953125,0.5419921875,0.5498046875,0.5302734375,0.4912109375,0.4140625,0.3251953125,0.2705078125,0.2724609375,0.32421875,0.39453125,0.4599609375,0.4931640625,0.48046875,0.4306640625,0.375,0.3486328125,0.3642578125,0.392578125,0.4267578125,0.453125,0.4580078125,0.44140625,0.416015625,0.39453125,0.373046875,0.3486328125,0.3310546875,0.3310546875,0.3486328125,0.373046875,0.39453125,0.40625,0.39453125,0.375,0.3720703125,0.4013671875,0.4599609375,0.5302734375,0.607421875,0.6953125,0.7587890625,0.767578125,0.72265625,0.6572265625,0.6044921875,0.5625,0.53515625,0.5302734375,0.541015625,0.552734375,0.55078125,0.5302734375,0.498046875,0.4453125,0.3798828125,0.3203125,0.279296875,0.26171875,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.4755859375,0.5068359375,0.5576171875,0.609375,0.6435546875,0.6494140625,0.634765625,0.607421875,0.5498046875,0.4716796875,0.400390625,0.357421875,0.349609375,0.3642578125,0.3955078125,0.4677734375,0.5546875,0.61328125,0.6162109375,0.568359375,0.5,0.4326171875,0.3916015625,0.3916015625,0.4248046875,0.466796875,0.4853515625,0.46875,0.44140625,0.4150390625,0.40234375,0.4140625,0.443359375,0.4765625,0.5,0.5263671875,0.580078125,0.640625,0.6796875,0.6806640625,0.6484375,0.6044921875,0.564453125,0.5439453125,0.53515625,0.521484375,0.48828125,0.43359375,0.3642578125,0.306640625,0.3095703125,0.3837890625,0.4970703125,0.595703125,0.6328125,0.6044921875,0.5576171875,0.5146484375,0.501953125,0.5380859375,0.6103515625,0.6865234375,0.740234375,0.7783203125,0.78125,0.7265625,0.6240234375,0.509765625,0.4267578125,0.39453125,0.380859375,0.390625,0.4248046875,0.46875,0.5029296875,0.5126953125,0.5,0.4912109375,0.5185546875,0.568359375,0.607421875,0.6083984375,0.56640625,0.5,0.4296875,0.3779296875,0.375,0.4306640625,0.5185546875,0.595703125,0.634765625,0.6630859375,0.6884765625,0.6904296875,0.654296875,0.58984375,0.5205078125,0.46875,0.4248046875,0.3984375,0.4169921875,0.48828125,0.5908203125,0.68359375,0.740234375,0.7783203125,0.7841796875,0.7587890625,0.720703125,0.6953125,0.7021484375,0.740234375,0.7763671875,0.7734375,0.720703125,0.6376953125,0.560546875,0.5224609375,0.5302734375,0.5380859375,0.5107421875,0.4609375,0.421875,0.4208984375,0.462890625,0.5302734375,0.59375,0.619140625,0.5986328125,0.5498046875,0.50390625,0.49609375,0.5302734375,0.572265625,0.5986328125,0.5927734375,0.5576171875,0.5107421875,0.4765625,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6533203125,0.705078125,0.740234375,0.740234375,0.7080078125,0.666015625,0.634765625,0.6044921875,0.5615234375,0.5185546875,0.494140625,0.494140625,0.509765625,0.5302734375,0.546875,0.5517578125,0.5322265625,0.48828125,0.43359375,0.388671875,0.3642578125,0.349609375,0.35546875,0.3896484375,0.44140625,0.4921875,0.5234375,0.5302734375,0.5361328125,0.5625,0.5966796875,0.615234375,0.607421875,0.57421875,0.5302734375,0.484375,0.44921875,0.4443359375,0.48046875,0.5419921875,0.6005859375,0.634765625,0.6552734375,0.64453125,0.5849609375,0.4853515625,0.376953125,0.296875,0.2587890625,0.2392578125,0.248046875,0.2861328125,0.3369140625,0.375,0.3837890625,0.3642578125,0.3369140625,0.3154296875,0.314453125,0.341796875,0.3896484375,0.4375,0.46875,0.490234375,0.490234375,0.474609375,0.4609375,0.462890625,0.48828125,0.5302734375,0.576171875,0.6171875,0.6318359375,0.607421875,0.5556640625,0.5029296875,0.46875,0.45703125,0.5,0.5849609375,0.6708984375,0.7138671875,0.697265625,0.634765625,0.5693359375,0.5302734375,0.52734375,0.548828125,0.5703125,0.56640625,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.474609375,0.490234375,0.4970703125,0.4716796875,0.4111328125,0.333984375,0.2587890625,0.181640625,0.1005859375,0.056640625,0.0849609375,0.1748046875,0.2822265625,0.3642578125,0.4345703125,0.490234375,0.5,0.4521484375,0.37109375,0.296875,0.2587890625,0.2392578125,0.2529296875,0.30859375,0.3916015625,0.4716796875,0.51953125,0.5302734375,0.541015625,0.5927734375,0.673828125,0.748046875,0.787109375,0.779296875,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7392578125,0.728515625,0.701171875,0.6572265625,0.60546875,0.560546875,0.5302734375,0.4990234375,0.45703125,0.4189453125,0.4033203125,0.4140625,0.44140625,0.46875,0.48828125,0.486328125,0.474609375,0.4775390625,0.5078125,0.5654296875,0.634765625,0.69140625,0.685546875,0.615234375,0.5185546875,0.4482421875,0.4423828125,0.5,0.5751953125,0.6552734375,0.712890625,0.7255859375,0.69921875,0.66015625,0.634765625,0.6103515625,0.5615234375,0.48828125,0.4052734375,0.33203125,0.283203125,0.2587890625,0.240234375,0.228515625,0.234375,0.26171875,0.302734375,0.3408203125,0.3642578125,0.392578125,0.453125,0.52734375,0.58203125,0.5966796875,0.572265625,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.3076171875,0.373046875,0.455078125,0.5439453125,0.6259765625,0.69140625,0.740234375,0.7783203125,0.7841796875,0.7587890625,0.720703125,0.6953125,0.7021484375,0.740234375,0.787109375,0.830078125,0.8427734375,0.3251953125,0.28125,0.2958984375,0.345703125,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.435546875,0.4521484375,0.4306640625,0.375,0.3115234375,0.2685546875,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.3544921875,0.341796875,0.3642578125,0.4111328125,0.4580078125,0.4794921875,0.46875,0.455078125,0.458984375,0.47265625,0.4794921875,0.46875,0.4375,0.39453125,0.34375,0.2783203125,0.220703125,0.1923828125,0.201171875,0.23046875,0.2587890625,0.2841796875,0.3056640625,0.3193359375,0.328125,0.3359375,0.3466796875,0.3642578125,0.3916015625,0.4443359375,0.5048828125,0.5439453125,0.544921875,0.513671875,0.46875,0.4130859375,0.3251953125,0.240234375,0.201171875,0.224609375,0.2900390625,0.3642578125,0.4287109375,0.4580078125,0.4443359375,0.40234375,0.3642578125,0.359375,0.39453125,0.435546875,0.453125,0.44140625,0.40625,0.369140625,0.3525390625,0.3642578125,0.384765625,0.41015625,0.427734375,0.427734375,0.41015625,0.384765625,0.3642578125,0.337890625,0.294921875,0.26171875,0.267578125,0.318359375,0.39453125,0.46875,0.546875,0.634765625,0.7041015625,0.728515625,0.7080078125,0.6669921875,0.634765625,0.611328125,0.5986328125,0.5908203125,0.5771484375,0.5517578125,0.513671875,0.46875,0.419921875,0.361328125,0.306640625,0.26953125,0.2568359375,0.2578125,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.529296875,0.52734375,0.529296875,0.541015625,0.5615234375,0.583984375,0.6044921875,0.62109375,0.6201171875,0.5908203125,0.53515625,0.470703125,0.419921875,0.39453125,0.388671875,0.4287109375,0.501953125,0.568359375,0.5927734375,0.564453125,0.5,0.4365234375,0.4140625,0.44140625,0.4990234375,0.55078125,0.5634765625,0.5302734375,0.4873046875,0.4619140625,0.4609375,0.48046875,0.50390625,0.5126953125,0.5,0.48828125,0.505859375,0.5517578125,0.607421875,0.646484375,0.6552734375,0.634765625,0.61328125,0.6064453125,0.6015625,0.580078125,0.5322265625,0.4658203125,0.39453125,0.333984375,0.326171875,0.3857421875,0.4912109375,0.59375,0.6455078125,0.634765625,0.6083984375,0.5859375,0.5849609375,0.61328125,0.6611328125,0.7080078125,0.740234375,0.75390625,0.716796875,0.6240234375,0.5048828125,0.4052734375,0.3583984375,0.3642578125,0.3828125,0.40234375,0.421875,0.44140625,0.4609375,0.48046875,0.5,0.5283203125,0.5830078125,0.640625,0.6630859375,0.6357421875,0.572265625,0.5,0.42578125,0.3603515625,0.3359375,0.375,0.4609375,0.5478515625,0.6044921875,0.650390625,0.6904296875,0.701171875,0.673828125,0.6181640625,0.5634765625,0.5302734375,0.505859375,0.49609375,0.5185546875,0.57421875,0.6455078125,0.7060546875,0.740234375,0.76171875,0.765625,0.7509765625,0.728515625,0.7138671875,0.7177734375,0.740234375,0.76171875,0.759765625,0.7177734375,0.6435546875,0.5595703125,0.498046875,0.46875,0.4404296875,0.384765625,0.328125,0.3056640625,0.3330078125,0.396484375,0.46875,0.53515625,0.572265625,0.56640625,0.5244140625,0.4755859375,0.453125,0.46875,0.49609375,0.5224609375,0.541015625,0.5458984375,0.5400390625,0.5322265625,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.666015625,0.7080078125,0.740234375,0.740234375,0.705078125,0.6533203125,0.6044921875,0.5595703125,0.521484375,0.4970703125,0.48828125,0.48828125,0.484375,0.46875,0.4462890625,0.412109375,0.3779296875,0.3583984375,0.359375,0.375,0.39453125,0.4150390625,0.4375,0.4580078125,0.4697265625,0.4716796875,0.4697265625,0.46875,0.47265625,0.48828125,0.5078125,0.5185546875,0.513671875,0.4951171875,0.46875,0.4404296875,0.4111328125,0.40234375,0.4306640625,0.4892578125,0.5537109375,0.6044921875,0.6474609375,0.6640625,0.6298828125,0.5380859375,0.4189453125,0.3173828125,0.2587890625,0.224609375,0.234375,0.2900390625,0.36328125,0.4189453125,0.4287109375,0.39453125,0.3466796875,0.3037109375,0.2919921875,0.328125,0.400390625,0.4765625,0.5302734375,0.5693359375,0.5791015625,0.5546875,0.5078125,0.4658203125,0.451171875,0.46875,0.5029296875,0.5556640625,0.607421875,0.6318359375,0.6171875,0.576171875,0.5302734375,0.4970703125,0.5146484375,0.5771484375,0.646484375,0.68359375,0.666015625,0.6044921875,0.53515625,0.4814453125,0.4580078125,0.4638671875,0.482421875,0.48828125,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.533203125,0.5419921875,0.53515625,0.494140625,0.419921875,0.3349609375,0.2587890625,0.1826171875,0.1044921875,0.068359375,0.1044921875,0.201171875,0.3115234375,0.39453125,0.4677734375,0.529296875,0.546875,0.5,0.4072265625,0.31640625,0.2587890625,0.2197265625,0.2119140625,0.2509765625,0.3251953125,0.40625,0.4580078125,0.46875,0.4794921875,0.52734375,0.607421875,0.6904296875,0.74609375,0.759765625,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.740234375,0.7333984375,0.70703125,0.654296875,0.5859375,0.51953125,0.46875,0.419921875,0.3681640625,0.33984375,0.35546875,0.4111328125,0.478515625,0.5302734375,0.5654296875,0.56640625,0.5380859375,0.5078125,0.50390625,0.5390625,0.6044921875,0.662109375,0.66015625,0.5966796875,0.5078125,0.4443359375,0.4423828125,0.5,0.5693359375,0.623046875,0.6455078125,0.6357421875,0.6083984375,0.59375,0.6044921875,0.6123046875,0.5732421875,0.4853515625,0.3779296875,0.2900390625,0.2509765625,0.2587890625,0.283203125,0.32421875,0.3720703125,0.408203125,0.4208984375,0.412109375,0.39453125,0.3818359375,0.3916015625,0.4248046875,0.4638671875,0.4892578125,0.490234375,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.2919921875,0.3544921875,0.447265625,0.5517578125,0.64453125,0.70703125,0.740234375,0.76171875,0.765625,0.7509765625,0.728515625,0.7138671875,0.7177734375,0.740234375,0.7666015625,0.7890625,0.7900390625,0.2880859375,0.2646484375,0.306640625,0.380859375,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.5048828125,0.5341796875,0.5185546875,0.4609375,0.3876953125,0.3369140625,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.39453125,0.376953125,0.3994140625,0.4423828125,0.474609375,0.470703125,0.4287109375,0.388671875,0.388671875,0.4296875,0.482421875,0.5126953125,0.5,0.4482421875,0.3837890625,0.318359375,0.271484375,0.2607421875,0.28125,0.3095703125,0.3251953125,0.330078125,0.314453125,0.2900390625,0.27734375,0.2900390625,0.328125,0.376953125,0.4365234375,0.515625,0.58203125,0.6005859375,0.5625,0.494140625,0.4287109375,0.3583984375,0.265625,0.189453125,0.1708984375,0.21875,0.2998046875,0.376953125,0.4404296875,0.4658203125,0.44921875,0.4111328125,0.384765625,0.396484375,0.4482421875,0.4990234375,0.505859375,0.462890625,0.396484375,0.3447265625,0.337890625,0.376953125,0.43359375,0.5009765625,0.5478515625,0.5478515625,0.5009765625,0.43359375,0.376953125,0.3193359375,0.24609375,0.1953125,0.2001953125,0.2626953125,0.3505859375,0.4287109375,0.5048828125,0.5869140625,0.650390625,0.67578125,0.6630859375,0.6376953125,0.6220703125,0.615234375,0.6201171875,0.62109375,0.6005859375,0.5537109375,0.4921875,0.4287109375,0.3671875,0.3095703125,0.275390625,0.2734375,0.296875,0.3193359375,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5625,0.5302734375,0.48828125,0.4619140625,0.466796875,0.501953125,0.55078125,0.60546875,0.66015625,0.6845703125,0.6572265625,0.5859375,0.5068359375,0.4482421875,0.4091796875,0.419921875,0.4755859375,0.541015625,0.5771484375,0.560546875,0.5,0.439453125,0.431640625,0.4794921875,0.5546875,0.6123046875,0.6181640625,0.5703125,0.515625,0.4921875,0.5029296875,0.5322265625,0.552734375,0.5419921875,0.5,0.4541015625,0.4375,0.4638671875,0.521484375,0.5849609375,0.6220703125,0.6220703125,0.6171875,0.630859375,0.6435546875,0.6318359375,0.587890625,0.5205078125,0.4482421875,0.3837890625,0.3583984375,0.3916015625,0.47265625,0.5625,0.6181640625,0.6220703125,0.611328125,0.6044921875,0.60546875,0.619140625,0.640625,0.66015625,0.673828125,0.669921875,0.611328125,0.509765625,0.4052734375,0.3408203125,0.3359375,0.376953125,0.4228515625,0.4453125,0.443359375,0.4326171875,0.431640625,0.4541015625,0.5,0.55859375,0.6376953125,0.701171875,0.7099609375,0.658203125,0.576171875,0.5,0.4228515625,0.3408203125,0.29296875,0.3115234375,0.3876953125,0.48046875,0.55078125,0.6123046875,0.666015625,0.689453125,0.6728515625,0.62890625,0.587890625,0.5703125,0.560546875,0.5595703125,0.5732421875,0.6005859375,0.6328125,0.6591796875,0.673828125,0.681640625,0.68359375,0.677734375,0.6689453125,0.6630859375,0.6650390625,0.673828125,0.6845703125,0.6923828125,0.677734375,0.6298828125,0.55859375,0.4853515625,0.4287109375,0.369140625,0.2900390625,0.2275390625,0.21875,0.2705078125,0.3525390625,0.4287109375,0.4970703125,0.5439453125,0.548828125,0.5146484375,0.462890625,0.4287109375,0.4287109375,0.4423828125,0.466796875,0.5,0.533203125,0.556640625,0.568359375,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.638671875,0.673828125,0.705078125,0.7080078125,0.673828125,0.6142578125,0.55078125,0.49609375,0.4658203125,0.46484375,0.48046875,0.4892578125,0.47265625,0.4287109375,0.373046875,0.30859375,0.2646484375,0.26953125,0.3212890625,0.390625,0.4482421875,0.4970703125,0.5322265625,0.537109375,0.5107421875,0.46875,0.4365234375,0.4287109375,0.4306640625,0.4365234375,0.4443359375,0.4482421875,0.4462890625,0.439453125,0.4287109375,0.4130859375,0.384765625,0.3642578125,0.375,0.421875,0.4873046875,0.55078125,0.6142578125,0.6669921875,0.673828125,0.6142578125,0.5068359375,0.3994140625,0.3251953125,0.27734375,0.283203125,0.3447265625,0.4287109375,0.490234375,0.49609375,0.4482421875,0.3828125,0.31640625,0.287109375,0.3193359375,0.4033203125,0.4990234375,0.5703125,0.625,0.646484375,0.619140625,0.55078125,0.4755859375,0.4306640625,0.4287109375,0.451171875,0.51171875,0.5908203125,0.6494140625,0.6611328125,0.6279296875,0.5703125,0.51953125,0.5146484375,0.552734375,0.603515625,0.6318359375,0.61328125,0.55078125,0.48046875,0.4189453125,0.3857421875,0.388671875,0.4130859375,0.431640625,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.57421875,0.5859375,0.5849609375,0.55078125,0.4833984375,0.4013671875,0.3251953125,0.2490234375,0.169921875,0.1298828125,0.162109375,0.255859375,0.365234375,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.2685546875,0.236328125,0.248046875,0.30078125,0.3701171875,0.41796875,0.4287109375,0.4365234375,0.4716796875,0.5341796875,0.603515625,0.6552734375,0.677734375,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.67578125,0.6826171875,0.673828125,0.634765625,0.5693359375,0.494140625,0.4287109375,0.3642578125,0.30078125,0.275390625,0.3125,0.4013671875,0.4990234375,0.5703125,0.619140625,0.6201171875,0.57421875,0.5126953125,0.4755859375,0.490234375,0.55078125,0.609375,0.6142578125,0.5625,0.48828125,0.4365234375,0.4404296875,0.5,0.5634765625,0.5927734375,0.5791015625,0.541015625,0.5087890625,0.5107421875,0.55078125,0.5888671875,0.568359375,0.490234375,0.38671875,0.30859375,0.2880859375,0.3251953125,0.384765625,0.466796875,0.5419921875,0.57421875,0.5537109375,0.501953125,0.4482421875,0.3994140625,0.3662109375,0.359375,0.380859375,0.4130859375,0.4326171875,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.3427734375,0.3857421875,0.4580078125,0.541015625,0.61328125,0.65625,0.673828125,0.681640625,0.68359375,0.677734375,0.6689453125,0.6630859375,0.6650390625,0.673828125,0.68359375,0.69140625,0.689453125,0.263671875,0.259765625,0.3212890625,0.412109375,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.5556640625,0.5986328125,0.595703125,0.5478515625,0.48046875,0.4306640625,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.4296875,0.412109375,0.439453125,0.484375,0.5126953125,0.498046875,0.439453125,0.3837890625,0.380859375,0.431640625,0.5029296875,0.552734375,0.546875,0.4892578125,0.419921875,0.359375,0.3291015625,0.33984375,0.376953125,0.41015625,0.419921875,0.412109375,0.375,0.326171875,0.2998046875,0.3134765625,0.36328125,0.4296875,0.505859375,0.5986328125,0.6650390625,0.6689453125,0.6064453125,0.517578125,0.439453125,0.361328125,0.267578125,0.1982421875,0.1953125,0.2587890625,0.3505859375,0.4296875,0.4912109375,0.509765625,0.484375,0.4404296875,0.4130859375,0.4296875,0.4892578125,0.546875,0.55078125,0.5,0.4248046875,0.3720703125,0.3740234375,0.4296875,0.505859375,0.595703125,0.6591796875,0.6591796875,0.595703125,0.505859375,0.4296875,0.353515625,0.2626953125,0.19921875,0.2001953125,0.2666015625,0.3603515625,0.439453125,0.5126953125,0.58203125,0.625,0.6298828125,0.60546875,0.578125,0.5693359375,0.57421875,0.5986328125,0.62109375,0.6171875,0.576171875,0.5107421875,0.439453125,0.37109375,0.3173828125,0.2998046875,0.32421875,0.3720703125,0.41015625,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.548828125,0.5029296875,0.4404296875,0.3984375,0.400390625,0.4443359375,0.509765625,0.5849609375,0.6728515625,0.7314453125,0.7265625,0.658203125,0.56640625,0.4892578125,0.43359375,0.42578125,0.46875,0.53125,0.5712890625,0.5595703125,0.5,0.4404296875,0.4365234375,0.48828125,0.564453125,0.6181640625,0.6162109375,0.5595703125,0.4990234375,0.48046875,0.5048828125,0.5478515625,0.57421875,0.5576171875,0.5,0.4345703125,0.39453125,0.3984375,0.4462890625,0.5126953125,0.5595703125,0.5693359375,0.576171875,0.6064453125,0.6416015625,0.65234375,0.6220703125,0.560546875,0.4892578125,0.421875,0.3798828125,0.3857421875,0.4375,0.5087890625,0.55859375,0.5693359375,0.5673828125,0.56640625,0.5673828125,0.5703125,0.57421875,0.5771484375,0.5791015625,0.568359375,0.5107421875,0.4267578125,0.3583984375,0.3359375,0.3671875,0.4296875,0.48828125,0.5068359375,0.484375,0.4453125,0.421875,0.4404296875,0.5,0.576171875,0.66796875,0.7333984375,0.7353515625,0.6708984375,0.5791015625,0.5,0.419921875,0.328125,0.2646484375,0.2685546875,0.3369140625,0.4306640625,0.509765625,0.5791015625,0.6376953125,0.662109375,0.646484375,0.60546875,0.5693359375,0.5595703125,0.5576171875,0.55859375,0.5615234375,0.56640625,0.572265625,0.5771484375,0.5791015625,0.5810546875,0.5810546875,0.580078125,0.578125,0.5771484375,0.578125,0.5791015625,0.5869140625,0.611328125,0.630859375,0.623046875,0.5771484375,0.509765625,0.439453125,0.36328125,0.271484375,0.205078125,0.2041015625,0.2685546875,0.3603515625,0.439453125,0.5087890625,0.560546875,0.572265625,0.5419921875,0.48828125,0.4482421875,0.439453125,0.4443359375,0.4599609375,0.4873046875,0.517578125,0.54296875,0.556640625,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5791015625,0.6142578125,0.6533203125,0.666015625,0.638671875,0.5791015625,0.509765625,0.44921875,0.4296875,0.4521484375,0.4921875,0.515625,0.498046875,0.439453125,0.365234375,0.28125,0.228515625,0.2421875,0.31640625,0.412109375,0.4892578125,0.5546875,0.5986328125,0.6005859375,0.55859375,0.49609375,0.4501953125,0.439453125,0.4404296875,0.4404296875,0.4423828125,0.4423828125,0.4423828125,0.44140625,0.439453125,0.4296875,0.396484375,0.359375,0.3486328125,0.37890625,0.439453125,0.509765625,0.5849609375,0.666015625,0.7119140625,0.6875,0.6025390625,0.5,0.419921875,0.36328125,0.361328125,0.416015625,0.4931640625,0.5478515625,0.5458984375,0.4892578125,0.4130859375,0.330078125,0.2802734375,0.298828125,0.37890625,0.4794921875,0.5595703125,0.6240234375,0.66015625,0.6455078125,0.5830078125,0.5048828125,0.4501953125,0.439453125,0.4541015625,0.5107421875,0.58984375,0.650390625,0.662109375,0.625,0.5595703125,0.5,0.484375,0.513671875,0.560546875,0.5888671875,0.5703125,0.509765625,0.4384765625,0.3779296875,0.3505859375,0.36328125,0.4013671875,0.4326171875,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.56640625,0.5908203125,0.61328125,0.6064453125,0.5625,0.4931640625,0.419921875,0.341796875,0.255859375,0.205078125,0.2236328125,0.3056640625,0.408203125,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.5,0.419921875,0.3525390625,0.3037109375,0.294921875,0.330078125,0.38671875,0.4296875,0.439453125,0.443359375,0.4609375,0.4931640625,0.53125,0.5615234375,0.5771484375,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5859375,0.609375,0.630859375,0.623046875,0.5791015625,0.5107421875,0.439453125,0.3642578125,0.287109375,0.2490234375,0.2802734375,0.3720703125,0.478515625,0.5595703125,0.6162109375,0.6201171875,0.568359375,0.4951171875,0.4453125,0.4501953125,0.509765625,0.5693359375,0.578125,0.5361328125,0.47265625,0.4306640625,0.4404296875,0.5,0.5595703125,0.57421875,0.5380859375,0.4814453125,0.443359375,0.453125,0.509765625,0.564453125,0.5634765625,0.505859375,0.423828125,0.365234375,0.365234375,0.419921875,0.4970703125,0.595703125,0.6748046875,0.693359375,0.6455078125,0.5634765625,0.4892578125,0.421875,0.3671875,0.3447265625,0.361328125,0.400390625,0.4326171875,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4248046875,0.4443359375,0.4794921875,0.51953125,0.5546875,0.57421875,0.5791015625,0.5810546875,0.5810546875,0.580078125,0.578125,0.5771484375,0.578125,0.5791015625,0.5810546875,0.58203125,0.5810546875,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.26171875,0.255859375,0.318359375,0.41015625,0.4892578125,0.5576171875,0.6015625,0.599609375,0.55078125,0.4814453125,0.431640625,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.5791015625,0.638671875,0.6669921875,0.65625,0.6201171875,0.5869140625,0.5791015625,0.5869140625,0.6201171875,0.65625,0.6669921875,0.638671875,0.5791015625,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.51953125,0.5,0.5244140625,0.564453125,0.5888671875,0.5693359375,0.509765625,0.4423828125,0.396484375,0.392578125,0.435546875,0.4990234375,0.546875,0.5595703125,0.55078125,0.51171875,0.4609375,0.4326171875,0.447265625,0.5,0.5693359375,0.6484375,0.740234375,0.8037109375,0.80078125,0.7314453125,0.6376953125,0.5595703125,0.4814453125,0.392578125,0.330078125,0.333984375,0.400390625,0.4931640625,0.5693359375,0.625,0.626953125,0.57421875,0.4990234375,0.4482421875,0.4521484375,0.509765625,0.5693359375,0.5888671875,0.564453125,0.5244140625,0.5,0.51953125,0.5791015625,0.6572265625,0.75,0.81640625,0.8173828125,0.751953125,0.6591796875,0.5791015625,0.5,0.4052734375,0.3359375,0.33203125,0.3935546875,0.4833984375,0.5595703125,0.6220703125,0.654296875,0.634765625,0.568359375,0.486328125,0.4306640625,0.419921875,0.4345703125,0.494140625,0.5791015625,0.6455078125,0.662109375,0.6259765625,0.5595703125,0.490234375,0.4384765625,0.4287109375,0.4638671875,0.521484375,0.5673828125,0.5791015625,0.5771484375,0.5615234375,0.53125,0.4931640625,0.4609375,0.443359375,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.4111328125,0.380859375,0.349609375,0.3447265625,0.37890625,0.4404296875,0.509765625,0.5849609375,0.6728515625,0.7314453125,0.7265625,0.658203125,0.56640625,0.4892578125,0.4326171875,0.4248046875,0.4677734375,0.53125,0.57421875,0.56640625,0.509765625,0.451171875,0.431640625,0.4521484375,0.48828125,0.505859375,0.482421875,0.419921875,0.3623046875,0.3603515625,0.4189453125,0.5009765625,0.55859375,0.5576171875,0.5,0.427734375,0.3642578125,0.33203125,0.3408203125,0.376953125,0.41015625,0.419921875,0.43359375,0.486328125,0.55859375,0.611328125,0.6171875,0.576171875,0.509765625,0.439453125,0.3779296875,0.3466796875,0.353515625,0.384765625,0.4140625,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.4130859375,0.3916015625,0.373046875,0.384765625,0.43359375,0.505859375,0.5791015625,0.63671875,0.638671875,0.580078125,0.498046875,0.4404296875,0.44140625,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2578125,0.255859375,0.3203125,0.412109375,0.4892578125,0.556640625,0.6015625,0.603515625,0.560546875,0.4970703125,0.4501953125,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.4443359375,0.5048828125,0.5908203125,0.6591796875,0.677734375,0.64453125,0.5791015625,0.5009765625,0.408203125,0.33984375,0.3349609375,0.3955078125,0.4833984375,0.5595703125,0.6259765625,0.6767578125,0.6904296875,0.6630859375,0.611328125,0.5703125,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4501953125,0.498046875,0.5615234375,0.6064453125,0.607421875,0.564453125,0.5,0.4443359375,0.44140625,0.4921875,0.56640625,0.6181640625,0.615234375,0.5595703125,0.4814453125,0.3818359375,0.3017578125,0.2822265625,0.3310546875,0.4130859375,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5703125,0.5712890625,0.5703125,0.568359375,0.5673828125,0.568359375,0.5693359375,0.5595703125,0.5126953125,0.4462890625,0.3984375,0.39453125,0.4345703125,0.5,0.5771484375,0.6748046875,0.7529296875,0.76953125,0.7197265625,0.6357421875,0.5595703125,0.4990234375,0.4794921875,0.501953125,0.5419921875,0.5654296875,0.5478515625,0.4892578125,0.412109375,0.3125,0.232421875,0.212890625,0.26171875,0.34375,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.56640625,0.5908203125,0.615234375,0.61328125,0.5732421875,0.5087890625,0.439453125,0.384765625,0.3837890625,0.4384765625,0.515625,0.5693359375,0.56640625,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.43359375,0.4931640625,0.580078125,0.6494140625,0.669921875,0.6357421875,0.5693359375,0.48828125,0.3876953125,0.3095703125,0.2939453125,0.3466796875,0.4326171875,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5107421875,0.4560546875,0.4375,0.4609375,0.5087890625,0.548828125,0.5595703125,0.5576171875,0.5419921875,0.5107421875,0.4736328125,0.44140625,0.4228515625,0.419921875,0.419921875,0.421875,0.4248046875,0.4296875,0.43359375,0.4375,0.439453125,0.4541015625,0.51171875,0.591796875,0.6533203125,0.6650390625,0.626953125,0.5595703125,0.4765625,0.3662109375,0.271484375,0.2373046875,0.2744140625,0.3525390625,0.4296875,0.4912109375,0.509765625,0.484375,0.4404296875,0.4130859375,0.4296875,0.4892578125,0.548828125,0.5615234375,0.525390625,0.4697265625,0.431640625,0.4423828125,0.5,0.5556640625,0.5625,0.51953125,0.4580078125,0.41796875,0.4296875,0.4892578125,0.55078125,0.5712890625,0.5478515625,0.5068359375,0.4814453125,0.5,0.5595703125,0.6357421875,0.7177734375,0.7666015625,0.7470703125,0.6669921875,0.5673828125,0.4892578125,0.4248046875,0.3857421875,0.3935546875,0.4462890625,0.5166015625,0.5673828125,0.5791015625,0.5791015625,0.5771484375,0.57421875,0.5693359375,0.5654296875,0.5615234375,0.5595703125,0.55859375,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.578125,0.5791015625,0.576171875,0.55859375,0.5263671875,0.48828125,0.4541015625,0.4345703125,0.4296875,0.427734375,0.4267578125,0.42578125,0.423828125,0.4228515625,0.421875,0.419921875,0.41796875,0.4169921875,0.4169921875,0.2724609375,0.2451171875,0.2890625,0.3701171875,0.4482421875,0.5146484375,0.552734375,0.5380859375,0.4755859375,0.39453125,0.3388671875,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.61328125,0.673828125,0.7119140625,0.71875,0.7001953125,0.6787109375,0.673828125,0.6787109375,0.7001953125,0.71875,0.7119140625,0.673828125,0.61328125,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.619140625,0.595703125,0.6025390625,0.6220703125,0.62890625,0.60546875,0.55078125,0.490234375,0.4423828125,0.4267578125,0.453125,0.505859375,0.55078125,0.5703125,0.5712890625,0.5439453125,0.50390625,0.482421875,0.5,0.5517578125,0.6220703125,0.69921875,0.7802734375,0.828125,0.8095703125,0.7333984375,0.640625,0.5703125,0.5048828125,0.4365234375,0.3984375,0.4169921875,0.4833984375,0.5625,0.6220703125,0.6611328125,0.654296875,0.6025390625,0.5361328125,0.4931640625,0.5,0.55078125,0.60546875,0.62890625,0.6220703125,0.6025390625,0.595703125,0.619140625,0.673828125,0.7431640625,0.8291015625,0.89453125,0.8984375,0.83984375,0.751953125,0.673828125,0.59375,0.5,0.4248046875,0.40625,0.4462890625,0.5126953125,0.5703125,0.6123046875,0.6142578125,0.5615234375,0.470703125,0.3798828125,0.328125,0.3251953125,0.3515625,0.4306640625,0.5400390625,0.630859375,0.6640625,0.6357421875,0.5703125,0.5009765625,0.455078125,0.45703125,0.5107421875,0.5888671875,0.6513671875,0.673828125,0.677734375,0.6552734375,0.603515625,0.5341796875,0.4716796875,0.4365234375,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.3134765625,0.3037109375,0.314453125,0.3564453125,0.423828125,0.4951171875,0.55078125,0.60546875,0.66015625,0.6845703125,0.6572265625,0.5859375,0.5068359375,0.4482421875,0.408203125,0.4130859375,0.4638671875,0.53515625,0.5859375,0.5908203125,0.55078125,0.505859375,0.4833984375,0.4775390625,0.4697265625,0.443359375,0.3935546875,0.3251953125,0.26953125,0.2802734375,0.359375,0.4658203125,0.544921875,0.5556640625,0.5,0.423828125,0.3447265625,0.28515625,0.2646484375,0.28125,0.3095703125,0.3251953125,0.349609375,0.419921875,0.5185546875,0.599609375,0.630859375,0.607421875,0.55078125,0.4873046875,0.421875,0.3671875,0.337890625,0.33203125,0.33203125,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.32421875,0.32421875,0.3486328125,0.41015625,0.5009765625,0.595703125,0.673828125,0.7294921875,0.71875,0.6396484375,0.533203125,0.4541015625,0.443359375,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2548828125,0.24609375,0.298828125,0.37890625,0.4482421875,0.5068359375,0.5498046875,0.556640625,0.525390625,0.4755859375,0.4375,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.4033203125,0.482421875,0.595703125,0.6953125,0.7421875,0.7275390625,0.673828125,0.6044921875,0.517578125,0.4443359375,0.421875,0.4541015625,0.5146484375,0.5703125,0.62109375,0.6640625,0.681640625,0.6640625,0.6240234375,0.5869140625,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4375,0.4755859375,0.529296875,0.5703125,0.576171875,0.5478515625,0.5,0.458984375,0.4599609375,0.50390625,0.5654296875,0.6103515625,0.611328125,0.5703125,0.5087890625,0.4208984375,0.3388671875,0.3017578125,0.32421875,0.3837890625,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.6298828125,0.6318359375,0.6259765625,0.6171875,0.611328125,0.61328125,0.6220703125,0.6220703125,0.5849609375,0.521484375,0.4638671875,0.4375,0.4541015625,0.5,0.5595703125,0.640625,0.7119140625,0.734375,0.701171875,0.634765625,0.5703125,0.5146484375,0.484375,0.484375,0.4990234375,0.5078125,0.4921875,0.4482421875,0.38671875,0.298828125,0.216796875,0.1796875,0.2021484375,0.26171875,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.57421875,0.5859375,0.5927734375,0.5771484375,0.5361328125,0.4814453125,0.4287109375,0.390625,0.404296875,0.4677734375,0.5478515625,0.6015625,0.6005859375,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.3427734375,0.419921875,0.5400390625,0.6484375,0.701171875,0.6845703125,0.6220703125,0.5419921875,0.4453125,0.3701171875,0.3564453125,0.4052734375,0.4833984375,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.609375,0.546875,0.50390625,0.4990234375,0.5234375,0.5537109375,0.5703125,0.57421875,0.552734375,0.5,0.4306640625,0.3681640625,0.3330078125,0.3251953125,0.326171875,0.3330078125,0.3486328125,0.37109375,0.396484375,0.4169921875,0.4287109375,0.4521484375,0.5185546875,0.60546875,0.6689453125,0.6796875,0.6376953125,0.5703125,0.4853515625,0.3681640625,0.2587890625,0.2080078125,0.2314453125,0.3017578125,0.376953125,0.4404296875,0.4658203125,0.44921875,0.4111328125,0.384765625,0.396484375,0.4482421875,0.501953125,0.5234375,0.5078125,0.474609375,0.44921875,0.45703125,0.5,0.5380859375,0.52734375,0.4716796875,0.40625,0.3701171875,0.38671875,0.4482421875,0.51171875,0.5439453125,0.5380859375,0.5146484375,0.5,0.517578125,0.5703125,0.6337890625,0.693359375,0.7158203125,0.6787109375,0.5966796875,0.5087890625,0.4482421875,0.4033203125,0.3935546875,0.4345703125,0.515625,0.6044921875,0.6611328125,0.673828125,0.6728515625,0.666015625,0.650390625,0.6279296875,0.6025390625,0.58203125,0.5703125,0.5625,0.5673828125,0.5888671875,0.6201171875,0.6513671875,0.669921875,0.673828125,0.66796875,0.6376953125,0.580078125,0.505859375,0.4375,0.39453125,0.376953125,0.3671875,0.359375,0.353515625,0.3486328125,0.34375,0.3359375,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.287109375,0.2314453125,0.2509765625,0.3193359375,0.39453125,0.4609375,0.4970703125,0.48046875,0.4140625,0.330078125,0.2724609375,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.65234375,0.701171875,0.740234375,0.7568359375,0.7529296875,0.7431640625,0.740234375,0.7431640625,0.7529296875,0.7568359375,0.740234375,0.701171875,0.65234375,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.69921875,0.67578125,0.6708984375,0.673828125,0.6689453125,0.6455078125,0.6044921875,0.5546875,0.4970703125,0.453125,0.44140625,0.462890625,0.5,0.5302734375,0.5478515625,0.5380859375,0.513671875,0.5,0.5166015625,0.56640625,0.634765625,0.708984375,0.7744140625,0.7978515625,0.7587890625,0.673828125,0.5859375,0.5302734375,0.4853515625,0.4541015625,0.455078125,0.494140625,0.5546875,0.607421875,0.634765625,0.646484375,0.6298828125,0.5927734375,0.5576171875,0.5458984375,0.5634765625,0.6044921875,0.6455078125,0.6689453125,0.673828125,0.6708984375,0.67578125,0.69921875,0.740234375,0.7939453125,0.869140625,0.9306640625,0.9423828125,0.89453125,0.81640625,0.740234375,0.6630859375,0.57421875,0.5,0.4658203125,0.4765625,0.505859375,0.5302734375,0.5380859375,0.50390625,0.427734375,0.3369140625,0.2666015625,0.2421875,0.2587890625,0.30078125,0.39453125,0.513671875,0.6044921875,0.6318359375,0.5966796875,0.5302734375,0.4609375,0.4189453125,0.4326171875,0.5078125,0.61328125,0.69921875,0.740234375,0.759765625,0.74609375,0.6904296875,0.607421875,0.52734375,0.4794921875,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.23828125,0.25,0.30859375,0.4033203125,0.5029296875,0.57421875,0.6044921875,0.62109375,0.6201171875,0.5908203125,0.53515625,0.470703125,0.419921875,0.39453125,0.3837890625,0.40625,0.4638671875,0.53515625,0.5927734375,0.615234375,0.6044921875,0.587890625,0.57421875,0.546875,0.494140625,0.41796875,0.333984375,0.2587890625,0.205078125,0.2236328125,0.3173828125,0.44140625,0.53515625,0.5537109375,0.5,0.4208984375,0.3232421875,0.2373046875,0.1923828125,0.197265625,0.228515625,0.2587890625,0.298828125,0.38671875,0.501953125,0.6015625,0.650390625,0.64453125,0.6044921875,0.5556640625,0.49609375,0.4306640625,0.369140625,0.3212890625,0.2861328125,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.259765625,0.27734375,0.3310546875,0.427734375,0.5478515625,0.6591796875,0.740234375,0.7939453125,0.775390625,0.681640625,0.5576171875,0.4638671875,0.4453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4208984375,0.3291015625,0.2587890625,0.2421875,0.2802734375,0.3427734375,0.39453125,0.4404296875,0.482421875,0.5078125,0.5078125,0.4912109375,0.4736328125,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.404296875,0.49609375,0.619140625,0.7255859375,0.7822265625,0.779296875,0.740234375,0.6884765625,0.619140625,0.5498046875,0.5048828125,0.4951171875,0.509765625,0.5302734375,0.5517578125,0.5810546875,0.6044921875,0.607421875,0.5888671875,0.55859375,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.47265625,0.4873046875,0.5078125,0.5244140625,0.52734375,0.517578125,0.5,0.484375,0.4853515625,0.5029296875,0.5263671875,0.5439453125,0.544921875,0.5302734375,0.501953125,0.4453125,0.3779296875,0.3310546875,0.3232421875,0.3505859375,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.6572265625,0.6611328125,0.646484375,0.6240234375,0.609375,0.61328125,0.634765625,0.6552734375,0.646484375,0.607421875,0.5517578125,0.505859375,0.48828125,0.5,0.525390625,0.5693359375,0.61328125,0.6318359375,0.6162109375,0.576171875,0.5302734375,0.4853515625,0.4462890625,0.421875,0.4140625,0.4140625,0.41015625,0.39453125,0.3662109375,0.3095703125,0.2421875,0.1953125,0.1875,0.2158203125,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.53125,0.53515625,0.53515625,0.52734375,0.509765625,0.4892578125,0.46875,0.4599609375,0.4892578125,0.5498046875,0.6123046875,0.6484375,0.642578125,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.27734375,0.365234375,0.501953125,0.6318359375,0.703125,0.6962890625,0.634765625,0.55859375,0.4755859375,0.421875,0.4248046875,0.48046875,0.55078125,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.6875,0.61328125,0.5380859375,0.4912109375,0.482421875,0.5029296875,0.5302734375,0.548828125,0.53515625,0.48046875,0.3974609375,0.3173828125,0.2685546875,0.2587890625,0.259765625,0.2705078125,0.2978515625,0.341796875,0.3935546875,0.4384765625,0.46875,0.505859375,0.57421875,0.646484375,0.681640625,0.662109375,0.6015625,0.5302734375,0.4462890625,0.33203125,0.228515625,0.1845703125,0.2138671875,0.2880859375,0.3642578125,0.4287109375,0.4580078125,0.4443359375,0.40234375,0.3642578125,0.359375,0.39453125,0.4384765625,0.4736328125,0.4912109375,0.4912109375,0.484375,0.4853515625,0.5,0.505859375,0.46484375,0.3916015625,0.3251953125,0.30078125,0.330078125,0.39453125,0.4609375,0.50390625,0.513671875,0.5,0.484375,0.4921875,0.5302734375,0.5732421875,0.6015625,0.59375,0.546875,0.478515625,0.421875,0.39453125,0.3837890625,0.412109375,0.4853515625,0.5849609375,0.6767578125,0.7294921875,0.740234375,0.7392578125,0.728515625,0.701171875,0.6572265625,0.60546875,0.560546875,0.5302734375,0.5087890625,0.515625,0.5576171875,0.6240234375,0.6904296875,0.7314453125,0.740234375,0.7353515625,0.705078125,0.640625,0.5517578125,0.4638671875,0.3984375,0.3642578125,0.33984375,0.3232421875,0.314453125,0.30859375,0.2998046875,0.283203125,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.294921875,0.2236328125,0.2294921875,0.291015625,0.3642578125,0.431640625,0.470703125,0.4609375,0.40234375,0.326171875,0.271484375,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.6630859375,0.6953125,0.7236328125,0.740234375,0.744140625,0.7412109375,0.740234375,0.7412109375,0.744140625,0.740234375,0.7236328125,0.6953125,0.6630859375,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.7158203125,0.69921875,0.6904296875,0.6845703125,0.67578125,0.6591796875,0.634765625,0.599609375,0.533203125,0.4580078125,0.40625,0.396484375,0.4248046875,0.46875,0.5068359375,0.5146484375,0.5,0.4853515625,0.4951171875,0.5380859375,0.6044921875,0.6748046875,0.7265625,0.728515625,0.673828125,0.5849609375,0.5078125,0.46875,0.44921875,0.45703125,0.4970703125,0.5517578125,0.5986328125,0.6162109375,0.6044921875,0.5830078125,0.5576171875,0.541015625,0.5458984375,0.572265625,0.6064453125,0.634765625,0.6591796875,0.67578125,0.6845703125,0.6904296875,0.69921875,0.7158203125,0.740234375,0.775390625,0.8369140625,0.89453125,0.9140625,0.880859375,0.8134765625,0.740234375,0.6669921875,0.5927734375,0.533203125,0.5,0.4892578125,0.484375,0.46875,0.439453125,0.3740234375,0.2900390625,0.22265625,0.1982421875,0.216796875,0.2587890625,0.318359375,0.41796875,0.52734375,0.59375,0.59375,0.5400390625,0.46875,0.3994140625,0.353515625,0.3671875,0.44921875,0.572265625,0.6796875,0.740234375,0.779296875,0.787109375,0.748046875,0.673828125,0.5927734375,0.541015625,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.2265625,0.25,0.33984375,0.4658203125,0.580078125,0.638671875,0.634765625,0.607421875,0.5498046875,0.4716796875,0.400390625,0.357421875,0.349609375,0.3642578125,0.3857421875,0.421875,0.4716796875,0.52734375,0.5771484375,0.61328125,0.634765625,0.654296875,0.6640625,0.6376953125,0.560546875,0.44921875,0.33984375,0.2587890625,0.205078125,0.2236328125,0.3173828125,0.44140625,0.53515625,0.5537109375,0.5,0.41796875,0.3095703125,0.208984375,0.15625,0.1650390625,0.2109375,0.2587890625,0.3154296875,0.4091796875,0.521484375,0.61328125,0.658203125,0.658203125,0.634765625,0.6064453125,0.568359375,0.513671875,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.259765625,0.27734375,0.3310546875,0.427734375,0.5478515625,0.6591796875,0.740234375,0.7939453125,0.775390625,0.681640625,0.5576171875,0.4638671875,0.4453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4228515625,0.3388671875,0.275390625,0.2587890625,0.287109375,0.33203125,0.3642578125,0.3935546875,0.4326171875,0.474609375,0.5078125,0.5244140625,0.529296875,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.4501953125,0.541015625,0.6455078125,0.7294921875,0.767578125,0.763671875,0.740234375,0.7109375,0.669921875,0.6181640625,0.56640625,0.521484375,0.490234375,0.46875,0.45703125,0.4697265625,0.5,0.52734375,0.533203125,0.5107421875,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5263671875,0.51171875,0.4912109375,0.474609375,0.4716796875,0.4814453125,0.5,0.5146484375,0.513671875,0.49609375,0.47265625,0.455078125,0.4541015625,0.46875,0.4814453125,0.466796875,0.427734375,0.380859375,0.34765625,0.34375,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.642578125,0.6494140625,0.6240234375,0.5849609375,0.5595703125,0.56640625,0.6044921875,0.6484375,0.6806640625,0.6796875,0.640625,0.580078125,0.5263671875,0.5,0.484375,0.4814453125,0.4912109375,0.501953125,0.5048828125,0.4931640625,0.46875,0.4384765625,0.3955078125,0.3525390625,0.328125,0.328125,0.3447265625,0.3642578125,0.3759765625,0.3623046875,0.322265625,0.275390625,0.2431640625,0.23828125,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4677734375,0.4638671875,0.4638671875,0.4716796875,0.4892578125,0.509765625,0.5302734375,0.5546875,0.5966796875,0.642578125,0.673828125,0.6787109375,0.6611328125,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.27734375,0.3603515625,0.4912109375,0.61328125,0.6767578125,0.666015625,0.6044921875,0.5322265625,0.4677734375,0.44140625,0.46875,0.5341796875,0.5986328125,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7021484375,0.623046875,0.5244140625,0.4443359375,0.412109375,0.427734375,0.46875,0.5087890625,0.515625,0.4775390625,0.40234375,0.322265625,0.2705078125,0.2587890625,0.2587890625,0.265625,0.2919921875,0.3447265625,0.4130859375,0.4794921875,0.5302734375,0.58203125,0.650390625,0.6982421875,0.693359375,0.6328125,0.546875,0.46875,0.3876953125,0.2841796875,0.201171875,0.181640625,0.2314453125,0.31640625,0.39453125,0.4599609375,0.4931640625,0.48046875,0.4306640625,0.375,0.3486328125,0.3642578125,0.3955078125,0.4423828125,0.4912109375,0.5244140625,0.53125,0.5185546875,0.5,0.4677734375,0.3955078125,0.30859375,0.2509765625,0.248046875,0.294921875,0.3642578125,0.4326171875,0.482421875,0.5,0.4853515625,0.4609375,0.451171875,0.46875,0.490234375,0.4853515625,0.4521484375,0.4052734375,0.3662109375,0.3515625,0.3642578125,0.3916015625,0.451171875,0.5380859375,0.6298828125,0.69921875,0.734375,0.740234375,0.740234375,0.7333984375,0.70703125,0.654296875,0.5859375,0.51953125,0.46875,0.431640625,0.4306640625,0.4833984375,0.57421875,0.66796875,0.7275390625,0.740234375,0.73828125,0.72265625,0.6796875,0.607421875,0.521484375,0.4462890625,0.39453125,0.353515625,0.330078125,0.3251953125,0.328125,0.3232421875,0.2998046875,0.2587890625,0.21484375,0.181640625,0.1728515625,0.291015625,0.2265625,0.2392578125,0.3037109375,0.376953125,0.4462890625,0.4921875,0.494140625,0.4501953125,0.384765625,0.3369140625,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.6328125,0.646484375,0.66015625,0.669921875,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.669921875,0.66015625,0.646484375,0.6328125,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.6630859375,0.6552734375,0.650390625,0.6455078125,0.6396484375,0.6318359375,0.6220703125,0.5986328125,0.5322265625,0.44140625,0.369140625,0.3447265625,0.3720703125,0.4287109375,0.4814453125,0.5,0.484375,0.4609375,0.455078125,0.4873046875,0.55078125,0.619140625,0.6630859375,0.6572265625,0.5986328125,0.515625,0.4521484375,0.4287109375,0.4287109375,0.4658203125,0.529296875,0.5869140625,0.61328125,0.5966796875,0.55078125,0.501953125,0.466796875,0.4658203125,0.501953125,0.556640625,0.6025390625,0.6220703125,0.6318359375,0.6396484375,0.6455078125,0.650390625,0.6552734375,0.6630859375,0.673828125,0.693359375,0.7431640625,0.7978515625,0.82421875,0.802734375,0.744140625,0.673828125,0.60546875,0.552734375,0.5224609375,0.509765625,0.5,0.474609375,0.4287109375,0.3681640625,0.283203125,0.205078125,0.1728515625,0.19921875,0.26171875,0.3251953125,0.3974609375,0.4970703125,0.5849609375,0.6162109375,0.580078125,0.5048828125,0.4287109375,0.3564453125,0.2978515625,0.2939453125,0.3623046875,0.4814453125,0.59765625,0.673828125,0.73046875,0.7626953125,0.7509765625,0.6982421875,0.62890625,0.5810546875,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.2802734375,0.30078125,0.3935546875,0.51953125,0.62109375,0.65625,0.6220703125,0.5595703125,0.462890625,0.361328125,0.2958984375,0.2890625,0.326171875,0.376953125,0.42578125,0.462890625,0.4892578125,0.509765625,0.5361328125,0.5732421875,0.6220703125,0.6748046875,0.7177734375,0.7138671875,0.64453125,0.52734375,0.4091796875,0.3251953125,0.26953125,0.2802734375,0.359375,0.4658203125,0.544921875,0.5556640625,0.5,0.4169921875,0.3076171875,0.2099609375,0.1689453125,0.1943359375,0.259765625,0.3251953125,0.3935546875,0.48046875,0.5654296875,0.6220703125,0.640625,0.6337890625,0.6220703125,0.61328125,0.60546875,0.5830078125,0.53515625,0.4658203125,0.390625,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.32421875,0.32421875,0.3486328125,0.41015625,0.5009765625,0.595703125,0.673828125,0.7294921875,0.71875,0.6396484375,0.533203125,0.4541015625,0.443359375,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.42578125,0.3525390625,0.3037109375,0.2978515625,0.3251953125,0.3603515625,0.376953125,0.3916015625,0.4228515625,0.4677734375,0.5146484375,0.5498046875,0.5673828125,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.5146484375,0.5927734375,0.662109375,0.7001953125,0.7021484375,0.6865234375,0.673828125,0.6650390625,0.6572265625,0.638671875,0.599609375,0.5439453125,0.482421875,0.4287109375,0.3876953125,0.38671875,0.4228515625,0.4697265625,0.4970703125,0.4814453125,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5615234375,0.5234375,0.4697265625,0.4287109375,0.4228515625,0.451171875,0.5,0.5400390625,0.5390625,0.4951171875,0.43359375,0.388671875,0.3876953125,0.4287109375,0.4755859375,0.5009765625,0.4912109375,0.451171875,0.404296875,0.3759765625,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.6025390625,0.611328125,0.5771484375,0.525390625,0.4912109375,0.5,0.55078125,0.6171875,0.6845703125,0.72265625,0.705078125,0.6376953125,0.55859375,0.5,0.4501953125,0.41015625,0.392578125,0.3994140625,0.419921875,0.43359375,0.4287109375,0.41015625,0.3671875,0.3154296875,0.28515625,0.2900390625,0.3271484375,0.376953125,0.423828125,0.44921875,0.439453125,0.3994140625,0.3525390625,0.32421875,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.4248046875,0.4130859375,0.40625,0.421875,0.462890625,0.517578125,0.5703125,0.6220703125,0.671875,0.7001953125,0.697265625,0.6689453125,0.6376953125,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.3408203125,0.41015625,0.513671875,0.603515625,0.640625,0.615234375,0.55078125,0.4814453125,0.431640625,0.4267578125,0.470703125,0.5419921875,0.599609375,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.6494140625,0.576171875,0.4736328125,0.3876953125,0.3525390625,0.3740234375,0.4287109375,0.486328125,0.5185546875,0.5068359375,0.453125,0.384765625,0.3369140625,0.3251953125,0.3232421875,0.31640625,0.3251953125,0.3642578125,0.4296875,0.5048828125,0.5703125,0.63671875,0.7060546875,0.7392578125,0.7060546875,0.6162109375,0.5107421875,0.4287109375,0.349609375,0.2578125,0.1953125,0.2001953125,0.271484375,0.3671875,0.4482421875,0.5146484375,0.552734375,0.5419921875,0.4892578125,0.421875,0.37890625,0.376953125,0.3974609375,0.44921875,0.5166015625,0.56640625,0.576171875,0.5478515625,0.5,0.4375,0.34375,0.2529296875,0.2119140625,0.236328125,0.3037109375,0.376953125,0.447265625,0.5,0.5166015625,0.4951171875,0.455078125,0.427734375,0.4287109375,0.4306640625,0.40234375,0.3544921875,0.3154296875,0.3056640625,0.330078125,0.376953125,0.43359375,0.5068359375,0.58203125,0.638671875,0.6669921875,0.673828125,0.673828125,0.67578125,0.6826171875,0.673828125,0.634765625,0.5693359375,0.494140625,0.4287109375,0.375,0.359375,0.4033203125,0.4931640625,0.59375,0.6591796875,0.673828125,0.6767578125,0.6845703125,0.6806640625,0.646484375,0.5849609375,0.5126953125,0.4482421875,0.3935546875,0.3701171875,0.376953125,0.396484375,0.4033203125,0.3798828125,0.3251953125,0.265625,0.220703125,0.2099609375,0.27734375,0.240234375,0.2763671875,0.353515625,0.4296875,0.4990234375,0.55078125,0.5615234375,0.5283203125,0.47265625,0.4296875,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.5712890625,0.5732421875,0.576171875,0.578125,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.578125,0.576171875,0.5732421875,0.5712890625,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.5771484375,0.576171875,0.5751953125,0.5732421875,0.572265625,0.5712890625,0.5693359375,0.5546875,0.4970703125,0.416015625,0.3525390625,0.337890625,0.3740234375,0.439453125,0.5,0.517578125,0.4921875,0.451171875,0.427734375,0.4482421875,0.509765625,0.578125,0.623046875,0.6220703125,0.5732421875,0.50390625,0.453125,0.439453125,0.44921875,0.49609375,0.5625,0.6103515625,0.6142578125,0.57421875,0.509765625,0.4443359375,0.400390625,0.3994140625,0.4443359375,0.5087890625,0.556640625,0.5693359375,0.5712890625,0.572265625,0.5732421875,0.5751953125,0.576171875,0.5771484375,0.5791015625,0.5908203125,0.6337890625,0.6875,0.716796875,0.7021484375,0.6494140625,0.5791015625,0.515625,0.486328125,0.4931640625,0.5146484375,0.5244140625,0.5,0.439453125,0.36328125,0.26953125,0.2001953125,0.1943359375,0.25390625,0.3427734375,0.419921875,0.498046875,0.59375,0.6640625,0.6708984375,0.609375,0.5185546875,0.439453125,0.36328125,0.287109375,0.2529296875,0.2900390625,0.3876953125,0.498046875,0.5791015625,0.646484375,0.6953125,0.7041015625,0.6689453125,0.6123046875,0.5693359375,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.3642578125,0.37109375,0.4423828125,0.541015625,0.61328125,0.623046875,0.5693359375,0.490234375,0.3837890625,0.2890625,0.251953125,0.2841796875,0.357421875,0.4296875,0.490234375,0.517578125,0.509765625,0.4892578125,0.4814453125,0.5087890625,0.5693359375,0.642578125,0.7158203125,0.7490234375,0.7099609375,0.61328125,0.5029296875,0.419921875,0.3623046875,0.3603515625,0.4189453125,0.5009765625,0.55859375,0.5576171875,0.5,0.41796875,0.3154296875,0.232421875,0.2119140625,0.2607421875,0.34375,0.419921875,0.4912109375,0.5615234375,0.609375,0.6201171875,0.6005859375,0.5771484375,0.5693359375,0.57421875,0.595703125,0.6142578125,0.6044921875,0.5595703125,0.4912109375,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.4130859375,0.3916015625,0.373046875,0.384765625,0.43359375,0.505859375,0.5791015625,0.63671875,0.638671875,0.580078125,0.498046875,0.4404296875,0.44140625,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.427734375,0.3662109375,0.3359375,0.3466796875,0.3857421875,0.419921875,0.4296875,0.4345703125,0.451171875,0.48046875,0.513671875,0.5419921875,0.556640625,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.5595703125,0.623046875,0.6572265625,0.65234375,0.619140625,0.5888671875,0.5791015625,0.583984375,0.60546875,0.625,0.6181640625,0.5751953125,0.5087890625,0.439453125,0.3828125,0.3740234375,0.4130859375,0.4716796875,0.509765625,0.498046875,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.548828125,0.5009765625,0.4375,0.392578125,0.3916015625,0.4345703125,0.5,0.5546875,0.5576171875,0.5068359375,0.4326171875,0.380859375,0.3837890625,0.439453125,0.505859375,0.5537109375,0.5625,0.5302734375,0.4775390625,0.4375,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.568359375,0.578125,0.5390625,0.4794921875,0.4404296875,0.451171875,0.509765625,0.5869140625,0.6767578125,0.73828125,0.7353515625,0.66796875,0.576171875,0.5,0.431640625,0.3759765625,0.3505859375,0.3642578125,0.40234375,0.43359375,0.439453125,0.4287109375,0.3857421875,0.3330078125,0.3017578125,0.3134765625,0.36328125,0.4296875,0.49609375,0.5439453125,0.552734375,0.5205078125,0.4677734375,0.427734375,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.4326171875,0.408203125,0.3837890625,0.3857421875,0.42578125,0.490234375,0.5595703125,0.6259765625,0.6787109375,0.6943359375,0.6689453125,0.6201171875,0.580078125,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.431640625,0.484375,0.5576171875,0.6123046875,0.619140625,0.5771484375,0.509765625,0.4404296875,0.39453125,0.3935546875,0.439453125,0.505859375,0.556640625,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.564453125,0.505859375,0.421875,0.3564453125,0.33984375,0.375,0.439453125,0.5078125,0.556640625,0.564453125,0.529296875,0.47265625,0.4296875,0.419921875,0.4130859375,0.3896484375,0.3681640625,0.3759765625,0.419921875,0.48828125,0.5595703125,0.634765625,0.712890625,0.7529296875,0.7216796875,0.6298828125,0.5224609375,0.439453125,0.361328125,0.2734375,0.2177734375,0.23046875,0.30859375,0.408203125,0.4892578125,0.5576171875,0.6015625,0.6005859375,0.5537109375,0.4873046875,0.439453125,0.4296875,0.4423828125,0.4921875,0.55859375,0.60546875,0.607421875,0.564453125,0.5,0.421875,0.3212890625,0.2392578125,0.2197265625,0.2685546875,0.3525390625,0.4296875,0.5,0.5517578125,0.56640625,0.5380859375,0.4873046875,0.4482421875,0.439453125,0.431640625,0.3916015625,0.3388671875,0.306640625,0.3154296875,0.36328125,0.4296875,0.5,0.568359375,0.6142578125,0.6240234375,0.6064453125,0.5849609375,0.5791015625,0.5859375,0.609375,0.630859375,0.623046875,0.5791015625,0.5107421875,0.439453125,0.375,0.3408203125,0.3583984375,0.4248046875,0.5087890625,0.56640625,0.5791015625,0.5869140625,0.6171875,0.6484375,0.6552734375,0.6220703125,0.5595703125,0.4892578125,0.4296875,0.41015625,0.4345703125,0.474609375,0.4990234375,0.4794921875,0.419921875,0.3515625,0.30078125,0.287109375,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.2431640625,0.28515625,0.38671875,0.498046875,0.5791015625,0.646484375,0.6953125,0.7041015625,0.6689453125,0.6123046875,0.5693359375,0.5595703125,0.556640625,0.5419921875,0.515625,0.4833984375,0.45703125,0.4423828125,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.6171875,0.6201171875,0.564453125,0.484375,0.4287109375,0.431640625,0.4892578125,0.560546875,0.62109375,0.6484375,0.6357421875,0.59765625,0.56640625,0.5595703125,0.5693359375,0.60546875,0.646484375,0.662109375,0.6376953125,0.5791015625,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.421875,0.4228515625,0.4228515625,0.421875,0.4208984375,0.419921875,0.419921875,0.4296875,0.46875,0.51953125,0.548828125,0.5361328125,0.486328125,0.419921875,0.3671875,0.376953125,0.4521484375,0.552734375,0.6259765625,0.6337890625,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.6572265625,0.7490234375,0.8134765625,0.8115234375,0.7431640625,0.6494140625,0.5693359375,0.4873046875,0.37890625,0.2861328125,0.2529296875,0.2900390625,0.3662109375,0.439453125,0.505859375,0.5537109375,0.5615234375,0.52734375,0.4716796875,0.4296875,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.498046875,0.47265625,0.4853515625,0.513671875,0.5263671875,0.5009765625,0.439453125,0.3642578125,0.287109375,0.25,0.283203125,0.3779296875,0.486328125,0.5693359375,0.6259765625,0.619140625,0.5478515625,0.451171875,0.3798828125,0.373046875,0.4296875,0.5126953125,0.6240234375,0.7216796875,0.7587890625,0.72265625,0.6455078125,0.5693359375,0.5078125,0.4892578125,0.5146484375,0.55859375,0.5859375,0.5693359375,0.509765625,0.4326171875,0.345703125,0.2900390625,0.302734375,0.3798828125,0.478515625,0.5595703125,0.6259765625,0.6640625,0.650390625,0.5888671875,0.5087890625,0.4521484375,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5107421875,0.4560546875,0.4375,0.4609375,0.5087890625,0.548828125,0.5595703125,0.548828125,0.494140625,0.416015625,0.353515625,0.3388671875,0.375,0.439453125,0.4990234375,0.515625,0.4873046875,0.44140625,0.4130859375,0.4296875,0.4892578125,0.5673828125,0.6611328125,0.7294921875,0.734375,0.673828125,0.5849609375,0.509765625,0.4443359375,0.4033203125,0.40625,0.453125,0.51953125,0.568359375,0.5791015625,0.5751953125,0.556640625,0.521484375,0.4814453125,0.4482421875,0.431640625,0.4296875,0.4345703125,0.4541015625,0.48828125,0.5263671875,0.55859375,0.576171875,0.5791015625,0.5673828125,0.5146484375,0.44140625,0.38671875,0.3798828125,0.421875,0.4892578125,0.5576171875,0.603515625,0.6044921875,0.5595703125,0.49609375,0.44921875,0.439453125,0.4541015625,0.513671875,0.5966796875,0.6630859375,0.6796875,0.64453125,0.5791015625,0.5205078125,0.5087890625,0.544921875,0.599609375,0.6337890625,0.6201171875,0.5595703125,0.486328125,0.419921875,0.3798828125,0.37890625,0.4052734375,0.4326171875,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.431640625,0.3974609375,0.357421875,0.341796875,0.3662109375,0.421875,0.4892578125,0.5478515625,0.5673828125,0.546875,0.5107421875,0.4931640625,0.5166015625,0.5791015625,0.6494140625,0.701171875,0.7138671875,0.681640625,0.625,0.5810546875,0.5693359375,0.556640625,0.5068359375,0.44140625,0.396484375,0.3974609375,0.4423828125,0.509765625,0.568359375,0.578125,0.5380859375,0.4765625,0.4345703125,0.443359375,0.5,0.576171875,0.666015625,0.73046875,0.728515625,0.662109375,0.5693359375,0.4892578125,0.421875,0.37890625,0.3818359375,0.431640625,0.5,0.5498046875,0.5595703125,0.5478515625,0.5078125,0.4580078125,0.43359375,0.453125,0.5087890625,0.5791015625,0.6494140625,0.701171875,0.71484375,0.6845703125,0.630859375,0.5888671875,0.5791015625,0.578125,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.55859375,0.5595703125,0.5478515625,0.4912109375,0.408203125,0.3408203125,0.322265625,0.35546875,0.419921875,0.48828125,0.5400390625,0.5546875,0.525390625,0.47265625,0.4306640625,0.419921875,0.41796875,0.4189453125,0.421875,0.4267578125,0.4326171875,0.4375,0.439453125,0.4443359375,0.462890625,0.494140625,0.5302734375,0.560546875,0.576171875,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.4384765625,0.376953125,0.3466796875,0.357421875,0.392578125,0.4228515625,0.4296875,0.427734375,0.42578125,0.4228515625,0.4208984375,0.419921875,0.419921875,0.419921875,0.4130859375,0.3896484375,0.3701171875,0.37890625,0.42578125,0.49609375,0.5693359375,0.6396484375,0.6943359375,0.7109375,0.68359375,0.6328125,0.5908203125,0.5791015625,0.564453125,0.5029296875,0.416015625,0.3466796875,0.328125,0.36328125,0.4296875,0.5126953125,0.625,0.7255859375,0.7646484375,0.7314453125,0.6552734375,0.5791015625,0.498046875,0.3935546875,0.3095703125,0.2880859375,0.3369140625,0.421875,0.5,0.5712890625,0.634765625,0.6669921875,0.658203125,0.6220703125,0.5888671875,0.5791015625,0.5859375,0.6162109375,0.65234375,0.662109375,0.6318359375,0.5712890625,0.5,0.421875,0.3359375,0.2841796875,0.302734375,0.3857421875,0.48828125,0.5693359375,0.638671875,0.6904296875,0.701171875,0.66796875,0.6123046875,0.5693359375,0.5595703125,0.5498046875,0.5078125,0.4541015625,0.423828125,0.4375,0.4892578125,0.5595703125,0.6259765625,0.6611328125,0.64453125,0.5791015625,0.4970703125,0.44140625,0.4296875,0.4443359375,0.501953125,0.5830078125,0.646484375,0.6611328125,0.625,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.44140625,0.4384765625,0.4931640625,0.57421875,0.6328125,0.6337890625,0.5791015625,0.5126953125,0.462890625,0.4501953125,0.248046875,0.33984375,0.474609375,0.5966796875,0.673828125,0.73046875,0.7626953125,0.7509765625,0.6982421875,0.62890625,0.5810546875,0.5703125,0.56640625,0.5498046875,0.5185546875,0.48046875,0.44921875,0.4326171875,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.626953125,0.623046875,0.5556640625,0.462890625,0.39453125,0.390625,0.4482421875,0.5185546875,0.580078125,0.61328125,0.6103515625,0.5859375,0.5673828125,0.5703125,0.587890625,0.62890625,0.6728515625,0.689453125,0.666015625,0.6123046875,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.3359375,0.34375,0.345703125,0.3408203125,0.3330078125,0.3271484375,0.3251953125,0.3330078125,0.3623046875,0.400390625,0.421875,0.412109375,0.375,0.3251953125,0.29296875,0.3330078125,0.447265625,0.5869140625,0.6904296875,0.7177734375,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.7421875,0.822265625,0.875,0.8662109375,0.7958984375,0.701171875,0.6220703125,0.5400390625,0.4345703125,0.3408203125,0.298828125,0.318359375,0.3740234375,0.4287109375,0.4765625,0.5009765625,0.4873046875,0.4384765625,0.376953125,0.3349609375,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.515625,0.4892578125,0.4921875,0.5068359375,0.509765625,0.4833984375,0.4287109375,0.3642578125,0.30078125,0.279296875,0.3251953125,0.427734375,0.5390625,0.6220703125,0.67578125,0.6572265625,0.5625,0.4365234375,0.341796875,0.3232421875,0.376953125,0.462890625,0.5869140625,0.7080078125,0.7724609375,0.759765625,0.6953125,0.6220703125,0.55859375,0.533203125,0.5498046875,0.587890625,0.6142578125,0.6025390625,0.55078125,0.482421875,0.3974609375,0.3369140625,0.337890625,0.4013671875,0.4912109375,0.5703125,0.63671875,0.671875,0.6533203125,0.5859375,0.5009765625,0.4423828125,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.609375,0.546875,0.50390625,0.4990234375,0.5234375,0.5537109375,0.5703125,0.568359375,0.5234375,0.4482421875,0.3798828125,0.3525390625,0.3740234375,0.4287109375,0.48046875,0.4921875,0.4619140625,0.4150390625,0.384765625,0.396484375,0.4482421875,0.5166015625,0.6044921875,0.6767578125,0.69921875,0.6669921875,0.6064453125,0.55078125,0.5048828125,0.482421875,0.5,0.5537109375,0.619140625,0.6630859375,0.673828125,0.6650390625,0.623046875,0.548828125,0.466796875,0.40234375,0.3740234375,0.376953125,0.39453125,0.4375,0.505859375,0.580078125,0.6376953125,0.66796875,0.673828125,0.658203125,0.5888671875,0.4853515625,0.3955078125,0.3583984375,0.3837890625,0.4482421875,0.515625,0.5595703125,0.5615234375,0.521484375,0.4658203125,0.4296875,0.4287109375,0.453125,0.5263671875,0.6279296875,0.71484375,0.75,0.728515625,0.673828125,0.62109375,0.60546875,0.625,0.6533203125,0.6630859375,0.6337890625,0.5703125,0.4970703125,0.427734375,0.3828125,0.3759765625,0.3974609375,0.421875,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.421875,0.39453125,0.361328125,0.3447265625,0.3583984375,0.3974609375,0.4482421875,0.4931640625,0.515625,0.521484375,0.529296875,0.5556640625,0.60546875,0.673828125,0.7431640625,0.7958984375,0.8046875,0.765625,0.6982421875,0.642578125,0.6220703125,0.6015625,0.5498046875,0.486328125,0.4462890625,0.44921875,0.4921875,0.55078125,0.6025390625,0.611328125,0.5732421875,0.51171875,0.46484375,0.4599609375,0.5,0.5576171875,0.630859375,0.681640625,0.6767578125,0.6142578125,0.5263671875,0.4482421875,0.3828125,0.3505859375,0.3720703125,0.439453125,0.5185546875,0.5673828125,0.5703125,0.552734375,0.515625,0.4833984375,0.484375,0.5283203125,0.599609375,0.673828125,0.7431640625,0.7958984375,0.80859375,0.7783203125,0.724609375,0.68359375,0.673828125,0.669921875,0.6513671875,0.6201171875,0.5888671875,0.5673828125,0.5625,0.5703125,0.5654296875,0.5078125,0.41015625,0.314453125,0.263671875,0.2734375,0.3251953125,0.38671875,0.4375,0.45703125,0.435546875,0.3876953125,0.3447265625,0.3251953125,0.31640625,0.3154296875,0.3291015625,0.3564453125,0.388671875,0.4150390625,0.4287109375,0.4443359375,0.482421875,0.5380859375,0.5986328125,0.6455078125,0.6689453125,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.478515625,0.4111328125,0.3671875,0.35546875,0.3681640625,0.3818359375,0.376953125,0.3662109375,0.3525390625,0.3388671875,0.3291015625,0.3251953125,0.3251953125,0.3251953125,0.322265625,0.31640625,0.3291015625,0.376953125,0.45703125,0.544921875,0.6220703125,0.6943359375,0.7587890625,0.791015625,0.779296875,0.7353515625,0.6923828125,0.673828125,0.646484375,0.5615234375,0.439453125,0.3359375,0.2900390625,0.3134765625,0.376953125,0.4638671875,0.59375,0.7265625,0.8046875,0.8046875,0.74609375,0.673828125,0.58984375,0.474609375,0.369140625,0.3232421875,0.3505859375,0.423828125,0.5,0.5751953125,0.654296875,0.7138671875,0.734375,0.7177734375,0.689453125,0.673828125,0.6689453125,0.6826171875,0.6953125,0.68359375,0.6396484375,0.572265625,0.5,0.4228515625,0.34375,0.3037109375,0.3359375,0.4296875,0.5390625,0.6220703125,0.6904296875,0.736328125,0.73828125,0.6943359375,0.62890625,0.5810546875,0.5703125,0.5595703125,0.5185546875,0.46484375,0.4345703125,0.4482421875,0.5,0.5703125,0.6337890625,0.6572265625,0.619140625,0.5341796875,0.439453125,0.3818359375,0.376953125,0.400390625,0.466796875,0.5576171875,0.6298828125,0.654296875,0.626953125,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.4404296875,0.439453125,0.5029296875,0.6005859375,0.68359375,0.708984375,0.673828125,0.6240234375,0.5869140625,0.5771484375,0.2841796875,0.4111328125,0.560546875,0.6787109375,0.740234375,0.779296875,0.787109375,0.748046875,0.673828125,0.5927734375,0.541015625,0.5302734375,0.5283203125,0.521484375,0.5078125,0.4912109375,0.4775390625,0.470703125,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.5869140625,0.5810546875,0.5107421875,0.4140625,0.34375,0.337890625,0.39453125,0.4638671875,0.517578125,0.541015625,0.53515625,0.5166015625,0.5107421875,0.5302734375,0.5634765625,0.6181640625,0.673828125,0.701171875,0.6904296875,0.650390625,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2841796875,0.3037109375,0.30859375,0.2978515625,0.2783203125,0.2626953125,0.2587890625,0.26171875,0.2724609375,0.287109375,0.294921875,0.291015625,0.27734375,0.2587890625,0.2578125,0.3291015625,0.466796875,0.62109375,0.734375,0.7705078125,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.7919921875,0.853515625,0.892578125,0.8759765625,0.8046875,0.7138671875,0.634765625,0.55859375,0.4755859375,0.4111328125,0.3896484375,0.4091796875,0.4443359375,0.46875,0.482421875,0.470703125,0.427734375,0.3642578125,0.302734375,0.2666015625,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.490234375,0.4765625,0.48828125,0.5107421875,0.5224609375,0.5087890625,0.46875,0.4189453125,0.3642578125,0.33984375,0.3720703125,0.4560546875,0.5546875,0.634765625,0.6884765625,0.666015625,0.5654296875,0.43359375,0.3330078125,0.310546875,0.3642578125,0.4501953125,0.5771484375,0.7041015625,0.775390625,0.76953125,0.7080078125,0.634765625,0.5703125,0.541015625,0.5546875,0.5966796875,0.634765625,0.6396484375,0.6044921875,0.548828125,0.46484375,0.38671875,0.35546875,0.3857421875,0.455078125,0.5302734375,0.5986328125,0.6435546875,0.642578125,0.5966796875,0.529296875,0.48046875,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.6875,0.61328125,0.5380859375,0.4912109375,0.482421875,0.5029296875,0.5302734375,0.5478515625,0.533203125,0.4912109375,0.4443359375,0.419921875,0.4296875,0.46875,0.5048828125,0.5029296875,0.4609375,0.40234375,0.3603515625,0.3583984375,0.39453125,0.4462890625,0.515625,0.5849609375,0.6298828125,0.638671875,0.6240234375,0.6044921875,0.5888671875,0.591796875,0.619140625,0.662109375,0.70703125,0.734375,0.740234375,0.7275390625,0.6669921875,0.5634765625,0.4521484375,0.373046875,0.3466796875,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.640625,0.705078125,0.7353515625,0.740234375,0.7216796875,0.638671875,0.5078125,0.3857421875,0.322265625,0.3330078125,0.39453125,0.4619140625,0.5087890625,0.5185546875,0.4970703125,0.46484375,0.4521484375,0.46875,0.5078125,0.5859375,0.685546875,0.7646484375,0.796875,0.78125,0.740234375,0.701171875,0.6845703125,0.6826171875,0.67578125,0.6494140625,0.5986328125,0.5302734375,0.458984375,0.3984375,0.3720703125,0.38671875,0.4267578125,0.4609375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46484375,0.4443359375,0.4140625,0.3857421875,0.373046875,0.3779296875,0.39453125,0.4111328125,0.4248046875,0.4521484375,0.5048828125,0.5810546875,0.6650390625,0.740234375,0.8115234375,0.8662109375,0.8759765625,0.828125,0.7470703125,0.6728515625,0.634765625,0.6025390625,0.552734375,0.5078125,0.4912109375,0.5126953125,0.5576171875,0.6044921875,0.6435546875,0.6533203125,0.6240234375,0.568359375,0.5146484375,0.490234375,0.5,0.525390625,0.568359375,0.6015625,0.5966796875,0.5458984375,0.4697265625,0.39453125,0.3310546875,0.310546875,0.34765625,0.4248046875,0.50390625,0.5419921875,0.5302734375,0.4990234375,0.4638671875,0.4521484375,0.48828125,0.568359375,0.662109375,0.740234375,0.8095703125,0.8623046875,0.8759765625,0.8447265625,0.7919921875,0.75,0.740234375,0.7314453125,0.6904296875,0.6240234375,0.5576171875,0.515625,0.5087890625,0.5302734375,0.54296875,0.5029296875,0.4140625,0.3115234375,0.240234375,0.224609375,0.2587890625,0.306640625,0.35546875,0.3828125,0.375,0.3369140625,0.291015625,0.2587890625,0.234375,0.2255859375,0.248046875,0.3037109375,0.375,0.4345703125,0.46875,0.5009765625,0.5537109375,0.619140625,0.6787109375,0.7197265625,0.7373046875,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.533203125,0.466796875,0.4189453125,0.3974609375,0.392578125,0.3857421875,0.3642578125,0.3359375,0.3037109375,0.275390625,0.2587890625,0.2548828125,0.2578125,0.2587890625,0.2578125,0.26171875,0.2919921875,0.361328125,0.4580078125,0.556640625,0.634765625,0.7109375,0.791015625,0.84765625,0.8564453125,0.8212890625,0.7734375,0.740234375,0.6953125,0.5888671875,0.447265625,0.328125,0.27734375,0.2998046875,0.3642578125,0.4521484375,0.5927734375,0.7431640625,0.8427734375,0.859375,0.8115234375,0.740234375,0.654296875,0.53125,0.4111328125,0.34765625,0.3603515625,0.42578125,0.5,0.578125,0.67578125,0.76171875,0.806640625,0.8017578125,0.7705078125,0.740234375,0.71875,0.7119140625,0.70703125,0.6845703125,0.6376953125,0.5712890625,0.5,0.4228515625,0.345703125,0.30859375,0.3447265625,0.44140625,0.5517578125,0.634765625,0.7021484375,0.7421875,0.7314453125,0.673828125,0.5966796875,0.5419921875,0.5302734375,0.51953125,0.478515625,0.4248046875,0.39453125,0.4072265625,0.4599609375,0.5302734375,0.591796875,0.609375,0.5654296875,0.48046875,0.39453125,0.3525390625,0.3642578125,0.3994140625,0.4658203125,0.541015625,0.5927734375,0.6025390625,0.57421875,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4375,0.42578125,0.48046875,0.58203125,0.685546875,0.7431640625,0.740234375,0.7216796875,0.7080078125,0.7041015625,0.34765625,0.474609375,0.6064453125,0.69921875,0.740234375,0.759765625,0.74609375,0.6904296875,0.607421875,0.52734375,0.4794921875,0.46875,0.470703125,0.4775390625,0.4912109375,0.5078125,0.521484375,0.5283203125,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.5263671875,0.5244140625,0.4609375,0.3720703125,0.30859375,0.306640625,0.3642578125,0.4296875,0.46875,0.4716796875,0.4501953125,0.4287109375,0.4326171875,0.46875,0.5205078125,0.58984375,0.654296875,0.6904296875,0.6884765625,0.6630859375,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.302734375,0.3359375,0.3447265625,0.3251953125,0.2919921875,0.265625,0.2587890625,0.255859375,0.2451171875,0.2314453125,0.2236328125,0.2265625,0.240234375,0.2587890625,0.2919921875,0.3798828125,0.5107421875,0.640625,0.7294921875,0.7568359375,0.740234375,0.7109375,0.67578125,0.6513671875,0.6513671875,0.67578125,0.7109375,0.740234375,0.7724609375,0.8173828125,0.8447265625,0.828125,0.765625,0.681640625,0.6044921875,0.5361328125,0.4853515625,0.4697265625,0.48828125,0.521484375,0.5400390625,0.5302734375,0.5048828125,0.4580078125,0.39453125,0.3310546875,0.2841796875,0.2626953125,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.4482421875,0.4521484375,0.48046875,0.5185546875,0.546875,0.55078125,0.5302734375,0.49609375,0.4443359375,0.40234375,0.4033203125,0.4521484375,0.529296875,0.6044921875,0.6591796875,0.64453125,0.5576171875,0.44140625,0.3544921875,0.33984375,0.39453125,0.4794921875,0.5986328125,0.7119140625,0.767578125,0.748046875,0.6796875,0.6044921875,0.5390625,0.505859375,0.5185546875,0.568359375,0.6240234375,0.650390625,0.634765625,0.595703125,0.5146484375,0.4189453125,0.3564453125,0.3515625,0.3994140625,0.46875,0.5400390625,0.6005859375,0.626953125,0.6123046875,0.572265625,0.5380859375,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.7021484375,0.623046875,0.5244140625,0.4443359375,0.412109375,0.427734375,0.46875,0.5107421875,0.5361328125,0.5380859375,0.5244140625,0.5087890625,0.5087890625,0.5302734375,0.5478515625,0.5322265625,0.48046875,0.4140625,0.3623046875,0.345703125,0.3642578125,0.3935546875,0.4345703125,0.4853515625,0.5380859375,0.58203125,0.6142578125,0.634765625,0.65625,0.6826171875,0.708984375,0.7294921875,0.73828125,0.740234375,0.740234375,0.7255859375,0.6572265625,0.546875,0.435546875,0.3671875,0.3583984375,0.39453125,0.4462890625,0.521484375,0.607421875,0.6796875,0.72265625,0.73828125,0.740234375,0.7216796875,0.6337890625,0.4970703125,0.3671875,0.2958984375,0.302734375,0.3642578125,0.431640625,0.4775390625,0.494140625,0.48828125,0.48046875,0.4921875,0.5302734375,0.58203125,0.65625,0.7314453125,0.779296875,0.787109375,0.767578125,0.740234375,0.7177734375,0.7080078125,0.6953125,0.666015625,0.611328125,0.5419921875,0.46875,0.400390625,0.35546875,0.3564453125,0.40234375,0.4697265625,0.5185546875,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5283203125,0.51953125,0.4970703125,0.4609375,0.419921875,0.38671875,0.3642578125,0.3447265625,0.3349609375,0.361328125,0.4384765625,0.5498046875,0.6591796875,0.740234375,0.8134765625,0.875,0.892578125,0.8447265625,0.7529296875,0.662109375,0.6044921875,0.5576171875,0.5126953125,0.4912109375,0.5078125,0.552734375,0.6025390625,0.634765625,0.66015625,0.673828125,0.6630859375,0.6240234375,0.5703125,0.5244140625,0.5,0.48828125,0.4990234375,0.5185546875,0.521484375,0.4921875,0.4345703125,0.3642578125,0.302734375,0.2900390625,0.333984375,0.4111328125,0.4794921875,0.5009765625,0.46875,0.421875,0.3798828125,0.3779296875,0.4384765625,0.5458984375,0.6572265625,0.740234375,0.8095703125,0.8623046875,0.8759765625,0.8447265625,0.7919921875,0.75,0.740234375,0.7275390625,0.66796875,0.57421875,0.4833984375,0.4306640625,0.431640625,0.46875,0.5048828125,0.4970703125,0.4384765625,0.3525390625,0.27734375,0.244140625,0.2587890625,0.291015625,0.3369140625,0.375,0.3828125,0.35546875,0.306640625,0.2587890625,0.21484375,0.1884765625,0.20703125,0.2783203125,0.380859375,0.4736328125,0.5302734375,0.5791015625,0.6376953125,0.6923828125,0.7294921875,0.7421875,0.7412109375,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.5654296875,0.5107421875,0.4775390625,0.4638671875,0.455078125,0.4345703125,0.39453125,0.3466796875,0.2978515625,0.2587890625,0.2421875,0.24609375,0.255859375,0.2587890625,0.2568359375,0.2568359375,0.28125,0.341796875,0.4326171875,0.5263671875,0.6044921875,0.68359375,0.779296875,0.8564453125,0.880859375,0.849609375,0.791015625,0.740234375,0.677734375,0.5615234375,0.421875,0.3193359375,0.2900390625,0.326171875,0.39453125,0.482421875,0.6181640625,0.76171875,0.853515625,0.8642578125,0.8115234375,0.740234375,0.654296875,0.53125,0.4111328125,0.34765625,0.3603515625,0.42578125,0.5,0.5810546875,0.689453125,0.7900390625,0.8427734375,0.833984375,0.7880859375,0.740234375,0.7001953125,0.6796875,0.6708984375,0.6572265625,0.6240234375,0.568359375,0.5,0.421875,0.3408203125,0.2978515625,0.3251953125,0.416015625,0.5224609375,0.6044921875,0.6708984375,0.70703125,0.6904296875,0.6240234375,0.5400390625,0.482421875,0.46875,0.458984375,0.41796875,0.3642578125,0.333984375,0.3466796875,0.3994140625,0.46875,0.53125,0.5478515625,0.5107421875,0.44140625,0.3798828125,0.3623046875,0.39453125,0.4443359375,0.501953125,0.5458984375,0.5576171875,0.5361328125,0.4990234375,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4326171875,0.3984375,0.4248046875,0.5107421875,0.62109375,0.7060546875,0.740234375,0.7587890625,0.7724609375,0.775390625,0.4189453125,0.5107421875,0.59765625,0.6533203125,0.673828125,0.677734375,0.6552734375,0.603515625,0.5341796875,0.4716796875,0.4365234375,0.4287109375,0.4326171875,0.44921875,0.48046875,0.5185546875,0.5498046875,0.56640625,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.4873046875,0.4921875,0.4404296875,0.3662109375,0.314453125,0.318359375,0.376953125,0.439453125,0.462890625,0.44140625,0.3994140625,0.369140625,0.3779296875,0.4287109375,0.494140625,0.5693359375,0.630859375,0.66015625,0.6552734375,0.6357421875,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3857421875,0.4296875,0.44140625,0.416015625,0.3701171875,0.333984375,0.3251953125,0.318359375,0.2890625,0.2509765625,0.2294921875,0.2392578125,0.2763671875,0.3251953125,0.384765625,0.470703125,0.5654296875,0.6396484375,0.677734375,0.6826171875,0.673828125,0.662109375,0.6484375,0.638671875,0.638671875,0.6484375,0.662109375,0.673828125,0.6904296875,0.724609375,0.7529296875,0.7470703125,0.6982421875,0.625,0.55078125,0.4892578125,0.46875,0.4970703125,0.5546875,0.6025390625,0.609375,0.5703125,0.5146484375,0.4482421875,0.3837890625,0.3408203125,0.32421875,0.32421875,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.423828125,0.439453125,0.4765625,0.5224609375,0.5595703125,0.5751953125,0.5703125,0.5498046875,0.498046875,0.4384765625,0.4072265625,0.423828125,0.48046875,0.55078125,0.6083984375,0.6064453125,0.5439453125,0.455078125,0.392578125,0.390625,0.4482421875,0.5302734375,0.63671875,0.7265625,0.75390625,0.7099609375,0.62890625,0.55078125,0.484375,0.4462890625,0.45703125,0.509765625,0.5771484375,0.6201171875,0.6220703125,0.5966796875,0.5244140625,0.42578125,0.349609375,0.3271484375,0.3623046875,0.4287109375,0.501953125,0.5712890625,0.6162109375,0.623046875,0.6015625,0.5771484375,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.6494140625,0.576171875,0.4736328125,0.3876953125,0.3525390625,0.3740234375,0.4287109375,0.490234375,0.546875,0.5810546875,0.5888671875,0.576171875,0.5654296875,0.5703125,0.57421875,0.552734375,0.50390625,0.443359375,0.39453125,0.373046875,0.376953125,0.3857421875,0.3935546875,0.412109375,0.451171875,0.5068359375,0.568359375,0.6220703125,0.6728515625,0.7158203125,0.7373046875,0.7294921875,0.7021484375,0.6796875,0.673828125,0.6591796875,0.5966796875,0.5009765625,0.4150390625,0.3759765625,0.3935546875,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.6806640625,0.6845703125,0.6767578125,0.673828125,0.65625,0.5791015625,0.458984375,0.3505859375,0.2978515625,0.314453125,0.376953125,0.443359375,0.4833984375,0.494140625,0.48828125,0.4892578125,0.515625,0.5703125,0.6337890625,0.697265625,0.7392578125,0.7451171875,0.720703125,0.689453125,0.673828125,0.66796875,0.671875,0.6689453125,0.638671875,0.5791015625,0.5029296875,0.4287109375,0.3623046875,0.3271484375,0.345703125,0.4130859375,0.498046875,0.556640625,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.572265625,0.5791015625,0.57421875,0.544921875,0.4921875,0.431640625,0.376953125,0.32421875,0.28125,0.28515625,0.3544921875,0.4716796875,0.58984375,0.673828125,0.7490234375,0.822265625,0.853515625,0.8173828125,0.724609375,0.6240234375,0.55078125,0.4921875,0.44921875,0.4462890625,0.486328125,0.5498046875,0.6015625,0.6220703125,0.6357421875,0.658203125,0.6708984375,0.65625,0.611328125,0.5537109375,0.5,0.45703125,0.4462890625,0.4638671875,0.4833984375,0.48046875,0.4423828125,0.376953125,0.3173828125,0.306640625,0.3505859375,0.4208984375,0.474609375,0.4775390625,0.4287109375,0.365234375,0.30859375,0.2978515625,0.3583984375,0.4716796875,0.58984375,0.673828125,0.7431640625,0.7958984375,0.80859375,0.7783203125,0.724609375,0.68359375,0.673828125,0.6591796875,0.59375,0.4931640625,0.4033203125,0.359375,0.375,0.4287109375,0.484375,0.5107421875,0.4912109375,0.43359375,0.3671875,0.326171875,0.3251953125,0.3447265625,0.3876953125,0.435546875,0.45703125,0.4375,0.38671875,0.3251953125,0.2626953125,0.2119140625,0.2099609375,0.2744140625,0.3857421875,0.49609375,0.5703125,0.6318359375,0.689453125,0.7236328125,0.7255859375,0.7021484375,0.6796875,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.556640625,0.5185546875,0.51171875,0.5224609375,0.525390625,0.501953125,0.4482421875,0.3857421875,0.3251953125,0.287109375,0.2802734375,0.298828125,0.3203125,0.3251953125,0.3212890625,0.306640625,0.3037109375,0.3330078125,0.396484375,0.4765625,0.55078125,0.6328125,0.7353515625,0.8212890625,0.849609375,0.8115234375,0.740234375,0.673828125,0.5986328125,0.484375,0.369140625,0.3056640625,0.314453125,0.375,0.4482421875,0.533203125,0.654296875,0.771484375,0.8310546875,0.814453125,0.748046875,0.673828125,0.58984375,0.474609375,0.369140625,0.3232421875,0.3505859375,0.423828125,0.5,0.58203125,0.69140625,0.7890625,0.830078125,0.8046875,0.7392578125,0.673828125,0.6201171875,0.595703125,0.5986328125,0.609375,0.6025390625,0.564453125,0.5,0.4208984375,0.3330078125,0.2783203125,0.2919921875,0.3701171875,0.470703125,0.55078125,0.6181640625,0.6552734375,0.6416015625,0.5791015625,0.498046875,0.44140625,0.4287109375,0.4189453125,0.376953125,0.32421875,0.2939453125,0.306640625,0.359375,0.4287109375,0.490234375,0.509765625,0.4814453125,0.4296875,0.392578125,0.3974609375,0.4482421875,0.5087890625,0.556640625,0.572265625,0.5458984375,0.4931640625,0.4482421875,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.4267578125,0.3662109375,0.353515625,0.408203125,0.509765625,0.609375,0.673828125,0.72265625,0.759765625,0.76953125,0.47265625,0.5146484375,0.5517578125,0.5732421875,0.5791015625,0.5771484375,0.5615234375,0.53125,0.4931640625,0.4609375,0.443359375,0.439453125,0.4423828125,0.45703125,0.4833984375,0.515625,0.5419921875,0.556640625,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.4990234375,0.5087890625,0.466796875,0.4033203125,0.3603515625,0.3701171875,0.4296875,0.490234375,0.5029296875,0.4658203125,0.4091796875,0.37109375,0.380859375,0.439453125,0.5107421875,0.5791015625,0.6220703125,0.626953125,0.603515625,0.5771484375,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.48828125,0.5390625,0.5517578125,0.5224609375,0.470703125,0.4296875,0.419921875,0.41015625,0.3701171875,0.3193359375,0.291015625,0.3037109375,0.353515625,0.419921875,0.490234375,0.560546875,0.6103515625,0.6240234375,0.6083984375,0.5869140625,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.5888671875,0.6240234375,0.662109375,0.6728515625,0.642578125,0.5810546875,0.509765625,0.4501953125,0.443359375,0.4921875,0.5654296875,0.6171875,0.6142578125,0.5595703125,0.4892578125,0.4228515625,0.37890625,0.37109375,0.390625,0.4130859375,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.44140625,0.455078125,0.4833984375,0.515625,0.5439453125,0.5576171875,0.5595703125,0.546875,0.498046875,0.4326171875,0.3896484375,0.3935546875,0.4404296875,0.509765625,0.568359375,0.5771484375,0.5322265625,0.466796875,0.421875,0.4306640625,0.4892578125,0.5693359375,0.666015625,0.7373046875,0.7431640625,0.6806640625,0.5888671875,0.509765625,0.44140625,0.3974609375,0.3984375,0.4453125,0.51171875,0.5595703125,0.5693359375,0.5546875,0.49609375,0.4130859375,0.349609375,0.3349609375,0.373046875,0.439453125,0.5126953125,0.5791015625,0.619140625,0.6201171875,0.59375,0.56640625,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.564453125,0.505859375,0.421875,0.3564453125,0.33984375,0.375,0.439453125,0.5107421875,0.5751953125,0.61328125,0.615234375,0.58984375,0.564453125,0.5595703125,0.5576171875,0.5419921875,0.5126953125,0.4765625,0.447265625,0.431640625,0.4296875,0.4248046875,0.4033203125,0.3837890625,0.3916015625,0.43359375,0.5,0.5693359375,0.6357421875,0.6875,0.7021484375,0.67578125,0.626953125,0.5888671875,0.5791015625,0.5673828125,0.515625,0.443359375,0.390625,0.3828125,0.423828125,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.6484375,0.6171875,0.5869140625,0.5791015625,0.5654296875,0.505859375,0.4189453125,0.349609375,0.3291015625,0.36328125,0.4296875,0.4931640625,0.5205078125,0.509765625,0.484375,0.47265625,0.498046875,0.5595703125,0.6279296875,0.6826171875,0.701171875,0.677734375,0.6298828125,0.58984375,0.5791015625,0.583984375,0.607421875,0.6298828125,0.6240234375,0.5810546875,0.5126953125,0.439453125,0.373046875,0.3349609375,0.3486328125,0.41015625,0.490234375,0.546875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5654296875,0.58984375,0.6123046875,0.6064453125,0.5654296875,0.4990234375,0.4296875,0.3564453125,0.283203125,0.25,0.2890625,0.3857421875,0.49609375,0.5791015625,0.6572265625,0.7421875,0.7919921875,0.7724609375,0.6904296875,0.5888671875,0.509765625,0.4423828125,0.3974609375,0.396484375,0.44140625,0.5068359375,0.556640625,0.5693359375,0.5791015625,0.611328125,0.6474609375,0.6572265625,0.626953125,0.568359375,0.5,0.44140625,0.4248046875,0.4501953125,0.490234375,0.5126953125,0.4912109375,0.4296875,0.3701171875,0.359375,0.400390625,0.462890625,0.505859375,0.498046875,0.439453125,0.365234375,0.2890625,0.25390625,0.2900390625,0.38671875,0.49609375,0.5791015625,0.6494140625,0.701171875,0.71484375,0.6845703125,0.630859375,0.5888671875,0.5791015625,0.56640625,0.5087890625,0.4248046875,0.3583984375,0.3408203125,0.375,0.439453125,0.5068359375,0.5546875,0.5625,0.5263671875,0.470703125,0.4287109375,0.419921875,0.4306640625,0.47265625,0.525390625,0.5546875,0.5400390625,0.48828125,0.419921875,0.3447265625,0.2705078125,0.236328125,0.2734375,0.369140625,0.478515625,0.5595703125,0.6279296875,0.681640625,0.69921875,0.6748046875,0.626953125,0.5888671875,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.5078125,0.486328125,0.5068359375,0.5458984375,0.568359375,0.5498046875,0.4892578125,0.419921875,0.3603515625,0.33203125,0.3427734375,0.37890625,0.412109375,0.419921875,0.412109375,0.380859375,0.34765625,0.3408203125,0.3740234375,0.4375,0.509765625,0.5908203125,0.6923828125,0.7734375,0.791015625,0.740234375,0.6552734375,0.5791015625,0.4990234375,0.3955078125,0.30859375,0.2841796875,0.330078125,0.412109375,0.4892578125,0.5712890625,0.6767578125,0.7626953125,0.787109375,0.740234375,0.6572265625,0.5791015625,0.498046875,0.3935546875,0.3095703125,0.2880859375,0.3369140625,0.421875,0.5,0.5810546875,0.68359375,0.7666015625,0.787109375,0.73828125,0.6552734375,0.5791015625,0.51953125,0.5,0.5224609375,0.5615234375,0.5830078125,0.5615234375,0.5,0.419921875,0.3271484375,0.2626953125,0.265625,0.333984375,0.4296875,0.509765625,0.5771484375,0.62109375,0.619140625,0.5703125,0.501953125,0.451171875,0.439453125,0.4296875,0.3876953125,0.3349609375,0.3046875,0.3173828125,0.3701171875,0.439453125,0.5009765625,0.5185546875,0.4912109375,0.4443359375,0.4150390625,0.4306640625,0.4892578125,0.556640625,0.6025390625,0.6064453125,0.5634765625,0.5,0.4521484375,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.421875,0.33984375,0.29296875,0.3154296875,0.3994140625,0.5009765625,0.5791015625,0.6455078125,0.6953125,0.7080078125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.517578125,0.4814453125,0.451171875,0.4345703125,0.4296875,0.4306640625,0.4462890625,0.4755859375,0.5126953125,0.544921875,0.564453125,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.6259765625,0.662109375,0.6455078125,0.5791015625,0.494140625,0.4345703125,0.419921875,0.412109375,0.3896484375,0.37109375,0.3828125,0.4296875,0.4990234375,0.5693359375,0.6318359375,0.6640625,0.6435546875,0.5751953125,0.490234375,0.4326171875,0.419921875,0.4130859375,0.388671875,0.3662109375,0.3720703125,0.4169921875,0.486328125,0.5595703125,0.6201171875,0.6337890625,0.5986328125,0.5419921875,0.5029296875,0.5126953125,0.5693359375,0.6259765625,0.6337890625,0.59375,0.5341796875,0.49609375,0.5087890625,0.5693359375,0.6357421875,0.6708984375,0.65234375,0.5830078125,0.49609375,0.4345703125,0.419921875,0.412109375,0.3896484375,0.373046875,0.3857421875,0.435546875,0.5068359375,0.5791015625,0.646484375,0.6943359375,0.7021484375,0.666015625,0.609375,0.568359375,0.5595703125,0.55078125,0.51171875,0.4599609375,0.4296875,0.44140625,0.4912109375,0.5595703125,0.6240234375,0.66015625,0.6455078125,0.5830078125,0.5048828125,0.4501953125,0.439453125,0.44140625,0.4404296875,0.4375,0.4326171875,0.4267578125,0.421875,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.44921875,0.427734375,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.35546875,0.322265625,0.3408203125,0.408203125,0.4912109375,0.5478515625,0.5595703125,0.5576171875,0.556640625,0.5576171875,0.5595703125,0.5634765625,0.5673828125,0.5693359375,0.568359375,0.5546875,0.52734375,0.4931640625,0.462890625,0.4443359375,0.439453125,0.4296875,0.392578125,0.349609375,0.3330078125,0.359375,0.41796875,0.4892578125,0.5498046875,0.564453125,0.529296875,0.474609375,0.4384765625,0.451171875,0.509765625,0.587890625,0.6806640625,0.7470703125,0.748046875,0.6826171875,0.5888671875,0.509765625,0.4375,0.3740234375,0.3408203125,0.34765625,0.380859375,0.412109375,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6435546875,0.6767578125,0.6552734375,0.583984375,0.49609375,0.4345703125,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.4130859375,0.390625,0.37109375,0.37890625,0.4228515625,0.4892578125,0.5595703125,0.623046875,0.658203125,0.6435546875,0.5810546875,0.5009765625,0.4443359375,0.4296875,0.431640625,0.4482421875,0.48046875,0.5185546875,0.55078125,0.5673828125,0.5693359375,0.5546875,0.494140625,0.41015625,0.3427734375,0.326171875,0.36328125,0.4296875,0.5,0.552734375,0.5673828125,0.5380859375,0.484375,0.44140625,0.4296875,0.419921875,0.3857421875,0.3466796875,0.3359375,0.3662109375,0.427734375,0.5,0.5673828125,0.609375,0.603515625,0.55078125,0.48046875,0.4296875,0.419921875,0.4150390625,0.3955078125,0.37890625,0.390625,0.4384765625,0.5078125,0.5791015625,0.634765625,0.6279296875,0.5576171875,0.4609375,0.390625,0.384765625,0.439453125,0.5078125,0.556640625,0.5654296875,0.533203125,0.478515625,0.4384765625,0.4296875,0.4443359375,0.5048828125,0.5888671875,0.65625,0.6728515625,0.6357421875,0.5693359375,0.49609375,0.4267578125,0.380859375,0.373046875,0.392578125,0.4150390625,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.453125,0.509765625,0.5927734375,0.6572265625,0.6728515625,0.6357421875,0.5693359375,0.4873046875,0.37890625,0.2861328125,0.2529296875,0.2900390625,0.3662109375,0.439453125,0.517578125,0.6142578125,0.69140625,0.70703125,0.65625,0.57421875,0.5,0.431640625,0.3740234375,0.3466796875,0.3583984375,0.3935546875,0.423828125,0.4296875,0.439453125,0.4873046875,0.5537109375,0.6005859375,0.6015625,0.5576171875,0.4892578125,0.431640625,0.4306640625,0.490234375,0.5732421875,0.6337890625,0.6357421875,0.5791015625,0.5205078125,0.5087890625,0.544921875,0.599609375,0.6337890625,0.6201171875,0.5595703125,0.4765625,0.369140625,0.27734375,0.24609375,0.2861328125,0.3642578125,0.439453125,0.5078125,0.556640625,0.564453125,0.529296875,0.47265625,0.4296875,0.419921875,0.4130859375,0.3896484375,0.3701171875,0.37890625,0.42578125,0.49609375,0.5693359375,0.6396484375,0.6943359375,0.7109375,0.68359375,0.6328125,0.5908203125,0.5791015625,0.5869140625,0.626953125,0.6787109375,0.708984375,0.697265625,0.6474609375,0.5791015625,0.498046875,0.38671875,0.287109375,0.2470703125,0.2783203125,0.353515625,0.4296875,0.4990234375,0.55078125,0.5625,0.53125,0.478515625,0.4384765625,0.4296875,0.4404296875,0.4814453125,0.5322265625,0.55859375,0.5419921875,0.48828125,0.419921875,0.36328125,0.3642578125,0.4228515625,0.505859375,0.5654296875,0.5654296875,0.509765625,0.4423828125,0.3994140625,0.400390625,0.4482421875,0.515625,0.56640625,0.5791015625,0.5693359375,0.5185546875,0.4462890625,0.392578125,0.384765625,0.423828125,0.4892578125,0.56640625,0.65234375,0.7060546875,0.693359375,0.6171875,0.5185546875,0.439453125,0.36328125,0.2783203125,0.2255859375,0.2392578125,0.3154296875,0.412109375,0.4892578125,0.564453125,0.6494140625,0.7021484375,0.6875,0.609375,0.5107421875,0.4296875,0.3525390625,0.2685546875,0.2197265625,0.2392578125,0.3212890625,0.421875,0.5,0.57421875,0.6552734375,0.703125,0.6845703125,0.60546875,0.5078125,0.4296875,0.375,0.375,0.4326171875,0.5126953125,0.568359375,0.56640625,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.578125,0.634765625,0.6572265625,0.640625,0.599609375,0.56640625,0.5595703125,0.5517578125,0.5126953125,0.4619140625,0.4326171875,0.4443359375,0.4931640625,0.5595703125,0.6142578125,0.6171875,0.5654296875,0.4921875,0.443359375,0.4501953125,0.509765625,0.580078125,0.6376953125,0.6611328125,0.642578125,0.6005859375,0.56640625,0.5595703125,0.5615234375,0.5634765625,0.5673828125,0.5712890625,0.5751953125,0.5771484375,0.5791015625,0.5888671875,0.6201171875,0.6533203125,0.66015625,0.62890625,0.568359375,0.5,0.421875,0.3212890625,0.2392578125,0.2197265625,0.2685546875,0.3525390625,0.4296875,0.5,0.5546875,0.5712890625,0.52734375,0.4716796875,0.4228515625,0.3916015625,0.376953125,0.37109375,0.3876953125,0.4326171875,0.4970703125,0.5615234375,0.6044921875,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.6357421875,0.6640625,0.630859375,0.5400390625,0.4306640625,0.3515625,0.3251953125,0.3154296875,0.314453125,0.33984375,0.4013671875,0.484375,0.5634765625,0.6220703125,0.6640625,0.666015625,0.609375,0.5087890625,0.4052734375,0.33984375,0.3251953125,0.3212890625,0.3095703125,0.310546875,0.3447265625,0.412109375,0.494140625,0.5703125,0.6337890625,0.6630859375,0.6494140625,0.611328125,0.5791015625,0.5810546875,0.6220703125,0.6611328125,0.6572265625,0.61328125,0.560546875,0.5361328125,0.55859375,0.6220703125,0.685546875,0.708984375,0.6630859375,0.5595703125,0.4375,0.3525390625,0.3251953125,0.3154296875,0.314453125,0.34375,0.4140625,0.5107421875,0.6044921875,0.673828125,0.7294921875,0.755859375,0.736328125,0.6787109375,0.611328125,0.5712890625,0.5703125,0.5712890625,0.5439453125,0.5,0.4697265625,0.47265625,0.51171875,0.5703125,0.625,0.646484375,0.619140625,0.55078125,0.4755859375,0.4306640625,0.4287109375,0.4384765625,0.439453125,0.42578125,0.3984375,0.3662109375,0.33984375,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.4951171875,0.4580078125,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.2734375,0.263671875,0.314453125,0.41015625,0.5078125,0.5654296875,0.5703125,0.5595703125,0.552734375,0.5546875,0.568359375,0.5888671875,0.609375,0.6220703125,0.62890625,0.619140625,0.5859375,0.53515625,0.482421875,0.4453125,0.4287109375,0.4091796875,0.3623046875,0.3115234375,0.2900390625,0.3154296875,0.3759765625,0.4482421875,0.51171875,0.541015625,0.53125,0.501953125,0.4833984375,0.4990234375,0.55078125,0.62109375,0.70703125,0.7724609375,0.7763671875,0.7177734375,0.6298828125,0.55078125,0.4765625,0.396484375,0.3330078125,0.3037109375,0.306640625,0.3212890625,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.7265625,0.7353515625,0.6767578125,0.5634765625,0.4375,0.3525390625,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.32421875,0.32421875,0.3408203125,0.3837890625,0.4482421875,0.5146484375,0.5703125,0.6162109375,0.63671875,0.6103515625,0.54296875,0.4599609375,0.3994140625,0.376953125,0.3740234375,0.40234375,0.462890625,0.5361328125,0.5966796875,0.625,0.6220703125,0.595703125,0.5166015625,0.4072265625,0.31640625,0.283203125,0.3115234375,0.376953125,0.4482421875,0.5068359375,0.5283203125,0.501953125,0.4462890625,0.3974609375,0.376953125,0.3603515625,0.3251953125,0.2978515625,0.3037109375,0.3525390625,0.42578125,0.5,0.5634765625,0.5888671875,0.5556640625,0.4755859375,0.384765625,0.3291015625,0.3251953125,0.3349609375,0.349609375,0.3828125,0.4443359375,0.5263671875,0.607421875,0.673828125,0.71875,0.6982421875,0.609375,0.4931640625,0.404296875,0.3837890625,0.4287109375,0.486328125,0.5185546875,0.5107421875,0.466796875,0.4111328125,0.376953125,0.376953125,0.4033203125,0.482421875,0.591796875,0.6826171875,0.7158203125,0.6875,0.6220703125,0.546875,0.4638671875,0.392578125,0.3486328125,0.3349609375,0.3330078125,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.443359375,0.5087890625,0.60546875,0.6865234375,0.7158203125,0.6865234375,0.6220703125,0.5400390625,0.4345703125,0.3408203125,0.298828125,0.318359375,0.3740234375,0.4287109375,0.4873046875,0.5625,0.6259765625,0.64453125,0.61328125,0.5546875,0.5,0.4482421875,0.40234375,0.373046875,0.3671875,0.3759765625,0.3828125,0.376953125,0.37890625,0.421875,0.4892578125,0.5419921875,0.552734375,0.5146484375,0.4482421875,0.3916015625,0.40234375,0.4853515625,0.6015625,0.693359375,0.7177734375,0.673828125,0.62109375,0.60546875,0.625,0.6533203125,0.6630859375,0.6337890625,0.5703125,0.48828125,0.3828125,0.29296875,0.259765625,0.29296875,0.3623046875,0.4287109375,0.486328125,0.5185546875,0.5068359375,0.453125,0.384765625,0.3369140625,0.3251953125,0.322265625,0.31640625,0.3291015625,0.376953125,0.45703125,0.544921875,0.6220703125,0.6943359375,0.7587890625,0.791015625,0.779296875,0.7353515625,0.6923828125,0.673828125,0.671875,0.7001953125,0.744140625,0.7744140625,0.7705078125,0.7314453125,0.673828125,0.5966796875,0.474609375,0.34375,0.2607421875,0.25390625,0.3056640625,0.376953125,0.4453125,0.4921875,0.498046875,0.462890625,0.4111328125,0.376953125,0.376953125,0.39453125,0.431640625,0.4677734375,0.4755859375,0.4453125,0.3876953125,0.3251953125,0.279296875,0.2978515625,0.3828125,0.494140625,0.5791015625,0.5966796875,0.55078125,0.4931640625,0.45703125,0.46484375,0.5185546875,0.59375,0.65234375,0.673828125,0.669921875,0.6142578125,0.5205078125,0.4296875,0.3837890625,0.39453125,0.4482421875,0.515625,0.59375,0.646484375,0.6416015625,0.580078125,0.498046875,0.4287109375,0.3623046875,0.2900390625,0.2451171875,0.2548828125,0.314453125,0.3896484375,0.4482421875,0.505859375,0.576171875,0.623046875,0.61328125,0.546875,0.4560546875,0.376953125,0.3037109375,0.236328125,0.2119140625,0.2529296875,0.34375,0.4375,0.5,0.5537109375,0.60546875,0.6259765625,0.5927734375,0.5185546875,0.4365234375,0.376953125,0.33984375,0.359375,0.4345703125,0.5283203125,0.59375,0.599609375,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.609375,0.6513671875,0.6591796875,0.6337890625,0.59375,0.568359375,0.5703125,0.5732421875,0.55078125,0.5146484375,0.4892578125,0.490234375,0.521484375,0.5703125,0.609375,0.6025390625,0.5546875,0.4970703125,0.46875,0.4892578125,0.55078125,0.6201171875,0.6689453125,0.6787109375,0.6484375,0.6015625,0.5693359375,0.5703125,0.5810546875,0.5947265625,0.6123046875,0.630859375,0.6484375,0.662109375,0.673828125,0.6865234375,0.7021484375,0.7041015625,0.6748046875,0.619140625,0.5546875,0.5,0.4375,0.34375,0.2529296875,0.2119140625,0.236328125,0.3037109375,0.376953125,0.4501953125,0.5146484375,0.546875,0.5244140625,0.474609375,0.4287109375,0.392578125,0.3642578125,0.3408203125,0.3388671875,0.375,0.447265625,0.5322265625,0.599609375,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.5966796875,0.6318359375,0.6044921875,0.513671875,0.39453125,0.30078125,0.2587890625,0.2392578125,0.2548828125,0.3193359375,0.421875,0.529296875,0.6044921875,0.634765625,0.64453125,0.61328125,0.5322265625,0.4248046875,0.3271484375,0.2705078125,0.2587890625,0.2548828125,0.24609375,0.25390625,0.294921875,0.3681640625,0.4541015625,0.5302734375,0.599609375,0.6533203125,0.67578125,0.666015625,0.638671875,0.6240234375,0.634765625,0.6435546875,0.615234375,0.5654296875,0.52734375,0.5263671875,0.5673828125,0.634765625,0.69921875,0.7216796875,0.6708984375,0.5517578125,0.41015625,0.3037109375,0.2587890625,0.23828125,0.2509765625,0.3193359375,0.4384765625,0.57421875,0.6806640625,0.740234375,0.775390625,0.767578125,0.7099609375,0.6240234375,0.5478515625,0.515625,0.5302734375,0.548828125,0.5419921875,0.513671875,0.482421875,0.4716796875,0.4892578125,0.5302734375,0.5693359375,0.5791015625,0.5546875,0.5078125,0.4658203125,0.451171875,0.46875,0.4931640625,0.5029296875,0.48046875,0.4248046875,0.353515625,0.29296875,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.55859375,0.509765625,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.224609375,0.240234375,0.3115234375,0.4140625,0.5029296875,0.54296875,0.5302734375,0.5029296875,0.4814453125,0.48046875,0.5078125,0.5556640625,0.603515625,0.634765625,0.66015625,0.6748046875,0.662109375,0.619140625,0.556640625,0.501953125,0.46875,0.431640625,0.361328125,0.287109375,0.248046875,0.263671875,0.322265625,0.39453125,0.462890625,0.5146484375,0.541015625,0.546875,0.548828125,0.5654296875,0.6044921875,0.6591796875,0.7333984375,0.794921875,0.806640625,0.759765625,0.6806640625,0.6044921875,0.5263671875,0.4326171875,0.341796875,0.28125,0.2568359375,0.2568359375,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.7763671875,0.7666015625,0.6875,0.5517578125,0.40625,0.3017578125,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.2626953125,0.2841796875,0.3310546875,0.39453125,0.4580078125,0.5048828125,0.5302734375,0.5478515625,0.5576171875,0.54296875,0.5029296875,0.4462890625,0.396484375,0.3642578125,0.3486328125,0.376953125,0.4521484375,0.546875,0.6220703125,0.650390625,0.634765625,0.5927734375,0.4990234375,0.3798828125,0.2900390625,0.26171875,0.296875,0.3642578125,0.4375,0.5048828125,0.5380859375,0.5185546875,0.4609375,0.3994140625,0.3642578125,0.33203125,0.287109375,0.2587890625,0.275390625,0.3388671875,0.4228515625,0.5,0.5595703125,0.568359375,0.5078125,0.40234375,0.30078125,0.2490234375,0.2587890625,0.2890625,0.3408203125,0.4189453125,0.5166015625,0.6123046875,0.6884765625,0.740234375,0.771484375,0.7451171875,0.6591796875,0.5498046875,0.4638671875,0.4375,0.46875,0.5068359375,0.51171875,0.4775390625,0.4189453125,0.3671875,0.3466796875,0.3642578125,0.40625,0.5,0.619140625,0.708984375,0.7373046875,0.7021484375,0.634765625,0.560546875,0.4775390625,0.3994140625,0.341796875,0.306640625,0.283203125,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.4833984375,0.544921875,0.6357421875,0.708984375,0.7333984375,0.701171875,0.634765625,0.55859375,0.4755859375,0.4111328125,0.3896484375,0.4091796875,0.4443359375,0.46875,0.4912109375,0.51953125,0.5439453125,0.5517578125,0.541015625,0.51953125,0.5,0.4814453125,0.466796875,0.4521484375,0.435546875,0.4150390625,0.390625,0.3642578125,0.3486328125,0.375,0.4306640625,0.48046875,0.4931640625,0.4599609375,0.39453125,0.3388671875,0.3544921875,0.4521484375,0.59375,0.7158203125,0.7666015625,0.740234375,0.701171875,0.6845703125,0.6826171875,0.67578125,0.6494140625,0.5986328125,0.5302734375,0.4521484375,0.3662109375,0.3056640625,0.30078125,0.3486328125,0.4169921875,0.46875,0.5087890625,0.515625,0.4775390625,0.40234375,0.322265625,0.2705078125,0.2587890625,0.2578125,0.26171875,0.2919921875,0.361328125,0.4580078125,0.556640625,0.634765625,0.7109375,0.791015625,0.84765625,0.8564453125,0.8212890625,0.7734375,0.740234375,0.720703125,0.7275390625,0.7568359375,0.787109375,0.7978515625,0.7802734375,0.740234375,0.677734375,0.556640625,0.4111328125,0.30078125,0.263671875,0.296875,0.3642578125,0.4296875,0.466796875,0.4609375,0.4189453125,0.37109375,0.3486328125,0.3642578125,0.3935546875,0.4267578125,0.44140625,0.421875,0.3701171875,0.3095703125,0.2587890625,0.2294921875,0.2646484375,0.3671875,0.4970703125,0.599609375,0.634765625,0.6044921875,0.5595703125,0.5283203125,0.5302734375,0.57421875,0.642578125,0.705078125,0.740234375,0.7509765625,0.7021484375,0.5966796875,0.474609375,0.3857421875,0.3623046875,0.39453125,0.4462890625,0.5146484375,0.57421875,0.59375,0.568359375,0.517578125,0.46875,0.4208984375,0.3671875,0.328125,0.3193359375,0.33984375,0.37109375,0.39453125,0.421875,0.4736328125,0.5244140625,0.5380859375,0.50390625,0.4375,0.3642578125,0.294921875,0.248046875,0.2509765625,0.30859375,0.3955078125,0.4677734375,0.5,0.517578125,0.525390625,0.513671875,0.4775390625,0.4296875,0.388671875,0.3642578125,0.357421875,0.3994140625,0.4833984375,0.57421875,0.6337890625,0.640625,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.6435546875,0.65234375,0.6240234375,0.57421875,0.5283203125,0.5126953125,0.5302734375,0.552734375,0.5615234375,0.5517578125,0.533203125,0.5166015625,0.5146484375,0.5302734375,0.5400390625,0.521484375,0.48828125,0.4697265625,0.4853515625,0.5361328125,0.6044921875,0.6689453125,0.697265625,0.673828125,0.6123046875,0.5478515625,0.515625,0.5302734375,0.556640625,0.5859375,0.6181640625,0.6513671875,0.68359375,0.712890625,0.740234375,0.7626953125,0.763671875,0.7294921875,0.662109375,0.5859375,0.52734375,0.5,0.4677734375,0.3955078125,0.30859375,0.2509765625,0.248046875,0.294921875,0.3642578125,0.439453125,0.5205078125,0.5771484375,0.5078125,0.4912109375,0.4697265625,0.4375,0.39453125,0.3486328125,0.314453125,0.3193359375,0.375,0.4638671875,0.5498046875,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.5400390625,0.59375,0.59375,0.52734375,0.41796875,0.318359375,0.2587890625,0.2255859375,0.2451171875,0.328125,0.447265625,0.5546875,0.6083984375,0.6044921875,0.578125,0.5224609375,0.44140625,0.3583984375,0.294921875,0.2646484375,0.2587890625,0.25390625,0.2373046875,0.2314453125,0.2568359375,0.31640625,0.39453125,0.46875,0.544921875,0.625,0.6826171875,0.6953125,0.6689453125,0.6298828125,0.6044921875,0.576171875,0.5205078125,0.4638671875,0.44140625,0.46875,0.5322265625,0.6044921875,0.6728515625,0.708984375,0.6796875,0.5771484375,0.4375,0.3212890625,0.2587890625,0.22265625,0.232421875,0.3115234375,0.447265625,0.5927734375,0.697265625,0.740234375,0.7529296875,0.712890625,0.6240234375,0.521484375,0.4501953125,0.4345703125,0.46875,0.509765625,0.52734375,0.5166015625,0.4853515625,0.45703125,0.4501953125,0.46875,0.490234375,0.490234375,0.474609375,0.4609375,0.462890625,0.48828125,0.5302734375,0.57421875,0.6005859375,0.58203125,0.5107421875,0.408203125,0.3154296875,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6044921875,0.5546875,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.244140625,0.27734375,0.3525390625,0.4384765625,0.4970703125,0.5048828125,0.46875,0.421875,0.37890625,0.3671875,0.40234375,0.4755859375,0.55078125,0.6044921875,0.6533203125,0.7041015625,0.7294921875,0.708984375,0.650390625,0.58203125,0.5302734375,0.4716796875,0.376953125,0.2783203125,0.2236328125,0.2333984375,0.2919921875,0.3642578125,0.4365234375,0.5068359375,0.560546875,0.5908203125,0.6025390625,0.61328125,0.634765625,0.6708984375,0.7314453125,0.7900390625,0.8095703125,0.7763671875,0.7080078125,0.634765625,0.556640625,0.4580078125,0.361328125,0.2919921875,0.26171875,0.2578125,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.7607421875,0.748046875,0.6796875,0.560546875,0.4248046875,0.318359375,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.2666015625,0.302734375,0.3642578125,0.427734375,0.470703125,0.482421875,0.46875,0.455078125,0.458984375,0.47265625,0.4794921875,0.46875,0.4375,0.39453125,0.361328125,0.3798828125,0.4521484375,0.546875,0.619140625,0.6376953125,0.6044921875,0.5458984375,0.4453125,0.3369140625,0.26953125,0.26953125,0.3232421875,0.39453125,0.470703125,0.548828125,0.5966796875,0.5849609375,0.5234375,0.4482421875,0.39453125,0.3427734375,0.2802734375,0.2421875,0.2587890625,0.3291015625,0.4208984375,0.5,0.5576171875,0.5546875,0.48046875,0.3671875,0.2685546875,0.23046875,0.2587890625,0.310546875,0.38671875,0.482421875,0.580078125,0.658203125,0.7099609375,0.740234375,0.7568359375,0.7353515625,0.673828125,0.595703125,0.5341796875,0.5126953125,0.5302734375,0.5458984375,0.5224609375,0.4638671875,0.3974609375,0.35546875,0.357421875,0.39453125,0.453125,0.5537109375,0.662109375,0.7294921875,0.7294921875,0.67578125,0.6044921875,0.533203125,0.46484375,0.408203125,0.3662109375,0.3349609375,0.30078125,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.5419921875,0.5927734375,0.662109375,0.712890625,0.7158203125,0.6728515625,0.6044921875,0.5361328125,0.4853515625,0.4697265625,0.48828125,0.521484375,0.5400390625,0.5302734375,0.5078125,0.4794921875,0.455078125,0.447265625,0.4580078125,0.4794921875,0.5,0.521484375,0.548828125,0.5634765625,0.546875,0.5009765625,0.443359375,0.39453125,0.359375,0.3642578125,0.40234375,0.4443359375,0.4580078125,0.4287109375,0.3642578125,0.306640625,0.3154296875,0.4052734375,0.546875,0.6787109375,0.7470703125,0.740234375,0.7177734375,0.7080078125,0.6953125,0.666015625,0.611328125,0.5419921875,0.46875,0.3974609375,0.3369140625,0.3173828125,0.3525390625,0.4248046875,0.4931640625,0.5302734375,0.548828125,0.53515625,0.48046875,0.3974609375,0.3173828125,0.2685546875,0.2587890625,0.2568359375,0.2568359375,0.28125,0.341796875,0.4326171875,0.5263671875,0.6044921875,0.68359375,0.779296875,0.8564453125,0.880859375,0.849609375,0.791015625,0.740234375,0.69921875,0.681640625,0.693359375,0.7236328125,0.751953125,0.759765625,0.740234375,0.6962890625,0.59375,0.4580078125,0.34765625,0.3037109375,0.3291015625,0.39453125,0.4580078125,0.484375,0.4638671875,0.4140625,0.369140625,0.3603515625,0.39453125,0.439453125,0.470703125,0.46875,0.4248046875,0.3564453125,0.2939453125,0.2587890625,0.24609375,0.287109375,0.3857421875,0.5078125,0.6064453125,0.6484375,0.634765625,0.60546875,0.572265625,0.5576171875,0.5771484375,0.62890625,0.689453125,0.740234375,0.771484375,0.744140625,0.6484375,0.5185546875,0.40625,0.353515625,0.3642578125,0.3974609375,0.4521484375,0.513671875,0.5576171875,0.5703125,0.5556640625,0.5302734375,0.5029296875,0.474609375,0.447265625,0.421875,0.4013671875,0.3828125,0.3642578125,0.3564453125,0.3876953125,0.4443359375,0.4912109375,0.4990234375,0.4609375,0.39453125,0.330078125,0.30078125,0.3251953125,0.3916015625,0.46484375,0.505859375,0.5,0.4755859375,0.4384765625,0.3974609375,0.369140625,0.36328125,0.3759765625,0.39453125,0.421875,0.48046875,0.5576171875,0.6240234375,0.6591796875,0.6572265625,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.650390625,0.623046875,0.5576171875,0.4833984375,0.4345703125,0.4326171875,0.46875,0.515625,0.5595703125,0.5830078125,0.5712890625,0.5341796875,0.494140625,0.46875,0.4443359375,0.4091796875,0.3896484375,0.4111328125,0.4755859375,0.55859375,0.634765625,0.6943359375,0.7001953125,0.642578125,0.5498046875,0.4677734375,0.4384765625,0.46875,0.513671875,0.552734375,0.587890625,0.62109375,0.65625,0.6962890625,0.740234375,0.7763671875,0.7685546875,0.708984375,0.619140625,0.53515625,0.4931640625,0.5,0.505859375,0.46484375,0.3916015625,0.3251953125,0.30078125,0.330078125,0.39453125,0.4736328125,0.5693359375,0.646484375,0.4873046875,0.51171875,0.5234375,0.5009765625,0.4482421875,0.3818359375,0.314453125,0.2802734375,0.3076171875,0.3876953125,0.48046875,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.5048828125,0.580078125,0.6162109375,0.5849609375,0.4970703125,0.3974609375,0.3251953125,0.2783203125,0.2900390625,0.3671875,0.474609375,0.5615234375,0.5869140625,0.55078125,0.49609375,0.431640625,0.3720703125,0.333984375,0.3212890625,0.32421875,0.3251953125,0.318359375,0.2890625,0.2587890625,0.255859375,0.2919921875,0.3564453125,0.4287109375,0.5087890625,0.60546875,0.6845703125,0.7080078125,0.671875,0.607421875,0.55078125,0.4912109375,0.4130859375,0.349609375,0.3408203125,0.392578125,0.474609375,0.55078125,0.6240234375,0.6845703125,0.693359375,0.6298828125,0.5146484375,0.400390625,0.3251953125,0.2724609375,0.263671875,0.322265625,0.435546875,0.5615234375,0.646484375,0.673828125,0.6689453125,0.611328125,0.5126953125,0.41796875,0.3671875,0.3759765625,0.4287109375,0.4873046875,0.5263671875,0.529296875,0.4990234375,0.455078125,0.427734375,0.4287109375,0.43359375,0.4228515625,0.41015625,0.41796875,0.4521484375,0.5087890625,0.5703125,0.6328125,0.68359375,0.685546875,0.62109375,0.509765625,0.3994140625,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.6064453125,0.568359375,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.326171875,0.3671875,0.43359375,0.4912109375,0.5107421875,0.484375,0.4287109375,0.36328125,0.2978515625,0.2685546875,0.30078125,0.384765625,0.48046875,0.55078125,0.6201171875,0.7021484375,0.763671875,0.7685546875,0.7158203125,0.6376953125,0.5703125,0.49609375,0.3857421875,0.2783203125,0.22265625,0.2392578125,0.3037109375,0.376953125,0.451171875,0.52734375,0.587890625,0.6171875,0.6201171875,0.6162109375,0.6220703125,0.6416015625,0.69140625,0.74609375,0.7724609375,0.7509765625,0.693359375,0.6220703125,0.544921875,0.45703125,0.376953125,0.3291015625,0.31640625,0.322265625,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.68359375,0.6845703125,0.6552734375,0.5849609375,0.48828125,0.39453125,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.3349609375,0.376953125,0.4384765625,0.4873046875,0.5009765625,0.4765625,0.4287109375,0.388671875,0.388671875,0.4296875,0.482421875,0.5126953125,0.5,0.4482421875,0.3994140625,0.40234375,0.4599609375,0.5390625,0.5966796875,0.599609375,0.55078125,0.4794921875,0.3798828125,0.2919921875,0.2607421875,0.296875,0.3720703125,0.4482421875,0.5263671875,0.6142578125,0.6728515625,0.6689453125,0.6044921875,0.517578125,0.4482421875,0.37890625,0.298828125,0.24609375,0.2548828125,0.3251953125,0.419921875,0.5,0.556640625,0.552734375,0.4814453125,0.37890625,0.2978515625,0.2802734375,0.3251953125,0.3916015625,0.47265625,0.5546875,0.6162109375,0.6494140625,0.6640625,0.673828125,0.6796875,0.6689453125,0.6396484375,0.603515625,0.5751953125,0.5634765625,0.5703125,0.568359375,0.525390625,0.455078125,0.392578125,0.3681640625,0.392578125,0.4482421875,0.51953125,0.619140625,0.70703125,0.73828125,0.7021484375,0.626953125,0.55078125,0.484375,0.4404296875,0.4228515625,0.4189453125,0.4111328125,0.380859375,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.5791015625,0.619140625,0.66796875,0.693359375,0.67578125,0.62109375,0.55078125,0.4892578125,0.46875,0.4970703125,0.5546875,0.6025390625,0.609375,0.5703125,0.51171875,0.4365234375,0.373046875,0.3544921875,0.3857421875,0.4443359375,0.5,0.556640625,0.623046875,0.6669921875,0.6572265625,0.5966796875,0.515625,0.4482421875,0.396484375,0.384765625,0.4111328125,0.44921875,0.4658203125,0.4404296875,0.376953125,0.3154296875,0.3056640625,0.3662109375,0.478515625,0.5966796875,0.6669921875,0.673828125,0.66796875,0.671875,0.6689453125,0.638671875,0.5791015625,0.5029296875,0.4287109375,0.361328125,0.3193359375,0.330078125,0.3935546875,0.48046875,0.546875,0.5703125,0.57421875,0.552734375,0.5,0.4306640625,0.3681640625,0.3330078125,0.3251953125,0.3212890625,0.306640625,0.3037109375,0.3330078125,0.396484375,0.4765625,0.55078125,0.6328125,0.7353515625,0.8212890625,0.849609375,0.8115234375,0.740234375,0.673828125,0.615234375,0.576171875,0.572265625,0.603515625,0.646484375,0.6748046875,0.673828125,0.6484375,0.5712890625,0.4658203125,0.3798828125,0.3505859375,0.3818359375,0.4482421875,0.5087890625,0.525390625,0.4931640625,0.4375,0.39453125,0.3984375,0.4482421875,0.505859375,0.5419921875,0.5341796875,0.48046875,0.4052734375,0.3466796875,0.3251953125,0.32421875,0.3583984375,0.4296875,0.517578125,0.5888671875,0.623046875,0.6220703125,0.6044921875,0.5673828125,0.53125,0.5234375,0.5537109375,0.611328125,0.673828125,0.724609375,0.7275390625,0.6650390625,0.556640625,0.4462890625,0.3828125,0.376953125,0.3935546875,0.4306640625,0.4833984375,0.5341796875,0.5673828125,0.5771484375,0.5703125,0.5625,0.5615234375,0.5546875,0.529296875,0.484375,0.4296875,0.376953125,0.33984375,0.3525390625,0.412109375,0.482421875,0.5234375,0.5087890625,0.4482421875,0.38671875,0.3701171875,0.40625,0.4716796875,0.52734375,0.5380859375,0.5,0.44140625,0.3681640625,0.3095703125,0.2958984375,0.33203125,0.392578125,0.4482421875,0.5029296875,0.5673828125,0.623046875,0.65234375,0.6513671875,0.634765625,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.619140625,0.5673828125,0.48046875,0.3994140625,0.359375,0.375,0.4287109375,0.49609375,0.5703125,0.619140625,0.615234375,0.5595703125,0.4873046875,0.4287109375,0.3740234375,0.318359375,0.298828125,0.3408203125,0.4345703125,0.5400390625,0.6220703125,0.6787109375,0.671875,0.5966796875,0.4892578125,0.404296875,0.3837890625,0.4287109375,0.4853515625,0.5244140625,0.544921875,0.5576171875,0.578125,0.6162109375,0.673828125,0.7216796875,0.7158203125,0.650390625,0.556640625,0.482421875,0.462890625,0.5,0.5380859375,0.52734375,0.4716796875,0.40625,0.3701171875,0.38671875,0.4482421875,0.529296875,0.6318359375,0.7177734375,0.47265625,0.5263671875,0.5615234375,0.548828125,0.4892578125,0.412109375,0.322265625,0.26171875,0.267578125,0.3369140625,0.4306640625,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.5185546875,0.609375,0.6708984375,0.6640625,0.59375,0.498046875,0.419921875,0.36328125,0.3623046875,0.4208984375,0.5029296875,0.5625,0.564453125,0.509765625,0.4404296875,0.3798828125,0.34765625,0.3525390625,0.3837890625,0.412109375,0.419921875,0.41015625,0.37109375,0.322265625,0.296875,0.314453125,0.369140625,0.439453125,0.5205078125,0.62109375,0.701171875,0.7177734375,0.66796875,0.583984375,0.509765625,0.4326171875,0.3408203125,0.275390625,0.2734375,0.337890625,0.4306640625,0.509765625,0.5869140625,0.6689453125,0.71484375,0.6904296875,0.603515625,0.5,0.419921875,0.35546875,0.322265625,0.34375,0.4150390625,0.5029296875,0.564453125,0.5791015625,0.568359375,0.51171875,0.4287109375,0.361328125,0.341796875,0.375,0.439453125,0.5078125,0.5576171875,0.5693359375,0.5390625,0.4873046875,0.4482421875,0.439453125,0.4345703125,0.4091796875,0.3837890625,0.3857421875,0.423828125,0.48828125,0.5595703125,0.6337890625,0.708984375,0.7431640625,0.7060546875,0.609375,0.5009765625,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.564453125,0.5458984375,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.4287109375,0.470703125,0.5263671875,0.5625,0.5546875,0.5068359375,0.439453125,0.36328125,0.2802734375,0.23046875,0.2490234375,0.3291015625,0.4296875,0.509765625,0.5888671875,0.6865234375,0.7626953125,0.7763671875,0.7216796875,0.6357421875,0.5595703125,0.478515625,0.369140625,0.2744140625,0.2392578125,0.275390625,0.353515625,0.4296875,0.5029296875,0.5712890625,0.6142578125,0.6201171875,0.59765625,0.57421875,0.5693359375,0.5810546875,0.6240234375,0.677734375,0.70703125,0.6923828125,0.6396484375,0.5693359375,0.49609375,0.42578125,0.37890625,0.3701171875,0.3896484375,0.4130859375,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5869140625,0.609375,0.6259765625,0.61328125,0.5634765625,0.4921875,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.4296875,0.4716796875,0.52734375,0.5615234375,0.5537109375,0.505859375,0.439453125,0.3837890625,0.380859375,0.431640625,0.5029296875,0.552734375,0.546875,0.4892578125,0.431640625,0.423828125,0.466796875,0.5322265625,0.5751953125,0.5673828125,0.509765625,0.4306640625,0.3359375,0.2646484375,0.2587890625,0.3193359375,0.41015625,0.4892578125,0.5693359375,0.662109375,0.7275390625,0.7265625,0.66015625,0.5673828125,0.4892578125,0.412109375,0.3203125,0.255859375,0.2578125,0.3251953125,0.419921875,0.5,0.5576171875,0.5595703125,0.5029296875,0.421875,0.36328125,0.36328125,0.419921875,0.4912109375,0.560546875,0.6083984375,0.6201171875,0.603515625,0.583984375,0.5791015625,0.580078125,0.578125,0.572265625,0.56640625,0.560546875,0.55859375,0.5595703125,0.5498046875,0.501953125,0.4345703125,0.3857421875,0.3818359375,0.4228515625,0.4892578125,0.568359375,0.6630859375,0.734375,0.740234375,0.6796875,0.5888671875,0.509765625,0.447265625,0.4248046875,0.443359375,0.4794921875,0.5,0.48046875,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.568359375,0.603515625,0.646484375,0.6630859375,0.638671875,0.580078125,0.509765625,0.4501953125,0.443359375,0.4921875,0.5654296875,0.6171875,0.6142578125,0.5595703125,0.4814453125,0.384765625,0.3076171875,0.2919921875,0.3427734375,0.4248046875,0.5,0.5751953125,0.6650390625,0.7275390625,0.7255859375,0.6591796875,0.5673828125,0.4892578125,0.4296875,0.4130859375,0.4404296875,0.484375,0.509765625,0.4912109375,0.4296875,0.36328125,0.330078125,0.3515625,0.421875,0.5087890625,0.5673828125,0.5791015625,0.583984375,0.607421875,0.6298828125,0.6240234375,0.5810546875,0.5126953125,0.439453125,0.3720703125,0.333984375,0.345703125,0.4072265625,0.4873046875,0.544921875,0.5595703125,0.5576171875,0.5419921875,0.5107421875,0.4736328125,0.44140625,0.4228515625,0.419921875,0.412109375,0.380859375,0.34765625,0.3408203125,0.3740234375,0.4375,0.509765625,0.5908203125,0.6923828125,0.7734375,0.791015625,0.740234375,0.6552734375,0.5791015625,0.51171875,0.4609375,0.44921875,0.4794921875,0.53125,0.5712890625,0.5791015625,0.5654296875,0.51171875,0.4375,0.384765625,0.37890625,0.421875,0.4892578125,0.5498046875,0.5615234375,0.5224609375,0.4619140625,0.421875,0.431640625,0.4892578125,0.556640625,0.599609375,0.5986328125,0.55078125,0.4833984375,0.4326171875,0.419921875,0.421875,0.439453125,0.4736328125,0.5146484375,0.548828125,0.5673828125,0.5693359375,0.55859375,0.517578125,0.466796875,0.4404296875,0.45703125,0.5107421875,0.5791015625,0.6435546875,0.67578125,0.654296875,0.583984375,0.4990234375,0.44140625,0.4296875,0.4345703125,0.4521484375,0.4833984375,0.517578125,0.544921875,0.55859375,0.5595703125,0.564453125,0.5869140625,0.6083984375,0.6044921875,0.5634765625,0.4990234375,0.4296875,0.375,0.3740234375,0.427734375,0.5029296875,0.5537109375,0.548828125,0.4892578125,0.4296875,0.41796875,0.4580078125,0.51953125,0.5625,0.5556640625,0.5,0.4228515625,0.33203125,0.2666015625,0.263671875,0.3251953125,0.4140625,0.4892578125,0.55859375,0.619140625,0.650390625,0.6435546875,0.609375,0.578125,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.55859375,0.5029296875,0.421875,0.357421875,0.33984375,0.375,0.439453125,0.517578125,0.6083984375,0.671875,0.671875,0.6064453125,0.515625,0.439453125,0.3662109375,0.2900390625,0.2529296875,0.2861328125,0.37890625,0.4873046875,0.5693359375,0.6259765625,0.6220703125,0.5546875,0.4599609375,0.390625,0.384765625,0.439453125,0.5009765625,0.5283203125,0.5205078125,0.498046875,0.490234375,0.517578125,0.5791015625,0.6357421875,0.6376953125,0.58203125,0.501953125,0.4453125,0.4443359375,0.5,0.5556640625,0.5625,0.51953125,0.4580078125,0.41796875,0.4296875,0.4892578125,0.5703125,0.671875,0.7529296875,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.4638671875,0.529296875,0.57421875,0.5673828125,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4326171875,0.408203125,0.3837890625,0.3857421875,0.42578125,0.490234375,0.5595703125,0.6357421875,0.728515625,0.796875,0.8017578125,0.7392578125,0.6484375,0.5693359375,0.5078125,0.486328125,0.5068359375,0.5458984375,0.568359375,0.5498046875,0.4892578125,0.4228515625,0.3818359375,0.3857421875,0.4345703125,0.501953125,0.5498046875,0.5595703125,0.548828125,0.5087890625,0.4609375,0.4375,0.4560546875,0.5107421875,0.5791015625,0.6552734375,0.7392578125,0.7880859375,0.7705078125,0.689453125,0.5888671875,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5693359375,0.669921875,0.75,0.7685546875,0.71875,0.6357421875,0.5595703125,0.48828125,0.419921875,0.376953125,0.3720703125,0.3955078125,0.421875,0.4296875,0.4248046875,0.40234375,0.3798828125,0.384765625,0.4248046875,0.490234375,0.5595703125,0.6259765625,0.67578125,0.6884765625,0.6591796875,0.6083984375,0.568359375,0.5595703125,0.546875,0.4912109375,0.4130859375,0.3515625,0.337890625,0.3740234375,0.439453125,0.5205078125,0.62890625,0.7236328125,0.759765625,0.7255859375,0.65234375,0.5791015625,0.5087890625,0.4404296875,0.3935546875,0.3818359375,0.396484375,0.416015625,0.419921875,0.421875,0.4384765625,0.470703125,0.5087890625,0.541015625,0.5576171875,0.5595703125,0.568359375,0.609375,0.666015625,0.7021484375,0.6943359375,0.646484375,0.5791015625,0.5,0.3994140625,0.3173828125,0.296875,0.34375,0.4248046875,0.5,0.57421875,0.65625,0.70703125,0.69140625,0.6142578125,0.517578125,0.439453125,0.3671875,0.29296875,0.2578125,0.2919921875,0.384765625,0.490234375,0.5693359375,0.6328125,0.6669921875,0.6494140625,0.583984375,0.501953125,0.4443359375,0.4296875,0.4375,0.4755859375,0.525390625,0.5537109375,0.5390625,0.48828125,0.419921875,0.35546875,0.3232421875,0.345703125,0.41796875,0.505859375,0.5654296875,0.5791015625,0.576171875,0.55859375,0.5263671875,0.48828125,0.4541015625,0.4345703125,0.4296875,0.4404296875,0.49609375,0.5771484375,0.6416015625,0.6591796875,0.6240234375,0.5595703125,0.4912109375,0.44140625,0.431640625,0.4658203125,0.5234375,0.5673828125,0.5791015625,0.58984375,0.62890625,0.6748046875,0.6982421875,0.6796875,0.626953125,0.5595703125,0.5009765625,0.486328125,0.5146484375,0.5595703125,0.5869140625,0.5693359375,0.509765625,0.4501953125,0.4365234375,0.4697265625,0.5234375,0.55859375,0.546875,0.4892578125,0.4140625,0.3251953125,0.2646484375,0.26953125,0.337890625,0.431640625,0.509765625,0.5869140625,0.677734375,0.7392578125,0.7353515625,0.6650390625,0.5693359375,0.4892578125,0.41015625,0.3193359375,0.2578125,0.26171875,0.330078125,0.4228515625,0.5,0.5576171875,0.5732421875,0.5458984375,0.501953125,0.4775390625,0.498046875,0.5595703125,0.6259765625,0.6640625,0.6494140625,0.5859375,0.5029296875,0.4443359375,0.4296875,0.427734375,0.423828125,0.4208984375,0.41796875,0.4169921875,0.41796875,0.419921875,0.4140625,0.384765625,0.353515625,0.3466796875,0.3779296875,0.439453125,0.509765625,0.5869140625,0.6796875,0.744140625,0.744140625,0.6796875,0.5869140625,0.509765625,0.4521484375,0.4482421875,0.498046875,0.5703125,0.62109375,0.6162109375,0.5595703125,0.48828125,0.4208984375,0.3779296875,0.3720703125,0.392578125,0.4150390625,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.44921875,0.431640625,0.45703125,0.498046875,0.521484375,0.5009765625,0.439453125,0.361328125,0.275390625,0.22265625,0.2373046875,0.314453125,0.412109375,0.4892578125,0.56640625,0.6591796875,0.728515625,0.734375,0.6748046875,0.5869140625,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.4326171875,0.4892578125,0.5712890625,0.63671875,0.6552734375,0.623046875,0.5595703125,0.490234375,0.4248046875,0.384765625,0.3798828125,0.40234375,0.4248046875,0.4296875,0.431640625,0.447265625,0.4794921875,0.5185546875,0.5537109375,0.57421875,0.5791015625,0.5693359375,0.5185546875,0.4462890625,0.392578125,0.384765625,0.423828125,0.4892578125,0.5654296875,0.6494140625,0.7001953125,0.68359375,0.60546875,0.5078125,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.412109375,0.380859375,0.345703125,0.3349609375,0.36328125,0.421875,0.4892578125,0.546875,0.55859375,0.5234375,0.4697265625,0.4365234375,0.4501953125,0.509765625,0.5791015625,0.638671875,0.666015625,0.6533203125,0.6142578125,0.5791015625,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.412109375,0.3720703125,0.3212890625,0.29296875,0.3076171875,0.3603515625,0.4296875,0.5029296875,0.5751953125,0.623046875,0.6328125,0.6123046875,0.5869140625,0.5791015625,0.57421875,0.556640625,0.5244140625,0.48828125,0.458984375,0.4423828125,0.439453125,0.453125,0.509765625,0.5927734375,0.6572265625,0.6728515625,0.6357421875,0.5693359375,0.5078125,0.4892578125,0.5146484375,0.55859375,0.5859375,0.5693359375,0.509765625,0.451171875,0.4404296875,0.478515625,0.5361328125,0.572265625,0.5595703125,0.5,0.419921875,0.3251953125,0.2578125,0.255859375,0.3203125,0.412109375,0.4892578125,0.5556640625,0.5986328125,0.595703125,0.5478515625,0.48046875,0.4306640625,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.421875,0.3955078125,0.373046875,0.3798828125,0.42578125,0.49609375,0.5693359375,0.6494140625,0.7431640625,0.8115234375,0.8134765625,0.7490234375,0.6572265625,0.5791015625,0.498046875,0.3876953125,0.2880859375,0.2470703125,0.275390625,0.34765625,0.419921875,0.4794921875,0.505859375,0.4990234375,0.4794921875,0.474609375,0.505859375,0.5693359375,0.626953125,0.623046875,0.556640625,0.462890625,0.3935546875,0.3857421875,0.439453125,0.498046875,0.513671875,0.4853515625,0.4423828125,0.41796875,0.4375,0.5,0.5595703125,0.5712890625,0.53125,0.46875,0.42578125,0.43359375,0.4892578125,0.564453125,0.6474609375,0.6982421875,0.4404296875,0.5234375,0.5888671875,0.5986328125,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4248046875,0.4130859375,0.40625,0.421875,0.462890625,0.517578125,0.5703125,0.630859375,0.7158203125,0.7900390625,0.8125,0.7734375,0.697265625,0.6220703125,0.556640625,0.5185546875,0.51171875,0.5224609375,0.525390625,0.501953125,0.4482421875,0.392578125,0.3681640625,0.392578125,0.455078125,0.525390625,0.568359375,0.5703125,0.5537109375,0.5234375,0.4990234375,0.50390625,0.546875,0.609375,0.673828125,0.73828125,0.8046875,0.833984375,0.8017578125,0.7177734375,0.6220703125,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.5185546875,0.6142578125,0.6982421875,0.73046875,0.701171875,0.6357421875,0.5703125,0.5048828125,0.4296875,0.3681640625,0.3388671875,0.34375,0.36328125,0.376953125,0.384765625,0.3857421875,0.3935546875,0.41796875,0.462890625,0.517578125,0.5703125,0.619140625,0.6572265625,0.666015625,0.64453125,0.6064453125,0.5771484375,0.5703125,0.55859375,0.505859375,0.4287109375,0.365234375,0.3447265625,0.373046875,0.4287109375,0.5009765625,0.60546875,0.708984375,0.76953125,0.7685546875,0.7255859375,0.673828125,0.6171875,0.5439453125,0.46484375,0.3984375,0.3564453125,0.3369140625,0.3251953125,0.322265625,0.3505859375,0.4111328125,0.484375,0.544921875,0.5732421875,0.5703125,0.5712890625,0.611328125,0.6787109375,0.736328125,0.755859375,0.7294921875,0.673828125,0.6025390625,0.5068359375,0.4189453125,0.376953125,0.3935546875,0.4453125,0.5,0.5546875,0.61328125,0.64453125,0.6259765625,0.5625,0.4873046875,0.4287109375,0.376953125,0.3330078125,0.3291015625,0.3798828125,0.470703125,0.560546875,0.6220703125,0.6669921875,0.6806640625,0.6435546875,0.5615234375,0.466796875,0.400390625,0.376953125,0.375,0.396484375,0.4287109375,0.4453125,0.4296875,0.384765625,0.3251953125,0.2744140625,0.271484375,0.337890625,0.455078125,0.5791015625,0.6572265625,0.673828125,0.66796875,0.6376953125,0.580078125,0.505859375,0.4375,0.39453125,0.376953125,0.3798828125,0.431640625,0.5185546875,0.599609375,0.6396484375,0.6240234375,0.5703125,0.51171875,0.47265625,0.4765625,0.525390625,0.5966796875,0.65234375,0.673828125,0.6884765625,0.712890625,0.7294921875,0.7197265625,0.6796875,0.623046875,0.5703125,0.5283203125,0.5244140625,0.556640625,0.599609375,0.6220703125,0.6044921875,0.55078125,0.49609375,0.46875,0.4716796875,0.4921875,0.505859375,0.4912109375,0.4482421875,0.392578125,0.33203125,0.2998046875,0.322265625,0.39453125,0.482421875,0.55078125,0.6181640625,0.6923828125,0.734375,0.7109375,0.62890625,0.5283203125,0.4482421875,0.3720703125,0.296875,0.2568359375,0.279296875,0.353515625,0.4384765625,0.5,0.541015625,0.544921875,0.5166015625,0.4833984375,0.474609375,0.505859375,0.5703125,0.63671875,0.671875,0.6494140625,0.5732421875,0.474609375,0.40234375,0.376953125,0.3642578125,0.3447265625,0.3232421875,0.3095703125,0.3076171875,0.3154296875,0.3251953125,0.33203125,0.33203125,0.337890625,0.3671875,0.421875,0.4873046875,0.55078125,0.619140625,0.7001953125,0.7568359375,0.7568359375,0.7001953125,0.619140625,0.55078125,0.5,0.4931640625,0.5322265625,0.5888671875,0.6279296875,0.62109375,0.5703125,0.505859375,0.4375,0.3798828125,0.345703125,0.3349609375,0.3330078125,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.4990234375,0.48046875,0.4951171875,0.51953125,0.5244140625,0.4931640625,0.4287109375,0.3525390625,0.2724609375,0.2255859375,0.2392578125,0.306640625,0.3876953125,0.4482421875,0.5087890625,0.59375,0.671875,0.7041015625,0.677734375,0.615234375,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.3388671875,0.3974609375,0.490234375,0.576171875,0.62109375,0.6142578125,0.5703125,0.517578125,0.462890625,0.41796875,0.3935546875,0.3857421875,0.384765625,0.376953125,0.373046875,0.39453125,0.451171875,0.529296875,0.60546875,0.6552734375,0.673828125,0.669921875,0.6142578125,0.5205078125,0.4296875,0.3837890625,0.39453125,0.4482421875,0.5126953125,0.5791015625,0.6123046875,0.58984375,0.5185546875,0.4375,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.3212890625,0.306640625,0.2958984375,0.306640625,0.34375,0.3955078125,0.4482421875,0.4912109375,0.505859375,0.4921875,0.4716796875,0.46875,0.49609375,0.55078125,0.6142578125,0.673828125,0.7080078125,0.705078125,0.673828125,0.638671875,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3271484375,0.298828125,0.2587890625,0.23828125,0.2548828125,0.3076171875,0.376953125,0.455078125,0.5498046875,0.63671875,0.689453125,0.7001953125,0.6865234375,0.673828125,0.6572265625,0.6201171875,0.5634765625,0.50390625,0.45703125,0.43359375,0.4287109375,0.443359375,0.5087890625,0.60546875,0.6865234375,0.7158203125,0.6865234375,0.6220703125,0.55859375,0.533203125,0.5498046875,0.587890625,0.6142578125,0.6025390625,0.55078125,0.5,0.4912109375,0.521484375,0.564453125,0.5849609375,0.5615234375,0.5,0.419921875,0.3251953125,0.2548828125,0.24609375,0.298828125,0.37890625,0.4482421875,0.5048828125,0.5341796875,0.5185546875,0.4609375,0.3876953125,0.3369140625,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.36328125,0.34375,0.3427734375,0.380859375,0.45703125,0.544921875,0.6220703125,0.701171875,0.7958984375,0.8662109375,0.875,0.822265625,0.7421875,0.673828125,0.5986328125,0.4814453125,0.3544921875,0.267578125,0.2451171875,0.275390625,0.3251953125,0.3720703125,0.4033203125,0.42578125,0.4521484375,0.4931640625,0.5517578125,0.6220703125,0.6796875,0.6796875,0.611328125,0.5087890625,0.421875,0.3935546875,0.4287109375,0.470703125,0.474609375,0.4462890625,0.4130859375,0.404296875,0.435546875,0.5,0.560546875,0.5771484375,0.541015625,0.4755859375,0.419921875,0.4091796875,0.4482421875,0.5048828125,0.568359375,0.6044921875,0.40234375,0.5078125,0.599609375,0.6337890625,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4677734375,0.4638671875,0.4638671875,0.4716796875,0.4892578125,0.509765625,0.5302734375,0.560546875,0.62890625,0.708984375,0.759765625,0.755859375,0.705078125,0.634765625,0.5654296875,0.5107421875,0.4775390625,0.4638671875,0.455078125,0.4345703125,0.39453125,0.357421875,0.35546875,0.3974609375,0.4638671875,0.5224609375,0.5458984375,0.5302734375,0.5029296875,0.482421875,0.4912109375,0.5380859375,0.61328125,0.6875,0.740234375,0.787109375,0.830078125,0.8427734375,0.806640625,0.734375,0.658203125,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.4482421875,0.5234375,0.5966796875,0.6318359375,0.6201171875,0.5771484375,0.5302734375,0.478515625,0.4091796875,0.3447265625,0.30859375,0.310546875,0.3359375,0.3642578125,0.390625,0.4189453125,0.447265625,0.4716796875,0.4921875,0.51171875,0.5302734375,0.5478515625,0.5625,0.5654296875,0.5576171875,0.5439453125,0.5322265625,0.5302734375,0.5224609375,0.48828125,0.44140625,0.40625,0.400390625,0.4267578125,0.46875,0.5224609375,0.599609375,0.6826171875,0.7421875,0.765625,0.7587890625,0.740234375,0.7138671875,0.6572265625,0.56640625,0.4580078125,0.359375,0.29296875,0.2587890625,0.2431640625,0.2724609375,0.34765625,0.44140625,0.5166015625,0.5458984375,0.5302734375,0.515625,0.5478515625,0.6240234375,0.7099609375,0.767578125,0.775390625,0.740234375,0.6875,0.6142578125,0.5380859375,0.4853515625,0.4697265625,0.48046875,0.5,0.51953125,0.541015625,0.5517578125,0.5439453125,0.51953125,0.4912109375,0.46875,0.4521484375,0.447265625,0.466796875,0.5107421875,0.5654296875,0.6103515625,0.634765625,0.650390625,0.6474609375,0.609375,0.541015625,0.4619140625,0.3984375,0.3642578125,0.341796875,0.3369140625,0.341796875,0.3447265625,0.33203125,0.3017578125,0.2587890625,0.2255859375,0.2509765625,0.3505859375,0.4970703125,0.6376953125,0.72265625,0.740234375,0.7353515625,0.705078125,0.640625,0.5517578125,0.4638671875,0.3984375,0.3642578125,0.3486328125,0.3759765625,0.44140625,0.515625,0.564453125,0.56640625,0.5302734375,0.4873046875,0.4638671875,0.482421875,0.546875,0.6318359375,0.703125,0.740234375,0.763671875,0.7685546875,0.740234375,0.681640625,0.611328125,0.556640625,0.5302734375,0.51953125,0.541015625,0.587890625,0.634765625,0.6572265625,0.64453125,0.6044921875,0.55859375,0.5107421875,0.4697265625,0.44140625,0.4248046875,0.4111328125,0.39453125,0.375,0.3603515625,0.369140625,0.4140625,0.4833984375,0.552734375,0.6044921875,0.6533203125,0.703125,0.7177734375,0.673828125,0.580078125,0.4755859375,0.39453125,0.32421875,0.2734375,0.26953125,0.3203125,0.400390625,0.46875,0.5,0.5087890625,0.484375,0.44140625,0.4111328125,0.4169921875,0.4619140625,0.5302734375,0.599609375,0.6474609375,0.642578125,0.580078125,0.484375,0.4033203125,0.3642578125,0.33203125,0.28515625,0.2373046875,0.208984375,0.2099609375,0.232421875,0.2587890625,0.2861328125,0.3212890625,0.369140625,0.4306640625,0.49609375,0.5556640625,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.7568359375,0.71484375,0.6552734375,0.6044921875,0.5654296875,0.548828125,0.5576171875,0.576171875,0.5849609375,0.5693359375,0.5302734375,0.4833984375,0.4326171875,0.3828125,0.341796875,0.310546875,0.2841796875,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5673828125,0.5595703125,0.57421875,0.587890625,0.578125,0.5361328125,0.46875,0.3955078125,0.322265625,0.2783203125,0.28125,0.3212890625,0.3681640625,0.39453125,0.423828125,0.490234375,0.57421875,0.640625,0.6650390625,0.646484375,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.267578125,0.3115234375,0.38671875,0.4658203125,0.5224609375,0.5419921875,0.5302734375,0.51171875,0.4921875,0.4716796875,0.447265625,0.4189453125,0.390625,0.3642578125,0.34375,0.3544921875,0.4140625,0.513671875,0.6220703125,0.7021484375,0.740234375,0.7509765625,0.7021484375,0.5966796875,0.474609375,0.3857421875,0.3623046875,0.39453125,0.4404296875,0.48046875,0.4970703125,0.4775390625,0.43359375,0.3896484375,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.259765625,0.2646484375,0.28125,0.30859375,0.3427734375,0.373046875,0.39453125,0.4111328125,0.4248046875,0.44140625,0.4697265625,0.5107421875,0.55859375,0.6044921875,0.6533203125,0.705078125,0.740234375,0.740234375,0.7080078125,0.666015625,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.27734375,0.267578125,0.2421875,0.228515625,0.24609375,0.2958984375,0.3642578125,0.4462890625,0.5595703125,0.6767578125,0.7568359375,0.7822265625,0.7666015625,0.740234375,0.7080078125,0.65625,0.5908203125,0.5302734375,0.4892578125,0.4716796875,0.46875,0.4833984375,0.544921875,0.6357421875,0.708984375,0.7333984375,0.701171875,0.634765625,0.5703125,0.541015625,0.5546875,0.5966796875,0.634765625,0.6396484375,0.6044921875,0.568359375,0.5634765625,0.5849609375,0.607421875,0.6044921875,0.5654296875,0.5,0.4208984375,0.3291015625,0.2587890625,0.2421875,0.2802734375,0.3427734375,0.39453125,0.435546875,0.4521484375,0.4306640625,0.375,0.3115234375,0.2685546875,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.3349609375,0.306640625,0.30859375,0.361328125,0.4541015625,0.5556640625,0.634765625,0.7138671875,0.8046875,0.8759765625,0.892578125,0.853515625,0.7919921875,0.740234375,0.6826171875,0.5791015625,0.44921875,0.333984375,0.263671875,0.2451171875,0.2587890625,0.2763671875,0.2939453125,0.328125,0.388671875,0.4716796875,0.5595703125,0.634765625,0.6982421875,0.7197265625,0.681640625,0.599609375,0.5126953125,0.46484375,0.46875,0.478515625,0.4541015625,0.4111328125,0.380859375,0.38671875,0.431640625,0.5,0.564453125,0.5927734375,0.568359375,0.501953125,0.4287109375,0.388671875,0.39453125,0.419921875,0.458984375,0.4853515625,0.3671875,0.48046875,0.5888671875,0.64453125,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.53125,0.53515625,0.53515625,0.52734375,0.509765625,0.4892578125,0.46875,0.4638671875,0.5078125,0.587890625,0.662109375,0.693359375,0.6689453125,0.6044921875,0.533203125,0.466796875,0.4189453125,0.3974609375,0.392578125,0.3857421875,0.3642578125,0.3466796875,0.3671875,0.4189453125,0.4775390625,0.51171875,0.5068359375,0.46875,0.427734375,0.412109375,0.4443359375,0.5244140625,0.623046875,0.7021484375,0.740234375,0.7666015625,0.7890625,0.7900390625,0.76171875,0.7138671875,0.6669921875,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.3955078125,0.443359375,0.4912109375,0.5185546875,0.517578125,0.49609375,0.46875,0.435546875,0.380859375,0.3251953125,0.2978515625,0.30859375,0.3486328125,0.39453125,0.443359375,0.49609375,0.53515625,0.5439453125,0.5234375,0.4921875,0.46875,0.451171875,0.4365234375,0.43359375,0.44140625,0.455078125,0.466796875,0.46875,0.466796875,0.458984375,0.453125,0.4580078125,0.4765625,0.5029296875,0.5302734375,0.5576171875,0.591796875,0.62890625,0.666015625,0.6962890625,0.720703125,0.740234375,0.75390625,0.7353515625,0.6650390625,0.5498046875,0.419921875,0.31640625,0.2587890625,0.2255859375,0.2451171875,0.3173828125,0.4111328125,0.4833984375,0.501953125,0.46875,0.4345703125,0.4501953125,0.521484375,0.6240234375,0.712890625,0.7529296875,0.740234375,0.7119140625,0.673828125,0.6298828125,0.5849609375,0.5478515625,0.51953125,0.5,0.4794921875,0.4580078125,0.447265625,0.455078125,0.4794921875,0.5078125,0.5302734375,0.552734375,0.5869140625,0.62109375,0.640625,0.6396484375,0.6240234375,0.6044921875,0.587890625,0.57421875,0.5576171875,0.529296875,0.48828125,0.4404296875,0.39453125,0.3505859375,0.31640625,0.2978515625,0.2919921875,0.291015625,0.28125,0.2587890625,0.244140625,0.283203125,0.3857421875,0.5244140625,0.6513671875,0.7255859375,0.740234375,0.73828125,0.72265625,0.6796875,0.607421875,0.521484375,0.4462890625,0.39453125,0.35546875,0.3466796875,0.375,0.4248046875,0.470703125,0.486328125,0.46875,0.443359375,0.4306640625,0.4521484375,0.5166015625,0.6044921875,0.685546875,0.740234375,0.775390625,0.7646484375,0.6982421875,0.599609375,0.5087890625,0.462890625,0.46875,0.4951171875,0.544921875,0.6044921875,0.6513671875,0.669921875,0.6591796875,0.634765625,0.6005859375,0.537109375,0.4580078125,0.3896484375,0.3515625,0.3486328125,0.3642578125,0.384765625,0.4169921875,0.4609375,0.513671875,0.564453125,0.60546875,0.634765625,0.6640625,0.6923828125,0.6904296875,0.6376953125,0.544921875,0.443359375,0.3642578125,0.2998046875,0.275390625,0.306640625,0.3798828125,0.4609375,0.5048828125,0.5,0.470703125,0.4111328125,0.34765625,0.3173828125,0.337890625,0.3974609375,0.46875,0.5439453125,0.61328125,0.6435546875,0.6123046875,0.5341796875,0.4501953125,0.39453125,0.3408203125,0.2646484375,0.1923828125,0.15625,0.1689453125,0.2119140625,0.2587890625,0.30859375,0.3720703125,0.4443359375,0.513671875,0.568359375,0.6064453125,0.634765625,0.6640625,0.69921875,0.7236328125,0.7236328125,0.69921875,0.6640625,0.634765625,0.609375,0.5849609375,0.5625,0.541015625,0.51953125,0.4951171875,0.46875,0.4453125,0.4267578125,0.408203125,0.3828125,0.34765625,0.3046875,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6171875,0.626953125,0.6513671875,0.6650390625,0.6484375,0.5986328125,0.5302734375,0.458984375,0.3974609375,0.361328125,0.35546875,0.369140625,0.3759765625,0.3642578125,0.35546875,0.3896484375,0.466796875,0.5576171875,0.626953125,0.6513671875,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.2607421875,0.275390625,0.30859375,0.3564453125,0.40625,0.4462890625,0.46875,0.4921875,0.5234375,0.5439453125,0.53515625,0.49609375,0.443359375,0.39453125,0.3515625,0.3349609375,0.369140625,0.4609375,0.580078125,0.681640625,0.740234375,0.771484375,0.744140625,0.6484375,0.5185546875,0.40625,0.353515625,0.3642578125,0.3876953125,0.3994140625,0.3974609375,0.3857421875,0.376953125,0.37890625,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.263671875,0.2880859375,0.3251953125,0.361328125,0.380859375,0.3798828125,0.3642578125,0.3486328125,0.3515625,0.3896484375,0.4580078125,0.537109375,0.6005859375,0.634765625,0.666015625,0.7080078125,0.740234375,0.740234375,0.705078125,0.6533203125,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.2958984375,0.3037109375,0.2890625,0.275390625,0.28515625,0.328125,0.39453125,0.478515625,0.599609375,0.7236328125,0.8037109375,0.8193359375,0.7861328125,0.740234375,0.69140625,0.6328125,0.5771484375,0.541015625,0.52734375,0.5283203125,0.5302734375,0.5419921875,0.5927734375,0.662109375,0.712890625,0.7158203125,0.6728515625,0.6044921875,0.5390625,0.505859375,0.5185546875,0.568359375,0.6240234375,0.650390625,0.634765625,0.6162109375,0.6220703125,0.640625,0.646484375,0.6220703125,0.568359375,0.5,0.4228515625,0.3388671875,0.275390625,0.2587890625,0.287109375,0.33203125,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.345703125,0.2958984375,0.28125,0.3251953125,0.4189453125,0.5234375,0.6044921875,0.681640625,0.765625,0.828125,0.8447265625,0.8173828125,0.7724609375,0.740234375,0.7060546875,0.6396484375,0.541015625,0.4326171875,0.341796875,0.28515625,0.2587890625,0.23828125,0.224609375,0.2451171875,0.314453125,0.4189453125,0.5244140625,0.6044921875,0.6748046875,0.7294921875,0.740234375,0.6982421875,0.625,0.5595703125,0.5302734375,0.5009765625,0.44140625,0.3779296875,0.34765625,0.3681640625,0.427734375,0.5,0.568359375,0.6162109375,0.61328125,0.5546875,0.4677734375,0.3955078125,0.3642578125,0.353515625,0.3681640625,0.39453125,0.3466796875,0.4462890625,0.552734375,0.6162109375,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.57421875,0.5859375,0.5927734375,0.5771484375,0.5361328125,0.4814453125,0.4287109375,0.392578125,0.4111328125,0.482421875,0.5673828125,0.619140625,0.611328125,0.55078125,0.478515625,0.4111328125,0.3671875,0.35546875,0.3681640625,0.3818359375,0.376953125,0.376953125,0.4111328125,0.466796875,0.5107421875,0.5185546875,0.486328125,0.4287109375,0.3740234375,0.3525390625,0.3876953125,0.4736328125,0.576171875,0.6494140625,0.673828125,0.68359375,0.69140625,0.689453125,0.67578125,0.654296875,0.634765625,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3896484375,0.41015625,0.4306640625,0.4443359375,0.4462890625,0.439453125,0.4287109375,0.4111328125,0.3701171875,0.326171875,0.3095703125,0.3330078125,0.38671875,0.4482421875,0.513671875,0.5859375,0.6318359375,0.6220703125,0.5625,0.4873046875,0.4287109375,0.3798828125,0.341796875,0.3330078125,0.3544921875,0.392578125,0.421875,0.4287109375,0.4306640625,0.4423828125,0.4658203125,0.4990234375,0.5322265625,0.556640625,0.5703125,0.5751953125,0.56640625,0.552734375,0.5546875,0.5791015625,0.623046875,0.673828125,0.7236328125,0.75390625,0.7314453125,0.64453125,0.517578125,0.400390625,0.3251953125,0.27734375,0.2802734375,0.337890625,0.4169921875,0.474609375,0.4775390625,0.4287109375,0.3759765625,0.3671875,0.41796875,0.5126953125,0.611328125,0.6689453125,0.673828125,0.666015625,0.6669921875,0.6640625,0.64453125,0.6044921875,0.5517578125,0.5,0.4443359375,0.3857421875,0.3544921875,0.373046875,0.4365234375,0.51171875,0.5703125,0.6259765625,0.6904296875,0.734375,0.7294921875,0.677734375,0.6083984375,0.55078125,0.5078125,0.4931640625,0.5068359375,0.52734375,0.5302734375,0.5029296875,0.4482421875,0.38671875,0.3330078125,0.3017578125,0.30078125,0.31640625,0.330078125,0.3251953125,0.3232421875,0.3583984375,0.43359375,0.5302734375,0.615234375,0.6640625,0.673828125,0.6767578125,0.6845703125,0.6806640625,0.646484375,0.5849609375,0.5126953125,0.4482421875,0.3896484375,0.34765625,0.33984375,0.365234375,0.4052734375,0.4306640625,0.4287109375,0.416015625,0.40234375,0.4091796875,0.4521484375,0.5263671875,0.6064453125,0.673828125,0.720703125,0.7060546875,0.625,0.5126953125,0.421875,0.3935546875,0.4287109375,0.484375,0.55078125,0.611328125,0.6455078125,0.6484375,0.634765625,0.6220703125,0.5986328125,0.5322265625,0.4375,0.35546875,0.318359375,0.33203125,0.376953125,0.4306640625,0.4921875,0.5478515625,0.5869140625,0.60546875,0.61328125,0.6220703125,0.6357421875,0.6552734375,0.65625,0.6181640625,0.5419921875,0.4541015625,0.376953125,0.3173828125,0.3095703125,0.361328125,0.4453125,0.5166015625,0.5361328125,0.5,0.4384765625,0.3505859375,0.2724609375,0.2451171875,0.2802734375,0.353515625,0.4287109375,0.5078125,0.59765625,0.6611328125,0.662109375,0.6015625,0.5166015625,0.4482421875,0.376953125,0.28125,0.197265625,0.1650390625,0.1943359375,0.2607421875,0.3251953125,0.390625,0.4658203125,0.53515625,0.5830078125,0.60546875,0.61328125,0.6220703125,0.6328125,0.646484375,0.65625,0.65625,0.646484375,0.6328125,0.6220703125,0.6083984375,0.583984375,0.546875,0.50390625,0.466796875,0.4423828125,0.4287109375,0.4248046875,0.4404296875,0.4609375,0.4638671875,0.4375,0.38671875,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.6201171875,0.6484375,0.6884765625,0.708984375,0.6923828125,0.6396484375,0.5703125,0.5029296875,0.45703125,0.4384765625,0.439453125,0.4404296875,0.421875,0.376953125,0.3349609375,0.3330078125,0.3857421875,0.4765625,0.5673828125,0.619140625,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.3212890625,0.3037109375,0.2890625,0.294921875,0.3271484375,0.376953125,0.4287109375,0.4873046875,0.5625,0.6220703125,0.6318359375,0.5859375,0.513671875,0.4482421875,0.384765625,0.33203125,0.3251953125,0.384765625,0.4921875,0.599609375,0.673828125,0.724609375,0.7275390625,0.6650390625,0.556640625,0.4462890625,0.3828125,0.376953125,0.3818359375,0.3681640625,0.3486328125,0.3408203125,0.3583984375,0.3984375,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.333984375,0.3701171875,0.4189453125,0.4541015625,0.45703125,0.42578125,0.376953125,0.33203125,0.318359375,0.35546875,0.4375,0.5322265625,0.5986328125,0.6220703125,0.638671875,0.673828125,0.705078125,0.7080078125,0.673828125,0.6142578125,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3779296875,0.396484375,0.380859375,0.357421875,0.3525390625,0.3837890625,0.4482421875,0.53125,0.646484375,0.755859375,0.8115234375,0.796875,0.7373046875,0.673828125,0.611328125,0.5537109375,0.51953125,0.5185546875,0.541015625,0.5634765625,0.5703125,0.5791015625,0.619140625,0.66796875,0.693359375,0.67578125,0.62109375,0.55078125,0.484375,0.4462890625,0.45703125,0.509765625,0.5771484375,0.6201171875,0.6220703125,0.619140625,0.6376953125,0.662109375,0.6650390625,0.6318359375,0.5703125,0.5,0.42578125,0.3525390625,0.3037109375,0.2978515625,0.3251953125,0.3603515625,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.380859375,0.306640625,0.2646484375,0.2880859375,0.3701171875,0.470703125,0.55078125,0.625,0.6982421875,0.7470703125,0.7529296875,0.724609375,0.6904296875,0.673828125,0.662109375,0.642578125,0.6005859375,0.5341796875,0.455078125,0.3818359375,0.3251953125,0.271484375,0.2197265625,0.20703125,0.2578125,0.359375,0.46875,0.55078125,0.62890625,0.712890625,0.7685546875,0.7646484375,0.7060546875,0.62890625,0.5703125,0.5087890625,0.4208984375,0.3427734375,0.3154296875,0.3505859375,0.423828125,0.5,0.5732421875,0.640625,0.6650390625,0.6240234375,0.533203125,0.439453125,0.376953125,0.3369140625,0.3349609375,0.3671875,0.34765625,0.416015625,0.5,0.5576171875,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.56640625,0.5908203125,0.615234375,0.61328125,0.5732421875,0.5087890625,0.439453125,0.384765625,0.384765625,0.44140625,0.51953125,0.572265625,0.568359375,0.509765625,0.4384765625,0.376953125,0.3466796875,0.357421875,0.392578125,0.4228515625,0.4296875,0.4384765625,0.478515625,0.533203125,0.5654296875,0.556640625,0.5078125,0.439453125,0.375,0.33984375,0.3564453125,0.421875,0.505859375,0.564453125,0.5791015625,0.5810546875,0.58203125,0.5810546875,0.578125,0.5751953125,0.5712890625,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.431640625,0.435546875,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.4296875,0.3935546875,0.3525390625,0.3369140625,0.361328125,0.419921875,0.4892578125,0.56640625,0.6513671875,0.7041015625,0.689453125,0.6142578125,0.517578125,0.439453125,0.373046875,0.3232421875,0.310546875,0.33984375,0.390625,0.4306640625,0.439453125,0.4423828125,0.4560546875,0.4814453125,0.51171875,0.5390625,0.5546875,0.5595703125,0.5517578125,0.515625,0.4697265625,0.4453125,0.4609375,0.5126953125,0.5791015625,0.6513671875,0.7236328125,0.751953125,0.7109375,0.611328125,0.5009765625,0.419921875,0.3623046875,0.353515625,0.3974609375,0.4619140625,0.505859375,0.498046875,0.439453125,0.375,0.341796875,0.361328125,0.4287109375,0.51171875,0.568359375,0.5791015625,0.5849609375,0.6142578125,0.6474609375,0.6552734375,0.6259765625,0.5673828125,0.5,0.4248046875,0.3427734375,0.2919921875,0.3076171875,0.384765625,0.4814453125,0.5595703125,0.6337890625,0.7177734375,0.7705078125,0.7568359375,0.6826171875,0.5869140625,0.509765625,0.4521484375,0.4404296875,0.4755859375,0.529296875,0.5625,0.548828125,0.4892578125,0.419921875,0.361328125,0.333984375,0.345703125,0.3818359375,0.4130859375,0.419921875,0.421875,0.4404296875,0.4755859375,0.5185546875,0.5546875,0.5751953125,0.5791015625,0.5869140625,0.6171875,0.6484375,0.6552734375,0.6220703125,0.5595703125,0.4892578125,0.4208984375,0.3642578125,0.341796875,0.3583984375,0.3994140625,0.4326171875,0.439453125,0.431640625,0.40625,0.384765625,0.3935546875,0.4384765625,0.5078125,0.5791015625,0.634765625,0.62890625,0.5595703125,0.46484375,0.3935546875,0.3857421875,0.439453125,0.509765625,0.576171875,0.619140625,0.625,0.6025390625,0.5771484375,0.5693359375,0.5546875,0.4970703125,0.4150390625,0.349609375,0.33203125,0.3662109375,0.4296875,0.4990234375,0.5654296875,0.607421875,0.615234375,0.595703125,0.57421875,0.5693359375,0.5771484375,0.603515625,0.6259765625,0.619140625,0.5732421875,0.5029296875,0.4296875,0.37109375,0.3671875,0.419921875,0.498046875,0.5546875,0.5546875,0.5,0.421875,0.322265625,0.2431640625,0.2255859375,0.27734375,0.3623046875,0.439453125,0.5205078125,0.619140625,0.6962890625,0.708984375,0.6533203125,0.56640625,0.4892578125,0.41015625,0.3095703125,0.228515625,0.2109375,0.259765625,0.34375,0.419921875,0.4912109375,0.5595703125,0.6044921875,0.6142578125,0.595703125,0.57421875,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5751953125,0.5732421875,0.5712890625,0.5693359375,0.564453125,0.548828125,0.5205078125,0.48828125,0.4599609375,0.4443359375,0.439453125,0.447265625,0.484375,0.5322265625,0.556640625,0.541015625,0.48828125,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5771484375,0.6162109375,0.66796875,0.6962890625,0.681640625,0.62890625,0.5595703125,0.49609375,0.4677734375,0.4765625,0.5009765625,0.513671875,0.4892578125,0.4296875,0.3671875,0.3349609375,0.3544921875,0.4208984375,0.5029296875,0.55859375,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.4111328125,0.373046875,0.3271484375,0.3037109375,0.3203125,0.373046875,0.439453125,0.517578125,0.6142578125,0.689453125,0.7041015625,0.6513671875,0.56640625,0.4892578125,0.4140625,0.3330078125,0.287109375,0.3115234375,0.396484375,0.4990234375,0.5791015625,0.6435546875,0.67578125,0.654296875,0.583984375,0.4990234375,0.44140625,0.4296875,0.4228515625,0.3916015625,0.3544921875,0.3408203125,0.365234375,0.421875,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.4296875,0.470703125,0.5234375,0.5556640625,0.544921875,0.49609375,0.4296875,0.3662109375,0.33203125,0.349609375,0.4150390625,0.4970703125,0.5546875,0.5693359375,0.5791015625,0.6142578125,0.6533203125,0.666015625,0.638671875,0.5791015625,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.4794921875,0.4970703125,0.47265625,0.4306640625,0.408203125,0.427734375,0.4892578125,0.5712890625,0.6748046875,0.7607421875,0.783203125,0.7373046875,0.6552734375,0.5791015625,0.5107421875,0.45703125,0.439453125,0.4638671875,0.51171875,0.5498046875,0.5595703125,0.568359375,0.603515625,0.646484375,0.6630859375,0.638671875,0.580078125,0.509765625,0.44140625,0.3974609375,0.3984375,0.4453125,0.51171875,0.5595703125,0.5693359375,0.576171875,0.6083984375,0.6455078125,0.658203125,0.630859375,0.5703125,0.5,0.427734375,0.3662109375,0.3359375,0.3466796875,0.3857421875,0.419921875,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.412109375,0.3212890625,0.259765625,0.263671875,0.333984375,0.4296875,0.509765625,0.5810546875,0.642578125,0.6728515625,0.662109375,0.6240234375,0.5888671875,0.5791015625,0.5830078125,0.6025390625,0.6171875,0.60546875,0.55859375,0.490234375,0.419921875,0.345703125,0.2646484375,0.21875,0.2412109375,0.3251953125,0.427734375,0.509765625,0.58984375,0.6884765625,0.763671875,0.775390625,0.720703125,0.634765625,0.5595703125,0.4814453125,0.3828125,0.302734375,0.2861328125,0.3369140625,0.421875,0.5,0.5771484375,0.6611328125,0.7099609375,0.689453125,0.6083984375,0.5078125,0.4296875,0.373046875,0.36328125,0.40234375,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.439453125,0.439453125,0.4384765625,0.4365234375,0.43359375,0.431640625,0.4296875,0.4287109375,0.4287109375,0.4306640625,0.43359375,0.4375,0.439453125,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5185546875,0.4990234375,0.51953125,0.5556640625,0.57421875,0.5517578125,0.4892578125,0.421875,0.3779296875,0.380859375,0.431640625,0.5029296875,0.5556640625,0.5693359375,0.5810546875,0.6240234375,0.6787109375,0.7099609375,0.6982421875,0.6474609375,0.5791015625,0.5078125,0.4375,0.3896484375,0.37890625,0.3984375,0.421875,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5673828125,0.56640625,0.564453125,0.5634765625,0.5625,0.560546875,0.5595703125,0.5458984375,0.4951171875,0.42578125,0.376953125,0.3759765625,0.4208984375,0.4892578125,0.5703125,0.6708984375,0.7509765625,0.767578125,0.7177734375,0.6337890625,0.5595703125,0.4921875,0.44140625,0.427734375,0.4560546875,0.5068359375,0.5478515625,0.5595703125,0.5576171875,0.541015625,0.5087890625,0.470703125,0.4384765625,0.421875,0.419921875,0.412109375,0.3720703125,0.3212890625,0.29296875,0.3076171875,0.3603515625,0.4296875,0.5126953125,0.6240234375,0.72265625,0.76171875,0.728515625,0.654296875,0.5791015625,0.5205078125,0.5087890625,0.544921875,0.599609375,0.6337890625,0.6201171875,0.5595703125,0.486328125,0.41796875,0.375,0.369140625,0.3916015625,0.4150390625,0.419921875,0.4296875,0.478515625,0.5478515625,0.5966796875,0.6005859375,0.5576171875,0.4892578125,0.408203125,0.306640625,0.2255859375,0.2080078125,0.2587890625,0.34375,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.564453125,0.548828125,0.5205078125,0.48828125,0.4599609375,0.4443359375,0.439453125,0.44921875,0.4970703125,0.5634765625,0.6103515625,0.6123046875,0.5673828125,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5654296875,0.505859375,0.4189453125,0.349609375,0.3291015625,0.36328125,0.4296875,0.4931640625,0.521484375,0.5146484375,0.494140625,0.4873046875,0.515625,0.5791015625,0.6455078125,0.6787109375,0.65625,0.583984375,0.494140625,0.43359375,0.419921875,0.4130859375,0.388671875,0.3662109375,0.3720703125,0.4169921875,0.486328125,0.5595703125,0.6259765625,0.6640625,0.6494140625,0.5859375,0.5029296875,0.4443359375,0.4296875,0.4404296875,0.49609375,0.5771484375,0.6416015625,0.6591796875,0.6240234375,0.5595703125,0.5,0.4833984375,0.509765625,0.5546875,0.580078125,0.560546875,0.5,0.421875,0.3369140625,0.2861328125,0.302734375,0.3828125,0.4814453125,0.5595703125,0.634765625,0.71875,0.7724609375,0.7607421875,0.685546875,0.587890625,0.509765625,0.43359375,0.349609375,0.2998046875,0.318359375,0.3994140625,0.5,0.5791015625,0.6435546875,0.673828125,0.650390625,0.578125,0.490234375,0.431640625,0.419921875,0.421875,0.423828125,0.42578125,0.42578125,0.423828125,0.421875,0.419921875,0.421875,0.4375,0.46875,0.5087890625,0.5439453125,0.5634765625,0.5693359375,0.580078125,0.62109375,0.671875,0.697265625,0.681640625,0.6279296875,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.44921875,0.486328125,0.5322265625,0.556640625,0.5390625,0.486328125,0.419921875,0.3671875,0.376953125,0.451171875,0.5498046875,0.6201171875,0.6259765625,0.5693359375,0.49609375,0.4287109375,0.3857421875,0.3818359375,0.4072265625,0.4326171875,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.568359375,0.52734375,0.4755859375,0.447265625,0.4619140625,0.5126953125,0.5791015625,0.654296875,0.736328125,0.78515625,0.767578125,0.6884765625,0.5888671875,0.509765625,0.4306640625,0.3310546875,0.2509765625,0.2333984375,0.283203125,0.365234375,0.439453125,0.509765625,0.5771484375,0.623046875,0.630859375,0.611328125,0.5869140625,0.5791015625,0.56640625,0.515625,0.4482421875,0.400390625,0.3994140625,0.4423828125,0.509765625,0.5791015625,0.6376953125,0.6650390625,0.6533203125,0.6171875,0.5859375,0.5791015625,0.5908203125,0.6328125,0.68359375,0.7109375,0.6943359375,0.6396484375,0.5693359375,0.49609375,0.4287109375,0.3857421875,0.3818359375,0.4072265625,0.4326171875,0.439453125,0.451171875,0.4990234375,0.5634765625,0.6064453125,0.6044921875,0.55859375,0.4892578125,0.4111328125,0.326171875,0.2744140625,0.29296875,0.375,0.4775390625,0.5595703125,0.6181640625,0.623046875,0.5712890625,0.4970703125,0.4462890625,0.451171875,0.509765625,0.5869140625,0.6689453125,0.7158203125,0.693359375,0.609375,0.5078125,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.431640625,0.4814453125,0.55078125,0.599609375,0.6015625,0.5576171875,0.4892578125,0.4189453125,0.3603515625,0.3359375,0.3525390625,0.3955078125,0.4306640625,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.5869140625,0.615234375,0.646484375,0.6513671875,0.619140625,0.55859375,0.4892578125,0.4130859375,0.322265625,0.2578125,0.2568359375,0.3212890625,0.412109375,0.4892578125,0.556640625,0.6005859375,0.6005859375,0.5576171875,0.494140625,0.44921875,0.439453125,0.4541015625,0.5107421875,0.5908203125,0.6533203125,0.66796875,0.6328125,0.5693359375,0.4912109375,0.390625,0.30859375,0.2861328125,0.33203125,0.4140625,0.4892578125,0.5654296875,0.6494140625,0.69921875,0.6806640625,0.599609375,0.4990234375,0.419921875,0.34375,0.259765625,0.2109375,0.228515625,0.3095703125,0.41015625,0.4892578125,0.5693359375,0.673828125,0.759765625,0.7841796875,0.7392578125,0.65625,0.5791015625,0.51953125,0.5068359375,0.544921875,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.4296875,0.4287109375,0.4248046875,0.416015625,0.40234375,0.388671875,0.376953125,0.3681640625,0.3671875,0.376953125,0.39453125,0.4140625,0.4267578125,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6181640625,0.587890625,0.580078125,0.576171875,0.55859375,0.5146484375,0.4482421875,0.380859375,0.34375,0.361328125,0.4326171875,0.52734375,0.59765625,0.6220703125,0.6416015625,0.69140625,0.75,0.78515625,0.7783203125,0.7333984375,0.673828125,0.60546875,0.5185546875,0.43359375,0.376953125,0.3583984375,0.365234375,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6123046875,0.6044921875,0.5986328125,0.59375,0.587890625,0.580078125,0.5703125,0.546875,0.4833984375,0.400390625,0.341796875,0.3359375,0.3798828125,0.4482421875,0.52734375,0.6240234375,0.703125,0.7265625,0.6904296875,0.626953125,0.5703125,0.5185546875,0.4755859375,0.458984375,0.4755859375,0.515625,0.552734375,0.5703125,0.5732421875,0.544921875,0.484375,0.4111328125,0.3505859375,0.322265625,0.3251953125,0.3271484375,0.298828125,0.2587890625,0.23828125,0.2548828125,0.3076171875,0.376953125,0.462890625,0.5869140625,0.7119140625,0.78515625,0.787109375,0.736328125,0.673828125,0.62109375,0.60546875,0.625,0.6533203125,0.6630859375,0.6337890625,0.5703125,0.49609375,0.419921875,0.3603515625,0.330078125,0.3271484375,0.3310546875,0.3251953125,0.328125,0.376953125,0.4560546875,0.5234375,0.544921875,0.513671875,0.4482421875,0.3662109375,0.263671875,0.177734375,0.1494140625,0.1875,0.2587890625,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.6083984375,0.583984375,0.546875,0.50390625,0.466796875,0.4423828125,0.4287109375,0.4306640625,0.4736328125,0.5400390625,0.59375,0.6044921875,0.56640625,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.65625,0.5791015625,0.458984375,0.3505859375,0.2978515625,0.314453125,0.376953125,0.4443359375,0.490234375,0.5166015625,0.5341796875,0.5595703125,0.6064453125,0.673828125,0.7353515625,0.7451171875,0.6806640625,0.55859375,0.427734375,0.34375,0.3251953125,0.3212890625,0.3095703125,0.310546875,0.3447265625,0.412109375,0.494140625,0.5703125,0.63671875,0.671875,0.6494140625,0.5732421875,0.474609375,0.40234375,0.376953125,0.3798828125,0.431640625,0.5185546875,0.599609375,0.6396484375,0.6240234375,0.5703125,0.5185546875,0.5068359375,0.533203125,0.5712890625,0.587890625,0.5625,0.5,0.423828125,0.3505859375,0.3154296875,0.3427734375,0.4208984375,0.5087890625,0.5703125,0.6279296875,0.6982421875,0.7490234375,0.7490234375,0.6953125,0.6181640625,0.55078125,0.4853515625,0.419921875,0.390625,0.4228515625,0.5068359375,0.6025390625,0.673828125,0.7236328125,0.7197265625,0.646484375,0.5234375,0.40234375,0.33203125,0.3251953125,0.3369140625,0.3505859375,0.3603515625,0.3603515625,0.3505859375,0.3369140625,0.3251953125,0.3212890625,0.34375,0.3994140625,0.4775390625,0.5537109375,0.603515625,0.6220703125,0.638671875,0.67578125,0.7119140625,0.7197265625,0.689453125,0.6328125,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.43359375,0.451171875,0.4658203125,0.4599609375,0.427734375,0.3779296875,0.3251953125,0.29296875,0.3330078125,0.443359375,0.5732421875,0.6640625,0.677734375,0.6220703125,0.5478515625,0.4716796875,0.4150390625,0.39453125,0.4052734375,0.423828125,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.65625,0.619140625,0.5791015625,0.5615234375,0.5791015625,0.6220703125,0.673828125,0.728515625,0.787109375,0.814453125,0.787109375,0.7099609375,0.62109375,0.55078125,0.4814453125,0.392578125,0.3154296875,0.2880859375,0.3154296875,0.3740234375,0.4287109375,0.4853515625,0.55859375,0.6298828125,0.677734375,0.6923828125,0.6845703125,0.673828125,0.65234375,0.59375,0.5185546875,0.46484375,0.45703125,0.4931640625,0.55078125,0.6123046875,0.666015625,0.697265625,0.6982421875,0.6826171875,0.6689453125,0.673828125,0.6923828125,0.7353515625,0.779296875,0.791015625,0.7587890625,0.6943359375,0.6220703125,0.5478515625,0.4716796875,0.4150390625,0.39453125,0.4052734375,0.423828125,0.4287109375,0.439453125,0.4833984375,0.541015625,0.576171875,0.5673828125,0.517578125,0.4482421875,0.37109375,0.2919921875,0.251953125,0.2841796875,0.37890625,0.4873046875,0.5703125,0.62890625,0.6376953125,0.59375,0.52734375,0.4833984375,0.4921875,0.55078125,0.6240234375,0.6845703125,0.697265625,0.642578125,0.541015625,0.4404296875,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.3388671875,0.39453125,0.4755859375,0.5380859375,0.552734375,0.5146484375,0.4482421875,0.3779296875,0.3232421875,0.3056640625,0.3310546875,0.3798828125,0.419921875,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.6748046875,0.677734375,0.6650390625,0.626953125,0.5673828125,0.5029296875,0.4482421875,0.3896484375,0.31640625,0.26171875,0.2568359375,0.306640625,0.380859375,0.4482421875,0.505859375,0.5419921875,0.5419921875,0.505859375,0.4580078125,0.427734375,0.4287109375,0.4501953125,0.51171875,0.59375,0.662109375,0.6884765625,0.66796875,0.6220703125,0.5595703125,0.4658203125,0.3720703125,0.3212890625,0.33203125,0.384765625,0.4482421875,0.513671875,0.5791015625,0.6083984375,0.576171875,0.4921875,0.396484375,0.3251953125,0.2607421875,0.1943359375,0.1650390625,0.197265625,0.28125,0.376953125,0.4482421875,0.5224609375,0.63671875,0.751953125,0.8154296875,0.806640625,0.74609375,0.673828125,0.6123046875,0.595703125,0.6240234375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.470703125,0.47265625,0.46875,0.4521484375,0.423828125,0.392578125,0.3642578125,0.3408203125,0.333984375,0.3525390625,0.3916015625,0.4345703125,0.462890625,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.6982421875,0.6640625,0.6328125,0.5908203125,0.5341796875,0.4658203125,0.39453125,0.326171875,0.2880859375,0.30859375,0.3916015625,0.50390625,0.59375,0.634765625,0.6689453125,0.7275390625,0.7900390625,0.826171875,0.8212890625,0.78515625,0.740234375,0.68359375,0.58984375,0.4775390625,0.3857421875,0.3408203125,0.3408203125,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.6103515625,0.59375,0.5849609375,0.580078125,0.5712890625,0.5546875,0.5302734375,0.4912109375,0.4140625,0.3251953125,0.2705078125,0.2724609375,0.32421875,0.39453125,0.4697265625,0.5498046875,0.607421875,0.62109375,0.59375,0.5546875,0.5302734375,0.5078125,0.478515625,0.455078125,0.4521484375,0.4716796875,0.501953125,0.5302734375,0.5458984375,0.5166015625,0.44140625,0.34765625,0.2724609375,0.2431640625,0.2587890625,0.27734375,0.267578125,0.2421875,0.228515625,0.24609375,0.2958984375,0.3642578125,0.44921875,0.5732421875,0.7041015625,0.7919921875,0.814453125,0.78515625,0.740234375,0.701171875,0.6845703125,0.6826171875,0.67578125,0.6494140625,0.5986328125,0.5302734375,0.45703125,0.3876953125,0.3330078125,0.3037109375,0.291015625,0.28125,0.2587890625,0.24609375,0.28515625,0.3642578125,0.44140625,0.4775390625,0.45703125,0.39453125,0.3154296875,0.2197265625,0.142578125,0.1181640625,0.1494140625,0.2080078125,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.609375,0.5849609375,0.5625,0.541015625,0.51953125,0.4951171875,0.46875,0.4541015625,0.48046875,0.53515625,0.5849609375,0.5986328125,0.564453125,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.7216796875,0.6337890625,0.4970703125,0.3671875,0.2958984375,0.302734375,0.3642578125,0.4326171875,0.4892578125,0.533203125,0.5712890625,0.615234375,0.671875,0.740234375,0.798828125,0.79296875,0.6982421875,0.541015625,0.3798828125,0.2802734375,0.2587890625,0.2548828125,0.24609375,0.25390625,0.294921875,0.3681640625,0.4541015625,0.5302734375,0.599609375,0.6474609375,0.642578125,0.580078125,0.484375,0.4033203125,0.3642578125,0.3486328125,0.3759765625,0.44140625,0.515625,0.564453125,0.56640625,0.5302734375,0.4951171875,0.5,0.5380859375,0.580078125,0.59375,0.5634765625,0.5,0.427734375,0.3681640625,0.34765625,0.3779296875,0.44140625,0.5009765625,0.5302734375,0.556640625,0.60546875,0.6591796875,0.6904296875,0.6845703125,0.6494140625,0.6044921875,0.5576171875,0.5146484375,0.501953125,0.5380859375,0.6103515625,0.6865234375,0.740234375,0.76953125,0.728515625,0.6103515625,0.4521484375,0.31640625,0.2509765625,0.2587890625,0.2880859375,0.3232421875,0.34765625,0.34765625,0.3232421875,0.2880859375,0.2587890625,0.23828125,0.2490234375,0.30859375,0.408203125,0.5166015625,0.5966796875,0.634765625,0.6640625,0.697265625,0.712890625,0.6923828125,0.6416015625,0.580078125,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.466796875,0.4521484375,0.419921875,0.3720703125,0.3212890625,0.2822265625,0.2587890625,0.2587890625,0.3330078125,0.466796875,0.6044921875,0.689453125,0.693359375,0.634765625,0.5615234375,0.4892578125,0.4384765625,0.4248046875,0.44140625,0.462890625,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.7119140625,0.681640625,0.662109375,0.666015625,0.6884765625,0.7177734375,0.740234375,0.76171875,0.78515625,0.7919921875,0.767578125,0.71484375,0.654296875,0.6044921875,0.5546875,0.494140625,0.44140625,0.4169921875,0.423828125,0.447265625,0.46875,0.498046875,0.5595703125,0.6435546875,0.7177734375,0.759765625,0.76171875,0.740234375,0.705078125,0.642578125,0.57421875,0.5302734375,0.5283203125,0.5595703125,0.6044921875,0.6484375,0.6826171875,0.701171875,0.70703125,0.7080078125,0.7177734375,0.740234375,0.7734375,0.8212890625,0.8564453125,0.84765625,0.791015625,0.7109375,0.634765625,0.5615234375,0.4892578125,0.4384765625,0.4248046875,0.44140625,0.462890625,0.46875,0.4775390625,0.509765625,0.546875,0.5576171875,0.52734375,0.4658203125,0.39453125,0.3173828125,0.240234375,0.2041015625,0.2392578125,0.3359375,0.447265625,0.5302734375,0.591796875,0.611328125,0.587890625,0.546875,0.5234375,0.54296875,0.6044921875,0.671875,0.7060546875,0.6796875,0.59375,0.482421875,0.3984375,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.2724609375,0.330078125,0.4140625,0.48046875,0.4970703125,0.4609375,0.39453125,0.326171875,0.283203125,0.2861328125,0.3369140625,0.40625,0.45703125,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.734375,0.7041015625,0.640625,0.5576171875,0.4765625,0.4208984375,0.39453125,0.3701171875,0.3291015625,0.2919921875,0.28125,0.3037109375,0.34765625,0.39453125,0.4365234375,0.4638671875,0.46875,0.4580078125,0.4462890625,0.4482421875,0.46875,0.5009765625,0.5517578125,0.607421875,0.6484375,0.662109375,0.6533203125,0.634765625,0.6044921875,0.53515625,0.4443359375,0.369140625,0.337890625,0.353515625,0.39453125,0.44140625,0.484375,0.4970703125,0.4609375,0.388671875,0.3125,0.2587890625,0.2119140625,0.1689453125,0.15625,0.1923828125,0.2646484375,0.3408203125,0.39453125,0.4560546875,0.5732421875,0.7119140625,0.814453125,0.8447265625,0.8076171875,0.740234375,0.677734375,0.654296875,0.6708984375,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.533203125,0.54296875,0.546875,0.5302734375,0.4912109375,0.44140625,0.39453125,0.353515625,0.3369140625,0.3583984375,0.4140625,0.4775390625,0.5205078125,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.7158203125,0.6923828125,0.6572265625,0.599609375,0.521484375,0.4384765625,0.3642578125,0.2939453125,0.244140625,0.2509765625,0.3251953125,0.4404296875,0.544921875,0.6044921875,0.6552734375,0.720703125,0.7783203125,0.806640625,0.7978515625,0.7685546875,0.740234375,0.7001953125,0.6123046875,0.4970703125,0.3974609375,0.3486328125,0.3544921875,0.39453125,0.435546875,0.4521484375,0.4306640625,0.375,0.3115234375,0.2685546875,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5634765625,0.5400390625,0.53515625,0.5380859375,0.533203125,0.509765625,0.46875,0.4130859375,0.3251953125,0.240234375,0.201171875,0.224609375,0.2900390625,0.3642578125,0.43359375,0.48828125,0.5107421875,0.5,0.4736328125,0.4580078125,0.46875,0.4814453125,0.46875,0.4384765625,0.4111328125,0.4052734375,0.427734375,0.46875,0.501953125,0.4833984375,0.4111328125,0.3173828125,0.2451171875,0.2255859375,0.2587890625,0.2958984375,0.3037109375,0.2890625,0.275390625,0.28515625,0.328125,0.39453125,0.4755859375,0.5859375,0.6953125,0.767578125,0.787109375,0.767578125,0.740234375,0.7177734375,0.7080078125,0.6953125,0.666015625,0.611328125,0.5419921875,0.46875,0.400390625,0.349609375,0.3232421875,0.31640625,0.314453125,0.2978515625,0.2587890625,0.2275390625,0.2490234375,0.3173828125,0.39453125,0.4384765625,0.4248046875,0.3642578125,0.2880859375,0.2080078125,0.1513671875,0.142578125,0.177734375,0.2255859375,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.5654296875,0.548828125,0.5576171875,0.576171875,0.5849609375,0.5693359375,0.5302734375,0.4951171875,0.5,0.5380859375,0.580078125,0.59375,0.5634765625,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.7216796875,0.638671875,0.5078125,0.3857421875,0.322265625,0.3330078125,0.39453125,0.4619140625,0.5146484375,0.5517578125,0.5830078125,0.619140625,0.671875,0.740234375,0.798828125,0.79296875,0.6982421875,0.541015625,0.3798828125,0.2802734375,0.2587890625,0.25390625,0.2373046875,0.2314453125,0.2568359375,0.31640625,0.39453125,0.46875,0.5439453125,0.61328125,0.6435546875,0.6123046875,0.5341796875,0.4501953125,0.39453125,0.35546875,0.3466796875,0.375,0.4248046875,0.470703125,0.486328125,0.46875,0.4541015625,0.48046875,0.53515625,0.5849609375,0.5986328125,0.564453125,0.5,0.431640625,0.38671875,0.380859375,0.4111328125,0.4541015625,0.478515625,0.46875,0.4580078125,0.4794921875,0.533203125,0.595703125,0.642578125,0.654296875,0.634765625,0.6083984375,0.5859375,0.5849609375,0.61328125,0.6611328125,0.7080078125,0.740234375,0.748046875,0.6826171875,0.546875,0.388671875,0.2705078125,0.2294921875,0.2587890625,0.3095703125,0.369140625,0.4111328125,0.4111328125,0.369140625,0.3095703125,0.2587890625,0.216796875,0.19921875,0.234375,0.3251953125,0.4443359375,0.5458984375,0.6044921875,0.6494140625,0.681640625,0.6787109375,0.6357421875,0.56640625,0.50390625,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5205078125,0.4765625,0.40234375,0.3232421875,0.265625,0.2470703125,0.2587890625,0.294921875,0.392578125,0.52734375,0.640625,0.6904296875,0.6689453125,0.6044921875,0.533203125,0.4716796875,0.44140625,0.4521484375,0.4892578125,0.521484375,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.6982421875,0.6767578125,0.6826171875,0.708984375,0.7392578125,0.751953125,0.740234375,0.72265625,0.7119140625,0.7041015625,0.6953125,0.681640625,0.66015625,0.634765625,0.609375,0.5888671875,0.57421875,0.5654296875,0.55859375,0.546875,0.5302734375,0.5224609375,0.560546875,0.6376953125,0.720703125,0.7734375,0.7763671875,0.740234375,0.689453125,0.62890625,0.5771484375,0.5576171875,0.572265625,0.60546875,0.634765625,0.6572265625,0.662109375,0.6572265625,0.654296875,0.6669921875,0.697265625,0.740234375,0.791015625,0.849609375,0.880859375,0.8564453125,0.779296875,0.68359375,0.6044921875,0.533203125,0.4716796875,0.44140625,0.4521484375,0.4892578125,0.521484375,0.5302734375,0.5361328125,0.5576171875,0.57421875,0.560546875,0.509765625,0.4375,0.3642578125,0.287109375,0.205078125,0.162109375,0.189453125,0.2802734375,0.38671875,0.46875,0.533203125,0.5634765625,0.560546875,0.5439453125,0.5400390625,0.5712890625,0.634765625,0.6962890625,0.708984375,0.654296875,0.5517578125,0.4482421875,0.3916015625,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.271484375,0.326171875,0.40234375,0.4609375,0.470703125,0.431640625,0.3642578125,0.2978515625,0.265625,0.2900390625,0.36328125,0.4541015625,0.515625,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.728515625,0.671875,0.57421875,0.466796875,0.3857421875,0.3544921875,0.3642578125,0.37890625,0.376953125,0.361328125,0.341796875,0.3330078125,0.3408203125,0.3642578125,0.3876953125,0.400390625,0.408203125,0.421875,0.447265625,0.4853515625,0.5302734375,0.5732421875,0.6044921875,0.615234375,0.607421875,0.59375,0.5908203125,0.6044921875,0.6142578125,0.5830078125,0.513671875,0.4306640625,0.3671875,0.3466796875,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.232421875,0.2099609375,0.208984375,0.2373046875,0.28515625,0.33203125,0.3642578125,0.408203125,0.5146484375,0.6572265625,0.775390625,0.8271484375,0.8046875,0.740234375,0.6767578125,0.650390625,0.66015625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.576171875,0.5966796875,0.615234375,0.6083984375,0.5703125,0.5107421875,0.4482421875,0.390625,0.361328125,0.376953125,0.435546875,0.5078125,0.55859375,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.666015625,0.6640625,0.650390625,0.6064453125,0.53515625,0.4521484375,0.376953125,0.302734375,0.236328125,0.2158203125,0.2666015625,0.3701171875,0.4775390625,0.55078125,0.615234375,0.6806640625,0.7275390625,0.73828125,0.7177734375,0.689453125,0.673828125,0.6494140625,0.5791015625,0.48046875,0.3994140625,0.3681640625,0.3916015625,0.4482421875,0.5048828125,0.5341796875,0.5185546875,0.4609375,0.3876953125,0.3369140625,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.4970703125,0.4736328125,0.48046875,0.5,0.5068359375,0.4833984375,0.4287109375,0.3583984375,0.265625,0.189453125,0.1708984375,0.21875,0.2998046875,0.376953125,0.44140625,0.470703125,0.45703125,0.4189453125,0.38671875,0.388671875,0.4287109375,0.4697265625,0.4716796875,0.435546875,0.3876953125,0.361328125,0.3759765625,0.4287109375,0.4775390625,0.474609375,0.4169921875,0.337890625,0.2802734375,0.27734375,0.3251953125,0.3779296875,0.396484375,0.380859375,0.357421875,0.3525390625,0.3837890625,0.4482421875,0.5244140625,0.6103515625,0.681640625,0.71484375,0.7099609375,0.6884765625,0.673828125,0.66796875,0.671875,0.6689453125,0.638671875,0.5791015625,0.5029296875,0.4287109375,0.365234375,0.3359375,0.345703125,0.3740234375,0.3935546875,0.3779296875,0.3251953125,0.27734375,0.2802734375,0.333984375,0.404296875,0.4482421875,0.4375,0.376953125,0.3046875,0.240234375,0.2080078125,0.2197265625,0.263671875,0.306640625,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.5,0.4931640625,0.5322265625,0.5888671875,0.6279296875,0.62109375,0.5703125,0.5185546875,0.5068359375,0.533203125,0.5712890625,0.587890625,0.5625,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.658203125,0.5888671875,0.4853515625,0.3955078125,0.3583984375,0.3837890625,0.4482421875,0.5126953125,0.55078125,0.5615234375,0.5595703125,0.5703125,0.6083984375,0.673828125,0.7353515625,0.7451171875,0.6806640625,0.55859375,0.427734375,0.34375,0.3251953125,0.318359375,0.2890625,0.2587890625,0.255859375,0.2919921875,0.3564453125,0.4287109375,0.5078125,0.59765625,0.6611328125,0.662109375,0.6015625,0.5166015625,0.4482421875,0.3896484375,0.34765625,0.33984375,0.365234375,0.4052734375,0.4306640625,0.4287109375,0.4306640625,0.4736328125,0.5400390625,0.59375,0.6044921875,0.56640625,0.5,0.435546875,0.404296875,0.4130859375,0.4462890625,0.474609375,0.470703125,0.4287109375,0.3857421875,0.3779296875,0.4189453125,0.49609375,0.5751953125,0.6201171875,0.6220703125,0.611328125,0.6044921875,0.60546875,0.619140625,0.640625,0.66015625,0.673828125,0.6669921875,0.5966796875,0.4755859375,0.3525390625,0.279296875,0.275390625,0.3251953125,0.3935546875,0.474609375,0.53125,0.53125,0.474609375,0.3935546875,0.3251953125,0.2626953125,0.2099609375,0.203125,0.2626953125,0.3701171875,0.4775390625,0.55078125,0.609375,0.6455078125,0.6376953125,0.5830078125,0.5087890625,0.4501953125,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5576171875,0.498046875,0.4052734375,0.3193359375,0.2744140625,0.2822265625,0.3251953125,0.390625,0.4970703125,0.6103515625,0.6787109375,0.677734375,0.623046875,0.55078125,0.4814453125,0.431640625,0.4228515625,0.4580078125,0.515625,0.5595703125,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.62109375,0.60546875,0.6318359375,0.6796875,0.7158203125,0.71484375,0.673828125,0.6240234375,0.5869140625,0.5732421875,0.5859375,0.6103515625,0.6259765625,0.6220703125,0.6171875,0.6328125,0.658203125,0.669921875,0.6572265625,0.619140625,0.5703125,0.53125,0.5419921875,0.6015625,0.6767578125,0.7265625,0.7236328125,0.673828125,0.611328125,0.5537109375,0.5234375,0.53125,0.5673828125,0.6044921875,0.6220703125,0.6240234375,0.6025390625,0.5703125,0.5537109375,0.5693359375,0.6142578125,0.673828125,0.740234375,0.8115234375,0.849609375,0.8212890625,0.7353515625,0.6328125,0.55078125,0.4814453125,0.431640625,0.4228515625,0.4580078125,0.515625,0.5595703125,0.5703125,0.5751953125,0.59375,0.6044921875,0.583984375,0.52734375,0.451171875,0.376953125,0.298828125,0.2109375,0.15625,0.1689453125,0.248046875,0.34765625,0.4287109375,0.4931640625,0.52734375,0.5302734375,0.5205078125,0.5234375,0.5576171875,0.6220703125,0.6806640625,0.681640625,0.6181640625,0.5205078125,0.4375,0.412109375,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.3369140625,0.384765625,0.4501953125,0.494140625,0.4921875,0.4462890625,0.376953125,0.3125,0.283203125,0.3125,0.3935546875,0.490234375,0.5556640625,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6591796875,0.59375,0.490234375,0.3896484375,0.3330078125,0.3349609375,0.376953125,0.42578125,0.45703125,0.4580078125,0.4326171875,0.396484375,0.3740234375,0.376953125,0.3837890625,0.37890625,0.3779296875,0.3984375,0.4453125,0.5068359375,0.5703125,0.6220703125,0.634765625,0.6044921875,0.5517578125,0.51171875,0.5107421875,0.55078125,0.595703125,0.60546875,0.568359375,0.49609375,0.421875,0.3779296875,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3154296875,0.3076171875,0.3095703125,0.3232421875,0.3447265625,0.3642578125,0.376953125,0.404296875,0.4892578125,0.611328125,0.71484375,0.759765625,0.7373046875,0.673828125,0.6103515625,0.5849609375,0.59765625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.5673828125,0.599609375,0.63671875,0.6474609375,0.619140625,0.5595703125,0.4892578125,0.4228515625,0.3798828125,0.3828125,0.4306640625,0.4990234375,0.5478515625,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.583984375,0.6064453125,0.6259765625,0.6181640625,0.572265625,0.5029296875,0.4296875,0.3525390625,0.2685546875,0.220703125,0.2431640625,0.3271484375,0.4296875,0.509765625,0.5791015625,0.6396484375,0.669921875,0.6591796875,0.6220703125,0.5888671875,0.5791015625,0.5654296875,0.5126953125,0.4404296875,0.3876953125,0.3818359375,0.4228515625,0.4892578125,0.5556640625,0.5986328125,0.595703125,0.5478515625,0.48046875,0.4306640625,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.44921875,0.4306640625,0.4541015625,0.4951171875,0.5185546875,0.5,0.439453125,0.361328125,0.267578125,0.1982421875,0.1953125,0.2587890625,0.3505859375,0.4296875,0.490234375,0.50390625,0.46875,0.412109375,0.373046875,0.3828125,0.439453125,0.49609375,0.505859375,0.4658203125,0.4072265625,0.3701171875,0.380859375,0.439453125,0.498046875,0.505859375,0.4619140625,0.3974609375,0.353515625,0.3623046875,0.419921875,0.4794921875,0.4970703125,0.47265625,0.4306640625,0.408203125,0.427734375,0.4892578125,0.5615234375,0.6259765625,0.66015625,0.654296875,0.62109375,0.5888671875,0.5791015625,0.583984375,0.607421875,0.6298828125,0.6240234375,0.5810546875,0.5126953125,0.439453125,0.37890625,0.365234375,0.3994140625,0.4541015625,0.490234375,0.478515625,0.419921875,0.3623046875,0.353515625,0.396484375,0.458984375,0.5,0.4892578125,0.4296875,0.359375,0.3046875,0.2880859375,0.3154296875,0.3662109375,0.408203125,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.4521484375,0.4482421875,0.498046875,0.5703125,0.62109375,0.6162109375,0.5595703125,0.5,0.4833984375,0.509765625,0.5546875,0.580078125,0.560546875,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5673828125,0.5146484375,0.44140625,0.38671875,0.3798828125,0.421875,0.4892578125,0.5517578125,0.5732421875,0.552734375,0.515625,0.49609375,0.517578125,0.5791015625,0.6455078125,0.6787109375,0.65625,0.583984375,0.494140625,0.43359375,0.419921875,0.41015625,0.37109375,0.322265625,0.296875,0.314453125,0.369140625,0.439453125,0.5205078125,0.619140625,0.6962890625,0.708984375,0.6533203125,0.56640625,0.4892578125,0.4208984375,0.3642578125,0.341796875,0.3583984375,0.3994140625,0.4326171875,0.439453125,0.44921875,0.4970703125,0.5634765625,0.6103515625,0.6123046875,0.5673828125,0.5,0.4375,0.41796875,0.4423828125,0.4853515625,0.513671875,0.498046875,0.439453125,0.3759765625,0.3427734375,0.3603515625,0.4248046875,0.50390625,0.55859375,0.5693359375,0.5673828125,0.56640625,0.5673828125,0.5703125,0.57421875,0.5771484375,0.5791015625,0.5673828125,0.5087890625,0.4208984375,0.3486328125,0.3251953125,0.35546875,0.419921875,0.498046875,0.58984375,0.654296875,0.654296875,0.58984375,0.498046875,0.419921875,0.34375,0.2626953125,0.2177734375,0.2412109375,0.3271484375,0.4296875,0.509765625,0.576171875,0.6201171875,0.6181640625,0.5712890625,0.5029296875,0.453125,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.546875,0.490234375,0.408203125,0.341796875,0.3232421875,0.3564453125,0.419921875,0.498046875,0.6005859375,0.6875,0.7119140625,0.66796875,0.5869140625,0.509765625,0.4404296875,0.39453125,0.392578125,0.435546875,0.5,0.5478515625,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.5205078125,0.5087890625,0.546875,0.60546875,0.6455078125,0.6357421875,0.5791015625,0.5126953125,0.462890625,0.44921875,0.4755859375,0.5244140625,0.5615234375,0.5693359375,0.5771484375,0.6142578125,0.6630859375,0.689453125,0.67578125,0.6259765625,0.5595703125,0.5029296875,0.49609375,0.5400390625,0.603515625,0.646484375,0.6376953125,0.5791015625,0.5107421875,0.45703125,0.4404296875,0.466796875,0.517578125,0.55859375,0.5693359375,0.5615234375,0.5234375,0.4736328125,0.4453125,0.4599609375,0.5107421875,0.5791015625,0.6552734375,0.740234375,0.791015625,0.7734375,0.6923828125,0.5908203125,0.509765625,0.4404296875,0.39453125,0.392578125,0.435546875,0.5,0.5478515625,0.5595703125,0.56640625,0.591796875,0.6171875,0.61328125,0.5703125,0.5029296875,0.4296875,0.3505859375,0.2568359375,0.1923828125,0.1953125,0.2646484375,0.359375,0.439453125,0.5029296875,0.529296875,0.517578125,0.4912109375,0.48046875,0.5068359375,0.5693359375,0.6279296875,0.630859375,0.5751953125,0.4951171875,0.4365234375,0.4345703125,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.4296875,0.47265625,0.5283203125,0.5615234375,0.55078125,0.4990234375,0.4296875,0.36328125,0.326171875,0.341796875,0.40625,0.4892578125,0.5458984375,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.56640625,0.5087890625,0.423828125,0.35546875,0.3349609375,0.3671875,0.4296875,0.49609375,0.544921875,0.556640625,0.5263671875,0.4765625,0.4375,0.4296875,0.4248046875,0.400390625,0.3779296875,0.3818359375,0.4228515625,0.48828125,0.5595703125,0.6171875,0.6220703125,0.5732421875,0.5009765625,0.4501953125,0.4541015625,0.509765625,0.57421875,0.61328125,0.6064453125,0.5556640625,0.4873046875,0.439453125,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.41796875,0.4169921875,0.41796875,0.4208984375,0.423828125,0.427734375,0.4296875,0.4443359375,0.505859375,0.5927734375,0.662109375,0.6806640625,0.6455078125,0.5791015625,0.517578125,0.4990234375,0.5234375,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.4443359375,0.501953125,0.583984375,0.6494140625,0.6669921875,0.6328125,0.5693359375,0.4912109375,0.3935546875,0.3154296875,0.298828125,0.349609375,0.43359375,0.509765625,0.576171875,0.6171875,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.41015625,0.375,0.3369140625,0.326171875,0.3564453125,0.41796875,0.4892578125,0.5615234375,0.623046875,0.6533203125,0.6416015625,0.603515625,0.5693359375,0.5595703125,0.5654296875,0.595703125,0.630859375,0.6416015625,0.615234375,0.5576171875,0.4892578125,0.4345703125,0.4345703125,0.4912109375,0.5693359375,0.6220703125,0.6181640625,0.5595703125,0.48046875,0.3896484375,0.3271484375,0.3310546875,0.3994140625,0.4921875,0.5693359375,0.6259765625,0.6357421875,0.5966796875,0.5400390625,0.5048828125,0.5185546875,0.5791015625,0.638671875,0.6484375,0.60546875,0.54296875,0.5,0.509765625,0.5693359375,0.6298828125,0.642578125,0.60546875,0.548828125,0.509765625,0.5205078125,0.5791015625,0.6357421875,0.63671875,0.578125,0.49609375,0.4365234375,0.4345703125,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.43359375,0.494140625,0.583984375,0.65625,0.6787109375,0.6455078125,0.5791015625,0.51953125,0.5078125,0.546875,0.6064453125,0.646484375,0.6376953125,0.5791015625,0.5205078125,0.5107421875,0.5498046875,0.609375,0.6484375,0.6376953125,0.5791015625,0.51171875,0.4609375,0.44921875,0.4794921875,0.53125,0.5712890625,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.427734375,0.4091796875,0.43359375,0.4755859375,0.5,0.4814453125,0.419921875,0.361328125,0.3583984375,0.4140625,0.494140625,0.552734375,0.5546875,0.5,0.4306640625,0.3720703125,0.341796875,0.3515625,0.3876953125,0.419921875,0.4296875,0.4228515625,0.392578125,0.357421875,0.3466796875,0.376953125,0.4384765625,0.509765625,0.568359375,0.572265625,0.51953125,0.44140625,0.384765625,0.384765625,0.439453125,0.5087890625,0.5732421875,0.61328125,0.615234375,0.5908203125,0.56640625,0.5595703125,0.5498046875,0.509765625,0.458984375,0.4296875,0.4423828125,0.4931640625,0.5595703125,0.634765625,0.71875,0.7724609375,0.7607421875,0.685546875,0.587890625,0.509765625,0.4423828125,0.3984375,0.3984375,0.44140625,0.5048828125,0.5498046875,0.5595703125,0.56640625,0.599609375,0.6396484375,0.654296875,0.62890625,0.5703125,0.5,0.44140625,0.439453125,0.49609375,0.5771484375,0.6357421875,0.6357421875,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.4140625,0.392578125,0.375,0.384765625,0.4306640625,0.4990234375,0.5693359375,0.6455078125,0.7373046875,0.8046875,0.8076171875,0.74609375,0.65625,0.5791015625,0.5,0.3994140625,0.3173828125,0.296875,0.34375,0.4248046875,0.5,0.5673828125,0.625,0.65234375,0.640625,0.60546875,0.5751953125,0.5693359375,0.5673828125,0.5517578125,0.5224609375,0.486328125,0.45703125,0.44140625,0.439453125,0.4345703125,0.4091796875,0.3837890625,0.3857421875,0.423828125,0.48828125,0.5595703125,0.6357421875,0.7216796875,0.7763671875,0.7626953125,0.6865234375,0.5888671875,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.583984375,0.6064453125,0.626953125,0.62109375,0.578125,0.5107421875,0.439453125,0.380859375,0.3671875,0.400390625,0.453125,0.48828125,0.4765625,0.419921875,0.353515625,0.3037109375,0.291015625,0.3193359375,0.3701171875,0.41015625,0.419921875,0.4296875,0.470703125,0.5224609375,0.5517578125,0.5390625,0.48828125,0.419921875,0.361328125,0.3515625,0.3916015625,0.4521484375,0.494140625,0.486328125,0.4296875,0.36328125,0.3134765625,0.2998046875,0.326171875,0.375,0.412109375,0.419921875,0.408203125,0.3662109375,0.3154296875,0.2880859375,0.3046875,0.359375,0.4296875,0.5107421875,0.6123046875,0.6923828125,0.7080078125,0.654296875,0.568359375,0.4892578125,0.4189453125,0.3603515625,0.3359375,0.3525390625,0.3955078125,0.4306640625,0.439453125,0.4521484375,0.5078125,0.5859375,0.6474609375,0.6611328125,0.625,0.5595703125,0.4814453125,0.392578125,0.33203125,0.3369140625,0.40625,0.5009765625,0.5791015625,0.634765625,0.6279296875,0.556640625,0.4580078125,0.3857421875,0.3759765625,0.4296875,0.48828125,0.5048828125,0.478515625,0.435546875,0.4111328125,0.4296875,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.6484375,0.6171875,0.5869140625,0.5791015625,0.5888671875,0.626953125,0.67578125,0.7021484375,0.6875,0.6357421875,0.5693359375,0.5,0.4326171875,0.3876953125,0.3779296875,0.39453125,0.4150390625,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.4306640625,0.48046875,0.5498046875,0.599609375,0.6044921875,0.564453125,0.5,0.431640625,0.3759765625,0.3505859375,0.3642578125,0.40234375,0.43359375,0.439453125,0.431640625,0.4052734375,0.3828125,0.3896484375,0.435546875,0.505859375,0.5791015625,0.6494140625,0.7021484375,0.716796875,0.6875,0.6337890625,0.5908203125,0.5791015625,0.564453125,0.505859375,0.421875,0.3564453125,0.33984375,0.375,0.439453125,0.5,0.5185546875,0.494140625,0.451171875,0.4248046875,0.44140625,0.5,0.568359375,0.626953125,0.6572265625,0.6474609375,0.611328125,0.5791015625,0.5693359375,0.5673828125,0.56640625,0.564453125,0.5634765625,0.5625,0.560546875,0.5595703125,0.55859375,0.5595703125,0.5625,0.56640625,0.5693359375,0.5703125,0.5693359375,0.5732421875,0.59375,0.611328125,0.6015625,0.556640625,0.4892578125,0.419921875,0.365234375,0.3681640625,0.4287109375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.400390625,0.466796875,0.5615234375,0.6435546875,0.6806640625,0.6669921875,0.6220703125,0.5615234375,0.48046875,0.4091796875,0.38671875,0.419921875,0.486328125,0.55078125,0.607421875,0.630859375,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.30859375,0.2744140625,0.24609375,0.251953125,0.30078125,0.3740234375,0.4482421875,0.521484375,0.5947265625,0.6435546875,0.6494140625,0.6220703125,0.5869140625,0.5703125,0.564453125,0.5712890625,0.580078125,0.57421875,0.544921875,0.4990234375,0.4482421875,0.4111328125,0.4306640625,0.501953125,0.5859375,0.6376953125,0.6298828125,0.5703125,0.494140625,0.4189453125,0.37890625,0.4013671875,0.4755859375,0.560546875,0.6220703125,0.662109375,0.6640625,0.6318359375,0.59375,0.580078125,0.609375,0.673828125,0.732421875,0.736328125,0.6845703125,0.6103515625,0.55859375,0.5634765625,0.6220703125,0.6845703125,0.70703125,0.6865234375,0.6435546875,0.61328125,0.6220703125,0.673828125,0.720703125,0.708984375,0.6318359375,0.5244140625,0.4375,0.412109375,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.34375,0.427734375,0.55859375,0.6806640625,0.7451171875,0.7353515625,0.673828125,0.6123046875,0.595703125,0.6279296875,0.6845703125,0.7265625,0.72265625,0.673828125,0.6220703125,0.61328125,0.6474609375,0.69921875,0.7333984375,0.724609375,0.673828125,0.615234375,0.576171875,0.572265625,0.603515625,0.646484375,0.6748046875,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.384765625,0.359375,0.3720703125,0.4013671875,0.4140625,0.388671875,0.3251953125,0.2666015625,0.265625,0.3291015625,0.4267578125,0.509765625,0.53515625,0.5,0.4453125,0.3876953125,0.3427734375,0.328125,0.3408203125,0.36328125,0.376953125,0.3818359375,0.3681640625,0.35546875,0.3671875,0.4111328125,0.478515625,0.55078125,0.611328125,0.619140625,0.5673828125,0.482421875,0.4111328125,0.392578125,0.4287109375,0.4814453125,0.5361328125,0.5771484375,0.5927734375,0.5859375,0.57421875,0.5703125,0.5625,0.533203125,0.4951171875,0.4736328125,0.4833984375,0.5205078125,0.5703125,0.6279296875,0.6982421875,0.7490234375,0.7490234375,0.6953125,0.6181640625,0.55078125,0.4931640625,0.45703125,0.45703125,0.4931640625,0.541015625,0.5712890625,0.5703125,0.568359375,0.59375,0.6298828125,0.6455078125,0.6240234375,0.5693359375,0.5,0.4423828125,0.4462890625,0.517578125,0.6201171875,0.701171875,0.71875,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3251953125,0.33203125,0.3603515625,0.4169921875,0.4921875,0.5654296875,0.6220703125,0.6806640625,0.759765625,0.8271484375,0.8447265625,0.806640625,0.7392578125,0.673828125,0.6025390625,0.5068359375,0.4189453125,0.376953125,0.3935546875,0.4453125,0.5,0.55078125,0.5966796875,0.6259765625,0.6318359375,0.623046875,0.6162109375,0.6220703125,0.6259765625,0.6044921875,0.5556640625,0.4951171875,0.4462890625,0.4248046875,0.4287109375,0.43359375,0.4228515625,0.41015625,0.41796875,0.4521484375,0.5087890625,0.5703125,0.6376953125,0.7158203125,0.7685546875,0.763671875,0.7021484375,0.6201171875,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.666015625,0.6640625,0.6533203125,0.619140625,0.5615234375,0.4931640625,0.4287109375,0.3740234375,0.3466796875,0.349609375,0.3701171875,0.3828125,0.369140625,0.3251953125,0.2763671875,0.2392578125,0.2294921875,0.2509765625,0.2890625,0.318359375,0.3251953125,0.333984375,0.3701171875,0.416015625,0.44140625,0.4296875,0.3857421875,0.3251953125,0.2744140625,0.265625,0.3037109375,0.3642578125,0.412109375,0.4169921875,0.376953125,0.328125,0.2900390625,0.27734375,0.2900390625,0.314453125,0.330078125,0.3251953125,0.306640625,0.263671875,0.2197265625,0.2080078125,0.240234375,0.3046875,0.376953125,0.458984375,0.5615234375,0.6435546875,0.662109375,0.611328125,0.5263671875,0.4482421875,0.3779296875,0.3232421875,0.3056640625,0.3310546875,0.3798828125,0.419921875,0.4287109375,0.4404296875,0.4931640625,0.5703125,0.6337890625,0.654296875,0.6259765625,0.5703125,0.50390625,0.4365234375,0.40234375,0.4296875,0.509765625,0.6025390625,0.673828125,0.71875,0.6982421875,0.60546875,0.4794921875,0.3779296875,0.3427734375,0.376953125,0.419921875,0.4296875,0.4091796875,0.380859375,0.3701171875,0.3935546875,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.6806640625,0.6845703125,0.6767578125,0.673828125,0.6796875,0.7021484375,0.7294921875,0.7373046875,0.7158203125,0.6728515625,0.6220703125,0.56640625,0.5,0.431640625,0.3798828125,0.349609375,0.3359375,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.3369140625,0.3876953125,0.4638671875,0.5322265625,0.5615234375,0.544921875,0.5,0.4501953125,0.41015625,0.392578125,0.3994140625,0.419921875,0.43359375,0.4287109375,0.4150390625,0.39453125,0.39453125,0.4326171875,0.5087890625,0.5966796875,0.673828125,0.744140625,0.802734375,0.82421875,0.7978515625,0.7431640625,0.693359375,0.673828125,0.6494140625,0.576171875,0.4736328125,0.3876953125,0.3525390625,0.3740234375,0.4287109375,0.4833984375,0.5068359375,0.49609375,0.466796875,0.4462890625,0.45703125,0.5,0.5537109375,0.611328125,0.65625,0.6708984375,0.658203125,0.6357421875,0.6220703125,0.6123046875,0.6044921875,0.5986328125,0.59375,0.587890625,0.580078125,0.5703125,0.5625,0.5673828125,0.5849609375,0.607421875,0.6240234375,0.62890625,0.6220703125,0.611328125,0.59765625,0.568359375,0.515625,0.4482421875,0.380859375,0.3251953125,0.291015625,0.3232421875,0.4169921875,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.3984375,0.4619140625,0.541015625,0.609375,0.6474609375,0.650390625,0.634765625,0.609375,0.5654296875,0.521484375,0.501953125,0.5185546875,0.55859375,0.6044921875,0.64453125,0.650390625,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.2265625,0.181640625,0.154296875,0.1708984375,0.2333984375,0.3173828125,0.39453125,0.470703125,0.5556640625,0.6181640625,0.634765625,0.6064453125,0.5625,0.5302734375,0.50390625,0.478515625,0.4580078125,0.44140625,0.427734375,0.412109375,0.39453125,0.388671875,0.43359375,0.513671875,0.587890625,0.619140625,0.59375,0.5302734375,0.4599609375,0.4091796875,0.4052734375,0.455078125,0.5361328125,0.6044921875,0.634765625,0.6455078125,0.630859375,0.6044921875,0.59375,0.6162109375,0.6708984375,0.740234375,0.7978515625,0.794921875,0.7314453125,0.6435546875,0.580078125,0.5771484375,0.634765625,0.701171875,0.7392578125,0.7421875,0.720703125,0.69921875,0.703125,0.740234375,0.7734375,0.75390625,0.6708984375,0.5517578125,0.4443359375,0.390625,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.2802734375,0.3798828125,0.541015625,0.6982421875,0.79296875,0.798828125,0.740234375,0.6767578125,0.650390625,0.6708984375,0.720703125,0.765625,0.7744140625,0.740234375,0.7021484375,0.6953125,0.720703125,0.7587890625,0.7841796875,0.7783203125,0.740234375,0.69921875,0.681640625,0.693359375,0.7236328125,0.751953125,0.759765625,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.3310546875,0.3046875,0.314453125,0.3388671875,0.3486328125,0.322265625,0.2587890625,0.197265625,0.185546875,0.240234375,0.341796875,0.4453125,0.501953125,0.5,0.474609375,0.4287109375,0.375,0.3359375,0.3251953125,0.3388671875,0.3642578125,0.3857421875,0.392578125,0.3974609375,0.4189453125,0.466796875,0.533203125,0.6044921875,0.6689453125,0.693359375,0.662109375,0.587890625,0.5078125,0.4638671875,0.46875,0.4892578125,0.509765625,0.52734375,0.53515625,0.53515625,0.53125,0.5302734375,0.52734375,0.5166015625,0.501953125,0.494140625,0.498046875,0.51171875,0.5302734375,0.556640625,0.60546875,0.6591796875,0.6904296875,0.6845703125,0.6494140625,0.6044921875,0.5625,0.53515625,0.5302734375,0.541015625,0.552734375,0.55078125,0.5302734375,0.513671875,0.5322265625,0.57421875,0.607421875,0.607421875,0.56640625,0.5,0.44140625,0.4443359375,0.5185546875,0.6318359375,0.73046875,0.7685546875,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.2646484375,0.2998046875,0.369140625,0.4609375,0.5478515625,0.607421875,0.634765625,0.662109375,0.71484375,0.775390625,0.814453125,0.8154296875,0.7841796875,0.740234375,0.6875,0.6142578125,0.5380859375,0.4853515625,0.4697265625,0.48046875,0.5,0.517578125,0.5322265625,0.546875,0.5634765625,0.583984375,0.6083984375,0.634765625,0.6533203125,0.63671875,0.5849609375,0.5185546875,0.466796875,0.451171875,0.46875,0.490234375,0.490234375,0.474609375,0.4609375,0.462890625,0.48828125,0.5302734375,0.58203125,0.650390625,0.708984375,0.7294921875,0.7041015625,0.6533203125,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.71484375,0.6884765625,0.6572265625,0.6162109375,0.56640625,0.515625,0.46875,0.4228515625,0.375,0.333984375,0.3056640625,0.2890625,0.2763671875,0.2587890625,0.240234375,0.2265625,0.2236328125,0.2314453125,0.2451171875,0.255859375,0.2587890625,0.265625,0.2919921875,0.3251953125,0.3447265625,0.3359375,0.302734375,0.2587890625,0.2197265625,0.2109375,0.240234375,0.294921875,0.3486328125,0.3740234375,0.3642578125,0.3466796875,0.3359375,0.328125,0.3193359375,0.3056640625,0.2841796875,0.2587890625,0.2255859375,0.177734375,0.142578125,0.1513671875,0.2080078125,0.2880859375,0.3642578125,0.4443359375,0.5419921875,0.6162109375,0.6240234375,0.5634765625,0.4736328125,0.39453125,0.326171875,0.283203125,0.2861328125,0.3369140625,0.40625,0.45703125,0.46875,0.4765625,0.5107421875,0.5576171875,0.5927734375,0.5986328125,0.572265625,0.5302734375,0.484375,0.4501953125,0.455078125,0.5107421875,0.599609375,0.6845703125,0.740234375,0.7724609375,0.7490234375,0.6591796875,0.533203125,0.4189453125,0.3603515625,0.3642578125,0.376953125,0.3681640625,0.3447265625,0.3251953125,0.326171875,0.3525390625,0.39453125,0.4462890625,0.521484375,0.607421875,0.6796875,0.72265625,0.73828125,0.740234375,0.740234375,0.73828125,0.7294921875,0.708984375,0.6826171875,0.65625,0.634765625,0.611328125,0.5673828125,0.5,0.4189453125,0.3447265625,0.291015625,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.267578125,0.3076171875,0.375,0.447265625,0.4970703125,0.5126953125,0.5,0.484375,0.4814453125,0.4912109375,0.501953125,0.5048828125,0.4931640625,0.46875,0.439453125,0.412109375,0.4140625,0.4658203125,0.5595703125,0.66015625,0.740234375,0.8134765625,0.880859375,0.9140625,0.89453125,0.8369140625,0.775390625,0.740234375,0.7021484375,0.623046875,0.5244140625,0.4443359375,0.412109375,0.427734375,0.46875,0.51171875,0.537109375,0.5380859375,0.5185546875,0.4951171875,0.486328125,0.5,0.5244140625,0.5703125,0.6240234375,0.6630859375,0.673828125,0.66015625,0.634765625,0.6103515625,0.59375,0.5849609375,0.580078125,0.5712890625,0.5546875,0.5302734375,0.5107421875,0.51953125,0.5576171875,0.607421875,0.6455078125,0.654296875,0.634765625,0.603515625,0.548828125,0.474609375,0.39453125,0.326171875,0.2822265625,0.2587890625,0.2587890625,0.328125,0.455078125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.4404296875,0.48828125,0.529296875,0.5576171875,0.57421875,0.587890625,0.6044921875,0.6201171875,0.6220703125,0.61328125,0.6015625,0.599609375,0.611328125,0.634765625,0.658203125,0.658203125,0.61328125,0.521484375,0.4091796875,0.3154296875,0.2587890625,0.20703125,0.1455078125,0.1064453125,0.123046875,0.1943359375,0.28515625,0.3642578125,0.4423828125,0.5341796875,0.6044921875,0.62109375,0.5830078125,0.5205078125,0.46875,0.419921875,0.36328125,0.3173828125,0.30078125,0.314453125,0.341796875,0.3642578125,0.39453125,0.462890625,0.5439453125,0.59375,0.58984375,0.5390625,0.46875,0.4052734375,0.3798828125,0.4111328125,0.4853515625,0.5654296875,0.6103515625,0.6044921875,0.5791015625,0.5400390625,0.513671875,0.52734375,0.5849609375,0.6640625,0.740234375,0.796875,0.791015625,0.720703125,0.6240234375,0.5537109375,0.5478515625,0.6044921875,0.673828125,0.7275390625,0.7509765625,0.7451171875,0.7275390625,0.7216796875,0.740234375,0.759765625,0.744140625,0.6796875,0.5771484375,0.4697265625,0.39453125,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.2802734375,0.3798828125,0.541015625,0.6982421875,0.79296875,0.798828125,0.740234375,0.673828125,0.63671875,0.6435546875,0.6845703125,0.7333984375,0.755859375,0.740234375,0.7177734375,0.7138671875,0.728515625,0.7509765625,0.765625,0.76171875,0.740234375,0.720703125,0.7275390625,0.7568359375,0.787109375,0.7978515625,0.7802734375,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.3017578125,0.2783203125,0.294921875,0.328125,0.3447265625,0.3212890625,0.2587890625,0.1923828125,0.158203125,0.1845703125,0.2705078125,0.380859375,0.4658203125,0.5,0.5087890625,0.484375,0.4306640625,0.375,0.345703125,0.35546875,0.39453125,0.4345703125,0.455078125,0.4638671875,0.4775390625,0.5107421875,0.5654296875,0.634765625,0.705078125,0.755859375,0.759765625,0.708984375,0.62890625,0.560546875,0.5302734375,0.509765625,0.4892578125,0.4716796875,0.4638671875,0.4638671875,0.4677734375,0.46875,0.4716796875,0.482421875,0.4970703125,0.5048828125,0.5009765625,0.4873046875,0.46875,0.4580078125,0.4794921875,0.533203125,0.595703125,0.642578125,0.654296875,0.634765625,0.611328125,0.5986328125,0.5908203125,0.5771484375,0.5517578125,0.513671875,0.46875,0.435546875,0.4482421875,0.5,0.5576171875,0.5849609375,0.5625,0.5,0.439453125,0.4306640625,0.4912109375,0.5966796875,0.6982421875,0.75,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.26953125,0.322265625,0.4140625,0.513671875,0.5869140625,0.615234375,0.6044921875,0.5927734375,0.611328125,0.6572265625,0.7119140625,0.751953125,0.759765625,0.740234375,0.7119140625,0.673828125,0.6298828125,0.5849609375,0.5478515625,0.51953125,0.5,0.4775390625,0.4501953125,0.435546875,0.4521484375,0.498046875,0.5556640625,0.6044921875,0.640625,0.638671875,0.5966796875,0.5380859375,0.49609375,0.494140625,0.5302734375,0.5693359375,0.5791015625,0.5546875,0.5078125,0.4658203125,0.451171875,0.46875,0.501953125,0.556640625,0.619140625,0.662109375,0.6748046875,0.66015625,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.6943359375,0.6513671875,0.6162109375,0.5908203125,0.572265625,0.5537109375,0.5302734375,0.4951171875,0.431640625,0.3525390625,0.2841796875,0.2470703125,0.2431640625,0.2587890625,0.27734375,0.291015625,0.294921875,0.287109375,0.2724609375,0.26171875,0.2587890625,0.2626953125,0.2783203125,0.2978515625,0.30859375,0.3037109375,0.2841796875,0.2587890625,0.2333984375,0.2197265625,0.2314453125,0.2705078125,0.3232421875,0.369140625,0.39453125,0.416015625,0.439453125,0.447265625,0.421875,0.369140625,0.30859375,0.2587890625,0.2080078125,0.1494140625,0.1181640625,0.142578125,0.2197265625,0.3154296875,0.39453125,0.4736328125,0.5634765625,0.6240234375,0.6162109375,0.5419921875,0.4443359375,0.3642578125,0.2978515625,0.265625,0.2900390625,0.36328125,0.4541015625,0.515625,0.5302734375,0.5322265625,0.5400390625,0.5458984375,0.541015625,0.5224609375,0.49609375,0.46875,0.4462890625,0.4443359375,0.48046875,0.5517578125,0.63671875,0.7041015625,0.740234375,0.7607421875,0.7490234375,0.6904296875,0.595703125,0.49609375,0.4248046875,0.39453125,0.3720703125,0.3388671875,0.30859375,0.2978515625,0.3095703125,0.3369140625,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.640625,0.705078125,0.7353515625,0.740234375,0.734375,0.70703125,0.662109375,0.619140625,0.591796875,0.5888671875,0.6044921875,0.62109375,0.619140625,0.580078125,0.5,0.3994140625,0.3134765625,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.26171875,0.2802734375,0.3193359375,0.375,0.4326171875,0.4755859375,0.5,0.525390625,0.5693359375,0.61328125,0.6318359375,0.6162109375,0.576171875,0.5302734375,0.48046875,0.431640625,0.416015625,0.4609375,0.5546875,0.6591796875,0.740234375,0.81640625,0.89453125,0.9423828125,0.9306640625,0.869140625,0.7939453125,0.740234375,0.6875,0.61328125,0.5380859375,0.4912109375,0.482421875,0.5029296875,0.5302734375,0.5576171875,0.583984375,0.5966796875,0.5849609375,0.5556640625,0.5224609375,0.5,0.490234375,0.5146484375,0.568359375,0.6240234375,0.6533203125,0.6435546875,0.6044921875,0.5634765625,0.5400390625,0.53515625,0.5380859375,0.533203125,0.509765625,0.46875,0.4345703125,0.4443359375,0.5,0.57421875,0.6298828125,0.6396484375,0.6044921875,0.5498046875,0.4638671875,0.3642578125,0.2841796875,0.244140625,0.2421875,0.2587890625,0.2958984375,0.3974609375,0.5380859375,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.5029296875,0.5302734375,0.52734375,0.5068359375,0.4931640625,0.5078125,0.55078125,0.6005859375,0.640625,0.658203125,0.650390625,0.630859375,0.6171875,0.6220703125,0.6337890625,0.640625,0.6220703125,0.5654296875,0.48046875,0.3935546875,0.3251953125,0.2568359375,0.1767578125,0.1240234375,0.1328125,0.203125,0.2978515625,0.376953125,0.45703125,0.55078125,0.6220703125,0.630859375,0.578125,0.4970703125,0.4287109375,0.361328125,0.2802734375,0.2197265625,0.2099609375,0.25390625,0.3203125,0.376953125,0.4384765625,0.5234375,0.59765625,0.6201171875,0.580078125,0.5048828125,0.4287109375,0.369140625,0.361328125,0.4130859375,0.4970703125,0.568359375,0.587890625,0.55078125,0.494140625,0.4306640625,0.39453125,0.41796875,0.4970703125,0.59375,0.673828125,0.73046875,0.7265625,0.6591796875,0.5654296875,0.498046875,0.494140625,0.55078125,0.6220703125,0.68359375,0.716796875,0.7138671875,0.689453125,0.669921875,0.673828125,0.68359375,0.6845703125,0.6591796875,0.59765625,0.5146484375,0.435546875,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.34375,0.427734375,0.55859375,0.6806640625,0.7451171875,0.7353515625,0.673828125,0.60546875,0.55859375,0.552734375,0.587890625,0.6396484375,0.673828125,0.673828125,0.6650390625,0.6630859375,0.6689453125,0.677734375,0.68359375,0.681640625,0.673828125,0.671875,0.7001953125,0.744140625,0.7744140625,0.7705078125,0.7314453125,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.31640625,0.2998046875,0.328125,0.375,0.4033203125,0.38671875,0.3251953125,0.2529296875,0.1923828125,0.1796875,0.234375,0.3359375,0.435546875,0.5,0.5390625,0.5341796875,0.4873046875,0.42578125,0.3876953125,0.396484375,0.4482421875,0.501953125,0.525390625,0.5224609375,0.51171875,0.5185546875,0.556640625,0.6220703125,0.697265625,0.7734375,0.8125,0.7900390625,0.7158203125,0.630859375,0.5703125,0.517578125,0.462890625,0.421875,0.40625,0.4130859375,0.4248046875,0.4287109375,0.4365234375,0.4658203125,0.50390625,0.525390625,0.515625,0.478515625,0.4287109375,0.3857421875,0.3779296875,0.4189453125,0.49609375,0.5751953125,0.6201171875,0.6220703125,0.615234375,0.6201171875,0.62109375,0.6005859375,0.5537109375,0.4921875,0.4287109375,0.380859375,0.38671875,0.4443359375,0.51953125,0.5673828125,0.5595703125,0.5,0.435546875,0.41015625,0.443359375,0.5234375,0.6142578125,0.669921875,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.337890625,0.39453125,0.4833984375,0.564453125,0.60546875,0.595703125,0.55078125,0.505859375,0.4892578125,0.5146484375,0.5732421875,0.63671875,0.673828125,0.673828125,0.666015625,0.6669921875,0.6640625,0.64453125,0.6044921875,0.5517578125,0.5,0.4423828125,0.3759765625,0.33203125,0.341796875,0.40234375,0.4833984375,0.55078125,0.6025390625,0.6142578125,0.583984375,0.537109375,0.5068359375,0.5185546875,0.5703125,0.625,0.646484375,0.619140625,0.55078125,0.4755859375,0.4306640625,0.4287109375,0.4453125,0.482421875,0.53515625,0.5859375,0.619140625,0.62890625,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.6123046875,0.5615234375,0.53515625,0.5380859375,0.55859375,0.57421875,0.5703125,0.546875,0.48046875,0.3857421875,0.3037109375,0.2666015625,0.2802734375,0.3251953125,0.375,0.412109375,0.421875,0.400390625,0.3623046875,0.3330078125,0.3251953125,0.3271484375,0.3330078125,0.3408203125,0.345703125,0.34375,0.3359375,0.3251953125,0.3115234375,0.2890625,0.2763671875,0.291015625,0.3359375,0.3935546875,0.4482421875,0.5029296875,0.5615234375,0.5888671875,0.5615234375,0.484375,0.3955078125,0.3251953125,0.2587890625,0.1875,0.1494140625,0.177734375,0.263671875,0.3662109375,0.4482421875,0.5263671875,0.611328125,0.662109375,0.6435546875,0.5615234375,0.458984375,0.376953125,0.3125,0.283203125,0.3125,0.3935546875,0.490234375,0.5556640625,0.5703125,0.568359375,0.556640625,0.533203125,0.5,0.466796875,0.4423828125,0.4287109375,0.4228515625,0.439453125,0.484375,0.548828125,0.61328125,0.65625,0.673828125,0.685546875,0.6953125,0.6845703125,0.642578125,0.5751953125,0.50390625,0.4482421875,0.3955078125,0.34375,0.310546875,0.30859375,0.3330078125,0.361328125,0.376953125,0.39453125,0.4375,0.505859375,0.580078125,0.6376953125,0.66796875,0.673828125,0.6630859375,0.619140625,0.5537109375,0.5,0.482421875,0.5048828125,0.55078125,0.6044921875,0.6494140625,0.654296875,0.599609375,0.5,0.3974609375,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.322265625,0.314453125,0.314453125,0.3388671875,0.3876953125,0.4462890625,0.5,0.5595703125,0.640625,0.7119140625,0.734375,0.701171875,0.634765625,0.5703125,0.5029296875,0.4287109375,0.38671875,0.41015625,0.4921875,0.5927734375,0.673828125,0.751953125,0.83984375,0.8984375,0.89453125,0.8291015625,0.7431640625,0.673828125,0.609375,0.546875,0.50390625,0.4990234375,0.5234375,0.5537109375,0.5703125,0.5859375,0.6142578125,0.638671875,0.63671875,0.6044921875,0.5517578125,0.5,0.4599609375,0.46484375,0.51171875,0.5732421875,0.611328125,0.6025390625,0.55078125,0.4970703125,0.4736328125,0.48046875,0.5,0.5068359375,0.4833984375,0.4287109375,0.380859375,0.38671875,0.4482421875,0.5322265625,0.59375,0.599609375,0.55078125,0.4794921875,0.376953125,0.27734375,0.22265625,0.2275390625,0.2724609375,0.3251953125,0.3916015625,0.5068359375,0.6357421875,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.548828125,0.5625,0.529296875,0.4755859375,0.4404296875,0.4521484375,0.509765625,0.5771484375,0.6337890625,0.658203125,0.64453125,0.607421875,0.576171875,0.5693359375,0.5771484375,0.6005859375,0.6201171875,0.609375,0.5615234375,0.4912109375,0.419921875,0.341796875,0.25,0.185546875,0.1875,0.255859375,0.349609375,0.4296875,0.509765625,0.603515625,0.671875,0.673828125,0.609375,0.517578125,0.439453125,0.3623046875,0.26953125,0.203125,0.201171875,0.2646484375,0.353515625,0.4296875,0.5068359375,0.599609375,0.66796875,0.671875,0.609375,0.5185546875,0.439453125,0.380859375,0.376953125,0.4296875,0.5078125,0.564453125,0.564453125,0.509765625,0.4345703125,0.3515625,0.30078125,0.318359375,0.3974609375,0.498046875,0.5791015625,0.6376953125,0.6396484375,0.583984375,0.5048828125,0.44921875,0.451171875,0.509765625,0.5810546875,0.640625,0.66796875,0.6552734375,0.6181640625,0.5859375,0.5791015625,0.5869140625,0.609375,0.6279296875,0.6162109375,0.5693359375,0.5,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.43359375,0.494140625,0.583984375,0.65625,0.6787109375,0.6455078125,0.5791015625,0.509765625,0.4580078125,0.4462890625,0.4775390625,0.5302734375,0.5712890625,0.5791015625,0.578125,0.5771484375,0.578125,0.580078125,0.5810546875,0.5810546875,0.5791015625,0.5869140625,0.626953125,0.6787109375,0.708984375,0.697265625,0.6474609375,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.3701171875,0.357421875,0.3955078125,0.4541015625,0.4921875,0.4794921875,0.419921875,0.3427734375,0.259765625,0.2138671875,0.236328125,0.3193359375,0.4208984375,0.5,0.5556640625,0.564453125,0.5224609375,0.4609375,0.4208984375,0.4306640625,0.4892578125,0.5498046875,0.568359375,0.5458984375,0.5068359375,0.486328125,0.5078125,0.5693359375,0.6484375,0.7392578125,0.8017578125,0.796875,0.728515625,0.6357421875,0.5595703125,0.490234375,0.42578125,0.3857421875,0.3837890625,0.408203125,0.4326171875,0.439453125,0.44921875,0.4892578125,0.5400390625,0.5693359375,0.556640625,0.505859375,0.439453125,0.3759765625,0.3427734375,0.3603515625,0.4248046875,0.50390625,0.55859375,0.5693359375,0.57421875,0.5986328125,0.62109375,0.6171875,0.576171875,0.5107421875,0.439453125,0.3828125,0.380859375,0.4345703125,0.5107421875,0.5625,0.55859375,0.5,0.431640625,0.3896484375,0.3955078125,0.4482421875,0.5185546875,0.5693359375,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.431640625,0.482421875,0.552734375,0.60546875,0.61328125,0.57421875,0.509765625,0.4443359375,0.404296875,0.408203125,0.4560546875,0.5224609375,0.5693359375,0.5791015625,0.5849609375,0.6142578125,0.6474609375,0.6552734375,0.6259765625,0.5673828125,0.5,0.423828125,0.333984375,0.271484375,0.2734375,0.33984375,0.431640625,0.509765625,0.5693359375,0.5859375,0.5576171875,0.51171875,0.4833984375,0.5,0.5595703125,0.6240234375,0.66015625,0.6455078125,0.5830078125,0.5048828125,0.4501953125,0.439453125,0.4443359375,0.462890625,0.4931640625,0.52734375,0.5546875,0.568359375,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.5107421875,0.4580078125,0.4423828125,0.466796875,0.5146484375,0.5517578125,0.5595703125,0.544921875,0.4873046875,0.404296875,0.33984375,0.322265625,0.3564453125,0.419921875,0.486328125,0.5361328125,0.548828125,0.51953125,0.46875,0.4296875,0.419921875,0.419921875,0.4208984375,0.421875,0.4228515625,0.4228515625,0.421875,0.419921875,0.41015625,0.3779296875,0.341796875,0.33203125,0.361328125,0.4208984375,0.4892578125,0.564453125,0.646484375,0.6953125,0.677734375,0.5986328125,0.4990234375,0.419921875,0.34375,0.2587890625,0.2080078125,0.2255859375,0.306640625,0.408203125,0.4892578125,0.568359375,0.654296875,0.7080078125,0.6923828125,0.6123046875,0.5107421875,0.4296875,0.36328125,0.326171875,0.341796875,0.40625,0.4892578125,0.5458984375,0.5595703125,0.556640625,0.54296875,0.517578125,0.4873046875,0.4599609375,0.4443359375,0.439453125,0.44140625,0.4560546875,0.4853515625,0.5224609375,0.5546875,0.57421875,0.5791015625,0.587890625,0.6181640625,0.6494140625,0.654296875,0.6201171875,0.55859375,0.4892578125,0.421875,0.36328125,0.3359375,0.3486328125,0.38671875,0.419921875,0.4296875,0.4345703125,0.4541015625,0.48828125,0.5263671875,0.55859375,0.576171875,0.5791015625,0.568359375,0.51953125,0.453125,0.40625,0.4033203125,0.4443359375,0.509765625,0.583984375,0.6630859375,0.7080078125,0.685546875,0.6015625,0.5,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.412109375,0.3818359375,0.3486328125,0.3408203125,0.37109375,0.4306640625,0.5,0.5771484375,0.6748046875,0.7529296875,0.76953125,0.7197265625,0.6357421875,0.5595703125,0.4814453125,0.3916015625,0.3291015625,0.333984375,0.4033203125,0.4990234375,0.5791015625,0.6591796875,0.751953125,0.8173828125,0.81640625,0.75,0.6572265625,0.5791015625,0.5107421875,0.4560546875,0.4375,0.4609375,0.5087890625,0.548828125,0.5595703125,0.5693359375,0.6025390625,0.640625,0.6533203125,0.6259765625,0.5673828125,0.5,0.443359375,0.4345703125,0.4765625,0.5380859375,0.578125,0.568359375,0.509765625,0.44921875,0.4306640625,0.4541015625,0.4951171875,0.5185546875,0.5,0.439453125,0.3828125,0.380859375,0.435546875,0.513671875,0.568359375,0.56640625,0.509765625,0.4296875,0.328125,0.244140625,0.220703125,0.265625,0.345703125,0.419921875,0.5,0.609375,0.708984375,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.595703125,0.6591796875,0.673828125,0.63671875,0.5693359375,0.49609375,0.4287109375,0.3857421875,0.3818359375,0.4072265625,0.4326171875,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.43359375,0.40234375,0.3662109375,0.353515625,0.380859375,0.4404296875,0.509765625,0.5673828125,0.57421875,0.529296875,0.4638671875,0.4208984375,0.4296875,0.4892578125,0.55859375,0.6044921875,0.6064453125,0.5634765625,0.4990234375,0.451171875,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.65625,0.74609375,0.806640625,0.8017578125,0.732421875,0.6376953125,0.5595703125,0.4814453125,0.392578125,0.33203125,0.3369140625,0.40625,0.5009765625,0.5791015625,0.65625,0.7451171875,0.8046875,0.798828125,0.7294921875,0.6357421875,0.5595703125,0.5009765625,0.486328125,0.5146484375,0.5595703125,0.5869140625,0.5693359375,0.509765625,0.4306640625,0.3310546875,0.2509765625,0.2333984375,0.283203125,0.365234375,0.439453125,0.498046875,0.5126953125,0.484375,0.439453125,0.412109375,0.4296875,0.4892578125,0.5556640625,0.5986328125,0.595703125,0.5478515625,0.48046875,0.4306640625,0.419921875,0.43359375,0.494140625,0.583984375,0.65625,0.6787109375,0.6455078125,0.5791015625,0.5087890625,0.4560546875,0.44140625,0.470703125,0.5244140625,0.5673828125,0.5791015625,0.5869140625,0.6123046875,0.6328125,0.623046875,0.5751953125,0.5029296875,0.4296875,0.359375,0.3046875,0.2880859375,0.3154296875,0.3662109375,0.408203125,0.419921875,0.421875,0.4228515625,0.4228515625,0.421875,0.4208984375,0.419921875,0.419921875,0.4296875,0.470703125,0.5234375,0.5556640625,0.544921875,0.49609375,0.4296875,0.3662109375,0.3330078125,0.3505859375,0.4150390625,0.494140625,0.548828125,0.5595703125,0.5478515625,0.5048828125,0.451171875,0.421875,0.435546875,0.4892578125,0.5595703125,0.638671875,0.732421875,0.7978515625,0.796875,0.73046875,0.6376953125,0.5595703125,0.5009765625,0.4931640625,0.5361328125,0.5986328125,0.6396484375,0.62890625,0.5693359375,0.48828125,0.3857421875,0.302734375,0.2841796875,0.3359375,0.421875,0.5,0.5595703125,0.5712890625,0.533203125,0.4755859375,0.4375,0.44921875,0.509765625,0.568359375,0.5712890625,0.515625,0.4345703125,0.3759765625,0.375,0.4296875,0.5068359375,0.599609375,0.66796875,0.671875,0.609375,0.5185546875,0.439453125,0.373046875,0.3349609375,0.349609375,0.4130859375,0.49609375,0.5546875,0.5693359375,0.5810546875,0.6240234375,0.6787109375,0.7099609375,0.6982421875,0.6474609375,0.5791015625,0.5068359375,0.435546875,0.3857421875,0.373046875,0.3896484375,0.412109375,0.419921875,0.4345703125,0.4931640625,0.578125,0.6455078125,0.6650390625,0.6328125,0.5693359375,0.5107421875,0.4931640625,0.5185546875,0.560546875,0.5849609375,0.568359375,0.509765625,0.4404296875,0.3798828125,0.3486328125,0.35546875,0.3896484375,0.4208984375,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.421875,0.4404296875,0.4755859375,0.5185546875,0.5546875,0.5751953125,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.4375,0.3740234375,0.3408203125,0.34765625,0.380859375,0.412109375,0.419921875,0.431640625,0.4814453125,0.55078125,0.599609375,0.6015625,0.5576171875,0.4892578125,0.41015625,0.3193359375,0.2578125,0.26171875,0.330078125,0.4228515625,0.5,0.5546875,0.5546875,0.498046875,0.419921875,0.3671875,0.37109375,0.4296875,0.5029296875,0.572265625,0.615234375,0.6201171875,0.5947265625,0.568359375,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.4423828125,0.4580078125,0.486328125,0.5185546875,0.544921875,0.55859375,0.5595703125,0.564453125,0.58984375,0.615234375,0.61328125,0.5751953125,0.5107421875,0.439453125,0.37109375,0.3203125,0.3076171875,0.3369140625,0.3896484375,0.4296875,0.439453125,0.43359375,0.41015625,0.390625,0.3984375,0.4423828125,0.509765625,0.5791015625,0.6455078125,0.6923828125,0.701171875,0.6669921875,0.611328125,0.5693359375,0.5595703125,0.5595703125,0.560546875,0.5615234375,0.5625,0.5625,0.560546875,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5693359375,0.671875,0.7578125,0.78125,0.736328125,0.6552734375,0.5791015625,0.5,0.3984375,0.31640625,0.296875,0.3466796875,0.431640625,0.509765625,0.58984375,0.689453125,0.767578125,0.78125,0.728515625,0.64453125,0.5693359375,0.5,0.43359375,0.392578125,0.38671875,0.4091796875,0.43359375,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.576171875,0.55859375,0.5263671875,0.48828125,0.4541015625,0.4345703125,0.4296875,0.439453125,0.484375,0.548828125,0.5947265625,0.595703125,0.5546875,0.4892578125,0.4248046875,0.3857421875,0.392578125,0.443359375,0.51171875,0.5595703125,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.5888671875,0.6865234375,0.7626953125,0.7763671875,0.7216796875,0.6357421875,0.5595703125,0.4912109375,0.4423828125,0.4345703125,0.4697265625,0.5263671875,0.5693359375,0.5791015625,0.5673828125,0.5166015625,0.4462890625,0.3935546875,0.3857421875,0.4248046875,0.4892578125,0.564453125,0.6474609375,0.6982421875,0.6806640625,0.6015625,0.5009765625,0.419921875,0.3408203125,0.25,0.189453125,0.1953125,0.265625,0.361328125,0.439453125,0.517578125,0.6064453125,0.6689453125,0.6650390625,0.5986328125,0.505859375,0.4296875,0.3623046875,0.310546875,0.294921875,0.3203125,0.369140625,0.4091796875,0.419921875,0.43359375,0.486328125,0.55859375,0.611328125,0.6171875,0.576171875,0.509765625,0.4501953125,0.4365234375,0.4697265625,0.5234375,0.55859375,0.546875,0.4892578125,0.4345703125,0.4345703125,0.4912109375,0.5693359375,0.6220703125,0.6181640625,0.5595703125,0.4970703125,0.4765625,0.498046875,0.5390625,0.564453125,0.5478515625,0.4892578125,0.4150390625,0.3330078125,0.283203125,0.30078125,0.380859375,0.48046875,0.5595703125,0.6337890625,0.708984375,0.7431640625,0.625,0.701171875,0.7236328125,0.6884765625,0.6220703125,0.5478515625,0.4716796875,0.4150390625,0.39453125,0.4052734375,0.423828125,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.43359375,0.419921875,0.4033203125,0.4052734375,0.4365234375,0.490234375,0.55078125,0.5986328125,0.5888671875,0.5234375,0.4404296875,0.384765625,0.388671875,0.4482421875,0.517578125,0.5673828125,0.576171875,0.541015625,0.4833984375,0.439453125,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.7392578125,0.806640625,0.8408203125,0.8134765625,0.7333984375,0.640625,0.5703125,0.50390625,0.4365234375,0.40234375,0.4296875,0.509765625,0.6025390625,0.673828125,0.7373046875,0.7998046875,0.826171875,0.7939453125,0.7158203125,0.630859375,0.5703125,0.5283203125,0.5244140625,0.556640625,0.599609375,0.6220703125,0.6044921875,0.55078125,0.4814453125,0.392578125,0.3154296875,0.2880859375,0.3154296875,0.3740234375,0.4287109375,0.470703125,0.474609375,0.4423828125,0.3994140625,0.376953125,0.39453125,0.4482421875,0.5048828125,0.5341796875,0.5185546875,0.4609375,0.3876953125,0.3369140625,0.3251953125,0.34375,0.427734375,0.55859375,0.6806640625,0.7451171875,0.7353515625,0.673828125,0.6025390625,0.5439453125,0.5224609375,0.548828125,0.6044921875,0.6533203125,0.673828125,0.6865234375,0.7001953125,0.689453125,0.63671875,0.5498046875,0.455078125,0.376953125,0.3046875,0.240234375,0.2080078125,0.2197265625,0.263671875,0.306640625,0.3251953125,0.3359375,0.34375,0.345703125,0.3408203125,0.3330078125,0.3271484375,0.3251953125,0.333984375,0.3701171875,0.4189453125,0.4541015625,0.45703125,0.42578125,0.376953125,0.333984375,0.326171875,0.3671875,0.4443359375,0.5234375,0.568359375,0.5703125,0.5498046875,0.5009765625,0.4453125,0.4189453125,0.4404296875,0.4990234375,0.5703125,0.6484375,0.736328125,0.794921875,0.791015625,0.7265625,0.6396484375,0.5703125,0.521484375,0.5244140625,0.578125,0.6484375,0.6923828125,0.681640625,0.6220703125,0.5390625,0.4296875,0.3359375,0.3037109375,0.34375,0.4228515625,0.5,0.560546875,0.5771484375,0.548828125,0.501953125,0.4736328125,0.490234375,0.55078125,0.609375,0.611328125,0.5478515625,0.4501953125,0.3671875,0.341796875,0.376953125,0.4384765625,0.5234375,0.59765625,0.6201171875,0.580078125,0.5048828125,0.4287109375,0.3623046875,0.3271484375,0.349609375,0.42578125,0.5244140625,0.5966796875,0.6220703125,0.6416015625,0.69140625,0.75,0.78515625,0.7783203125,0.7333984375,0.673828125,0.6044921875,0.5107421875,0.4140625,0.34375,0.314453125,0.3154296875,0.3251953125,0.349609375,0.4228515625,0.529296875,0.6240234375,0.6728515625,0.666015625,0.6220703125,0.5771484375,0.5615234375,0.57421875,0.5986328125,0.611328125,0.595703125,0.55078125,0.49609375,0.431640625,0.3759765625,0.3466796875,0.34765625,0.3642578125,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3232421875,0.3583984375,0.43359375,0.5302734375,0.615234375,0.6640625,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.4765625,0.396484375,0.3330078125,0.3037109375,0.306640625,0.3212890625,0.3251953125,0.3388671875,0.39453125,0.4755859375,0.5380859375,0.552734375,0.5146484375,0.4482421875,0.3720703125,0.296875,0.2568359375,0.279296875,0.353515625,0.4384765625,0.5,0.5361328125,0.5166015625,0.4453125,0.361328125,0.3095703125,0.3173828125,0.376953125,0.453125,0.53515625,0.5986328125,0.6240234375,0.611328125,0.5859375,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.43359375,0.45703125,0.49609375,0.5380859375,0.5673828125,0.5771484375,0.5703125,0.5654296875,0.576171875,0.5888671875,0.5810546875,0.546875,0.490234375,0.4287109375,0.369140625,0.32421875,0.3134765625,0.3388671875,0.384765625,0.4208984375,0.4287109375,0.427734375,0.427734375,0.4443359375,0.4873046875,0.55078125,0.6181640625,0.673828125,0.720703125,0.7451171875,0.7314453125,0.6826171875,0.6220703125,0.5791015625,0.5703125,0.5712890625,0.5771484375,0.5849609375,0.58984375,0.587890625,0.580078125,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.521484375,0.62890625,0.736328125,0.7958984375,0.7890625,0.736328125,0.673828125,0.6005859375,0.4990234375,0.4072265625,0.37109375,0.40234375,0.4755859375,0.55078125,0.6298828125,0.720703125,0.787109375,0.796875,0.75,0.6796875,0.6220703125,0.5673828125,0.5068359375,0.4541015625,0.4248046875,0.419921875,0.4267578125,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.66796875,0.6376953125,0.580078125,0.505859375,0.4375,0.39453125,0.376953125,0.3759765625,0.40625,0.4580078125,0.5029296875,0.5166015625,0.494140625,0.4482421875,0.4033203125,0.3935546875,0.4306640625,0.5029296875,0.5771484375,0.62109375,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.6201171875,0.7021484375,0.763671875,0.7685546875,0.7158203125,0.6376953125,0.5703125,0.5126953125,0.48046875,0.4921875,0.5458984375,0.6142578125,0.662109375,0.673828125,0.6611328125,0.6044921875,0.515625,0.4345703125,0.3935546875,0.4033203125,0.4482421875,0.5048828125,0.568359375,0.6044921875,0.5810546875,0.501953125,0.4052734375,0.3251953125,0.25,0.173828125,0.138671875,0.169921875,0.2578125,0.357421875,0.4287109375,0.494140625,0.5625,0.6005859375,0.58203125,0.515625,0.4365234375,0.376953125,0.3251953125,0.275390625,0.2470703125,0.25,0.2783203125,0.3095703125,0.3251953125,0.349609375,0.419921875,0.5185546875,0.599609375,0.630859375,0.607421875,0.55078125,0.49609375,0.46875,0.4716796875,0.4921875,0.505859375,0.4912109375,0.4482421875,0.4111328125,0.4306640625,0.501953125,0.5859375,0.6376953125,0.6298828125,0.5703125,0.5048828125,0.466796875,0.4638671875,0.484375,0.5009765625,0.490234375,0.4482421875,0.392578125,0.3349609375,0.306640625,0.3349609375,0.4111328125,0.5,0.5703125,0.6328125,0.68359375,0.685546875,0.685546875,0.748046875,0.751953125,0.7041015625,0.634765625,0.5615234375,0.4892578125,0.4384765625,0.4248046875,0.44140625,0.462890625,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.4912109375,0.5009765625,0.501953125,0.5078125,0.5263671875,0.5615234375,0.6044921875,0.6337890625,0.599609375,0.5078125,0.40234375,0.3349609375,0.3359375,0.39453125,0.4658203125,0.52734375,0.5576171875,0.546875,0.509765625,0.4775390625,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.78515625,0.8193359375,0.814453125,0.7587890625,0.669921875,0.5849609375,0.5302734375,0.484375,0.4501953125,0.455078125,0.5107421875,0.599609375,0.6845703125,0.740234375,0.7822265625,0.80078125,0.7763671875,0.708984375,0.625,0.5595703125,0.5302734375,0.51953125,0.541015625,0.587890625,0.634765625,0.6572265625,0.64453125,0.6044921875,0.5546875,0.494140625,0.44140625,0.4169921875,0.423828125,0.447265625,0.46875,0.4794921875,0.4580078125,0.4111328125,0.3642578125,0.341796875,0.3544921875,0.39453125,0.435546875,0.4521484375,0.4306640625,0.375,0.3115234375,0.2685546875,0.2587890625,0.2802734375,0.3798828125,0.541015625,0.6982421875,0.79296875,0.798828125,0.740234375,0.6669921875,0.5986328125,0.56640625,0.5849609375,0.6435546875,0.7041015625,0.740234375,0.7666015625,0.7822265625,0.7568359375,0.6767578125,0.5595703125,0.4462890625,0.3642578125,0.2880859375,0.2080078125,0.1513671875,0.142578125,0.177734375,0.2255859375,0.2587890625,0.2841796875,0.3037109375,0.30859375,0.2978515625,0.2783203125,0.2626953125,0.2587890625,0.263671875,0.2880859375,0.3251953125,0.361328125,0.380859375,0.3798828125,0.3642578125,0.353515625,0.375,0.427734375,0.4912109375,0.537109375,0.548828125,0.5302734375,0.494140625,0.43359375,0.375,0.35546875,0.388671875,0.4560546875,0.5302734375,0.60546875,0.6845703125,0.7314453125,0.720703125,0.6591796875,0.583984375,0.5302734375,0.498046875,0.51953125,0.587890625,0.6650390625,0.708984375,0.6962890625,0.634765625,0.5517578125,0.44140625,0.3447265625,0.30859375,0.345703125,0.4228515625,0.5,0.5615234375,0.5849609375,0.568359375,0.53515625,0.5185546875,0.5419921875,0.6044921875,0.666015625,0.6787109375,0.6240234375,0.521484375,0.41796875,0.361328125,0.3642578125,0.39453125,0.462890625,0.5439453125,0.59375,0.58984375,0.5390625,0.46875,0.3994140625,0.3515625,0.3564453125,0.4189453125,0.5146484375,0.595703125,0.634765625,0.6689453125,0.7275390625,0.7900390625,0.826171875,0.8212890625,0.78515625,0.740234375,0.6806640625,0.57421875,0.4384765625,0.3193359375,0.2509765625,0.23828125,0.2587890625,0.2958984375,0.3720703125,0.474609375,0.5712890625,0.6318359375,0.6484375,0.634765625,0.6181640625,0.6123046875,0.6162109375,0.6240234375,0.6279296875,0.62109375,0.6044921875,0.5771484375,0.5185546875,0.44140625,0.375,0.33984375,0.341796875,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.244140625,0.283203125,0.3857421875,0.5244140625,0.6513671875,0.7255859375,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.5263671875,0.4326171875,0.341796875,0.28125,0.2568359375,0.2568359375,0.2587890625,0.2724609375,0.330078125,0.4140625,0.48046875,0.4970703125,0.4609375,0.39453125,0.32421875,0.2734375,0.26953125,0.3203125,0.400390625,0.46875,0.5,0.5048828125,0.4609375,0.3798828125,0.306640625,0.275390625,0.2998046875,0.3642578125,0.44140625,0.529296875,0.599609375,0.6240234375,0.6025390625,0.5615234375,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.474609375,0.4970703125,0.5302734375,0.5576171875,0.56640625,0.5537109375,0.5302734375,0.5087890625,0.5087890625,0.5244140625,0.5380859375,0.5361328125,0.5107421875,0.46875,0.4248046875,0.3916015625,0.3837890625,0.40234375,0.4365234375,0.462890625,0.46875,0.47265625,0.4951171875,0.541015625,0.6044921875,0.6689453125,0.7158203125,0.740234375,0.75390625,0.7421875,0.6982421875,0.634765625,0.57421875,0.537109375,0.5302734375,0.533203125,0.548828125,0.568359375,0.580078125,0.5751953125,0.5556640625,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.453125,0.5546875,0.673828125,0.7646484375,0.7998046875,0.7822265625,0.740234375,0.6826171875,0.591796875,0.4990234375,0.4521484375,0.4697265625,0.53125,0.6044921875,0.677734375,0.7451171875,0.779296875,0.7646484375,0.71484375,0.6630859375,0.634765625,0.6123046875,0.5791015625,0.5380859375,0.501953125,0.4794921875,0.470703125,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.7353515625,0.705078125,0.640625,0.5517578125,0.4638671875,0.3984375,0.3642578125,0.341796875,0.3369140625,0.353515625,0.3798828125,0.4033203125,0.408203125,0.39453125,0.384765625,0.416015625,0.4853515625,0.568359375,0.6318359375,0.65234375,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.6533203125,0.7041015625,0.7294921875,0.708984375,0.650390625,0.58203125,0.5302734375,0.490234375,0.4833984375,0.521484375,0.5966796875,0.6767578125,0.728515625,0.740234375,0.7294921875,0.6767578125,0.5849609375,0.4853515625,0.412109375,0.3837890625,0.39453125,0.419921875,0.458984375,0.4853515625,0.4716796875,0.4140625,0.3349609375,0.2587890625,0.1875,0.134765625,0.134765625,0.201171875,0.3095703125,0.41015625,0.46875,0.513671875,0.544921875,0.5439453125,0.5048828125,0.4443359375,0.3916015625,0.3642578125,0.33984375,0.2978515625,0.2509765625,0.2197265625,0.2158203125,0.2333984375,0.2587890625,0.298828125,0.38671875,0.501953125,0.6015625,0.650390625,0.64453125,0.6044921875,0.55859375,0.5107421875,0.4697265625,0.44140625,0.4248046875,0.4111328125,0.39453125,0.388671875,0.43359375,0.513671875,0.587890625,0.619140625,0.59375,0.5302734375,0.4599609375,0.4013671875,0.3720703125,0.375,0.39453125,0.40625,0.39453125,0.373046875,0.3486328125,0.341796875,0.3662109375,0.4189453125,0.4794921875,0.5302734375,0.57421875,0.6005859375,0.58203125,0.748046875,0.779296875,0.7490234375,0.6787109375,0.6044921875,0.533203125,0.4716796875,0.44140625,0.4521484375,0.4892578125,0.521484375,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.572265625,0.603515625,0.615234375,0.61328125,0.607421875,0.61328125,0.634765625,0.64453125,0.5888671875,0.48046875,0.3671875,0.2998046875,0.3046875,0.3642578125,0.4375,0.509765625,0.560546875,0.57421875,0.5576171875,0.5361328125,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.7109375,0.67578125,0.6513671875,0.6513671875,0.67578125,0.7109375,0.740234375,0.7626953125,0.7646484375,0.728515625,0.6572265625,0.572265625,0.5048828125,0.46875,0.4462890625,0.4443359375,0.48046875,0.5517578125,0.63671875,0.7041015625,0.740234375,0.7568359375,0.732421875,0.662109375,0.5712890625,0.4951171875,0.4609375,0.46875,0.4951171875,0.544921875,0.6044921875,0.6513671875,0.669921875,0.6591796875,0.634765625,0.609375,0.5888671875,0.57421875,0.5654296875,0.55859375,0.546875,0.5302734375,0.50390625,0.4541015625,0.39453125,0.34765625,0.3291015625,0.33984375,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.2802734375,0.3798828125,0.541015625,0.6982421875,0.79296875,0.798828125,0.740234375,0.6640625,0.5849609375,0.5380859375,0.5498046875,0.611328125,0.685546875,0.740234375,0.7861328125,0.8193359375,0.8037109375,0.7236328125,0.599609375,0.478515625,0.39453125,0.3154296875,0.2197265625,0.142578125,0.1181640625,0.1494140625,0.2080078125,0.2587890625,0.302734375,0.3359375,0.3447265625,0.3251953125,0.2919921875,0.265625,0.2587890625,0.259765625,0.2646484375,0.28125,0.30859375,0.3427734375,0.373046875,0.39453125,0.4208984375,0.4697265625,0.5244140625,0.5546875,0.548828125,0.5146484375,0.46875,0.4150390625,0.33984375,0.2783203125,0.267578125,0.314453125,0.3935546875,0.46875,0.54296875,0.6103515625,0.6435546875,0.6240234375,0.5654296875,0.5048828125,0.46875,0.45703125,0.4951171875,0.57421875,0.6513671875,0.6884765625,0.66796875,0.6044921875,0.5224609375,0.416015625,0.3251953125,0.2978515625,0.3408203125,0.421875,0.5,0.5625,0.58984375,0.580078125,0.5546875,0.544921875,0.572265625,0.634765625,0.7021484375,0.736328125,0.7099609375,0.6240234375,0.5126953125,0.4287109375,0.39453125,0.388671875,0.43359375,0.513671875,0.587890625,0.619140625,0.59375,0.5302734375,0.455078125,0.3857421875,0.35546875,0.38671875,0.46484375,0.548828125,0.6044921875,0.6552734375,0.720703125,0.7783203125,0.806640625,0.7978515625,0.7685546875,0.740234375,0.697265625,0.5927734375,0.447265625,0.3115234375,0.232421875,0.22265625,0.2587890625,0.30859375,0.3720703125,0.4443359375,0.5078125,0.5546875,0.583984375,0.6044921875,0.62109375,0.6279296875,0.6240234375,0.6162109375,0.6123046875,0.6181640625,0.634765625,0.6416015625,0.599609375,0.515625,0.4248046875,0.365234375,0.3583984375,0.39453125,0.44140625,0.484375,0.4970703125,0.4609375,0.388671875,0.3125,0.2587890625,0.2255859375,0.2509765625,0.3505859375,0.4970703125,0.6376953125,0.72265625,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.556640625,0.4580078125,0.361328125,0.2919921875,0.26171875,0.2578125,0.2587890625,0.271484375,0.326171875,0.40234375,0.4609375,0.470703125,0.431640625,0.3642578125,0.2998046875,0.275390625,0.306640625,0.3798828125,0.4609375,0.5048828125,0.5,0.46875,0.400390625,0.3203125,0.26953125,0.2734375,0.32421875,0.39453125,0.47265625,0.560546875,0.6240234375,0.6328125,0.5869140625,0.521484375,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.53515625,0.5537109375,0.57421875,0.5771484375,0.5556640625,0.5146484375,0.46875,0.4296875,0.419921875,0.4443359375,0.4912109375,0.533203125,0.5478515625,0.5302734375,0.50390625,0.4853515625,0.48046875,0.4912109375,0.5107421875,0.5263671875,0.5302734375,0.537109375,0.57421875,0.634765625,0.6982421875,0.7421875,0.75390625,0.740234375,0.7158203125,0.6689453125,0.6044921875,0.541015625,0.4951171875,0.47265625,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.40234375,0.482421875,0.5908203125,0.6904296875,0.75,0.7607421875,0.740234375,0.7021484375,0.6279296875,0.546875,0.5,0.5087890625,0.564453125,0.634765625,0.701171875,0.7392578125,0.7314453125,0.685546875,0.6279296875,0.5966796875,0.6044921875,0.62109375,0.6259765625,0.61328125,0.5849609375,0.5546875,0.5341796875,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.73828125,0.72265625,0.6796875,0.607421875,0.521484375,0.4462890625,0.39453125,0.3466796875,0.298828125,0.26953125,0.2734375,0.3037109375,0.33984375,0.3642578125,0.39453125,0.4638671875,0.5546875,0.6298828125,0.6611328125,0.6455078125,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.66015625,0.6748046875,0.662109375,0.619140625,0.556640625,0.501953125,0.46875,0.4501953125,0.4638671875,0.5185546875,0.6015625,0.681640625,0.73046875,0.740234375,0.734375,0.69921875,0.6298828125,0.5380859375,0.451171875,0.3916015625,0.3642578125,0.353515625,0.3681640625,0.39453125,0.4052734375,0.3828125,0.328125,0.2587890625,0.19140625,0.1572265625,0.1845703125,0.275390625,0.3935546875,0.48828125,0.5302734375,0.5498046875,0.5419921875,0.501953125,0.447265625,0.400390625,0.3828125,0.39453125,0.4033203125,0.3740234375,0.3134765625,0.2509765625,0.21484375,0.220703125,0.2587890625,0.3154296875,0.4091796875,0.521484375,0.61328125,0.658203125,0.658203125,0.634765625,0.6005859375,0.537109375,0.4580078125,0.3896484375,0.3515625,0.3486328125,0.3642578125,0.39453125,0.462890625,0.5439453125,0.59375,0.58984375,0.5390625,0.46875,0.39453125,0.318359375,0.267578125,0.26171875,0.294921875,0.337890625,0.3642578125,0.380859375,0.392578125,0.3994140625,0.408203125,0.4228515625,0.443359375,0.46875,0.4931640625,0.5029296875,0.48046875,0.7841796875,0.783203125,0.720703125,0.6298828125,0.55078125,0.4814453125,0.431640625,0.4228515625,0.4580078125,0.515625,0.5595703125,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.6298828125,0.6748046875,0.689453125,0.6728515625,0.640625,0.619140625,0.6220703125,0.6162109375,0.552734375,0.4462890625,0.3466796875,0.2978515625,0.314453125,0.376953125,0.451171875,0.52734375,0.583984375,0.6044921875,0.59375,0.5751953125,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.662109375,0.6484375,0.638671875,0.638671875,0.6484375,0.662109375,0.673828125,0.6796875,0.6630859375,0.6181640625,0.5537109375,0.4892578125,0.4462890625,0.4287109375,0.4228515625,0.439453125,0.484375,0.548828125,0.61328125,0.65625,0.673828125,0.6708984375,0.619140625,0.5283203125,0.4375,0.384765625,0.38671875,0.4287109375,0.484375,0.55078125,0.611328125,0.6455078125,0.6484375,0.634765625,0.6220703125,0.6171875,0.6328125,0.658203125,0.669921875,0.6572265625,0.619140625,0.5703125,0.5146484375,0.4482421875,0.3876953125,0.353515625,0.3505859375,0.3642578125,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.34375,0.427734375,0.55859375,0.6806640625,0.7451171875,0.7353515625,0.673828125,0.5947265625,0.5068359375,0.4482421875,0.4521484375,0.517578125,0.603515625,0.673828125,0.7373046875,0.796875,0.8115234375,0.755859375,0.646484375,0.53125,0.4482421875,0.3662109375,0.263671875,0.177734375,0.1494140625,0.1875,0.2587890625,0.3251953125,0.3857421875,0.4296875,0.44140625,0.416015625,0.3701171875,0.333984375,0.3251953125,0.3212890625,0.306640625,0.2958984375,0.306640625,0.34375,0.3955078125,0.4482421875,0.505859375,0.576171875,0.626953125,0.626953125,0.5732421875,0.49609375,0.4287109375,0.359375,0.2724609375,0.2080078125,0.2041015625,0.2626953125,0.3505859375,0.4287109375,0.5,0.55859375,0.580078125,0.5537109375,0.498046875,0.44921875,0.4287109375,0.431640625,0.48046875,0.5595703125,0.626953125,0.6484375,0.6162109375,0.55078125,0.470703125,0.3701171875,0.2919921875,0.2783203125,0.3330078125,0.4208984375,0.5,0.5625,0.587890625,0.5751953125,0.546875,0.533203125,0.55859375,0.6220703125,0.6943359375,0.755859375,0.767578125,0.712890625,0.611328125,0.51171875,0.4482421875,0.4111328125,0.4306640625,0.501953125,0.5859375,0.6376953125,0.6298828125,0.5703125,0.4912109375,0.4013671875,0.337890625,0.3369140625,0.3974609375,0.482421875,0.55078125,0.615234375,0.6806640625,0.7275390625,0.73828125,0.7177734375,0.689453125,0.673828125,0.646484375,0.5615234375,0.435546875,0.322265625,0.263671875,0.2724609375,0.3251953125,0.3837890625,0.42578125,0.4501953125,0.4619140625,0.4755859375,0.5048828125,0.55078125,0.595703125,0.611328125,0.5986328125,0.57421875,0.5615234375,0.5771484375,0.6220703125,0.6591796875,0.6396484375,0.564453125,0.470703125,0.4052734375,0.3994140625,0.4482421875,0.513671875,0.5791015625,0.6083984375,0.576171875,0.4921875,0.396484375,0.3251953125,0.2744140625,0.271484375,0.337890625,0.455078125,0.5791015625,0.6572265625,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.544921875,0.45703125,0.376953125,0.3291015625,0.31640625,0.322265625,0.3251953125,0.3369140625,0.384765625,0.4501953125,0.494140625,0.4921875,0.4462890625,0.376953125,0.3173828125,0.3095703125,0.361328125,0.4453125,0.5166015625,0.5361328125,0.5,0.4384765625,0.353515625,0.279296875,0.2568359375,0.296875,0.3720703125,0.4482421875,0.525390625,0.611328125,0.666015625,0.6572265625,0.587890625,0.4990234375,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.5751953125,0.59375,0.6083984375,0.5966796875,0.5537109375,0.4921875,0.4287109375,0.3740234375,0.3525390625,0.3798828125,0.4482421875,0.5234375,0.568359375,0.5703125,0.5595703125,0.552734375,0.55078125,0.5546875,0.5625,0.568359375,0.5703125,0.5791015625,0.6220703125,0.6826171875,0.7314453125,0.7451171875,0.720703125,0.673828125,0.6181640625,0.55078125,0.4873046875,0.4443359375,0.427734375,0.427734375,0.4287109375,0.4375,0.4736328125,0.5185546875,0.544921875,0.533203125,0.48828125,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.3955078125,0.4453125,0.521484375,0.599609375,0.6552734375,0.677734375,0.673828125,0.65234375,0.5966796875,0.529296875,0.490234375,0.4990234375,0.5517578125,0.6220703125,0.6826171875,0.697265625,0.65625,0.5859375,0.5263671875,0.513671875,0.55078125,0.6015625,0.640625,0.654296875,0.6376953125,0.6044921875,0.5771484375,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6767578125,0.6845703125,0.6806640625,0.646484375,0.5849609375,0.5126953125,0.4482421875,0.3798828125,0.296875,0.2314453125,0.216796875,0.2568359375,0.3212890625,0.376953125,0.439453125,0.533203125,0.626953125,0.677734375,0.6669921875,0.6142578125,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.62890625,0.619140625,0.5859375,0.53515625,0.482421875,0.4453125,0.4287109375,0.4248046875,0.4462890625,0.4990234375,0.568359375,0.630859375,0.666015625,0.673828125,0.673828125,0.6669921875,0.638671875,0.58203125,0.5068359375,0.43359375,0.376953125,0.3369140625,0.3349609375,0.3671875,0.4052734375,0.4189453125,0.3896484375,0.3251953125,0.259765625,0.2314453125,0.2646484375,0.35546875,0.46484375,0.5439453125,0.5703125,0.5703125,0.533203125,0.4697265625,0.412109375,0.3857421875,0.40234375,0.4482421875,0.486328125,0.47265625,0.4091796875,0.3291015625,0.275390625,0.2763671875,0.3251953125,0.3935546875,0.48046875,0.5654296875,0.6220703125,0.640625,0.6337890625,0.6220703125,0.5986328125,0.5322265625,0.4375,0.35546875,0.318359375,0.33203125,0.376953125,0.4384765625,0.5234375,0.59765625,0.6201171875,0.580078125,0.5048828125,0.4287109375,0.3505859375,0.2626953125,0.2001953125,0.1953125,0.24609375,0.3193359375,0.376953125,0.4267578125,0.4638671875,0.4775390625,0.46484375,0.4404296875,0.4248046875,0.4287109375,0.4384765625,0.439453125,0.42578125,0.7783203125,0.765625,0.689453125,0.58984375,0.509765625,0.4404296875,0.39453125,0.392578125,0.435546875,0.5,0.5478515625,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6279296875,0.6787109375,0.6923828125,0.6650390625,0.615234375,0.5771484375,0.5693359375,0.5576171875,0.5,0.416015625,0.34765625,0.3291015625,0.36328125,0.4296875,0.5029296875,0.5703125,0.61328125,0.6171875,0.591796875,0.56640625,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.578125,0.5634765625,0.533203125,0.4970703125,0.4638671875,0.4443359375,0.439453125,0.44140625,0.4560546875,0.4853515625,0.5224609375,0.5546875,0.57421875,0.5791015625,0.568359375,0.5126953125,0.4306640625,0.3642578125,0.3447265625,0.376953125,0.439453125,0.509765625,0.576171875,0.619140625,0.625,0.6025390625,0.5771484375,0.5693359375,0.5771484375,0.6142578125,0.6630859375,0.689453125,0.67578125,0.6259765625,0.5595703125,0.4892578125,0.4228515625,0.3798828125,0.3740234375,0.396484375,0.421875,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.43359375,0.494140625,0.583984375,0.65625,0.6787109375,0.6455078125,0.5791015625,0.5,0.40625,0.3408203125,0.341796875,0.408203125,0.5009765625,0.5791015625,0.6552734375,0.7373046875,0.783203125,0.7607421875,0.6748046875,0.5712890625,0.4892578125,0.408203125,0.306640625,0.2255859375,0.2080078125,0.2587890625,0.34375,0.419921875,0.48828125,0.5390625,0.5517578125,0.5224609375,0.470703125,0.4296875,0.419921875,0.412109375,0.380859375,0.345703125,0.3349609375,0.36328125,0.421875,0.4892578125,0.564453125,0.6494140625,0.703125,0.6904296875,0.615234375,0.5185546875,0.439453125,0.361328125,0.2685546875,0.2021484375,0.201171875,0.2666015625,0.3603515625,0.439453125,0.509765625,0.5634765625,0.5771484375,0.5478515625,0.494140625,0.451171875,0.439453125,0.44921875,0.4990234375,0.5673828125,0.6171875,0.6201171875,0.5771484375,0.509765625,0.4296875,0.333984375,0.265625,0.2626953125,0.3271484375,0.419921875,0.5,0.560546875,0.580078125,0.5556640625,0.513671875,0.48828125,0.5078125,0.5693359375,0.646484375,0.7294921875,0.775390625,0.7529296875,0.6689453125,0.568359375,0.4892578125,0.4345703125,0.4345703125,0.4912109375,0.5693359375,0.6220703125,0.6181640625,0.5595703125,0.478515625,0.3798828125,0.302734375,0.2900390625,0.345703125,0.4326171875,0.509765625,0.5791015625,0.6396484375,0.669921875,0.6591796875,0.6220703125,0.5888671875,0.5791015625,0.564453125,0.5029296875,0.4150390625,0.34375,0.322265625,0.35546875,0.419921875,0.48046875,0.5029296875,0.484375,0.4501953125,0.4306640625,0.4501953125,0.509765625,0.568359375,0.5849609375,0.560546875,0.5185546875,0.4931640625,0.5107421875,0.5693359375,0.6240234375,0.6240234375,0.56640625,0.486328125,0.4306640625,0.4326171875,0.4892578125,0.5654296875,0.6494140625,0.69921875,0.6806640625,0.599609375,0.4990234375,0.419921875,0.35546875,0.3232421875,0.345703125,0.41796875,0.505859375,0.5654296875,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.49609375,0.42578125,0.37890625,0.3701171875,0.3896484375,0.4130859375,0.419921875,0.4296875,0.47265625,0.5283203125,0.5615234375,0.55078125,0.4990234375,0.4296875,0.37109375,0.3671875,0.419921875,0.498046875,0.5546875,0.5546875,0.5,0.4228515625,0.330078125,0.26171875,0.2578125,0.3193359375,0.41015625,0.4892578125,0.568359375,0.6552734375,0.708984375,0.6953125,0.6181640625,0.5185546875,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.56640625,0.5927734375,0.6181640625,0.6162109375,0.576171875,0.5107421875,0.439453125,0.375,0.3388671875,0.353515625,0.416015625,0.494140625,0.548828125,0.5595703125,0.5576171875,0.556640625,0.556640625,0.556640625,0.55859375,0.55859375,0.5595703125,0.5693359375,0.611328125,0.6669921875,0.701171875,0.6923828125,0.6455078125,0.5791015625,0.509765625,0.4423828125,0.3984375,0.390625,0.41015625,0.43359375,0.439453125,0.44921875,0.490234375,0.5419921875,0.572265625,0.55859375,0.5078125,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.435546875,0.455078125,0.490234375,0.5302734375,0.5615234375,0.5771484375,0.5791015625,0.5673828125,0.5234375,0.4677734375,0.4345703125,0.447265625,0.5,0.5693359375,0.6279296875,0.6337890625,0.58203125,0.5078125,0.453125,0.4541015625,0.509765625,0.5771484375,0.6328125,0.6572265625,0.6416015625,0.6015625,0.5673828125,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5869140625,0.6171875,0.6484375,0.6552734375,0.6220703125,0.5595703125,0.4892578125,0.41015625,0.3125,0.2353515625,0.2197265625,0.271484375,0.3544921875,0.4296875,0.5078125,0.6083984375,0.6904296875,0.712890625,0.6669921875,0.5849609375,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.568359375,0.5546875,0.52734375,0.4931640625,0.462890625,0.4443359375,0.439453125,0.44140625,0.45703125,0.48828125,0.525390625,0.5576171875,0.576171875,0.5791015625,0.5849609375,0.6064453125,0.6240234375,0.6142578125,0.568359375,0.5,0.4296875,0.373046875,0.36328125,0.40234375,0.458984375,0.494140625,0.48046875,0.419921875,0.3525390625,0.31640625,0.3330078125,0.3994140625,0.484375,0.544921875,0.5595703125,0.5498046875,0.5029296875,0.4365234375,0.388671875,0.384765625,0.4248046875,0.4892578125,0.544921875,0.5458984375,0.490234375,0.4130859375,0.359375,0.3623046875,0.419921875,0.4912109375,0.5615234375,0.609375,0.6201171875,0.6005859375,0.5771484375,0.5693359375,0.5546875,0.4970703125,0.4150390625,0.349609375,0.33203125,0.3662109375,0.4296875,0.5068359375,0.599609375,0.66796875,0.671875,0.609375,0.5185546875,0.439453125,0.3603515625,0.2666015625,0.2001953125,0.19921875,0.2626953125,0.353515625,0.4296875,0.49609375,0.546875,0.560546875,0.533203125,0.484375,0.447265625,0.439453125,0.44140625,0.4404296875,0.4375,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.6923828125,0.7080078125,0.654296875,0.568359375,0.4892578125,0.41796875,0.357421875,0.328125,0.33984375,0.3779296875,0.4111328125,0.419921875,0.41015625,0.3720703125,0.3232421875,0.296875,0.3115234375,0.36328125,0.4296875,0.49609375,0.5439453125,0.552734375,0.5205078125,0.4677734375,0.427734375,0.419921875,0.4150390625,0.392578125,0.373046875,0.380859375,0.4267578125,0.49609375,0.5693359375,0.6357421875,0.6728515625,0.6572265625,0.5927734375,0.509765625,0.453125,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.421875,0.4248046875,0.4287109375,0.431640625,0.4326171875,0.431640625,0.4296875,0.4306640625,0.4443359375,0.4716796875,0.505859375,0.5361328125,0.5546875,0.5595703125,0.5576171875,0.5419921875,0.5107421875,0.4736328125,0.44140625,0.4228515625,0.419921875,0.4140625,0.3935546875,0.3779296875,0.3916015625,0.439453125,0.5087890625,0.5791015625,0.642578125,0.673828125,0.65234375,0.58203125,0.4951171875,0.4345703125,0.419921875,0.4287109375,0.4716796875,0.529296875,0.5654296875,0.5576171875,0.5087890625,0.439453125,0.373046875,0.3388671875,0.3583984375,0.42578125,0.509765625,0.5673828125,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5849609375,0.60546875,0.62109375,0.607421875,0.5595703125,0.490234375,0.419921875,0.34375,0.2529296875,0.189453125,0.1904296875,0.2568359375,0.3505859375,0.4296875,0.5107421875,0.6142578125,0.697265625,0.7177734375,0.6689453125,0.5859375,0.509765625,0.4326171875,0.3486328125,0.2978515625,0.3154296875,0.396484375,0.498046875,0.5791015625,0.6494140625,0.7021484375,0.716796875,0.6875,0.6337890625,0.5908203125,0.5791015625,0.56640625,0.515625,0.4482421875,0.400390625,0.3994140625,0.4423828125,0.509765625,0.5888671875,0.6865234375,0.7626953125,0.7763671875,0.7216796875,0.6357421875,0.5595703125,0.4814453125,0.392578125,0.33203125,0.3369140625,0.40625,0.5009765625,0.5791015625,0.6474609375,0.6982421875,0.7119140625,0.681640625,0.6298828125,0.5888671875,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.4296875,0.333984375,0.263671875,0.259765625,0.3212890625,0.412109375,0.4892578125,0.546875,0.5498046875,0.49609375,0.4189453125,0.3642578125,0.3642578125,0.419921875,0.4970703125,0.595703125,0.6748046875,0.693359375,0.6455078125,0.5634765625,0.4892578125,0.4306640625,0.412109375,0.4345703125,0.474609375,0.4970703125,0.478515625,0.419921875,0.345703125,0.265625,0.220703125,0.244140625,0.328125,0.4296875,0.509765625,0.5751953125,0.6142578125,0.6064453125,0.552734375,0.48046875,0.4296875,0.419921875,0.4150390625,0.3916015625,0.369140625,0.375,0.41796875,0.486328125,0.5595703125,0.6181640625,0.625,0.576171875,0.50390625,0.4521484375,0.4541015625,0.509765625,0.564453125,0.5625,0.50390625,0.423828125,0.3681640625,0.37109375,0.4296875,0.4912109375,0.5126953125,0.4921875,0.453125,0.4306640625,0.44921875,0.509765625,0.5888671875,0.689453125,0.7685546875,0.78515625,0.7333984375,0.6474609375,0.5693359375,0.49609375,0.423828125,0.3759765625,0.3662109375,0.38671875,0.412109375,0.419921875,0.431640625,0.4755859375,0.533203125,0.5673828125,0.5576171875,0.5078125,0.439453125,0.375,0.33984375,0.3564453125,0.421875,0.505859375,0.564453125,0.5791015625,0.5908203125,0.6328125,0.685546875,0.7138671875,0.7001953125,0.6474609375,0.5791015625,0.5185546875,0.4990234375,0.51953125,0.5556640625,0.57421875,0.5517578125,0.4892578125,0.41015625,0.3173828125,0.2529296875,0.2548828125,0.32421875,0.419921875,0.5,0.5810546875,0.681640625,0.76171875,0.7783203125,0.724609375,0.6376953125,0.5595703125,0.486328125,0.4189453125,0.376953125,0.375,0.40234375,0.4306640625,0.439453125,0.4541015625,0.513671875,0.5966796875,0.6630859375,0.6796875,0.64453125,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.3740234375,0.337890625,0.3525390625,0.416015625,0.4970703125,0.5546875,0.5693359375,0.5810546875,0.6220703125,0.673828125,0.701171875,0.6845703125,0.6298828125,0.5595703125,0.490234375,0.439453125,0.4296875,0.4638671875,0.5185546875,0.560546875,0.5693359375,0.564453125,0.546875,0.515625,0.4814453125,0.4541015625,0.4404296875,0.439453125,0.431640625,0.3916015625,0.3388671875,0.306640625,0.3154296875,0.36328125,0.4296875,0.48828125,0.5068359375,0.4853515625,0.4482421875,0.427734375,0.44921875,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.453125,0.5029296875,0.5703125,0.615234375,0.6142578125,0.568359375,0.5,0.4208984375,0.333984375,0.28125,0.296875,0.376953125,0.478515625,0.5595703125,0.63671875,0.7216796875,0.7734375,0.755859375,0.6767578125,0.5771484375,0.5,0.423828125,0.333984375,0.271484375,0.2734375,0.33984375,0.431640625,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.4345703125,0.4541015625,0.48828125,0.5263671875,0.55859375,0.576171875,0.5791015625,0.576171875,0.560546875,0.5302734375,0.494140625,0.462890625,0.4443359375,0.439453125,0.451171875,0.5068359375,0.5888671875,0.654296875,0.671875,0.6357421875,0.5693359375,0.509765625,0.4990234375,0.5390625,0.599609375,0.6396484375,0.62890625,0.5693359375,0.49609375,0.427734375,0.384765625,0.37890625,0.4013671875,0.4248046875,0.4296875,0.419921875,0.384765625,0.345703125,0.3330078125,0.3603515625,0.419921875,0.4892578125,0.5498046875,0.5712890625,0.5517578125,0.5166015625,0.4970703125,0.5185546875,0.5791015625,0.6435546875,0.673828125,0.650390625,0.578125,0.490234375,0.431640625,0.419921875,0.4150390625,0.3955078125,0.37890625,0.390625,0.4384765625,0.5078125,0.5791015625,0.6572265625,0.75,0.81640625,0.8173828125,0.751953125,0.6591796875,0.5791015625,0.4990234375,0.40234375,0.3310546875,0.326171875,0.388671875,0.48046875,0.5595703125,0.62890625,0.681640625,0.6943359375,0.6640625,0.611328125,0.5693359375,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.6435546875,0.662109375,0.611328125,0.5263671875,0.4482421875,0.375,0.3076171875,0.267578125,0.265625,0.2919921875,0.318359375,0.3251953125,0.3193359375,0.296875,0.26953125,0.26171875,0.283203125,0.326171875,0.376953125,0.423828125,0.44921875,0.439453125,0.3994140625,0.3525390625,0.32421875,0.3251953125,0.3330078125,0.3349609375,0.3486328125,0.392578125,0.4638671875,0.546875,0.6220703125,0.6865234375,0.7158203125,0.6865234375,0.60546875,0.5087890625,0.443359375,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.3388671875,0.3583984375,0.3798828125,0.3935546875,0.39453125,0.3876953125,0.376953125,0.3701171875,0.3798828125,0.4130859375,0.4638671875,0.5166015625,0.5537109375,0.5703125,0.57421875,0.552734375,0.5,0.4306640625,0.3681640625,0.3330078125,0.3251953125,0.326171875,0.3388671875,0.37890625,0.44921875,0.5361328125,0.615234375,0.673828125,0.7158203125,0.7177734375,0.6572265625,0.5478515625,0.4306640625,0.3505859375,0.3251953125,0.328125,0.375,0.44921875,0.5107421875,0.5283203125,0.4951171875,0.4287109375,0.3662109375,0.349609375,0.3984375,0.498046875,0.6044921875,0.66796875,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.6728515625,0.66015625,0.6201171875,0.5498046875,0.462890625,0.3837890625,0.3251953125,0.267578125,0.1943359375,0.1435546875,0.1484375,0.2109375,0.298828125,0.376953125,0.4599609375,0.5693359375,0.6669921875,0.7080078125,0.6826171875,0.6171875,0.55078125,0.484375,0.4130859375,0.375,0.4033203125,0.4892578125,0.591796875,0.673828125,0.744140625,0.802734375,0.82421875,0.7978515625,0.7431640625,0.693359375,0.673828125,0.65234375,0.59375,0.5185546875,0.46484375,0.45703125,0.4931640625,0.55078125,0.6201171875,0.7021484375,0.763671875,0.7685546875,0.7158203125,0.6376953125,0.5703125,0.50390625,0.4365234375,0.40234375,0.4296875,0.509765625,0.6025390625,0.673828125,0.7333984375,0.7783203125,0.7890625,0.763671875,0.7177734375,0.681640625,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.470703125,0.3701171875,0.2880859375,0.2646484375,0.306640625,0.380859375,0.4482421875,0.498046875,0.498046875,0.4443359375,0.3642578125,0.30078125,0.287109375,0.3251953125,0.384765625,0.466796875,0.5419921875,0.57421875,0.5537109375,0.501953125,0.4482421875,0.40234375,0.3798828125,0.380859375,0.392578125,0.3935546875,0.37109375,0.3251953125,0.2724609375,0.2275390625,0.22265625,0.27734375,0.376953125,0.4794921875,0.55078125,0.6044921875,0.615234375,0.5693359375,0.478515625,0.384765625,0.3291015625,0.3251953125,0.3310546875,0.3271484375,0.330078125,0.3603515625,0.419921875,0.49609375,0.5703125,0.6318359375,0.65234375,0.6240234375,0.5673828125,0.5185546875,0.51171875,0.55078125,0.5869140625,0.5615234375,0.478515625,0.380859375,0.3173828125,0.318359375,0.376953125,0.4423828125,0.48046875,0.4873046875,0.4765625,0.4736328125,0.4970703125,0.55078125,0.6220703125,0.7177734375,0.7978515625,0.8212890625,0.7783203125,0.6982421875,0.6220703125,0.5439453125,0.44921875,0.3623046875,0.3095703125,0.298828125,0.3125,0.3251953125,0.3466796875,0.40234375,0.4736328125,0.5224609375,0.5263671875,0.4873046875,0.4287109375,0.3740234375,0.3525390625,0.3876953125,0.4736328125,0.576171875,0.6494140625,0.673828125,0.6923828125,0.7353515625,0.783203125,0.8046875,0.78515625,0.734375,0.673828125,0.6181640625,0.587890625,0.580078125,0.576171875,0.55859375,0.5146484375,0.4482421875,0.369140625,0.28125,0.2265625,0.240234375,0.318359375,0.4189453125,0.5,0.5810546875,0.68359375,0.765625,0.7841796875,0.7333984375,0.6484375,0.5703125,0.4951171875,0.419921875,0.3671875,0.3564453125,0.3798828125,0.412109375,0.4287109375,0.453125,0.5263671875,0.6279296875,0.71484375,0.75,0.728515625,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.3720703125,0.3447265625,0.369140625,0.44140625,0.5322265625,0.5986328125,0.6220703125,0.640625,0.68359375,0.7275390625,0.7392578125,0.70703125,0.642578125,0.5703125,0.5029296875,0.462890625,0.46875,0.517578125,0.580078125,0.62109375,0.6220703125,0.60546875,0.568359375,0.515625,0.46484375,0.431640625,0.421875,0.4287109375,0.4306640625,0.40234375,0.3544921875,0.3154296875,0.3056640625,0.330078125,0.376953125,0.4228515625,0.4453125,0.447265625,0.4462890625,0.4580078125,0.494140625,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.451171875,0.5087890625,0.580078125,0.6240234375,0.619140625,0.5693359375,0.5,0.421875,0.3359375,0.28515625,0.3037109375,0.3857421875,0.48828125,0.5703125,0.6455078125,0.71875,0.75390625,0.7265625,0.6484375,0.560546875,0.5,0.4423828125,0.3759765625,0.33203125,0.341796875,0.40234375,0.4833984375,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.39453125,0.4375,0.505859375,0.580078125,0.6376953125,0.66796875,0.673828125,0.6689453125,0.6455078125,0.5986328125,0.5380859375,0.482421875,0.4443359375,0.4287109375,0.43359375,0.4912109375,0.5849609375,0.6708984375,0.708984375,0.685546875,0.6220703125,0.5615234375,0.55078125,0.591796875,0.65234375,0.6923828125,0.681640625,0.6220703125,0.5478515625,0.4716796875,0.4111328125,0.3818359375,0.37890625,0.3828125,0.376953125,0.3603515625,0.3251953125,0.2939453125,0.291015625,0.3251953125,0.384765625,0.4482421875,0.50390625,0.541015625,0.556640625,0.564453125,0.580078125,0.6171875,0.673828125,0.7236328125,0.7197265625,0.646484375,0.5234375,0.40234375,0.33203125,0.3251953125,0.3349609375,0.349609375,0.3828125,0.4443359375,0.5263671875,0.607421875,0.673828125,0.7431640625,0.8291015625,0.89453125,0.8984375,0.83984375,0.751953125,0.673828125,0.5908203125,0.484375,0.39453125,0.3671875,0.4111328125,0.4931640625,0.5703125,0.6396484375,0.6923828125,0.705078125,0.6748046875,0.6220703125,0.580078125,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6162109375,0.6240234375,0.5634765625,0.4736328125,0.39453125,0.3212890625,0.2529296875,0.208984375,0.2041015625,0.2265625,0.251953125,0.2587890625,0.2587890625,0.2607421875,0.26953125,0.2900390625,0.31640625,0.3427734375,0.3642578125,0.3759765625,0.3623046875,0.322265625,0.275390625,0.2431640625,0.23828125,0.2587890625,0.283203125,0.306640625,0.341796875,0.3994140625,0.4775390625,0.560546875,0.634765625,0.701171875,0.7333984375,0.708984375,0.6357421875,0.544921875,0.4833984375,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.291015625,0.337890625,0.3857421875,0.4140625,0.4130859375,0.390625,0.3642578125,0.3388671875,0.32421875,0.3369140625,0.3798828125,0.4423828125,0.4970703125,0.5302734375,0.548828125,0.53515625,0.48046875,0.3974609375,0.3173828125,0.2685546875,0.2587890625,0.267578125,0.314453125,0.408203125,0.52734375,0.6376953125,0.7099609375,0.740234375,0.7509765625,0.7216796875,0.6376953125,0.513671875,0.38671875,0.298828125,0.2587890625,0.248046875,0.2958984375,0.3916015625,0.48828125,0.5419921875,0.5302734375,0.46875,0.4091796875,0.4052734375,0.4716796875,0.5849609375,0.6943359375,0.7490234375,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7314453125,0.6845703125,0.5908203125,0.4716796875,0.361328125,0.2890625,0.2587890625,0.2333984375,0.1904296875,0.15625,0.162109375,0.212890625,0.2890625,0.3642578125,0.4453125,0.5537109375,0.654296875,0.70703125,0.6982421875,0.6533203125,0.6044921875,0.5537109375,0.4951171875,0.4638671875,0.48828125,0.5654296875,0.6611328125,0.740234375,0.8134765625,0.880859375,0.9140625,0.89453125,0.8369140625,0.775390625,0.740234375,0.705078125,0.642578125,0.57421875,0.5302734375,0.5283203125,0.5595703125,0.6044921875,0.6533203125,0.7041015625,0.7294921875,0.708984375,0.650390625,0.58203125,0.5302734375,0.484375,0.4501953125,0.455078125,0.5107421875,0.599609375,0.6845703125,0.740234375,0.7841796875,0.8173828125,0.826171875,0.806640625,0.7724609375,0.74609375,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.5234375,0.4189453125,0.3251953125,0.28125,0.2958984375,0.345703125,0.39453125,0.4326171875,0.4384765625,0.40234375,0.33984375,0.279296875,0.25,0.2587890625,0.283203125,0.32421875,0.3720703125,0.408203125,0.4208984375,0.412109375,0.39453125,0.375,0.3564453125,0.3369140625,0.31640625,0.296875,0.2783203125,0.2587890625,0.2421875,0.244140625,0.2841796875,0.3642578125,0.4638671875,0.5498046875,0.6044921875,0.63671875,0.61328125,0.5244140625,0.40234375,0.296875,0.248046875,0.2587890625,0.28125,0.291015625,0.3037109375,0.3330078125,0.3876953125,0.45703125,0.5302734375,0.5986328125,0.6494140625,0.6650390625,0.646484375,0.61328125,0.5947265625,0.6044921875,0.607421875,0.55078125,0.447265625,0.3447265625,0.2900390625,0.302734375,0.3642578125,0.43359375,0.48828125,0.521484375,0.53515625,0.5439453125,0.564453125,0.6044921875,0.6591796875,0.73828125,0.806640625,0.826171875,0.78515625,0.7099609375,0.634765625,0.552734375,0.439453125,0.322265625,0.2421875,0.216796875,0.232421875,0.2587890625,0.2958984375,0.3671875,0.4521484375,0.5166015625,0.53515625,0.51171875,0.46875,0.427734375,0.412109375,0.4443359375,0.5244140625,0.623046875,0.7021484375,0.740234375,0.7724609375,0.8173828125,0.8564453125,0.8642578125,0.8359375,0.7880859375,0.740234375,0.6982421875,0.6640625,0.6328125,0.5908203125,0.5341796875,0.4658203125,0.39453125,0.3173828125,0.2353515625,0.1923828125,0.220703125,0.310546875,0.4169921875,0.5,0.580078125,0.677734375,0.7509765625,0.7587890625,0.69921875,0.609375,0.5302734375,0.455078125,0.3798828125,0.3330078125,0.3369140625,0.380859375,0.4345703125,0.46875,0.5078125,0.5859375,0.685546875,0.7646484375,0.796875,0.78125,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.4248046875,0.396484375,0.40625,0.4580078125,0.533203125,0.599609375,0.634765625,0.66796875,0.716796875,0.7509765625,0.7421875,0.6865234375,0.60546875,0.5302734375,0.4658203125,0.44140625,0.4716796875,0.541015625,0.61328125,0.6484375,0.634765625,0.6015625,0.546875,0.4853515625,0.44140625,0.4287109375,0.443359375,0.46875,0.490234375,0.4853515625,0.4521484375,0.4052734375,0.3662109375,0.3515625,0.3642578125,0.3818359375,0.3984375,0.421875,0.4580078125,0.505859375,0.5576171875,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.505859375,0.5703125,0.6357421875,0.662109375,0.63671875,0.572265625,0.5,0.4208984375,0.330078125,0.2705078125,0.2783203125,0.3515625,0.44921875,0.5302734375,0.6015625,0.6611328125,0.681640625,0.6513671875,0.587890625,0.5283203125,0.5,0.4775390625,0.4501953125,0.435546875,0.4521484375,0.498046875,0.5556640625,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.640625,0.705078125,0.7353515625,0.740234375,0.7373046875,0.7197265625,0.6787109375,0.619140625,0.5537109375,0.5009765625,0.46875,0.45703125,0.5,0.5849609375,0.6708984375,0.7138671875,0.697265625,0.634765625,0.5751953125,0.564453125,0.6044921875,0.6650390625,0.705078125,0.6943359375,0.634765625,0.5625,0.4921875,0.4384765625,0.408203125,0.396484375,0.3857421875,0.3642578125,0.3330078125,0.291015625,0.2587890625,0.2587890625,0.2939453125,0.345703125,0.39453125,0.4404296875,0.4892578125,0.541015625,0.59375,0.6455078125,0.6943359375,0.740234375,0.76953125,0.728515625,0.6103515625,0.4521484375,0.31640625,0.2509765625,0.2587890625,0.2890625,0.3408203125,0.4189453125,0.5166015625,0.6123046875,0.6884765625,0.740234375,0.7939453125,0.869140625,0.9306640625,0.9423828125,0.89453125,0.81640625,0.740234375,0.6552734375,0.5361328125,0.421875,0.3662109375,0.38671875,0.455078125,0.5302734375,0.599609375,0.65234375,0.6650390625,0.634765625,0.5810546875,0.5400390625,0.5302734375,0.5361328125,0.564453125,0.607421875,0.6240234375,0.6162109375,0.5419921875,0.4443359375,0.3642578125,0.2919921875,0.2265625,0.189453125,0.1923828125,0.22265625,0.2509765625,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.3662109375,0.3095703125,0.2421875,0.1953125,0.1875,0.2158203125,0.2587890625,0.30078125,0.3349609375,0.3662109375,0.408203125,0.46484375,0.533203125,0.6044921875,0.6728515625,0.7158203125,0.712890625,0.662109375,0.5927734375,0.5419921875,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3125,0.388671875,0.4609375,0.4970703125,0.484375,0.44140625,0.39453125,0.345703125,0.294921875,0.26953125,0.2900390625,0.3486328125,0.4169921875,0.46875,0.5087890625,0.515625,0.4775390625,0.40234375,0.322265625,0.2705078125,0.2587890625,0.2724609375,0.341796875,0.4638671875,0.5986328125,0.703125,0.7470703125,0.740234375,0.716796875,0.6708984375,0.59375,0.494140625,0.392578125,0.3115234375,0.2587890625,0.2314453125,0.2724609375,0.3779296875,0.4990234375,0.580078125,0.5869140625,0.5302734375,0.4716796875,0.470703125,0.5380859375,0.6435546875,0.7353515625,0.76953125,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7265625,0.6572265625,0.53515625,0.400390625,0.2958984375,0.251953125,0.2587890625,0.2705078125,0.2587890625,0.2392578125,0.2373046875,0.2666015625,0.32421875,0.39453125,0.4736328125,0.5703125,0.6572265625,0.701171875,0.697265625,0.6650390625,0.634765625,0.6015625,0.5537109375,0.5185546875,0.52734375,0.583984375,0.6640625,0.740234375,0.81640625,0.89453125,0.9423828125,0.9306640625,0.869140625,0.7939453125,0.740234375,0.689453125,0.62890625,0.5771484375,0.5576171875,0.572265625,0.60546875,0.634765625,0.66015625,0.6748046875,0.662109375,0.619140625,0.556640625,0.501953125,0.46875,0.4462890625,0.4443359375,0.48046875,0.5517578125,0.63671875,0.7041015625,0.740234375,0.765625,0.78515625,0.7900390625,0.7783203125,0.7587890625,0.744140625,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.5556640625,0.4541015625,0.361328125,0.30859375,0.306640625,0.3349609375,0.3642578125,0.3896484375,0.4072265625,0.4033203125,0.3720703125,0.3251953125,0.283203125,0.2587890625,0.240234375,0.228515625,0.234375,0.26171875,0.302734375,0.3408203125,0.3642578125,0.376953125,0.3671875,0.3330078125,0.2900390625,0.255859375,0.2451171875,0.2587890625,0.2822265625,0.326171875,0.39453125,0.474609375,0.548828125,0.603515625,0.634765625,0.6455078125,0.5927734375,0.48046875,0.3505859375,0.2548828125,0.2275390625,0.2587890625,0.2978515625,0.314453125,0.31640625,0.3232421875,0.349609375,0.400390625,0.46875,0.5458984375,0.62890625,0.693359375,0.71484375,0.6953125,0.6591796875,0.634765625,0.6005859375,0.5166015625,0.4052734375,0.3193359375,0.29296875,0.3271484375,0.39453125,0.4658203125,0.5322265625,0.580078125,0.6015625,0.6064453125,0.61328125,0.634765625,0.669921875,0.7275390625,0.7783203125,0.7900390625,0.75,0.6787109375,0.6044921875,0.5205078125,0.3994140625,0.275390625,0.1953125,0.1796875,0.212890625,0.2587890625,0.3134765625,0.39453125,0.482421875,0.546875,0.568359375,0.5556640625,0.5302734375,0.5029296875,0.482421875,0.4912109375,0.5380859375,0.61328125,0.6875,0.740234375,0.7880859375,0.8359375,0.8642578125,0.8564453125,0.8173828125,0.7724609375,0.740234375,0.7158203125,0.6923828125,0.6572265625,0.599609375,0.521484375,0.4384765625,0.3642578125,0.287109375,0.2099609375,0.1728515625,0.208984375,0.3056640625,0.4169921875,0.5,0.578125,0.6689453125,0.728515625,0.720703125,0.6474609375,0.5498046875,0.46875,0.39453125,0.3232421875,0.2900390625,0.31640625,0.392578125,0.474609375,0.5302734375,0.58203125,0.65625,0.7314453125,0.779296875,0.787109375,0.767578125,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.5,0.462890625,0.44140625,0.453125,0.4970703125,0.5546875,0.6044921875,0.6552734375,0.7138671875,0.7451171875,0.720703125,0.6435546875,0.548828125,0.46875,0.4091796875,0.3994140625,0.4501953125,0.53515625,0.6103515625,0.6357421875,0.6044921875,0.552734375,0.484375,0.4248046875,0.4052734375,0.4306640625,0.4814453125,0.5302734375,0.5732421875,0.6015625,0.59375,0.546875,0.478515625,0.421875,0.39453125,0.3779296875,0.3779296875,0.408203125,0.46875,0.5419921875,0.6005859375,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.5830078125,0.654296875,0.708984375,0.712890625,0.6591796875,0.576171875,0.5,0.4189453125,0.3212890625,0.248046875,0.240234375,0.2998046875,0.3896484375,0.46875,0.537109375,0.58203125,0.587890625,0.5576171875,0.5146484375,0.490234375,0.5,0.517578125,0.5322265625,0.546875,0.5634765625,0.583984375,0.6083984375,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.4462890625,0.521484375,0.607421875,0.6796875,0.72265625,0.73828125,0.740234375,0.7412109375,0.7421875,0.7294921875,0.6923828125,0.6376953125,0.5791015625,0.5302734375,0.4970703125,0.5146484375,0.5771484375,0.646484375,0.68359375,0.666015625,0.6044921875,0.544921875,0.5341796875,0.57421875,0.634765625,0.6748046875,0.6640625,0.6044921875,0.5361328125,0.484375,0.4580078125,0.4521484375,0.4501953125,0.43359375,0.39453125,0.345703125,0.2939453125,0.2587890625,0.2587890625,0.291015625,0.3330078125,0.3642578125,0.39453125,0.4443359375,0.513671875,0.5908203125,0.66015625,0.708984375,0.740234375,0.748046875,0.6826171875,0.546875,0.388671875,0.2705078125,0.2294921875,0.2587890625,0.310546875,0.38671875,0.482421875,0.580078125,0.658203125,0.7099609375,0.740234375,0.775390625,0.8369140625,0.89453125,0.9140625,0.880859375,0.8134765625,0.740234375,0.654296875,0.52734375,0.3994140625,0.328125,0.3349609375,0.3955078125,0.46875,0.5390625,0.591796875,0.6044921875,0.57421875,0.5205078125,0.4794921875,0.46875,0.478515625,0.521484375,0.5849609375,0.662109375,0.6435546875,0.5615234375,0.458984375,0.376953125,0.306640625,0.248046875,0.22265625,0.2392578125,0.28125,0.31640625,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.38671875,0.298828125,0.216796875,0.1796875,0.2021484375,0.26171875,0.3251953125,0.380859375,0.4111328125,0.4189453125,0.4228515625,0.4404296875,0.484375,0.55078125,0.62109375,0.67578125,0.693359375,0.66796875,0.619140625,0.5791015625,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.396484375,0.4921875,0.576171875,0.6083984375,0.5791015625,0.513671875,0.4482421875,0.37890625,0.296875,0.2353515625,0.23046875,0.283203125,0.361328125,0.4287109375,0.486328125,0.5185546875,0.5068359375,0.453125,0.384765625,0.3369140625,0.3251953125,0.3408203125,0.4130859375,0.5283203125,0.6416015625,0.7099609375,0.71484375,0.673828125,0.6240234375,0.580078125,0.5390625,0.4951171875,0.443359375,0.38671875,0.3251953125,0.28125,0.30859375,0.4052734375,0.525390625,0.6123046875,0.6259765625,0.5703125,0.5107421875,0.5068359375,0.5625,0.646484375,0.7109375,0.720703125,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.658203125,0.5859375,0.470703125,0.357421875,0.2890625,0.2841796875,0.3251953125,0.3681640625,0.37890625,0.361328125,0.341796875,0.3447265625,0.3818359375,0.4482421875,0.5234375,0.6025390625,0.662109375,0.6826171875,0.666015625,0.6376953125,0.6220703125,0.6025390625,0.5595703125,0.515625,0.50390625,0.5361328125,0.6005859375,0.673828125,0.751953125,0.83984375,0.8984375,0.89453125,0.8291015625,0.7431640625,0.673828125,0.611328125,0.5537109375,0.5234375,0.53125,0.5673828125,0.6044921875,0.6220703125,0.62890625,0.619140625,0.5859375,0.53515625,0.482421875,0.4453125,0.4287109375,0.4228515625,0.439453125,0.484375,0.548828125,0.61328125,0.65625,0.673828125,0.68359375,0.69140625,0.693359375,0.6884765625,0.6806640625,0.6748046875,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.544921875,0.45703125,0.380859375,0.3427734375,0.34375,0.36328125,0.376953125,0.3935546875,0.423828125,0.4521484375,0.4560546875,0.427734375,0.3779296875,0.3251953125,0.2705078125,0.2099609375,0.173828125,0.1875,0.24609375,0.3193359375,0.376953125,0.4189453125,0.419921875,0.3798828125,0.3232421875,0.283203125,0.2841796875,0.3251953125,0.380859375,0.4482421875,0.515625,0.568359375,0.59765625,0.611328125,0.6220703125,0.6162109375,0.552734375,0.4423828125,0.333984375,0.271484375,0.2744140625,0.3251953125,0.3779296875,0.3935546875,0.3740234375,0.345703125,0.3359375,0.365234375,0.4287109375,0.5107421875,0.6162109375,0.7099609375,0.751953125,0.732421875,0.6767578125,0.6220703125,0.55859375,0.4580078125,0.3564453125,0.3017578125,0.314453125,0.375,0.4482421875,0.5205078125,0.587890625,0.6318359375,0.6435546875,0.630859375,0.6171875,0.6220703125,0.6396484375,0.6806640625,0.720703125,0.7275390625,0.69140625,0.6240234375,0.55078125,0.4677734375,0.3525390625,0.2431640625,0.1875,0.2021484375,0.26171875,0.3251953125,0.392578125,0.47265625,0.546875,0.58984375,0.5966796875,0.5830078125,0.5703125,0.5537109375,0.5234375,0.4990234375,0.50390625,0.546875,0.609375,0.673828125,0.734375,0.78515625,0.8046875,0.783203125,0.7353515625,0.6923828125,0.673828125,0.666015625,0.6640625,0.650390625,0.6064453125,0.53515625,0.4521484375,0.376953125,0.30078125,0.220703125,0.181640625,0.2138671875,0.3076171875,0.4169921875,0.5,0.5771484375,0.6630859375,0.7138671875,0.6953125,0.61328125,0.5107421875,0.4287109375,0.353515625,0.283203125,0.255859375,0.296875,0.3935546875,0.4970703125,0.5703125,0.6337890625,0.697265625,0.7392578125,0.7451171875,0.720703125,0.689453125,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.55078125,0.505859375,0.453125,0.4267578125,0.4423828125,0.490234375,0.55078125,0.6181640625,0.689453125,0.7275390625,0.69921875,0.61328125,0.509765625,0.4287109375,0.37109375,0.369140625,0.4287109375,0.5166015625,0.5859375,0.59765625,0.55078125,0.4833984375,0.4052734375,0.3525390625,0.357421875,0.4189453125,0.5009765625,0.5703125,0.6337890625,0.693359375,0.7158203125,0.6787109375,0.5966796875,0.5087890625,0.4482421875,0.400390625,0.37890625,0.400390625,0.4638671875,0.5419921875,0.6005859375,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.6376953125,0.7158203125,0.7646484375,0.7509765625,0.67578125,0.5791015625,0.5,0.41796875,0.3154296875,0.2333984375,0.21484375,0.265625,0.3505859375,0.4287109375,0.4931640625,0.5244140625,0.515625,0.482421875,0.4541015625,0.4580078125,0.5,0.55078125,0.5966796875,0.6259765625,0.6318359375,0.623046875,0.6162109375,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.6806640625,0.6845703125,0.6767578125,0.673828125,0.6796875,0.7021484375,0.7255859375,0.7236328125,0.689453125,0.6318359375,0.5703125,0.51953125,0.5146484375,0.552734375,0.603515625,0.6318359375,0.61328125,0.55078125,0.4912109375,0.48046875,0.5205078125,0.5810546875,0.6220703125,0.611328125,0.55078125,0.4873046875,0.4580078125,0.4677734375,0.4970703125,0.515625,0.5,0.4482421875,0.384765625,0.3251953125,0.291015625,0.2939453125,0.3251953125,0.3603515625,0.376953125,0.392578125,0.4306640625,0.490234375,0.560546875,0.6201171875,0.658203125,0.673828125,0.6669921875,0.5966796875,0.4755859375,0.3525390625,0.279296875,0.275390625,0.3251953125,0.3916015625,0.47265625,0.5546875,0.6162109375,0.6494140625,0.6640625,0.673828125,0.693359375,0.7431640625,0.7978515625,0.82421875,0.802734375,0.744140625,0.673828125,0.587890625,0.4638671875,0.3427734375,0.2783203125,0.2900390625,0.3544921875,0.4287109375,0.4990234375,0.55078125,0.564453125,0.5341796875,0.48046875,0.439453125,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.7080078125,0.6923828125,0.6123046875,0.5107421875,0.4296875,0.359375,0.3056640625,0.291015625,0.318359375,0.369140625,0.41015625,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.412109375,0.3125,0.232421875,0.212890625,0.26171875,0.34375,0.419921875,0.48046875,0.5,0.4794921875,0.443359375,0.4248046875,0.447265625,0.509765625,0.580078125,0.638671875,0.6630859375,0.646484375,0.603515625,0.568359375,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.4990234375,0.599609375,0.6806640625,0.69921875,0.6494140625,0.5654296875,0.4892578125,0.41015625,0.3125,0.236328125,0.22265625,0.27734375,0.36328125,0.439453125,0.5078125,0.556640625,0.564453125,0.529296875,0.47265625,0.4296875,0.419921875,0.4326171875,0.4921875,0.5791015625,0.6494140625,0.6728515625,0.6416015625,0.5791015625,0.5185546875,0.490234375,0.494140625,0.5107421875,0.5126953125,0.482421875,0.419921875,0.365234375,0.3720703125,0.4443359375,0.541015625,0.6103515625,0.6162109375,0.5595703125,0.5,0.490234375,0.5341796875,0.5986328125,0.6435546875,0.63671875,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.56640625,0.5068359375,0.419921875,0.349609375,0.326171875,0.357421875,0.419921875,0.4775390625,0.4951171875,0.4697265625,0.4287109375,0.40625,0.427734375,0.4892578125,0.5615234375,0.6240234375,0.6572265625,0.6484375,0.6123046875,0.5791015625,0.5693359375,0.5576171875,0.5166015625,0.46484375,0.4375,0.4541015625,0.5087890625,0.5791015625,0.6591796875,0.751953125,0.8173828125,0.81640625,0.75,0.6572265625,0.5791015625,0.5107421875,0.45703125,0.4404296875,0.466796875,0.517578125,0.55859375,0.5693359375,0.568359375,0.5546875,0.52734375,0.4931640625,0.462890625,0.4443359375,0.439453125,0.44140625,0.4560546875,0.4853515625,0.5224609375,0.5546875,0.57421875,0.5791015625,0.5810546875,0.58203125,0.58203125,0.58203125,0.580078125,0.5791015625,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.49609375,0.42578125,0.3798828125,0.373046875,0.3955078125,0.421875,0.4296875,0.4404296875,0.48046875,0.529296875,0.5546875,0.5390625,0.486328125,0.419921875,0.34375,0.255859375,0.1943359375,0.1962890625,0.2626953125,0.353515625,0.4296875,0.486328125,0.4951171875,0.455078125,0.39453125,0.353515625,0.36328125,0.419921875,0.4892578125,0.556640625,0.6015625,0.611328125,0.59375,0.5732421875,0.5693359375,0.5576171875,0.5,0.4150390625,0.3447265625,0.3232421875,0.35546875,0.419921875,0.478515625,0.490234375,0.4541015625,0.3994140625,0.365234375,0.37890625,0.439453125,0.5224609375,0.6298828125,0.72265625,0.755859375,0.71875,0.642578125,0.5693359375,0.4912109375,0.3896484375,0.3056640625,0.283203125,0.330078125,0.412109375,0.4892578125,0.560546875,0.6220703125,0.65234375,0.6416015625,0.6064453125,0.576171875,0.5693359375,0.5791015625,0.615234375,0.6552734375,0.6689453125,0.6416015625,0.5810546875,0.509765625,0.427734375,0.32421875,0.23828125,0.2158203125,0.26171875,0.34375,0.419921875,0.4912109375,0.560546875,0.60546875,0.6142578125,0.5927734375,0.5673828125,0.5595703125,0.548828125,0.5087890625,0.4609375,0.4375,0.4560546875,0.5107421875,0.5791015625,0.6474609375,0.7001953125,0.7138671875,0.685546875,0.6328125,0.5908203125,0.5791015625,0.583984375,0.6064453125,0.6259765625,0.6181640625,0.572265625,0.5029296875,0.4296875,0.3515625,0.265625,0.21484375,0.2333984375,0.3154296875,0.41796875,0.5,0.578125,0.6650390625,0.7177734375,0.7021484375,0.6220703125,0.5205078125,0.439453125,0.36328125,0.2841796875,0.2451171875,0.2783203125,0.37109375,0.478515625,0.5595703125,0.6279296875,0.6826171875,0.701171875,0.677734375,0.6298828125,0.58984375,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.546875,0.4990234375,0.435546875,0.392578125,0.396484375,0.4423828125,0.509765625,0.5859375,0.669921875,0.7216796875,0.703125,0.6220703125,0.5205078125,0.439453125,0.380859375,0.3779296875,0.4326171875,0.5107421875,0.5673828125,0.56640625,0.509765625,0.4326171875,0.3466796875,0.29296875,0.3056640625,0.3818359375,0.48046875,0.5595703125,0.6357421875,0.7177734375,0.7666015625,0.7470703125,0.6669921875,0.5673828125,0.4892578125,0.4248046875,0.3837890625,0.3876953125,0.4365234375,0.505859375,0.556640625,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6357421875,0.7216796875,0.7744140625,0.759765625,0.6806640625,0.580078125,0.5,0.41796875,0.3173828125,0.2373046875,0.220703125,0.2744140625,0.361328125,0.439453125,0.5009765625,0.521484375,0.4970703125,0.453125,0.42578125,0.44140625,0.5,0.5673828125,0.625,0.65234375,0.640625,0.60546875,0.5751953125,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.6484375,0.6171875,0.5869140625,0.5791015625,0.5888671875,0.626953125,0.6748046875,0.69921875,0.681640625,0.6279296875,0.5595703125,0.5,0.484375,0.513671875,0.560546875,0.5888671875,0.5703125,0.509765625,0.44921875,0.439453125,0.4794921875,0.5400390625,0.580078125,0.5693359375,0.509765625,0.44921875,0.4345703125,0.4697265625,0.5244140625,0.560546875,0.5478515625,0.4892578125,0.419921875,0.3603515625,0.3330078125,0.345703125,0.384765625,0.419921875,0.4296875,0.4345703125,0.453125,0.4853515625,0.5234375,0.5556640625,0.57421875,0.5791015625,0.5673828125,0.5087890625,0.4208984375,0.3486328125,0.3251953125,0.35546875,0.419921875,0.4912109375,0.560546875,0.6083984375,0.6201171875,0.603515625,0.583984375,0.5791015625,0.5908203125,0.6337890625,0.6875,0.716796875,0.7021484375,0.6494140625,0.5791015625,0.49609375,0.384765625,0.287109375,0.25,0.2861328125,0.36328125,0.439453125,0.509765625,0.5615234375,0.5751953125,0.544921875,0.4912109375,0.44921875,0.439453125,0.451171875,0.5,0.568359375,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.748046875,0.76953125,0.7236328125,0.6435546875,0.5693359375,0.5029296875,0.4521484375,0.4384765625,0.4658203125,0.5146484375,0.5517578125,0.5595703125,0.5654296875,0.595703125,0.630859375,0.6416015625,0.615234375,0.5576171875,0.4892578125,0.4150390625,0.3349609375,0.2890625,0.310546875,0.3916015625,0.4912109375,0.5693359375,0.625,0.626953125,0.57421875,0.4990234375,0.4482421875,0.4521484375,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4326171875,0.408203125,0.3857421875,0.392578125,0.4365234375,0.505859375,0.5791015625,0.6572265625,0.7421875,0.7919921875,0.7724609375,0.6904296875,0.5888671875,0.509765625,0.4326171875,0.3466796875,0.2939453125,0.3095703125,0.3876953125,0.48828125,0.5693359375,0.638671875,0.6884765625,0.6982421875,0.6650390625,0.609375,0.568359375,0.5595703125,0.5673828125,0.5908203125,0.611328125,0.6025390625,0.5576171875,0.490234375,0.419921875,0.3662109375,0.3740234375,0.4443359375,0.5400390625,0.609375,0.6142578125,0.5595703125,0.4970703125,0.46875,0.4755859375,0.498046875,0.505859375,0.4794921875,0.419921875,0.36328125,0.353515625,0.39453125,0.455078125,0.4951171875,0.486328125,0.4296875,0.3623046875,0.310546875,0.294921875,0.3203125,0.369140625,0.4091796875,0.419921875,0.4150390625,0.392578125,0.3720703125,0.3779296875,0.4208984375,0.48828125,0.5595703125,0.6162109375,0.6201171875,0.568359375,0.4951171875,0.4453125,0.4501953125,0.509765625,0.5771484375,0.62109375,0.619140625,0.5703125,0.501953125,0.451171875,0.439453125,0.4296875,0.38671875,0.330078125,0.294921875,0.3037109375,0.3525390625,0.419921875,0.498046875,0.5927734375,0.662109375,0.6669921875,0.6064453125,0.517578125,0.439453125,0.37109375,0.318359375,0.302734375,0.3271484375,0.375,0.412109375,0.419921875,0.4208984375,0.435546875,0.4658203125,0.501953125,0.53515625,0.5546875,0.5595703125,0.55859375,0.544921875,0.517578125,0.4833984375,0.4521484375,0.4345703125,0.4296875,0.427734375,0.4267578125,0.427734375,0.4306640625,0.4345703125,0.4375,0.439453125,0.4501953125,0.490234375,0.5380859375,0.5615234375,0.54296875,0.48828125,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.4921875,0.3994140625,0.3310546875,0.3271484375,0.3896484375,0.48046875,0.5595703125,0.619140625,0.630859375,0.591796875,0.5322265625,0.4912109375,0.5009765625,0.5595703125,0.625,0.6611328125,0.646484375,0.5830078125,0.501953125,0.4443359375,0.4296875,0.421875,0.3974609375,0.3779296875,0.38671875,0.431640625,0.4990234375,0.5693359375,0.6259765625,0.63671875,0.599609375,0.5439453125,0.5078125,0.5205078125,0.5791015625,0.654296875,0.728515625,0.7626953125,0.7255859375,0.6298828125,0.5205078125,0.439453125,0.36328125,0.2802734375,0.23046875,0.2490234375,0.3291015625,0.4296875,0.509765625,0.5751953125,0.6142578125,0.6064453125,0.552734375,0.48046875,0.4296875,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.4111328125,0.326171875,0.2744140625,0.29296875,0.375,0.4775390625,0.5595703125,0.626953125,0.6650390625,0.6533203125,0.591796875,0.51171875,0.4541015625,0.439453125,0.427734375,0.3837890625,0.328125,0.2958984375,0.3076171875,0.3603515625,0.4296875,0.4990234375,0.55078125,0.5615234375,0.5283203125,0.47265625,0.4296875,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.5,0.3994140625,0.3173828125,0.296875,0.34375,0.4248046875,0.5,0.5771484375,0.677734375,0.759765625,0.779296875,0.73046875,0.646484375,0.5693359375,0.486328125,0.375,0.27734375,0.240234375,0.2763671875,0.353515625,0.4296875,0.5,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.423828125,0.4423828125,0.478515625,0.5205078125,0.556640625,0.5751953125,0.5791015625,0.576171875,0.55859375,0.5283203125,0.4912109375,0.4599609375,0.443359375,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5888671875,0.6904296875,0.7724609375,0.7919921875,0.7421875,0.6572265625,0.5791015625,0.517578125,0.4951171875,0.5146484375,0.552734375,0.576171875,0.5576171875,0.5,0.421875,0.3212890625,0.23828125,0.216796875,0.2626953125,0.34375,0.419921875,0.4990234375,0.5986328125,0.677734375,0.6953125,0.646484375,0.564453125,0.4892578125,0.421875,0.36328125,0.3359375,0.3486328125,0.38671875,0.419921875,0.4296875,0.431640625,0.43359375,0.4365234375,0.4384765625,0.439453125,0.439453125,0.439453125,0.4296875,0.38671875,0.3310546875,0.2978515625,0.30859375,0.3603515625,0.4296875,0.5107421875,0.611328125,0.69140625,0.7080078125,0.6572265625,0.57421875,0.5,0.4248046875,0.3427734375,0.2919921875,0.3076171875,0.384765625,0.4814453125,0.5595703125,0.6142578125,0.6162109375,0.5625,0.486328125,0.4326171875,0.4345703125,0.4892578125,0.5546875,0.5986328125,0.6005859375,0.55859375,0.49609375,0.4501953125,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.44140625,0.482421875,0.5341796875,0.5615234375,0.544921875,0.490234375,0.419921875,0.3623046875,0.361328125,0.419921875,0.50390625,0.564453125,0.5654296875,0.509765625,0.451171875,0.44140625,0.482421875,0.5419921875,0.5810546875,0.5693359375,0.509765625,0.44921875,0.4375,0.4765625,0.537109375,0.5771484375,0.5673828125,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.4296875,0.47265625,0.5283203125,0.5615234375,0.55078125,0.4990234375,0.4296875,0.353515625,0.27734375,0.2421875,0.27734375,0.3720703125,0.4794921875,0.5595703125,0.6259765625,0.6748046875,0.685546875,0.65625,0.60546875,0.5673828125,0.5595703125,0.5693359375,0.603515625,0.6416015625,0.6826171875,0.728515625,0.7197265625,0.673828125,0.6220703125,0.572265625,0.53515625,0.521484375,0.5341796875,0.55859375,0.57421875,0.5703125,0.564453125,0.5712890625,0.580078125,0.57421875,0.544921875,0.4990234375,0.4482421875,0.3955078125,0.349609375,0.3408203125,0.38671875,0.47265625,0.560546875,0.6220703125,0.6611328125,0.654296875,0.6025390625,0.5361328125,0.4931640625,0.5,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4248046875,0.4130859375,0.4140625,0.4482421875,0.515625,0.59765625,0.673828125,0.7490234375,0.822265625,0.853515625,0.8173828125,0.724609375,0.6240234375,0.55078125,0.4833984375,0.4052734375,0.3564453125,0.3701171875,0.4453125,0.5419921875,0.6220703125,0.6884765625,0.728515625,0.72265625,0.6748046875,0.611328125,0.5712890625,0.5703125,0.5810546875,0.5888671875,0.57421875,0.52734375,0.455078125,0.3828125,0.3251953125,0.2900390625,0.318359375,0.4091796875,0.521484375,0.6025390625,0.6171875,0.5703125,0.51171875,0.466796875,0.4384765625,0.421875,0.4033203125,0.3720703125,0.3251953125,0.2841796875,0.283203125,0.3232421875,0.3798828125,0.419921875,0.4189453125,0.376953125,0.3251953125,0.275390625,0.2470703125,0.25,0.2783203125,0.3095703125,0.3251953125,0.3330078125,0.3349609375,0.345703125,0.3798828125,0.4375,0.505859375,0.5703125,0.619140625,0.6201171875,0.57421875,0.5126953125,0.4755859375,0.490234375,0.55078125,0.6181640625,0.6552734375,0.6416015625,0.5791015625,0.498046875,0.44140625,0.4287109375,0.41796875,0.3701171875,0.30078125,0.248046875,0.236328125,0.2685546875,0.3251953125,0.396484375,0.4892578125,0.5693359375,0.5966796875,0.5625,0.4951171875,0.4287109375,0.3681640625,0.3173828125,0.2900390625,0.29296875,0.314453125,0.330078125,0.3251953125,0.3193359375,0.3359375,0.380859375,0.4453125,0.509765625,0.552734375,0.5703125,0.5771484375,0.5673828125,0.5341796875,0.4833984375,0.4306640625,0.3935546875,0.376953125,0.3671875,0.359375,0.361328125,0.375,0.396484375,0.416015625,0.4287109375,0.4453125,0.4755859375,0.5,0.4951171875,0.4521484375,0.3896484375,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.560546875,0.4755859375,0.4013671875,0.37890625,0.4189453125,0.494140625,0.5703125,0.630859375,0.6484375,0.615234375,0.5595703125,0.517578125,0.5205078125,0.5703125,0.626953125,0.654296875,0.6298828125,0.5576171875,0.466796875,0.400390625,0.376953125,0.3662109375,0.3583984375,0.373046875,0.419921875,0.4921875,0.5654296875,0.6220703125,0.6640625,0.671875,0.6474609375,0.61328125,0.59765625,0.619140625,0.673828125,0.736328125,0.787109375,0.7890625,0.724609375,0.61328125,0.5029296875,0.4287109375,0.36328125,0.2978515625,0.2685546875,0.30078125,0.384765625,0.48046875,0.55078125,0.6044921875,0.615234375,0.5693359375,0.478515625,0.384765625,0.3291015625,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.37109375,0.2919921875,0.251953125,0.2841796875,0.37890625,0.4873046875,0.5703125,0.6376953125,0.6796875,0.6689453125,0.60546875,0.5185546875,0.4521484375,0.4287109375,0.408203125,0.3525390625,0.28515625,0.24609375,0.2548828125,0.3076171875,0.376953125,0.4462890625,0.4921875,0.494140625,0.4501953125,0.384765625,0.3369140625,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.6025390625,0.5068359375,0.4189453125,0.376953125,0.3935546875,0.4453125,0.5,0.5615234375,0.6552734375,0.74609375,0.787109375,0.7626953125,0.6953125,0.6220703125,0.5361328125,0.412109375,0.291015625,0.2265625,0.2392578125,0.3037109375,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.333984375,0.3759765625,0.453125,0.5458984375,0.623046875,0.6650390625,0.673828125,0.66796875,0.6376953125,0.5830078125,0.5185546875,0.46484375,0.4345703125,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.6240234375,0.724609375,0.8173828125,0.853515625,0.822265625,0.7490234375,0.673828125,0.6064453125,0.5625,0.548828125,0.5546875,0.5595703125,0.54296875,0.5,0.4375,0.34375,0.2490234375,0.19921875,0.2099609375,0.2626953125,0.3251953125,0.3955078125,0.484375,0.5615234375,0.5888671875,0.5615234375,0.5029296875,0.4482421875,0.3955078125,0.34375,0.310546875,0.30859375,0.3330078125,0.361328125,0.376953125,0.388671875,0.40234375,0.416015625,0.4248046875,0.4287109375,0.4296875,0.4287109375,0.41796875,0.3701171875,0.3046875,0.2607421875,0.2626953125,0.30859375,0.376953125,0.45703125,0.5537109375,0.6328125,0.65625,0.6201171875,0.556640625,0.5,0.4443359375,0.3857421875,0.3544921875,0.373046875,0.4365234375,0.51171875,0.5703125,0.609375,0.6025390625,0.546875,0.4716796875,0.4150390625,0.408203125,0.4482421875,0.4970703125,0.5322265625,0.537109375,0.5107421875,0.46875,0.4365234375,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.396484375,0.439453125,0.4833984375,0.4951171875,0.462890625,0.3984375,0.3251953125,0.26953125,0.2802734375,0.36328125,0.478515625,0.5712890625,0.595703125,0.55078125,0.501953125,0.498046875,0.5400390625,0.5966796875,0.62890625,0.6123046875,0.55078125,0.490234375,0.4736328125,0.505859375,0.5615234375,0.6044921875,0.6005859375,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.3369140625,0.384765625,0.4501953125,0.494140625,0.4921875,0.4462890625,0.376953125,0.3046875,0.24609375,0.23828125,0.2978515625,0.4033203125,0.505859375,0.5703125,0.6181640625,0.6494140625,0.6513671875,0.625,0.5888671875,0.5673828125,0.5703125,0.5869140625,0.6220703125,0.6494140625,0.546875,0.6103515625,0.646484375,0.650390625,0.634765625,0.6181640625,0.6064453125,0.599609375,0.5908203125,0.576171875,0.5556640625,0.5302734375,0.50390625,0.478515625,0.4580078125,0.44140625,0.427734375,0.412109375,0.39453125,0.37890625,0.3828125,0.4189453125,0.482421875,0.5546875,0.6083984375,0.634765625,0.646484375,0.6298828125,0.5927734375,0.5576171875,0.5458984375,0.5634765625,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4658203125,0.45703125,0.4638671875,0.5048828125,0.5791015625,0.6640625,0.740234375,0.8134765625,0.875,0.892578125,0.8447265625,0.7529296875,0.662109375,0.6044921875,0.55078125,0.48046875,0.4248046875,0.421875,0.4755859375,0.55859375,0.634765625,0.6982421875,0.72265625,0.693359375,0.6240234375,0.5517578125,0.5166015625,0.5302734375,0.5517578125,0.548828125,0.5078125,0.4326171875,0.349609375,0.287109375,0.2587890625,0.2529296875,0.298828125,0.3896484375,0.48828125,0.5546875,0.5654296875,0.5302734375,0.482421875,0.4267578125,0.3720703125,0.328125,0.2978515625,0.27734375,0.2587890625,0.2451171875,0.255859375,0.2900390625,0.3330078125,0.3671875,0.376953125,0.3642578125,0.33984375,0.2978515625,0.2509765625,0.2197265625,0.2158203125,0.2333984375,0.2587890625,0.2841796875,0.310546875,0.341796875,0.3828125,0.4326171875,0.4833984375,0.5302734375,0.5654296875,0.56640625,0.5380859375,0.5078125,0.50390625,0.5390625,0.6044921875,0.6708984375,0.70703125,0.6904296875,0.6240234375,0.5400390625,0.482421875,0.46875,0.4580078125,0.40625,0.3251953125,0.2509765625,0.2119140625,0.2197265625,0.2587890625,0.314453125,0.3994140625,0.48828125,0.5439453125,0.548828125,0.5146484375,0.46875,0.423828125,0.380859375,0.3447265625,0.3193359375,0.3017578125,0.283203125,0.2587890625,0.236328125,0.234375,0.2705078125,0.341796875,0.4267578125,0.494140625,0.5302734375,0.5556640625,0.5703125,0.5576171875,0.513671875,0.4521484375,0.3974609375,0.3642578125,0.3369140625,0.3154296875,0.314453125,0.341796875,0.3896484375,0.4375,0.46875,0.49609375,0.5166015625,0.5078125,0.4609375,0.3857421875,0.3115234375,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.6044921875,0.5361328125,0.455078125,0.4052734375,0.4091796875,0.4599609375,0.5302734375,0.59375,0.619140625,0.5986328125,0.5498046875,0.50390625,0.49609375,0.5302734375,0.57421875,0.6025390625,0.5927734375,0.541015625,0.4658203125,0.3994140625,0.3642578125,0.341796875,0.3447265625,0.3857421875,0.4609375,0.544921875,0.6064453125,0.634765625,0.6494140625,0.6494140625,0.642578125,0.6435546875,0.6611328125,0.6962890625,0.740234375,0.7841796875,0.810546875,0.7919921875,0.720703125,0.6181640625,0.525390625,0.46875,0.421875,0.37890625,0.3671875,0.40234375,0.4755859375,0.55078125,0.6044921875,0.63671875,0.61328125,0.5244140625,0.40234375,0.296875,0.248046875,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.3173828125,0.240234375,0.2041015625,0.2392578125,0.3359375,0.447265625,0.5302734375,0.6015625,0.662109375,0.681640625,0.646484375,0.57421875,0.505859375,0.46875,0.4306640625,0.357421875,0.275390625,0.228515625,0.23828125,0.29296875,0.3642578125,0.431640625,0.470703125,0.4609375,0.40234375,0.326171875,0.271484375,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.6875,0.6142578125,0.5380859375,0.4853515625,0.4697265625,0.48046875,0.5,0.53125,0.603515625,0.6904296875,0.748046875,0.7509765625,0.7041015625,0.634765625,0.548828125,0.421875,0.294921875,0.2236328125,0.2294921875,0.291015625,0.3642578125,0.4345703125,0.490234375,0.4990234375,0.4521484375,0.37109375,0.296875,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.2705078125,0.328125,0.435546875,0.5634765625,0.6708984375,0.728515625,0.740234375,0.7333984375,0.701171875,0.640625,0.568359375,0.5087890625,0.4755859375,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.662109375,0.7529296875,0.8447265625,0.892578125,0.875,0.8134765625,0.740234375,0.6669921875,0.5966796875,0.5439453125,0.5185546875,0.5146484375,0.513671875,0.5,0.46875,0.3994140625,0.30859375,0.234375,0.203125,0.2177734375,0.2587890625,0.30859375,0.369140625,0.421875,0.447265625,0.439453125,0.416015625,0.39453125,0.3720703125,0.3388671875,0.30859375,0.2978515625,0.3095703125,0.3369140625,0.3642578125,0.392578125,0.423828125,0.4521484375,0.46875,0.47265625,0.470703125,0.46875,0.45703125,0.40234375,0.3251953125,0.267578125,0.2568359375,0.296875,0.3642578125,0.439453125,0.51953125,0.5771484375,0.5908203125,0.5634765625,0.5244140625,0.5,0.4794921875,0.4580078125,0.447265625,0.455078125,0.4794921875,0.5078125,0.5302734375,0.54296875,0.529296875,0.48828125,0.4365234375,0.3955078125,0.3818359375,0.39453125,0.4150390625,0.4375,0.4580078125,0.4697265625,0.4716796875,0.4697265625,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.3974609375,0.4453125,0.48046875,0.4716796875,0.4150390625,0.3349609375,0.2587890625,0.203125,0.2197265625,0.3173828125,0.4580078125,0.580078125,0.630859375,0.6044921875,0.5703125,0.5791015625,0.6240234375,0.673828125,0.6943359375,0.66796875,0.6044921875,0.541015625,0.5146484375,0.53515625,0.5849609375,0.6298828125,0.638671875,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.271484375,0.326171875,0.40234375,0.4609375,0.470703125,0.431640625,0.3642578125,0.2958984375,0.251953125,0.26171875,0.328125,0.421875,0.498046875,0.5302734375,0.544921875,0.54296875,0.52734375,0.5078125,0.4990234375,0.5068359375,0.5302734375,0.5625,0.6064453125,0.634765625,0.388671875,0.4521484375,0.5234375,0.578125,0.6044921875,0.6259765625,0.650390625,0.6572265625,0.6328125,0.580078125,0.51953125,0.46875,0.419921875,0.36328125,0.3173828125,0.30078125,0.314453125,0.341796875,0.3642578125,0.390625,0.4443359375,0.5166015625,0.580078125,0.6162109375,0.6201171875,0.6044921875,0.5830078125,0.5576171875,0.541015625,0.5458984375,0.572265625,0.6064453125,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5244140625,0.5087890625,0.501953125,0.52734375,0.587890625,0.6650390625,0.740234375,0.8115234375,0.8662109375,0.8759765625,0.828125,0.7470703125,0.6728515625,0.634765625,0.5986328125,0.5341796875,0.46875,0.44140625,0.4677734375,0.5322265625,0.6044921875,0.6650390625,0.6748046875,0.6240234375,0.5380859375,0.462890625,0.4384765625,0.46875,0.505859375,0.501953125,0.44921875,0.3671875,0.2900390625,0.251953125,0.2587890625,0.2861328125,0.3408203125,0.4111328125,0.4697265625,0.4970703125,0.4921875,0.46875,0.435546875,0.3798828125,0.314453125,0.26171875,0.23828125,0.2421875,0.2587890625,0.2783203125,0.296875,0.31640625,0.3369140625,0.3564453125,0.375,0.39453125,0.4033203125,0.3740234375,0.3134765625,0.2509765625,0.21484375,0.220703125,0.2587890625,0.3046875,0.34765625,0.3828125,0.408203125,0.4267578125,0.4453125,0.46875,0.48828125,0.486328125,0.474609375,0.4775390625,0.5078125,0.5654296875,0.634765625,0.7021484375,0.7421875,0.7314453125,0.673828125,0.5966796875,0.5419921875,0.5302734375,0.51953125,0.4716796875,0.3916015625,0.30859375,0.2529296875,0.2392578125,0.2587890625,0.294921875,0.3623046875,0.447265625,0.5185546875,0.5546875,0.552734375,0.5302734375,0.50390625,0.478515625,0.447265625,0.4052734375,0.3564453125,0.3056640625,0.2587890625,0.2138671875,0.1796875,0.1845703125,0.240234375,0.3291015625,0.4140625,0.46875,0.517578125,0.568359375,0.59375,0.57421875,0.5146484375,0.4462890625,0.39453125,0.3466796875,0.3037109375,0.2919921875,0.328125,0.400390625,0.4765625,0.5302734375,0.5712890625,0.5869140625,0.5546875,0.474609375,0.3759765625,0.296875,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.6103515625,0.5654296875,0.4853515625,0.4111328125,0.3798828125,0.4052734375,0.46875,0.53515625,0.572265625,0.56640625,0.5244140625,0.4755859375,0.453125,0.46875,0.4990234375,0.5361328125,0.5576171875,0.5458984375,0.501953125,0.4443359375,0.39453125,0.357421875,0.361328125,0.4140625,0.4970703125,0.57421875,0.6123046875,0.6044921875,0.5859375,0.5732421875,0.580078125,0.6123046875,0.662109375,0.708984375,0.740234375,0.7646484375,0.7734375,0.7509765625,0.6953125,0.6240234375,0.564453125,0.5302734375,0.5029296875,0.4814453125,0.48046875,0.5078125,0.5556640625,0.603515625,0.634765625,0.6455078125,0.5927734375,0.48046875,0.3505859375,0.2548828125,0.2275390625,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.287109375,0.205078125,0.162109375,0.189453125,0.2802734375,0.38671875,0.46875,0.546875,0.6328125,0.693359375,0.6982421875,0.650390625,0.58203125,0.5302734375,0.47265625,0.380859375,0.2890625,0.2421875,0.2587890625,0.3212890625,0.39453125,0.4609375,0.4970703125,0.48046875,0.4140625,0.330078125,0.2724609375,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.7119140625,0.673828125,0.6298828125,0.5849609375,0.5478515625,0.51953125,0.5,0.4931640625,0.5341796875,0.607421875,0.673828125,0.6982421875,0.6689453125,0.6044921875,0.51953125,0.400390625,0.287109375,0.2314453125,0.2509765625,0.3193359375,0.39453125,0.4677734375,0.529296875,0.546875,0.5,0.4072265625,0.31640625,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.2705078125,0.328125,0.435546875,0.5634765625,0.6708984375,0.728515625,0.740234375,0.7353515625,0.7099609375,0.6630859375,0.607421875,0.560546875,0.53515625,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6728515625,0.7470703125,0.828125,0.8759765625,0.8662109375,0.8115234375,0.740234375,0.662109375,0.5693359375,0.48828125,0.447265625,0.4501953125,0.4765625,0.5,0.5087890625,0.4775390625,0.408203125,0.3251953125,0.2626953125,0.2412109375,0.2587890625,0.2841796875,0.3056640625,0.3193359375,0.328125,0.3359375,0.3466796875,0.3642578125,0.376953125,0.3681640625,0.3447265625,0.3251953125,0.326171875,0.3525390625,0.39453125,0.44140625,0.4912109375,0.5302734375,0.546875,0.54296875,0.533203125,0.5302734375,0.5166015625,0.458984375,0.375,0.30859375,0.2919921875,0.328125,0.39453125,0.4638671875,0.5185546875,0.541015625,0.5302734375,0.50390625,0.48828125,0.5,0.51953125,0.541015625,0.5517578125,0.5439453125,0.51953125,0.4912109375,0.46875,0.451171875,0.435546875,0.4228515625,0.4111328125,0.3974609375,0.3818359375,0.3642578125,0.349609375,0.35546875,0.3896484375,0.44140625,0.4921875,0.5234375,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.4453125,0.50390625,0.53515625,0.5107421875,0.43359375,0.337890625,0.2587890625,0.201171875,0.2099609375,0.30078125,0.44140625,0.57421875,0.6416015625,0.634765625,0.619140625,0.6416015625,0.6904296875,0.7314453125,0.73828125,0.701171875,0.634765625,0.5693359375,0.5322265625,0.5380859375,0.580078125,0.6279296875,0.650390625,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2724609375,0.330078125,0.4140625,0.48046875,0.4970703125,0.4609375,0.39453125,0.3291015625,0.296875,0.314453125,0.3720703125,0.4384765625,0.4755859375,0.46875,0.4443359375,0.404296875,0.3671875,0.35546875,0.3779296875,0.4228515625,0.46875,0.5205078125,0.5830078125,0.62109375,0.2705078125,0.31640625,0.40234375,0.490234375,0.55078125,0.6064453125,0.6640625,0.6923828125,0.6640625,0.587890625,0.4990234375,0.4287109375,0.361328125,0.2802734375,0.2197265625,0.2099609375,0.25390625,0.3203125,0.376953125,0.4384765625,0.5263671875,0.6123046875,0.658203125,0.6494140625,0.603515625,0.55078125,0.501953125,0.466796875,0.4658203125,0.501953125,0.556640625,0.6025390625,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.5625,0.533203125,0.5029296875,0.5,0.5361328125,0.6015625,0.673828125,0.7431640625,0.7958984375,0.8046875,0.765625,0.6982421875,0.642578125,0.6220703125,0.599609375,0.5419921875,0.470703125,0.4267578125,0.431640625,0.4814453125,0.55078125,0.609375,0.611328125,0.5517578125,0.462890625,0.3935546875,0.3818359375,0.4287109375,0.4794921875,0.4814453125,0.4326171875,0.357421875,0.2978515625,0.287109375,0.3251953125,0.37890625,0.4345703125,0.4755859375,0.4853515625,0.46875,0.443359375,0.4287109375,0.4091796875,0.359375,0.296875,0.251953125,0.24609375,0.27734375,0.3251953125,0.37109375,0.3935546875,0.392578125,0.380859375,0.3798828125,0.40234375,0.4482421875,0.486328125,0.47265625,0.4091796875,0.3291015625,0.275390625,0.2763671875,0.3251953125,0.38671875,0.4375,0.4638671875,0.4609375,0.4404296875,0.4248046875,0.4287109375,0.43359375,0.4228515625,0.4140625,0.4306640625,0.4794921875,0.548828125,0.6220703125,0.6904296875,0.736328125,0.73828125,0.6943359375,0.62890625,0.5810546875,0.5703125,0.5625,0.52734375,0.46484375,0.3955078125,0.34375,0.3212890625,0.3251953125,0.3427734375,0.3857421875,0.4501953125,0.5146484375,0.5595703125,0.576171875,0.5703125,0.5625,0.5615234375,0.55078125,0.5166015625,0.4580078125,0.3896484375,0.3251953125,0.259765625,0.1923828125,0.158203125,0.185546875,0.265625,0.3583984375,0.4287109375,0.498046875,0.580078125,0.6416015625,0.646484375,0.59375,0.515625,0.4482421875,0.3828125,0.31640625,0.287109375,0.3193359375,0.4033203125,0.4990234375,0.5703125,0.625,0.646484375,0.611328125,0.525390625,0.4228515625,0.349609375,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.587890625,0.568359375,0.4970703125,0.4130859375,0.361328125,0.369140625,0.4287109375,0.4970703125,0.5439453125,0.548828125,0.5146484375,0.462890625,0.4287109375,0.4287109375,0.4482421875,0.4931640625,0.5458984375,0.572265625,0.556640625,0.5087890625,0.4482421875,0.3974609375,0.39453125,0.4443359375,0.51953125,0.5791015625,0.58984375,0.55078125,0.5029296875,0.474609375,0.484375,0.5341796875,0.6015625,0.6533203125,0.673828125,0.6826171875,0.68359375,0.669921875,0.642578125,0.6103515625,0.583984375,0.5703125,0.5595703125,0.552734375,0.5546875,0.568359375,0.5888671875,0.609375,0.6220703125,0.6162109375,0.552734375,0.4423828125,0.333984375,0.271484375,0.2744140625,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.298828125,0.2109375,0.15625,0.1689453125,0.248046875,0.34765625,0.4287109375,0.5107421875,0.6162109375,0.7060546875,0.7392578125,0.7060546875,0.63671875,0.5703125,0.4970703125,0.396484375,0.3037109375,0.267578125,0.298828125,0.3720703125,0.4482421875,0.5146484375,0.552734375,0.5380859375,0.4755859375,0.39453125,0.3388671875,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.666015625,0.6669921875,0.6640625,0.64453125,0.6044921875,0.5517578125,0.5,0.4609375,0.4716796875,0.52734375,0.5927734375,0.62890625,0.6123046875,0.55078125,0.46875,0.3623046875,0.2724609375,0.2451171875,0.2890625,0.3701171875,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.333984375,0.3759765625,0.453125,0.5458984375,0.623046875,0.6650390625,0.673828125,0.6708984375,0.658203125,0.6357421875,0.6083984375,0.5849609375,0.572265625,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.642578125,0.6982421875,0.765625,0.8046875,0.7958984375,0.7431640625,0.673828125,0.5927734375,0.4892578125,0.3994140625,0.3623046875,0.3857421875,0.4443359375,0.5,0.5439453125,0.5537109375,0.5166015625,0.4443359375,0.3701171875,0.3271484375,0.3251953125,0.330078125,0.314453125,0.2900390625,0.27734375,0.2900390625,0.328125,0.376953125,0.419921875,0.4296875,0.4091796875,0.380859375,0.3701171875,0.3935546875,0.4482421875,0.5107421875,0.5703125,0.6083984375,0.615234375,0.5966796875,0.576171875,0.5703125,0.5576171875,0.5009765625,0.419921875,0.357421875,0.34375,0.380859375,0.4482421875,0.51171875,0.541015625,0.52734375,0.4892578125,0.45703125,0.458984375,0.5,0.5546875,0.61328125,0.64453125,0.6259765625,0.5625,0.4873046875,0.4287109375,0.3857421875,0.37109375,0.388671875,0.41796875,0.4345703125,0.4208984375,0.376953125,0.33203125,0.318359375,0.3515625,0.4248046875,0.505859375,0.55859375,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.5146484375,0.5859375,0.6240234375,0.595703125,0.509765625,0.4072265625,0.3251953125,0.2646484375,0.25390625,0.314453125,0.427734375,0.544921875,0.615234375,0.6220703125,0.62109375,0.6552734375,0.70703125,0.7421875,0.736328125,0.6904296875,0.6220703125,0.5537109375,0.5068359375,0.5009765625,0.5361328125,0.587890625,0.6220703125,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3388671875,0.39453125,0.4755859375,0.5380859375,0.552734375,0.5146484375,0.4482421875,0.384765625,0.359375,0.3798828125,0.4267578125,0.466796875,0.46875,0.4287109375,0.37109375,0.2978515625,0.2431640625,0.23828125,0.2880859375,0.3623046875,0.4287109375,0.4970703125,0.578125,0.630859375,0.2294921875,0.2509765625,0.33203125,0.431640625,0.509765625,0.583984375,0.666015625,0.7158203125,0.6982421875,0.6181640625,0.5185546875,0.439453125,0.3623046875,0.26953125,0.203125,0.201171875,0.2646484375,0.353515625,0.4296875,0.5078125,0.607421875,0.6884765625,0.7099609375,0.6640625,0.583984375,0.509765625,0.4443359375,0.400390625,0.3994140625,0.4443359375,0.5087890625,0.556640625,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5498046875,0.5107421875,0.4619140625,0.4365234375,0.4541015625,0.5087890625,0.5791015625,0.6494140625,0.701171875,0.7138671875,0.681640625,0.625,0.5810546875,0.5693359375,0.556640625,0.505859375,0.439453125,0.3935546875,0.39453125,0.4404296875,0.509765625,0.568359375,0.5712890625,0.5166015625,0.4384765625,0.3818359375,0.3828125,0.439453125,0.498046875,0.5068359375,0.46484375,0.400390625,0.3564453125,0.36328125,0.419921875,0.4873046875,0.5400390625,0.55859375,0.5361328125,0.4892578125,0.4501953125,0.439453125,0.427734375,0.384765625,0.3291015625,0.2958984375,0.3046875,0.353515625,0.419921875,0.478515625,0.4970703125,0.474609375,0.4345703125,0.412109375,0.4306640625,0.4892578125,0.544921875,0.5458984375,0.490234375,0.4130859375,0.359375,0.3623046875,0.419921875,0.48828125,0.541015625,0.556640625,0.5322265625,0.484375,0.447265625,0.439453125,0.4345703125,0.4091796875,0.3857421875,0.388671875,0.4296875,0.4970703125,0.5693359375,0.638671875,0.6904296875,0.701171875,0.66796875,0.6123046875,0.5693359375,0.5595703125,0.5556640625,0.5380859375,0.505859375,0.4677734375,0.4375,0.421875,0.419921875,0.4248046875,0.4443359375,0.4765625,0.513671875,0.54296875,0.5576171875,0.5595703125,0.564453125,0.5869140625,0.607421875,0.6005859375,0.55859375,0.4912109375,0.419921875,0.3427734375,0.2529296875,0.1923828125,0.197265625,0.2666015625,0.361328125,0.439453125,0.5185546875,0.6171875,0.693359375,0.7060546875,0.65234375,0.56640625,0.4892578125,0.4130859375,0.330078125,0.2802734375,0.298828125,0.37890625,0.4794921875,0.5595703125,0.6240234375,0.6591796875,0.642578125,0.5771484375,0.4931640625,0.4345703125,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.564453125,0.564453125,0.5078125,0.4296875,0.376953125,0.380859375,0.439453125,0.5087890625,0.560546875,0.572265625,0.5419921875,0.48828125,0.4482421875,0.439453125,0.4521484375,0.5,0.5634765625,0.6064453125,0.6025390625,0.556640625,0.4892578125,0.431640625,0.421875,0.46484375,0.5283203125,0.572265625,0.5654296875,0.509765625,0.4443359375,0.40234375,0.4033203125,0.4501953125,0.5166015625,0.56640625,0.5791015625,0.5810546875,0.580078125,0.5771484375,0.572265625,0.56640625,0.5615234375,0.5595703125,0.5576171875,0.556640625,0.5576171875,0.5595703125,0.5634765625,0.5673828125,0.5693359375,0.5576171875,0.5,0.4150390625,0.3447265625,0.3232421875,0.35546875,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.3505859375,0.2568359375,0.1923828125,0.1953125,0.2646484375,0.359375,0.439453125,0.5224609375,0.6298828125,0.7216796875,0.7529296875,0.712890625,0.634765625,0.5595703125,0.4794921875,0.3779296875,0.2958984375,0.27734375,0.3271484375,0.412109375,0.4892578125,0.5576171875,0.6015625,0.599609375,0.55078125,0.4814453125,0.431640625,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.5849609375,0.6142578125,0.6474609375,0.6552734375,0.6259765625,0.5673828125,0.5,0.443359375,0.4365234375,0.4794921875,0.541015625,0.5810546875,0.5693359375,0.509765625,0.4296875,0.3330078125,0.26171875,0.255859375,0.318359375,0.41015625,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.5,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.423828125,0.4423828125,0.478515625,0.5205078125,0.556640625,0.5751953125,0.5791015625,0.5791015625,0.576171875,0.572265625,0.56640625,0.5625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5810546875,0.625,0.681640625,0.7138671875,0.701171875,0.6494140625,0.5791015625,0.498046875,0.396484375,0.314453125,0.294921875,0.3427734375,0.4248046875,0.5,0.5634765625,0.603515625,0.5966796875,0.5458984375,0.4775390625,0.4296875,0.419921875,0.412109375,0.375,0.326171875,0.2998046875,0.3134765625,0.36328125,0.4296875,0.48828125,0.5048828125,0.478515625,0.435546875,0.4111328125,0.4296875,0.4892578125,0.5595703125,0.619140625,0.6474609375,0.63671875,0.599609375,0.5673828125,0.5595703125,0.5478515625,0.4970703125,0.4287109375,0.3798828125,0.3779296875,0.421875,0.4892578125,0.5498046875,0.5634765625,0.5283203125,0.4716796875,0.43359375,0.4423828125,0.5,0.57421875,0.65625,0.70703125,0.69140625,0.6142578125,0.517578125,0.439453125,0.3828125,0.37109375,0.4072265625,0.4619140625,0.498046875,0.4873046875,0.4296875,0.3662109375,0.33203125,0.3486328125,0.4111328125,0.4912109375,0.546875,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.56640625,0.650390625,0.701171875,0.68359375,0.6025390625,0.5009765625,0.419921875,0.353515625,0.3203125,0.341796875,0.412109375,0.4990234375,0.5576171875,0.5693359375,0.5771484375,0.6181640625,0.6708984375,0.7021484375,0.6904296875,0.638671875,0.5693359375,0.5,0.4482421875,0.4365234375,0.4677734375,0.5205078125,0.560546875,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.431640625,0.4814453125,0.55078125,0.599609375,0.6015625,0.5576171875,0.4892578125,0.427734375,0.4091796875,0.435546875,0.482421875,0.51171875,0.4970703125,0.439453125,0.36328125,0.2724609375,0.2080078125,0.20703125,0.271484375,0.3623046875,0.439453125,0.517578125,0.609375,0.673828125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.2998046875,0.2783203125,0.3271484375,0.412109375,0.4892578125,0.5712890625,0.6748046875,0.7607421875,0.783203125,0.7373046875,0.6552734375,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.6474609375,0.734375,0.7880859375,0.7724609375,0.6923828125,0.5908203125,0.509765625,0.4384765625,0.376953125,0.3466796875,0.357421875,0.392578125,0.4228515625,0.4296875,0.427734375,0.4267578125,0.42578125,0.423828125,0.4228515625,0.421875,0.419921875,0.408203125,0.3662109375,0.3134765625,0.28515625,0.298828125,0.3515625,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.4306640625,0.396484375,0.35546875,0.3388671875,0.36328125,0.419921875,0.4892578125,0.5498046875,0.5693359375,0.546875,0.5068359375,0.4833984375,0.5009765625,0.5595703125,0.6171875,0.6298828125,0.595703125,0.54296875,0.5087890625,0.521484375,0.5791015625,0.6455078125,0.6943359375,0.703125,0.669921875,0.6142578125,0.5712890625,0.5595703125,0.5478515625,0.505859375,0.453125,0.4248046875,0.4384765625,0.4912109375,0.5595703125,0.6162109375,0.6181640625,0.5634765625,0.4853515625,0.4306640625,0.4326171875,0.4892578125,0.5498046875,0.5673828125,0.5419921875,0.5009765625,0.4775390625,0.498046875,0.5595703125,0.62890625,0.681640625,0.6943359375,0.6640625,0.611328125,0.5693359375,0.5595703125,0.546875,0.4912109375,0.4111328125,0.3486328125,0.33203125,0.3662109375,0.4296875,0.49609375,0.5458984375,0.5576171875,0.5263671875,0.4736328125,0.4306640625,0.419921875,0.421875,0.4375,0.46875,0.5087890625,0.5439453125,0.5634765625,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.6474609375,0.7333984375,0.7841796875,0.765625,0.68359375,0.5810546875,0.5,0.41796875,0.3154296875,0.2333984375,0.21484375,0.265625,0.3515625,0.4296875,0.5029296875,0.5732421875,0.619140625,0.6259765625,0.603515625,0.5771484375,0.5693359375,0.5751953125,0.6044921875,0.63671875,0.6455078125,0.6162109375,0.5576171875,0.4892578125,0.4140625,0.3251953125,0.263671875,0.2666015625,0.33203125,0.4228515625,0.5,0.5576171875,0.5751953125,0.55078125,0.5087890625,0.4833984375,0.5009765625,0.5595703125,0.6259765625,0.6767578125,0.6904296875,0.6630859375,0.611328125,0.5703125,0.5595703125,0.56640625,0.599609375,0.640625,0.6572265625,0.634765625,0.578125,0.509765625,0.4501953125,0.4375,0.47265625,0.5263671875,0.5615234375,0.548828125,0.4892578125,0.419921875,0.3623046875,0.337890625,0.3525390625,0.390625,0.4228515625,0.4296875,0.4287109375,0.4296875,0.4326171875,0.4365234375,0.439453125,0.4404296875,0.439453125,0.4384765625,0.4365234375,0.435546875,0.4345703125,0.4326171875,0.431640625,0.4296875,0.421875,0.3974609375,0.3779296875,0.38671875,0.431640625,0.4990234375,0.5693359375,0.6455078125,0.7353515625,0.798828125,0.798828125,0.7353515625,0.6455078125,0.5693359375,0.4931640625,0.40234375,0.3359375,0.333984375,0.39453125,0.4833984375,0.5595703125,0.6318359375,0.7060546875,0.7412109375,0.70703125,0.6142578125,0.5087890625,0.4296875,0.35546875,0.2734375,0.224609375,0.244140625,0.326171875,0.4287109375,0.509765625,0.5810546875,0.642578125,0.6728515625,0.662109375,0.6240234375,0.5888671875,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.439453125,0.4296875,0.470703125,0.533203125,0.576171875,0.5673828125,0.509765625,0.4306640625,0.3369140625,0.2685546875,0.2646484375,0.328125,0.419921875,0.5,0.5810546875,0.68359375,0.7666015625,0.787109375,0.73828125,0.6552734375,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.5751953125,0.556640625,0.521484375,0.4814453125,0.4482421875,0.431640625,0.4296875,0.4306640625,0.431640625,0.4306640625,0.4287109375,0.427734375,0.4287109375,0.4296875,0.431640625,0.43359375,0.435546875,0.435546875,0.43359375,0.431640625,0.4296875,0.4384765625,0.478515625,0.53125,0.5625,0.55078125,0.4990234375,0.4296875,0.3515625,0.2666015625,0.2158203125,0.2333984375,0.3125,0.412109375,0.4892578125,0.55859375,0.619140625,0.6513671875,0.646484375,0.615234375,0.5869140625,0.5791015625,0.568359375,0.5244140625,0.466796875,0.431640625,0.4404296875,0.490234375,0.5595703125,0.6181640625,0.6240234375,0.57421875,0.5009765625,0.44921875,0.4521484375,0.509765625,0.576171875,0.6171875,0.61328125,0.564453125,0.4970703125,0.44921875,0.439453125,0.4326171875,0.400390625,0.361328125,0.3447265625,0.3671875,0.421875,0.4892578125,0.5458984375,0.5556640625,0.517578125,0.4609375,0.4248046875,0.439453125,0.5,0.5810546875,0.68359375,0.7666015625,0.787109375,0.73828125,0.6552734375,0.5791015625,0.5205078125,0.509765625,0.548828125,0.60546875,0.642578125,0.6298828125,0.5693359375,0.49609375,0.4287109375,0.3857421875,0.3818359375,0.4072265625,0.4326171875,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.4130859375,0.3837890625,0.3505859375,0.34375,0.3759765625,0.4375,0.509765625,0.5908203125,0.6923828125,0.7724609375,0.7880859375,0.734375,0.6474609375,0.5693359375,0.49609375,0.4287109375,0.3857421875,0.3818359375,0.4072265625,0.4326171875,0.439453125,0.44921875,0.4873046875,0.53515625,0.5595703125,0.5419921875,0.48828125,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.4306640625,0.48046875,0.5498046875,0.599609375,0.6044921875,0.564453125,0.5,0.4345703125,0.39453125,0.3994140625,0.44921875,0.5185546875,0.568359375,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.4208984375,0.435546875,0.4658203125,0.501953125,0.53515625,0.5546875,0.5595703125,0.5693359375,0.60546875,0.646484375,0.662109375,0.6376953125,0.5791015625,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.6484375,0.740234375,0.8037109375,0.3173828125,0.271484375,0.298828125,0.3720703125,0.4482421875,0.53125,0.646484375,0.755859375,0.8115234375,0.796875,0.7373046875,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.7001953125,0.78515625,0.8359375,0.8173828125,0.7353515625,0.6328125,0.55078125,0.478515625,0.4111328125,0.3671875,0.35546875,0.3681640625,0.3818359375,0.376953125,0.3671875,0.359375,0.353515625,0.3486328125,0.34375,0.3359375,0.3251953125,0.306640625,0.263671875,0.2158203125,0.1943359375,0.2138671875,0.2646484375,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.4208984375,0.3876953125,0.345703125,0.3251953125,0.3408203125,0.3876953125,0.4482421875,0.5029296875,0.533203125,0.5341796875,0.5185546875,0.509765625,0.5263671875,0.5703125,0.615234375,0.634765625,0.6298828125,0.6142578125,0.6083984375,0.62890625,0.673828125,0.7216796875,0.7529296875,0.7470703125,0.7021484375,0.6396484375,0.58984375,0.5703125,0.5517578125,0.5078125,0.4609375,0.4384765625,0.4580078125,0.5087890625,0.5703125,0.6181640625,0.6123046875,0.55078125,0.466796875,0.4052734375,0.3994140625,0.4482421875,0.5,0.5185546875,0.50390625,0.4794921875,0.474609375,0.505859375,0.5703125,0.6396484375,0.6923828125,0.705078125,0.6748046875,0.6220703125,0.580078125,0.5703125,0.55859375,0.505859375,0.4248046875,0.3515625,0.318359375,0.33203125,0.376953125,0.4267578125,0.4638671875,0.4697265625,0.4384765625,0.3876953125,0.34375,0.3251953125,0.3212890625,0.34375,0.3994140625,0.4775390625,0.5537109375,0.603515625,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.6982421875,0.7783203125,0.8173828125,0.78515625,0.69140625,0.58203125,0.5,0.4169921875,0.3076171875,0.2138671875,0.181640625,0.220703125,0.30078125,0.376953125,0.4541015625,0.5419921875,0.6181640625,0.65625,0.6552734375,0.6357421875,0.6220703125,0.6142578125,0.615234375,0.61328125,0.5927734375,0.552734375,0.5,0.4482421875,0.392578125,0.33203125,0.2958984375,0.3095703125,0.3681640625,0.44140625,0.5,0.5439453125,0.5595703125,0.546875,0.5224609375,0.509765625,0.5263671875,0.5703125,0.62109375,0.6640625,0.681640625,0.6640625,0.6240234375,0.5869140625,0.5703125,0.568359375,0.59375,0.6337890625,0.6591796875,0.6513671875,0.609375,0.55078125,0.498046875,0.4755859375,0.4873046875,0.51171875,0.5234375,0.5009765625,0.4482421875,0.3876953125,0.3408203125,0.3212890625,0.3330078125,0.361328125,0.380859375,0.376953125,0.3701171875,0.375,0.3916015625,0.4140625,0.431640625,0.4365234375,0.4287109375,0.4189453125,0.4111328125,0.4052734375,0.400390625,0.39453125,0.38671875,0.376953125,0.3662109375,0.3583984375,0.373046875,0.419921875,0.4921875,0.5654296875,0.6220703125,0.6787109375,0.7451171875,0.79296875,0.79296875,0.7451171875,0.6787109375,0.6220703125,0.5634765625,0.490234375,0.431640625,0.41796875,0.4541015625,0.5146484375,0.5703125,0.6220703125,0.666015625,0.669921875,0.619140625,0.5283203125,0.4384765625,0.376953125,0.322265625,0.263671875,0.240234375,0.27734375,0.3671875,0.470703125,0.55078125,0.625,0.6982421875,0.7470703125,0.7529296875,0.724609375,0.6904296875,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.439453125,0.4287109375,0.47265625,0.54296875,0.5966796875,0.599609375,0.55078125,0.48046875,0.3876953125,0.3115234375,0.29296875,0.3408203125,0.4228515625,0.5,0.58203125,0.69140625,0.7890625,0.830078125,0.8046875,0.7392578125,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.6650390625,0.623046875,0.548828125,0.466796875,0.40234375,0.3740234375,0.376953125,0.3857421875,0.3876953125,0.3818359375,0.373046875,0.3671875,0.369140625,0.376953125,0.388671875,0.40234375,0.412109375,0.412109375,0.40234375,0.388671875,0.376953125,0.376953125,0.4111328125,0.462890625,0.498046875,0.4921875,0.4453125,0.376953125,0.3017578125,0.228515625,0.193359375,0.220703125,0.298828125,0.38671875,0.4482421875,0.5029296875,0.5673828125,0.626953125,0.6650390625,0.677734375,0.6748046875,0.673828125,0.6611328125,0.6064453125,0.5302734375,0.47265625,0.462890625,0.5029296875,0.5703125,0.630859375,0.6455078125,0.6083984375,0.5478515625,0.5009765625,0.501953125,0.55078125,0.6064453125,0.630859375,0.6064453125,0.5439453125,0.4736328125,0.4306640625,0.4287109375,0.4326171875,0.4130859375,0.380859375,0.359375,0.3662109375,0.3994140625,0.4482421875,0.48828125,0.490234375,0.4580078125,0.419921875,0.40625,0.435546875,0.5,0.58203125,0.69140625,0.7890625,0.830078125,0.8046875,0.7392578125,0.673828125,0.6220703125,0.61328125,0.6435546875,0.6865234375,0.70703125,0.6845703125,0.6220703125,0.5478515625,0.4716796875,0.4150390625,0.39453125,0.4052734375,0.423828125,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.3310546875,0.32421875,0.3232421875,0.34765625,0.404296875,0.4775390625,0.55078125,0.6328125,0.7353515625,0.8173828125,0.8359375,0.78515625,0.7001953125,0.6220703125,0.5478515625,0.4716796875,0.4150390625,0.39453125,0.4052734375,0.423828125,0.4287109375,0.435546875,0.4580078125,0.48046875,0.4794921875,0.4453125,0.3876953125,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.3369140625,0.3876953125,0.4638671875,0.5322265625,0.5615234375,0.544921875,0.5,0.4541015625,0.4375,0.466796875,0.53515625,0.611328125,0.662109375,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.3193359375,0.3359375,0.380859375,0.4453125,0.509765625,0.552734375,0.5703125,0.587890625,0.62890625,0.6728515625,0.689453125,0.666015625,0.6123046875,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.69921875,0.7802734375,0.828125,0.3056640625,0.2421875,0.2548828125,0.3203125,0.39453125,0.478515625,0.599609375,0.7236328125,0.8037109375,0.8193359375,0.7861328125,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.7138671875,0.8046875,0.8642578125,0.8564453125,0.783203125,0.685546875,0.6044921875,0.533203125,0.466796875,0.4189453125,0.3974609375,0.392578125,0.3857421875,0.3642578125,0.33984375,0.3232421875,0.314453125,0.30859375,0.2998046875,0.283203125,0.2587890625,0.2265625,0.181640625,0.142578125,0.134765625,0.1630859375,0.2109375,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.4609375,0.42578125,0.375,0.3359375,0.328125,0.3515625,0.39453125,0.439453125,0.4775390625,0.501953125,0.5107421875,0.5107421875,0.5146484375,0.5302734375,0.55078125,0.5791015625,0.615234375,0.654296875,0.69140625,0.7197265625,0.740234375,0.7568359375,0.7607421875,0.7373046875,0.6845703125,0.619140625,0.5634765625,0.5302734375,0.498046875,0.4521484375,0.4140625,0.4052734375,0.43359375,0.482421875,0.5302734375,0.564453125,0.5546875,0.4990234375,0.4248046875,0.369140625,0.359375,0.39453125,0.431640625,0.439453125,0.4248046875,0.4111328125,0.4208984375,0.462890625,0.5302734375,0.599609375,0.65234375,0.6650390625,0.634765625,0.5810546875,0.5400390625,0.5302734375,0.5234375,0.4921875,0.44140625,0.3896484375,0.35546875,0.349609375,0.3642578125,0.3837890625,0.400390625,0.3994140625,0.375,0.3330078125,0.2900390625,0.2587890625,0.23828125,0.2490234375,0.30859375,0.408203125,0.5166015625,0.5966796875,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.7119140625,0.7890625,0.826171875,0.7900390625,0.693359375,0.58203125,0.5,0.4169921875,0.3056640625,0.208984375,0.1728515625,0.2099609375,0.287109375,0.3642578125,0.443359375,0.544921875,0.6376953125,0.6904296875,0.6923828125,0.6640625,0.634765625,0.6064453125,0.5693359375,0.5244140625,0.48046875,0.4423828125,0.4150390625,0.39453125,0.3759765625,0.36328125,0.369140625,0.3974609375,0.4384765625,0.4755859375,0.5,0.515625,0.5224609375,0.5185546875,0.5107421875,0.5068359375,0.513671875,0.5302734375,0.5517578125,0.5810546875,0.6044921875,0.607421875,0.5888671875,0.55859375,0.5302734375,0.5126953125,0.5283203125,0.57421875,0.6240234375,0.65234375,0.6435546875,0.6044921875,0.5615234375,0.529296875,0.5078125,0.4912109375,0.4697265625,0.4375,0.39453125,0.353515625,0.33203125,0.3359375,0.3583984375,0.380859375,0.3837890625,0.3642578125,0.3447265625,0.353515625,0.3916015625,0.44140625,0.4794921875,0.48828125,0.46875,0.4443359375,0.427734375,0.4189453125,0.4140625,0.4052734375,0.388671875,0.3642578125,0.341796875,0.3447265625,0.3857421875,0.4609375,0.544921875,0.6064453125,0.634765625,0.65625,0.6806640625,0.6982421875,0.6982421875,0.6806640625,0.65625,0.634765625,0.611328125,0.57421875,0.533203125,0.5048828125,0.4990234375,0.51171875,0.5302734375,0.546875,0.5517578125,0.5322265625,0.48828125,0.43359375,0.388671875,0.3642578125,0.3408203125,0.314453125,0.3115234375,0.3525390625,0.43359375,0.5263671875,0.6044921875,0.681640625,0.765625,0.828125,0.8447265625,0.8173828125,0.7724609375,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4384765625,0.4248046875,0.46875,0.546875,0.615234375,0.63671875,0.6044921875,0.5478515625,0.4609375,0.375,0.3359375,0.3603515625,0.42578125,0.5,0.5810546875,0.689453125,0.7900390625,0.8427734375,0.833984375,0.7880859375,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7275390625,0.6669921875,0.5634765625,0.4521484375,0.373046875,0.3466796875,0.3642578125,0.3857421875,0.3896484375,0.375,0.3525390625,0.337890625,0.341796875,0.3642578125,0.3935546875,0.427734375,0.4521484375,0.4521484375,0.427734375,0.3935546875,0.3642578125,0.3486328125,0.37109375,0.4189453125,0.4609375,0.466796875,0.4296875,0.3642578125,0.2919921875,0.232421875,0.2119140625,0.2421875,0.3056640625,0.365234375,0.39453125,0.4208984375,0.4765625,0.5576171875,0.640625,0.7041015625,0.734375,0.740234375,0.7255859375,0.658203125,0.5576171875,0.4716796875,0.4384765625,0.46484375,0.5302734375,0.5947265625,0.6298828125,0.6259765625,0.5966796875,0.568359375,0.568359375,0.6044921875,0.6416015625,0.6435546875,0.6015625,0.53515625,0.4765625,0.453125,0.46875,0.490234375,0.4892578125,0.4638671875,0.4248046875,0.3916015625,0.3818359375,0.39453125,0.4052734375,0.390625,0.36328125,0.353515625,0.3759765625,0.4296875,0.5,0.5810546875,0.689453125,0.7900390625,0.8427734375,0.833984375,0.7880859375,0.740234375,0.703125,0.69921875,0.720703125,0.7421875,0.7392578125,0.701171875,0.634765625,0.5615234375,0.4892578125,0.4384765625,0.4248046875,0.44140625,0.462890625,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.2822265625,0.3017578125,0.3310546875,0.380859375,0.451171875,0.5302734375,0.6044921875,0.685546875,0.783203125,0.8564453125,0.8642578125,0.8046875,0.7138671875,0.634765625,0.5615234375,0.4892578125,0.4384765625,0.4248046875,0.44140625,0.462890625,0.46875,0.470703125,0.4716796875,0.4580078125,0.421875,0.3662109375,0.3076171875,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.267578125,0.3076171875,0.375,0.447265625,0.4970703125,0.5126953125,0.5,0.486328125,0.501953125,0.5517578125,0.6240234375,0.69140625,0.7314453125,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.236328125,0.234375,0.2705078125,0.341796875,0.4267578125,0.494140625,0.5302734375,0.5634765625,0.6181640625,0.673828125,0.701171875,0.6904296875,0.650390625,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.708984375,0.7744140625,0.7978515625,0.275390625,0.2119140625,0.224609375,0.2900390625,0.3642578125,0.4462890625,0.5595703125,0.6767578125,0.7568359375,0.7822265625,0.7666015625,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.685546875,0.783203125,0.8564453125,0.8642578125,0.8046875,0.7138671875,0.634765625,0.5654296875,0.5107421875,0.4775390625,0.4638671875,0.455078125,0.4345703125,0.39453125,0.353515625,0.330078125,0.3251953125,0.328125,0.3232421875,0.2998046875,0.2587890625,0.2109375,0.1630859375,0.134765625,0.142578125,0.181640625,0.2265625,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.5224609375,0.4873046875,0.4306640625,0.375,0.3427734375,0.341796875,0.3642578125,0.39453125,0.4375,0.48046875,0.5048828125,0.5048828125,0.4892578125,0.46875,0.4599609375,0.4892578125,0.560546875,0.6484375,0.7197265625,0.75,0.740234375,0.7216796875,0.701171875,0.6708984375,0.626953125,0.572265625,0.5166015625,0.46875,0.421875,0.373046875,0.3447265625,0.3525390625,0.3916015625,0.4375,0.46875,0.48828125,0.4794921875,0.44140625,0.3916015625,0.353515625,0.3447265625,0.3642578125,0.3818359375,0.3720703125,0.34765625,0.333984375,0.3505859375,0.400390625,0.46875,0.5390625,0.591796875,0.6044921875,0.57421875,0.5205078125,0.4794921875,0.46875,0.4697265625,0.4716796875,0.4697265625,0.4580078125,0.4375,0.4150390625,0.39453125,0.37890625,0.375,0.375,0.3662109375,0.341796875,0.3037109375,0.2587890625,0.216796875,0.19921875,0.234375,0.3251953125,0.4443359375,0.5458984375,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.681640625,0.763671875,0.806640625,0.7783203125,0.6884765625,0.58203125,0.5,0.4169921875,0.310546875,0.220703125,0.1923828125,0.2353515625,0.3173828125,0.39453125,0.4755859375,0.580078125,0.673828125,0.7177734375,0.703125,0.6533203125,0.6044921875,0.552734375,0.478515625,0.40234375,0.3505859375,0.333984375,0.3447265625,0.3642578125,0.388671875,0.4296875,0.4775390625,0.513671875,0.525390625,0.517578125,0.5,0.4833984375,0.4765625,0.48046875,0.48828125,0.4921875,0.4853515625,0.46875,0.45703125,0.4697265625,0.5,0.52734375,0.533203125,0.5107421875,0.46875,0.4326171875,0.4345703125,0.4833984375,0.5576171875,0.623046875,0.650390625,0.634765625,0.6064453125,0.5703125,0.5244140625,0.474609375,0.4287109375,0.392578125,0.3642578125,0.345703125,0.3564453125,0.3916015625,0.4306640625,0.4482421875,0.4345703125,0.39453125,0.359375,0.369140625,0.4248046875,0.4990234375,0.5546875,0.564453125,0.5302734375,0.4892578125,0.4658203125,0.4609375,0.4638671875,0.458984375,0.435546875,0.39453125,0.357421875,0.361328125,0.4140625,0.4970703125,0.57421875,0.6123046875,0.6044921875,0.583984375,0.55859375,0.541015625,0.541015625,0.55859375,0.583984375,0.6044921875,0.6220703125,0.630859375,0.6181640625,0.5830078125,0.53515625,0.4931640625,0.46875,0.4462890625,0.412109375,0.3779296875,0.3583984375,0.359375,0.375,0.39453125,0.408203125,0.41015625,0.4140625,0.4384765625,0.4912109375,0.5625,0.634765625,0.7138671875,0.8046875,0.8759765625,0.892578125,0.853515625,0.7919921875,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4365234375,0.416015625,0.4521484375,0.5302734375,0.6083984375,0.6474609375,0.634765625,0.595703125,0.5185546875,0.4306640625,0.375,0.3779296875,0.4296875,0.5,0.578125,0.67578125,0.76171875,0.806640625,0.8017578125,0.7705078125,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7255859375,0.6572265625,0.546875,0.435546875,0.3671875,0.3583984375,0.39453125,0.4326171875,0.439453125,0.4140625,0.375,0.349609375,0.3564453125,0.39453125,0.4443359375,0.50390625,0.546875,0.546875,0.50390625,0.4443359375,0.39453125,0.3603515625,0.369140625,0.4140625,0.4638671875,0.484375,0.4580078125,0.39453125,0.326171875,0.28125,0.275390625,0.3056640625,0.3486328125,0.373046875,0.3642578125,0.3544921875,0.3857421875,0.466796875,0.57421875,0.671875,0.728515625,0.740234375,0.7236328125,0.6494140625,0.53515625,0.43359375,0.3857421875,0.4052734375,0.46875,0.5390625,0.5966796875,0.626953125,0.62890625,0.6181640625,0.615234375,0.634765625,0.65234375,0.6318359375,0.580078125,0.521484375,0.4873046875,0.4921875,0.5302734375,0.572265625,0.5966796875,0.58203125,0.52734375,0.453125,0.392578125,0.3642578125,0.3388671875,0.2998046875,0.2734375,0.2861328125,0.34375,0.423828125,0.5,0.578125,0.67578125,0.76171875,0.806640625,0.8017578125,0.7705078125,0.740234375,0.7216796875,0.7275390625,0.7451171875,0.7509765625,0.7275390625,0.673828125,0.6044921875,0.533203125,0.4716796875,0.44140625,0.4521484375,0.4892578125,0.521484375,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3017578125,0.3388671875,0.3779296875,0.427734375,0.4912109375,0.5625,0.634765625,0.7138671875,0.8046875,0.8642578125,0.8564453125,0.783203125,0.685546875,0.6044921875,0.533203125,0.4716796875,0.44140625,0.4521484375,0.4892578125,0.521484375,0.5302734375,0.52734375,0.509765625,0.46875,0.408203125,0.3427734375,0.291015625,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.26171875,0.2802734375,0.3193359375,0.375,0.4326171875,0.4755859375,0.5,0.5234375,0.56640625,0.6240234375,0.6796875,0.71875,0.7373046875,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.2138671875,0.1796875,0.1845703125,0.240234375,0.3291015625,0.4140625,0.46875,0.5205078125,0.58984375,0.654296875,0.6904296875,0.6884765625,0.6630859375,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.6748046875,0.7265625,0.728515625,0.2470703125,0.201171875,0.228515625,0.3017578125,0.376953125,0.455078125,0.5498046875,0.63671875,0.689453125,0.7001953125,0.6865234375,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.6328125,0.7353515625,0.8173828125,0.8359375,0.78515625,0.7001953125,0.6220703125,0.556640625,0.5185546875,0.51171875,0.5224609375,0.525390625,0.501953125,0.4482421875,0.3935546875,0.3701171875,0.376953125,0.396484375,0.4033203125,0.3798828125,0.3251953125,0.2646484375,0.2138671875,0.1943359375,0.2158203125,0.263671875,0.306640625,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.564453125,0.5341796875,0.484375,0.4287109375,0.3876953125,0.3720703125,0.376953125,0.3955078125,0.439453125,0.490234375,0.521484375,0.515625,0.478515625,0.4287109375,0.392578125,0.4140625,0.4970703125,0.60546875,0.6884765625,0.7099609375,0.673828125,0.626953125,0.595703125,0.5771484375,0.560546875,0.5322265625,0.4873046875,0.4287109375,0.3681640625,0.3173828125,0.2978515625,0.3193359375,0.3671875,0.41015625,0.4287109375,0.4365234375,0.431640625,0.4140625,0.3916015625,0.375,0.3701171875,0.376953125,0.37890625,0.3505859375,0.310546875,0.2900390625,0.306640625,0.359375,0.4287109375,0.4990234375,0.55078125,0.564453125,0.5341796875,0.48046875,0.439453125,0.4287109375,0.4365234375,0.46875,0.5107421875,0.537109375,0.5322265625,0.4970703125,0.4482421875,0.404296875,0.3876953125,0.396484375,0.412109375,0.4111328125,0.380859375,0.3251953125,0.2626953125,0.2099609375,0.203125,0.2626953125,0.3701171875,0.4775390625,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.6298828125,0.7177734375,0.7724609375,0.7587890625,0.6806640625,0.580078125,0.5,0.4189453125,0.318359375,0.240234375,0.2265625,0.28125,0.369140625,0.4482421875,0.5283203125,0.62890625,0.7109375,0.734375,0.6923828125,0.6181640625,0.55078125,0.48046875,0.384765625,0.296875,0.2548828125,0.271484375,0.3232421875,0.376953125,0.4365234375,0.5185546875,0.5927734375,0.6259765625,0.60546875,0.5537109375,0.5,0.455078125,0.439453125,0.4521484375,0.4765625,0.4892578125,0.47265625,0.4287109375,0.3876953125,0.38671875,0.4228515625,0.4697265625,0.4970703125,0.4814453125,0.4287109375,0.375,0.359375,0.3994140625,0.48046875,0.5673828125,0.619140625,0.6220703125,0.607421875,0.576171875,0.52734375,0.4716796875,0.4228515625,0.3916015625,0.376953125,0.376953125,0.4140625,0.4736328125,0.5224609375,0.5341796875,0.5048828125,0.4482421875,0.3994140625,0.4052734375,0.466796875,0.55078125,0.6123046875,0.6181640625,0.5703125,0.515625,0.4921875,0.4990234375,0.5185546875,0.525390625,0.501953125,0.4482421875,0.3974609375,0.39453125,0.4443359375,0.51953125,0.5791015625,0.58984375,0.55078125,0.494140625,0.427734375,0.3798828125,0.3798828125,0.427734375,0.494140625,0.55078125,0.60546875,0.6572265625,0.6767578125,0.64453125,0.5703125,0.48828125,0.4287109375,0.373046875,0.30859375,0.2646484375,0.26953125,0.3212890625,0.390625,0.4482421875,0.4912109375,0.5078125,0.5029296875,0.4970703125,0.5107421875,0.5546875,0.6220703125,0.701171875,0.7958984375,0.8662109375,0.875,0.822265625,0.7421875,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.43359375,0.40234375,0.423828125,0.4912109375,0.5703125,0.619140625,0.6220703125,0.5986328125,0.5341796875,0.4521484375,0.3935546875,0.3876953125,0.4306640625,0.5,0.5751953125,0.654296875,0.7138671875,0.734375,0.7177734375,0.689453125,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.6591796875,0.5966796875,0.5009765625,0.4150390625,0.3759765625,0.3935546875,0.4482421875,0.4990234375,0.5078125,0.4736328125,0.421875,0.3876953125,0.396484375,0.4482421875,0.515625,0.5966796875,0.6533203125,0.6533203125,0.5966796875,0.515625,0.4482421875,0.3984375,0.39453125,0.4375,0.4931640625,0.525390625,0.5087890625,0.4482421875,0.3837890625,0.3525390625,0.361328125,0.39453125,0.4228515625,0.4189453125,0.376953125,0.3349609375,0.3330078125,0.3896484375,0.490234375,0.59375,0.6591796875,0.673828125,0.658203125,0.5859375,0.478515625,0.3837890625,0.341796875,0.365234375,0.4287109375,0.501953125,0.5712890625,0.6201171875,0.63671875,0.6279296875,0.6171875,0.6220703125,0.6220703125,0.587890625,0.5322265625,0.48828125,0.48046875,0.5126953125,0.5703125,0.6318359375,0.68359375,0.689453125,0.634765625,0.5361328125,0.439453125,0.376953125,0.3203125,0.2568359375,0.220703125,0.244140625,0.3232421875,0.419921875,0.5,0.5751953125,0.654296875,0.7138671875,0.734375,0.7177734375,0.689453125,0.673828125,0.669921875,0.689453125,0.7138671875,0.716796875,0.68359375,0.6220703125,0.55078125,0.4814453125,0.431640625,0.4228515625,0.4580078125,0.515625,0.5595703125,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.3818359375,0.4208984375,0.4453125,0.466796875,0.5009765625,0.5537109375,0.6220703125,0.7001953125,0.78515625,0.8359375,0.8173828125,0.7353515625,0.6328125,0.55078125,0.4814453125,0.431640625,0.4228515625,0.4580078125,0.515625,0.5595703125,0.5703125,0.5654296875,0.5419921875,0.4951171875,0.435546875,0.37890625,0.341796875,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.322265625,0.314453125,0.314453125,0.3388671875,0.3876953125,0.4462890625,0.5,0.552734375,0.611328125,0.66015625,0.6845703125,0.6845703125,0.6767578125,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.259765625,0.1923828125,0.158203125,0.185546875,0.265625,0.3583984375,0.4287109375,0.494140625,0.5693359375,0.630859375,0.66015625,0.6552734375,0.6357421875,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.619140625,0.6630859375,0.6572265625,0.2392578125,0.21875,0.267578125,0.3515625,0.4296875,0.5029296875,0.5751953125,0.623046875,0.6328125,0.6123046875,0.5869140625,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.5908203125,0.6923828125,0.7724609375,0.7880859375,0.734375,0.6474609375,0.5693359375,0.5078125,0.486328125,0.5068359375,0.5458984375,0.568359375,0.5498046875,0.4892578125,0.4296875,0.41015625,0.4345703125,0.474609375,0.4990234375,0.4794921875,0.419921875,0.3515625,0.298828125,0.28515625,0.3134765625,0.3662109375,0.408203125,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.5556640625,0.5390625,0.5087890625,0.474609375,0.4453125,0.4306640625,0.4296875,0.44140625,0.4833984375,0.537109375,0.5673828125,0.5556640625,0.505859375,0.439453125,0.3857421875,0.392578125,0.4619140625,0.556640625,0.6259765625,0.6328125,0.5791015625,0.51953125,0.4931640625,0.5009765625,0.5234375,0.5302734375,0.501953125,0.439453125,0.37109375,0.3193359375,0.3046875,0.333984375,0.38671875,0.4287109375,0.439453125,0.4404296875,0.439453125,0.4365234375,0.4326171875,0.4296875,0.4287109375,0.4296875,0.421875,0.3828125,0.3310546875,0.302734375,0.3173828125,0.3701171875,0.439453125,0.509765625,0.5615234375,0.5751953125,0.544921875,0.4912109375,0.44921875,0.439453125,0.4501953125,0.49609375,0.55859375,0.6005859375,0.5986328125,0.5546875,0.4892578125,0.4306640625,0.4130859375,0.4375,0.4775390625,0.5,0.48046875,0.419921875,0.34375,0.2626953125,0.2177734375,0.2412109375,0.3271484375,0.4296875,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.5888671875,0.681640625,0.74609375,0.744140625,0.6748046875,0.5791015625,0.5,0.419921875,0.32421875,0.2548828125,0.2529296875,0.3173828125,0.41015625,0.4892578125,0.5693359375,0.6650390625,0.7353515625,0.7392578125,0.677734375,0.5869140625,0.509765625,0.4296875,0.3291015625,0.248046875,0.2275390625,0.2744140625,0.35546875,0.4296875,0.5078125,0.60546875,0.6845703125,0.703125,0.6552734375,0.57421875,0.5,0.44140625,0.423828125,0.4482421875,0.490234375,0.515625,0.498046875,0.439453125,0.3828125,0.3740234375,0.4130859375,0.4716796875,0.509765625,0.498046875,0.439453125,0.375,0.33984375,0.357421875,0.421875,0.5029296875,0.55859375,0.5693359375,0.564453125,0.5478515625,0.517578125,0.4814453125,0.451171875,0.4345703125,0.4296875,0.439453125,0.486328125,0.55078125,0.59765625,0.5986328125,0.5556640625,0.4892578125,0.4326171875,0.4306640625,0.4853515625,0.5634765625,0.6181640625,0.6162109375,0.5595703125,0.4990234375,0.48046875,0.50390625,0.544921875,0.568359375,0.5498046875,0.4892578125,0.431640625,0.421875,0.46484375,0.5283203125,0.572265625,0.5654296875,0.509765625,0.43359375,0.34375,0.2802734375,0.2802734375,0.34375,0.43359375,0.509765625,0.583984375,0.6650390625,0.712890625,0.6943359375,0.615234375,0.517578125,0.439453125,0.365234375,0.28125,0.228515625,0.2421875,0.31640625,0.412109375,0.4892578125,0.5478515625,0.5654296875,0.54296875,0.5048828125,0.484375,0.5068359375,0.5693359375,0.6494140625,0.7431640625,0.8115234375,0.8134765625,0.7490234375,0.6572265625,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.431640625,0.388671875,0.392578125,0.44140625,0.5107421875,0.5595703125,0.5693359375,0.5556640625,0.5048828125,0.435546875,0.3876953125,0.3857421875,0.4306640625,0.5,0.5712890625,0.634765625,0.6669921875,0.658203125,0.6220703125,0.5888671875,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5673828125,0.515625,0.443359375,0.390625,0.3828125,0.423828125,0.4892578125,0.5478515625,0.55859375,0.51953125,0.4599609375,0.4208984375,0.4306640625,0.4892578125,0.5673828125,0.6591796875,0.724609375,0.724609375,0.6591796875,0.5673828125,0.4892578125,0.431640625,0.421875,0.4619140625,0.5224609375,0.5615234375,0.5498046875,0.4892578125,0.427734375,0.408203125,0.4326171875,0.4755859375,0.5029296875,0.4873046875,0.4296875,0.3671875,0.3349609375,0.35546875,0.423828125,0.5087890625,0.56640625,0.5791015625,0.56640625,0.5078125,0.4228515625,0.35546875,0.337890625,0.373046875,0.439453125,0.5126953125,0.5791015625,0.6201171875,0.6240234375,0.599609375,0.57421875,0.5693359375,0.560546875,0.5205078125,0.4658203125,0.43359375,0.4423828125,0.4912109375,0.5595703125,0.6337890625,0.708984375,0.744140625,0.708984375,0.615234375,0.5087890625,0.4296875,0.3544921875,0.271484375,0.220703125,0.23828125,0.318359375,0.4189453125,0.5,0.5712890625,0.634765625,0.6669921875,0.658203125,0.6220703125,0.5888671875,0.5791015625,0.5859375,0.6181640625,0.6552734375,0.66796875,0.640625,0.5810546875,0.509765625,0.4404296875,0.39453125,0.392578125,0.435546875,0.5,0.5478515625,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.4814453125,0.5087890625,0.501953125,0.4814453125,0.4755859375,0.505859375,0.5693359375,0.6474609375,0.734375,0.7880859375,0.7724609375,0.6923828125,0.5908203125,0.509765625,0.4404296875,0.39453125,0.392578125,0.435546875,0.5,0.5478515625,0.5595703125,0.556640625,0.5400390625,0.5107421875,0.474609375,0.4423828125,0.4248046875,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.412109375,0.3818359375,0.3486328125,0.3408203125,0.37109375,0.4306640625,0.5,0.568359375,0.6279296875,0.658203125,0.650390625,0.6171875,0.5869140625,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.3427734375,0.2529296875,0.1923828125,0.197265625,0.2666015625,0.361328125,0.439453125,0.5107421875,0.5791015625,0.6220703125,0.626953125,0.603515625,0.5771484375,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.578125,0.623046875,0.6220703125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.2783203125,0.2998046875,0.3837890625,0.4873046875,0.5693359375,0.6357421875,0.6708984375,0.65234375,0.5830078125,0.49609375,0.4345703125,0.419921875,0.41015625,0.375,0.3369140625,0.326171875,0.3564453125,0.41796875,0.4892578125,0.568359375,0.6552734375,0.708984375,0.6953125,0.6181640625,0.5185546875,0.439453125,0.3818359375,0.376953125,0.42578125,0.498046875,0.548828125,0.544921875,0.4892578125,0.4345703125,0.43359375,0.48828125,0.5654296875,0.619140625,0.6162109375,0.5595703125,0.4912109375,0.4404296875,0.4287109375,0.4599609375,0.5146484375,0.5576171875,0.5693359375,0.5673828125,0.5517578125,0.51953125,0.48046875,0.4453125,0.4248046875,0.419921875,0.421875,0.439453125,0.4736328125,0.5146484375,0.548828125,0.5673828125,0.5693359375,0.5771484375,0.6142578125,0.6630859375,0.689453125,0.67578125,0.6259765625,0.5595703125,0.5,0.4755859375,0.4892578125,0.515625,0.52734375,0.5009765625,0.439453125,0.384765625,0.3896484375,0.4560546875,0.5478515625,0.61328125,0.6162109375,0.5595703125,0.490234375,0.4384765625,0.4267578125,0.45703125,0.5107421875,0.55078125,0.5595703125,0.55859375,0.5595703125,0.5625,0.56640625,0.5693359375,0.5703125,0.5693359375,0.5576171875,0.515625,0.4619140625,0.431640625,0.443359375,0.4931640625,0.5595703125,0.6259765625,0.6748046875,0.685546875,0.65625,0.60546875,0.5673828125,0.5595703125,0.568359375,0.6015625,0.63671875,0.646484375,0.6171875,0.5576171875,0.4892578125,0.4345703125,0.43359375,0.48828125,0.5654296875,0.619140625,0.6162109375,0.5595703125,0.4794921875,0.37890625,0.298828125,0.2802734375,0.330078125,0.4130859375,0.4892578125,0.5556640625,0.5986328125,0.595703125,0.5478515625,0.48046875,0.4306640625,0.419921875,0.419921875,0.421875,0.4248046875,0.4296875,0.43359375,0.4375,0.439453125,0.4326171875,0.3994140625,0.3583984375,0.341796875,0.3642578125,0.4208984375,0.4892578125,0.5673828125,0.6591796875,0.7255859375,0.7275390625,0.6650390625,0.5751953125,0.5,0.4228515625,0.33203125,0.2666015625,0.263671875,0.3251953125,0.4140625,0.4892578125,0.56640625,0.658203125,0.7236328125,0.7255859375,0.6611328125,0.568359375,0.4892578125,0.4111328125,0.326171875,0.2744140625,0.29296875,0.375,0.4775390625,0.5595703125,0.6376953125,0.724609375,0.779296875,0.765625,0.6875,0.5888671875,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5205078125,0.5087890625,0.544921875,0.599609375,0.6337890625,0.6201171875,0.5595703125,0.486328125,0.419921875,0.3798828125,0.37890625,0.4052734375,0.4326171875,0.439453125,0.4423828125,0.45703125,0.4853515625,0.5185546875,0.5478515625,0.564453125,0.5693359375,0.5791015625,0.61328125,0.65234375,0.6630859375,0.6328125,0.5712890625,0.5,0.4375,0.41796875,0.4423828125,0.4853515625,0.513671875,0.498046875,0.439453125,0.384765625,0.3837890625,0.4384765625,0.515625,0.5693359375,0.56640625,0.509765625,0.451171875,0.44140625,0.482421875,0.5419921875,0.5810546875,0.5693359375,0.509765625,0.4296875,0.3330078125,0.26171875,0.255859375,0.318359375,0.41015625,0.4892578125,0.5712890625,0.6748046875,0.7607421875,0.783203125,0.7373046875,0.6552734375,0.5791015625,0.5,0.3994140625,0.3173828125,0.296875,0.34375,0.4248046875,0.5,0.5546875,0.556640625,0.5029296875,0.4267578125,0.373046875,0.3740234375,0.4296875,0.505859375,0.5986328125,0.6650390625,0.6689453125,0.6064453125,0.517578125,0.439453125,0.375,0.341796875,0.361328125,0.4287109375,0.51171875,0.568359375,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.439453125,0.3779296875,0.3466796875,0.353515625,0.384765625,0.4140625,0.419921875,0.41015625,0.37890625,0.345703125,0.3388671875,0.3701171875,0.4306640625,0.5,0.5634765625,0.603515625,0.5966796875,0.5458984375,0.4775390625,0.4296875,0.419921875,0.421875,0.4228515625,0.423828125,0.42578125,0.4267578125,0.427734375,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.5673828125,0.576171875,0.533203125,0.470703125,0.4296875,0.439453125,0.5,0.5791015625,0.673828125,0.7412109375,0.7431640625,0.6787109375,0.5869140625,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.453125,0.4501953125,0.50390625,0.580078125,0.6328125,0.6279296875,0.5693359375,0.49609375,0.42578125,0.37890625,0.3701171875,0.3896484375,0.4130859375,0.419921875,0.4130859375,0.390625,0.37109375,0.37890625,0.4228515625,0.4892578125,0.5595703125,0.6220703125,0.654296875,0.634765625,0.568359375,0.486328125,0.4306640625,0.419921875,0.412109375,0.375,0.326171875,0.2998046875,0.3134765625,0.36328125,0.4296875,0.509765625,0.6181640625,0.7158203125,0.75390625,0.720703125,0.6455078125,0.5693359375,0.48828125,0.384765625,0.3017578125,0.28125,0.330078125,0.4130859375,0.4892578125,0.556640625,0.6005859375,0.6005859375,0.5576171875,0.494140625,0.44921875,0.439453125,0.453125,0.5029296875,0.5712890625,0.6181640625,0.6201171875,0.576171875,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.43359375,0.4091796875,0.388671875,0.3955078125,0.439453125,0.5078125,0.5791015625,0.6337890625,0.6259765625,0.552734375,0.4521484375,0.376953125,0.3671875,0.419921875,0.498046875,0.6005859375,0.6875,0.7119140625,0.66796875,0.5869140625,0.509765625,0.4375,0.3759765625,0.345703125,0.357421875,0.3955078125,0.4296875,0.439453125,0.4443359375,0.462890625,0.4931640625,0.52734375,0.5546875,0.568359375,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5478515625,0.5,0.43359375,0.3857421875,0.3828125,0.4248046875,0.4892578125,0.5546875,0.5947265625,0.5908203125,0.54296875,0.4765625,0.4296875,0.419921875,0.4345703125,0.4951171875,0.58203125,0.65234375,0.673828125,0.642578125,0.5791015625,0.5029296875,0.41015625,0.3427734375,0.3369140625,0.396484375,0.4833984375,0.5595703125,0.623046875,0.658203125,0.64453125,0.583984375,0.505859375,0.4521484375,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.4130859375,0.3818359375,0.345703125,0.333984375,0.361328125,0.419921875,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.271484375,0.3173828125,0.4228515625,0.5380859375,0.6220703125,0.685546875,0.708984375,0.6630859375,0.5595703125,0.4375,0.3525390625,0.3251953125,0.30859375,0.2744140625,0.24609375,0.251953125,0.30078125,0.3740234375,0.4482421875,0.525390625,0.611328125,0.666015625,0.6572265625,0.587890625,0.4990234375,0.4287109375,0.376953125,0.3642578125,0.39453125,0.447265625,0.4873046875,0.48828125,0.4482421875,0.4091796875,0.4228515625,0.486328125,0.56640625,0.6201171875,0.6201171875,0.5703125,0.509765625,0.4658203125,0.4580078125,0.4931640625,0.552734375,0.6015625,0.6220703125,0.6259765625,0.6044921875,0.5478515625,0.4697265625,0.3935546875,0.34375,0.3251953125,0.32421875,0.3583984375,0.4296875,0.517578125,0.5888671875,0.623046875,0.6220703125,0.6171875,0.6328125,0.658203125,0.669921875,0.6572265625,0.619140625,0.5703125,0.525390625,0.5068359375,0.51171875,0.5224609375,0.517578125,0.4853515625,0.4287109375,0.3828125,0.396484375,0.4697265625,0.5634765625,0.6279296875,0.6279296875,0.5703125,0.501953125,0.455078125,0.4501953125,0.484375,0.5361328125,0.5703125,0.5703125,0.5625,0.5673828125,0.5849609375,0.607421875,0.6240234375,0.62890625,0.6220703125,0.603515625,0.5595703125,0.5087890625,0.4775390625,0.4833984375,0.5205078125,0.5703125,0.6181640625,0.6494140625,0.6513671875,0.625,0.5888671875,0.5673828125,0.5703125,0.583984375,0.6064453125,0.619140625,0.6044921875,0.5595703125,0.501953125,0.4482421875,0.4091796875,0.4228515625,0.486328125,0.56640625,0.6201171875,0.6201171875,0.5703125,0.4990234375,0.4033203125,0.3193359375,0.287109375,0.31640625,0.3828125,0.4482421875,0.5048828125,0.5341796875,0.5185546875,0.4609375,0.3876953125,0.3369140625,0.3251953125,0.326171875,0.3330078125,0.3486328125,0.37109375,0.396484375,0.4169921875,0.4287109375,0.4306640625,0.4052734375,0.365234375,0.33984375,0.34765625,0.3896484375,0.4482421875,0.515625,0.5966796875,0.6572265625,0.6669921875,0.623046875,0.556640625,0.5,0.44140625,0.3681640625,0.3095703125,0.2958984375,0.33203125,0.392578125,0.4482421875,0.5078125,0.5859375,0.6494140625,0.658203125,0.6064453125,0.5244140625,0.4482421875,0.37109375,0.2919921875,0.251953125,0.2841796875,0.37890625,0.4873046875,0.5703125,0.6474609375,0.7333984375,0.7880859375,0.779296875,0.7099609375,0.62109375,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.62109375,0.60546875,0.625,0.6533203125,0.6630859375,0.6337890625,0.5703125,0.4970703125,0.427734375,0.3828125,0.3759765625,0.3974609375,0.421875,0.4287109375,0.431640625,0.44921875,0.484375,0.53125,0.576171875,0.607421875,0.6220703125,0.638671875,0.673828125,0.701171875,0.6953125,0.646484375,0.5732421875,0.5,0.435546875,0.404296875,0.4130859375,0.4462890625,0.474609375,0.470703125,0.4287109375,0.390625,0.404296875,0.4677734375,0.5478515625,0.6015625,0.6005859375,0.55078125,0.501953125,0.498046875,0.5400390625,0.5966796875,0.62890625,0.6123046875,0.55078125,0.46875,0.3623046875,0.2724609375,0.2451171875,0.2890625,0.3701171875,0.4482421875,0.53125,0.646484375,0.755859375,0.8115234375,0.796875,0.7373046875,0.673828125,0.6025390625,0.5068359375,0.4189453125,0.376953125,0.3935546875,0.4453125,0.5,0.5390625,0.5322265625,0.4765625,0.400390625,0.3447265625,0.337890625,0.376953125,0.4365234375,0.515625,0.58203125,0.6005859375,0.5625,0.494140625,0.4287109375,0.3759765625,0.3671875,0.41796875,0.5126953125,0.611328125,0.6689453125,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.4873046875,0.421875,0.3671875,0.337890625,0.33203125,0.33203125,0.3251953125,0.3125,0.296875,0.294921875,0.32421875,0.3798828125,0.4443359375,0.5,0.5439453125,0.5537109375,0.5166015625,0.4443359375,0.3701171875,0.3271484375,0.3251953125,0.3359375,0.34375,0.3486328125,0.353515625,0.359375,0.3671875,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.599609375,0.5966796875,0.54296875,0.47265625,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.744140625,0.7529296875,0.7001953125,0.6201171875,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.5029296875,0.5087890625,0.56640625,0.6416015625,0.689453125,0.681640625,0.6220703125,0.544921875,0.45703125,0.376953125,0.3291015625,0.31640625,0.322265625,0.3251953125,0.32421875,0.32421875,0.3408203125,0.3837890625,0.4482421875,0.5146484375,0.5703125,0.6123046875,0.6142578125,0.5615234375,0.470703125,0.3798828125,0.328125,0.3251953125,0.330078125,0.314453125,0.2900390625,0.27734375,0.2900390625,0.328125,0.376953125,0.4423828125,0.55078125,0.6689453125,0.7421875,0.7451171875,0.6923828125,0.6220703125,0.5390625,0.4296875,0.33203125,0.291015625,0.31640625,0.3818359375,0.4482421875,0.505859375,0.5419921875,0.5419921875,0.505859375,0.4580078125,0.427734375,0.4287109375,0.4501953125,0.5087890625,0.5830078125,0.6376953125,0.6455078125,0.609375,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.42578125,0.419921875,0.4287109375,0.4677734375,0.533203125,0.6083984375,0.673828125,0.7177734375,0.6904296875,0.5869140625,0.447265625,0.3330078125,0.29296875,0.3251953125,0.390625,0.4970703125,0.6103515625,0.6787109375,0.677734375,0.623046875,0.55078125,0.4775390625,0.404296875,0.35546875,0.349609375,0.376953125,0.412109375,0.4287109375,0.4453125,0.482421875,0.53515625,0.5859375,0.619140625,0.62890625,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.560546875,0.515625,0.4501953125,0.396484375,0.37890625,0.4013671875,0.4482421875,0.4931640625,0.509765625,0.484375,0.42578125,0.3623046875,0.3251953125,0.3251953125,0.3505859375,0.4306640625,0.5478515625,0.6572265625,0.7177734375,0.7158203125,0.673828125,0.6142578125,0.53515625,0.46484375,0.4375,0.4619140625,0.515625,0.5703125,0.6162109375,0.63671875,0.6142578125,0.5556640625,0.486328125,0.439453125,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.330078125,0.31640625,0.30078125,0.3017578125,0.3330078125,0.38671875,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.2421875,0.3056640625,0.4267578125,0.5498046875,0.634765625,0.69921875,0.7216796875,0.6708984375,0.5517578125,0.41015625,0.3037109375,0.2587890625,0.2265625,0.181640625,0.154296875,0.1708984375,0.2333984375,0.3173828125,0.39453125,0.47265625,0.560546875,0.6240234375,0.6328125,0.5869140625,0.521484375,0.46875,0.42578125,0.39453125,0.3837890625,0.3916015625,0.4052734375,0.408203125,0.39453125,0.3857421875,0.4140625,0.474609375,0.5380859375,0.57421875,0.568359375,0.5302734375,0.484375,0.44921875,0.4443359375,0.48046875,0.5419921875,0.6005859375,0.634765625,0.6552734375,0.64453125,0.5849609375,0.4853515625,0.376953125,0.296875,0.2587890625,0.24609375,0.287109375,0.3857421875,0.5078125,0.6064453125,0.6484375,0.634765625,0.609375,0.5888671875,0.57421875,0.5654296875,0.55859375,0.546875,0.5302734375,0.5166015625,0.521484375,0.5380859375,0.5498046875,0.5419921875,0.51171875,0.46875,0.4365234375,0.4521484375,0.5107421875,0.576171875,0.6103515625,0.591796875,0.5302734375,0.4638671875,0.4267578125,0.4326171875,0.474609375,0.5234375,0.5458984375,0.5302734375,0.5107421875,0.51953125,0.5576171875,0.607421875,0.6455078125,0.654296875,0.634765625,0.6044921875,0.5615234375,0.5185546875,0.494140625,0.494140625,0.509765625,0.5302734375,0.544921875,0.54296875,0.52734375,0.5078125,0.4990234375,0.5068359375,0.5302734375,0.5546875,0.5693359375,0.5576171875,0.5185546875,0.46484375,0.419921875,0.39453125,0.3857421875,0.4140625,0.474609375,0.5380859375,0.57421875,0.568359375,0.5302734375,0.4765625,0.400390625,0.328125,0.2919921875,0.3037109375,0.3466796875,0.39453125,0.435546875,0.4521484375,0.4306640625,0.375,0.3115234375,0.2685546875,0.2587890625,0.259765625,0.2705078125,0.2978515625,0.341796875,0.3935546875,0.4384765625,0.46875,0.486328125,0.470703125,0.4248046875,0.375,0.3466796875,0.35546875,0.39453125,0.443359375,0.5009765625,0.546875,0.5634765625,0.548828125,0.521484375,0.5,0.4755859375,0.4384765625,0.3974609375,0.369140625,0.36328125,0.3759765625,0.39453125,0.4228515625,0.478515625,0.53515625,0.5576171875,0.5302734375,0.466796875,0.39453125,0.3173828125,0.240234375,0.2041015625,0.2392578125,0.3359375,0.447265625,0.5302734375,0.607421875,0.6953125,0.7587890625,0.767578125,0.72265625,0.6572265625,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.701171875,0.6845703125,0.6826171875,0.67578125,0.6494140625,0.5986328125,0.5302734375,0.458984375,0.3984375,0.3720703125,0.38671875,0.4267578125,0.4609375,0.46875,0.4697265625,0.474609375,0.4912109375,0.5244140625,0.56640625,0.60546875,0.634765625,0.6669921875,0.7119140625,0.740234375,0.7236328125,0.66015625,0.576171875,0.5,0.431640625,0.38671875,0.380859375,0.4111328125,0.4541015625,0.478515625,0.46875,0.4599609375,0.4892578125,0.5498046875,0.6123046875,0.6484375,0.642578125,0.6044921875,0.5703125,0.5791015625,0.6240234375,0.673828125,0.6943359375,0.66796875,0.6044921875,0.51953125,0.400390625,0.287109375,0.2314453125,0.2509765625,0.3193359375,0.39453125,0.478515625,0.599609375,0.7236328125,0.8037109375,0.8193359375,0.7861328125,0.740234375,0.6875,0.6142578125,0.5380859375,0.4853515625,0.4697265625,0.48046875,0.5,0.51171875,0.4990234375,0.4580078125,0.40625,0.365234375,0.3515625,0.3642578125,0.3916015625,0.4443359375,0.5048828125,0.5439453125,0.544921875,0.513671875,0.46875,0.4345703125,0.4501953125,0.521484375,0.6240234375,0.712890625,0.7529296875,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.5556640625,0.49609375,0.4306640625,0.369140625,0.3212890625,0.2861328125,0.2587890625,0.236328125,0.2353515625,0.26953125,0.3369140625,0.4130859375,0.4716796875,0.5,0.5087890625,0.4775390625,0.408203125,0.3251953125,0.2626953125,0.2412109375,0.2587890625,0.283203125,0.2998046875,0.30859375,0.314453125,0.3232421875,0.33984375,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.63671875,0.615234375,0.546875,0.46875,0.4248046875,0.4384765625,0.5,0.578125,0.669921875,0.740234375,0.7568359375,0.71875,0.65625,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.5712890625,0.5830078125,0.6357421875,0.6923828125,0.7197265625,0.697265625,0.634765625,0.556640625,0.4580078125,0.361328125,0.2919921875,0.26171875,0.2578125,0.2587890625,0.2626953125,0.2841796875,0.3310546875,0.39453125,0.4580078125,0.5048828125,0.5302734375,0.5380859375,0.50390625,0.427734375,0.3369140625,0.2666015625,0.2421875,0.2587890625,0.2841796875,0.3056640625,0.3193359375,0.328125,0.3359375,0.3466796875,0.3642578125,0.3984375,0.4873046875,0.6044921875,0.6982421875,0.7314453125,0.701171875,0.634765625,0.5537109375,0.4453125,0.3447265625,0.2919921875,0.30078125,0.345703125,0.39453125,0.4365234375,0.4638671875,0.46875,0.4580078125,0.4462890625,0.4482421875,0.46875,0.50390625,0.56640625,0.6357421875,0.6787109375,0.681640625,0.6494140625,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.46875,0.4755859375,0.501953125,0.5546875,0.6240234375,0.689453125,0.740234375,0.7705078125,0.734375,0.62109375,0.466796875,0.3291015625,0.2578125,0.2587890625,0.294921875,0.392578125,0.52734375,0.640625,0.6904296875,0.6689453125,0.6044921875,0.5283203125,0.443359375,0.380859375,0.3642578125,0.392578125,0.4365234375,0.46875,0.501953125,0.556640625,0.619140625,0.662109375,0.6748046875,0.66015625,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5244140625,0.4970703125,0.4521484375,0.408203125,0.3818359375,0.37890625,0.39453125,0.40625,0.3876953125,0.341796875,0.287109375,0.2470703125,0.2392578125,0.2587890625,0.298828125,0.38671875,0.513671875,0.6376953125,0.7216796875,0.7509765625,0.740234375,0.7138671875,0.6640625,0.599609375,0.5439453125,0.5146484375,0.513671875,0.5302734375,0.546875,0.5537109375,0.54296875,0.51953125,0.4912109375,0.4736328125,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.28125,0.291015625,0.2919921875,0.2978515625,0.31640625,0.3505859375,0.39453125,0.4462890625,0.521484375,0.607421875,0.2119140625,0.275390625,0.3955078125,0.51953125,0.6044921875,0.6728515625,0.708984375,0.6796875,0.5771484375,0.4375,0.3212890625,0.2587890625,0.20703125,0.1455078125,0.1064453125,0.123046875,0.1943359375,0.28515625,0.3642578125,0.44140625,0.529296875,0.599609375,0.6240234375,0.6025390625,0.5615234375,0.5302734375,0.498046875,0.447265625,0.3916015625,0.3505859375,0.3369140625,0.345703125,0.3642578125,0.388671875,0.4306640625,0.4775390625,0.5078125,0.5126953125,0.4951171875,0.46875,0.4404296875,0.4111328125,0.40234375,0.4306640625,0.4892578125,0.5537109375,0.6044921875,0.6474609375,0.6640625,0.6298828125,0.5380859375,0.4189453125,0.3173828125,0.2587890625,0.2294921875,0.2646484375,0.3671875,0.4970703125,0.599609375,0.634765625,0.6044921875,0.5546875,0.494140625,0.44140625,0.4169921875,0.423828125,0.447265625,0.46875,0.4931640625,0.529296875,0.56640625,0.5849609375,0.580078125,0.556640625,0.5302734375,0.5126953125,0.52734375,0.5625,0.587890625,0.5810546875,0.537109375,0.46875,0.4052734375,0.3798828125,0.400390625,0.44921875,0.4951171875,0.5029296875,0.46875,0.4345703125,0.4443359375,0.5,0.57421875,0.6298828125,0.6396484375,0.6044921875,0.5595703125,0.521484375,0.4970703125,0.48828125,0.48828125,0.484375,0.46875,0.4443359375,0.404296875,0.3671875,0.35546875,0.3779296875,0.4228515625,0.46875,0.5078125,0.517578125,0.48828125,0.43359375,0.3798828125,0.3544921875,0.3642578125,0.388671875,0.4306640625,0.4775390625,0.5078125,0.5126953125,0.4951171875,0.46875,0.4375,0.3896484375,0.341796875,0.314453125,0.3154296875,0.3369140625,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.2587890625,0.265625,0.2919921875,0.3447265625,0.4130859375,0.4794921875,0.5302734375,0.56640625,0.564453125,0.515625,0.44140625,0.3759765625,0.3486328125,0.3642578125,0.390625,0.4150390625,0.435546875,0.4521484375,0.466796875,0.4814453125,0.5,0.517578125,0.525390625,0.513671875,0.4775390625,0.4296875,0.388671875,0.3642578125,0.35546875,0.3837890625,0.43359375,0.4716796875,0.47265625,0.431640625,0.3642578125,0.287109375,0.205078125,0.162109375,0.189453125,0.2802734375,0.38671875,0.46875,0.546875,0.634765625,0.7041015625,0.728515625,0.7080078125,0.6669921875,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.7177734375,0.7080078125,0.6953125,0.666015625,0.611328125,0.5419921875,0.46875,0.400390625,0.35546875,0.3564453125,0.40234375,0.4697265625,0.5185546875,0.5302734375,0.525390625,0.5078125,0.4912109375,0.4912109375,0.5166015625,0.55859375,0.6044921875,0.65625,0.71875,0.7568359375,0.740234375,0.669921875,0.578125,0.5,0.427734375,0.3681640625,0.34765625,0.3779296875,0.44140625,0.5009765625,0.5302734375,0.5546875,0.5966796875,0.642578125,0.673828125,0.6787109375,0.6611328125,0.634765625,0.619140625,0.6416015625,0.6904296875,0.7314453125,0.73828125,0.701171875,0.634765625,0.548828125,0.421875,0.294921875,0.2236328125,0.2294921875,0.291015625,0.3642578125,0.4462890625,0.5595703125,0.6767578125,0.7568359375,0.7822265625,0.7666015625,0.740234375,0.7119140625,0.673828125,0.6298828125,0.5849609375,0.5478515625,0.51953125,0.5,0.4814453125,0.4658203125,0.453125,0.44140625,0.4287109375,0.4130859375,0.39453125,0.3828125,0.400390625,0.447265625,0.501953125,0.5419921875,0.5498046875,0.5302734375,0.515625,0.5478515625,0.6240234375,0.7099609375,0.767578125,0.775390625,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.6064453125,0.568359375,0.513671875,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.22265625,0.23046875,0.2900390625,0.3798828125,0.4638671875,0.505859375,0.5,0.46875,0.3994140625,0.30859375,0.234375,0.203125,0.2177734375,0.2587890625,0.2998046875,0.3232421875,0.328125,0.3251953125,0.330078125,0.353515625,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.6474609375,0.6083984375,0.5302734375,0.4521484375,0.416015625,0.4365234375,0.5,0.576171875,0.66015625,0.7236328125,0.740234375,0.7119140625,0.6669921875,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.6181640625,0.6376953125,0.6787109375,0.712890625,0.7119140625,0.671875,0.6044921875,0.5263671875,0.4326171875,0.341796875,0.28125,0.2568359375,0.2568359375,0.2587890625,0.2666015625,0.302734375,0.3642578125,0.427734375,0.470703125,0.482421875,0.46875,0.439453125,0.3740234375,0.2900390625,0.22265625,0.1982421875,0.216796875,0.2587890625,0.30859375,0.369140625,0.421875,0.447265625,0.439453125,0.416015625,0.39453125,0.390625,0.4443359375,0.541015625,0.634765625,0.6826171875,0.6669921875,0.6044921875,0.525390625,0.4287109375,0.341796875,0.2978515625,0.3017578125,0.333984375,0.3642578125,0.3876953125,0.400390625,0.408203125,0.421875,0.447265625,0.4853515625,0.5302734375,0.580078125,0.6416015625,0.6923828125,0.712890625,0.697265625,0.6640625,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.53125,0.541015625,0.568359375,0.61328125,0.6650390625,0.7099609375,0.740234375,0.7568359375,0.7294921875,0.640625,0.5107421875,0.3798828125,0.2919921875,0.2587890625,0.2587890625,0.3330078125,0.466796875,0.6044921875,0.689453125,0.693359375,0.634765625,0.556640625,0.46484375,0.39453125,0.3779296875,0.416015625,0.478515625,0.5302734375,0.58203125,0.650390625,0.708984375,0.7294921875,0.7041015625,0.6533203125,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.4697265625,0.4677734375,0.4580078125,0.4384765625,0.4111328125,0.384765625,0.3642578125,0.3369140625,0.2841796875,0.2236328125,0.1845703125,0.18359375,0.21484375,0.2587890625,0.3115234375,0.392578125,0.494140625,0.59375,0.6708984375,0.716796875,0.740234375,0.7548828125,0.7470703125,0.7041015625,0.6328125,0.5546875,0.49609375,0.46875,0.4521484375,0.4453125,0.4560546875,0.4794921875,0.5078125,0.525390625,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3017578125,0.33203125,0.3447265625,0.341796875,0.3369140625,0.341796875,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.201171875,0.2470703125,0.3525390625,0.4677734375,0.55078125,0.6240234375,0.6845703125,0.693359375,0.6298828125,0.5146484375,0.400390625,0.3251953125,0.2568359375,0.1767578125,0.1240234375,0.1328125,0.203125,0.2978515625,0.376953125,0.453125,0.53515625,0.5986328125,0.6240234375,0.611328125,0.5859375,0.5703125,0.548828125,0.4873046875,0.4052734375,0.3369140625,0.310546875,0.3310546875,0.376953125,0.4296875,0.4794921875,0.5078125,0.50390625,0.4755859375,0.4453125,0.4287109375,0.4130859375,0.384765625,0.3642578125,0.375,0.421875,0.4873046875,0.55078125,0.6142578125,0.6669921875,0.673828125,0.6142578125,0.5068359375,0.3994140625,0.3251953125,0.279296875,0.2978515625,0.3828125,0.494140625,0.5791015625,0.5966796875,0.55078125,0.4814453125,0.392578125,0.3154296875,0.2880859375,0.3154296875,0.3740234375,0.4287109375,0.4833984375,0.5439453125,0.5927734375,0.6123046875,0.6044921875,0.583984375,0.5703125,0.56640625,0.583984375,0.603515625,0.6015625,0.564453125,0.5009765625,0.4287109375,0.3681640625,0.3505859375,0.3837890625,0.439453125,0.4814453125,0.478515625,0.4287109375,0.380859375,0.38671875,0.4482421875,0.5322265625,0.59375,0.599609375,0.55078125,0.49609375,0.4658203125,0.46484375,0.48046875,0.4892578125,0.47265625,0.4287109375,0.37109375,0.2978515625,0.2431640625,0.23828125,0.2880859375,0.3623046875,0.4287109375,0.48046875,0.4892578125,0.451171875,0.3896484375,0.341796875,0.337890625,0.376953125,0.4296875,0.4794921875,0.5078125,0.50390625,0.4755859375,0.4453125,0.4287109375,0.416015625,0.396484375,0.375,0.361328125,0.359375,0.3671875,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.3232421875,0.31640625,0.3251953125,0.3642578125,0.4296875,0.5048828125,0.5703125,0.6240234375,0.6396484375,0.599609375,0.5185546875,0.431640625,0.3798828125,0.376953125,0.3828125,0.3759765625,0.3671875,0.373046875,0.40234375,0.4482421875,0.5,0.5537109375,0.60546875,0.6259765625,0.5927734375,0.5185546875,0.4365234375,0.376953125,0.337890625,0.341796875,0.3857421875,0.4384765625,0.462890625,0.4404296875,0.376953125,0.298828125,0.2109375,0.15625,0.1689453125,0.248046875,0.34765625,0.4287109375,0.5048828125,0.5869140625,0.650390625,0.67578125,0.6630859375,0.6376953125,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.66796875,0.671875,0.6689453125,0.638671875,0.5791015625,0.5029296875,0.4287109375,0.3623046875,0.3271484375,0.345703125,0.4130859375,0.498046875,0.556640625,0.5703125,0.5615234375,0.5234375,0.4736328125,0.4423828125,0.44921875,0.4921875,0.55078125,0.6201171875,0.7001953125,0.7529296875,0.744140625,0.673828125,0.5791015625,0.5,0.423828125,0.3505859375,0.3154296875,0.3427734375,0.4208984375,0.5087890625,0.5703125,0.6220703125,0.671875,0.7001953125,0.697265625,0.6689453125,0.6376953125,0.6220703125,0.62109375,0.6552734375,0.70703125,0.7421875,0.736328125,0.6904296875,0.6220703125,0.5361328125,0.412109375,0.291015625,0.2265625,0.2392578125,0.3037109375,0.376953125,0.455078125,0.5498046875,0.63671875,0.689453125,0.7001953125,0.6865234375,0.673828125,0.666015625,0.6669921875,0.6640625,0.64453125,0.6044921875,0.5517578125,0.5,0.4560546875,0.4423828125,0.458984375,0.48828125,0.505859375,0.4912109375,0.4482421875,0.40234375,0.3857421875,0.412109375,0.4697265625,0.533203125,0.5703125,0.5703125,0.5712890625,0.611328125,0.6787109375,0.736328125,0.755859375,0.7294921875,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.61328125,0.60546875,0.5830078125,0.53515625,0.4658203125,0.390625,0.3251953125,0.27734375,0.283203125,0.3486328125,0.4423828125,0.5166015625,0.5361328125,0.5,0.4375,0.34375,0.2490234375,0.19921875,0.2099609375,0.2626953125,0.3251953125,0.3798828125,0.4033203125,0.396484375,0.376953125,0.3701171875,0.3935546875,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.619140625,0.5703125,0.4912109375,0.423828125,0.40234375,0.43359375,0.5,0.5732421875,0.646484375,0.6953125,0.701171875,0.673828125,0.638671875,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.6201171875,0.6455078125,0.681640625,0.697265625,0.67578125,0.62109375,0.55078125,0.4765625,0.396484375,0.3330078125,0.3037109375,0.306640625,0.3212890625,0.3251953125,0.3349609375,0.376953125,0.4384765625,0.4873046875,0.5009765625,0.4765625,0.4287109375,0.3681640625,0.283203125,0.205078125,0.1728515625,0.19921875,0.26171875,0.3251953125,0.3955078125,0.484375,0.5615234375,0.5888671875,0.5615234375,0.5029296875,0.4482421875,0.41015625,0.427734375,0.4951171875,0.57421875,0.6220703125,0.611328125,0.55078125,0.4755859375,0.396484375,0.3369140625,0.31640625,0.3330078125,0.361328125,0.376953125,0.3837890625,0.37890625,0.3779296875,0.3984375,0.4453125,0.5068359375,0.5703125,0.6328125,0.689453125,0.7197265625,0.7119140625,0.67578125,0.638671875,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5712890625,0.5771484375,0.5927734375,0.6162109375,0.640625,0.6611328125,0.673828125,0.6826171875,0.677734375,0.6396484375,0.5654296875,0.470703125,0.384765625,0.3251953125,0.29296875,0.3330078125,0.443359375,0.5732421875,0.6640625,0.677734375,0.6220703125,0.5419921875,0.4482421875,0.376953125,0.3681640625,0.4208984375,0.501953125,0.5703125,0.6376953125,0.7158203125,0.7685546875,0.763671875,0.7021484375,0.6201171875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.4345703125,0.4580078125,0.484375,0.4921875,0.4716796875,0.427734375,0.376953125,0.318359375,0.2392578125,0.171875,0.154296875,0.1923828125,0.259765625,0.3251953125,0.38671875,0.443359375,0.4951171875,0.5390625,0.580078125,0.6240234375,0.673828125,0.724609375,0.76171875,0.7548828125,0.689453125,0.587890625,0.4912109375,0.4287109375,0.3828125,0.3623046875,0.384765625,0.443359375,0.5126953125,0.5595703125,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.384765625,0.4296875,0.4453125,0.4287109375,0.396484375,0.375,0.376953125,0.39453125,0.4375,0.505859375,0.21875,0.2392578125,0.32421875,0.427734375,0.509765625,0.5869140625,0.6689453125,0.71484375,0.6904296875,0.603515625,0.5,0.419921875,0.341796875,0.25,0.185546875,0.1875,0.255859375,0.349609375,0.4296875,0.5029296875,0.572265625,0.615234375,0.6201171875,0.5947265625,0.568359375,0.5595703125,0.544921875,0.48828125,0.408203125,0.345703125,0.3310546875,0.3662109375,0.4296875,0.4970703125,0.548828125,0.5654296875,0.5390625,0.490234375,0.4501953125,0.439453125,0.4296875,0.396484375,0.359375,0.3486328125,0.37890625,0.439453125,0.509765625,0.5849609375,0.666015625,0.7119140625,0.6875,0.6025390625,0.5,0.419921875,0.36328125,0.3642578125,0.4228515625,0.505859375,0.5654296875,0.5654296875,0.509765625,0.4306640625,0.3310546875,0.2509765625,0.2333984375,0.283203125,0.365234375,0.439453125,0.5087890625,0.5751953125,0.615234375,0.619140625,0.59375,0.5673828125,0.5595703125,0.564453125,0.5908203125,0.6171875,0.6171875,0.578125,0.51171875,0.439453125,0.3798828125,0.3681640625,0.4072265625,0.466796875,0.5078125,0.498046875,0.439453125,0.3828125,0.380859375,0.435546875,0.513671875,0.568359375,0.56640625,0.509765625,0.44921875,0.4296875,0.4521484375,0.4921875,0.515625,0.498046875,0.439453125,0.36328125,0.2724609375,0.2080078125,0.20703125,0.271484375,0.3623046875,0.439453125,0.498046875,0.5087890625,0.4677734375,0.4072265625,0.365234375,0.373046875,0.4296875,0.4970703125,0.548828125,0.5654296875,0.5390625,0.490234375,0.4501953125,0.439453125,0.4375,0.4345703125,0.4306640625,0.427734375,0.4267578125,0.427734375,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.4130859375,0.3896484375,0.3681640625,0.3759765625,0.419921875,0.48828125,0.5595703125,0.6240234375,0.6591796875,0.6416015625,0.5771484375,0.49609375,0.4404296875,0.4296875,0.423828125,0.3935546875,0.3583984375,0.3466796875,0.3740234375,0.431640625,0.5,0.57421875,0.6552734375,0.703125,0.6845703125,0.60546875,0.5078125,0.4296875,0.373046875,0.365234375,0.4052734375,0.46484375,0.5029296875,0.490234375,0.4296875,0.3505859375,0.2568359375,0.1923828125,0.1953125,0.2646484375,0.359375,0.439453125,0.5126953125,0.58203125,0.625,0.6298828125,0.60546875,0.578125,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.583984375,0.607421875,0.6298828125,0.6240234375,0.5810546875,0.5126953125,0.439453125,0.373046875,0.3349609375,0.3486328125,0.41015625,0.490234375,0.546875,0.5595703125,0.548828125,0.501953125,0.4384765625,0.3955078125,0.3974609375,0.4423828125,0.509765625,0.5869140625,0.6787109375,0.7431640625,0.7412109375,0.673828125,0.5791015625,0.5,0.421875,0.3369140625,0.2861328125,0.302734375,0.3828125,0.4814453125,0.5595703125,0.6259765625,0.6787109375,0.6943359375,0.6689453125,0.6201171875,0.580078125,0.5693359375,0.5771484375,0.6181640625,0.6708984375,0.7021484375,0.6904296875,0.638671875,0.5693359375,0.486328125,0.375,0.27734375,0.240234375,0.2763671875,0.353515625,0.4296875,0.5029296875,0.5751953125,0.623046875,0.6328125,0.6123046875,0.5869140625,0.5791015625,0.5849609375,0.6142578125,0.6474609375,0.6552734375,0.6259765625,0.5673828125,0.5,0.4423828125,0.4306640625,0.466796875,0.5224609375,0.55859375,0.546875,0.4892578125,0.4248046875,0.384765625,0.388671875,0.4365234375,0.5029296875,0.5498046875,0.5595703125,0.568359375,0.609375,0.666015625,0.7021484375,0.6943359375,0.646484375,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.57421875,0.595703125,0.6142578125,0.6044921875,0.5595703125,0.4912109375,0.419921875,0.36328125,0.361328125,0.4169921875,0.4970703125,0.5537109375,0.5546875,0.5,0.421875,0.3212890625,0.23828125,0.216796875,0.2626953125,0.34375,0.419921875,0.4794921875,0.4990234375,0.474609375,0.4345703125,0.41015625,0.4296875,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5595703125,0.5107421875,0.44140625,0.392578125,0.388671875,0.431640625,0.5,0.5712890625,0.6328125,0.6630859375,0.65234375,0.61328125,0.5791015625,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.576171875,0.609375,0.6494140625,0.6640625,0.638671875,0.580078125,0.509765625,0.4375,0.3740234375,0.3408203125,0.34765625,0.380859375,0.412109375,0.419921875,0.4296875,0.4716796875,0.52734375,0.5615234375,0.5537109375,0.505859375,0.439453125,0.36328125,0.26953125,0.2001953125,0.1943359375,0.25390625,0.3427734375,0.419921875,0.4990234375,0.5986328125,0.677734375,0.6953125,0.646484375,0.564453125,0.4892578125,0.43359375,0.427734375,0.47265625,0.537109375,0.5791015625,0.5693359375,0.509765625,0.4375,0.375,0.341796875,0.3505859375,0.38671875,0.419921875,0.4296875,0.4248046875,0.400390625,0.3779296875,0.3818359375,0.4228515625,0.48828125,0.5595703125,0.6279296875,0.681640625,0.697265625,0.671875,0.62109375,0.580078125,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.564453125,0.568359375,0.5732421875,0.5771484375,0.5791015625,0.5869140625,0.6083984375,0.6240234375,0.6103515625,0.560546875,0.490234375,0.419921875,0.3671875,0.376953125,0.451171875,0.5498046875,0.6201171875,0.6259765625,0.5693359375,0.4892578125,0.3955078125,0.3271484375,0.3251953125,0.3896484375,0.4814453125,0.5595703125,0.6357421875,0.7216796875,0.7763671875,0.7626953125,0.6865234375,0.5888671875,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.44921875,0.4873046875,0.5361328125,0.5625,0.5478515625,0.49609375,0.4296875,0.353515625,0.26171875,0.1943359375,0.19140625,0.2529296875,0.3427734375,0.419921875,0.482421875,0.5126953125,0.5107421875,0.494140625,0.490234375,0.5185546875,0.5791015625,0.65234375,0.724609375,0.7568359375,0.720703125,0.6259765625,0.5185546875,0.439453125,0.3759765625,0.3408203125,0.3544921875,0.4150390625,0.4931640625,0.546875,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.48828125,0.5390625,0.5537109375,0.525390625,0.4755859375,0.4375,0.4296875,0.4345703125,0.4541015625,0.48828125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.3154296875,0.298828125,0.349609375,0.43359375,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5009765625,0.4091796875,0.3427734375,0.3408203125,0.4033203125,0.4931640625,0.5693359375,0.6328125,0.66796875,0.6533203125,0.5908203125,0.5107421875,0.4541015625,0.439453125,0.431640625,0.4052734375,0.3828125,0.3896484375,0.435546875,0.505859375,0.5791015625,0.6484375,0.69921875,0.708984375,0.6748046875,0.619140625,0.578125,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.5693359375,0.671875,0.755859375,0.7783203125,0.73046875,0.646484375,0.5693359375,0.5068359375,0.484375,0.5048828125,0.54296875,0.5654296875,0.5478515625,0.4892578125,0.4150390625,0.333984375,0.2880859375,0.310546875,0.39453125,0.498046875,0.5791015625,0.6455078125,0.681640625,0.6630859375,0.595703125,0.51171875,0.453125,0.439453125,0.4521484375,0.505859375,0.583984375,0.64453125,0.658203125,0.623046875,0.5595703125,0.5029296875,0.494140625,0.53515625,0.5947265625,0.6318359375,0.619140625,0.5595703125,0.498046875,0.4775390625,0.501953125,0.5458984375,0.5732421875,0.5576171875,0.5,0.4443359375,0.4453125,0.501953125,0.58203125,0.6376953125,0.6357421875,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.62890625,0.638671875,0.595703125,0.5322265625,0.490234375,0.5,0.5595703125,0.6298828125,0.6845703125,0.7021484375,0.6767578125,0.6279296875,0.5888671875,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5654296875,0.505859375,0.41796875,0.345703125,0.3232421875,0.35546875,0.419921875,0.4912109375,0.5615234375,0.609375,0.6201171875,0.6005859375,0.5771484375,0.5693359375,0.5556640625,0.5048828125,0.435546875,0.3876953125,0.3857421875,0.4306640625,0.5,0.5810546875,0.68359375,0.765625,0.7841796875,0.7333984375,0.6474609375,0.5693359375,0.5087890625,0.49609375,0.533203125,0.58984375,0.6279296875,0.6181640625,0.5595703125,0.4814453125,0.390625,0.3271484375,0.3271484375,0.392578125,0.4833984375,0.5595703125,0.6220703125,0.654296875,0.634765625,0.568359375,0.486328125,0.4306640625,0.419921875,0.421875,0.423828125,0.427734375,0.431640625,0.435546875,0.4375,0.439453125,0.4541015625,0.5126953125,0.595703125,0.6591796875,0.673828125,0.63671875,0.5693359375,0.49609375,0.42578125,0.37890625,0.3701171875,0.3896484375,0.4130859375,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.5869140625,0.6767578125,0.73828125,0.7353515625,0.66796875,0.576171875,0.5,0.421875,0.3212890625,0.23828125,0.216796875,0.2626953125,0.34375,0.419921875,0.4873046875,0.5380859375,0.5498046875,0.51953125,0.4677734375,0.427734375,0.419921875,0.431640625,0.4755859375,0.533203125,0.5673828125,0.5576171875,0.5078125,0.439453125,0.3642578125,0.287109375,0.25,0.283203125,0.3779296875,0.486328125,0.5693359375,0.6357421875,0.669921875,0.6513671875,0.5830078125,0.4990234375,0.44140625,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.4501953125,0.4365234375,0.4697265625,0.5234375,0.55859375,0.546875,0.4892578125,0.421875,0.3662109375,0.341796875,0.357421875,0.3974609375,0.431640625,0.439453125,0.44921875,0.490234375,0.5419921875,0.572265625,0.55859375,0.5078125,0.439453125,0.37109375,0.3173828125,0.2998046875,0.32421875,0.3720703125,0.41015625,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.51953125,0.5,0.5224609375,0.5615234375,0.5830078125,0.5615234375,0.5,0.421875,0.3369140625,0.2880859375,0.3095703125,0.3935546875,0.498046875,0.5791015625,0.6376953125,0.640625,0.5859375,0.5078125,0.4521484375,0.453125,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.564453125,0.607421875,0.6064453125,0.5615234375,0.498046875,0.4501953125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.4423828125,0.3994140625,0.400390625,0.4482421875,0.515625,0.56640625,0.5791015625,0.5908203125,0.6328125,0.685546875,0.7138671875,0.7001953125,0.6474609375,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.6552734375,0.7353515625,0.7783203125,0.75390625,0.669921875,0.568359375,0.4892578125,0.4326171875,0.4248046875,0.4658203125,0.5244140625,0.5625,0.5498046875,0.4892578125,0.421875,0.3798828125,0.3857421875,0.4375,0.5087890625,0.55859375,0.5693359375,0.5546875,0.4970703125,0.416015625,0.3525390625,0.337890625,0.3740234375,0.439453125,0.5078125,0.55859375,0.572265625,0.5419921875,0.490234375,0.44921875,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.4443359375,0.501953125,0.583984375,0.6494140625,0.6669921875,0.6328125,0.5693359375,0.5087890625,0.4814453125,0.4873046875,0.5068359375,0.51171875,0.4814453125,0.419921875,0.341796875,0.25,0.185546875,0.1875,0.255859375,0.349609375,0.4296875,0.5107421875,0.6123046875,0.6923828125,0.7080078125,0.654296875,0.568359375,0.4892578125,0.421875,0.3779296875,0.380859375,0.431640625,0.5029296875,0.5556640625,0.5693359375,0.5810546875,0.6240234375,0.677734375,0.70703125,0.6923828125,0.6396484375,0.5693359375,0.4892578125,0.3935546875,0.3251953125,0.322265625,0.38671875,0.4794921875,0.5595703125,0.6162109375,0.611328125,0.5419921875,0.447265625,0.3779296875,0.373046875,0.4296875,0.51171875,0.6201171875,0.712890625,0.74609375,0.708984375,0.6328125,0.5595703125,0.490234375,0.423828125,0.380859375,0.3740234375,0.3935546875,0.4150390625,0.419921875,0.412109375,0.3896484375,0.37109375,0.3828125,0.4296875,0.4990234375,0.5693359375,0.63671875,0.6884765625,0.7041015625,0.6787109375,0.6298828125,0.58984375,0.5791015625,0.57421875,0.5546875,0.5224609375,0.4091796875,0.38671875,0.419921875,0.486328125,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.60546875,0.5244140625,0.4638671875,0.4541015625,0.498046875,0.564453125,0.6220703125,0.66796875,0.6884765625,0.662109375,0.59375,0.51171875,0.4501953125,0.4287109375,0.4150390625,0.39453125,0.39453125,0.4326171875,0.5087890625,0.5966796875,0.673828125,0.740234375,0.7802734375,0.7744140625,0.7265625,0.6630859375,0.623046875,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.521484375,0.62890625,0.732421875,0.783203125,0.7626953125,0.6962890625,0.6220703125,0.5546875,0.5107421875,0.4970703125,0.5029296875,0.5078125,0.4912109375,0.4482421875,0.3935546875,0.341796875,0.3291015625,0.3798828125,0.4814453125,0.5908203125,0.673828125,0.7373046875,0.759765625,0.71875,0.6240234375,0.515625,0.4443359375,0.4287109375,0.439453125,0.486328125,0.5556640625,0.6142578125,0.63671875,0.6162109375,0.5703125,0.5302734375,0.53515625,0.5791015625,0.630859375,0.6552734375,0.6328125,0.5703125,0.505859375,0.474609375,0.4833984375,0.5166015625,0.544921875,0.541015625,0.5,0.462890625,0.482421875,0.556640625,0.650390625,0.7158203125,0.7216796875,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.6806640625,0.6845703125,0.6328125,0.55859375,0.5068359375,0.51171875,0.5703125,0.642578125,0.70703125,0.7431640625,0.740234375,0.7099609375,0.6806640625,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.6572265625,0.5791015625,0.455078125,0.337890625,0.271484375,0.2744140625,0.3251953125,0.3935546875,0.48046875,0.5654296875,0.6220703125,0.640625,0.6337890625,0.6220703125,0.5986328125,0.5341796875,0.4521484375,0.3935546875,0.3876953125,0.4306640625,0.5,0.58203125,0.69140625,0.78515625,0.8173828125,0.7783203125,0.6982421875,0.6220703125,0.5595703125,0.5361328125,0.5576171875,0.599609375,0.6298828125,0.62109375,0.5703125,0.5029296875,0.4287109375,0.3798828125,0.3837890625,0.439453125,0.51171875,0.5703125,0.6123046875,0.6142578125,0.5615234375,0.470703125,0.3798828125,0.328125,0.3251953125,0.3369140625,0.3505859375,0.3681640625,0.38671875,0.404296875,0.41796875,0.4287109375,0.453125,0.5263671875,0.625,0.701171875,0.7236328125,0.6884765625,0.6220703125,0.544921875,0.45703125,0.376953125,0.3291015625,0.31640625,0.322265625,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.6171875,0.6845703125,0.72265625,0.705078125,0.6376953125,0.55859375,0.5,0.4375,0.34375,0.2490234375,0.19921875,0.2099609375,0.2626953125,0.3251953125,0.3837890625,0.4228515625,0.4267578125,0.3955078125,0.3525390625,0.32421875,0.3251953125,0.3466796875,0.40234375,0.4736328125,0.5224609375,0.5263671875,0.4873046875,0.4287109375,0.3642578125,0.30078125,0.279296875,0.3251953125,0.427734375,0.5390625,0.6220703125,0.6845703125,0.701171875,0.65234375,0.552734375,0.4462890625,0.3828125,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.49609375,0.46875,0.4716796875,0.4921875,0.505859375,0.4912109375,0.4482421875,0.3974609375,0.3583984375,0.3447265625,0.361328125,0.39453125,0.421875,0.4287109375,0.4375,0.4736328125,0.5185546875,0.544921875,0.533203125,0.48828125,0.4287109375,0.3671875,0.3095703125,0.275390625,0.2734375,0.296875,0.3193359375,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.6201171875,0.595703125,0.5986328125,0.609375,0.6025390625,0.564453125,0.5,0.423828125,0.3505859375,0.3232421875,0.369140625,0.474609375,0.58984375,0.673828125,0.7314453125,0.7333984375,0.673828125,0.5849609375,0.515625,0.50390625,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.5478515625,0.576171875,0.5703125,0.529296875,0.4755859375,0.4375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.4931640625,0.45703125,0.46484375,0.5185546875,0.59375,0.65234375,0.673828125,0.6923828125,0.7353515625,0.783203125,0.8046875,0.78515625,0.734375,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.7353515625,0.7822265625,0.78125,0.716796875,0.611328125,0.5107421875,0.4482421875,0.408203125,0.4130859375,0.45703125,0.5087890625,0.533203125,0.5107421875,0.4482421875,0.3837890625,0.3583984375,0.3916015625,0.47265625,0.5625,0.6181640625,0.6220703125,0.5986328125,0.5322265625,0.44140625,0.369140625,0.3447265625,0.3720703125,0.4287109375,0.48828125,0.533203125,0.544921875,0.5185546875,0.4736328125,0.4375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.400390625,0.466796875,0.5615234375,0.6435546875,0.6806640625,0.6669921875,0.6220703125,0.57421875,0.5361328125,0.5068359375,0.4755859375,0.4365234375,0.384765625,0.3251953125,0.2568359375,0.1767578125,0.1240234375,0.1328125,0.203125,0.2978515625,0.376953125,0.458984375,0.5615234375,0.6435546875,0.662109375,0.611328125,0.5263671875,0.4482421875,0.380859375,0.34375,0.361328125,0.4326171875,0.52734375,0.59765625,0.6220703125,0.6416015625,0.69140625,0.74609375,0.7724609375,0.7509765625,0.693359375,0.6220703125,0.541015625,0.4404296875,0.3623046875,0.3486328125,0.4033203125,0.4912109375,0.5703125,0.625,0.6123046875,0.529296875,0.41796875,0.3349609375,0.322265625,0.376953125,0.458984375,0.564453125,0.658203125,0.7001953125,0.6806640625,0.625,0.5703125,0.5166015625,0.455078125,0.3994140625,0.3603515625,0.341796875,0.333984375,0.3251953125,0.3154296875,0.314453125,0.33984375,0.4013671875,0.484375,0.5634765625,0.6220703125,0.673828125,0.7236328125,0.751953125,0.7490234375,0.720703125,0.689453125,0.673828125,0.65625,0.61328125,0.548828125,0.521484375,0.501953125,0.5185546875,0.55859375,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.6904296875,0.6337890625,0.587890625,0.5712890625,0.5849609375,0.6123046875,0.634765625,0.6533203125,0.662109375,0.6484375,0.607421875,0.5517578125,0.5009765625,0.46875,0.439453125,0.412109375,0.4140625,0.4658203125,0.5595703125,0.66015625,0.740234375,0.8037109375,0.828125,0.7978515625,0.728515625,0.6572265625,0.6220703125,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.4541015625,0.55859375,0.673828125,0.748046875,0.7548828125,0.705078125,0.634765625,0.5625,0.4912109375,0.4384765625,0.4140625,0.41015625,0.408203125,0.39453125,0.3740234375,0.3603515625,0.380859375,0.44921875,0.5546875,0.6591796875,0.740234375,0.8037109375,0.8232421875,0.775390625,0.673828125,0.5595703125,0.4853515625,0.46875,0.4736328125,0.4912109375,0.51953125,0.54296875,0.5537109375,0.546875,0.5302734375,0.521484375,0.548828125,0.599609375,0.6376953125,0.638671875,0.5966796875,0.5302734375,0.4619140625,0.4169921875,0.4111328125,0.44140625,0.484375,0.5087890625,0.5,0.4931640625,0.53515625,0.619140625,0.708984375,0.7685546875,0.7763671875,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.6923828125,0.6904296875,0.626953125,0.5380859375,0.474609375,0.47265625,0.5302734375,0.6044921875,0.6826171875,0.7421875,0.767578125,0.76171875,0.7451171875,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.72265625,0.6376953125,0.4970703125,0.3505859375,0.2509765625,0.2255859375,0.2587890625,0.3154296875,0.4091796875,0.521484375,0.61328125,0.658203125,0.658203125,0.634765625,0.595703125,0.5185546875,0.4306640625,0.375,0.3779296875,0.4296875,0.5,0.58203125,0.693359375,0.7900390625,0.826171875,0.7890625,0.7119140625,0.634765625,0.5693359375,0.5302734375,0.52734375,0.548828125,0.5703125,0.56640625,0.5302734375,0.4833984375,0.439453125,0.416015625,0.427734375,0.46484375,0.5048828125,0.5302734375,0.5380859375,0.50390625,0.427734375,0.3369140625,0.2666015625,0.2421875,0.2587890625,0.2861328125,0.3154296875,0.34765625,0.380859375,0.4130859375,0.4423828125,0.46875,0.5087890625,0.58984375,0.685546875,0.748046875,0.751953125,0.7041015625,0.634765625,0.556640625,0.4580078125,0.361328125,0.2919921875,0.26171875,0.2578125,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.6484375,0.6806640625,0.6796875,0.640625,0.580078125,0.5263671875,0.5,0.46875,0.3994140625,0.30859375,0.234375,0.203125,0.2177734375,0.2587890625,0.2998046875,0.3173828125,0.3056640625,0.275390625,0.2470703125,0.2392578125,0.2587890625,0.2958984375,0.3671875,0.4521484375,0.5166015625,0.53515625,0.51171875,0.46875,0.4189453125,0.3642578125,0.33984375,0.3720703125,0.4560546875,0.5546875,0.634765625,0.6943359375,0.69921875,0.6318359375,0.5185546875,0.41015625,0.3544921875,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.55859375,0.5107421875,0.4697265625,0.44140625,0.4248046875,0.4111328125,0.39453125,0.3779296875,0.373046875,0.3857421875,0.4140625,0.4443359375,0.46484375,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.419921875,0.361328125,0.306640625,0.26953125,0.2568359375,0.2578125,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.7001953125,0.6796875,0.6708984375,0.6572265625,0.6240234375,0.568359375,0.5,0.42578125,0.3603515625,0.34765625,0.4111328125,0.53125,0.654296875,0.740234375,0.80078125,0.8095703125,0.7587890625,0.673828125,0.5986328125,0.5732421875,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.517578125,0.52734375,0.5244140625,0.5078125,0.4873046875,0.47265625,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.5595703125,0.5283203125,0.5302734375,0.57421875,0.642578125,0.705078125,0.740234375,0.7724609375,0.8173828125,0.8564453125,0.8642578125,0.8359375,0.7880859375,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.7783203125,0.78125,0.7265625,0.6240234375,0.509765625,0.4267578125,0.39453125,0.3857421875,0.4140625,0.4638671875,0.501953125,0.5029296875,0.4619140625,0.39453125,0.333984375,0.326171875,0.3857421875,0.4912109375,0.59375,0.6455078125,0.634765625,0.599609375,0.533203125,0.4580078125,0.40625,0.396484375,0.4248046875,0.46875,0.513671875,0.546875,0.5546875,0.53515625,0.501953125,0.4755859375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.3984375,0.4619140625,0.541015625,0.609375,0.6474609375,0.650390625,0.634765625,0.6142578125,0.5810546875,0.52734375,0.455078125,0.376953125,0.3095703125,0.2587890625,0.20703125,0.1455078125,0.1064453125,0.123046875,0.1943359375,0.28515625,0.3642578125,0.4443359375,0.5419921875,0.6162109375,0.6240234375,0.5634765625,0.4736328125,0.39453125,0.326171875,0.2880859375,0.30859375,0.3916015625,0.50390625,0.59375,0.634765625,0.6708984375,0.7314453125,0.7900390625,0.8095703125,0.7763671875,0.7080078125,0.634765625,0.552734375,0.4462890625,0.35546875,0.328125,0.37109375,0.4521484375,0.5302734375,0.5859375,0.576171875,0.4990234375,0.39453125,0.3173828125,0.30859375,0.3642578125,0.4404296875,0.5234375,0.587890625,0.609375,0.58984375,0.5546875,0.5302734375,0.5087890625,0.4775390625,0.4326171875,0.380859375,0.3291015625,0.2880859375,0.2587890625,0.2392578125,0.2548828125,0.3193359375,0.421875,0.529296875,0.6044921875,0.634765625,0.6591796875,0.701171875,0.748046875,0.779296875,0.783203125,0.765625,0.740234375,0.7041015625,0.63671875,0.5517578125,0.61328125,0.6015625,0.599609375,0.611328125,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7138671875,0.689453125,0.66796875,0.6513671875,0.6376953125,0.6220703125,0.6044921875,0.5908203125,0.59375,0.607421875,0.615234375,0.6044921875,0.5732421875,0.5302734375,0.48046875,0.431640625,0.416015625,0.4609375,0.5546875,0.6591796875,0.740234375,0.80078125,0.8095703125,0.7587890625,0.673828125,0.5986328125,0.5732421875,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.4052734375,0.4951171875,0.607421875,0.6904296875,0.7109375,0.6728515625,0.6044921875,0.5263671875,0.43359375,0.3525390625,0.3115234375,0.314453125,0.3408203125,0.3642578125,0.380859375,0.3994140625,0.4326171875,0.494140625,0.5771484375,0.6640625,0.740234375,0.8046875,0.83203125,0.7978515625,0.7119140625,0.6123046875,0.544921875,0.5302734375,0.525390625,0.5078125,0.4794921875,0.4560546875,0.4453125,0.4521484375,0.46875,0.498046875,0.552734375,0.6103515625,0.6328125,0.60546875,0.5419921875,0.46875,0.3974609375,0.337890625,0.3173828125,0.34765625,0.4111328125,0.470703125,0.5,0.52734375,0.5859375,0.662109375,0.7294921875,0.763671875,0.7626953125,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.6611328125,0.6552734375,0.5849609375,0.48828125,0.41796875,0.412109375,0.46875,0.544921875,0.630859375,0.7041015625,0.7451171875,0.7529296875,0.744140625,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.7255859375,0.6513671875,0.5244140625,0.3857421875,0.283203125,0.244140625,0.2587890625,0.298828125,0.38671875,0.501953125,0.6015625,0.650390625,0.64453125,0.6044921875,0.5478515625,0.4609375,0.375,0.3359375,0.3603515625,0.42578125,0.5,0.58203125,0.6884765625,0.7783203125,0.806640625,0.763671875,0.681640625,0.6044921875,0.53515625,0.4814453125,0.4580078125,0.4638671875,0.482421875,0.48828125,0.46875,0.4462890625,0.4375,0.447265625,0.4658203125,0.482421875,0.484375,0.46875,0.439453125,0.3740234375,0.2900390625,0.22265625,0.1982421875,0.216796875,0.2587890625,0.302734375,0.3427734375,0.3779296875,0.4111328125,0.4462890625,0.4853515625,0.5302734375,0.5859375,0.669921875,0.748046875,0.779296875,0.7490234375,0.6787109375,0.6044921875,0.5263671875,0.4326171875,0.341796875,0.28125,0.2568359375,0.2568359375,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.6552734375,0.646484375,0.607421875,0.5517578125,0.505859375,0.48828125,0.5,0.5087890625,0.4775390625,0.408203125,0.3251953125,0.2626953125,0.2412109375,0.2587890625,0.2783203125,0.271484375,0.2421875,0.2119140625,0.201171875,0.21875,0.2587890625,0.3134765625,0.39453125,0.482421875,0.546875,0.568359375,0.5556640625,0.5302734375,0.49609375,0.4443359375,0.40234375,0.4033203125,0.4521484375,0.529296875,0.6044921875,0.6630859375,0.6640625,0.5966796875,0.4912109375,0.3994140625,0.365234375,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.6005859375,0.537109375,0.4580078125,0.3896484375,0.3515625,0.3486328125,0.3642578125,0.38671875,0.419921875,0.4609375,0.4970703125,0.51953125,0.5283203125,0.5302734375,0.533203125,0.548828125,0.568359375,0.580078125,0.5751953125,0.5556640625,0.5302734375,0.498046875,0.4453125,0.3798828125,0.3203125,0.279296875,0.26171875,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.71875,0.7119140625,0.70703125,0.6845703125,0.6376953125,0.5712890625,0.5,0.42578125,0.3603515625,0.34765625,0.4111328125,0.53125,0.654296875,0.740234375,0.8037109375,0.828125,0.7978515625,0.728515625,0.6572265625,0.6220703125,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.4814453125,0.4716796875,0.474609375,0.4912109375,0.51171875,0.5263671875,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.60546875,0.572265625,0.5576171875,0.5771484375,0.62890625,0.689453125,0.740234375,0.7880859375,0.8359375,0.8642578125,0.8564453125,0.8173828125,0.7724609375,0.740234375,0.7109375,0.67578125,0.6513671875,0.6513671875,0.67578125,0.7109375,0.740234375,0.75390625,0.716796875,0.6240234375,0.5048828125,0.4052734375,0.3583984375,0.3642578125,0.392578125,0.4482421875,0.5048828125,0.52734375,0.5,0.4365234375,0.3642578125,0.306640625,0.3095703125,0.3837890625,0.4970703125,0.595703125,0.6328125,0.6044921875,0.5546875,0.4970703125,0.453125,0.44140625,0.462890625,0.5,0.5302734375,0.5556640625,0.5751953125,0.580078125,0.568359375,0.548828125,0.533203125,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.4404296875,0.48828125,0.529296875,0.5576171875,0.57421875,0.587890625,0.6044921875,0.619140625,0.60546875,0.5517578125,0.4638671875,0.3671875,0.294921875,0.2587890625,0.2265625,0.181640625,0.154296875,0.1708984375,0.2333984375,0.3173828125,0.39453125,0.4736328125,0.5634765625,0.6240234375,0.6162109375,0.5419921875,0.4443359375,0.3642578125,0.2939453125,0.244140625,0.2509765625,0.3251953125,0.4404296875,0.544921875,0.6044921875,0.6591796875,0.7333984375,0.794921875,0.806640625,0.759765625,0.6806640625,0.6044921875,0.521484375,0.4111328125,0.314453125,0.2783203125,0.314453125,0.392578125,0.46875,0.52734375,0.529296875,0.4716796875,0.3916015625,0.3349609375,0.3359375,0.39453125,0.462890625,0.513671875,0.529296875,0.5107421875,0.4775390625,0.458984375,0.46875,0.4892578125,0.50390625,0.494140625,0.44921875,0.3798828125,0.310546875,0.2587890625,0.2255859375,0.2451171875,0.328125,0.447265625,0.5546875,0.6083984375,0.6044921875,0.595703125,0.625,0.685546875,0.748046875,0.7841796875,0.7783203125,0.740234375,0.6845703125,0.599609375,0.5107421875,0.658203125,0.650390625,0.630859375,0.6171875,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.66796875,0.6748046875,0.68359375,0.6767578125,0.6484375,0.6025390625,0.55078125,0.5107421875,0.51171875,0.5517578125,0.6044921875,0.634765625,0.6220703125,0.5703125,0.5029296875,0.4287109375,0.38671875,0.41015625,0.4921875,0.5927734375,0.673828125,0.7314453125,0.7333984375,0.673828125,0.5849609375,0.515625,0.50390625,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.4013671875,0.4716796875,0.56640625,0.6376953125,0.6552734375,0.6181640625,0.55078125,0.470703125,0.3671875,0.27734375,0.240234375,0.263671875,0.322265625,0.376953125,0.423828125,0.455078125,0.4775390625,0.50390625,0.544921875,0.603515625,0.673828125,0.7412109375,0.7802734375,0.7705078125,0.712890625,0.63671875,0.58203125,0.5703125,0.5595703125,0.5126953125,0.443359375,0.384765625,0.3623046875,0.3828125,0.4287109375,0.48828125,0.5673828125,0.6298828125,0.638671875,0.587890625,0.505859375,0.4287109375,0.353515625,0.2802734375,0.2451171875,0.2724609375,0.3505859375,0.4384765625,0.5,0.5546875,0.619140625,0.6748046875,0.7041015625,0.7021484375,0.6865234375,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.6083984375,0.6044921875,0.5361328125,0.443359375,0.3759765625,0.3720703125,0.4287109375,0.5048828125,0.5869140625,0.654296875,0.6884765625,0.689453125,0.677734375,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.6640625,0.615234375,0.5302734375,0.43359375,0.3583984375,0.3232421875,0.3251953125,0.349609375,0.419921875,0.5185546875,0.599609375,0.630859375,0.607421875,0.55078125,0.48046875,0.3876953125,0.3115234375,0.29296875,0.3408203125,0.4228515625,0.5,0.580078125,0.6806640625,0.7587890625,0.7724609375,0.7177734375,0.6298828125,0.55078125,0.48046875,0.4189453125,0.3857421875,0.388671875,0.4130859375,0.431640625,0.4287109375,0.42578125,0.4482421875,0.484375,0.509765625,0.5087890625,0.4775390625,0.4287109375,0.3681640625,0.283203125,0.205078125,0.1728515625,0.19921875,0.26171875,0.3251953125,0.3828125,0.4208984375,0.44140625,0.4541015625,0.474609375,0.513671875,0.5703125,0.6396484375,0.7236328125,0.7841796875,0.783203125,0.720703125,0.6298828125,0.55078125,0.4765625,0.396484375,0.3330078125,0.3037109375,0.306640625,0.3212890625,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.6220703125,0.5849609375,0.521484375,0.4638671875,0.4375,0.4541015625,0.5,0.5439453125,0.5537109375,0.5166015625,0.4443359375,0.3701171875,0.3271484375,0.3251953125,0.3271484375,0.298828125,0.2548828125,0.224609375,0.228515625,0.267578125,0.3251953125,0.392578125,0.47265625,0.546875,0.58984375,0.5966796875,0.5830078125,0.5703125,0.5498046875,0.498046875,0.4384765625,0.4072265625,0.423828125,0.48046875,0.55078125,0.6103515625,0.6142578125,0.55859375,0.4755859375,0.41015625,0.400390625,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.5986328125,0.5322265625,0.4375,0.35546875,0.318359375,0.33203125,0.376953125,0.431640625,0.4921875,0.544921875,0.57421875,0.5791015625,0.572265625,0.5703125,0.5712890625,0.5771484375,0.5849609375,0.58984375,0.587890625,0.580078125,0.5703125,0.5546875,0.5166015625,0.4609375,0.400390625,0.353515625,0.330078125,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.6689453125,0.6826171875,0.6953125,0.68359375,0.6396484375,0.572265625,0.5,0.423828125,0.3505859375,0.3232421875,0.369140625,0.474609375,0.58984375,0.673828125,0.740234375,0.7802734375,0.7744140625,0.7265625,0.6630859375,0.623046875,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.451171875,0.4228515625,0.4287109375,0.4697265625,0.5234375,0.5615234375,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.6044921875,0.5673828125,0.53125,0.5234375,0.5537109375,0.611328125,0.673828125,0.734375,0.78515625,0.8046875,0.783203125,0.7353515625,0.6923828125,0.673828125,0.662109375,0.6484375,0.638671875,0.638671875,0.6484375,0.662109375,0.673828125,0.669921875,0.611328125,0.509765625,0.4052734375,0.3408203125,0.3359375,0.376953125,0.4365234375,0.515625,0.5791015625,0.587890625,0.5361328125,0.4541015625,0.376953125,0.3203125,0.32421875,0.3955078125,0.498046875,0.5791015625,0.5966796875,0.55078125,0.490234375,0.4423828125,0.4267578125,0.453125,0.505859375,0.55078125,0.5703125,0.580078125,0.587890625,0.58984375,0.5849609375,0.5771484375,0.5712890625,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.5029296875,0.5302734375,0.52734375,0.5068359375,0.4931640625,0.5078125,0.55078125,0.5966796875,0.61328125,0.580078125,0.5029296875,0.4130859375,0.34765625,0.3251953125,0.30859375,0.2744140625,0.24609375,0.251953125,0.30078125,0.3740234375,0.4482421875,0.5263671875,0.611328125,0.662109375,0.6435546875,0.5615234375,0.458984375,0.376953125,0.302734375,0.236328125,0.2158203125,0.2666015625,0.3701171875,0.4775390625,0.55078125,0.62109375,0.70703125,0.7724609375,0.7763671875,0.7177734375,0.6298828125,0.55078125,0.46875,0.359375,0.265625,0.2333984375,0.2724609375,0.3525390625,0.4287109375,0.4892578125,0.501953125,0.4658203125,0.41015625,0.375,0.3876953125,0.4482421875,0.509765625,0.5302734375,0.501953125,0.4443359375,0.396484375,0.3896484375,0.4287109375,0.484375,0.544921875,0.5771484375,0.5546875,0.4814453125,0.39453125,0.3251953125,0.2783203125,0.2900390625,0.3671875,0.474609375,0.5615234375,0.5869140625,0.55078125,0.5126953125,0.5263671875,0.58984375,0.669921875,0.7236328125,0.72265625,0.673828125,0.6025390625,0.509765625,0.4296875,0.658203125,0.64453125,0.607421875,0.576171875,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5859375,0.615234375,0.650390625,0.662109375,0.634765625,0.5771484375,0.509765625,0.4541015625,0.4501953125,0.5009765625,0.5732421875,0.6220703125,0.6171875,0.5595703125,0.4814453125,0.3916015625,0.3291015625,0.333984375,0.4033203125,0.4990234375,0.5791015625,0.6376953125,0.640625,0.5859375,0.5078125,0.4521484375,0.453125,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.443359375,0.49609375,0.5673828125,0.6181640625,0.62109375,0.5771484375,0.509765625,0.4287109375,0.326171875,0.244140625,0.224609375,0.2734375,0.35546875,0.4296875,0.490234375,0.5166015625,0.5087890625,0.4892578125,0.484375,0.515625,0.5791015625,0.6484375,0.6982421875,0.70703125,0.671875,0.6142578125,0.5693359375,0.5595703125,0.546875,0.4931640625,0.4150390625,0.3544921875,0.3408203125,0.3759765625,0.439453125,0.5166015625,0.607421875,0.673828125,0.67578125,0.611328125,0.5185546875,0.439453125,0.3623046875,0.27734375,0.2255859375,0.2431640625,0.322265625,0.421875,0.5,0.568359375,0.62890625,0.66015625,0.6533203125,0.6201171875,0.5888671875,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.5673828125,0.5703125,0.5146484375,0.4345703125,0.37890625,0.3818359375,0.439453125,0.5126953125,0.58203125,0.626953125,0.6328125,0.6103515625,0.5859375,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5751953125,0.5546875,0.5185546875,0.4755859375,0.4404296875,0.421875,0.419921875,0.43359375,0.486328125,0.55859375,0.611328125,0.6171875,0.576171875,0.509765625,0.4306640625,0.3369140625,0.2685546875,0.2646484375,0.328125,0.419921875,0.5,0.5791015625,0.6748046875,0.744140625,0.74609375,0.681640625,0.5888671875,0.509765625,0.4384765625,0.3779296875,0.3505859375,0.36328125,0.4013671875,0.4326171875,0.439453125,0.447265625,0.486328125,0.537109375,0.56640625,0.5546875,0.505859375,0.439453125,0.36328125,0.26953125,0.2001953125,0.1943359375,0.25390625,0.3427734375,0.419921875,0.4814453125,0.5087890625,0.5009765625,0.478515625,0.470703125,0.498046875,0.5595703125,0.63671875,0.72265625,0.7783203125,0.765625,0.689453125,0.58984375,0.509765625,0.4375,0.3740234375,0.3408203125,0.34765625,0.380859375,0.412109375,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.5595703125,0.5126953125,0.4462890625,0.3984375,0.39453125,0.4345703125,0.5,0.5634765625,0.603515625,0.5966796875,0.5458984375,0.4775390625,0.4296875,0.419921875,0.412109375,0.3720703125,0.3203125,0.2900390625,0.3017578125,0.3515625,0.419921875,0.4912109375,0.560546875,0.60546875,0.6142578125,0.5927734375,0.5673828125,0.5595703125,0.546875,0.498046875,0.4326171875,0.3896484375,0.3935546875,0.4404296875,0.509765625,0.5693359375,0.578125,0.53515625,0.4697265625,0.4248046875,0.431640625,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.5546875,0.4970703125,0.4150390625,0.349609375,0.33203125,0.3662109375,0.4296875,0.4990234375,0.5654296875,0.6064453125,0.6123046875,0.58984375,0.5654296875,0.5595703125,0.5595703125,0.560546875,0.5615234375,0.5625,0.5625,0.560546875,0.5595703125,0.5546875,0.5361328125,0.5048828125,0.46875,0.4384765625,0.4228515625,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.5859375,0.6162109375,0.65234375,0.662109375,0.6318359375,0.5712890625,0.5,0.421875,0.3369140625,0.2880859375,0.3095703125,0.3935546875,0.498046875,0.5791015625,0.6484375,0.69921875,0.708984375,0.6748046875,0.619140625,0.578125,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.4345703125,0.3916015625,0.392578125,0.4375,0.5009765625,0.548828125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.55859375,0.517578125,0.466796875,0.4404296875,0.45703125,0.5107421875,0.5791015625,0.6474609375,0.7001953125,0.7138671875,0.685546875,0.6328125,0.5908203125,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.568359375,0.5107421875,0.4267578125,0.3583984375,0.3359375,0.3671875,0.4296875,0.505859375,0.59765625,0.6640625,0.6650390625,0.6015625,0.5087890625,0.4296875,0.37109375,0.369140625,0.4267578125,0.5078125,0.5654296875,0.5654296875,0.509765625,0.4423828125,0.396484375,0.392578125,0.435546875,0.4990234375,0.546875,0.5595703125,0.560546875,0.5625,0.5625,0.5615234375,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.548828125,0.5625,0.529296875,0.4755859375,0.4404296875,0.4521484375,0.509765625,0.57421875,0.6142578125,0.6083984375,0.5556640625,0.4853515625,0.4326171875,0.419921875,0.41015625,0.375,0.3369140625,0.326171875,0.3564453125,0.41796875,0.4892578125,0.568359375,0.654296875,0.7080078125,0.6923828125,0.6123046875,0.5107421875,0.4296875,0.3525390625,0.2685546875,0.220703125,0.2431640625,0.3271484375,0.4296875,0.509765625,0.587890625,0.6806640625,0.7470703125,0.748046875,0.6826171875,0.5888671875,0.509765625,0.427734375,0.3251953125,0.2431640625,0.224609375,0.2763671875,0.361328125,0.439453125,0.5009765625,0.517578125,0.48828125,0.4404296875,0.412109375,0.4287109375,0.4892578125,0.548828125,0.5556640625,0.5068359375,0.43359375,0.3818359375,0.384765625,0.439453125,0.515625,0.603515625,0.6640625,0.6591796875,0.5908203125,0.498046875,0.419921875,0.36328125,0.3623046875,0.4208984375,0.5029296875,0.5625,0.564453125,0.509765625,0.4541015625,0.453125,0.5087890625,0.5859375,0.6396484375,0.63671875,0.5791015625,0.5009765625,0.40625,0.3369140625,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.615234375,0.564453125,0.494140625,0.443359375,0.4296875,0.427734375,0.423828125,0.4208984375,0.41796875,0.4169921875,0.41796875,0.419921875,0.43359375,0.486328125,0.55859375,0.611328125,0.6171875,0.576171875,0.509765625,0.44921875,0.427734375,0.4482421875,0.4853515625,0.5068359375,0.48828125,0.4296875,0.353515625,0.2646484375,0.201171875,0.203125,0.26953125,0.3623046875,0.439453125,0.5,0.5185546875,0.494140625,0.451171875,0.4248046875,0.44140625,0.5,0.568359375,0.6279296875,0.658203125,0.650390625,0.6171875,0.5869140625,0.5791015625,0.5869140625,0.6181640625,0.6513671875,0.658203125,0.625,0.5615234375,0.4892578125,0.412109375,0.330078125,0.2841796875,0.30859375,0.3955078125,0.4990234375,0.5791015625,0.634765625,0.62890625,0.5595703125,0.46484375,0.3935546875,0.3857421875,0.439453125,0.505859375,0.5537109375,0.5625,0.5302734375,0.4775390625,0.4375,0.4296875,0.42578125,0.4052734375,0.3876953125,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.6552734375,0.74609375,0.8095703125,0.80859375,0.7421875,0.6484375,0.5693359375,0.48828125,0.38671875,0.3046875,0.2841796875,0.3330078125,0.4150390625,0.4892578125,0.5546875,0.595703125,0.5947265625,0.548828125,0.484375,0.439453125,0.4296875,0.4228515625,0.390625,0.3525390625,0.337890625,0.3623046875,0.419921875,0.4892578125,0.5498046875,0.5693359375,0.546875,0.5068359375,0.4833984375,0.5009765625,0.5595703125,0.623046875,0.65625,0.638671875,0.57421875,0.4951171875,0.4404296875,0.4296875,0.431640625,0.43359375,0.435546875,0.435546875,0.43359375,0.431640625,0.4296875,0.427734375,0.42578125,0.423828125,0.423828125,0.42578125,0.427734375,0.4296875,0.4345703125,0.4541015625,0.48828125,0.5263671875,0.55859375,0.576171875,0.5791015625,0.5869140625,0.615234375,0.646484375,0.6513671875,0.619140625,0.55859375,0.4892578125,0.4130859375,0.322265625,0.2578125,0.2568359375,0.3212890625,0.412109375,0.4892578125,0.5673828125,0.66015625,0.7265625,0.7275390625,0.662109375,0.5693359375,0.4892578125,0.421875,0.3798828125,0.38671875,0.44140625,0.5146484375,0.5673828125,0.5791015625,0.5888671875,0.6298828125,0.681640625,0.7119140625,0.6982421875,0.6474609375,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.634765625,0.6279296875,0.5576171875,0.4609375,0.390625,0.384765625,0.439453125,0.51953125,0.6201171875,0.7001953125,0.71875,0.6689453125,0.5859375,0.509765625,0.4423828125,0.3984375,0.3984375,0.44140625,0.5048828125,0.5498046875,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.4306640625,0.396484375,0.3564453125,0.341796875,0.369140625,0.4287109375,0.5,0.5712890625,0.634765625,0.6669921875,0.658203125,0.6220703125,0.5888671875,0.5791015625,0.5673828125,0.521484375,0.4638671875,0.4287109375,0.4384765625,0.490234375,0.5595703125,0.626953125,0.6650390625,0.6533203125,0.591796875,0.51171875,0.4541015625,0.439453125,0.4296875,0.396484375,0.359375,0.3486328125,0.37890625,0.439453125,0.509765625,0.568359375,0.578125,0.5390625,0.4794921875,0.4404296875,0.451171875,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.6259765625,0.6611328125,0.6435546875,0.576171875,0.4912109375,0.4326171875,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.451171875,0.5,0.56640625,0.61328125,0.61328125,0.568359375,0.5,0.427734375,0.3662109375,0.3349609375,0.34375,0.3798828125,0.412109375,0.419921875,0.419921875,0.4208984375,0.421875,0.4228515625,0.4228515625,0.421875,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.4306640625,0.390625,0.33984375,0.310546875,0.3232421875,0.373046875,0.439453125,0.505859375,0.5546875,0.56640625,0.537109375,0.486328125,0.447265625,0.439453125,0.4404296875,0.439453125,0.4365234375,0.4326171875,0.4296875,0.4287109375,0.4296875,0.4248046875,0.4013671875,0.37890625,0.384765625,0.427734375,0.49609375,0.5693359375,0.6484375,0.7412109375,0.8046875,0.8037109375,0.7373046875,0.6455078125,0.5693359375,0.5107421875,0.490234375,0.5107421875,0.5478515625,0.568359375,0.548828125,0.4892578125,0.4208984375,0.361328125,0.33203125,0.341796875,0.3779296875,0.41015625,0.419921875,0.421875,0.423828125,0.427734375,0.431640625,0.435546875,0.4375,0.439453125,0.44140625,0.4423828125,0.4423828125,0.4423828125,0.4404296875,0.4404296875,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5498046875,0.5634765625,0.5283203125,0.4716796875,0.43359375,0.4423828125,0.5,0.568359375,0.626953125,0.6572265625,0.6474609375,0.611328125,0.5791015625,0.5693359375,0.5556640625,0.5048828125,0.435546875,0.3876953125,0.3857421875,0.4306640625,0.5,0.580078125,0.6806640625,0.759765625,0.7744140625,0.7216796875,0.6357421875,0.5595703125,0.48046875,0.3818359375,0.3056640625,0.29296875,0.3466796875,0.4326171875,0.509765625,0.5869140625,0.6796875,0.744140625,0.744140625,0.6796875,0.5869140625,0.509765625,0.4326171875,0.34765625,0.294921875,0.3095703125,0.384765625,0.4814453125,0.5595703125,0.6142578125,0.6162109375,0.5625,0.486328125,0.4326171875,0.4345703125,0.4892578125,0.5478515625,0.5673828125,0.546875,0.5107421875,0.4931640625,0.5166015625,0.5791015625,0.658203125,0.7490234375,0.8095703125,0.8037109375,0.7333984375,0.6376953125,0.5595703125,0.4990234375,0.48046875,0.50390625,0.544921875,0.568359375,0.5498046875,0.4892578125,0.4296875,0.4111328125,0.435546875,0.478515625,0.5048828125,0.48828125,0.4296875,0.353515625,0.26171875,0.1953125,0.6181640625,0.55078125,0.46484375,0.400390625,0.376953125,0.3642578125,0.3447265625,0.3232421875,0.3095703125,0.3076171875,0.3154296875,0.3251953125,0.349609375,0.419921875,0.5185546875,0.599609375,0.630859375,0.607421875,0.55078125,0.494140625,0.4580078125,0.4462890625,0.447265625,0.4453125,0.4228515625,0.376953125,0.3203125,0.25390625,0.2099609375,0.2197265625,0.2802734375,0.361328125,0.4287109375,0.4833984375,0.5068359375,0.49609375,0.466796875,0.4462890625,0.45703125,0.5,0.552734375,0.611328125,0.66015625,0.6845703125,0.6845703125,0.6767578125,0.673828125,0.677734375,0.6923828125,0.6953125,0.666015625,0.6025390625,0.5224609375,0.4482421875,0.375,0.314453125,0.3056640625,0.369140625,0.484375,0.5986328125,0.673828125,0.720703125,0.7060546875,0.625,0.5126953125,0.421875,0.3935546875,0.4287109375,0.4755859375,0.5009765625,0.4912109375,0.451171875,0.404296875,0.3759765625,0.376953125,0.3876953125,0.4013671875,0.4306640625,0.4833984375,0.55078125,0.6181640625,0.673828125,0.7314453125,0.8046875,0.85546875,0.8505859375,0.7880859375,0.7001953125,0.6220703125,0.541015625,0.4375,0.34765625,0.310546875,0.3349609375,0.392578125,0.4482421875,0.494140625,0.5166015625,0.5029296875,0.4580078125,0.40625,0.3759765625,0.376953125,0.380859375,0.361328125,0.3330078125,0.3212890625,0.3408203125,0.3876953125,0.4482421875,0.5029296875,0.533203125,0.5341796875,0.5185546875,0.509765625,0.5263671875,0.5703125,0.61328125,0.62109375,0.580078125,0.5029296875,0.423828125,0.37890625,0.376953125,0.388671875,0.40234375,0.412109375,0.412109375,0.40234375,0.388671875,0.376953125,0.3662109375,0.3525390625,0.3427734375,0.3427734375,0.3525390625,0.3662109375,0.376953125,0.39453125,0.4375,0.505859375,0.580078125,0.6376953125,0.66796875,0.673828125,0.6748046875,0.677734375,0.6650390625,0.626953125,0.5673828125,0.5029296875,0.4482421875,0.3896484375,0.31640625,0.26171875,0.2568359375,0.306640625,0.380859375,0.4482421875,0.517578125,0.6044921875,0.6689453125,0.6728515625,0.6142578125,0.5263671875,0.4482421875,0.3837890625,0.3583984375,0.3955078125,0.4853515625,0.5888671875,0.658203125,0.673828125,0.681640625,0.7177734375,0.763671875,0.7890625,0.7783203125,0.7333984375,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.71875,0.6982421875,0.609375,0.4931640625,0.404296875,0.3837890625,0.4287109375,0.5,0.595703125,0.6796875,0.7119140625,0.6826171875,0.6162109375,0.55078125,0.4931640625,0.45703125,0.45703125,0.4931640625,0.541015625,0.5712890625,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.4208984375,0.3876953125,0.349609375,0.337890625,0.3671875,0.427734375,0.5,0.5751953125,0.654296875,0.7138671875,0.734375,0.7177734375,0.689453125,0.673828125,0.6513671875,0.5888671875,0.5107421875,0.45703125,0.455078125,0.5009765625,0.5703125,0.6376953125,0.6796875,0.6689453125,0.60546875,0.5185546875,0.4521484375,0.4287109375,0.4130859375,0.384765625,0.3642578125,0.375,0.421875,0.4873046875,0.55078125,0.6025390625,0.611328125,0.5771484375,0.525390625,0.4912109375,0.5,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.6337890625,0.6572265625,0.615234375,0.5205078125,0.4130859375,0.3408203125,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.609375,0.611328125,0.5673828125,0.5,0.42578125,0.3525390625,0.2998046875,0.2841796875,0.298828125,0.3193359375,0.3251953125,0.3271484375,0.3330078125,0.3408203125,0.345703125,0.34375,0.3359375,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.421875,0.392578125,0.3544921875,0.3330078125,0.341796875,0.3798828125,0.4287109375,0.4775390625,0.5087890625,0.509765625,0.484375,0.4482421875,0.42578125,0.4287109375,0.4365234375,0.431640625,0.4140625,0.3916015625,0.375,0.3701171875,0.376953125,0.3828125,0.37890625,0.3818359375,0.4111328125,0.4716796875,0.5478515625,0.6220703125,0.6982421875,0.7802734375,0.83203125,0.8232421875,0.759765625,0.681640625,0.6220703125,0.5751953125,0.546875,0.5361328125,0.533203125,0.5234375,0.494140625,0.4482421875,0.3935546875,0.3359375,0.291015625,0.2763671875,0.2890625,0.3115234375,0.3251953125,0.3369140625,0.3505859375,0.3681640625,0.38671875,0.404296875,0.41796875,0.4287109375,0.439453125,0.4462890625,0.4482421875,0.4443359375,0.4365234375,0.4306640625,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.51171875,0.541015625,0.52734375,0.4892578125,0.45703125,0.458984375,0.5,0.5537109375,0.611328125,0.65625,0.6708984375,0.658203125,0.6357421875,0.6220703125,0.5986328125,0.5341796875,0.4521484375,0.3935546875,0.3876953125,0.4306640625,0.5,0.5791015625,0.67578125,0.7509765625,0.7646484375,0.7158203125,0.6376953125,0.5703125,0.5009765625,0.4189453125,0.357421875,0.3525390625,0.4052734375,0.4833984375,0.55078125,0.619140625,0.7001953125,0.7568359375,0.7568359375,0.7001953125,0.619140625,0.55078125,0.4853515625,0.4130859375,0.3671875,0.376953125,0.4365234375,0.51171875,0.5703125,0.609375,0.6025390625,0.546875,0.4716796875,0.4150390625,0.408203125,0.4482421875,0.4931640625,0.515625,0.521484375,0.529296875,0.5556640625,0.60546875,0.673828125,0.7490234375,0.8251953125,0.8603515625,0.8291015625,0.7412109375,0.6416015625,0.5703125,0.515625,0.4921875,0.4990234375,0.5185546875,0.525390625,0.501953125,0.4482421875,0.3935546875,0.3701171875,0.380859375,0.4091796875,0.4296875,0.419921875,0.376953125,0.3173828125,0.2392578125,0.17578125,0.640625,0.568359375,0.4765625,0.4013671875,0.3642578125,0.33203125,0.28515625,0.2373046875,0.208984375,0.2099609375,0.232421875,0.2587890625,0.298828125,0.38671875,0.501953125,0.6015625,0.650390625,0.64453125,0.6044921875,0.5576171875,0.505859375,0.4580078125,0.421875,0.3984375,0.3818359375,0.3642578125,0.341796875,0.314453125,0.30078125,0.3173828125,0.36328125,0.419921875,0.46875,0.51171875,0.537109375,0.5380859375,0.5185546875,0.4951171875,0.486328125,0.5,0.5234375,0.56640625,0.6240234375,0.6796875,0.71875,0.7373046875,0.740234375,0.7421875,0.7421875,0.7177734375,0.6572265625,0.56640625,0.47265625,0.39453125,0.326171875,0.2900390625,0.3193359375,0.421875,0.5615234375,0.677734375,0.740234375,0.775390625,0.7646484375,0.6982421875,0.599609375,0.5087890625,0.462890625,0.46875,0.4814453125,0.466796875,0.427734375,0.380859375,0.34765625,0.34375,0.3642578125,0.3955078125,0.4501953125,0.5244140625,0.6044921875,0.6728515625,0.716796875,0.740234375,0.765625,0.80859375,0.8427734375,0.8369140625,0.7861328125,0.7099609375,0.634765625,0.556640625,0.4638671875,0.3828125,0.341796875,0.345703125,0.3720703125,0.39453125,0.408203125,0.4033203125,0.3798828125,0.353515625,0.3369140625,0.341796875,0.3642578125,0.3837890625,0.380859375,0.3583984375,0.3359375,0.33203125,0.353515625,0.39453125,0.439453125,0.4775390625,0.501953125,0.5107421875,0.5107421875,0.5146484375,0.5302734375,0.541015625,0.51953125,0.4658203125,0.4033203125,0.3564453125,0.3447265625,0.3642578125,0.3935546875,0.427734375,0.4521484375,0.4521484375,0.427734375,0.3935546875,0.3642578125,0.3349609375,0.2998046875,0.275390625,0.275390625,0.2998046875,0.3349609375,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.640625,0.705078125,0.7353515625,0.740234375,0.734375,0.7041015625,0.640625,0.5576171875,0.4765625,0.4208984375,0.39453125,0.3701171875,0.3291015625,0.2919921875,0.28125,0.3037109375,0.34765625,0.39453125,0.4482421875,0.5234375,0.5849609375,0.5966796875,0.548828125,0.470703125,0.39453125,0.3330078125,0.322265625,0.3857421875,0.5078125,0.638671875,0.7216796875,0.740234375,0.74609375,0.7724609375,0.806640625,0.826171875,0.8173828125,0.7841796875,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.771484375,0.7451171875,0.6591796875,0.5498046875,0.4638671875,0.4375,0.46875,0.5224609375,0.5986328125,0.6708984375,0.70703125,0.6953125,0.65234375,0.6044921875,0.5625,0.53515625,0.5302734375,0.541015625,0.552734375,0.55078125,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.4599609375,0.421875,0.375,0.3525390625,0.373046875,0.4287109375,0.5,0.578125,0.67578125,0.76171875,0.806640625,0.8017578125,0.7705078125,0.740234375,0.69921875,0.61328125,0.5078125,0.4326171875,0.4189453125,0.4609375,0.5302734375,0.6015625,0.662109375,0.681640625,0.646484375,0.57421875,0.505859375,0.46875,0.4404296875,0.4111328125,0.40234375,0.4306640625,0.4892578125,0.5537109375,0.6044921875,0.642578125,0.6494140625,0.6240234375,0.5849609375,0.5595703125,0.56640625,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.59375,0.61328125,0.5654296875,0.4638671875,0.349609375,0.275390625,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4794921875,0.525390625,0.5849609375,0.6240234375,0.6171875,0.568359375,0.5,0.423828125,0.3427734375,0.275390625,0.2421875,0.2421875,0.2548828125,0.2587890625,0.2626953125,0.2783203125,0.2978515625,0.30859375,0.3037109375,0.2841796875,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.466796875,0.455078125,0.44140625,0.43359375,0.4365234375,0.451171875,0.46875,0.484375,0.482421875,0.4658203125,0.447265625,0.4375,0.4462890625,0.46875,0.48828125,0.4794921875,0.44140625,0.3916015625,0.353515625,0.3447265625,0.3642578125,0.3857421875,0.396484375,0.408203125,0.4384765625,0.4921875,0.5625,0.634765625,0.70703125,0.7705078125,0.7978515625,0.775390625,0.71875,0.6630859375,0.634765625,0.61328125,0.5810546875,0.5380859375,0.4912109375,0.4482421875,0.416015625,0.39453125,0.369140625,0.3232421875,0.2705078125,0.2314453125,0.2197265625,0.2333984375,0.2587890625,0.2861328125,0.3154296875,0.34765625,0.380859375,0.4130859375,0.4423828125,0.46875,0.4951171875,0.513671875,0.5185546875,0.5078125,0.48828125,0.47265625,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.4638671875,0.5185546875,0.541015625,0.5302734375,0.50390625,0.48828125,0.5,0.5244140625,0.5703125,0.6240234375,0.6630859375,0.673828125,0.66015625,0.634765625,0.595703125,0.5185546875,0.4306640625,0.375,0.3779296875,0.4296875,0.5,0.576171875,0.6591796875,0.712890625,0.708984375,0.654296875,0.5830078125,0.5302734375,0.4814453125,0.4306640625,0.4052734375,0.4248046875,0.484375,0.552734375,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.7568359375,0.71484375,0.6552734375,0.6044921875,0.5556640625,0.5029296875,0.4638671875,0.455078125,0.4755859375,0.5068359375,0.5302734375,0.54296875,0.529296875,0.48828125,0.4365234375,0.3955078125,0.3818359375,0.39453125,0.4111328125,0.4248046875,0.4521484375,0.5048828125,0.5810546875,0.6650390625,0.740234375,0.8115234375,0.8642578125,0.8642578125,0.7978515625,0.689453125,0.5888671875,0.5302734375,0.4892578125,0.4658203125,0.4609375,0.4638671875,0.458984375,0.435546875,0.39453125,0.3525390625,0.326171875,0.3251953125,0.3447265625,0.3681640625,0.376953125,0.3642578125,0.3359375,0.2802734375,0.2236328125,0.6630859375,0.607421875,0.525390625,0.4482421875,0.39453125,0.3408203125,0.2646484375,0.1923828125,0.15625,0.1689453125,0.2119140625,0.2587890625,0.3154296875,0.4091796875,0.521484375,0.61328125,0.658203125,0.658203125,0.634765625,0.6005859375,0.5419921875,0.46875,0.408203125,0.3779296875,0.3779296875,0.39453125,0.412109375,0.427734375,0.44140625,0.4580078125,0.478515625,0.50390625,0.5302734375,0.5576171875,0.583984375,0.5966796875,0.5849609375,0.5556640625,0.5224609375,0.5,0.486328125,0.501953125,0.5517578125,0.6240234375,0.69140625,0.7314453125,0.740234375,0.7412109375,0.7373046875,0.70703125,0.6376953125,0.541015625,0.4423828125,0.3642578125,0.2998046875,0.27734375,0.328125,0.447265625,0.5888671875,0.6953125,0.740234375,0.763671875,0.7685546875,0.740234375,0.681640625,0.611328125,0.556640625,0.5302734375,0.501953125,0.4453125,0.3779296875,0.3310546875,0.3232421875,0.3505859375,0.39453125,0.44921875,0.53515625,0.634765625,0.71484375,0.7548828125,0.7568359375,0.740234375,0.728515625,0.740234375,0.759765625,0.76171875,0.732421875,0.6748046875,0.6044921875,0.5322265625,0.4609375,0.408203125,0.3828125,0.3798828125,0.3779296875,0.3642578125,0.33984375,0.3037109375,0.2734375,0.26953125,0.298828125,0.3466796875,0.39453125,0.4345703125,0.4482421875,0.4306640625,0.3916015625,0.3564453125,0.345703125,0.3642578125,0.39453125,0.4375,0.48046875,0.5048828125,0.5048828125,0.4892578125,0.46875,0.4423828125,0.3935546875,0.33984375,0.30859375,0.314453125,0.349609375,0.39453125,0.4443359375,0.50390625,0.546875,0.546875,0.50390625,0.4443359375,0.39453125,0.34375,0.2841796875,0.2421875,0.2421875,0.2841796875,0.34375,0.39453125,0.4462890625,0.521484375,0.607421875,0.6796875,0.72265625,0.73828125,0.740234375,0.728515625,0.671875,0.57421875,0.466796875,0.3857421875,0.3544921875,0.3642578125,0.37890625,0.376953125,0.361328125,0.341796875,0.3330078125,0.3408203125,0.3642578125,0.3994140625,0.4609375,0.5185546875,0.5380859375,0.5048828125,0.4375,0.3642578125,0.302734375,0.2958984375,0.3671875,0.4970703125,0.6337890625,0.7216796875,0.740234375,0.744140625,0.7587890625,0.7783203125,0.7900390625,0.78515625,0.765625,0.740234375,0.7109375,0.67578125,0.6513671875,0.6513671875,0.67578125,0.7109375,0.740234375,0.7568359375,0.7353515625,0.673828125,0.595703125,0.5341796875,0.5126953125,0.5302734375,0.5615234375,0.609375,0.6572265625,0.6845703125,0.68359375,0.662109375,0.634765625,0.611328125,0.5986328125,0.5908203125,0.5771484375,0.5517578125,0.513671875,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.51953125,0.4736328125,0.4140625,0.375,0.3818359375,0.4306640625,0.5,0.5810546875,0.689453125,0.7900390625,0.8427734375,0.833984375,0.7880859375,0.740234375,0.6796875,0.572265625,0.44921875,0.3671875,0.353515625,0.3994140625,0.46875,0.546875,0.6328125,0.693359375,0.6982421875,0.650390625,0.58203125,0.5302734375,0.484375,0.44921875,0.4443359375,0.48046875,0.5419921875,0.6005859375,0.634765625,0.6572265625,0.6611328125,0.646484375,0.6240234375,0.609375,0.61328125,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.5341796875,0.560546875,0.52734375,0.44140625,0.3408203125,0.2734375,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5390625,0.5771484375,0.6240234375,0.646484375,0.6259765625,0.5703125,0.5,0.423828125,0.3427734375,0.275390625,0.2421875,0.2421875,0.2548828125,0.2587890625,0.265625,0.2919921875,0.3251953125,0.3447265625,0.3359375,0.302734375,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.5322265625,0.5439453125,0.5576171875,0.5654296875,0.5625,0.5478515625,0.5302734375,0.5048828125,0.46484375,0.427734375,0.416015625,0.439453125,0.4833984375,0.5302734375,0.564453125,0.5546875,0.4990234375,0.4248046875,0.369140625,0.359375,0.39453125,0.43359375,0.4501953125,0.4521484375,0.4580078125,0.484375,0.5361328125,0.6044921875,0.671875,0.712890625,0.7119140625,0.673828125,0.6240234375,0.595703125,0.6044921875,0.615234375,0.5888671875,0.5244140625,0.4443359375,0.3798828125,0.353515625,0.3642578125,0.3740234375,0.3486328125,0.294921875,0.240234375,0.2109375,0.2197265625,0.2587890625,0.302734375,0.3427734375,0.3779296875,0.4111328125,0.4462890625,0.4853515625,0.5302734375,0.57421875,0.607421875,0.615234375,0.5966796875,0.5625,0.5361328125,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.439453125,0.51953125,0.5771484375,0.5908203125,0.5634765625,0.5244140625,0.5,0.490234375,0.5146484375,0.568359375,0.6240234375,0.6533203125,0.6435546875,0.6044921875,0.5478515625,0.4609375,0.375,0.3359375,0.3603515625,0.42578125,0.5,0.572265625,0.63671875,0.662109375,0.6357421875,0.5703125,0.505859375,0.46875,0.443359375,0.4287109375,0.44140625,0.4853515625,0.546875,0.6015625,0.634765625,0.6640625,0.69921875,0.7236328125,0.7236328125,0.69921875,0.6640625,0.634765625,0.6083984375,0.580078125,0.5517578125,0.52734375,0.5068359375,0.4873046875,0.46875,0.451171875,0.435546875,0.4228515625,0.4111328125,0.3974609375,0.3818359375,0.3642578125,0.3447265625,0.3349609375,0.361328125,0.4384765625,0.5498046875,0.6591796875,0.740234375,0.8076171875,0.841796875,0.814453125,0.7236328125,0.60546875,0.5107421875,0.46875,0.4443359375,0.427734375,0.4189453125,0.4140625,0.4052734375,0.388671875,0.3642578125,0.3369140625,0.3095703125,0.2978515625,0.30859375,0.3388671875,0.3720703125,0.39453125,0.4033203125,0.375,0.3251953125,0.6669921875,0.642578125,0.5849609375,0.5126953125,0.4482421875,0.376953125,0.28125,0.197265625,0.1650390625,0.1943359375,0.2607421875,0.3251953125,0.3935546875,0.48046875,0.5654296875,0.6220703125,0.640625,0.6337890625,0.6220703125,0.6005859375,0.5419921875,0.4638671875,0.400390625,0.37890625,0.400390625,0.4482421875,0.4990234375,0.544921875,0.57421875,0.580078125,0.5712890625,0.564453125,0.5703125,0.5859375,0.6142578125,0.638671875,0.63671875,0.6044921875,0.5517578125,0.5,0.4541015625,0.4375,0.466796875,0.53515625,0.611328125,0.662109375,0.673828125,0.6767578125,0.6826171875,0.669921875,0.6220703125,0.5419921875,0.4541015625,0.376953125,0.3134765625,0.2900390625,0.3359375,0.439453125,0.5615234375,0.646484375,0.673828125,0.6884765625,0.712890625,0.7294921875,0.7197265625,0.6796875,0.623046875,0.5703125,0.5087890625,0.4208984375,0.3388671875,0.3017578125,0.32421875,0.3837890625,0.4482421875,0.51953125,0.6220703125,0.7216796875,0.7763671875,0.771484375,0.7265625,0.673828125,0.630859375,0.6201171875,0.6376953125,0.6572265625,0.654296875,0.6171875,0.55078125,0.484375,0.4404296875,0.4267578125,0.4326171875,0.4375,0.4208984375,0.376953125,0.3212890625,0.2568359375,0.216796875,0.2314453125,0.296875,0.3798828125,0.4482421875,0.5048828125,0.5341796875,0.5224609375,0.4736328125,0.4140625,0.376953125,0.376953125,0.3955078125,0.439453125,0.490234375,0.521484375,0.515625,0.478515625,0.4287109375,0.37109375,0.30078125,0.25,0.25,0.3037109375,0.380859375,0.4482421875,0.515625,0.5966796875,0.6533203125,0.6533203125,0.5966796875,0.515625,0.4482421875,0.3798828125,0.298828125,0.2421875,0.2421875,0.298828125,0.3798828125,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.6806640625,0.6845703125,0.6767578125,0.673828125,0.6591796875,0.59375,0.490234375,0.3896484375,0.3330078125,0.3349609375,0.376953125,0.42578125,0.45703125,0.4580078125,0.4326171875,0.396484375,0.3740234375,0.376953125,0.3974609375,0.4462890625,0.501953125,0.5283203125,0.5068359375,0.4482421875,0.376953125,0.314453125,0.2978515625,0.3505859375,0.458984375,0.5791015625,0.65625,0.673828125,0.6748046875,0.6806640625,0.6884765625,0.693359375,0.69140625,0.68359375,0.673828125,0.662109375,0.6484375,0.638671875,0.638671875,0.6484375,0.662109375,0.673828125,0.6796875,0.6689453125,0.6396484375,0.603515625,0.5751953125,0.5634765625,0.5703125,0.5830078125,0.6025390625,0.6240234375,0.6376953125,0.6396484375,0.6318359375,0.6220703125,0.615234375,0.6201171875,0.62109375,0.6005859375,0.5537109375,0.4921875,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.55859375,0.5078125,0.439453125,0.3896484375,0.3876953125,0.431640625,0.5,0.58203125,0.69140625,0.7890625,0.830078125,0.8046875,0.7392578125,0.673828125,0.59765625,0.4814453125,0.3623046875,0.2939453125,0.2978515625,0.3564453125,0.4287109375,0.5107421875,0.6162109375,0.7060546875,0.7392578125,0.7060546875,0.63671875,0.5703125,0.509765625,0.4658203125,0.4580078125,0.4931640625,0.552734375,0.6015625,0.6220703125,0.6298828125,0.6318359375,0.6259765625,0.6171875,0.611328125,0.61328125,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.49609375,0.5361328125,0.5263671875,0.46875,0.392578125,0.337890625,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.578125,0.611328125,0.6494140625,0.6611328125,0.6318359375,0.5712890625,0.5,0.42578125,0.3525390625,0.2998046875,0.2841796875,0.298828125,0.3193359375,0.3251953125,0.333984375,0.3701171875,0.416015625,0.44140625,0.4296875,0.3857421875,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.5771484375,0.6064453125,0.64453125,0.666015625,0.6572265625,0.619140625,0.5703125,0.51171875,0.439453125,0.3837890625,0.3798828125,0.4287109375,0.5029296875,0.5703125,0.6181640625,0.6123046875,0.55078125,0.466796875,0.4052734375,0.3994140625,0.4482421875,0.5,0.515625,0.4970703125,0.4677734375,0.4580078125,0.4873046875,0.55078125,0.6142578125,0.63671875,0.6123046875,0.5595703125,0.515625,0.51171875,0.55078125,0.58984375,0.576171875,0.5087890625,0.419921875,0.3525390625,0.3388671875,0.376953125,0.4169921875,0.412109375,0.3642578125,0.3037109375,0.265625,0.2744140625,0.3251953125,0.3828125,0.4208984375,0.44140625,0.4541015625,0.474609375,0.513671875,0.5703125,0.6298828125,0.6748046875,0.685546875,0.66015625,0.6142578125,0.578125,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.45703125,0.5537109375,0.6328125,0.65625,0.6201171875,0.556640625,0.5,0.4599609375,0.46484375,0.51171875,0.5732421875,0.611328125,0.6025390625,0.55078125,0.48046875,0.3876953125,0.3115234375,0.29296875,0.3408203125,0.4228515625,0.5,0.5693359375,0.619140625,0.6240234375,0.580078125,0.5087890625,0.451171875,0.4287109375,0.421875,0.431640625,0.46484375,0.515625,0.568359375,0.60546875,0.6220703125,0.6328125,0.646484375,0.65625,0.65625,0.646484375,0.6328125,0.6220703125,0.6142578125,0.61328125,0.60546875,0.5810546875,0.5361328125,0.4814453125,0.4287109375,0.3857421875,0.37109375,0.388671875,0.41796875,0.4345703125,0.4208984375,0.376953125,0.32421875,0.28125,0.28515625,0.3544921875,0.4716796875,0.58984375,0.673828125,0.7392578125,0.767578125,0.734375,0.6435546875,0.5341796875,0.455078125,0.4287109375,0.4189453125,0.4111328125,0.4052734375,0.400390625,0.39453125,0.38671875,0.376953125,0.361328125,0.3330078125,0.30859375,0.310546875,0.34375,0.3955078125,0.4482421875,0.4873046875,0.4833984375,0.439453125,0.6455078125,0.6533203125,0.6220703125,0.5595703125,0.4892578125,0.41015625,0.3095703125,0.228515625,0.2109375,0.259765625,0.34375,0.419921875,0.4912109375,0.5615234375,0.609375,0.6201171875,0.6005859375,0.5771484375,0.5693359375,0.556640625,0.505859375,0.4365234375,0.3876953125,0.3837890625,0.4248046875,0.4892578125,0.5576171875,0.615234375,0.6416015625,0.630859375,0.595703125,0.5654296875,0.5595703125,0.5693359375,0.6025390625,0.640625,0.6533203125,0.6259765625,0.5673828125,0.5,0.4345703125,0.39453125,0.3994140625,0.44921875,0.5185546875,0.568359375,0.5791015625,0.5859375,0.609375,0.62890625,0.6201171875,0.5732421875,0.5029296875,0.4296875,0.36328125,0.328125,0.3466796875,0.416015625,0.5029296875,0.564453125,0.5791015625,0.58984375,0.62890625,0.6748046875,0.6982421875,0.6796875,0.626953125,0.5595703125,0.4814453125,0.3818359375,0.3017578125,0.2822265625,0.3310546875,0.4130859375,0.4892578125,0.5693359375,0.6708984375,0.7548828125,0.7783203125,0.7333984375,0.6533203125,0.5791015625,0.521484375,0.50390625,0.529296875,0.5703125,0.5927734375,0.5712890625,0.509765625,0.447265625,0.4248046875,0.4453125,0.4833984375,0.505859375,0.48828125,0.4296875,0.3544921875,0.271484375,0.2197265625,0.2353515625,0.3125,0.41015625,0.4892578125,0.5556640625,0.5986328125,0.59765625,0.55078125,0.486328125,0.439453125,0.4296875,0.44140625,0.4833984375,0.537109375,0.5673828125,0.5556640625,0.505859375,0.439453125,0.3642578125,0.2802734375,0.2265625,0.23828125,0.3134765625,0.4111328125,0.4892578125,0.5673828125,0.6591796875,0.724609375,0.724609375,0.6591796875,0.5673828125,0.4892578125,0.412109375,0.3193359375,0.2548828125,0.2548828125,0.3193359375,0.412109375,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.6484375,0.6171875,0.5869140625,0.5791015625,0.56640625,0.5087890625,0.423828125,0.35546875,0.3349609375,0.3671875,0.4296875,0.49609375,0.544921875,0.556640625,0.5263671875,0.4765625,0.4375,0.4296875,0.44140625,0.484375,0.5380859375,0.5673828125,0.552734375,0.5,0.4296875,0.36328125,0.3291015625,0.349609375,0.4189453125,0.505859375,0.5654296875,0.5791015625,0.5791015625,0.580078125,0.58203125,0.58203125,0.58203125,0.5810546875,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.580078125,0.578125,0.572265625,0.56640625,0.560546875,0.55859375,0.5595703125,0.5615234375,0.564453125,0.568359375,0.5712890625,0.572265625,0.5712890625,0.5693359375,0.57421875,0.5986328125,0.62109375,0.6171875,0.576171875,0.5107421875,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5478515625,0.4990234375,0.4326171875,0.3857421875,0.3857421875,0.4306640625,0.5,0.5810546875,0.68359375,0.7666015625,0.787109375,0.73828125,0.6552734375,0.5791015625,0.498046875,0.3876953125,0.2900390625,0.2529296875,0.287109375,0.36328125,0.439453125,0.5224609375,0.6298828125,0.7216796875,0.7529296875,0.712890625,0.634765625,0.5595703125,0.4912109375,0.4404296875,0.4287109375,0.4599609375,0.5146484375,0.5576171875,0.5693359375,0.5703125,0.5712890625,0.5703125,0.568359375,0.5673828125,0.568359375,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.5087890625,0.55859375,0.5673828125,0.5322265625,0.474609375,0.4306640625,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.568359375,0.6025390625,0.642578125,0.6572265625,0.6298828125,0.5703125,0.5,0.427734375,0.3662109375,0.3349609375,0.34375,0.3798828125,0.412109375,0.419921875,0.4296875,0.470703125,0.5224609375,0.5517578125,0.5390625,0.48828125,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.568359375,0.6083984375,0.6591796875,0.6884765625,0.67578125,0.6259765625,0.5595703125,0.4833984375,0.392578125,0.3271484375,0.3271484375,0.390625,0.4814453125,0.5595703125,0.6162109375,0.6181640625,0.5634765625,0.4853515625,0.4306640625,0.4326171875,0.4892578125,0.5478515625,0.560546875,0.5244140625,0.4697265625,0.4345703125,0.44921875,0.509765625,0.5693359375,0.58203125,0.544921875,0.4853515625,0.4443359375,0.453125,0.509765625,0.564453125,0.5654296875,0.5087890625,0.4296875,0.3740234375,0.375,0.4296875,0.486328125,0.494140625,0.4521484375,0.3916015625,0.3515625,0.361328125,0.419921875,0.4814453125,0.5087890625,0.5009765625,0.478515625,0.470703125,0.498046875,0.5595703125,0.6279296875,0.6787109375,0.69140625,0.662109375,0.609375,0.5693359375,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.5107421875,0.611328125,0.69140625,0.7080078125,0.6572265625,0.57421875,0.5,0.443359375,0.4345703125,0.4765625,0.5380859375,0.578125,0.568359375,0.509765625,0.4306640625,0.3369140625,0.2685546875,0.2646484375,0.328125,0.419921875,0.5,0.568359375,0.6142578125,0.615234375,0.5703125,0.5029296875,0.453125,0.439453125,0.4404296875,0.4541015625,0.4814453125,0.515625,0.546875,0.564453125,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5751953125,0.5732421875,0.5712890625,0.5693359375,0.57421875,0.5966796875,0.619140625,0.6142578125,0.57421875,0.5087890625,0.439453125,0.3828125,0.37109375,0.4072265625,0.4619140625,0.498046875,0.4873046875,0.4296875,0.3564453125,0.283203125,0.25,0.2890625,0.3857421875,0.49609375,0.5791015625,0.646484375,0.6826171875,0.666015625,0.599609375,0.5146484375,0.4541015625,0.439453125,0.4384765625,0.4365234375,0.435546875,0.4345703125,0.4326171875,0.431640625,0.4296875,0.419921875,0.38671875,0.3486328125,0.3359375,0.36328125,0.421875,0.4892578125,0.5458984375,0.5546875,0.513671875,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.5546875,0.599609375,0.5986328125,0.5546875,0.4892578125,0.4150390625,0.333984375,0.2880859375,0.310546875,0.39453125,0.498046875,0.5791015625,0.6455078125,0.6787109375,0.65625,0.583984375,0.494140625,0.43359375,0.419921875,0.412109375,0.3818359375,0.3486328125,0.3408203125,0.37109375,0.4306640625,0.5,0.564453125,0.607421875,0.60546875,0.55859375,0.4921875,0.4423828125,0.4296875,0.439453125,0.4873046875,0.5537109375,0.6005859375,0.6015625,0.5576171875,0.4892578125,0.4189453125,0.3603515625,0.3349609375,0.349609375,0.3896484375,0.4228515625,0.4296875,0.4404296875,0.49609375,0.578125,0.64453125,0.6640625,0.6318359375,0.5693359375,0.4990234375,0.4306640625,0.384765625,0.375,0.392578125,0.4140625,0.419921875,0.4306640625,0.474609375,0.5322265625,0.5673828125,0.55859375,0.5087890625,0.439453125,0.361328125,0.2744140625,0.220703125,0.2373046875,0.3173828125,0.41796875,0.5,0.5771484375,0.6591796875,0.7060546875,0.68359375,0.599609375,0.498046875,0.419921875,0.365234375,0.3671875,0.4267578125,0.5087890625,0.56640625,0.56640625,0.509765625,0.453125,0.4501953125,0.50390625,0.580078125,0.6328125,0.6279296875,0.5693359375,0.48828125,0.3876953125,0.3095703125,0.2939453125,0.3466796875,0.4326171875,0.509765625,0.5791015625,0.6396484375,0.669921875,0.6591796875,0.6220703125,0.5888671875,0.5791015625,0.5869140625,0.626953125,0.6787109375,0.708984375,0.697265625,0.6474609375,0.5791015625,0.5,0.3984375,0.31640625,0.296875,0.3466796875,0.431640625,0.509765625,0.5888671875,0.6806640625,0.7431640625,0.7373046875,0.666015625,0.5693359375,0.4892578125,0.41015625,0.3193359375,0.2587890625,0.2646484375,0.3359375,0.4306640625,0.509765625,0.5751953125,0.6162109375,0.6083984375,0.5556640625,0.4833984375,0.431640625,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6474609375,0.6982421875,0.7099609375,0.6787109375,0.6240234375,0.5810546875,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.5,0.4326171875,0.3896484375,0.3837890625,0.40625,0.431640625,0.439453125,0.4404296875,0.4384765625,0.4326171875,0.4267578125,0.4208984375,0.4189453125,0.419921875,0.421875,0.423828125,0.42578125,0.42578125,0.423828125,0.421875,0.419921875,0.41796875,0.416015625,0.4140625,0.4140625,0.416015625,0.41796875,0.419921875,0.421875,0.423828125,0.42578125,0.42578125,0.423828125,0.421875,0.419921875,0.431640625,0.490234375,0.578125,0.650390625,0.673828125,0.6435546875,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.4306640625,0.396484375,0.35546875,0.3388671875,0.36328125,0.419921875,0.4892578125,0.5654296875,0.6494140625,0.7001953125,0.68359375,0.60546875,0.5078125,0.4296875,0.357421875,0.2841796875,0.2529296875,0.2919921875,0.388671875,0.498046875,0.5791015625,0.6533203125,0.7265625,0.7568359375,0.716796875,0.6181640625,0.509765625,0.4296875,0.36328125,0.314453125,0.302734375,0.3330078125,0.3837890625,0.421875,0.4296875,0.427734375,0.423828125,0.4208984375,0.41796875,0.4169921875,0.41796875,0.419921875,0.421875,0.423828125,0.42578125,0.42578125,0.423828125,0.421875,0.419921875,0.412109375,0.3876953125,0.3681640625,0.3759765625,0.421875,0.4892578125,0.5595703125,0.6259765625,0.6787109375,0.6953125,0.671875,0.6259765625,0.587890625,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.44140625,0.4560546875,0.4853515625,0.5224609375,0.5546875,0.57421875,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.451171875,0.5,0.56640625,0.61328125,0.61328125,0.568359375,0.5,0.431640625,0.38671875,0.388671875,0.435546875,0.501953125,0.5498046875,0.5595703125,0.5673828125,0.607421875,0.6591796875,0.689453125,0.677734375,0.626953125,0.5595703125,0.48828125,0.421875,0.380859375,0.3779296875,0.4033203125,0.4306640625,0.439453125,0.4501953125,0.490234375,0.5380859375,0.5615234375,0.54296875,0.48828125,0.419921875,0.3427734375,0.2529296875,0.1923828125,0.197265625,0.2666015625,0.361328125,0.439453125,0.4990234375,0.5146484375,0.4853515625,0.4384765625,0.41015625,0.4287109375,0.4892578125,0.5498046875,0.5595703125,0.51953125,0.458984375,0.4189453125,0.4296875,0.4892578125,0.5498046875,0.564453125,0.529296875,0.474609375,0.4384765625,0.451171875,0.509765625,0.568359375,0.583984375,0.5546875,0.5078125,0.48046875,0.498046875,0.5595703125,0.6201171875,0.6337890625,0.599609375,0.544921875,0.5087890625,0.5205078125,0.5791015625,0.6337890625,0.625,0.5517578125,0.4521484375,0.3798828125,0.373046875,0.4296875,0.5,0.5517578125,0.56640625,0.5380859375,0.4873046875,0.4482421875,0.439453125,0.4345703125,0.412109375,0.390625,0.39453125,0.435546875,0.5,0.5693359375,0.64453125,0.7275390625,0.779296875,0.763671875,0.6865234375,0.5888671875,0.509765625,0.451171875,0.4384765625,0.474609375,0.529296875,0.564453125,0.5498046875,0.4892578125,0.41015625,0.3193359375,0.2578125,0.26171875,0.330078125,0.4228515625,0.5,0.568359375,0.6279296875,0.658203125,0.650390625,0.6171875,0.5869140625,0.5791015625,0.576171875,0.55859375,0.5263671875,0.48828125,0.4541015625,0.4345703125,0.4296875,0.4287109375,0.4287109375,0.4306640625,0.43359375,0.4375,0.439453125,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.521484375,0.51171875,0.5517578125,0.6123046875,0.6513671875,0.6396484375,0.5791015625,0.4970703125,0.3876953125,0.2919921875,0.2568359375,0.2919921875,0.3662109375,0.439453125,0.509765625,0.576171875,0.6201171875,0.6279296875,0.6083984375,0.5859375,0.5791015625,0.5791015625,0.576171875,0.5732421875,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.5478515625,0.5595703125,0.521484375,0.4970703125,0.533203125,0.5322265625,0.4970703125,0.4482421875,0.3935546875,0.341796875,0.3291015625,0.3798828125,0.4814453125,0.5908203125,0.673828125,0.7353515625,0.7451171875,0.6806640625,0.55859375,0.427734375,0.34375,0.3251953125,0.322265625,0.314453125,0.314453125,0.3388671875,0.3876953125,0.4462890625,0.5,0.5478515625,0.576171875,0.56640625,0.5166015625,0.44921875,0.3974609375,0.376953125,0.37890625,0.421875,0.4892578125,0.5419921875,0.552734375,0.5146484375,0.4482421875,0.3779296875,0.3232421875,0.3017578125,0.3173828125,0.353515625,0.37890625,0.376953125,0.3798828125,0.431640625,0.5224609375,0.61328125,0.666015625,0.6640625,0.6220703125,0.5654296875,0.4921875,0.4169921875,0.3603515625,0.33203125,0.3251953125,0.3251953125,0.337890625,0.392578125,0.46875,0.5263671875,0.5361328125,0.49609375,0.4287109375,0.3505859375,0.265625,0.21484375,0.2333984375,0.3154296875,0.41796875,0.5,0.572265625,0.6328125,0.6455078125,0.5908203125,0.4892578125,0.3896484375,0.3251953125,0.2900390625,0.3154296875,0.40234375,0.509765625,0.5859375,0.5986328125,0.55078125,0.5029296875,0.5087890625,0.56640625,0.6416015625,0.689453125,0.681640625,0.6220703125,0.5419921875,0.4453125,0.3701171875,0.3564453125,0.4052734375,0.4833984375,0.55078125,0.615234375,0.6806640625,0.7275390625,0.73828125,0.7177734375,0.689453125,0.673828125,0.671875,0.7001953125,0.744140625,0.7744140625,0.7705078125,0.7314453125,0.673828125,0.6005859375,0.5,0.4072265625,0.37109375,0.40234375,0.4755859375,0.55078125,0.62890625,0.7099609375,0.75390625,0.7265625,0.63671875,0.5302734375,0.4482421875,0.3720703125,0.296875,0.2607421875,0.2919921875,0.3798828125,0.4794921875,0.55078125,0.60546875,0.623046875,0.583984375,0.498046875,0.40234375,0.33984375,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.7333984375,0.7783203125,0.78515625,0.75,0.69140625,0.6416015625,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.56640625,0.4990234375,0.439453125,0.4052734375,0.40234375,0.416015625,0.4287109375,0.435546875,0.423828125,0.3955078125,0.359375,0.330078125,0.3193359375,0.3251953125,0.3369140625,0.3505859375,0.3603515625,0.3603515625,0.3505859375,0.3369140625,0.3251953125,0.314453125,0.30078125,0.291015625,0.291015625,0.30078125,0.314453125,0.3251953125,0.3369140625,0.3505859375,0.3603515625,0.3603515625,0.3505859375,0.3369140625,0.3251953125,0.33203125,0.40234375,0.5234375,0.646484375,0.7197265625,0.7236328125,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.4208984375,0.3876953125,0.345703125,0.3251953125,0.3408203125,0.3876953125,0.4482421875,0.5126953125,0.5791015625,0.6123046875,0.58984375,0.5185546875,0.4375,0.376953125,0.326171875,0.2890625,0.2998046875,0.3740234375,0.4892578125,0.599609375,0.673828125,0.7333984375,0.771484375,0.7548828125,0.6728515625,0.55078125,0.4423828125,0.376953125,0.3291015625,0.2978515625,0.2958984375,0.322265625,0.3583984375,0.3798828125,0.376953125,0.3642578125,0.3447265625,0.3232421875,0.3095703125,0.3076171875,0.3154296875,0.3251953125,0.3369140625,0.3505859375,0.3603515625,0.3603515625,0.3505859375,0.3369140625,0.3251953125,0.314453125,0.306640625,0.3212890625,0.369140625,0.4404296875,0.513671875,0.5703125,0.6220703125,0.671875,0.7041015625,0.7099609375,0.6953125,0.677734375,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.4228515625,0.439453125,0.484375,0.548828125,0.61328125,0.65625,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.609375,0.611328125,0.5673828125,0.5,0.4326171875,0.39453125,0.4052734375,0.458984375,0.525390625,0.568359375,0.5703125,0.568359375,0.5966796875,0.640625,0.6708984375,0.6669921875,0.6279296875,0.5703125,0.505859375,0.4375,0.38671875,0.37109375,0.3876953125,0.4140625,0.4287109375,0.4453125,0.4755859375,0.5,0.4951171875,0.4521484375,0.3896484375,0.3251953125,0.259765625,0.1923828125,0.158203125,0.185546875,0.265625,0.3583984375,0.4287109375,0.4794921875,0.484375,0.4462890625,0.3955078125,0.3671875,0.3857421875,0.4482421875,0.5078125,0.5185546875,0.478515625,0.41796875,0.376953125,0.3876953125,0.4482421875,0.51171875,0.541015625,0.53125,0.501953125,0.4833984375,0.4990234375,0.55078125,0.6015625,0.6064453125,0.5693359375,0.517578125,0.4892578125,0.5087890625,0.5703125,0.6337890625,0.6630859375,0.6533203125,0.625,0.60546875,0.62109375,0.673828125,0.7158203125,0.68359375,0.5751953125,0.4404296875,0.341796875,0.3232421875,0.376953125,0.447265625,0.5,0.5166015625,0.4951171875,0.455078125,0.427734375,0.4287109375,0.4365234375,0.4375,0.4443359375,0.4697265625,0.5146484375,0.5693359375,0.6220703125,0.677734375,0.7421875,0.7822265625,0.767578125,0.7021484375,0.619140625,0.55078125,0.4990234375,0.4833984375,0.501953125,0.53125,0.541015625,0.51171875,0.4482421875,0.3720703125,0.296875,0.2568359375,0.279296875,0.353515625,0.4384765625,0.5,0.552734375,0.611328125,0.66015625,0.6845703125,0.6845703125,0.6767578125,0.673828125,0.66796875,0.6376953125,0.580078125,0.505859375,0.4375,0.39453125,0.376953125,0.3681640625,0.3671875,0.376953125,0.39453125,0.4140625,0.4267578125,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6240234375,0.6201171875,0.6630859375,0.71875,0.7509765625,0.734375,0.673828125,0.5908203125,0.4794921875,0.373046875,0.3173828125,0.326171875,0.375,0.4287109375,0.484375,0.55078125,0.615234375,0.658203125,0.6748046875,0.6748046875,0.673828125,0.6708984375,0.658203125,0.638671875,0.62109375,0.611328125,0.61328125,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.5,0.515625,0.4892578125,0.453125,0.4580078125,0.44140625,0.416015625,0.39453125,0.3740234375,0.3603515625,0.380859375,0.44921875,0.5546875,0.6591796875,0.740234375,0.798828125,0.79296875,0.6982421875,0.541015625,0.3798828125,0.2802734375,0.2587890625,0.26171875,0.2802734375,0.3193359375,0.375,0.4326171875,0.4755859375,0.5,0.5185546875,0.53125,0.5244140625,0.4912109375,0.4423828125,0.3955078125,0.3642578125,0.3486328125,0.375,0.4306640625,0.48046875,0.4931640625,0.4599609375,0.39453125,0.3271484375,0.287109375,0.2861328125,0.3203125,0.361328125,0.380859375,0.3642578125,0.34765625,0.3720703125,0.44140625,0.5322265625,0.609375,0.6435546875,0.634765625,0.607421875,0.5478515625,0.4609375,0.369140625,0.2998046875,0.2646484375,0.2587890625,0.2734375,0.3408203125,0.44140625,0.52734375,0.560546875,0.5341796875,0.46875,0.3896484375,0.2998046875,0.240234375,0.248046875,0.3212890625,0.4189453125,0.5,0.56640625,0.6005859375,0.57421875,0.48828125,0.3779296875,0.29296875,0.2587890625,0.2548828125,0.3095703125,0.4169921875,0.53515625,0.6181640625,0.6376953125,0.6044921875,0.5712890625,0.5830078125,0.6357421875,0.6923828125,0.7197265625,0.697265625,0.634765625,0.55859375,0.4755859375,0.421875,0.4248046875,0.48046875,0.55078125,0.6044921875,0.6552734375,0.720703125,0.7783203125,0.806640625,0.7978515625,0.7685546875,0.740234375,0.720703125,0.7275390625,0.7568359375,0.787109375,0.7978515625,0.7802734375,0.740234375,0.6826171875,0.591796875,0.5,0.4521484375,0.4697265625,0.53125,0.6044921875,0.6796875,0.748046875,0.767578125,0.7119140625,0.5986328125,0.4794921875,0.39453125,0.3232421875,0.26953125,0.26953125,0.3369140625,0.4453125,0.5458984375,0.6044921875,0.640625,0.6318359375,0.5634765625,0.4521484375,0.341796875,0.2734375,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.78515625,0.8212890625,0.826171875,0.7900390625,0.7275390625,0.6689453125,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.609375,0.5595703125,0.4990234375,0.4521484375,0.4345703125,0.4443359375,0.46875,0.486328125,0.46484375,0.4033203125,0.3251953125,0.263671875,0.2421875,0.2587890625,0.2880859375,0.3232421875,0.34765625,0.34765625,0.3232421875,0.2880859375,0.2587890625,0.2294921875,0.1953125,0.1708984375,0.1708984375,0.1953125,0.2294921875,0.2587890625,0.2880859375,0.3232421875,0.34765625,0.34765625,0.3232421875,0.2880859375,0.2587890625,0.2509765625,0.31640625,0.4521484375,0.6103515625,0.728515625,0.76953125,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.4609375,0.42578125,0.375,0.3359375,0.328125,0.3515625,0.39453125,0.4404296875,0.48046875,0.4970703125,0.4775390625,0.43359375,0.3896484375,0.3642578125,0.34765625,0.353515625,0.400390625,0.48828125,0.5947265625,0.6845703125,0.740234375,0.7783203125,0.7763671875,0.71484375,0.6044921875,0.4833984375,0.3974609375,0.3642578125,0.349609375,0.3505859375,0.3671875,0.3857421875,0.3955078125,0.38671875,0.3642578125,0.33203125,0.28515625,0.2373046875,0.208984375,0.2099609375,0.232421875,0.2587890625,0.2880859375,0.3232421875,0.34765625,0.34765625,0.3232421875,0.2880859375,0.2587890625,0.2373046875,0.2392578125,0.28125,0.35546875,0.439453125,0.5009765625,0.5302734375,0.552734375,0.5927734375,0.642578125,0.6904296875,0.7236328125,0.73828125,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.4462890625,0.4443359375,0.48046875,0.5517578125,0.63671875,0.7041015625,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4794921875,0.525390625,0.5849609375,0.6240234375,0.6171875,0.568359375,0.5,0.4345703125,0.400390625,0.4140625,0.4638671875,0.5185546875,0.544921875,0.5302734375,0.5107421875,0.517578125,0.546875,0.5771484375,0.587890625,0.5703125,0.5302734375,0.48046875,0.4248046875,0.3828125,0.375,0.400390625,0.4384765625,0.46875,0.49609375,0.5166015625,0.5078125,0.4609375,0.3857421875,0.3115234375,0.2587890625,0.2138671875,0.1796875,0.1845703125,0.240234375,0.3291015625,0.4140625,0.46875,0.501953125,0.484375,0.421875,0.3525390625,0.3154296875,0.3330078125,0.39453125,0.4541015625,0.46484375,0.4248046875,0.3642578125,0.32421875,0.3349609375,0.39453125,0.462890625,0.5146484375,0.541015625,0.546875,0.548828125,0.5654296875,0.6044921875,0.63671875,0.619140625,0.5576171875,0.48828125,0.451171875,0.4677734375,0.5302734375,0.5986328125,0.6494140625,0.67578125,0.6826171875,0.6845703125,0.701171875,0.740234375,0.765625,0.7109375,0.58203125,0.43359375,0.3291015625,0.3095703125,0.3642578125,0.4326171875,0.482421875,0.5,0.4853515625,0.4609375,0.451171875,0.46875,0.49609375,0.5244140625,0.5517578125,0.5771484375,0.59765625,0.6162109375,0.634765625,0.6591796875,0.6953125,0.7255859375,0.7294921875,0.7001953125,0.65234375,0.6044921875,0.5654296875,0.548828125,0.546875,0.541015625,0.5146484375,0.462890625,0.39453125,0.32421875,0.2734375,0.26953125,0.3203125,0.400390625,0.46875,0.5,0.5234375,0.56640625,0.6240234375,0.6796875,0.71875,0.7373046875,0.740234375,0.7353515625,0.705078125,0.640625,0.5517578125,0.4638671875,0.3984375,0.3642578125,0.3408203125,0.333984375,0.3525390625,0.3916015625,0.4345703125,0.462890625,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.7060546875,0.71484375,0.759765625,0.8095703125,0.830078125,0.8037109375,0.740234375,0.6611328125,0.5654296875,0.4775390625,0.427734375,0.4248046875,0.447265625,0.46875,0.494140625,0.541015625,0.6044921875,0.66796875,0.71484375,0.736328125,0.740234375,0.734375,0.7060546875,0.6630859375,0.6240234375,0.60546875,0.611328125,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.435546875,0.4580078125,0.4521484375,0.44140625,0.40625,0.369140625,0.3525390625,0.3642578125,0.380859375,0.3994140625,0.4326171875,0.494140625,0.5771484375,0.6640625,0.740234375,0.798828125,0.79296875,0.6982421875,0.541015625,0.3798828125,0.2802734375,0.2587890625,0.267578125,0.3076171875,0.375,0.447265625,0.4970703125,0.5126953125,0.5,0.4853515625,0.484375,0.4912109375,0.4912109375,0.4736328125,0.4384765625,0.39453125,0.359375,0.3642578125,0.40234375,0.4443359375,0.4580078125,0.4287109375,0.3642578125,0.3017578125,0.279296875,0.306640625,0.36328125,0.416015625,0.427734375,0.39453125,0.3525390625,0.333984375,0.3583984375,0.4248046875,0.5087890625,0.5751953125,0.6044921875,0.615234375,0.5869140625,0.513671875,0.4140625,0.322265625,0.26953125,0.2587890625,0.275390625,0.349609375,0.4638671875,0.5654296875,0.61328125,0.59375,0.5302734375,0.44921875,0.3515625,0.2783203125,0.2705078125,0.330078125,0.4208984375,0.5,0.5615234375,0.5732421875,0.5185546875,0.4169921875,0.3134765625,0.255859375,0.2587890625,0.2900390625,0.3642578125,0.4716796875,0.57421875,0.6396484375,0.654296875,0.634765625,0.6181640625,0.6376953125,0.6787109375,0.712890625,0.7119140625,0.671875,0.6044921875,0.5322265625,0.4677734375,0.44140625,0.46875,0.5341796875,0.5986328125,0.634765625,0.6689453125,0.7275390625,0.7900390625,0.826171875,0.8212890625,0.78515625,0.740234375,0.69921875,0.681640625,0.693359375,0.7236328125,0.751953125,0.759765625,0.740234375,0.7021484375,0.6279296875,0.546875,0.5,0.5087890625,0.564453125,0.634765625,0.7080078125,0.76953125,0.775390625,0.7041015625,0.5771484375,0.4501953125,0.3642578125,0.296875,0.26171875,0.2900390625,0.3798828125,0.4990234375,0.5927734375,0.634765625,0.65234375,0.6259765625,0.546875,0.435546875,0.33203125,0.271484375,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.7685546875,0.7978515625,0.806640625,0.7783203125,0.720703125,0.6552734375,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.615234375,0.59375,0.546875,0.5,0.4775390625,0.490234375,0.5302734375,0.5615234375,0.53515625,0.44921875,0.33984375,0.25390625,0.2275390625,0.2587890625,0.3095703125,0.369140625,0.4111328125,0.4111328125,0.369140625,0.3095703125,0.2587890625,0.208984375,0.1494140625,0.1064453125,0.1064453125,0.1494140625,0.208984375,0.2587890625,0.3095703125,0.369140625,0.4111328125,0.4111328125,0.369140625,0.3095703125,0.2587890625,0.2294921875,0.2705078125,0.388671875,0.546875,0.6826171875,0.748046875,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.5224609375,0.4873046875,0.4306640625,0.375,0.3427734375,0.341796875,0.3642578125,0.3876953125,0.3994140625,0.3974609375,0.3857421875,0.376953125,0.37890625,0.39453125,0.4169921875,0.4580078125,0.5185546875,0.5908203125,0.6591796875,0.708984375,0.740234375,0.7548828125,0.7216796875,0.634765625,0.5244140625,0.4306640625,0.3876953125,0.39453125,0.4189453125,0.458984375,0.4970703125,0.5078125,0.4853515625,0.44140625,0.39453125,0.3408203125,0.2646484375,0.1923828125,0.15625,0.1689453125,0.2119140625,0.2587890625,0.3095703125,0.369140625,0.4111328125,0.4111328125,0.369140625,0.3095703125,0.2587890625,0.22265625,0.2255859375,0.2783203125,0.361328125,0.4384765625,0.4765625,0.46875,0.45703125,0.4765625,0.533203125,0.6123046875,0.6875,0.7314453125,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.484375,0.4501953125,0.455078125,0.5107421875,0.599609375,0.6845703125,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5390625,0.5771484375,0.6240234375,0.646484375,0.6259765625,0.5703125,0.5,0.435546875,0.4052734375,0.4189453125,0.4609375,0.4990234375,0.50390625,0.46875,0.4287109375,0.4111328125,0.421875,0.4521484375,0.4814453125,0.48828125,0.46875,0.4384765625,0.400390625,0.375,0.3828125,0.4248046875,0.48046875,0.5302734375,0.5712890625,0.5869140625,0.5546875,0.474609375,0.3759765625,0.296875,0.2587890625,0.236328125,0.234375,0.2705078125,0.341796875,0.4267578125,0.494140625,0.5302734375,0.5419921875,0.4990234375,0.4140625,0.328125,0.28515625,0.3017578125,0.3642578125,0.423828125,0.4345703125,0.39453125,0.333984375,0.2939453125,0.3046875,0.3642578125,0.4365234375,0.5068359375,0.560546875,0.5908203125,0.6025390625,0.61328125,0.634765625,0.646484375,0.6044921875,0.5185546875,0.43359375,0.3896484375,0.4072265625,0.46875,0.5419921875,0.611328125,0.666015625,0.6953125,0.7080078125,0.7177734375,0.740234375,0.748046875,0.68359375,0.5576171875,0.4248046875,0.3408203125,0.3359375,0.39453125,0.4609375,0.50390625,0.513671875,0.5,0.484375,0.4921875,0.5302734375,0.578125,0.6318359375,0.6708984375,0.6796875,0.6591796875,0.6279296875,0.6044921875,0.5908203125,0.595703125,0.619140625,0.6455078125,0.662109375,0.6572265625,0.634765625,0.61328125,0.6025390625,0.5908203125,0.560546875,0.5068359375,0.4365234375,0.3642578125,0.2998046875,0.275390625,0.306640625,0.3798828125,0.4609375,0.5048828125,0.5,0.486328125,0.501953125,0.5517578125,0.6240234375,0.69140625,0.7314453125,0.740234375,0.73828125,0.72265625,0.6796875,0.607421875,0.521484375,0.4462890625,0.39453125,0.353515625,0.3369140625,0.3583984375,0.4140625,0.4775390625,0.5205078125,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.724609375,0.7470703125,0.794921875,0.8369140625,0.8427734375,0.806640625,0.740234375,0.66796875,0.6015625,0.5546875,0.5380859375,0.541015625,0.54296875,0.5302734375,0.5166015625,0.5283203125,0.5712890625,0.634765625,0.6962890625,0.732421875,0.740234375,0.73046875,0.6875,0.6240234375,0.568359375,0.546875,0.5634765625,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.392578125,0.4228515625,0.44140625,0.462890625,0.396484375,0.3447265625,0.337890625,0.376953125,0.423828125,0.455078125,0.4775390625,0.50390625,0.544921875,0.603515625,0.673828125,0.7353515625,0.7451171875,0.6806640625,0.55859375,0.427734375,0.34375,0.3251953125,0.3369140625,0.3876953125,0.4638671875,0.5322265625,0.5615234375,0.544921875,0.5,0.45703125,0.44921875,0.474609375,0.5078125,0.5234375,0.501953125,0.4482421875,0.396484375,0.384765625,0.4111328125,0.44921875,0.4658203125,0.4404296875,0.376953125,0.3173828125,0.3095703125,0.357421875,0.4326171875,0.490234375,0.49609375,0.4482421875,0.3837890625,0.3212890625,0.294921875,0.3271484375,0.4052734375,0.490234375,0.55078125,0.595703125,0.60546875,0.564453125,0.4833984375,0.39453125,0.337890625,0.3251953125,0.3408203125,0.4130859375,0.5205078125,0.615234375,0.6572265625,0.6337890625,0.5703125,0.48828125,0.3857421875,0.3037109375,0.28515625,0.3359375,0.421875,0.5,0.55859375,0.5595703125,0.49609375,0.3984375,0.3154296875,0.2900390625,0.3251953125,0.3837890625,0.462890625,0.5458984375,0.607421875,0.6328125,0.6318359375,0.6220703125,0.6201171875,0.6455078125,0.681640625,0.697265625,0.67578125,0.62109375,0.55078125,0.4814453125,0.431640625,0.4267578125,0.470703125,0.5419921875,0.599609375,0.6220703125,0.6416015625,0.69140625,0.75,0.78515625,0.7783203125,0.7333984375,0.673828125,0.615234375,0.576171875,0.572265625,0.603515625,0.646484375,0.6748046875,0.673828125,0.65234375,0.5966796875,0.529296875,0.490234375,0.5,0.5517578125,0.6220703125,0.6953125,0.759765625,0.7724609375,0.7080078125,0.5869140625,0.462890625,0.376953125,0.3115234375,0.283203125,0.31640625,0.4072265625,0.5166015625,0.595703125,0.6220703125,0.625,0.5966796875,0.5322265625,0.4501953125,0.3759765625,0.333984375,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.689453125,0.7177734375,0.73828125,0.7275390625,0.6806640625,0.615234375,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.5927734375,0.5966796875,0.564453125,0.521484375,0.5,0.5166015625,0.5703125,0.615234375,0.5947265625,0.505859375,0.3896484375,0.30078125,0.2802734375,0.3251953125,0.3935546875,0.474609375,0.53125,0.53125,0.474609375,0.3935546875,0.3251953125,0.2578125,0.1767578125,0.1201171875,0.1201171875,0.1767578125,0.2578125,0.3251953125,0.3935546875,0.474609375,0.53125,0.53125,0.474609375,0.3935546875,0.3251953125,0.275390625,0.279296875,0.3525390625,0.4755859375,0.5966796875,0.6669921875,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.564453125,0.5341796875,0.484375,0.4287109375,0.3876953125,0.3720703125,0.376953125,0.3818359375,0.3681640625,0.3486328125,0.3408203125,0.3583984375,0.3984375,0.4482421875,0.5009765625,0.5595703125,0.6123046875,0.6455078125,0.66015625,0.6650390625,0.673828125,0.6708984375,0.6220703125,0.53515625,0.4501953125,0.4013671875,0.4052734375,0.4482421875,0.505859375,0.5791015625,0.6337890625,0.638671875,0.5888671875,0.5146484375,0.4482421875,0.376953125,0.28125,0.197265625,0.1650390625,0.1943359375,0.2607421875,0.3251953125,0.3935546875,0.474609375,0.53125,0.53125,0.474609375,0.3935546875,0.3251953125,0.275390625,0.2724609375,0.322265625,0.3974609375,0.45703125,0.4677734375,0.4287109375,0.384765625,0.3779296875,0.4228515625,0.5087890625,0.6015625,0.66015625,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.50390625,0.4365234375,0.40234375,0.4296875,0.509765625,0.6025390625,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.578125,0.611328125,0.6494140625,0.6611328125,0.6318359375,0.5712890625,0.5,0.4365234375,0.4111328125,0.427734375,0.4658203125,0.4921875,0.48046875,0.4287109375,0.37109375,0.33203125,0.328125,0.3583984375,0.40234375,0.4306640625,0.4287109375,0.4140625,0.3876953125,0.37109375,0.38671875,0.4375,0.505859375,0.5703125,0.625,0.646484375,0.611328125,0.525390625,0.4228515625,0.349609375,0.3251953125,0.3193359375,0.3359375,0.380859375,0.4453125,0.509765625,0.552734375,0.5703125,0.5654296875,0.5078125,0.4140625,0.328125,0.2900390625,0.3134765625,0.376953125,0.4375,0.4482421875,0.4072265625,0.3466796875,0.306640625,0.3173828125,0.376953125,0.451171875,0.52734375,0.587890625,0.6171875,0.6201171875,0.6162109375,0.6220703125,0.6171875,0.5595703125,0.46484375,0.3798828125,0.341796875,0.365234375,0.4287109375,0.5029296875,0.5791015625,0.638671875,0.6689453125,0.671875,0.66796875,0.673828125,0.66796875,0.6064453125,0.5048828125,0.41015625,0.3662109375,0.384765625,0.4482421875,0.51171875,0.5439453125,0.5380859375,0.5146484375,0.5,0.517578125,0.5703125,0.63671875,0.708984375,0.75390625,0.744140625,0.6845703125,0.609375,0.55078125,0.5048828125,0.482421875,0.49609375,0.541015625,0.5927734375,0.623046875,0.6220703125,0.6162109375,0.6201171875,0.6171875,0.587890625,0.52734375,0.451171875,0.376953125,0.3173828125,0.3095703125,0.361328125,0.4453125,0.5166015625,0.5361328125,0.5,0.4541015625,0.4375,0.466796875,0.53515625,0.611328125,0.662109375,0.673828125,0.6767578125,0.6845703125,0.6806640625,0.646484375,0.5849609375,0.5126953125,0.4482421875,0.390625,0.361328125,0.376953125,0.435546875,0.5078125,0.55859375,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.6728515625,0.70703125,0.7587890625,0.7939453125,0.7880859375,0.7421875,0.673828125,0.6083984375,0.5732421875,0.57421875,0.599609375,0.6201171875,0.6123046875,0.5703125,0.5224609375,0.498046875,0.51171875,0.560546875,0.6220703125,0.6640625,0.673828125,0.662109375,0.611328125,0.5380859375,0.48046875,0.46484375,0.494140625,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.39453125,0.431640625,0.4716796875,0.5,0.4248046875,0.3720703125,0.3740234375,0.4296875,0.490234375,0.5166015625,0.5087890625,0.4892578125,0.484375,0.515625,0.5791015625,0.6455078125,0.6787109375,0.65625,0.583984375,0.494140625,0.43359375,0.419921875,0.4306640625,0.48046875,0.5498046875,0.599609375,0.6044921875,0.564453125,0.5,0.4423828125,0.431640625,0.4697265625,0.525390625,0.5615234375,0.548828125,0.4892578125,0.4296875,0.4130859375,0.4404296875,0.484375,0.509765625,0.4912109375,0.4296875,0.37109375,0.3662109375,0.4189453125,0.4951171875,0.548828125,0.5458984375,0.4892578125,0.412109375,0.32421875,0.2646484375,0.2705078125,0.33984375,0.4326171875,0.509765625,0.57421875,0.61328125,0.60546875,0.552734375,0.482421875,0.431640625,0.419921875,0.4326171875,0.4912109375,0.576171875,0.6435546875,0.6611328125,0.6259765625,0.5595703125,0.478515625,0.376953125,0.296875,0.28125,0.333984375,0.4208984375,0.5,0.5576171875,0.560546875,0.505859375,0.4248046875,0.3662109375,0.365234375,0.419921875,0.490234375,0.5595703125,0.6064453125,0.6171875,0.599609375,0.5771484375,0.5693359375,0.576171875,0.609375,0.6494140625,0.6640625,0.638671875,0.580078125,0.509765625,0.4404296875,0.39453125,0.3935546875,0.439453125,0.505859375,0.556640625,0.5693359375,0.5810546875,0.6240234375,0.6787109375,0.7099609375,0.6982421875,0.6474609375,0.5791015625,0.51171875,0.4609375,0.44921875,0.4794921875,0.53125,0.5712890625,0.5791015625,0.5673828125,0.5234375,0.4677734375,0.4345703125,0.447265625,0.5,0.5693359375,0.6455078125,0.72265625,0.7587890625,0.7216796875,0.6240234375,0.5126953125,0.4296875,0.36328125,0.326171875,0.3427734375,0.41015625,0.494140625,0.5546875,0.5693359375,0.5673828125,0.55078125,0.517578125,0.4775390625,0.4423828125,0.423828125,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5888671875,0.6220703125,0.6591796875,0.669921875,0.6396484375,0.5791015625,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.5673828125,0.5830078125,0.5546875,0.5087890625,0.482421875,0.5,0.5595703125,0.6142578125,0.6083984375,0.5380859375,0.44140625,0.37109375,0.3642578125,0.419921875,0.498046875,0.58984375,0.654296875,0.654296875,0.58984375,0.498046875,0.419921875,0.341796875,0.25,0.1845703125,0.1845703125,0.25,0.341796875,0.419921875,0.498046875,0.58984375,0.654296875,0.654296875,0.58984375,0.498046875,0.419921875,0.35546875,0.3251953125,0.3486328125,0.4208984375,0.5087890625,0.5673828125,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5556640625,0.5390625,0.5087890625,0.474609375,0.4453125,0.4306640625,0.4296875,0.4228515625,0.3916015625,0.3544921875,0.3408203125,0.365234375,0.421875,0.4892578125,0.5576171875,0.6181640625,0.6494140625,0.6435546875,0.6123046875,0.5849609375,0.5791015625,0.5693359375,0.51953125,0.44921875,0.3955078125,0.3876953125,0.42578125,0.4892578125,0.5654296875,0.65625,0.7216796875,0.7216796875,0.658203125,0.5673828125,0.4892578125,0.41015625,0.3095703125,0.228515625,0.2109375,0.259765625,0.34375,0.419921875,0.498046875,0.58984375,0.654296875,0.654296875,0.58984375,0.498046875,0.419921875,0.361328125,0.3525390625,0.3955078125,0.458984375,0.5029296875,0.49609375,0.439453125,0.3759765625,0.34375,0.3623046875,0.427734375,0.509765625,0.56640625,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.4814453125,0.392578125,0.33203125,0.3369140625,0.40625,0.5009765625,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.568359375,0.6025390625,0.642578125,0.6572265625,0.6298828125,0.5703125,0.5,0.4384765625,0.4189453125,0.4443359375,0.4892578125,0.515625,0.4990234375,0.439453125,0.3720703125,0.3212890625,0.3095703125,0.33984375,0.3916015625,0.431640625,0.439453125,0.4306640625,0.4033203125,0.3779296875,0.380859375,0.421875,0.48828125,0.5595703125,0.6240234375,0.6591796875,0.642578125,0.5771484375,0.4931640625,0.4345703125,0.419921875,0.4208984375,0.435546875,0.4658203125,0.501953125,0.53515625,0.5546875,0.5595703125,0.5478515625,0.4921875,0.41015625,0.3447265625,0.3271484375,0.36328125,0.4296875,0.4892578125,0.5,0.4599609375,0.3994140625,0.359375,0.3701171875,0.4296875,0.5029296875,0.5712890625,0.6142578125,0.6201171875,0.59765625,0.57421875,0.5693359375,0.5576171875,0.501953125,0.419921875,0.3544921875,0.337890625,0.373046875,0.439453125,0.5126953125,0.5810546875,0.6240234375,0.6298828125,0.607421875,0.583984375,0.5791015625,0.568359375,0.517578125,0.4443359375,0.3896484375,0.3818359375,0.421875,0.4892578125,0.55078125,0.5712890625,0.5478515625,0.5068359375,0.4814453125,0.5,0.5595703125,0.6357421875,0.720703125,0.7734375,0.759765625,0.68359375,0.5869140625,0.509765625,0.4443359375,0.4033203125,0.404296875,0.4501953125,0.5146484375,0.5595703125,0.5693359375,0.57421875,0.59765625,0.6201171875,0.6142578125,0.5712890625,0.5029296875,0.4296875,0.37109375,0.3671875,0.419921875,0.498046875,0.5546875,0.5546875,0.5,0.4345703125,0.39453125,0.3994140625,0.44921875,0.5185546875,0.568359375,0.5791015625,0.5869140625,0.6171875,0.6484375,0.6552734375,0.6220703125,0.5595703125,0.4892578125,0.4228515625,0.3798828125,0.3828125,0.4306640625,0.4990234375,0.5478515625,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.587890625,0.6279296875,0.681640625,0.7119140625,0.7001953125,0.6484375,0.5791015625,0.5185546875,0.50390625,0.537109375,0.5908203125,0.626953125,0.6162109375,0.5595703125,0.4931640625,0.4453125,0.4375,0.4716796875,0.52734375,0.5693359375,0.5791015625,0.568359375,0.5185546875,0.451171875,0.4033203125,0.400390625,0.443359375,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.4404296875,0.4814453125,0.533203125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.5625,0.5205078125,0.4970703125,0.517578125,0.5791015625,0.6357421875,0.6279296875,0.5537109375,0.451171875,0.375,0.365234375,0.419921875,0.4912109375,0.560546875,0.60546875,0.6142578125,0.5927734375,0.5673828125,0.5595703125,0.56640625,0.599609375,0.640625,0.6572265625,0.634765625,0.578125,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5185546875,0.4990234375,0.51953125,0.5556640625,0.57421875,0.5517578125,0.4892578125,0.41015625,0.3154296875,0.2490234375,0.2490234375,0.3154296875,0.41015625,0.4892578125,0.560546875,0.62109375,0.6484375,0.6357421875,0.59765625,0.56640625,0.5595703125,0.5673828125,0.5908203125,0.611328125,0.6025390625,0.5576171875,0.490234375,0.419921875,0.345703125,0.265625,0.2197265625,0.2412109375,0.322265625,0.421875,0.5,0.55859375,0.578125,0.5576171875,0.5205078125,0.5,0.5205078125,0.5791015625,0.642578125,0.673828125,0.65234375,0.58203125,0.4951171875,0.4345703125,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.4306640625,0.4736328125,0.5263671875,0.5576171875,0.5458984375,0.49609375,0.4296875,0.36328125,0.3134765625,0.3017578125,0.3330078125,0.3857421875,0.4287109375,0.439453125,0.431640625,0.390625,0.3349609375,0.30078125,0.3076171875,0.353515625,0.419921875,0.4990234375,0.607421875,0.703125,0.740234375,0.7080078125,0.6337890625,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.4423828125,0.458984375,0.48828125,0.5244140625,0.556640625,0.57421875,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.4140625,0.3251953125,0.2646484375,0.26953125,0.337890625,0.431640625,0.509765625,0.5654296875,0.5654296875,0.5078125,0.4267578125,0.369140625,0.37109375,0.4296875,0.4931640625,0.5224609375,0.5166015625,0.494140625,0.484375,0.509765625,0.5693359375,0.6455078125,0.736328125,0.802734375,0.8046875,0.7431640625,0.6552734375,0.5791015625,0.5029296875,0.412109375,0.34765625,0.3466796875,0.41015625,0.501953125,0.5791015625,0.6572265625,0.7490234375,0.814453125,0.814453125,0.7490234375,0.6572265625,0.5791015625,0.5078125,0.4384765625,0.390625,0.37890625,0.3955078125,0.4150390625,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.443359375,0.4599609375,0.490234375,0.5244140625,0.5537109375,0.568359375,0.5693359375,0.556640625,0.5068359375,0.44140625,0.396484375,0.3974609375,0.4423828125,0.509765625,0.576171875,0.6181640625,0.615234375,0.564453125,0.494140625,0.443359375,0.4296875,0.419921875,0.3876953125,0.3515625,0.341796875,0.3720703125,0.4306640625,0.5,0.5751953125,0.6640625,0.7255859375,0.72265625,0.6572265625,0.5654296875,0.4892578125,0.4150390625,0.3349609375,0.2890625,0.310546875,0.3916015625,0.4912109375,0.5693359375,0.6455078125,0.736328125,0.802734375,0.8046875,0.7431640625,0.6552734375,0.5791015625,0.5224609375,0.513671875,0.552734375,0.611328125,0.6494140625,0.6376953125,0.5791015625,0.5078125,0.4375,0.3896484375,0.37890625,0.3984375,0.421875,0.4296875,0.4345703125,0.4541015625,0.48828125,0.5263671875,0.55859375,0.576171875,0.5791015625,0.5859375,0.607421875,0.6259765625,0.6142578125,0.5654296875,0.4931640625,0.419921875,0.33984375,0.2470703125,0.1826171875,0.185546875,0.2548828125,0.349609375,0.4296875,0.5029296875,0.5732421875,0.6201171875,0.62890625,0.609375,0.5859375,0.5791015625,0.5673828125,0.515625,0.443359375,0.390625,0.3828125,0.423828125,0.4892578125,0.556640625,0.6015625,0.603515625,0.560546875,0.4970703125,0.4501953125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.451171875,0.4990234375,0.5654296875,0.61328125,0.6162109375,0.57421875,0.509765625,0.4541015625,0.453125,0.5087890625,0.5859375,0.6396484375,0.63671875,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.5654296875,0.505859375,0.4189453125,0.349609375,0.3291015625,0.36328125,0.4296875,0.5029296875,0.572265625,0.615234375,0.6201171875,0.5947265625,0.568359375,0.5595703125,0.5546875,0.53515625,0.501953125,0.4658203125,0.435546875,0.4208984375,0.419921875,0.4150390625,0.39453125,0.3779296875,0.3876953125,0.4326171875,0.5,0.5693359375,0.6259765625,0.63671875,0.5986328125,0.5400390625,0.501953125,0.5126953125,0.5693359375,0.6318359375,0.6640625,0.64453125,0.578125,0.49609375,0.4404296875,0.4296875,0.4248046875,0.40234375,0.3798828125,0.384765625,0.4248046875,0.490234375,0.5595703125,0.623046875,0.6552734375,0.63671875,0.5712890625,0.4892578125,0.4326171875,0.419921875,0.412109375,0.3798828125,0.34375,0.3349609375,0.3662109375,0.427734375,0.5,0.55859375,0.5625,0.5087890625,0.431640625,0.375,0.375,0.4296875,0.5078125,0.6083984375,0.6904296875,0.712890625,0.6669921875,0.5849609375,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.4345703125,0.4931640625,0.5771484375,0.642578125,0.6591796875,0.6240234375,0.5595703125,0.5,0.4833984375,0.509765625,0.5546875,0.580078125,0.560546875,0.5,0.427734375,0.3671875,0.33984375,0.353515625,0.3935546875,0.4296875,0.439453125,0.453125,0.5029296875,0.5712890625,0.6181640625,0.6201171875,0.576171875,0.509765625,0.439453125,0.37890625,0.3486328125,0.359375,0.396484375,0.4296875,0.439453125,0.4404296875,0.439453125,0.4365234375,0.4326171875,0.4296875,0.4287109375,0.4296875,0.4404296875,0.48046875,0.529296875,0.5546875,0.5390625,0.486328125,0.419921875,0.36328125,0.357421875,0.4033203125,0.4677734375,0.509765625,0.5,0.439453125,0.369140625,0.314453125,0.2978515625,0.3251953125,0.376953125,0.41796875,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.5791015625,0.638671875,0.666015625,0.6533203125,0.6142578125,0.5791015625,0.5693359375,0.5771484375,0.6181640625,0.6708984375,0.6064453125,0.5830078125,0.578125,0.609375,0.673828125,0.7265625,0.701171875,0.5908203125,0.4423828125,0.3232421875,0.2841796875,0.3251953125,0.392578125,0.47265625,0.546875,0.58984375,0.5966796875,0.5830078125,0.5703125,0.568359375,0.59375,0.6337890625,0.6591796875,0.6513671875,0.609375,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.6181640625,0.587890625,0.580078125,0.576171875,0.55859375,0.5146484375,0.4482421875,0.3681640625,0.2744140625,0.20703125,0.20703125,0.2744140625,0.3681640625,0.4482421875,0.5185546875,0.580078125,0.61328125,0.6103515625,0.5859375,0.5673828125,0.5703125,0.5810546875,0.5888671875,0.57421875,0.52734375,0.455078125,0.3828125,0.3251953125,0.2734375,0.2275390625,0.21875,0.2646484375,0.3505859375,0.4384765625,0.5,0.5458984375,0.5751953125,0.5849609375,0.587890625,0.59765625,0.626953125,0.673828125,0.7158203125,0.7177734375,0.6572265625,0.5478515625,0.4306640625,0.3505859375,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.34375,0.3876953125,0.4384765625,0.4697265625,0.4638671875,0.4267578125,0.376953125,0.3271484375,0.2900390625,0.28515625,0.3154296875,0.3671875,0.41015625,0.4287109375,0.4296875,0.39453125,0.3359375,0.2822265625,0.26171875,0.2802734375,0.3251953125,0.3896484375,0.4921875,0.6015625,0.6708984375,0.67578125,0.630859375,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.43359375,0.45703125,0.50390625,0.5634765625,0.6201171875,0.6572265625,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.392578125,0.33203125,0.2998046875,0.322265625,0.39453125,0.482421875,0.55078125,0.5966796875,0.5791015625,0.498046875,0.3955078125,0.32421875,0.3203125,0.376953125,0.4453125,0.498046875,0.5283203125,0.541015625,0.55078125,0.576171875,0.6220703125,0.6796875,0.7529296875,0.8115234375,0.8251953125,0.7890625,0.728515625,0.673828125,0.615234375,0.5419921875,0.4873046875,0.482421875,0.5322265625,0.6064453125,0.673828125,0.7412109375,0.822265625,0.87890625,0.87890625,0.822265625,0.7412109375,0.673828125,0.607421875,0.5263671875,0.4443359375,0.3828125,0.349609375,0.3349609375,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.4345703125,0.46484375,0.5146484375,0.5703125,0.611328125,0.626953125,0.6220703125,0.6015625,0.5498046875,0.486328125,0.4462890625,0.44921875,0.4921875,0.55078125,0.6083984375,0.6376953125,0.6181640625,0.55078125,0.46484375,0.400390625,0.376953125,0.36328125,0.3408203125,0.328125,0.3427734375,0.3876953125,0.4453125,0.5,0.5546875,0.615234375,0.6513671875,0.6376953125,0.5791015625,0.505859375,0.4482421875,0.3955078125,0.349609375,0.3408203125,0.38671875,0.47265625,0.560546875,0.6220703125,0.6796875,0.7529296875,0.8115234375,0.8251953125,0.7890625,0.728515625,0.673828125,0.6328125,0.630859375,0.6669921875,0.71484375,0.7412109375,0.7255859375,0.673828125,0.60546875,0.5185546875,0.43359375,0.376953125,0.3583984375,0.365234375,0.376953125,0.39453125,0.4375,0.505859375,0.580078125,0.6376953125,0.66796875,0.673828125,0.6748046875,0.6748046875,0.650390625,0.5888671875,0.498046875,0.4033203125,0.3251953125,0.2470703125,0.1591796875,0.1044921875,0.1181640625,0.1962890625,0.296875,0.376953125,0.4541015625,0.5419921875,0.6220703125,0.669921875,0.6826171875,0.6767578125,0.673828125,0.6591796875,0.5966796875,0.5009765625,0.4150390625,0.3759765625,0.3935546875,0.4482421875,0.5068359375,0.5498046875,0.556640625,0.525390625,0.4755859375,0.4375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4384765625,0.4833984375,0.548828125,0.6025390625,0.6201171875,0.59765625,0.55078125,0.5126953125,0.5263671875,0.58984375,0.669921875,0.7236328125,0.72265625,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.65625,0.5791015625,0.458984375,0.3505859375,0.2978515625,0.314453125,0.376953125,0.453125,0.53515625,0.5986328125,0.6240234375,0.611328125,0.5859375,0.5703125,0.552734375,0.509765625,0.4453125,0.380859375,0.3359375,0.3193359375,0.3251953125,0.3359375,0.349609375,0.3798828125,0.431640625,0.5,0.56640625,0.6220703125,0.6640625,0.671875,0.6435546875,0.6005859375,0.5712890625,0.5791015625,0.6220703125,0.6640625,0.666015625,0.61328125,0.5224609375,0.431640625,0.3798828125,0.376953125,0.384765625,0.3857421875,0.3935546875,0.41796875,0.462890625,0.517578125,0.5703125,0.6142578125,0.62109375,0.576171875,0.490234375,0.3974609375,0.3388671875,0.3251953125,0.3193359375,0.298828125,0.2841796875,0.2998046875,0.3525390625,0.42578125,0.5,0.5595703125,0.5673828125,0.515625,0.4306640625,0.359375,0.3408203125,0.376953125,0.439453125,0.533203125,0.626953125,0.677734375,0.6669921875,0.6142578125,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.349609375,0.4228515625,0.525390625,0.611328125,0.646484375,0.625,0.5703125,0.5185546875,0.5068359375,0.533203125,0.5712890625,0.587890625,0.5625,0.5,0.4267578125,0.359375,0.3232421875,0.330078125,0.3701171875,0.41015625,0.4287109375,0.4501953125,0.5087890625,0.5830078125,0.6376953125,0.6455078125,0.609375,0.55078125,0.4873046875,0.421875,0.375,0.3642578125,0.384765625,0.4130859375,0.4287109375,0.4365234375,0.431640625,0.4140625,0.3916015625,0.375,0.3701171875,0.376953125,0.3935546875,0.423828125,0.4521484375,0.4560546875,0.427734375,0.3779296875,0.3251953125,0.2880859375,0.3056640625,0.3720703125,0.4521484375,0.5,0.4892578125,0.4287109375,0.3564453125,0.2919921875,0.259765625,0.271484375,0.3154296875,0.3583984375,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.6142578125,0.673828125,0.7080078125,0.705078125,0.673828125,0.638671875,0.6220703125,0.62109375,0.6552734375,0.70703125,0.634765625,0.62109375,0.630859375,0.673828125,0.740234375,0.7919921875,0.759765625,0.6318359375,0.455078125,0.302734375,0.236328125,0.2587890625,0.3134765625,0.39453125,0.482421875,0.546875,0.568359375,0.5556640625,0.5302734375,0.5126953125,0.5283203125,0.57421875,0.6240234375,0.65234375,0.6435546875,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.6982421875,0.6640625,0.6328125,0.5908203125,0.5341796875,0.4658203125,0.39453125,0.314453125,0.220703125,0.154296875,0.154296875,0.220703125,0.314453125,0.39453125,0.4638671875,0.517578125,0.541015625,0.53515625,0.5166015625,0.5107421875,0.5302734375,0.5517578125,0.548828125,0.5078125,0.4326171875,0.349609375,0.287109375,0.2587890625,0.2431640625,0.248046875,0.2841796875,0.34765625,0.4189453125,0.47265625,0.5,0.5205078125,0.552734375,0.595703125,0.6435546875,0.6865234375,0.71875,0.740234375,0.7509765625,0.7216796875,0.6376953125,0.513671875,0.38671875,0.298828125,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2900390625,0.3330078125,0.375,0.3994140625,0.400390625,0.3837890625,0.3642578125,0.3447265625,0.328125,0.328125,0.3525390625,0.3955078125,0.4384765625,0.46875,0.4873046875,0.4697265625,0.4140625,0.3388671875,0.2763671875,0.2490234375,0.2587890625,0.2900390625,0.36328125,0.4609375,0.5439453125,0.58203125,0.5703125,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.4716796875,0.4892578125,0.5302734375,0.5908203125,0.65625,0.7080078125,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.375,0.3603515625,0.369140625,0.4140625,0.4833984375,0.552734375,0.6044921875,0.6328125,0.595703125,0.4970703125,0.3837890625,0.3095703125,0.306640625,0.3642578125,0.4375,0.51171875,0.5712890625,0.6044921875,0.615234375,0.6201171875,0.634765625,0.658203125,0.6962890625,0.7373046875,0.7646484375,0.7705078125,0.7587890625,0.740234375,0.7158203125,0.6748046875,0.6376953125,0.626953125,0.6494140625,0.693359375,0.740234375,0.7900390625,0.849609375,0.892578125,0.892578125,0.849609375,0.7900390625,0.740234375,0.6884765625,0.6123046875,0.5166015625,0.4189453125,0.3408203125,0.2890625,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.4765625,0.51171875,0.568359375,0.6240234375,0.65625,0.6572265625,0.634765625,0.6025390625,0.552734375,0.5078125,0.4912109375,0.5126953125,0.5576171875,0.6044921875,0.646484375,0.666015625,0.640625,0.568359375,0.4765625,0.4013671875,0.3642578125,0.3388671875,0.3251953125,0.3359375,0.375,0.4287109375,0.474609375,0.5,0.5185546875,0.5302734375,0.5244140625,0.4970703125,0.455078125,0.41796875,0.39453125,0.37890625,0.3828125,0.4189453125,0.482421875,0.5546875,0.6083984375,0.634765625,0.658203125,0.6962890625,0.7373046875,0.7646484375,0.7705078125,0.7587890625,0.740234375,0.7275390625,0.740234375,0.7705078125,0.7978515625,0.8037109375,0.78125,0.740234375,0.68359375,0.58984375,0.4775390625,0.3857421875,0.3408203125,0.3408203125,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.640625,0.705078125,0.7353515625,0.740234375,0.7392578125,0.7216796875,0.66796875,0.5712890625,0.451171875,0.33984375,0.2587890625,0.181640625,0.1005859375,0.056640625,0.0849609375,0.1748046875,0.2822265625,0.3642578125,0.4423828125,0.541015625,0.6376953125,0.70703125,0.7373046875,0.7412109375,0.740234375,0.7255859375,0.6572265625,0.546875,0.435546875,0.3671875,0.3583984375,0.39453125,0.4404296875,0.482421875,0.5078125,0.5078125,0.4912109375,0.4736328125,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.474609375,0.501953125,0.546875,0.5908203125,0.6171875,0.6201171875,0.6044921875,0.595703125,0.625,0.685546875,0.748046875,0.7841796875,0.7783203125,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7216796875,0.6337890625,0.4970703125,0.3671875,0.2958984375,0.302734375,0.3642578125,0.44140625,0.529296875,0.599609375,0.6240234375,0.6025390625,0.5615234375,0.5302734375,0.494140625,0.4267578125,0.341796875,0.2705078125,0.234375,0.236328125,0.2587890625,0.291015625,0.3447265625,0.4189453125,0.5,0.5673828125,0.611328125,0.634765625,0.650390625,0.6533203125,0.642578125,0.626953125,0.6162109375,0.619140625,0.634765625,0.6435546875,0.609375,0.5322265625,0.44140625,0.3720703125,0.34765625,0.3642578125,0.390625,0.4189453125,0.447265625,0.4716796875,0.4921875,0.51171875,0.5302734375,0.5419921875,0.5224609375,0.4658203125,0.38671875,0.3115234375,0.267578125,0.2587890625,0.2548828125,0.2421875,0.2421875,0.275390625,0.3427734375,0.423828125,0.5,0.5634765625,0.5888671875,0.5576171875,0.4833984375,0.4033203125,0.3583984375,0.3642578125,0.39453125,0.4638671875,0.5546875,0.6298828125,0.6611328125,0.6455078125,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.296875,0.3759765625,0.474609375,0.5546875,0.5869140625,0.5712890625,0.5302734375,0.4951171875,0.5,0.5380859375,0.580078125,0.59375,0.5634765625,0.5,0.42578125,0.353515625,0.314453125,0.3251953125,0.376953125,0.4345703125,0.46875,0.50390625,0.56640625,0.6357421875,0.6787109375,0.681640625,0.6494140625,0.6044921875,0.5537109375,0.4892578125,0.4306640625,0.40234375,0.4111328125,0.4404296875,0.46875,0.48828125,0.4794921875,0.44140625,0.3916015625,0.353515625,0.3447265625,0.3642578125,0.3896484375,0.4072265625,0.4033203125,0.3720703125,0.3251953125,0.283203125,0.2587890625,0.255859375,0.30859375,0.4052734375,0.4990234375,0.546875,0.53125,0.46875,0.3935546875,0.3125,0.2568359375,0.248046875,0.2822265625,0.3310546875,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.6533203125,0.705078125,0.740234375,0.740234375,0.7080078125,0.666015625,0.634765625,0.619140625,0.6416015625,0.6904296875,0.6181640625,0.6044921875,0.6220703125,0.671875,0.740234375,0.794921875,0.7734375,0.66015625,0.4912109375,0.3349609375,0.2548828125,0.2587890625,0.2958984375,0.3671875,0.4521484375,0.5166015625,0.53515625,0.51171875,0.46875,0.4326171875,0.4345703125,0.4833984375,0.5576171875,0.623046875,0.650390625,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.7158203125,0.6923828125,0.6572265625,0.599609375,0.521484375,0.4384765625,0.3642578125,0.2841796875,0.1904296875,0.123046875,0.123046875,0.1904296875,0.2841796875,0.3642578125,0.4296875,0.46875,0.4716796875,0.4501953125,0.4287109375,0.4326171875,0.46875,0.505859375,0.501953125,0.44921875,0.3671875,0.2900390625,0.251953125,0.2587890625,0.28515625,0.33984375,0.4111328125,0.474609375,0.5107421875,0.5146484375,0.5,0.4892578125,0.515625,0.580078125,0.6591796875,0.7236328125,0.75,0.740234375,0.716796875,0.6708984375,0.59375,0.494140625,0.392578125,0.3115234375,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3037109375,0.341796875,0.3662109375,0.375,0.375,0.37890625,0.39453125,0.41015625,0.4140625,0.4140625,0.421875,0.4462890625,0.4853515625,0.5302734375,0.5703125,0.58203125,0.5439453125,0.4609375,0.36328125,0.2900390625,0.2587890625,0.2490234375,0.2763671875,0.3388671875,0.4140625,0.4697265625,0.4873046875,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5283203125,0.52734375,0.541015625,0.5771484375,0.6328125,0.69140625,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.2587890625,0.2607421875,0.26953125,0.2900390625,0.31640625,0.3427734375,0.3642578125,0.384765625,0.4169921875,0.4609375,0.513671875,0.564453125,0.60546875,0.634765625,0.6455078125,0.59375,0.4912109375,0.3857421875,0.326171875,0.333984375,0.39453125,0.4716796875,0.560546875,0.634765625,0.66796875,0.658203125,0.6279296875,0.6044921875,0.5869140625,0.578125,0.5908203125,0.626953125,0.6748046875,0.7158203125,0.740234375,0.7548828125,0.7529296875,0.7373046875,0.7177734375,0.708984375,0.716796875,0.740234375,0.76953125,0.8037109375,0.828125,0.828125,0.8037109375,0.76953125,0.740234375,0.7099609375,0.658203125,0.580078125,0.482421875,0.38671875,0.310546875,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.5380859375,0.5732421875,0.6240234375,0.6630859375,0.6708984375,0.6474609375,0.6044921875,0.5576171875,0.5126953125,0.4912109375,0.5078125,0.552734375,0.6025390625,0.634765625,0.6611328125,0.677734375,0.6630859375,0.607421875,0.525390625,0.4482421875,0.39453125,0.35546875,0.345703125,0.375,0.4306640625,0.484375,0.5087890625,0.5,0.4755859375,0.43359375,0.3857421875,0.3505859375,0.337890625,0.345703125,0.3642578125,0.390625,0.4443359375,0.5166015625,0.580078125,0.6162109375,0.6201171875,0.6044921875,0.5869140625,0.578125,0.5908203125,0.626953125,0.6748046875,0.7158203125,0.740234375,0.76171875,0.791015625,0.814453125,0.8173828125,0.798828125,0.7685546875,0.740234375,0.7001953125,0.6123046875,0.4970703125,0.3974609375,0.3486328125,0.3544921875,0.39453125,0.4462890625,0.521484375,0.607421875,0.6796875,0.72265625,0.73828125,0.740234375,0.7392578125,0.7216796875,0.66796875,0.5712890625,0.451171875,0.33984375,0.2587890625,0.1826171875,0.1044921875,0.068359375,0.1044921875,0.201171875,0.3115234375,0.39453125,0.47265625,0.56640625,0.6572265625,0.7177734375,0.7421875,0.7421875,0.740234375,0.7275390625,0.6669921875,0.5634765625,0.4521484375,0.373046875,0.3466796875,0.3642578125,0.3935546875,0.4326171875,0.474609375,0.5078125,0.5244140625,0.529296875,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.529296875,0.53125,0.541015625,0.560546875,0.587890625,0.6142578125,0.634765625,0.6591796875,0.701171875,0.748046875,0.779296875,0.783203125,0.765625,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7216796875,0.638671875,0.5078125,0.3857421875,0.322265625,0.3330078125,0.39453125,0.47265625,0.560546875,0.6240234375,0.6328125,0.5869140625,0.521484375,0.46875,0.4140625,0.3291015625,0.240234375,0.1845703125,0.1796875,0.2138671875,0.2587890625,0.3134765625,0.3994140625,0.4990234375,0.580078125,0.619140625,0.62109375,0.6044921875,0.5888671875,0.5859375,0.5966796875,0.6123046875,0.623046875,0.6201171875,0.6044921875,0.5751953125,0.5087890625,0.4248046875,0.3583984375,0.333984375,0.3525390625,0.39453125,0.443359375,0.49609375,0.53515625,0.5439453125,0.5234375,0.4921875,0.46875,0.4462890625,0.40625,0.3564453125,0.30859375,0.275390625,0.2607421875,0.2587890625,0.2548828125,0.2421875,0.2421875,0.275390625,0.3427734375,0.423828125,0.5,0.5693359375,0.6201171875,0.6240234375,0.57421875,0.4931640625,0.4248046875,0.39453125,0.384765625,0.416015625,0.4853515625,0.568359375,0.6318359375,0.65234375,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3115234375,0.3857421875,0.4609375,0.5078125,0.5166015625,0.49609375,0.46875,0.4541015625,0.48046875,0.53515625,0.5849609375,0.5986328125,0.564453125,0.5,0.423828125,0.3486328125,0.30859375,0.328125,0.396484375,0.474609375,0.5302734375,0.580078125,0.6416015625,0.6923828125,0.712890625,0.697265625,0.6640625,0.634765625,0.6005859375,0.5419921875,0.48046875,0.4443359375,0.44921875,0.484375,0.5302734375,0.564453125,0.5546875,0.4990234375,0.4248046875,0.369140625,0.359375,0.39453125,0.4326171875,0.4384765625,0.40234375,0.33984375,0.279296875,0.25,0.2587890625,0.2939453125,0.3818359375,0.5,0.59375,0.626953125,0.595703125,0.5302734375,0.4501953125,0.35546875,0.2783203125,0.25390625,0.28515625,0.34375,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.666015625,0.7080078125,0.740234375,0.740234375,0.705078125,0.6533203125,0.6044921875,0.5703125,0.5791015625,0.6240234375,0.5556640625,0.5341796875,0.55078125,0.603515625,0.673828125,0.7333984375,0.7373046875,0.666015625,0.5390625,0.41015625,0.333984375,0.3251953125,0.3466796875,0.40234375,0.4736328125,0.5224609375,0.5263671875,0.4873046875,0.4287109375,0.375,0.359375,0.3994140625,0.48046875,0.5673828125,0.619140625,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.666015625,0.6640625,0.650390625,0.6064453125,0.53515625,0.4521484375,0.376953125,0.2978515625,0.203125,0.13671875,0.13671875,0.203125,0.2978515625,0.376953125,0.439453125,0.462890625,0.44140625,0.3994140625,0.369140625,0.3779296875,0.4287109375,0.4794921875,0.4814453125,0.4326171875,0.357421875,0.2978515625,0.287109375,0.3251953125,0.38671875,0.474609375,0.560546875,0.6064453125,0.59765625,0.5517578125,0.5,0.4609375,0.474609375,0.5419921875,0.630859375,0.6982421875,0.7119140625,0.673828125,0.6240234375,0.580078125,0.5390625,0.4951171875,0.443359375,0.38671875,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.380859375,0.4111328125,0.412109375,0.396484375,0.3876953125,0.404296875,0.4482421875,0.4921875,0.5078125,0.4990234375,0.484375,0.484375,0.5146484375,0.5703125,0.630859375,0.67578125,0.6708984375,0.6015625,0.4921875,0.3896484375,0.3251953125,0.2802734375,0.26171875,0.2822265625,0.3359375,0.39453125,0.4296875,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5634765625,0.541015625,0.5185546875,0.51953125,0.5537109375,0.611328125,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.3193359375,0.296875,0.26953125,0.26171875,0.283203125,0.326171875,0.376953125,0.4306640625,0.4921875,0.5478515625,0.5869140625,0.60546875,0.61328125,0.6220703125,0.6181640625,0.5625,0.47265625,0.3916015625,0.3583984375,0.3837890625,0.4482421875,0.52734375,0.6220703125,0.6962890625,0.71484375,0.6748046875,0.6083984375,0.55078125,0.4970703125,0.4453125,0.4248046875,0.45703125,0.5322265625,0.6142578125,0.673828125,0.7216796875,0.7529296875,0.7548828125,0.728515625,0.6923828125,0.669921875,0.673828125,0.6845703125,0.6982421875,0.7080078125,0.7080078125,0.6982421875,0.6845703125,0.673828125,0.6640625,0.6494140625,0.6162109375,0.5546875,0.47265625,0.3916015625,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.578125,0.611328125,0.6533203125,0.673828125,0.658203125,0.611328125,0.55078125,0.4921875,0.44921875,0.4462890625,0.486328125,0.5498046875,0.6015625,0.6220703125,0.63671875,0.658203125,0.6669921875,0.642578125,0.5849609375,0.5126953125,0.4482421875,0.396484375,0.3876953125,0.42578125,0.4873046875,0.5341796875,0.5390625,0.5,0.4404296875,0.3583984375,0.283203125,0.2509765625,0.271484375,0.3232421875,0.376953125,0.4384765625,0.5263671875,0.6123046875,0.658203125,0.6494140625,0.603515625,0.55078125,0.4970703125,0.4453125,0.4248046875,0.45703125,0.5322265625,0.6142578125,0.673828125,0.724609375,0.767578125,0.78515625,0.767578125,0.7275390625,0.6904296875,0.673828125,0.6494140625,0.5791015625,0.48046875,0.3994140625,0.3681640625,0.3916015625,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.6806640625,0.6845703125,0.6767578125,0.673828125,0.6748046875,0.6748046875,0.650390625,0.5888671875,0.498046875,0.4033203125,0.3251953125,0.2490234375,0.169921875,0.1298828125,0.162109375,0.255859375,0.365234375,0.4482421875,0.5224609375,0.6025390625,0.666015625,0.6953125,0.6923828125,0.677734375,0.673828125,0.6650390625,0.623046875,0.548828125,0.466796875,0.40234375,0.3740234375,0.376953125,0.3916015625,0.4228515625,0.4677734375,0.5146484375,0.5498046875,0.5673828125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.564453125,0.541015625,0.5146484375,0.5068359375,0.52734375,0.5712890625,0.6220703125,0.673828125,0.7236328125,0.751953125,0.7490234375,0.720703125,0.689453125,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.658203125,0.5888671875,0.4853515625,0.3955078125,0.3583984375,0.3837890625,0.4482421875,0.525390625,0.611328125,0.666015625,0.6572265625,0.587890625,0.4990234375,0.4287109375,0.3583984375,0.265625,0.185546875,0.158203125,0.1923828125,0.259765625,0.3251953125,0.3974609375,0.4990234375,0.599609375,0.654296875,0.6494140625,0.6044921875,0.55078125,0.5087890625,0.5009765625,0.529296875,0.572265625,0.6015625,0.59375,0.55078125,0.490234375,0.4052734375,0.3271484375,0.294921875,0.3212890625,0.3837890625,0.4482421875,0.513671875,0.5859375,0.6318359375,0.6220703125,0.5625,0.4873046875,0.4287109375,0.376953125,0.3271484375,0.294921875,0.2890625,0.3037109375,0.3212890625,0.3251953125,0.3193359375,0.298828125,0.2841796875,0.2998046875,0.3525390625,0.42578125,0.5,0.5751953125,0.6513671875,0.6904296875,0.66796875,0.59375,0.5087890625,0.4482421875,0.4033203125,0.3935546875,0.4306640625,0.5029296875,0.5771484375,0.62109375,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3896484375,0.4521484375,0.4951171875,0.5,0.4755859375,0.4453125,0.4287109375,0.4306640625,0.4736328125,0.5400390625,0.59375,0.6044921875,0.56640625,0.5,0.4228515625,0.34375,0.2998046875,0.3232421875,0.4033203125,0.4990234375,0.5703125,0.6328125,0.689453125,0.7197265625,0.7119140625,0.67578125,0.638671875,0.6220703125,0.6015625,0.552734375,0.4931640625,0.4580078125,0.4658203125,0.509765625,0.5703125,0.6181640625,0.6123046875,0.55078125,0.466796875,0.4052734375,0.3994140625,0.4482421875,0.498046875,0.498046875,0.4443359375,0.3642578125,0.30078125,0.287109375,0.3251953125,0.390625,0.4990234375,0.6171875,0.6904296875,0.693359375,0.6416015625,0.5703125,0.4892578125,0.3857421875,0.2998046875,0.271484375,0.3095703125,0.380859375,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.638671875,0.673828125,0.705078125,0.7080078125,0.673828125,0.6142578125,0.55078125,0.501953125,0.498046875,0.5400390625,0.470703125,0.4423828125,0.45703125,0.509765625,0.5791015625,0.6455078125,0.6767578125,0.6533203125,0.580078125,0.4912109375,0.431640625,0.419921875,0.431640625,0.4755859375,0.533203125,0.5673828125,0.5576171875,0.5078125,0.439453125,0.375,0.33984375,0.357421875,0.421875,0.5029296875,0.55859375,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.583984375,0.6064453125,0.6259765625,0.6181640625,0.572265625,0.5029296875,0.4296875,0.349609375,0.255859375,0.189453125,0.189453125,0.255859375,0.349609375,0.4296875,0.490234375,0.5029296875,0.4658203125,0.4091796875,0.37109375,0.380859375,0.439453125,0.498046875,0.5068359375,0.46484375,0.400390625,0.3564453125,0.36328125,0.419921875,0.498046875,0.5966796875,0.6787109375,0.69921875,0.6533203125,0.5732421875,0.5,0.4443359375,0.443359375,0.5,0.5791015625,0.634765625,0.634765625,0.5791015625,0.5185546875,0.490234375,0.494140625,0.5107421875,0.5126953125,0.482421875,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.48046875,0.5,0.4775390625,0.4375,0.4130859375,0.4306640625,0.4892578125,0.5478515625,0.5654296875,0.5419921875,0.501953125,0.4794921875,0.4990234375,0.5595703125,0.6337890625,0.7080078125,0.740234375,0.703125,0.607421875,0.4990234375,0.419921875,0.353515625,0.3076171875,0.30078125,0.3349609375,0.390625,0.431640625,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.5498046875,0.51171875,0.4638671875,0.439453125,0.45703125,0.5107421875,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.41015625,0.3720703125,0.3232421875,0.296875,0.3115234375,0.36328125,0.4296875,0.4990234375,0.5654296875,0.607421875,0.615234375,0.595703125,0.57421875,0.5693359375,0.55859375,0.5087890625,0.4375,0.3857421875,0.3798828125,0.421875,0.4892578125,0.5693359375,0.6640625,0.732421875,0.736328125,0.6748046875,0.5859375,0.509765625,0.435546875,0.353515625,0.3056640625,0.32421875,0.4033203125,0.501953125,0.5791015625,0.6455078125,0.6943359375,0.7060546875,0.6767578125,0.6259765625,0.5869140625,0.5791015625,0.5810546875,0.5830078125,0.5849609375,0.5849609375,0.5830078125,0.5810546875,0.5791015625,0.583984375,0.603515625,0.6201171875,0.6083984375,0.560546875,0.4912109375,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.568359375,0.6025390625,0.6435546875,0.66015625,0.6357421875,0.5791015625,0.509765625,0.4423828125,0.3974609375,0.396484375,0.44140625,0.5068359375,0.556640625,0.5693359375,0.5791015625,0.611328125,0.6455078125,0.6533203125,0.6220703125,0.5595703125,0.4892578125,0.4306640625,0.4208984375,0.4609375,0.5224609375,0.564453125,0.5556640625,0.5,0.421875,0.3232421875,0.244140625,0.2255859375,0.2744140625,0.35546875,0.4296875,0.5078125,0.607421875,0.6884765625,0.7099609375,0.6640625,0.583984375,0.509765625,0.435546875,0.353515625,0.3056640625,0.32421875,0.4033203125,0.501953125,0.5791015625,0.646484375,0.697265625,0.7109375,0.6826171875,0.6318359375,0.5908203125,0.5791015625,0.5654296875,0.5126953125,0.4404296875,0.3876953125,0.3818359375,0.4228515625,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.6484375,0.6171875,0.5869140625,0.5791015625,0.5859375,0.607421875,0.6259765625,0.6142578125,0.5654296875,0.4931640625,0.419921875,0.341796875,0.255859375,0.205078125,0.2236328125,0.3056640625,0.408203125,0.4892578125,0.5615234375,0.625,0.658203125,0.6513671875,0.6181640625,0.5869140625,0.5791015625,0.5751953125,0.556640625,0.521484375,0.4814453125,0.4482421875,0.431640625,0.4296875,0.4345703125,0.451171875,0.48046875,0.513671875,0.5419921875,0.556640625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5498046875,0.51171875,0.462890625,0.4365234375,0.451171875,0.5029296875,0.5693359375,0.63671875,0.6884765625,0.7041015625,0.6787109375,0.6298828125,0.58984375,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5673828125,0.5146484375,0.44140625,0.38671875,0.3798828125,0.421875,0.4892578125,0.568359375,0.6552734375,0.708984375,0.6953125,0.6181640625,0.5185546875,0.439453125,0.361328125,0.2666015625,0.197265625,0.1923828125,0.2529296875,0.3427734375,0.419921875,0.4990234375,0.6015625,0.685546875,0.7080078125,0.6630859375,0.583984375,0.509765625,0.4521484375,0.4423828125,0.48046875,0.5380859375,0.5771484375,0.56640625,0.509765625,0.4326171875,0.33984375,0.2705078125,0.2646484375,0.32421875,0.412109375,0.4892578125,0.56640625,0.6513671875,0.7041015625,0.689453125,0.6142578125,0.517578125,0.439453125,0.373046875,0.3203125,0.3037109375,0.3271484375,0.373046875,0.4111328125,0.419921875,0.412109375,0.3798828125,0.34375,0.3349609375,0.3662109375,0.427734375,0.5,0.578125,0.669921875,0.7314453125,0.7275390625,0.6591796875,0.56640625,0.4892578125,0.4248046875,0.3857421875,0.392578125,0.443359375,0.51171875,0.5595703125,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.48828125,0.54296875,0.5615234375,0.5380859375,0.490234375,0.4501953125,0.439453125,0.44921875,0.4970703125,0.5634765625,0.6103515625,0.6123046875,0.5673828125,0.5,0.421875,0.3359375,0.283203125,0.2998046875,0.3798828125,0.4794921875,0.5595703125,0.6279296875,0.681640625,0.697265625,0.671875,0.62109375,0.580078125,0.5693359375,0.5576171875,0.5146484375,0.4599609375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.6162109375,0.6181640625,0.5634765625,0.4853515625,0.4306640625,0.4326171875,0.4892578125,0.546875,0.5498046875,0.49609375,0.4189453125,0.3642578125,0.3642578125,0.419921875,0.5,0.6083984375,0.705078125,0.7431640625,0.7109375,0.6357421875,0.5595703125,0.478515625,0.376953125,0.2958984375,0.27734375,0.3291015625,0.4130859375,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5791015625,0.6142578125,0.6533203125,0.666015625,0.638671875,0.5791015625,0.509765625,0.451171875,0.44140625,0.482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.3271484375,0.302734375,0.318359375,0.37109375,0.439453125,0.5107421875,0.576171875,0.6171875,0.62109375,0.5986328125,0.57421875,0.5693359375,0.580078125,0.62109375,0.671875,0.697265625,0.681640625,0.6279296875,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.4814453125,0.3896484375,0.3251953125,0.3271484375,0.3955078125,0.4892578125,0.5693359375,0.62890625,0.640625,0.6005859375,0.5390625,0.49609375,0.5029296875,0.5595703125,0.6162109375,0.625,0.5859375,0.52734375,0.4892578125,0.5009765625,0.5595703125,0.6357421875,0.7216796875,0.7744140625,0.759765625,0.6806640625,0.580078125,0.5,0.4384765625,0.4189453125,0.4443359375,0.4892578125,0.515625,0.4990234375,0.439453125,0.384765625,0.390625,0.4609375,0.5576171875,0.6279296875,0.634765625,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.43359375,0.4091796875,0.38671875,0.392578125,0.43359375,0.5,0.5693359375,0.6240234375,0.6240234375,0.56640625,0.486328125,0.4306640625,0.4326171875,0.4892578125,0.546875,0.55078125,0.5009765625,0.4287109375,0.3779296875,0.3828125,0.439453125,0.5205078125,0.626953125,0.7197265625,0.75390625,0.7177734375,0.642578125,0.5693359375,0.5029296875,0.4521484375,0.4384765625,0.4658203125,0.5146484375,0.5517578125,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.4306640625,0.390625,0.33984375,0.310546875,0.3232421875,0.373046875,0.439453125,0.5087890625,0.572265625,0.6103515625,0.6123046875,0.5888671875,0.564453125,0.5595703125,0.55078125,0.5107421875,0.45703125,0.4267578125,0.4384765625,0.490234375,0.5595703125,0.6259765625,0.6611328125,0.64453125,0.5791015625,0.4970703125,0.44140625,0.4296875,0.4228515625,0.3916015625,0.3544921875,0.3408203125,0.365234375,0.421875,0.4892578125,0.5654296875,0.65625,0.7216796875,0.7216796875,0.658203125,0.5673828125,0.4892578125,0.41015625,0.3095703125,0.23046875,0.2138671875,0.265625,0.3515625,0.4296875,0.4990234375,0.55078125,0.5615234375,0.5283203125,0.47265625,0.4296875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.5078125,0.4384765625,0.390625,0.37890625,0.3955078125,0.4150390625,0.419921875,0.4296875,0.4765625,0.54296875,0.5908203125,0.5947265625,0.5546875,0.4892578125,0.421875,0.3642578125,0.3369140625,0.3486328125,0.3837890625,0.4130859375,0.419921875,0.4296875,0.48046875,0.55078125,0.603515625,0.609375,0.5673828125,0.5,0.439453125,0.4296875,0.470703125,0.533203125,0.576171875,0.5673828125,0.509765625,0.4326171875,0.3486328125,0.2978515625,0.3154296875,0.396484375,0.498046875,0.5791015625,0.6572265625,0.7431640625,0.7939453125,0.775390625,0.693359375,0.5908203125,0.509765625,0.427734375,0.32421875,0.23828125,0.2158203125,0.26171875,0.34375,0.419921875,0.48828125,0.541015625,0.556640625,0.5322265625,0.484375,0.447265625,0.439453125,0.43359375,0.40234375,0.3662109375,0.353515625,0.380859375,0.4404296875,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.4443359375,0.5048828125,0.5888671875,0.65625,0.6728515625,0.6357421875,0.5693359375,0.48828125,0.38671875,0.306640625,0.291015625,0.3447265625,0.4306640625,0.509765625,0.578125,0.623046875,0.6220703125,0.5732421875,0.50390625,0.453125,0.439453125,0.44140625,0.45703125,0.48828125,0.525390625,0.5576171875,0.576171875,0.5791015625,0.576171875,0.55859375,0.5283203125,0.4912109375,0.4599609375,0.443359375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4296875,0.38671875,0.3310546875,0.2978515625,0.30859375,0.3603515625,0.4296875,0.5,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.41796875,0.4169921875,0.41796875,0.4208984375,0.423828125,0.427734375,0.4296875,0.4228515625,0.390625,0.353515625,0.3408203125,0.3681640625,0.4287109375,0.5,0.5810546875,0.681640625,0.76171875,0.7783203125,0.724609375,0.6376953125,0.5595703125,0.48046875,0.3896484375,0.328125,0.3349609375,0.4052734375,0.5009765625,0.5791015625,0.6552734375,0.7392578125,0.7880859375,0.7705078125,0.689453125,0.5888671875,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.568359375,0.5185546875,0.44921875,0.3994140625,0.39453125,0.4345703125,0.5,0.5751953125,0.6640625,0.7255859375,0.72265625,0.6572265625,0.5654296875,0.4892578125,0.421875,0.3642578125,0.3369140625,0.3486328125,0.3837890625,0.4130859375,0.419921875,0.412109375,0.3896484375,0.373046875,0.3857421875,0.435546875,0.5068359375,0.5791015625,0.6474609375,0.6982421875,0.7119140625,0.681640625,0.6298828125,0.5888671875,0.5791015625,0.5869140625,0.6201171875,0.65625,0.6669921875,0.638671875,0.5791015625,0.509765625,0.4296875,0.3271484375,0.2431640625,0.220703125,0.2685546875,0.3525390625,0.4296875,0.5,0.5537109375,0.5693359375,0.541015625,0.490234375,0.44921875,0.439453125,0.4296875,0.38671875,0.3310546875,0.2978515625,0.30859375,0.3603515625,0.4296875,0.4912109375,0.5126953125,0.4921875,0.453125,0.4306640625,0.44921875,0.509765625,0.5693359375,0.5859375,0.5576171875,0.51171875,0.4833984375,0.5,0.5595703125,0.6337890625,0.7080078125,0.740234375,0.703125,0.607421875,0.4990234375,0.419921875,0.345703125,0.2646484375,0.21875,0.2412109375,0.3251953125,0.427734375,0.509765625,0.5771484375,0.62109375,0.619140625,0.5703125,0.501953125,0.451171875,0.439453125,0.4501953125,0.498046875,0.5615234375,0.6064453125,0.607421875,0.564453125,0.5,0.4423828125,0.43359375,0.4716796875,0.29296875,0.2900390625,0.3173828125,0.3681640625,0.4287109375,0.4921875,0.5537109375,0.6005859375,0.62109375,0.6201171875,0.615234375,0.6220703125,0.638671875,0.67578125,0.7119140625,0.7197265625,0.689453125,0.6328125,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.501953125,0.4208984375,0.3681640625,0.376953125,0.4482421875,0.5419921875,0.6220703125,0.68359375,0.69921875,0.6630859375,0.59765625,0.5419921875,0.53125,0.5703125,0.611328125,0.6123046875,0.576171875,0.529296875,0.501953125,0.517578125,0.5703125,0.6376953125,0.7158203125,0.7646484375,0.7509765625,0.67578125,0.5791015625,0.5,0.4365234375,0.4111328125,0.427734375,0.4658203125,0.4921875,0.48046875,0.4287109375,0.3837890625,0.404296875,0.4931640625,0.609375,0.6982421875,0.71875,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.4267578125,0.419921875,0.4248046875,0.4541015625,0.5068359375,0.5673828125,0.6220703125,0.6591796875,0.6396484375,0.564453125,0.470703125,0.4052734375,0.3994140625,0.4482421875,0.4990234375,0.505859375,0.466796875,0.41015625,0.37109375,0.3779296875,0.4287109375,0.5,0.59765625,0.6904296875,0.7373046875,0.724609375,0.67578125,0.6220703125,0.572265625,0.53515625,0.521484375,0.5341796875,0.55859375,0.57421875,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.421875,0.392578125,0.3544921875,0.3330078125,0.341796875,0.3798828125,0.4287109375,0.48046875,0.5283203125,0.5615234375,0.5732421875,0.568359375,0.5634765625,0.5703125,0.5703125,0.5361328125,0.484375,0.4501953125,0.455078125,0.501953125,0.5703125,0.6337890625,0.6572265625,0.619140625,0.5341796875,0.439453125,0.3818359375,0.376953125,0.3818359375,0.3681640625,0.3486328125,0.3408203125,0.3583984375,0.3984375,0.4482421875,0.505859375,0.5791015625,0.6337890625,0.638671875,0.5888671875,0.5146484375,0.4482421875,0.376953125,0.28125,0.201171875,0.177734375,0.220703125,0.30078125,0.376953125,0.4462890625,0.4921875,0.494140625,0.4501953125,0.384765625,0.3369140625,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.607421875,0.5263671875,0.4443359375,0.3828125,0.349609375,0.3349609375,0.3251953125,0.3251953125,0.3623046875,0.42578125,0.484375,0.509765625,0.4931640625,0.4482421875,0.396484375,0.3505859375,0.322265625,0.3154296875,0.32421875,0.3310546875,0.3251953125,0.3291015625,0.384765625,0.4755859375,0.5556640625,0.5888671875,0.5634765625,0.5,0.439453125,0.4287109375,0.47265625,0.54296875,0.5966796875,0.599609375,0.55078125,0.484375,0.4130859375,0.375,0.4033203125,0.4892578125,0.591796875,0.673828125,0.75,0.8291015625,0.869140625,0.8369140625,0.7431640625,0.6337890625,0.55078125,0.4677734375,0.3525390625,0.2431640625,0.1875,0.2021484375,0.26171875,0.3251953125,0.38671875,0.4375,0.4638671875,0.4609375,0.4404296875,0.4248046875,0.4287109375,0.43359375,0.419921875,0.4033203125,0.4052734375,0.4365234375,0.490234375,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.4033203125,0.482421875,0.591796875,0.6826171875,0.7158203125,0.6875,0.6220703125,0.5400390625,0.4375,0.35546875,0.3369140625,0.3876953125,0.47265625,0.55078125,0.619140625,0.6630859375,0.6572265625,0.5986328125,0.515625,0.4521484375,0.4287109375,0.4248046875,0.4462890625,0.4990234375,0.568359375,0.630859375,0.666015625,0.673828125,0.66796875,0.6376953125,0.5830078125,0.5185546875,0.46484375,0.4345703125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.41796875,0.3701171875,0.3046875,0.2607421875,0.2626953125,0.30859375,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.3154296875,0.3076171875,0.3095703125,0.3232421875,0.3447265625,0.3642578125,0.376953125,0.3798828125,0.361328125,0.3369140625,0.333984375,0.3671875,0.4287109375,0.5,0.5810546875,0.68359375,0.765625,0.7841796875,0.7333984375,0.6484375,0.5703125,0.494140625,0.4189453125,0.3828125,0.4140625,0.501953125,0.6015625,0.673828125,0.73828125,0.8046875,0.833984375,0.8017578125,0.7177734375,0.6220703125,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.662109375,0.611328125,0.53515625,0.466796875,0.4375,0.4541015625,0.5,0.5546875,0.615234375,0.6513671875,0.6376953125,0.5791015625,0.505859375,0.4482421875,0.396484375,0.3505859375,0.322265625,0.3154296875,0.32421875,0.3310546875,0.3251953125,0.3154296875,0.314453125,0.34375,0.4140625,0.5107421875,0.6044921875,0.673828125,0.7333984375,0.7783203125,0.7890625,0.763671875,0.7177734375,0.681640625,0.673828125,0.6787109375,0.7001953125,0.71875,0.7119140625,0.673828125,0.61328125,0.55078125,0.4775390625,0.3701171875,0.2666015625,0.2158203125,0.236328125,0.302734375,0.376953125,0.4482421875,0.5068359375,0.5322265625,0.5146484375,0.4736328125,0.4375,0.4287109375,0.41796875,0.3701171875,0.3046875,0.2607421875,0.2626953125,0.30859375,0.376953125,0.4423828125,0.48046875,0.4873046875,0.4765625,0.4736328125,0.4970703125,0.55078125,0.6025390625,0.6142578125,0.583984375,0.537109375,0.5068359375,0.5185546875,0.5703125,0.630859375,0.67578125,0.6708984375,0.6015625,0.4921875,0.3896484375,0.3251953125,0.271484375,0.2197265625,0.20703125,0.2578125,0.359375,0.46875,0.55078125,0.6181640625,0.6552734375,0.6416015625,0.5791015625,0.498046875,0.44140625,0.4287109375,0.4375,0.4755859375,0.529296875,0.5703125,0.576171875,0.5478515625,0.5,0.458984375,0.45703125,0.4892578125,0.3193359375,0.3447265625,0.380859375,0.423828125,0.46875,0.513671875,0.5517578125,0.5771484375,0.5908203125,0.5986328125,0.611328125,0.634765625,0.6640625,0.697265625,0.712890625,0.6923828125,0.6416015625,0.580078125,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.478515625,0.416015625,0.3779296875,0.39453125,0.46484375,0.556640625,0.634765625,0.69921875,0.728515625,0.7041015625,0.6376953125,0.564453125,0.5234375,0.5302734375,0.5419921875,0.529296875,0.4990234375,0.4716796875,0.4658203125,0.48828125,0.5302734375,0.5830078125,0.654296875,0.708984375,0.712890625,0.6591796875,0.576171875,0.5,0.435546875,0.4052734375,0.4189453125,0.4609375,0.4990234375,0.50390625,0.46875,0.4375,0.4638671875,0.5498046875,0.6591796875,0.7451171875,0.771484375,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.470703125,0.4794921875,0.501953125,0.5380859375,0.5791015625,0.6123046875,0.634765625,0.6416015625,0.599609375,0.515625,0.4248046875,0.365234375,0.3583984375,0.39453125,0.43359375,0.4501953125,0.44140625,0.4228515625,0.4140625,0.4296875,0.46875,0.51953125,0.583984375,0.6435546875,0.67578125,0.67578125,0.65625,0.634765625,0.6181640625,0.6064453125,0.599609375,0.5908203125,0.576171875,0.5556640625,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.466796875,0.455078125,0.44140625,0.43359375,0.4365234375,0.451171875,0.46875,0.4853515625,0.4912109375,0.48828125,0.4853515625,0.490234375,0.505859375,0.5302734375,0.5458984375,0.5234375,0.474609375,0.4326171875,0.4267578125,0.4638671875,0.5302734375,0.591796875,0.609375,0.5654296875,0.48046875,0.39453125,0.3525390625,0.3642578125,0.3876953125,0.3994140625,0.3974609375,0.3857421875,0.376953125,0.37890625,0.39453125,0.4189453125,0.458984375,0.4970703125,0.5078125,0.4853515625,0.44140625,0.39453125,0.33984375,0.2607421875,0.1923828125,0.1728515625,0.2138671875,0.2890625,0.3642578125,0.431640625,0.470703125,0.4609375,0.40234375,0.326171875,0.271484375,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.6884765625,0.6123046875,0.5166015625,0.4189453125,0.3408203125,0.2890625,0.2587890625,0.2392578125,0.2470703125,0.287109375,0.341796875,0.3876953125,0.40625,0.39453125,0.376953125,0.361328125,0.34765625,0.3310546875,0.3095703125,0.28515625,0.2587890625,0.2490234375,0.30078125,0.40234375,0.5078125,0.568359375,0.5595703125,0.5,0.4384765625,0.4248046875,0.46875,0.546875,0.615234375,0.63671875,0.6044921875,0.5537109375,0.4951171875,0.4638671875,0.48828125,0.5654296875,0.6611328125,0.740234375,0.81640625,0.89453125,0.9306640625,0.89453125,0.7978515625,0.6875,0.6044921875,0.5205078125,0.3994140625,0.275390625,0.1953125,0.1796875,0.212890625,0.2587890625,0.3046875,0.34765625,0.3828125,0.408203125,0.4267578125,0.4453125,0.46875,0.4912109375,0.5009765625,0.501953125,0.5078125,0.5263671875,0.5615234375,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.40625,0.5,0.619140625,0.708984375,0.7373046875,0.7021484375,0.634765625,0.5546875,0.45703125,0.3828125,0.375,0.435546875,0.525390625,0.6044921875,0.6748046875,0.7265625,0.728515625,0.673828125,0.5849609375,0.5078125,0.46875,0.4501953125,0.4638671875,0.5185546875,0.6015625,0.681640625,0.73046875,0.740234375,0.7333984375,0.701171875,0.640625,0.568359375,0.5087890625,0.4755859375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.45703125,0.40234375,0.3251953125,0.267578125,0.2568359375,0.296875,0.3642578125,0.4345703125,0.490234375,0.5,0.4521484375,0.37109375,0.296875,0.2587890625,0.232421875,0.2099609375,0.208984375,0.2373046875,0.28515625,0.33203125,0.3642578125,0.3828125,0.376953125,0.3583984375,0.3525390625,0.376953125,0.4306640625,0.5,0.580078125,0.677734375,0.7509765625,0.7587890625,0.69921875,0.609375,0.5302734375,0.458984375,0.4052734375,0.4052734375,0.4716796875,0.5810546875,0.6806640625,0.740234375,0.787109375,0.830078125,0.8427734375,0.806640625,0.734375,0.658203125,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7314453125,0.69140625,0.6240234375,0.5517578125,0.501953125,0.486328125,0.5,0.5185546875,0.5302734375,0.5244140625,0.4970703125,0.455078125,0.41796875,0.39453125,0.376953125,0.361328125,0.34765625,0.3310546875,0.3095703125,0.28515625,0.2587890625,0.23828125,0.2509765625,0.3193359375,0.4384765625,0.57421875,0.6806640625,0.740234375,0.7841796875,0.8173828125,0.826171875,0.806640625,0.7724609375,0.74609375,0.740234375,0.7431640625,0.7529296875,0.7568359375,0.740234375,0.701171875,0.65234375,0.6044921875,0.544921875,0.4404296875,0.3251953125,0.2509765625,0.244140625,0.2939453125,0.3642578125,0.4365234375,0.5009765625,0.5380859375,0.53515625,0.505859375,0.4765625,0.46875,0.45703125,0.40234375,0.3251953125,0.267578125,0.2568359375,0.296875,0.3642578125,0.43359375,0.48828125,0.521484375,0.53515625,0.5439453125,0.564453125,0.6044921875,0.640625,0.638671875,0.5966796875,0.5380859375,0.49609375,0.494140625,0.5302734375,0.5703125,0.58203125,0.5439453125,0.4609375,0.36328125,0.2900390625,0.2587890625,0.23828125,0.224609375,0.2451171875,0.314453125,0.4189453125,0.5244140625,0.6044921875,0.6708984375,0.70703125,0.6904296875,0.6240234375,0.5400390625,0.482421875,0.46875,0.47265625,0.4873046875,0.5078125,0.5244140625,0.52734375,0.517578125,0.5,0.48828125,0.50390625,0.5302734375,0.4052734375,0.447265625,0.478515625,0.50390625,0.5302734375,0.55078125,0.552734375,0.541015625,0.5302734375,0.53515625,0.5625,0.6044921875,0.6494140625,0.681640625,0.6787109375,0.6357421875,0.56640625,0.50390625,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.4365234375,0.392578125,0.3642578125,0.380859375,0.443359375,0.5283203125,0.6044921875,0.673828125,0.720703125,0.7177734375,0.66015625,0.572265625,0.5009765625,0.46875,0.447265625,0.41796875,0.39453125,0.3916015625,0.41015625,0.4404296875,0.46875,0.505859375,0.5703125,0.6357421875,0.662109375,0.63671875,0.572265625,0.5,0.4345703125,0.400390625,0.4140625,0.4638671875,0.5185546875,0.544921875,0.5302734375,0.5126953125,0.5341796875,0.595703125,0.673828125,0.7353515625,0.7568359375,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.5341796875,0.5546875,0.5849609375,0.61328125,0.6259765625,0.62109375,0.6044921875,0.5771484375,0.5185546875,0.44140625,0.375,0.33984375,0.341796875,0.3642578125,0.3896484375,0.4140625,0.4365234375,0.4580078125,0.4794921875,0.50390625,0.5302734375,0.5546875,0.572265625,0.5791015625,0.580078125,0.580078125,0.587890625,0.6044921875,0.6259765625,0.650390625,0.6572265625,0.6328125,0.580078125,0.51953125,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.5322265625,0.5439453125,0.5576171875,0.5654296875,0.5625,0.5478515625,0.5302734375,0.50390625,0.4560546875,0.4052734375,0.3779296875,0.38671875,0.423828125,0.46875,0.5029296875,0.4951171875,0.44921875,0.400390625,0.3798828125,0.4052734375,0.46875,0.53125,0.5478515625,0.5107421875,0.44140625,0.3798828125,0.3623046875,0.39453125,0.4404296875,0.48046875,0.4970703125,0.4775390625,0.43359375,0.3896484375,0.3642578125,0.349609375,0.3505859375,0.3671875,0.3857421875,0.3955078125,0.38671875,0.3642578125,0.3291015625,0.271484375,0.220703125,0.208984375,0.2490234375,0.3203125,0.39453125,0.4609375,0.4970703125,0.48046875,0.4140625,0.330078125,0.2724609375,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.7099609375,0.658203125,0.580078125,0.482421875,0.38671875,0.310546875,0.2587890625,0.21484375,0.18359375,0.1845703125,0.2236328125,0.2841796875,0.3369140625,0.3642578125,0.38671875,0.4140625,0.427734375,0.4111328125,0.365234375,0.30859375,0.2587890625,0.23046875,0.2685546875,0.3671875,0.48046875,0.5546875,0.5576171875,0.5,0.4365234375,0.416015625,0.4521484375,0.5302734375,0.6083984375,0.6474609375,0.634765625,0.6015625,0.5537109375,0.5185546875,0.52734375,0.583984375,0.6640625,0.740234375,0.8173828125,0.8984375,0.9423828125,0.9140625,0.82421875,0.716796875,0.634765625,0.552734375,0.439453125,0.322265625,0.2421875,0.216796875,0.232421875,0.2587890625,0.2841796875,0.310546875,0.341796875,0.3828125,0.4326171875,0.4833984375,0.5302734375,0.572265625,0.603515625,0.615234375,0.61328125,0.607421875,0.61328125,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.453125,0.5537109375,0.662109375,0.7294921875,0.7294921875,0.67578125,0.6044921875,0.525390625,0.435546875,0.375,0.3828125,0.45703125,0.5546875,0.634765625,0.708984375,0.7744140625,0.7978515625,0.7587890625,0.673828125,0.5859375,0.5302734375,0.490234375,0.4833984375,0.521484375,0.5966796875,0.6767578125,0.728515625,0.740234375,0.7353515625,0.7099609375,0.6630859375,0.607421875,0.560546875,0.53515625,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5166015625,0.458984375,0.375,0.30859375,0.2919921875,0.328125,0.39453125,0.4677734375,0.529296875,0.546875,0.5,0.4072265625,0.31640625,0.2587890625,0.2119140625,0.1689453125,0.15625,0.1923828125,0.2646484375,0.3408203125,0.39453125,0.4306640625,0.435546875,0.4140625,0.3916015625,0.39453125,0.43359375,0.5,0.578125,0.6689453125,0.728515625,0.720703125,0.6474609375,0.5498046875,0.46875,0.40234375,0.3671875,0.39453125,0.4853515625,0.6044921875,0.6982421875,0.740234375,0.7666015625,0.7890625,0.7900390625,0.76171875,0.7138671875,0.6669921875,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7373046875,0.71875,0.6796875,0.6240234375,0.56640625,0.5234375,0.5,0.4755859375,0.43359375,0.3857421875,0.3505859375,0.337890625,0.345703125,0.3642578125,0.38671875,0.4140625,0.427734375,0.4111328125,0.365234375,0.30859375,0.2587890625,0.22265625,0.232421875,0.3115234375,0.447265625,0.5927734375,0.697265625,0.740234375,0.765625,0.78515625,0.7900390625,0.7783203125,0.7587890625,0.744140625,0.740234375,0.7412109375,0.744140625,0.740234375,0.7236328125,0.6953125,0.6630859375,0.634765625,0.59375,0.50390625,0.3916015625,0.30859375,0.2880859375,0.326171875,0.39453125,0.4677734375,0.5361328125,0.580078125,0.5849609375,0.5615234375,0.537109375,0.5302734375,0.5166015625,0.458984375,0.375,0.30859375,0.2919921875,0.328125,0.39453125,0.4658203125,0.5322265625,0.580078125,0.6015625,0.6064453125,0.61328125,0.634765625,0.6533203125,0.63671875,0.5849609375,0.5185546875,0.466796875,0.451171875,0.46875,0.4873046875,0.4697265625,0.4140625,0.3388671875,0.2763671875,0.2490234375,0.2587890625,0.2763671875,0.2939453125,0.328125,0.388671875,0.4716796875,0.5595703125,0.634765625,0.7021484375,0.7421875,0.7314453125,0.673828125,0.5966796875,0.5419921875,0.5302734375,0.5263671875,0.51171875,0.4912109375,0.474609375,0.4716796875,0.4814453125,0.5,0.5244140625,0.5634765625,0.5908203125,0.5166015625,0.55078125,0.5615234375,0.5625,0.5703125,0.5712890625,0.541015625,0.4931640625,0.45703125,0.45703125,0.4931640625,0.55078125,0.609375,0.6455078125,0.6376953125,0.5830078125,0.5087890625,0.4501953125,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.412109375,0.376953125,0.349609375,0.35546875,0.404296875,0.4775390625,0.55078125,0.625,0.6923828125,0.716796875,0.67578125,0.5849609375,0.4912109375,0.4287109375,0.3779296875,0.3349609375,0.3173828125,0.3349609375,0.375,0.412109375,0.4287109375,0.451171875,0.5087890625,0.580078125,0.6240234375,0.619140625,0.5693359375,0.5,0.4326171875,0.39453125,0.4052734375,0.458984375,0.525390625,0.568359375,0.5703125,0.5634765625,0.5751953125,0.603515625,0.6396484375,0.6689453125,0.6796875,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.5771484375,0.6044921875,0.6376953125,0.654296875,0.640625,0.6015625,0.55078125,0.49609375,0.431640625,0.3759765625,0.3466796875,0.34765625,0.3642578125,0.376953125,0.390625,0.4150390625,0.4521484375,0.4951171875,0.5322265625,0.556640625,0.5703125,0.572265625,0.5478515625,0.5078125,0.4775390625,0.474609375,0.50390625,0.55078125,0.6064453125,0.6640625,0.6923828125,0.6640625,0.587890625,0.4990234375,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.5771484375,0.6064453125,0.64453125,0.666015625,0.6572265625,0.619140625,0.5703125,0.5087890625,0.4189453125,0.33203125,0.2900390625,0.30859375,0.365234375,0.4287109375,0.478515625,0.4814453125,0.439453125,0.3837890625,0.3505859375,0.3681640625,0.4287109375,0.490234375,0.509765625,0.4814453125,0.4296875,0.392578125,0.3974609375,0.4482421875,0.5126953125,0.5791015625,0.6123046875,0.58984375,0.5185546875,0.4375,0.376953125,0.3291015625,0.2978515625,0.2958984375,0.322265625,0.3583984375,0.3798828125,0.376953125,0.359375,0.318359375,0.2783203125,0.271484375,0.3076171875,0.375,0.4482421875,0.5146484375,0.552734375,0.5380859375,0.4755859375,0.39453125,0.3388671875,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.6640625,0.6494140625,0.6162109375,0.5546875,0.47265625,0.3916015625,0.3251953125,0.259765625,0.1923828125,0.154296875,0.171875,0.2392578125,0.318359375,0.376953125,0.4345703125,0.5009765625,0.544921875,0.53515625,0.474609375,0.3935546875,0.3251953125,0.2802734375,0.2978515625,0.37890625,0.4814453125,0.552734375,0.556640625,0.5,0.43359375,0.40234375,0.423828125,0.4912109375,0.5703125,0.619140625,0.6220703125,0.6025390625,0.5595703125,0.515625,0.50390625,0.5361328125,0.6005859375,0.673828125,0.751953125,0.83984375,0.89453125,0.880859375,0.802734375,0.7021484375,0.6220703125,0.5439453125,0.44921875,0.3623046875,0.3095703125,0.298828125,0.3125,0.3251953125,0.3330078125,0.3349609375,0.345703125,0.3798828125,0.4375,0.505859375,0.5703125,0.6298828125,0.6748046875,0.689453125,0.6728515625,0.640625,0.619140625,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.51953125,0.619140625,0.70703125,0.73828125,0.7021484375,0.626953125,0.55078125,0.47265625,0.3876953125,0.3369140625,0.35546875,0.4375,0.5400390625,0.6220703125,0.69921875,0.7802734375,0.828125,0.8095703125,0.7333984375,0.640625,0.5703125,0.5126953125,0.48046875,0.4921875,0.5458984375,0.6142578125,0.662109375,0.673828125,0.6708984375,0.658203125,0.6357421875,0.6083984375,0.5849609375,0.572265625,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5576171875,0.5009765625,0.419921875,0.357421875,0.34375,0.380859375,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.2607421875,0.1943359375,0.1650390625,0.197265625,0.28125,0.376953125,0.4482421875,0.4990234375,0.5078125,0.4775390625,0.4345703125,0.4140625,0.4375,0.5,0.5771484375,0.6630859375,0.7138671875,0.6953125,0.61328125,0.5107421875,0.4287109375,0.36328125,0.3349609375,0.3681640625,0.458984375,0.568359375,0.6474609375,0.673828125,0.68359375,0.69140625,0.689453125,0.67578125,0.654296875,0.634765625,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.6767578125,0.6845703125,0.6845703125,0.66015625,0.611328125,0.552734375,0.5,0.4404296875,0.3583984375,0.283203125,0.2509765625,0.271484375,0.3232421875,0.376953125,0.4345703125,0.5009765625,0.544921875,0.53515625,0.474609375,0.3935546875,0.3251953125,0.2724609375,0.263671875,0.322265625,0.435546875,0.5615234375,0.646484375,0.673828125,0.68359375,0.69140625,0.693359375,0.6884765625,0.6806640625,0.6748046875,0.673828125,0.673828125,0.673828125,0.669921875,0.66015625,0.646484375,0.6328125,0.6220703125,0.59765625,0.52734375,0.4326171875,0.361328125,0.34375,0.380859375,0.4482421875,0.5205078125,0.587890625,0.6279296875,0.6298828125,0.6044921875,0.5771484375,0.5703125,0.5576171875,0.5009765625,0.419921875,0.357421875,0.34375,0.380859375,0.4482421875,0.5205078125,0.587890625,0.6318359375,0.6435546875,0.630859375,0.6171875,0.6220703125,0.6259765625,0.6044921875,0.5556640625,0.4951171875,0.4462890625,0.4248046875,0.4287109375,0.4296875,0.39453125,0.3359375,0.2822265625,0.26171875,0.2802734375,0.3251953125,0.3720703125,0.4033203125,0.42578125,0.4521484375,0.4931640625,0.5517578125,0.6220703125,0.6904296875,0.736328125,0.73828125,0.6943359375,0.62890625,0.5810546875,0.5703125,0.5615234375,0.5234375,0.4697265625,0.4287109375,0.4228515625,0.451171875,0.5,0.556640625,0.6201171875,0.65625,0.6005859375,0.607421875,0.5869140625,0.564453125,0.5595703125,0.5498046875,0.5048828125,0.44140625,0.3984375,0.3984375,0.4423828125,0.509765625,0.576171875,0.6201171875,0.6181640625,0.5712890625,0.5029296875,0.453125,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.4296875,0.3955078125,0.357421875,0.345703125,0.3759765625,0.4375,0.509765625,0.5869140625,0.6708984375,0.7197265625,0.69921875,0.6181640625,0.517578125,0.439453125,0.373046875,0.322265625,0.30859375,0.3359375,0.3876953125,0.4287109375,0.439453125,0.453125,0.5029296875,0.5703125,0.615234375,0.6142578125,0.568359375,0.5,0.431640625,0.38671875,0.388671875,0.435546875,0.501953125,0.5498046875,0.5595703125,0.55859375,0.560546875,0.56640625,0.572265625,0.578125,0.580078125,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5673828125,0.6015625,0.6416015625,0.6572265625,0.6328125,0.5771484375,0.509765625,0.4404296875,0.3798828125,0.3486328125,0.35546875,0.3896484375,0.4208984375,0.4296875,0.4345703125,0.4501953125,0.478515625,0.5107421875,0.5390625,0.5546875,0.5595703125,0.5498046875,0.505859375,0.4443359375,0.4013671875,0.4013671875,0.4443359375,0.509765625,0.583984375,0.666015625,0.7158203125,0.6982421875,0.6181640625,0.5185546875,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.568359375,0.6083984375,0.6591796875,0.6884765625,0.67578125,0.6259765625,0.5595703125,0.48046875,0.375,0.283203125,0.2509765625,0.2880859375,0.365234375,0.439453125,0.498046875,0.5078125,0.466796875,0.4072265625,0.3681640625,0.3798828125,0.439453125,0.5009765625,0.5185546875,0.4912109375,0.4443359375,0.4150390625,0.4306640625,0.4892578125,0.5654296875,0.6494140625,0.7001953125,0.68359375,0.60546875,0.5078125,0.4296875,0.36328125,0.314453125,0.302734375,0.3330078125,0.3837890625,0.421875,0.4296875,0.419921875,0.3837890625,0.34375,0.330078125,0.357421875,0.41796875,0.4892578125,0.5576171875,0.6015625,0.599609375,0.55078125,0.4814453125,0.431640625,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.583984375,0.603515625,0.6201171875,0.6083984375,0.560546875,0.4912109375,0.419921875,0.3427734375,0.2529296875,0.19140625,0.1943359375,0.26171875,0.353515625,0.4296875,0.505859375,0.595703125,0.658203125,0.65625,0.58984375,0.498046875,0.419921875,0.36328125,0.36328125,0.421875,0.5029296875,0.5595703125,0.5576171875,0.5,0.431640625,0.388671875,0.392578125,0.44140625,0.5107421875,0.5595703125,0.5693359375,0.5576171875,0.5166015625,0.46484375,0.4375,0.4541015625,0.5087890625,0.5791015625,0.6591796875,0.751953125,0.81640625,0.8134765625,0.744140625,0.6494140625,0.5693359375,0.49609375,0.423828125,0.3759765625,0.3662109375,0.38671875,0.412109375,0.419921875,0.4150390625,0.392578125,0.3720703125,0.3779296875,0.4208984375,0.48828125,0.5595703125,0.6279296875,0.6787109375,0.6923828125,0.6650390625,0.615234375,0.5771484375,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.568359375,0.6630859375,0.734375,0.740234375,0.6796875,0.5888671875,0.509765625,0.4306640625,0.3447265625,0.291015625,0.306640625,0.38671875,0.48828125,0.5693359375,0.6484375,0.740234375,0.8037109375,0.80078125,0.7314453125,0.6376953125,0.5595703125,0.4912109375,0.4423828125,0.4345703125,0.4697265625,0.5263671875,0.5693359375,0.5791015625,0.5791015625,0.576171875,0.572265625,0.56640625,0.5625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5478515625,0.4970703125,0.4287109375,0.3798828125,0.3779296875,0.421875,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.5,0.419921875,0.34375,0.259765625,0.2109375,0.228515625,0.3095703125,0.41015625,0.4892578125,0.5478515625,0.55859375,0.5205078125,0.462890625,0.4267578125,0.439453125,0.5,0.578125,0.6650390625,0.7177734375,0.7021484375,0.6220703125,0.5205078125,0.439453125,0.373046875,0.3369140625,0.353515625,0.419921875,0.5048828125,0.564453125,0.5791015625,0.5810546875,0.58203125,0.5810546875,0.578125,0.5751953125,0.5712890625,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5869140625,0.6171875,0.650390625,0.658203125,0.6279296875,0.568359375,0.5,0.421875,0.3232421875,0.244140625,0.2255859375,0.2744140625,0.35546875,0.4296875,0.505859375,0.595703125,0.658203125,0.65625,0.58984375,0.498046875,0.419921875,0.35546875,0.322265625,0.34375,0.4150390625,0.5029296875,0.564453125,0.5791015625,0.5810546875,0.58203125,0.58203125,0.58203125,0.580078125,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.578125,0.576171875,0.5732421875,0.5712890625,0.5693359375,0.5556640625,0.5029296875,0.431640625,0.380859375,0.3779296875,0.421875,0.4892578125,0.560546875,0.6220703125,0.650390625,0.638671875,0.6005859375,0.5673828125,0.5595703125,0.5478515625,0.4970703125,0.4287109375,0.3798828125,0.3779296875,0.421875,0.4892578125,0.560546875,0.6220703125,0.65234375,0.6416015625,0.6064453125,0.576171875,0.5693359375,0.5673828125,0.5517578125,0.5224609375,0.486328125,0.45703125,0.44140625,0.439453125,0.431640625,0.390625,0.3349609375,0.30078125,0.3076171875,0.353515625,0.419921875,0.4794921875,0.505859375,0.4990234375,0.4794921875,0.474609375,0.505859375,0.5693359375,0.638671875,0.6904296875,0.701171875,0.66796875,0.6123046875,0.5693359375,0.5595703125,0.548828125,0.5009765625,0.4375,0.392578125,0.3916015625,0.4345703125,0.5,0.57421875,0.6572265625,0.7080078125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.6591796875,0.5908203125,0.5048828125,0.4443359375,0.4296875,0.419921875,0.384765625,0.345703125,0.3330078125,0.3603515625,0.419921875,0.4892578125,0.55859375,0.6181640625,0.6455078125,0.6328125,0.5966796875,0.5654296875,0.5595703125,0.5576171875,0.54296875,0.513671875,0.4765625,0.4443359375,0.4248046875,0.419921875,0.421875,0.4375,0.4677734375,0.505859375,0.5380859375,0.5556640625,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.5771484375,0.5751953125,0.5712890625,0.5673828125,0.5634765625,0.5615234375,0.5595703125,0.546875,0.4990234375,0.435546875,0.392578125,0.396484375,0.4423828125,0.509765625,0.587890625,0.685546875,0.7607421875,0.7724609375,0.71875,0.634765625,0.5595703125,0.4931640625,0.4443359375,0.4326171875,0.4619140625,0.5126953125,0.5517578125,0.5595703125,0.56640625,0.599609375,0.6396484375,0.654296875,0.62890625,0.5703125,0.5,0.4287109375,0.369140625,0.341796875,0.3564453125,0.396484375,0.4306640625,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.419921875,0.421875,0.4248046875,0.4296875,0.43359375,0.4375,0.439453125,0.453125,0.50390625,0.5732421875,0.6220703125,0.623046875,0.578125,0.509765625,0.44140625,0.3974609375,0.3984375,0.4453125,0.51171875,0.5595703125,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.4140625,0.384765625,0.3515625,0.34375,0.373046875,0.431640625,0.5,0.5771484375,0.67578125,0.7548828125,0.7734375,0.724609375,0.6435546875,0.5693359375,0.5,0.43359375,0.392578125,0.38671875,0.4091796875,0.43359375,0.439453125,0.44921875,0.4873046875,0.53515625,0.5595703125,0.5419921875,0.48828125,0.419921875,0.345703125,0.271484375,0.23828125,0.2763671875,0.3720703125,0.4794921875,0.5595703125,0.6162109375,0.626953125,0.587890625,0.5302734375,0.4921875,0.501953125,0.5595703125,0.615234375,0.6181640625,0.5673828125,0.49609375,0.4462890625,0.4521484375,0.509765625,0.5888671875,0.689453125,0.7685546875,0.78515625,0.7333984375,0.6474609375,0.5693359375,0.4990234375,0.4462890625,0.431640625,0.4609375,0.5146484375,0.5576171875,0.5693359375,0.5595703125,0.51171875,0.443359375,0.392578125,0.3857421875,0.4248046875,0.4892578125,0.55859375,0.619140625,0.6513671875,0.646484375,0.615234375,0.5869140625,0.5791015625,0.5791015625,0.578125,0.5771484375,0.576171875,0.576171875,0.5771484375,0.5791015625,0.5771484375,0.5576171875,0.521484375,0.4775390625,0.44140625,0.421875,0.419921875,0.4345703125,0.4931640625,0.5771484375,0.642578125,0.6591796875,0.6240234375,0.5595703125,0.4814453125,0.388671875,0.322265625,0.3212890625,0.38671875,0.4794921875,0.5595703125,0.6396484375,0.734375,0.8046875,0.8095703125,0.7470703125,0.6572265625,0.5791015625,0.5185546875,0.498046875,0.517578125,0.5556640625,0.5771484375,0.55859375,0.5,0.431640625,0.3740234375,0.3486328125,0.361328125,0.3994140625,0.431640625,0.439453125,0.4296875,0.3896484375,0.3369140625,0.3076171875,0.3203125,0.37109375,0.439453125,0.517578125,0.609375,0.6748046875,0.6748046875,0.609375,0.517578125,0.439453125,0.3740234375,0.3369140625,0.3486328125,0.4091796875,0.48828125,0.544921875,0.5595703125,0.548828125,0.494140625,0.416015625,0.353515625,0.3388671875,0.375,0.439453125,0.5078125,0.55859375,0.572265625,0.5419921875,0.490234375,0.44921875,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.587890625,0.6806640625,0.7470703125,0.748046875,0.6826171875,0.5888671875,0.509765625,0.4287109375,0.326171875,0.244140625,0.224609375,0.2734375,0.35546875,0.4296875,0.505859375,0.5966796875,0.66015625,0.6591796875,0.5927734375,0.4990234375,0.419921875,0.3505859375,0.2998046875,0.2900390625,0.32421875,0.3798828125,0.4208984375,0.4296875,0.4287109375,0.4287109375,0.4306640625,0.43359375,0.4375,0.439453125,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.43359375,0.40234375,0.3662109375,0.353515625,0.380859375,0.4404296875,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5,0.3984375,0.31640625,0.296875,0.3466796875,0.431640625,0.509765625,0.5693359375,0.5810546875,0.541015625,0.4794921875,0.4365234375,0.443359375,0.5,0.578125,0.6796875,0.7626953125,0.78515625,0.7392578125,0.65625,0.5791015625,0.505859375,0.43359375,0.384765625,0.373046875,0.3916015625,0.4130859375,0.419921875,0.419921875,0.4208984375,0.421875,0.4228515625,0.4228515625,0.421875,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4208984375,0.421875,0.4208984375,0.4189453125,0.41796875,0.41796875,0.419921875,0.4208984375,0.421875,0.4208984375,0.4189453125,0.41796875,0.41796875,0.419921875,0.43359375,0.4853515625,0.5576171875,0.6083984375,0.611328125,0.5673828125,0.5,0.421875,0.3359375,0.2841796875,0.302734375,0.3857421875,0.48828125,0.5693359375,0.6484375,0.740234375,0.8037109375,0.80078125,0.7314453125,0.6376953125,0.5595703125,0.48828125,0.4208984375,0.3779296875,0.3720703125,0.392578125,0.4150390625,0.419921875,0.41796875,0.4189453125,0.421875,0.4267578125,0.4326171875,0.4375,0.439453125,0.4404296875,0.439453125,0.435546875,0.4296875,0.423828125,0.4208984375,0.419921875,0.412109375,0.380859375,0.345703125,0.3349609375,0.36328125,0.421875,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.412109375,0.3798828125,0.34375,0.3349609375,0.3662109375,0.427734375,0.5,0.5673828125,0.609375,0.603515625,0.55078125,0.48046875,0.4296875,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6142578125,0.609375,0.5400390625,0.4443359375,0.3740234375,0.3662109375,0.419921875,0.486328125,0.5390625,0.556640625,0.5322265625,0.486328125,0.44921875,0.439453125,0.431640625,0.3974609375,0.357421875,0.341796875,0.3662109375,0.421875,0.4892578125,0.5673828125,0.6669921875,0.748046875,0.6953125,0.595703125,0.482421875,0.4033203125,0.376953125,0.3603515625,0.3251953125,0.2939453125,0.291015625,0.3251953125,0.384765625,0.4482421875,0.5087890625,0.5625,0.59375,0.595703125,0.5791015625,0.5654296875,0.5703125,0.576171875,0.5595703125,0.5146484375,0.4501953125,0.3857421875,0.3427734375,0.3251953125,0.3212890625,0.34375,0.3955078125,0.46484375,0.52734375,0.5625,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.662109375,0.6484375,0.630859375,0.6123046875,0.5947265625,0.5810546875,0.5703125,0.55078125,0.505859375,0.453125,0.4267578125,0.4423828125,0.490234375,0.55078125,0.6181640625,0.6953125,0.7490234375,0.7490234375,0.6982421875,0.6279296875,0.5703125,0.521484375,0.490234375,0.4892578125,0.5146484375,0.55078125,0.5732421875,0.5703125,0.568359375,0.59375,0.6298828125,0.6455078125,0.6240234375,0.5693359375,0.5,0.427734375,0.3671875,0.337890625,0.349609375,0.3876953125,0.4208984375,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.326171875,0.3330078125,0.3486328125,0.37109375,0.396484375,0.4169921875,0.4287109375,0.4521484375,0.515625,0.5986328125,0.6572265625,0.6630859375,0.619140625,0.55078125,0.484375,0.4462890625,0.45703125,0.509765625,0.5771484375,0.6201171875,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3330078125,0.33203125,0.3349609375,0.3544921875,0.39453125,0.447265625,0.5,0.55859375,0.640625,0.7158203125,0.748046875,0.7275390625,0.67578125,0.6220703125,0.5673828125,0.5068359375,0.4541015625,0.4248046875,0.419921875,0.4267578125,0.4287109375,0.435546875,0.4580078125,0.48046875,0.4794921875,0.4453125,0.3876953125,0.3251953125,0.2646484375,0.2197265625,0.224609375,0.2939453125,0.4033203125,0.505859375,0.5703125,0.6123046875,0.6201171875,0.591796875,0.548828125,0.51953125,0.52734375,0.5703125,0.6103515625,0.6103515625,0.5693359375,0.5166015625,0.486328125,0.4990234375,0.55078125,0.6220703125,0.7177734375,0.7978515625,0.8212890625,0.7783203125,0.6982421875,0.6220703125,0.55078125,0.4921875,0.470703125,0.4970703125,0.552734375,0.6015625,0.6220703125,0.62109375,0.5771484375,0.5029296875,0.4306640625,0.3935546875,0.4033203125,0.4482421875,0.5029296875,0.5673828125,0.626953125,0.6650390625,0.677734375,0.6748046875,0.673828125,0.671875,0.666015625,0.658203125,0.6533203125,0.6552734375,0.6630859375,0.673828125,0.673828125,0.6328125,0.5498046875,0.44921875,0.3662109375,0.3251953125,0.3251953125,0.349609375,0.4228515625,0.525390625,0.611328125,0.646484375,0.625,0.5703125,0.5,0.4140625,0.3486328125,0.3447265625,0.4033203125,0.4921875,0.5703125,0.650390625,0.7509765625,0.8330078125,0.8564453125,0.814453125,0.740234375,0.673828125,0.6171875,0.580078125,0.568359375,0.5703125,0.5673828125,0.544921875,0.5,0.4482421875,0.40234375,0.376953125,0.3798828125,0.40234375,0.423828125,0.4287109375,0.4208984375,0.384765625,0.3388671875,0.3134765625,0.32421875,0.369140625,0.4287109375,0.4970703125,0.578125,0.634765625,0.634765625,0.578125,0.4970703125,0.4287109375,0.37109375,0.337890625,0.349609375,0.408203125,0.4873046875,0.5478515625,0.5703125,0.568359375,0.5234375,0.4482421875,0.3798828125,0.3525390625,0.3740234375,0.4287109375,0.48828125,0.533203125,0.544921875,0.5185546875,0.4736328125,0.4375,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.62109375,0.70703125,0.7724609375,0.7763671875,0.7177734375,0.6298828125,0.55078125,0.470703125,0.3671875,0.27734375,0.240234375,0.263671875,0.322265625,0.376953125,0.435546875,0.5087890625,0.5595703125,0.5546875,0.4921875,0.4033203125,0.3251953125,0.2587890625,0.21875,0.224609375,0.2724609375,0.3359375,0.3759765625,0.376953125,0.3681640625,0.3671875,0.376953125,0.39453125,0.4140625,0.4267578125,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.43359375,0.419921875,0.4033203125,0.4052734375,0.4365234375,0.490234375,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.6005859375,0.5,0.4072265625,0.37109375,0.40234375,0.4755859375,0.55078125,0.6123046875,0.62890625,0.5927734375,0.52734375,0.4716796875,0.4609375,0.5,0.5634765625,0.6630859375,0.7646484375,0.8193359375,0.806640625,0.74609375,0.673828125,0.595703125,0.5009765625,0.41015625,0.3486328125,0.32421875,0.32421875,0.3251953125,0.3271484375,0.3330078125,0.3408203125,0.345703125,0.34375,0.3359375,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.333984375,0.3359375,0.330078125,0.3212890625,0.3154296875,0.3173828125,0.3251953125,0.333984375,0.3359375,0.330078125,0.3212890625,0.3154296875,0.3173828125,0.3251953125,0.349609375,0.419921875,0.5146484375,0.5859375,0.6044921875,0.56640625,0.5,0.4228515625,0.34375,0.3037109375,0.3359375,0.4296875,0.5390625,0.6220703125,0.69921875,0.7802734375,0.828125,0.8095703125,0.7333984375,0.640625,0.5703125,0.505859375,0.4375,0.3798828125,0.345703125,0.3349609375,0.3330078125,0.3251953125,0.31640625,0.3154296875,0.3291015625,0.3564453125,0.388671875,0.4150390625,0.4287109375,0.4365234375,0.431640625,0.41015625,0.37890625,0.34765625,0.3291015625,0.3251953125,0.3212890625,0.306640625,0.2958984375,0.306640625,0.34375,0.3955078125,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.3193359375,0.298828125,0.2841796875,0.2998046875,0.3525390625,0.42578125,0.5,0.5634765625,0.5888671875,0.5556640625,0.4755859375,0.384765625,0.3291015625,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.6171875,0.6025390625,0.521484375,0.4091796875,0.318359375,0.2900390625,0.3251953125,0.3779296875,0.427734375,0.4599609375,0.4658203125,0.451171875,0.43359375,0.4287109375,0.421875,0.39453125,0.361328125,0.3447265625,0.3583984375,0.3974609375,0.4482421875,0.5087890625,0.5966796875,0.6826171875,0.7255859375,0.619140625,0.49609375,0.404296875,0.3642578125,0.3330078125,0.291015625,0.2587890625,0.2587890625,0.2939453125,0.345703125,0.39453125,0.4375,0.47265625,0.4912109375,0.4970703125,0.498046875,0.5078125,0.5302734375,0.552734375,0.5546875,0.5185546875,0.447265625,0.3623046875,0.294921875,0.2587890625,0.2392578125,0.2529296875,0.30859375,0.3916015625,0.4716796875,0.51953125,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.712890625,0.68359375,0.6513671875,0.6181640625,0.5859375,0.556640625,0.5302734375,0.5,0.462890625,0.44140625,0.453125,0.4970703125,0.5546875,0.6044921875,0.6494140625,0.6845703125,0.6904296875,0.6591796875,0.60546875,0.556640625,0.5302734375,0.5146484375,0.5166015625,0.533203125,0.5517578125,0.5615234375,0.552734375,0.5302734375,0.513671875,0.5322265625,0.57421875,0.607421875,0.607421875,0.56640625,0.5,0.4287109375,0.373046875,0.3525390625,0.375,0.421875,0.4599609375,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.259765625,0.2705078125,0.2978515625,0.341796875,0.3935546875,0.4384765625,0.46875,0.5078125,0.5849609375,0.673828125,0.728515625,0.7265625,0.6748046875,0.6044921875,0.5390625,0.505859375,0.5185546875,0.568359375,0.6240234375,0.650390625,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.287109375,0.3251953125,0.369140625,0.4140625,0.451171875,0.4794921875,0.5,0.5234375,0.5654296875,0.61328125,0.6484375,0.6611328125,0.6533203125,0.634765625,0.6123046875,0.5791015625,0.5380859375,0.501953125,0.4794921875,0.470703125,0.46875,0.470703125,0.4716796875,0.4580078125,0.421875,0.3662109375,0.3076171875,0.2587890625,0.21875,0.20703125,0.2451171875,0.328125,0.42578125,0.4990234375,0.5302734375,0.5458984375,0.548828125,0.5380859375,0.521484375,0.5107421875,0.513671875,0.5302734375,0.5439453125,0.5400390625,0.5263671875,0.51953125,0.5302734375,0.5615234375,0.6044921875,0.6591796875,0.73828125,0.806640625,0.826171875,0.78515625,0.7099609375,0.634765625,0.5615234375,0.494140625,0.4609375,0.48046875,0.5380859375,0.599609375,0.634765625,0.65234375,0.6318359375,0.568359375,0.4853515625,0.416015625,0.384765625,0.39453125,0.4208984375,0.4765625,0.5576171875,0.640625,0.7041015625,0.734375,0.740234375,0.736328125,0.720703125,0.701171875,0.6904296875,0.6953125,0.71484375,0.740234375,0.7509765625,0.6962890625,0.57421875,0.4248046875,0.302734375,0.248046875,0.2587890625,0.296875,0.3759765625,0.474609375,0.5546875,0.5869140625,0.5712890625,0.5302734375,0.4755859375,0.4013671875,0.3388671875,0.328125,0.375,0.4541015625,0.5302734375,0.6103515625,0.71484375,0.8095703125,0.853515625,0.8388671875,0.7890625,0.740234375,0.693359375,0.6416015625,0.59375,0.5576171875,0.5341796875,0.517578125,0.5,0.48046875,0.462890625,0.4521484375,0.4521484375,0.4599609375,0.466796875,0.46875,0.462890625,0.4365234375,0.40234375,0.3837890625,0.3916015625,0.4248046875,0.46875,0.51953125,0.5791015625,0.62109375,0.62109375,0.5791015625,0.51953125,0.46875,0.4228515625,0.3818359375,0.3671875,0.3916015625,0.443359375,0.49609375,0.5302734375,0.5478515625,0.533203125,0.4912109375,0.4443359375,0.419921875,0.4296875,0.46875,0.513671875,0.546875,0.5546875,0.53515625,0.501953125,0.4755859375,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6591796875,0.7333984375,0.794921875,0.806640625,0.759765625,0.6806640625,0.6044921875,0.5263671875,0.43359375,0.3525390625,0.3115234375,0.314453125,0.3408203125,0.3642578125,0.3896484375,0.4326171875,0.4658203125,0.4609375,0.41015625,0.333984375,0.2587890625,0.1953125,0.1708984375,0.201171875,0.2705078125,0.341796875,0.376953125,0.3642578125,0.3408203125,0.333984375,0.3525390625,0.3916015625,0.4345703125,0.462890625,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.4912109375,0.5009765625,0.501953125,0.5078125,0.5263671875,0.5615234375,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.6826171875,0.591796875,0.5,0.4521484375,0.4697265625,0.53125,0.6044921875,0.6689453125,0.6982421875,0.673828125,0.607421875,0.5341796875,0.4931640625,0.5,0.533203125,0.6181640625,0.728515625,0.814453125,0.8408203125,0.806640625,0.740234375,0.6591796875,0.5478515625,0.427734375,0.3310546875,0.27734375,0.259765625,0.2587890625,0.2626953125,0.2783203125,0.2978515625,0.30859375,0.3037109375,0.2841796875,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.28125,0.28515625,0.2705078125,0.248046875,0.2333984375,0.2373046875,0.2587890625,0.28125,0.28515625,0.2705078125,0.248046875,0.2333984375,0.2373046875,0.2587890625,0.2998046875,0.390625,0.501953125,0.5849609375,0.60546875,0.5673828125,0.5,0.4228515625,0.345703125,0.30859375,0.3447265625,0.44140625,0.5517578125,0.634765625,0.708984375,0.7744140625,0.7978515625,0.7587890625,0.673828125,0.5859375,0.5302734375,0.4833984375,0.4326171875,0.3828125,0.341796875,0.310546875,0.2841796875,0.2587890625,0.234375,0.2255859375,0.248046875,0.3037109375,0.375,0.4345703125,0.46875,0.490234375,0.4833984375,0.44140625,0.375,0.30859375,0.267578125,0.2587890625,0.259765625,0.2646484375,0.28125,0.30859375,0.3427734375,0.373046875,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.2548828125,0.2421875,0.2421875,0.275390625,0.3427734375,0.423828125,0.5,0.5595703125,0.568359375,0.5078125,0.40234375,0.30078125,0.2490234375,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.5654296875,0.5546875,0.48828125,0.3896484375,0.298828125,0.2529296875,0.2587890625,0.2822265625,0.3212890625,0.3720703125,0.419921875,0.4521484375,0.466796875,0.46875,0.46484375,0.4443359375,0.4140625,0.3857421875,0.373046875,0.3779296875,0.39453125,0.4208984375,0.4755859375,0.546875,0.7294921875,0.6455078125,0.541015625,0.4501953125,0.39453125,0.345703125,0.2939453125,0.2587890625,0.2587890625,0.291015625,0.3330078125,0.3642578125,0.3857421875,0.3916015625,0.3857421875,0.3837890625,0.3955078125,0.4267578125,0.46875,0.5146484375,0.548828125,0.5439453125,0.48828125,0.3994140625,0.314453125,0.2587890625,0.2197265625,0.2119140625,0.2509765625,0.3251953125,0.40625,0.4580078125,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.6962890625,0.65625,0.62109375,0.587890625,0.552734375,0.513671875,0.46875,0.4248046875,0.396484375,0.40625,0.4580078125,0.533203125,0.599609375,0.634765625,0.654296875,0.642578125,0.595703125,0.533203125,0.4794921875,0.4580078125,0.46875,0.494140625,0.5341796875,0.5712890625,0.5830078125,0.5595703125,0.515625,0.46875,0.435546875,0.4482421875,0.5,0.5576171875,0.5849609375,0.5625,0.5,0.4306640625,0.3818359375,0.375,0.4140625,0.4736328125,0.51953125,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.2587890625,0.265625,0.2919921875,0.3447265625,0.4130859375,0.4794921875,0.5302734375,0.5859375,0.673828125,0.7587890625,0.7978515625,0.7744140625,0.708984375,0.634765625,0.5703125,0.541015625,0.5546875,0.5966796875,0.634765625,0.6396484375,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3115234375,0.384765625,0.4609375,0.513671875,0.529296875,0.5185546875,0.5,0.48046875,0.46875,0.474609375,0.501953125,0.5439453125,0.5810546875,0.6044921875,0.62109375,0.6259765625,0.61328125,0.5849609375,0.5546875,0.5341796875,0.5302734375,0.52734375,0.509765625,0.46875,0.408203125,0.3427734375,0.291015625,0.2587890625,0.2412109375,0.2578125,0.314453125,0.388671875,0.4521484375,0.4794921875,0.46875,0.453125,0.4501953125,0.4609375,0.4775390625,0.48828125,0.4853515625,0.46875,0.451171875,0.44140625,0.4560546875,0.49609375,0.552734375,0.6025390625,0.634765625,0.669921875,0.7275390625,0.7783203125,0.7900390625,0.75,0.6787109375,0.6044921875,0.5283203125,0.4501953125,0.40234375,0.4140625,0.4755859375,0.55078125,0.6044921875,0.6455078125,0.6611328125,0.6298828125,0.5546875,0.4638671875,0.39453125,0.3642578125,0.3544921875,0.3857421875,0.466796875,0.57421875,0.671875,0.728515625,0.740234375,0.7333984375,0.70703125,0.673828125,0.654296875,0.6630859375,0.6962890625,0.740234375,0.7666015625,0.71484375,0.58203125,0.4169921875,0.2841796875,0.232421875,0.2587890625,0.3115234375,0.3857421875,0.4609375,0.5078125,0.5166015625,0.49609375,0.46875,0.43359375,0.3720703125,0.314453125,0.294921875,0.328125,0.3955078125,0.46875,0.548828125,0.6494140625,0.7431640625,0.794921875,0.7978515625,0.76953125,0.740234375,0.7060546875,0.646484375,0.57421875,0.513671875,0.4833984375,0.4833984375,0.5,0.5185546875,0.5361328125,0.546875,0.546875,0.5390625,0.5322265625,0.5302734375,0.5263671875,0.5107421875,0.4912109375,0.48046875,0.4853515625,0.50390625,0.5302734375,0.5595703125,0.59375,0.6181640625,0.6181640625,0.59375,0.5595703125,0.5302734375,0.49609375,0.443359375,0.3916015625,0.3671875,0.3818359375,0.4228515625,0.46875,0.5107421875,0.5361328125,0.5380859375,0.5244140625,0.5087890625,0.5087890625,0.5302734375,0.5556640625,0.5751953125,0.580078125,0.568359375,0.548828125,0.533203125,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6708984375,0.7314453125,0.7900390625,0.8095703125,0.7763671875,0.7080078125,0.634765625,0.5625,0.4912109375,0.4384765625,0.4140625,0.41015625,0.408203125,0.39453125,0.3828125,0.39453125,0.4140625,0.416015625,0.38671875,0.3291015625,0.2587890625,0.1982421875,0.189453125,0.240234375,0.3251953125,0.400390625,0.42578125,0.39453125,0.353515625,0.3369140625,0.3583984375,0.4140625,0.4775390625,0.5205078125,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.572265625,0.603515625,0.615234375,0.61328125,0.607421875,0.61328125,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7021484375,0.6279296875,0.546875,0.5,0.5087890625,0.564453125,0.634765625,0.7041015625,0.7509765625,0.748046875,0.6904296875,0.603515625,0.53125,0.5,0.4970703125,0.5537109375,0.6572265625,0.7587890625,0.8134765625,0.8017578125,0.740234375,0.6591796875,0.5478515625,0.427734375,0.3310546875,0.27734375,0.259765625,0.2587890625,0.265625,0.2919921875,0.3251953125,0.3447265625,0.3359375,0.302734375,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.296875,0.3037109375,0.2783203125,0.240234375,0.21484375,0.220703125,0.2587890625,0.296875,0.3037109375,0.2783203125,0.240234375,0.21484375,0.220703125,0.2587890625,0.318359375,0.4228515625,0.5380859375,0.61328125,0.619140625,0.5703125,0.5,0.421875,0.3408203125,0.2978515625,0.3251953125,0.416015625,0.5224609375,0.6044921875,0.6748046875,0.7265625,0.728515625,0.673828125,0.5849609375,0.5078125,0.46875,0.4453125,0.4267578125,0.408203125,0.3828125,0.34765625,0.3046875,0.2587890625,0.21484375,0.1884765625,0.20703125,0.2783203125,0.380859375,0.4736328125,0.5302734375,0.5673828125,0.568359375,0.515625,0.4248046875,0.3310546875,0.271484375,0.2587890625,0.263671875,0.2880859375,0.3251953125,0.361328125,0.380859375,0.3798828125,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.2548828125,0.2421875,0.2421875,0.275390625,0.3427734375,0.423828125,0.5,0.5576171875,0.5546875,0.48046875,0.3671875,0.2685546875,0.23046875,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.4921875,0.4970703125,0.4697265625,0.4111328125,0.3408203125,0.2861328125,0.2587890625,0.2470703125,0.265625,0.3232421875,0.40234375,0.4765625,0.5205078125,0.5302734375,0.5283203125,0.51953125,0.4970703125,0.4609375,0.419921875,0.38671875,0.3642578125,0.3486328125,0.3525390625,0.388671875,0.7001953125,0.662109375,0.5927734375,0.5146484375,0.4482421875,0.384765625,0.3251953125,0.291015625,0.2939453125,0.3251953125,0.3603515625,0.376953125,0.3798828125,0.3583984375,0.326171875,0.3095703125,0.32421875,0.369140625,0.4287109375,0.4951171875,0.5625,0.5966796875,0.5693359375,0.4892578125,0.396484375,0.3251953125,0.2685546875,0.236328125,0.248046875,0.30078125,0.3701171875,0.41796875,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6162109375,0.578125,0.5576171875,0.544921875,0.5244140625,0.4853515625,0.4287109375,0.3720703125,0.3447265625,0.369140625,0.44140625,0.5322265625,0.5986328125,0.6220703125,0.6201171875,0.5751953125,0.49609375,0.4189453125,0.3779296875,0.3857421875,0.4287109375,0.4873046875,0.5595703125,0.615234375,0.619140625,0.5703125,0.49609375,0.4287109375,0.380859375,0.38671875,0.4443359375,0.51953125,0.5673828125,0.5595703125,0.5,0.431640625,0.3876953125,0.3896484375,0.439453125,0.5078125,0.55859375,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.3232421875,0.31640625,0.3251953125,0.3642578125,0.4296875,0.5048828125,0.5703125,0.640625,0.7333984375,0.8095703125,0.828125,0.7802734375,0.69921875,0.6220703125,0.55859375,0.533203125,0.5498046875,0.587890625,0.6142578125,0.6025390625,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.396484375,0.4921875,0.580078125,0.6220703125,0.60546875,0.5537109375,0.5,0.4443359375,0.3837890625,0.34765625,0.361328125,0.419921875,0.4931640625,0.55078125,0.6015625,0.640625,0.654296875,0.6376953125,0.6044921875,0.5771484375,0.5703125,0.5654296875,0.5419921875,0.4951171875,0.435546875,0.37890625,0.341796875,0.3251953125,0.3251953125,0.359375,0.4189453125,0.4716796875,0.4931640625,0.474609375,0.4287109375,0.38671875,0.37890625,0.4072265625,0.4501953125,0.4794921875,0.4716796875,0.4287109375,0.3828125,0.3623046875,0.388671875,0.4560546875,0.5390625,0.599609375,0.6220703125,0.6396484375,0.6806640625,0.720703125,0.7275390625,0.69140625,0.6240234375,0.55078125,0.47265625,0.384765625,0.326171875,0.330078125,0.39453125,0.4814453125,0.55078125,0.6142578125,0.6669921875,0.677734375,0.626953125,0.533203125,0.439453125,0.376953125,0.3349609375,0.3330078125,0.3896484375,0.490234375,0.59375,0.6591796875,0.673828125,0.6650390625,0.62890625,0.5830078125,0.5576171875,0.5693359375,0.61328125,0.673828125,0.716796875,0.68359375,0.5712890625,0.427734375,0.3154296875,0.2822265625,0.3251953125,0.3896484375,0.4521484375,0.4951171875,0.5,0.4755859375,0.4453125,0.4287109375,0.4091796875,0.359375,0.3046875,0.2783203125,0.2998046875,0.357421875,0.4287109375,0.505859375,0.59375,0.669921875,0.7080078125,0.70703125,0.6875,0.673828125,0.65234375,0.59375,0.5146484375,0.4521484375,0.4306640625,0.4521484375,0.5,0.55078125,0.5966796875,0.6220703125,0.619140625,0.5966796875,0.5751953125,0.5703125,0.568359375,0.5625,0.5546875,0.55078125,0.552734375,0.5595703125,0.5703125,0.58203125,0.5947265625,0.6044921875,0.6044921875,0.5947265625,0.58203125,0.5703125,0.5478515625,0.4873046875,0.408203125,0.349609375,0.337890625,0.37109375,0.4287109375,0.490234375,0.546875,0.5810546875,0.5888671875,0.576171875,0.5654296875,0.5703125,0.580078125,0.587890625,0.58984375,0.5849609375,0.5771484375,0.5712890625,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.6416015625,0.69140625,0.74609375,0.7724609375,0.7509765625,0.693359375,0.6220703125,0.5546875,0.5107421875,0.4970703125,0.5029296875,0.5078125,0.4912109375,0.4482421875,0.4052734375,0.39453125,0.412109375,0.431640625,0.4287109375,0.3916015625,0.3251953125,0.267578125,0.265625,0.3251953125,0.4140625,0.4833984375,0.4951171875,0.4482421875,0.390625,0.361328125,0.376953125,0.435546875,0.5078125,0.55859375,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.6298828125,0.6748046875,0.689453125,0.6728515625,0.640625,0.619140625,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.65234375,0.5966796875,0.529296875,0.490234375,0.5,0.5517578125,0.6220703125,0.6953125,0.7626953125,0.787109375,0.74609375,0.6552734375,0.5615234375,0.5,0.4638671875,0.4892578125,0.572265625,0.669921875,0.7333984375,0.732421875,0.673828125,0.595703125,0.5009765625,0.41015625,0.3486328125,0.32421875,0.32421875,0.3251953125,0.333984375,0.3701171875,0.416015625,0.44140625,0.4296875,0.3857421875,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.376953125,0.3857421875,0.3515625,0.2998046875,0.265625,0.2744140625,0.3251953125,0.376953125,0.3857421875,0.3515625,0.2998046875,0.265625,0.2744140625,0.3251953125,0.3994140625,0.5068359375,0.6103515625,0.6611328125,0.640625,0.57421875,0.5,0.4208984375,0.3330078125,0.2783203125,0.2919921875,0.3701171875,0.470703125,0.55078125,0.619140625,0.6630859375,0.6572265625,0.5986328125,0.515625,0.4521484375,0.4287109375,0.4248046875,0.4404296875,0.4609375,0.4638671875,0.4375,0.38671875,0.3251953125,0.2626953125,0.2119140625,0.2099609375,0.2744140625,0.3857421875,0.49609375,0.5703125,0.6240234375,0.6396484375,0.595703125,0.505859375,0.4052734375,0.33984375,0.3251953125,0.333984375,0.3701171875,0.4189453125,0.4541015625,0.45703125,0.42578125,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.3193359375,0.298828125,0.2841796875,0.2998046875,0.3525390625,0.42578125,0.5,0.556640625,0.552734375,0.4814453125,0.37890625,0.2978515625,0.2802734375,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.443359375,0.46875,0.4853515625,0.4755859375,0.4345703125,0.37890625,0.3251953125,0.2822265625,0.2744140625,0.3193359375,0.4052734375,0.498046875,0.5576171875,0.5703125,0.572265625,0.5791015625,0.57421875,0.544921875,0.4921875,0.431640625,0.376953125,0.3251953125,0.279296875,0.2705078125,0.65234375,0.6572265625,0.623046875,0.5595703125,0.4892578125,0.419921875,0.3603515625,0.3330078125,0.345703125,0.384765625,0.419921875,0.4296875,0.421875,0.3837890625,0.333984375,0.306640625,0.3203125,0.37109375,0.439453125,0.517578125,0.6064453125,0.6669921875,0.662109375,0.5927734375,0.498046875,0.419921875,0.3525390625,0.3037109375,0.294921875,0.330078125,0.38671875,0.4296875,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.517578125,0.490234375,0.498046875,0.5205078125,0.5283203125,0.5009765625,0.439453125,0.3740234375,0.337890625,0.3525390625,0.416015625,0.4970703125,0.5546875,0.5693359375,0.55859375,0.50390625,0.4248046875,0.3603515625,0.3427734375,0.3759765625,0.439453125,0.515625,0.6064453125,0.671875,0.671875,0.6083984375,0.517578125,0.439453125,0.3828125,0.380859375,0.4345703125,0.5107421875,0.5625,0.55859375,0.5,0.4306640625,0.3857421875,0.3857421875,0.4326171875,0.4990234375,0.5478515625,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.4130859375,0.3896484375,0.3681640625,0.3759765625,0.419921875,0.48828125,0.5595703125,0.6376953125,0.7314453125,0.80078125,0.8037109375,0.740234375,0.6484375,0.5693359375,0.5078125,0.4892578125,0.5146484375,0.55859375,0.5859375,0.5693359375,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.4990234375,0.599609375,0.681640625,0.7021484375,0.6552734375,0.57421875,0.5,0.423828125,0.3349609375,0.2734375,0.2763671875,0.341796875,0.43359375,0.509765625,0.5771484375,0.6328125,0.6572265625,0.6416015625,0.6015625,0.5673828125,0.5595703125,0.556640625,0.5400390625,0.5107421875,0.474609375,0.4423828125,0.4248046875,0.419921875,0.427734375,0.46875,0.5244140625,0.5595703125,0.5517578125,0.505859375,0.439453125,0.3828125,0.3720703125,0.4111328125,0.46875,0.5068359375,0.4970703125,0.439453125,0.3759765625,0.3408203125,0.35546875,0.41796875,0.498046875,0.5546875,0.5693359375,0.5791015625,0.615234375,0.6552734375,0.6689453125,0.6416015625,0.5810546875,0.509765625,0.4296875,0.3369140625,0.271484375,0.2724609375,0.3388671875,0.431640625,0.509765625,0.5849609375,0.6669921875,0.712890625,0.6904296875,0.6083984375,0.5078125,0.4296875,0.3671875,0.3349609375,0.35546875,0.423828125,0.5087890625,0.56640625,0.5791015625,0.5693359375,0.5283203125,0.4765625,0.447265625,0.4599609375,0.5107421875,0.5791015625,0.6337890625,0.625,0.5498046875,0.44921875,0.3740234375,0.365234375,0.419921875,0.48828125,0.54296875,0.5615234375,0.5380859375,0.490234375,0.4501953125,0.439453125,0.427734375,0.384765625,0.3310546875,0.3017578125,0.31640625,0.3701171875,0.439453125,0.5126953125,0.5830078125,0.62890625,0.6357421875,0.61328125,0.587890625,0.5791015625,0.56640625,0.515625,0.4462890625,0.3974609375,0.3935546875,0.4345703125,0.5,0.5673828125,0.625,0.650390625,0.6376953125,0.599609375,0.5673828125,0.5595703125,0.55859375,0.55859375,0.556640625,0.556640625,0.556640625,0.5576171875,0.5595703125,0.5615234375,0.5634765625,0.564453125,0.564453125,0.5634765625,0.5615234375,0.5595703125,0.544921875,0.48828125,0.4091796875,0.3486328125,0.3369140625,0.3740234375,0.439453125,0.5107421875,0.5751953125,0.61328125,0.615234375,0.58984375,0.564453125,0.5595703125,0.560546875,0.5625,0.5625,0.5615234375,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5810546875,0.6240234375,0.677734375,0.70703125,0.6923828125,0.6396484375,0.5693359375,0.5068359375,0.484375,0.5048828125,0.54296875,0.5654296875,0.5478515625,0.4892578125,0.431640625,0.4150390625,0.439453125,0.48046875,0.5029296875,0.4814453125,0.419921875,0.361328125,0.3583984375,0.4130859375,0.4912109375,0.546875,0.5458984375,0.4892578125,0.4228515625,0.3798828125,0.3828125,0.4306640625,0.4990234375,0.5478515625,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6279296875,0.6787109375,0.6923828125,0.6650390625,0.615234375,0.5771484375,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5673828125,0.5234375,0.4677734375,0.4345703125,0.447265625,0.5,0.5693359375,0.646484375,0.73046875,0.779296875,0.759765625,0.677734375,0.5771484375,0.5,0.4443359375,0.4462890625,0.5048828125,0.5849609375,0.640625,0.6376953125,0.5791015625,0.505859375,0.43359375,0.384765625,0.373046875,0.3916015625,0.4130859375,0.419921875,0.4296875,0.470703125,0.5224609375,0.5517578125,0.5390625,0.48828125,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.478515625,0.48828125,0.44921875,0.3896484375,0.3505859375,0.361328125,0.419921875,0.478515625,0.48828125,0.44921875,0.3896484375,0.3505859375,0.361328125,0.419921875,0.5,0.6025390625,0.6865234375,0.7080078125,0.66015625,0.5771484375,0.5,0.419921875,0.3271484375,0.2626953125,0.265625,0.333984375,0.4296875,0.509765625,0.578125,0.623046875,0.6220703125,0.5732421875,0.50390625,0.453125,0.439453125,0.447265625,0.484375,0.5322265625,0.556640625,0.541015625,0.48828125,0.419921875,0.3447265625,0.2705078125,0.236328125,0.2734375,0.369140625,0.478515625,0.5595703125,0.6240234375,0.658203125,0.640625,0.57421875,0.490234375,0.4326171875,0.419921875,0.4296875,0.470703125,0.5234375,0.5556640625,0.544921875,0.49609375,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.412109375,0.3798828125,0.34375,0.3349609375,0.3662109375,0.427734375,0.5,0.5576171875,0.5595703125,0.5029296875,0.421875,0.36328125,0.36328125,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.4501953125,0.4892578125,0.5361328125,0.55859375,0.5400390625,0.4873046875,0.419921875,0.3564453125,0.3232421875,0.341796875,0.408203125,0.490234375,0.546875,0.5595703125,0.5654296875,0.58984375,0.6123046875,0.6064453125,0.5654296875,0.4990234375,0.4296875,0.35546875,0.275390625,0.2294921875,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.5693359375,0.5263671875,0.470703125,0.4375,0.4482421875,0.5,0.5693359375,0.6484375,0.7421875,0.80859375,0.8095703125,0.74609375,0.6552734375,0.5791015625,0.5126953125,0.4599609375,0.4443359375,0.4697265625,0.5185546875,0.55859375,0.5693359375,0.5771484375,0.603515625,0.626953125,0.6220703125,0.5791015625,0.5107421875,0.439453125,0.3837890625,0.388671875,0.455078125,0.5478515625,0.6162109375,0.623046875,0.5693359375,0.5,0.43359375,0.3916015625,0.3837890625,0.4033203125,0.4248046875,0.4296875,0.421875,0.396484375,0.376953125,0.38671875,0.4345703125,0.505859375,0.5791015625,0.658203125,0.75,0.8125,0.8076171875,0.736328125,0.6396484375,0.5595703125,0.498046875,0.4794921875,0.505859375,0.5517578125,0.5810546875,0.5673828125,0.509765625,0.4404296875,0.3798828125,0.3486328125,0.35546875,0.3896484375,0.4208984375,0.4296875,0.4345703125,0.453125,0.4853515625,0.5234375,0.5556640625,0.57421875,0.5791015625,0.5673828125,0.5087890625,0.421875,0.3515625,0.330078125,0.36328125,0.4296875,0.509765625,0.603515625,0.671875,0.673828125,0.609375,0.517578125,0.439453125,0.3828125,0.3779296875,0.4296875,0.50390625,0.556640625,0.5546875,0.5,0.4248046875,0.34375,0.296875,0.3173828125,0.3994140625,0.5,0.5791015625,0.6552734375,0.7392578125,0.7880859375,0.7705078125,0.689453125,0.5888671875,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.57421875,0.6162109375,0.61328125,0.5654296875,0.4990234375,0.451171875,0.439453125,0.4423828125,0.4580078125,0.486328125,0.5185546875,0.544921875,0.55859375,0.5595703125,0.5673828125,0.60546875,0.65625,0.685546875,0.6748046875,0.6259765625,0.5595703125,0.5029296875,0.49609375,0.5400390625,0.603515625,0.646484375,0.6376953125,0.5791015625,0.5068359375,0.435546875,0.3857421875,0.373046875,0.3896484375,0.412109375,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.41015625,0.3193359375,0.2587890625,0.2646484375,0.3359375,0.4306640625,0.509765625,0.5888671875,0.6904296875,0.7724609375,0.7919921875,0.7421875,0.6572265625,0.5791015625,0.505859375,0.4326171875,0.3828125,0.3701171875,0.388671875,0.412109375,0.419921875,0.412109375,0.3720703125,0.3212890625,0.29296875,0.3076171875,0.3603515625,0.4296875,0.4931640625,0.521484375,0.5146484375,0.494140625,0.4873046875,0.515625,0.5791015625,0.6484375,0.69921875,0.708984375,0.6748046875,0.619140625,0.578125,0.5693359375,0.5615234375,0.521484375,0.46875,0.4365234375,0.4453125,0.4931640625,0.5595703125,0.623046875,0.6572265625,0.6416015625,0.5810546875,0.50390625,0.4501953125,0.439453125,0.4326171875,0.3994140625,0.359375,0.3447265625,0.3701171875,0.4287109375,0.5,0.5673828125,0.611328125,0.6083984375,0.5576171875,0.4853515625,0.43359375,0.419921875,0.4189453125,0.419921875,0.4228515625,0.4267578125,0.4296875,0.4306640625,0.4296875,0.4287109375,0.4296875,0.4326171875,0.4365234375,0.439453125,0.4404296875,0.439453125,0.4306640625,0.40234375,0.375,0.376953125,0.4189453125,0.486328125,0.5595703125,0.6259765625,0.66015625,0.640625,0.5732421875,0.4892578125,0.431640625,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.44921875,0.4873046875,0.53515625,0.5595703125,0.5419921875,0.48828125,0.419921875,0.3623046875,0.359375,0.4130859375,0.490234375,0.5458984375,0.544921875,0.4892578125,0.4345703125,0.4365234375,0.4951171875,0.5751953125,0.630859375,0.6279296875,0.5693359375,0.5078125,0.4873046875,0.509765625,0.548828125,0.5712890625,0.55078125,0.4892578125,0.41796875,0.359375,0.3330078125,0.349609375,0.392578125,0.4296875,0.439453125,0.431640625,0.3916015625,0.3388671875,0.306640625,0.3154296875,0.36328125,0.4296875,0.49609375,0.5478515625,0.5615234375,0.533203125,0.4814453125,0.4404296875,0.4296875,0.427734375,0.423828125,0.4208984375,0.41796875,0.4169921875,0.41796875,0.419921875,0.412109375,0.373046875,0.322265625,0.29296875,0.3046875,0.353515625,0.419921875,0.498046875,0.599609375,0.68359375,0.7060546875,0.6591796875,0.5771484375,0.5,0.4384765625,0.4189453125,0.443359375,0.4853515625,0.5107421875,0.4912109375,0.4296875,0.36328125,0.3291015625,0.349609375,0.4189453125,0.505859375,0.5654296875,0.5791015625,0.5888671875,0.626953125,0.6748046875,0.69921875,0.681640625,0.6279296875,0.5595703125,0.4912109375,0.44140625,0.4296875,0.4599609375,0.51171875,0.55078125,0.5595703125,0.548828125,0.5087890625,0.4609375,0.4375,0.4560546875,0.5107421875,0.5791015625,0.6376953125,0.6474609375,0.607421875,0.546875,0.5048828125,0.5126953125,0.5693359375,0.6259765625,0.6328125,0.58984375,0.52734375,0.48828125,0.4990234375,0.5595703125,0.6376953125,0.724609375,0.779296875,0.765625,0.6875,0.5888671875,0.509765625,0.4306640625,0.3359375,0.2646484375,0.2587890625,0.3193359375,0.41015625,0.4892578125,0.5615234375,0.623046875,0.6533203125,0.6416015625,0.603515625,0.5693359375,0.5595703125,0.5673828125,0.6083984375,0.6640625,0.6982421875,0.69140625,0.6455078125,0.5791015625,0.4990234375,0.3896484375,0.2900390625,0.2490234375,0.2802734375,0.353515625,0.4296875,0.5029296875,0.5732421875,0.6201171875,0.62890625,0.609375,0.5859375,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.5,0.447265625,0.4326171875,0.4609375,0.51171875,0.55078125,0.5595703125,0.546875,0.4990234375,0.43359375,0.3896484375,0.390625,0.4345703125,0.5,0.55859375,0.5771484375,0.5537109375,0.5146484375,0.4921875,0.5107421875,0.5693359375,0.6357421875,0.68359375,0.6923828125,0.66015625,0.607421875,0.5673828125,0.5595703125,0.5615234375,0.5634765625,0.564453125,0.564453125,0.5634765625,0.5615234375,0.5595703125,0.5673828125,0.607421875,0.66015625,0.6923828125,0.68359375,0.6357421875,0.5693359375,0.5,0.43359375,0.392578125,0.38671875,0.4091796875,0.43359375,0.439453125,0.453125,0.509765625,0.5927734375,0.6572265625,0.6728515625,0.6357421875,0.5693359375,0.48828125,0.3876953125,0.3095703125,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.662109375,0.6142578125,0.548828125,0.5048828125,0.5068359375,0.552734375,0.6220703125,0.7001953125,0.7880859375,0.8505859375,0.85546875,0.8046875,0.7314453125,0.673828125,0.62109375,0.5712890625,0.54296875,0.546875,0.5751953125,0.60546875,0.6220703125,0.6357421875,0.6552734375,0.66015625,0.630859375,0.5693359375,0.494140625,0.4287109375,0.380859375,0.388671875,0.458984375,0.5576171875,0.63671875,0.658203125,0.6220703125,0.568359375,0.5068359375,0.451171875,0.412109375,0.3935546875,0.3857421875,0.376953125,0.3642578125,0.3505859375,0.361328125,0.4140625,0.5009765625,0.595703125,0.673828125,0.7509765625,0.83203125,0.8759765625,0.8486328125,0.7587890625,0.65234375,0.5703125,0.5068359375,0.4814453125,0.501953125,0.548828125,0.5888671875,0.5908203125,0.55078125,0.49609375,0.431640625,0.3759765625,0.3466796875,0.34765625,0.3642578125,0.376953125,0.392578125,0.4306640625,0.490234375,0.560546875,0.6201171875,0.658203125,0.673828125,0.6669921875,0.5966796875,0.478515625,0.3662109375,0.3056640625,0.3154296875,0.376953125,0.45703125,0.55078125,0.6220703125,0.630859375,0.578125,0.4970703125,0.4287109375,0.3779296875,0.37109375,0.4140625,0.4794921875,0.5322265625,0.5390625,0.5,0.4453125,0.3935546875,0.376953125,0.4189453125,0.5068359375,0.6025390625,0.673828125,0.73828125,0.8046875,0.833984375,0.8017578125,0.7177734375,0.6220703125,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.59765625,0.6201171875,0.6025390625,0.548828125,0.4833984375,0.4384765625,0.4287109375,0.43359375,0.45703125,0.49609375,0.5380859375,0.5673828125,0.5771484375,0.5703125,0.5673828125,0.5888671875,0.625,0.6513671875,0.6494140625,0.6181640625,0.5703125,0.53125,0.5419921875,0.6015625,0.6767578125,0.7265625,0.7236328125,0.673828125,0.6044921875,0.5107421875,0.4140625,0.34375,0.314453125,0.3154296875,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.3720703125,0.296875,0.2607421875,0.2919921875,0.3798828125,0.4794921875,0.55078125,0.6240234375,0.724609375,0.8173828125,0.853515625,0.822265625,0.7490234375,0.673828125,0.59375,0.4931640625,0.39453125,0.3291015625,0.306640625,0.3134765625,0.3251953125,0.3271484375,0.298828125,0.2587890625,0.23828125,0.2548828125,0.3076171875,0.376953125,0.4443359375,0.490234375,0.5166015625,0.5341796875,0.5595703125,0.6064453125,0.673828125,0.740234375,0.7802734375,0.7744140625,0.7265625,0.6630859375,0.623046875,0.6220703125,0.623046875,0.5947265625,0.5478515625,0.5078125,0.498046875,0.5234375,0.5703125,0.615234375,0.62890625,0.599609375,0.5361328125,0.46875,0.4296875,0.4287109375,0.4306640625,0.4052734375,0.369140625,0.353515625,0.375,0.4296875,0.5,0.56640625,0.6044921875,0.5859375,0.5146484375,0.419921875,0.349609375,0.3251953125,0.318359375,0.3232421875,0.33984375,0.3623046875,0.3798828125,0.384765625,0.376953125,0.3701171875,0.375,0.3916015625,0.4140625,0.431640625,0.4365234375,0.4287109375,0.412109375,0.3798828125,0.3564453125,0.3671875,0.419921875,0.4951171875,0.5703125,0.6328125,0.6494140625,0.6005859375,0.5009765625,0.39453125,0.3310546875,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.435546875,0.4580078125,0.48046875,0.4794921875,0.4453125,0.3876953125,0.3251953125,0.2763671875,0.275390625,0.3291015625,0.4091796875,0.47265625,0.486328125,0.4482421875,0.412109375,0.4375,0.5205078125,0.6181640625,0.681640625,0.6806640625,0.6220703125,0.5576171875,0.5263671875,0.52734375,0.5419921875,0.5439453125,0.51171875,0.4482421875,0.3759765625,0.3154296875,0.2900390625,0.3115234375,0.3623046875,0.4091796875,0.4287109375,0.4306640625,0.40234375,0.3544921875,0.3154296875,0.3056640625,0.330078125,0.376953125,0.4287109375,0.4716796875,0.4892578125,0.4716796875,0.431640625,0.39453125,0.376953125,0.3642578125,0.3447265625,0.3232421875,0.3095703125,0.3076171875,0.3154296875,0.3251953125,0.3291015625,0.306640625,0.2705078125,0.244140625,0.24609375,0.27734375,0.3251953125,0.3896484375,0.4892578125,0.5908203125,0.6455078125,0.6328125,0.572265625,0.5,0.4365234375,0.4111328125,0.423828125,0.4521484375,0.4658203125,0.4404296875,0.376953125,0.314453125,0.2978515625,0.3505859375,0.458984375,0.5791015625,0.65625,0.673828125,0.6796875,0.7021484375,0.7255859375,0.7236328125,0.689453125,0.6318359375,0.5703125,0.51171875,0.47265625,0.4697265625,0.5,0.5439453125,0.5712890625,0.5703125,0.5537109375,0.5234375,0.4990234375,0.50390625,0.546875,0.609375,0.673828125,0.724609375,0.7333984375,0.6953125,0.634765625,0.5869140625,0.58203125,0.6220703125,0.66015625,0.6494140625,0.59375,0.5283203125,0.4921875,0.5087890625,0.5703125,0.6474609375,0.7333984375,0.7880859375,0.779296875,0.7099609375,0.62109375,0.55078125,0.4794921875,0.3798828125,0.2919921875,0.2607421875,0.296875,0.3720703125,0.4482421875,0.521484375,0.5947265625,0.6435546875,0.6494140625,0.6220703125,0.5869140625,0.5703125,0.5693359375,0.6044921875,0.6630859375,0.716796875,0.7373046875,0.71875,0.673828125,0.607421875,0.4921875,0.36328125,0.2763671875,0.26171875,0.3076171875,0.376953125,0.4541015625,0.5419921875,0.6220703125,0.669921875,0.6826171875,0.6767578125,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.5517578125,0.5,0.482421875,0.50390625,0.5439453125,0.5712890625,0.5703125,0.55078125,0.505859375,0.4501953125,0.4140625,0.4150390625,0.4501953125,0.5,0.544921875,0.5673828125,0.56640625,0.5556640625,0.5537109375,0.576171875,0.6220703125,0.6689453125,0.693359375,0.68359375,0.64453125,0.5966796875,0.568359375,0.5703125,0.58203125,0.5947265625,0.6044921875,0.6044921875,0.5947265625,0.58203125,0.5703125,0.568359375,0.5966796875,0.64453125,0.68359375,0.693359375,0.6689453125,0.6220703125,0.5673828125,0.5068359375,0.4541015625,0.4248046875,0.419921875,0.4267578125,0.4287109375,0.443359375,0.5087890625,0.60546875,0.6865234375,0.7158203125,0.6865234375,0.6220703125,0.5419921875,0.4453125,0.3701171875,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.7275390625,0.6728515625,0.5966796875,0.5380859375,0.5283203125,0.5673828125,0.634765625,0.7099609375,0.7861328125,0.8369140625,0.8427734375,0.80859375,0.765625,0.740234375,0.7158203125,0.673828125,0.626953125,0.595703125,0.591796875,0.609375,0.634765625,0.6630859375,0.6884765625,0.6904296875,0.654296875,0.58984375,0.5205078125,0.46875,0.431640625,0.4296875,0.47265625,0.54296875,0.6103515625,0.6435546875,0.634765625,0.6142578125,0.58203125,0.5380859375,0.4853515625,0.4345703125,0.3935546875,0.3642578125,0.3369140625,0.322265625,0.34765625,0.427734375,0.544921875,0.658203125,0.740234375,0.814453125,0.8837890625,0.9033203125,0.84765625,0.734375,0.6142578125,0.5302734375,0.46484375,0.4326171875,0.44921875,0.5078125,0.57421875,0.611328125,0.6044921875,0.5771484375,0.5185546875,0.44140625,0.375,0.33984375,0.341796875,0.3642578125,0.39453125,0.4443359375,0.513671875,0.5908203125,0.66015625,0.708984375,0.740234375,0.7470703125,0.6787109375,0.546875,0.4052734375,0.3154296875,0.306640625,0.3642578125,0.4423828125,0.5341796875,0.6044921875,0.62109375,0.5830078125,0.5205078125,0.46875,0.4287109375,0.41015625,0.4228515625,0.4580078125,0.4951171875,0.5107421875,0.5,0.48046875,0.4697265625,0.4853515625,0.5380859375,0.6142578125,0.6875,0.740234375,0.787109375,0.830078125,0.8427734375,0.806640625,0.734375,0.658203125,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.6201171875,0.6171875,0.5908203125,0.546875,0.501953125,0.474609375,0.46875,0.474609375,0.4970703125,0.5302734375,0.5576171875,0.56640625,0.5537109375,0.5302734375,0.5068359375,0.4990234375,0.5078125,0.52734375,0.54296875,0.544921875,0.5302734375,0.5224609375,0.560546875,0.6376953125,0.720703125,0.7734375,0.7763671875,0.740234375,0.6806640625,0.57421875,0.4384765625,0.3193359375,0.2509765625,0.23828125,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.3232421875,0.26953125,0.26953125,0.3369140625,0.4453125,0.5458984375,0.6044921875,0.662109375,0.7529296875,0.8447265625,0.892578125,0.875,0.8134765625,0.740234375,0.6552734375,0.529296875,0.388671875,0.28125,0.232421875,0.234375,0.2587890625,0.27734375,0.267578125,0.2421875,0.228515625,0.24609375,0.2958984375,0.3642578125,0.4326171875,0.4892578125,0.533203125,0.5712890625,0.615234375,0.671875,0.740234375,0.8037109375,0.828125,0.7978515625,0.728515625,0.6572265625,0.6220703125,0.634765625,0.6552734375,0.6513671875,0.6181640625,0.5712890625,0.5322265625,0.517578125,0.5302734375,0.54296875,0.5341796875,0.5048828125,0.4697265625,0.4462890625,0.447265625,0.46875,0.4853515625,0.466796875,0.4248046875,0.3916015625,0.3916015625,0.4326171875,0.5,0.5673828125,0.60546875,0.5849609375,0.501953125,0.390625,0.2998046875,0.2587890625,0.2392578125,0.248046875,0.2861328125,0.3369140625,0.375,0.3837890625,0.3642578125,0.3447265625,0.353515625,0.3916015625,0.44140625,0.4794921875,0.48828125,0.46875,0.4345703125,0.380859375,0.3369140625,0.3330078125,0.3798828125,0.455078125,0.5302734375,0.58984375,0.59375,0.52734375,0.4140625,0.3046875,0.25,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.470703125,0.4716796875,0.4580078125,0.421875,0.3662109375,0.3076171875,0.2587890625,0.220703125,0.21484375,0.2509765625,0.3134765625,0.3740234375,0.4033203125,0.39453125,0.3916015625,0.4482421875,0.5517578125,0.654296875,0.708984375,0.6962890625,0.634765625,0.5693359375,0.529296875,0.5166015625,0.513671875,0.5,0.4599609375,0.39453125,0.322265625,0.263671875,0.248046875,0.287109375,0.361328125,0.431640625,0.46875,0.490234375,0.4853515625,0.4521484375,0.4052734375,0.3662109375,0.3515625,0.3642578125,0.3857421875,0.4150390625,0.4384765625,0.44140625,0.4228515625,0.392578125,0.3642578125,0.33203125,0.28515625,0.2373046875,0.208984375,0.2099609375,0.232421875,0.2587890625,0.2822265625,0.2900390625,0.28125,0.26171875,0.24609375,0.244140625,0.2587890625,0.29296875,0.3779296875,0.48828125,0.57421875,0.6005859375,0.56640625,0.5,0.4365234375,0.4091796875,0.4189453125,0.4443359375,0.4541015625,0.4267578125,0.3642578125,0.302734375,0.2958984375,0.3671875,0.4970703125,0.6337890625,0.7216796875,0.740234375,0.7412109375,0.7421875,0.7294921875,0.6923828125,0.6376953125,0.5791015625,0.5302734375,0.4892578125,0.4716796875,0.482421875,0.513671875,0.5419921875,0.548828125,0.5302734375,0.5029296875,0.482421875,0.4912109375,0.5380859375,0.61328125,0.6875,0.740234375,0.779296875,0.7880859375,0.7587890625,0.7041015625,0.650390625,0.625,0.634765625,0.640625,0.6005859375,0.52734375,0.4609375,0.4365234375,0.46484375,0.5302734375,0.607421875,0.6953125,0.7587890625,0.767578125,0.72265625,0.6572265625,0.6044921875,0.5458984375,0.4453125,0.3369140625,0.26953125,0.26953125,0.3232421875,0.39453125,0.470703125,0.5556640625,0.6181640625,0.634765625,0.6064453125,0.5625,0.5302734375,0.51171875,0.529296875,0.5849609375,0.66015625,0.72265625,0.75,0.740234375,0.703125,0.6015625,0.4609375,0.3388671875,0.2822265625,0.30078125,0.3642578125,0.4423828125,0.541015625,0.6376953125,0.70703125,0.7373046875,0.7412109375,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.56640625,0.5166015625,0.5,0.513671875,0.5380859375,0.5478515625,0.5302734375,0.5009765625,0.466796875,0.44140625,0.4365234375,0.4521484375,0.478515625,0.5,0.5185546875,0.5380859375,0.5576171875,0.5771484375,0.5966796875,0.6162109375,0.634765625,0.6474609375,0.6328125,0.59375,0.546875,0.513671875,0.5087890625,0.5302734375,0.5595703125,0.59375,0.6181640625,0.6181640625,0.59375,0.5595703125,0.5302734375,0.5087890625,0.513671875,0.546875,0.59375,0.6328125,0.6474609375,0.634765625,0.6123046875,0.5791015625,0.5380859375,0.501953125,0.4794921875,0.470703125,0.46875,0.4833984375,0.544921875,0.6357421875,0.708984375,0.7333984375,0.701171875,0.634765625,0.55859375,0.4755859375,0.421875,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.7265625,0.6689453125,0.5849609375,0.5185546875,0.501953125,0.5380859375,0.6044921875,0.6748046875,0.732421875,0.76171875,0.759765625,0.740234375,0.728515625,0.740234375,0.7490234375,0.7197265625,0.6591796875,0.5966796875,0.560546875,0.56640625,0.6044921875,0.650390625,0.6904296875,0.701171875,0.673828125,0.6181640625,0.5634765625,0.5302734375,0.5029296875,0.482421875,0.4794921875,0.5029296875,0.54296875,0.5810546875,0.6044921875,0.6240234375,0.638671875,0.6298828125,0.5849609375,0.515625,0.4462890625,0.39453125,0.3486328125,0.3154296875,0.3310546875,0.4111328125,0.53515625,0.65625,0.740234375,0.8134765625,0.875,0.880859375,0.8095703125,0.6826171875,0.5556640625,0.46875,0.400390625,0.357421875,0.3671875,0.4326171875,0.52734375,0.6025390625,0.634765625,0.6416015625,0.599609375,0.515625,0.4248046875,0.365234375,0.3583984375,0.39453125,0.4404296875,0.4892578125,0.541015625,0.59375,0.6455078125,0.6943359375,0.740234375,0.7666015625,0.7158203125,0.59375,0.4521484375,0.3544921875,0.3388671875,0.39453125,0.470703125,0.5556640625,0.6181640625,0.634765625,0.6064453125,0.5625,0.5302734375,0.5009765625,0.466796875,0.44140625,0.4365234375,0.4521484375,0.478515625,0.5,0.51953125,0.5478515625,0.5849609375,0.6298828125,0.673828125,0.7119140625,0.740234375,0.7666015625,0.7890625,0.7900390625,0.76171875,0.7138671875,0.6669921875,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.6142578125,0.587890625,0.560546875,0.541015625,0.53125,0.529296875,0.5302734375,0.53515625,0.5537109375,0.57421875,0.5771484375,0.5556640625,0.5146484375,0.46875,0.4228515625,0.3779296875,0.35546875,0.3671875,0.404296875,0.4443359375,0.46875,0.498046875,0.5595703125,0.6435546875,0.7177734375,0.759765625,0.76171875,0.740234375,0.697265625,0.5927734375,0.447265625,0.3115234375,0.232421875,0.22265625,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.296875,0.26171875,0.2900390625,0.3798828125,0.4990234375,0.5927734375,0.634765625,0.6728515625,0.7470703125,0.828125,0.8759765625,0.8662109375,0.8115234375,0.740234375,0.65234375,0.515625,0.361328125,0.2451171875,0.19921875,0.2158203125,0.2587890625,0.2958984375,0.3037109375,0.2890625,0.275390625,0.28515625,0.328125,0.39453125,0.4619140625,0.5146484375,0.5517578125,0.5830078125,0.619140625,0.671875,0.740234375,0.80078125,0.8095703125,0.7587890625,0.673828125,0.5986328125,0.5732421875,0.6044921875,0.6484375,0.67578125,0.66796875,0.62109375,0.5537109375,0.4970703125,0.46875,0.4462890625,0.4130859375,0.3896484375,0.39453125,0.4306640625,0.4814453125,0.5302734375,0.5634765625,0.55078125,0.4990234375,0.44140625,0.4140625,0.4365234375,0.5,0.5703125,0.619140625,0.61328125,0.5380859375,0.4228515625,0.318359375,0.2587890625,0.224609375,0.234375,0.2900390625,0.36328125,0.4189453125,0.4287109375,0.39453125,0.359375,0.369140625,0.4248046875,0.4990234375,0.5546875,0.564453125,0.5302734375,0.474609375,0.392578125,0.31640625,0.2900390625,0.3232421875,0.39453125,0.46875,0.52734375,0.5283203125,0.4609375,0.35546875,0.263671875,0.2294921875,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.52734375,0.509765625,0.46875,0.408203125,0.3427734375,0.291015625,0.2587890625,0.2333984375,0.2158203125,0.2197265625,0.2509765625,0.2978515625,0.33984375,0.3642578125,0.3984375,0.482421875,0.59375,0.6796875,0.7060546875,0.671875,0.6044921875,0.5390625,0.4990234375,0.4853515625,0.482421875,0.4697265625,0.4296875,0.3642578125,0.2919921875,0.2333984375,0.2236328125,0.2783203125,0.376953125,0.4716796875,0.5302734375,0.5732421875,0.6015625,0.59375,0.546875,0.478515625,0.421875,0.39453125,0.3818359375,0.39453125,0.4248046875,0.4521484375,0.4580078125,0.435546875,0.39453125,0.3408203125,0.2646484375,0.1923828125,0.15625,0.1689453125,0.2119140625,0.2587890625,0.3056640625,0.349609375,0.3720703125,0.361328125,0.32421875,0.283203125,0.2587890625,0.255859375,0.3134765625,0.4169921875,0.5185546875,0.5732421875,0.5615234375,0.5,0.4375,0.4140625,0.4306640625,0.4638671875,0.48046875,0.45703125,0.39453125,0.3330078125,0.322265625,0.3857421875,0.5078125,0.638671875,0.7216796875,0.740234375,0.7373046875,0.7197265625,0.6787109375,0.619140625,0.5537109375,0.5009765625,0.46875,0.4501953125,0.45703125,0.4853515625,0.5166015625,0.52734375,0.509765625,0.46875,0.427734375,0.412109375,0.4443359375,0.5244140625,0.623046875,0.7021484375,0.740234375,0.765625,0.779296875,0.767578125,0.728515625,0.67578125,0.6298828125,0.6044921875,0.5732421875,0.5009765625,0.4140625,0.35546875,0.3525390625,0.400390625,0.46875,0.546875,0.634765625,0.7041015625,0.728515625,0.7080078125,0.6669921875,0.634765625,0.5927734375,0.4990234375,0.3798828125,0.2900390625,0.26171875,0.296875,0.3642578125,0.4423828125,0.5341796875,0.6044921875,0.62109375,0.5830078125,0.5205078125,0.46875,0.4287109375,0.4169921875,0.455078125,0.5380859375,0.6357421875,0.708984375,0.740234375,0.740234375,0.6708984375,0.5439453125,0.4140625,0.3359375,0.3349609375,0.39453125,0.47265625,0.56640625,0.6572265625,0.7177734375,0.7421875,0.7421875,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.5380859375,0.4951171875,0.4853515625,0.5,0.5146484375,0.5068359375,0.46875,0.4287109375,0.41015625,0.4228515625,0.4580078125,0.4951171875,0.5107421875,0.5,0.486328125,0.49609375,0.5302734375,0.57421875,0.6083984375,0.6181640625,0.6044921875,0.5771484375,0.5205078125,0.4521484375,0.4052734375,0.3974609375,0.42578125,0.46875,0.51953125,0.5791015625,0.62109375,0.62109375,0.5791015625,0.51953125,0.46875,0.42578125,0.3974609375,0.4052734375,0.4521484375,0.5205078125,0.5771484375,0.6044921875,0.62109375,0.6259765625,0.61328125,0.5849609375,0.5546875,0.5341796875,0.5302734375,0.5419921875,0.5927734375,0.662109375,0.712890625,0.7158203125,0.6728515625,0.6044921875,0.5322265625,0.4677734375,0.44140625,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.66015625,0.6044921875,0.5234375,0.4609375,0.4462890625,0.484375,0.55078125,0.6171875,0.654296875,0.6572265625,0.6376953125,0.6201171875,0.630859375,0.673828125,0.7119140625,0.6982421875,0.634765625,0.5546875,0.5009765625,0.5009765625,0.55078125,0.6123046875,0.666015625,0.689453125,0.6728515625,0.62890625,0.587890625,0.5703125,0.552734375,0.5126953125,0.46875,0.4462890625,0.4599609375,0.5009765625,0.55078125,0.6064453125,0.6669921875,0.69921875,0.6767578125,0.6044921875,0.5166015625,0.4482421875,0.3837890625,0.32421875,0.3095703125,0.365234375,0.474609375,0.58984375,0.673828125,0.7470703125,0.8115234375,0.82421875,0.759765625,0.638671875,0.5146484375,0.4287109375,0.3564453125,0.2978515625,0.2900390625,0.349609375,0.455078125,0.5576171875,0.6220703125,0.6591796875,0.6396484375,0.564453125,0.470703125,0.4052734375,0.3994140625,0.4482421875,0.50390625,0.541015625,0.556640625,0.564453125,0.580078125,0.6171875,0.673828125,0.7177734375,0.693359375,0.6015625,0.4853515625,0.40234375,0.3916015625,0.4482421875,0.521484375,0.5947265625,0.6435546875,0.6494140625,0.6220703125,0.5869140625,0.5703125,0.55078125,0.505859375,0.4501953125,0.4140625,0.4150390625,0.4501953125,0.5,0.5517578125,0.6044921875,0.64453125,0.6640625,0.6669921875,0.666015625,0.673828125,0.68359375,0.69140625,0.689453125,0.67578125,0.654296875,0.634765625,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.5712890625,0.52734375,0.5068359375,0.5146484375,0.541015625,0.564453125,0.5703125,0.5751953125,0.59375,0.6083984375,0.5966796875,0.5537109375,0.4921875,0.4287109375,0.3623046875,0.2880859375,0.23828125,0.2431640625,0.2978515625,0.37109375,0.4287109375,0.4853515625,0.55859375,0.6298828125,0.677734375,0.6923828125,0.6845703125,0.673828125,0.646484375,0.5615234375,0.435546875,0.322265625,0.263671875,0.2724609375,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.3115234375,0.283203125,0.31640625,0.4072265625,0.5166015625,0.595703125,0.6220703125,0.642578125,0.6982421875,0.765625,0.8046875,0.7958984375,0.7431640625,0.673828125,0.5869140625,0.45703125,0.3203125,0.232421875,0.2197265625,0.263671875,0.3251953125,0.3779296875,0.396484375,0.380859375,0.357421875,0.3525390625,0.3837890625,0.4482421875,0.5126953125,0.55078125,0.5615234375,0.5595703125,0.5703125,0.6083984375,0.673828125,0.7314453125,0.7333984375,0.673828125,0.5849609375,0.515625,0.50390625,0.55078125,0.615234375,0.6748046875,0.697265625,0.66015625,0.578125,0.490234375,0.4287109375,0.3740234375,0.318359375,0.294921875,0.3271484375,0.408203125,0.5,0.5703125,0.6181640625,0.6123046875,0.5546875,0.4794921875,0.431640625,0.439453125,0.5,0.57421875,0.640625,0.6611328125,0.6103515625,0.5068359375,0.3994140625,0.3251953125,0.27734375,0.283203125,0.3447265625,0.4287109375,0.490234375,0.49609375,0.4482421875,0.3994140625,0.4052734375,0.466796875,0.55078125,0.6123046875,0.6181640625,0.5703125,0.4970703125,0.3935546875,0.296875,0.255859375,0.283203125,0.353515625,0.4287109375,0.48828125,0.4921875,0.4365234375,0.3525390625,0.2880859375,0.2783203125,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5654296875,0.5419921875,0.4951171875,0.435546875,0.37890625,0.341796875,0.3251953125,0.3095703125,0.2783203125,0.25,0.2470703125,0.275390625,0.3251953125,0.376953125,0.4404296875,0.541015625,0.642578125,0.697265625,0.6845703125,0.6240234375,0.55078125,0.4873046875,0.455078125,0.45703125,0.4716796875,0.47265625,0.44140625,0.376953125,0.3037109375,0.2392578125,0.22265625,0.2783203125,0.3857421875,0.49609375,0.5703125,0.6337890625,0.693359375,0.7158203125,0.6787109375,0.5966796875,0.5087890625,0.4482421875,0.4072265625,0.4052734375,0.44140625,0.4892578125,0.515625,0.5,0.4482421875,0.376953125,0.28125,0.197265625,0.1650390625,0.1943359375,0.2607421875,0.3251953125,0.392578125,0.466796875,0.5166015625,0.51171875,0.45703125,0.3837890625,0.3251953125,0.2900390625,0.3154296875,0.3984375,0.49609375,0.5595703125,0.55859375,0.5,0.4384765625,0.421875,0.4501953125,0.4970703125,0.525390625,0.5087890625,0.4482421875,0.3837890625,0.3583984375,0.3955078125,0.4853515625,0.5888671875,0.658203125,0.673828125,0.6689453125,0.6455078125,0.5986328125,0.5380859375,0.482421875,0.4443359375,0.4287109375,0.427734375,0.455078125,0.4990234375,0.529296875,0.5263671875,0.4873046875,0.4287109375,0.3740234375,0.3525390625,0.3876953125,0.4736328125,0.576171875,0.6494140625,0.673828125,0.6875,0.7099609375,0.72265625,0.7080078125,0.6630859375,0.60546875,0.55078125,0.4892578125,0.39453125,0.3046875,0.263671875,0.2880859375,0.35546875,0.4287109375,0.5048828125,0.5869140625,0.650390625,0.67578125,0.6630859375,0.6376953125,0.6220703125,0.595703125,0.5166015625,0.4072265625,0.31640625,0.283203125,0.3115234375,0.376953125,0.45703125,0.55078125,0.6220703125,0.630859375,0.578125,0.4970703125,0.4287109375,0.3681640625,0.3232421875,0.328125,0.3974609375,0.5068359375,0.609375,0.673828125,0.7080078125,0.67578125,0.58203125,0.4697265625,0.39453125,0.390625,0.4482421875,0.5224609375,0.6025390625,0.666015625,0.6953125,0.6923828125,0.677734375,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.4873046875,0.455078125,0.4609375,0.484375,0.5,0.4814453125,0.4287109375,0.3779296875,0.37109375,0.4140625,0.4794921875,0.5322265625,0.5390625,0.5,0.4580078125,0.45703125,0.4970703125,0.5537109375,0.59375,0.5927734375,0.55078125,0.490234375,0.40234375,0.3203125,0.283203125,0.3056640625,0.365234375,0.4287109375,0.4970703125,0.578125,0.634765625,0.634765625,0.578125,0.4970703125,0.4287109375,0.365234375,0.3056640625,0.283203125,0.3203125,0.40234375,0.490234375,0.55078125,0.6015625,0.640625,0.654296875,0.6376953125,0.6044921875,0.5771484375,0.5703125,0.5791015625,0.619140625,0.66796875,0.693359375,0.67578125,0.62109375,0.55078125,0.4814453125,0.431640625,0.4267578125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.5673828125,0.517578125,0.4482421875,0.3994140625,0.3974609375,0.44140625,0.509765625,0.5712890625,0.5927734375,0.5703125,0.529296875,0.50390625,0.521484375,0.5791015625,0.634765625,0.634765625,0.580078125,0.5029296875,0.44921875,0.4521484375,0.509765625,0.5791015625,0.6376953125,0.662109375,0.646484375,0.60546875,0.5693359375,0.5595703125,0.546875,0.5,0.4375,0.396484375,0.3994140625,0.4443359375,0.509765625,0.5849609375,0.673828125,0.734375,0.7294921875,0.6611328125,0.5673828125,0.4892578125,0.4130859375,0.3310546875,0.28515625,0.30859375,0.3935546875,0.498046875,0.5791015625,0.6552734375,0.7333984375,0.7685546875,0.7314453125,0.6337890625,0.5224609375,0.439453125,0.36328125,0.287109375,0.251953125,0.287109375,0.3828125,0.490234375,0.5693359375,0.6240234375,0.6240234375,0.56640625,0.486328125,0.4306640625,0.4326171875,0.4892578125,0.5498046875,0.5712890625,0.5517578125,0.5166015625,0.4970703125,0.5185546875,0.5791015625,0.6357421875,0.6337890625,0.5732421875,0.490234375,0.4306640625,0.431640625,0.4892578125,0.5615234375,0.623046875,0.6533203125,0.6416015625,0.603515625,0.5693359375,0.5595703125,0.546875,0.4990234375,0.43359375,0.3896484375,0.390625,0.4345703125,0.5,0.5673828125,0.6259765625,0.6552734375,0.6474609375,0.6142578125,0.5849609375,0.5791015625,0.5810546875,0.58203125,0.5810546875,0.578125,0.5751953125,0.5712890625,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.5029296875,0.451171875,0.4365234375,0.462890625,0.51171875,0.5498046875,0.5595703125,0.56640625,0.5927734375,0.6181640625,0.6162109375,0.576171875,0.5107421875,0.439453125,0.3623046875,0.271484375,0.20703125,0.2080078125,0.2724609375,0.36328125,0.439453125,0.509765625,0.5771484375,0.623046875,0.630859375,0.611328125,0.5869140625,0.5791015625,0.564453125,0.5029296875,0.4150390625,0.34375,0.322265625,0.35546875,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.36328125,0.326171875,0.3427734375,0.41015625,0.494140625,0.5546875,0.5693359375,0.5810546875,0.625,0.681640625,0.7138671875,0.701171875,0.6494140625,0.5791015625,0.49609375,0.3837890625,0.2822265625,0.2412109375,0.271484375,0.345703125,0.419921875,0.4794921875,0.4970703125,0.47265625,0.4306640625,0.408203125,0.427734375,0.4892578125,0.5517578125,0.5732421875,0.552734375,0.515625,0.49609375,0.517578125,0.5791015625,0.6376953125,0.640625,0.5859375,0.5078125,0.4521484375,0.453125,0.509765625,0.5859375,0.66796875,0.716796875,0.697265625,0.6171875,0.517578125,0.439453125,0.3662109375,0.2900390625,0.251953125,0.283203125,0.373046875,0.478515625,0.5595703125,0.6162109375,0.6181640625,0.564453125,0.48828125,0.4365234375,0.4404296875,0.5,0.5771484375,0.66015625,0.7080078125,0.6865234375,0.6025390625,0.5,0.419921875,0.36328125,0.361328125,0.416015625,0.4931640625,0.5478515625,0.5458984375,0.4892578125,0.4326171875,0.4306640625,0.4853515625,0.5634765625,0.6181640625,0.6162109375,0.5595703125,0.478515625,0.37109375,0.2783203125,0.2451171875,0.2841796875,0.36328125,0.439453125,0.4990234375,0.5087890625,0.46484375,0.400390625,0.35546875,0.3623046875,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.556640625,0.5400390625,0.5107421875,0.474609375,0.4423828125,0.4248046875,0.419921875,0.4091796875,0.369140625,0.3203125,0.294921875,0.310546875,0.3623046875,0.4296875,0.5078125,0.609375,0.693359375,0.7158203125,0.6689453125,0.5869140625,0.509765625,0.4482421875,0.427734375,0.4501953125,0.4892578125,0.51171875,0.4912109375,0.4296875,0.353515625,0.275390625,0.2392578125,0.2744140625,0.369140625,0.478515625,0.5595703125,0.6357421875,0.7177734375,0.7666015625,0.7470703125,0.6669921875,0.5673828125,0.4892578125,0.4326171875,0.423828125,0.462890625,0.521484375,0.5595703125,0.5478515625,0.4892578125,0.41015625,0.3095703125,0.228515625,0.2109375,0.259765625,0.34375,0.419921875,0.4970703125,0.5888671875,0.65234375,0.6513671875,0.5869140625,0.49609375,0.419921875,0.365234375,0.3662109375,0.4248046875,0.505859375,0.560546875,0.5576171875,0.5,0.439453125,0.427734375,0.4658203125,0.5234375,0.5615234375,0.5498046875,0.4892578125,0.421875,0.3798828125,0.38671875,0.44140625,0.5146484375,0.5673828125,0.5791015625,0.576171875,0.560546875,0.5302734375,0.494140625,0.462890625,0.4443359375,0.439453125,0.4482421875,0.4873046875,0.5390625,0.5693359375,0.5576171875,0.5078125,0.439453125,0.375,0.33984375,0.3564453125,0.421875,0.505859375,0.564453125,0.5791015625,0.5888671875,0.62109375,0.6572265625,0.6669921875,0.6376953125,0.578125,0.509765625,0.431640625,0.3310546875,0.25,0.2294921875,0.2783203125,0.3623046875,0.439453125,0.5126953125,0.58203125,0.625,0.6298828125,0.60546875,0.578125,0.5693359375,0.5546875,0.494140625,0.41015625,0.3427734375,0.326171875,0.36328125,0.4296875,0.509765625,0.603515625,0.671875,0.673828125,0.609375,0.517578125,0.439453125,0.365234375,0.291015625,0.2587890625,0.2958984375,0.3916015625,0.5,0.5791015625,0.6337890625,0.630859375,0.5703125,0.4873046875,0.4296875,0.431640625,0.4892578125,0.5615234375,0.625,0.658203125,0.6513671875,0.6181640625,0.5869140625,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.4482421875,0.427734375,0.451171875,0.4921875,0.517578125,0.5,0.439453125,0.3828125,0.3779296875,0.4296875,0.50390625,0.556640625,0.5546875,0.5,0.4423828125,0.43359375,0.474609375,0.53515625,0.5751953125,0.56640625,0.509765625,0.431640625,0.33203125,0.251953125,0.232421875,0.28125,0.36328125,0.439453125,0.517578125,0.609375,0.6748046875,0.6748046875,0.609375,0.517578125,0.439453125,0.36328125,0.28125,0.232421875,0.251953125,0.33203125,0.431640625,0.509765625,0.5771484375,0.6328125,0.6572265625,0.6416015625,0.6015625,0.5673828125,0.5595703125,0.568359375,0.603515625,0.646484375,0.6630859375,0.638671875,0.580078125,0.509765625,0.4404296875,0.39453125,0.3935546875,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.599609375,0.55078125,0.4814453125,0.431640625,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.419921875,0.384765625,0.345703125,0.3330078125,0.3603515625,0.419921875,0.4892578125,0.5458984375,0.5478515625,0.4931640625,0.416015625,0.361328125,0.36328125,0.419921875,0.48046875,0.501953125,0.482421875,0.447265625,0.427734375,0.44921875,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.431640625,0.400390625,0.365234375,0.3544921875,0.3828125,0.44140625,0.509765625,0.5849609375,0.6728515625,0.7314453125,0.7265625,0.658203125,0.56640625,0.4892578125,0.412109375,0.31640625,0.2421875,0.228515625,0.28125,0.365234375,0.439453125,0.51953125,0.626953125,0.7216796875,0.7568359375,0.7216796875,0.6455078125,0.5693359375,0.486328125,0.375,0.27734375,0.240234375,0.2763671875,0.353515625,0.4296875,0.4912109375,0.5107421875,0.4853515625,0.443359375,0.4189453125,0.4384765625,0.5,0.5576171875,0.5595703125,0.50390625,0.4248046875,0.369140625,0.37109375,0.4296875,0.4912109375,0.5107421875,0.4853515625,0.443359375,0.4189453125,0.4384765625,0.5,0.568359375,0.6142578125,0.615234375,0.5703125,0.5029296875,0.453125,0.439453125,0.4296875,0.39453125,0.3544921875,0.33984375,0.3642578125,0.421875,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.431640625,0.4755859375,0.533203125,0.5673828125,0.5576171875,0.5078125,0.439453125,0.37109375,0.3203125,0.3076171875,0.3369140625,0.3896484375,0.4296875,0.439453125,0.4521484375,0.5087890625,0.5888671875,0.650390625,0.6640625,0.6259765625,0.5595703125,0.48046875,0.388671875,0.326171875,0.3310546875,0.40234375,0.4990234375,0.5791015625,0.6455078125,0.6767578125,0.6533203125,0.580078125,0.4912109375,0.431640625,0.419921875,0.4150390625,0.3955078125,0.37890625,0.390625,0.4384765625,0.5078125,0.5791015625,0.65625,0.74609375,0.8076171875,0.8046875,0.7373046875,0.6455078125,0.5693359375,0.5,0.43359375,0.392578125,0.38671875,0.4091796875,0.43359375,0.439453125,0.44921875,0.486328125,0.5322265625,0.556640625,0.5390625,0.486328125,0.419921875,0.3466796875,0.271484375,0.2373046875,0.2724609375,0.3671875,0.4765625,0.5595703125,0.6181640625,0.623046875,0.5712890625,0.4970703125,0.4462890625,0.451171875,0.509765625,0.5673828125,0.568359375,0.5087890625,0.42578125,0.365234375,0.36328125,0.419921875,0.48046875,0.5009765625,0.4814453125,0.443359375,0.421875,0.4404296875,0.5,0.5771484375,0.677734375,0.7607421875,0.7822265625,0.736328125,0.6552734375,0.5791015625,0.498046875,0.38671875,0.28515625,0.2431640625,0.2734375,0.345703125,0.419921875,0.4794921875,0.4990234375,0.474609375,0.4345703125,0.41015625,0.4296875,0.4892578125,0.5693359375,0.6708984375,0.7548828125,0.7783203125,0.7333984375,0.6533203125,0.5791015625,0.5205078125,0.5029296875,0.52734375,0.5673828125,0.58984375,0.5693359375,0.509765625,0.44921875,0.427734375,0.4482421875,0.4853515625,0.5068359375,0.48828125,0.4296875,0.3564453125,0.2802734375,0.2431640625,0.2763671875,0.369140625,0.4765625,0.5595703125,0.6201171875,0.6337890625,0.599609375,0.544921875,0.5087890625,0.5205078125,0.5791015625,0.64453125,0.6787109375,0.66015625,0.59375,0.5107421875,0.453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.443359375,0.4599609375,0.490234375,0.5244140625,0.5537109375,0.568359375,0.5693359375,0.5576171875,0.513671875,0.45703125,0.4248046875,0.4375,0.4892578125,0.5595703125,0.6376953125,0.7255859375,0.78125,0.7685546875,0.6904296875,0.5908203125,0.509765625,0.4501953125,0.4453125,0.4951171875,0.568359375,0.6201171875,0.6162109375,0.5595703125,0.478515625,0.3720703125,0.279296875,0.2451171875,0.28125,0.3564453125,0.4296875,0.5068359375,0.6044921875,0.6806640625,0.697265625,0.646484375,0.564453125,0.4892578125,0.43359375,0.4267578125,0.470703125,0.5341796875,0.5771484375,0.5673828125,0.509765625,0.4326171875,0.3486328125,0.2978515625,0.3154296875,0.396484375,0.498046875,0.5791015625,0.658203125,0.7490234375,0.8115234375,0.8076171875,0.7392578125,0.646484375,0.5693359375,0.5107421875,0.494140625,0.5205078125,0.5634765625,0.587890625,0.5693359375,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.4248046875,0.4443359375,0.4765625,0.513671875,0.54296875,0.5576171875,0.5595703125,0.5673828125,0.607421875,0.6591796875,0.689453125,0.677734375,0.626953125,0.5595703125,0.48828125,0.419921875,0.376953125,0.3720703125,0.3955078125,0.421875,0.4296875,0.4423828125,0.4921875,0.5576171875,0.6025390625,0.6015625,0.556640625,0.4892578125,0.4130859375,0.3310546875,0.2822265625,0.3017578125,0.3818359375,0.4814453125,0.5595703125,0.623046875,0.6552734375,0.63671875,0.5712890625,0.4892578125,0.4326171875,0.419921875,0.4140625,0.392578125,0.375,0.384765625,0.4306640625,0.4990234375,0.5693359375,0.6455078125,0.736328125,0.7998046875,0.798828125,0.732421875,0.638671875,0.5595703125,0.4765625,0.3662109375,0.271484375,0.2373046875,0.2744140625,0.3525390625,0.4296875,0.4912109375,0.51171875,0.4873046875,0.443359375,0.416015625,0.431640625,0.4892578125,0.5546875,0.599609375,0.6025390625,0.5615234375,0.4990234375,0.4521484375,0.439453125,0.44921875,0.49609375,0.5595703125,0.6044921875,0.603515625,0.5576171875,0.4892578125,0.431640625,0.4306640625,0.490234375,0.5732421875,0.6337890625,0.6357421875,0.5791015625,0.51953125,0.5,0.5224609375,0.5615234375,0.5830078125,0.5615234375,0.5,0.4404296875,0.4306640625,0.47265625,0.5361328125,0.578125,0.5693359375,0.509765625,0.4306640625,0.3447265625,0.291015625,0.306640625,0.38671875,0.48828125,0.5693359375,0.6484375,0.7421875,0.806640625,0.8037109375,0.734375,0.6396484375,0.5595703125,0.478515625,0.37890625,0.3017578125,0.287109375,0.33984375,0.4248046875,0.5,0.564453125,0.60546875,0.6015625,0.552734375,0.4833984375,0.4326171875,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.439453125,0.376953125,0.345703125,0.5380859375,0.4755859375,0.39453125,0.3388671875,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.3603515625,0.3251953125,0.2939453125,0.291015625,0.3251953125,0.384765625,0.4482421875,0.49609375,0.490234375,0.4287109375,0.3447265625,0.283203125,0.27734375,0.3251953125,0.3818359375,0.4189453125,0.4345703125,0.4423828125,0.4580078125,0.4951171875,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4248046875,0.41015625,0.3994140625,0.41015625,0.4462890625,0.4990234375,0.55078125,0.60546875,0.66015625,0.6845703125,0.6572265625,0.5859375,0.5068359375,0.4482421875,0.390625,0.3212890625,0.26953125,0.2646484375,0.30859375,0.373046875,0.4287109375,0.4931640625,0.595703125,0.701171875,0.7607421875,0.7529296875,0.6943359375,0.6220703125,0.5361328125,0.412109375,0.291015625,0.2265625,0.2392578125,0.3037109375,0.376953125,0.4404296875,0.4658203125,0.4521484375,0.423828125,0.4111328125,0.4365234375,0.5,0.556640625,0.552734375,0.4853515625,0.3916015625,0.32421875,0.3203125,0.376953125,0.4404296875,0.4658203125,0.4521484375,0.423828125,0.4111328125,0.4365234375,0.5,0.5693359375,0.619140625,0.6240234375,0.580078125,0.5087890625,0.451171875,0.4287109375,0.412109375,0.376953125,0.341796875,0.3291015625,0.3505859375,0.396484375,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.3466796875,0.40234375,0.4736328125,0.5224609375,0.5263671875,0.4873046875,0.4287109375,0.369140625,0.32421875,0.3134765625,0.3388671875,0.384765625,0.4208984375,0.4287109375,0.4423828125,0.5009765625,0.5859375,0.6533203125,0.671875,0.63671875,0.5703125,0.4931640625,0.4111328125,0.3671875,0.39453125,0.484375,0.5908203125,0.673828125,0.7333984375,0.7373046875,0.666015625,0.5390625,0.41015625,0.333984375,0.3251953125,0.3349609375,0.349609375,0.3828125,0.4443359375,0.5263671875,0.607421875,0.673828125,0.7392578125,0.806640625,0.8447265625,0.8271484375,0.759765625,0.6806640625,0.6220703125,0.5673828125,0.5068359375,0.4541015625,0.4248046875,0.419921875,0.4267578125,0.4287109375,0.43359375,0.451171875,0.4658203125,0.4599609375,0.427734375,0.3779296875,0.3251953125,0.271484375,0.22265625,0.2138671875,0.26953125,0.3759765625,0.4873046875,0.5703125,0.62890625,0.6376953125,0.59375,0.52734375,0.4833984375,0.4921875,0.55078125,0.607421875,0.5966796875,0.513671875,0.3974609375,0.3056640625,0.28125,0.3251953125,0.3818359375,0.4189453125,0.4306640625,0.4287109375,0.431640625,0.4541015625,0.5,0.5615234375,0.6552734375,0.75,0.7998046875,0.7890625,0.736328125,0.673828125,0.5966796875,0.474609375,0.33984375,0.248046875,0.2275390625,0.265625,0.3251953125,0.3798828125,0.4033203125,0.396484375,0.376953125,0.3701171875,0.3935546875,0.4482421875,0.51953125,0.6220703125,0.7216796875,0.7763671875,0.771484375,0.7265625,0.673828125,0.6298828125,0.61328125,0.6220703125,0.6376953125,0.63671875,0.6064453125,0.55078125,0.494140625,0.4580078125,0.4462890625,0.447265625,0.4453125,0.4228515625,0.376953125,0.322265625,0.2666015625,0.2470703125,0.2890625,0.3828125,0.48828125,0.5703125,0.6337890625,0.6630859375,0.6533203125,0.625,0.60546875,0.62109375,0.673828125,0.7275390625,0.7421875,0.69921875,0.6083984375,0.5087890625,0.443359375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4345703125,0.46484375,0.5146484375,0.5703125,0.611328125,0.626953125,0.6220703125,0.6005859375,0.544921875,0.4775390625,0.4384765625,0.4482421875,0.5,0.5703125,0.6494140625,0.7412109375,0.8037109375,0.798828125,0.7275390625,0.6318359375,0.55078125,0.490234375,0.4755859375,0.5126953125,0.57421875,0.6201171875,0.619140625,0.5703125,0.4990234375,0.4013671875,0.30859375,0.26171875,0.2744140625,0.3232421875,0.376953125,0.435546875,0.5107421875,0.57421875,0.5927734375,0.5615234375,0.5029296875,0.4482421875,0.4091796875,0.419921875,0.4794921875,0.5546875,0.6044921875,0.6015625,0.55078125,0.484375,0.4130859375,0.375,0.4033203125,0.4892578125,0.591796875,0.673828125,0.7490234375,0.8251953125,0.8642578125,0.841796875,0.767578125,0.6826171875,0.6220703125,0.5791015625,0.5693359375,0.58984375,0.6181640625,0.62890625,0.60546875,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.3427734375,0.3857421875,0.4501953125,0.5146484375,0.5595703125,0.576171875,0.5703125,0.568359375,0.5966796875,0.640625,0.6708984375,0.6669921875,0.6279296875,0.5703125,0.5048828125,0.4296875,0.3681640625,0.3388671875,0.34375,0.36328125,0.376953125,0.3974609375,0.44921875,0.5126953125,0.552734375,0.5498046875,0.5068359375,0.4482421875,0.3837890625,0.32421875,0.3017578125,0.3388671875,0.4208984375,0.5087890625,0.5703125,0.6142578125,0.62109375,0.576171875,0.490234375,0.3974609375,0.3388671875,0.3251953125,0.3251953125,0.33203125,0.3603515625,0.4169921875,0.4921875,0.5654296875,0.6220703125,0.6796875,0.7529296875,0.8037109375,0.798828125,0.736328125,0.6484375,0.5703125,0.4853515625,0.3681640625,0.2587890625,0.2080078125,0.2314453125,0.3017578125,0.376953125,0.44140625,0.47265625,0.4638671875,0.4306640625,0.40234375,0.40625,0.4482421875,0.498046875,0.5390625,0.552734375,0.5302734375,0.486328125,0.4462890625,0.4287109375,0.4296875,0.4658203125,0.521484375,0.5615234375,0.5595703125,0.515625,0.4482421875,0.3916015625,0.40234375,0.4853515625,0.6015625,0.693359375,0.7177734375,0.673828125,0.6201171875,0.595703125,0.5986328125,0.609375,0.6025390625,0.564453125,0.5,0.4404296875,0.4365234375,0.48828125,0.5625,0.6142578125,0.609375,0.55078125,0.47265625,0.3876953125,0.3369140625,0.35546875,0.4375,0.5400390625,0.6220703125,0.7001953125,0.7880859375,0.8427734375,0.830078125,0.7509765625,0.6513671875,0.5703125,0.4912109375,0.4013671875,0.333984375,0.32421875,0.37109375,0.44140625,0.5,0.546875,0.568359375,0.546875,0.484375,0.4052734375,0.3466796875,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.486328125,0.4140625,0.3564453125,0.48046875,0.4140625,0.330078125,0.2724609375,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.3330078125,0.291015625,0.2587890625,0.2587890625,0.2939453125,0.345703125,0.39453125,0.4287109375,0.4189453125,0.36328125,0.2900390625,0.234375,0.224609375,0.2587890625,0.3046875,0.353515625,0.4052734375,0.4580078125,0.509765625,0.55859375,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4697265625,0.4755859375,0.4912109375,0.5185546875,0.552734375,0.5830078125,0.6044921875,0.62109375,0.6201171875,0.5908203125,0.53515625,0.470703125,0.419921875,0.39453125,0.375,0.359375,0.3583984375,0.3779296875,0.412109375,0.4462890625,0.46875,0.5009765625,0.5771484375,0.6708984375,0.7373046875,0.7470703125,0.703125,0.634765625,0.548828125,0.421875,0.294921875,0.2236328125,0.2294921875,0.291015625,0.3642578125,0.4267578125,0.4541015625,0.4443359375,0.4189453125,0.4091796875,0.4365234375,0.5,0.556640625,0.55078125,0.48046875,0.3837890625,0.3134765625,0.3076171875,0.3642578125,0.4267578125,0.4541015625,0.4443359375,0.4189453125,0.4091796875,0.4365234375,0.5,0.572265625,0.63671875,0.662109375,0.6357421875,0.5703125,0.505859375,0.46875,0.439453125,0.3994140625,0.3642578125,0.34765625,0.353515625,0.3740234375,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.2958984375,0.3671875,0.4521484375,0.5166015625,0.53515625,0.51171875,0.46875,0.4248046875,0.3916015625,0.3837890625,0.40234375,0.4365234375,0.462890625,0.46875,0.48046875,0.529296875,0.5966796875,0.642578125,0.6435546875,0.5986328125,0.5302734375,0.455078125,0.38671875,0.3662109375,0.421875,0.5361328125,0.6552734375,0.740234375,0.794921875,0.7734375,0.66015625,0.4912109375,0.3349609375,0.2548828125,0.2587890625,0.2890625,0.3408203125,0.4189453125,0.5166015625,0.6123046875,0.6884765625,0.740234375,0.7841796875,0.8154296875,0.814453125,0.775390625,0.71484375,0.662109375,0.634765625,0.6123046875,0.5791015625,0.5380859375,0.501953125,0.4794921875,0.470703125,0.46875,0.466796875,0.4521484375,0.419921875,0.3720703125,0.3212890625,0.2822265625,0.2587890625,0.2373046875,0.2138671875,0.2177734375,0.2666015625,0.3544921875,0.451171875,0.5302734375,0.591796875,0.611328125,0.587890625,0.546875,0.5234375,0.54296875,0.6044921875,0.66015625,0.64453125,0.546875,0.4052734375,0.283203125,0.232421875,0.2587890625,0.3056640625,0.357421875,0.4052734375,0.44140625,0.46484375,0.4814453125,0.5,0.5302734375,0.599609375,0.6904296875,0.7646484375,0.7958984375,0.78125,0.740234375,0.6787109375,0.560546875,0.4111328125,0.2841796875,0.21875,0.2197265625,0.2587890625,0.2998046875,0.3232421875,0.328125,0.3251953125,0.330078125,0.353515625,0.39453125,0.44921875,0.53515625,0.634765625,0.71484375,0.7548828125,0.7568359375,0.740234375,0.724609375,0.720703125,0.720703125,0.7119140625,0.6875,0.6494140625,0.6044921875,0.5576171875,0.505859375,0.4580078125,0.421875,0.3984375,0.3818359375,0.3642578125,0.33984375,0.3037109375,0.2841796875,0.3056640625,0.3701171875,0.453125,0.5302734375,0.5986328125,0.6494140625,0.67578125,0.6826171875,0.6845703125,0.701171875,0.740234375,0.7783203125,0.7783203125,0.7255859375,0.6357421875,0.541015625,0.4814453125,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4765625,0.51171875,0.568359375,0.6240234375,0.65625,0.6572265625,0.634765625,0.5966796875,0.5234375,0.44140625,0.39453125,0.404296875,0.458984375,0.5302734375,0.611328125,0.71484375,0.7978515625,0.8173828125,0.767578125,0.6826171875,0.6044921875,0.5390625,0.50390625,0.5078125,0.5380859375,0.56640625,0.5654296875,0.5302734375,0.4794921875,0.4150390625,0.35546875,0.3232421875,0.3232421875,0.3427734375,0.3642578125,0.3857421875,0.4140625,0.4384765625,0.447265625,0.435546875,0.4150390625,0.39453125,0.38671875,0.4248046875,0.501953125,0.5849609375,0.6376953125,0.6416015625,0.6044921875,0.5537109375,0.4951171875,0.4638671875,0.48828125,0.5654296875,0.6611328125,0.740234375,0.8095703125,0.8603515625,0.8642578125,0.814453125,0.734375,0.666015625,0.634765625,0.6220703125,0.630859375,0.654296875,0.673828125,0.6728515625,0.646484375,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.294921875,0.3623046875,0.447265625,0.5185546875,0.5546875,0.552734375,0.5302734375,0.5107421875,0.517578125,0.546875,0.5771484375,0.587890625,0.5703125,0.5302734375,0.478515625,0.4091796875,0.3447265625,0.30859375,0.310546875,0.3359375,0.3642578125,0.396484375,0.4462890625,0.4912109375,0.5078125,0.486328125,0.44140625,0.39453125,0.3505859375,0.3232421875,0.3310546875,0.3779296875,0.4453125,0.501953125,0.5302734375,0.5419921875,0.5224609375,0.4658203125,0.38671875,0.3115234375,0.267578125,0.2587890625,0.2646484375,0.2998046875,0.369140625,0.4609375,0.5478515625,0.607421875,0.634765625,0.6611328125,0.7041015625,0.7373046875,0.7314453125,0.6806640625,0.6044921875,0.5302734375,0.4462890625,0.33203125,0.228515625,0.1845703125,0.2138671875,0.2880859375,0.3642578125,0.431640625,0.4765625,0.482421875,0.4521484375,0.4091796875,0.384765625,0.39453125,0.41796875,0.4560546875,0.49609375,0.51953125,0.5166015625,0.49609375,0.46875,0.4521484375,0.46484375,0.4970703125,0.5185546875,0.5087890625,0.4619140625,0.39453125,0.3388671875,0.3544921875,0.4521484375,0.59375,0.7158203125,0.7666015625,0.740234375,0.7001953125,0.6796875,0.6708984375,0.6572265625,0.6240234375,0.568359375,0.5,0.4423828125,0.4443359375,0.5078125,0.5966796875,0.66015625,0.662109375,0.6044921875,0.525390625,0.435546875,0.375,0.3828125,0.45703125,0.5546875,0.634765625,0.7119140625,0.7939453125,0.8369140625,0.8095703125,0.71875,0.6123046875,0.5302734375,0.45703125,0.3896484375,0.35546875,0.3701171875,0.419921875,0.4716796875,0.5,0.515625,0.515625,0.4853515625,0.4248046875,0.3525390625,0.29296875,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.4609375,0.40234375,0.326171875,0.271484375,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.345703125,0.2939453125,0.2587890625,0.2587890625,0.291015625,0.3330078125,0.3642578125,0.3837890625,0.375,0.3369140625,0.2861328125,0.248046875,0.2392578125,0.2587890625,0.2900390625,0.3388671875,0.408203125,0.4853515625,0.5546875,0.6044921875,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.53515625,0.55859375,0.5966796875,0.6318359375,0.65234375,0.6513671875,0.634765625,0.607421875,0.5498046875,0.4716796875,0.400390625,0.357421875,0.349609375,0.3642578125,0.388671875,0.43359375,0.48828125,0.5322265625,0.5517578125,0.546875,0.5302734375,0.5234375,0.560546875,0.626953125,0.6845703125,0.7021484375,0.669921875,0.6044921875,0.51953125,0.400390625,0.287109375,0.2314453125,0.2509765625,0.3193359375,0.39453125,0.45703125,0.48046875,0.4638671875,0.4306640625,0.4140625,0.4375,0.5,0.556640625,0.5546875,0.4912109375,0.40234375,0.3388671875,0.3369140625,0.39453125,0.45703125,0.48046875,0.4638671875,0.4306640625,0.4140625,0.4375,0.5,0.576171875,0.6591796875,0.712890625,0.708984375,0.654296875,0.5830078125,0.5302734375,0.484375,0.4423828125,0.4111328125,0.39453125,0.3876953125,0.3798828125,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.3134765625,0.39453125,0.482421875,0.546875,0.568359375,0.5556640625,0.5302734375,0.50390625,0.4853515625,0.48046875,0.4912109375,0.5107421875,0.5263671875,0.5302734375,0.5380859375,0.572265625,0.6123046875,0.626953125,0.6005859375,0.5400390625,0.46875,0.3955078125,0.3349609375,0.328125,0.3994140625,0.52734375,0.654296875,0.740234375,0.7919921875,0.759765625,0.6318359375,0.455078125,0.302734375,0.236328125,0.2587890625,0.310546875,0.38671875,0.482421875,0.580078125,0.658203125,0.7099609375,0.740234375,0.759765625,0.751953125,0.7119140625,0.6572265625,0.611328125,0.5927734375,0.6044921875,0.62109375,0.6259765625,0.61328125,0.5849609375,0.5546875,0.5341796875,0.5302734375,0.5205078125,0.4765625,0.40234375,0.3232421875,0.265625,0.2470703125,0.2587890625,0.2724609375,0.26953125,0.2666015625,0.2841796875,0.330078125,0.3974609375,0.46875,0.533203125,0.5634765625,0.560546875,0.5439453125,0.5400390625,0.5712890625,0.634765625,0.6923828125,0.68359375,0.59375,0.4521484375,0.3203125,0.251953125,0.2587890625,0.29296875,0.3525390625,0.4248046875,0.4853515625,0.515625,0.515625,0.5,0.490234375,0.521484375,0.5908203125,0.673828125,0.736328125,0.7578125,0.740234375,0.69921875,0.6064453125,0.474609375,0.34765625,0.2646484375,0.2412109375,0.2587890625,0.283203125,0.2998046875,0.30859375,0.314453125,0.3232421875,0.33984375,0.3642578125,0.3955078125,0.4501953125,0.5244140625,0.6044921875,0.6728515625,0.716796875,0.740234375,0.759765625,0.7763671875,0.775390625,0.7509765625,0.708984375,0.666015625,0.634765625,0.6005859375,0.5419921875,0.46875,0.408203125,0.3779296875,0.3779296875,0.39453125,0.404296875,0.3857421875,0.3525390625,0.333984375,0.349609375,0.400390625,0.46875,0.5419921875,0.611328125,0.666015625,0.6953125,0.7080078125,0.7177734375,0.740234375,0.7607421875,0.7548828125,0.712890625,0.6455078125,0.5791015625,0.5380859375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5380859375,0.5732421875,0.6240234375,0.6630859375,0.6708984375,0.6474609375,0.6044921875,0.5478515625,0.4560546875,0.3642578125,0.3173828125,0.333984375,0.396484375,0.46875,0.552734375,0.6669921875,0.7705078125,0.814453125,0.78515625,0.7109375,0.634765625,0.5654296875,0.5078125,0.4775390625,0.474609375,0.486328125,0.48828125,0.46875,0.4443359375,0.4267578125,0.419921875,0.4189453125,0.4189453125,0.4111328125,0.39453125,0.373046875,0.34375,0.3193359375,0.3115234375,0.322265625,0.34375,0.3642578125,0.392578125,0.4541015625,0.5380859375,0.61328125,0.654296875,0.6572265625,0.634765625,0.6015625,0.5537109375,0.5185546875,0.52734375,0.583984375,0.6640625,0.740234375,0.8037109375,0.8291015625,0.7978515625,0.7236328125,0.6435546875,0.599609375,0.6044921875,0.626953125,0.66015625,0.6904296875,0.701171875,0.689453125,0.662109375,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.314453125,0.3994140625,0.48828125,0.5439453125,0.548828125,0.5146484375,0.46875,0.4287109375,0.4111328125,0.421875,0.4521484375,0.4814453125,0.48828125,0.46875,0.435546875,0.380859375,0.3251953125,0.2978515625,0.30859375,0.3486328125,0.39453125,0.44140625,0.486328125,0.5078125,0.4912109375,0.4462890625,0.396484375,0.3642578125,0.34375,0.34765625,0.380859375,0.427734375,0.466796875,0.4814453125,0.46875,0.4462890625,0.40625,0.3564453125,0.30859375,0.275390625,0.2607421875,0.2587890625,0.26953125,0.322265625,0.4140625,0.513671875,0.5869140625,0.615234375,0.6044921875,0.5927734375,0.6044921875,0.6240234375,0.626953125,0.59765625,0.5390625,0.46875,0.3876953125,0.2841796875,0.201171875,0.181640625,0.2314453125,0.31640625,0.39453125,0.4658203125,0.525390625,0.546875,0.5166015625,0.4521484375,0.3935546875,0.3642578125,0.35546875,0.388671875,0.4560546875,0.5263671875,0.5693359375,0.5673828125,0.5302734375,0.4921875,0.48046875,0.48828125,0.494140625,0.4775390625,0.431640625,0.3642578125,0.306640625,0.3154296875,0.4052734375,0.546875,0.6787109375,0.7470703125,0.740234375,0.71875,0.7119140625,0.70703125,0.6845703125,0.6376953125,0.5712890625,0.5,0.4423828125,0.4482421875,0.5185546875,0.615234375,0.685546875,0.69140625,0.634765625,0.5546875,0.45703125,0.3828125,0.375,0.435546875,0.525390625,0.6044921875,0.681640625,0.7587890625,0.794921875,0.759765625,0.6630859375,0.5517578125,0.46875,0.40234375,0.365234375,0.373046875,0.4189453125,0.4755859375,0.5068359375,0.5,0.4814453125,0.46484375,0.44140625,0.4052734375,0.357421875,0.3056640625,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.59765625,0.5224609375,0.4306640625,0.494140625,0.4501953125,0.384765625,0.3369140625,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.384765625,0.3251953125,0.291015625,0.2939453125,0.3251953125,0.3603515625,0.376953125,0.384765625,0.3798828125,0.3623046875,0.33984375,0.3232421875,0.318359375,0.3251953125,0.3408203125,0.37890625,0.4384765625,0.5087890625,0.568359375,0.6064453125,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.578125,0.6142578125,0.6640625,0.69921875,0.701171875,0.669921875,0.6220703125,0.5595703125,0.462890625,0.361328125,0.2958984375,0.2890625,0.326171875,0.376953125,0.4384765625,0.5283203125,0.619140625,0.669921875,0.666015625,0.6220703125,0.5703125,0.5302734375,0.5322265625,0.572265625,0.619140625,0.6396484375,0.6142578125,0.55078125,0.46875,0.3623046875,0.2724609375,0.2451171875,0.2890625,0.3701171875,0.4482421875,0.5087890625,0.525390625,0.4970703125,0.4501953125,0.421875,0.4384765625,0.5,0.55859375,0.5625,0.5107421875,0.4365234375,0.384765625,0.3896484375,0.4482421875,0.5087890625,0.525390625,0.4970703125,0.4501953125,0.421875,0.4384765625,0.5,0.5791015625,0.67578125,0.7509765625,0.7646484375,0.7158203125,0.6376953125,0.5703125,0.5126953125,0.474609375,0.4580078125,0.4541015625,0.4482421875,0.4228515625,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.392578125,0.47265625,0.546875,0.58984375,0.5966796875,0.5830078125,0.5703125,0.5595703125,0.552734375,0.55078125,0.5546875,0.5625,0.568359375,0.5703125,0.5771484375,0.6015625,0.623046875,0.6162109375,0.5712890625,0.501953125,0.4287109375,0.3544921875,0.2900390625,0.2783203125,0.3427734375,0.4638671875,0.587890625,0.673828125,0.7265625,0.701171875,0.5908203125,0.4423828125,0.3232421875,0.2841796875,0.3251953125,0.3916015625,0.47265625,0.5546875,0.6162109375,0.6494140625,0.6640625,0.673828125,0.673828125,0.63671875,0.5732421875,0.5146484375,0.4892578125,0.505859375,0.55078125,0.6015625,0.640625,0.654296875,0.6376953125,0.6044921875,0.5771484375,0.5703125,0.5576171875,0.498046875,0.4052734375,0.3193359375,0.2744140625,0.2822265625,0.3251953125,0.3671875,0.3759765625,0.3544921875,0.330078125,0.328125,0.3642578125,0.4287109375,0.4931640625,0.52734375,0.5302734375,0.5205078125,0.5234375,0.5576171875,0.6220703125,0.68359375,0.693359375,0.6328125,0.5205078125,0.40234375,0.33203125,0.3251953125,0.3466796875,0.4052734375,0.484375,0.546875,0.568359375,0.546875,0.5,0.455078125,0.4453125,0.482421875,0.5546875,0.62890625,0.671875,0.673828125,0.6533203125,0.59765625,0.5107421875,0.4189453125,0.3505859375,0.322265625,0.3251953125,0.3359375,0.34375,0.3486328125,0.353515625,0.359375,0.3671875,0.376953125,0.3876953125,0.4013671875,0.4306640625,0.4833984375,0.55078125,0.6181640625,0.673828125,0.7236328125,0.759765625,0.765625,0.7353515625,0.68359375,0.6396484375,0.6220703125,0.6005859375,0.5419921875,0.4638671875,0.400390625,0.37890625,0.400390625,0.4482421875,0.4873046875,0.48046875,0.431640625,0.375,0.3466796875,0.3671875,0.4287109375,0.5029296875,0.5791015625,0.638671875,0.6689453125,0.671875,0.66796875,0.673828125,0.6806640625,0.67578125,0.6552734375,0.623046875,0.5927734375,0.57421875,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.578125,0.611328125,0.6533203125,0.673828125,0.658203125,0.611328125,0.55078125,0.478515625,0.376953125,0.28515625,0.2490234375,0.2802734375,0.353515625,0.4287109375,0.513671875,0.630859375,0.740234375,0.791015625,0.767578125,0.697265625,0.6220703125,0.548828125,0.4794921875,0.4306640625,0.4140625,0.4228515625,0.43359375,0.4287109375,0.4267578125,0.451171875,0.4912109375,0.521484375,0.5244140625,0.4951171875,0.4482421875,0.3896484375,0.314453125,0.2509765625,0.232421875,0.263671875,0.322265625,0.376953125,0.43359375,0.5068359375,0.5791015625,0.6259765625,0.640625,0.6328125,0.6220703125,0.6025390625,0.5595703125,0.515625,0.50390625,0.5361328125,0.6005859375,0.673828125,0.7333984375,0.7412109375,0.689453125,0.60546875,0.5341796875,0.5146484375,0.55078125,0.603515625,0.6552734375,0.6884765625,0.6904296875,0.666015625,0.6376953125,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.396484375,0.4892578125,0.5693359375,0.5966796875,0.5625,0.4951171875,0.4287109375,0.37109375,0.33203125,0.328125,0.3583984375,0.40234375,0.4306640625,0.4287109375,0.4111328125,0.3701171875,0.326171875,0.3095703125,0.3330078125,0.38671875,0.4482421875,0.5068359375,0.5498046875,0.552734375,0.5126953125,0.44921875,0.3974609375,0.376953125,0.3759765625,0.404296875,0.451171875,0.4912109375,0.5009765625,0.4755859375,0.4287109375,0.376953125,0.3271484375,0.294921875,0.2890625,0.3037109375,0.3212890625,0.3251953125,0.337890625,0.39453125,0.4833984375,0.564453125,0.60546875,0.595703125,0.55078125,0.5087890625,0.498046875,0.5146484375,0.53515625,0.5322265625,0.494140625,0.4287109375,0.349609375,0.2578125,0.1953125,0.2001953125,0.271484375,0.3671875,0.4482421875,0.5234375,0.5966796875,0.6318359375,0.6044921875,0.5263671875,0.4384765625,0.376953125,0.3408203125,0.3623046875,0.44140625,0.5400390625,0.6103515625,0.6181640625,0.5703125,0.515625,0.4892578125,0.48828125,0.494140625,0.4833984375,0.443359375,0.376953125,0.3154296875,0.3056640625,0.3662109375,0.478515625,0.5966796875,0.6669921875,0.673828125,0.6689453125,0.6826171875,0.6953125,0.68359375,0.6396484375,0.572265625,0.5,0.4423828125,0.4462890625,0.513671875,0.607421875,0.6748046875,0.6787109375,0.6220703125,0.5400390625,0.4375,0.35546875,0.3369140625,0.3876953125,0.47265625,0.55078125,0.6279296875,0.70703125,0.7470703125,0.71484375,0.6201171875,0.51171875,0.4287109375,0.3681640625,0.353515625,0.39453125,0.46484375,0.5244140625,0.537109375,0.5,0.4541015625,0.431640625,0.4287109375,0.4306640625,0.4189453125,0.3818359375,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.5615234375,0.5283203125,0.47265625,0.4296875,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.419921875,0.3603515625,0.3330078125,0.345703125,0.384765625,0.419921875,0.4296875,0.4306640625,0.4296875,0.4267578125,0.4228515625,0.419921875,0.4189453125,0.419921875,0.4248046875,0.443359375,0.4755859375,0.513671875,0.5458984375,0.564453125,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5693359375,0.6103515625,0.6630859375,0.6943359375,0.6845703125,0.6357421875,0.5693359375,0.490234375,0.3837890625,0.2890625,0.251953125,0.2841796875,0.357421875,0.4296875,0.5087890625,0.6142578125,0.70703125,0.7412109375,0.7060546875,0.6318359375,0.5595703125,0.501953125,0.4873046875,0.5166015625,0.5634765625,0.58984375,0.5712890625,0.509765625,0.4296875,0.3330078125,0.26171875,0.255859375,0.318359375,0.41015625,0.4892578125,0.5498046875,0.5615234375,0.5234375,0.4658203125,0.427734375,0.439453125,0.5,0.55859375,0.568359375,0.5263671875,0.462890625,0.4208984375,0.4296875,0.4892578125,0.5498046875,0.5615234375,0.5234375,0.4658203125,0.427734375,0.439453125,0.5,0.580078125,0.6806640625,0.759765625,0.7744140625,0.7216796875,0.6357421875,0.5595703125,0.498046875,0.470703125,0.4794921875,0.50390625,0.5146484375,0.4892578125,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.4912109375,0.560546875,0.60546875,0.6142578125,0.5927734375,0.5673828125,0.5595703125,0.5576171875,0.556640625,0.556640625,0.556640625,0.55859375,0.55859375,0.5595703125,0.56640625,0.59375,0.6201171875,0.619140625,0.5791015625,0.5126953125,0.439453125,0.36328125,0.2861328125,0.25,0.287109375,0.384765625,0.49609375,0.5791015625,0.6357421875,0.6279296875,0.5537109375,0.451171875,0.375,0.365234375,0.419921875,0.4912109375,0.560546875,0.6083984375,0.6201171875,0.603515625,0.583984375,0.5791015625,0.5693359375,0.5224609375,0.4560546875,0.408203125,0.404296875,0.4443359375,0.509765625,0.5771484375,0.6328125,0.6572265625,0.6416015625,0.6015625,0.5673828125,0.5595703125,0.546875,0.490234375,0.408203125,0.341796875,0.3232421875,0.3564453125,0.419921875,0.4765625,0.4873046875,0.451171875,0.3974609375,0.3642578125,0.37890625,0.439453125,0.5029296875,0.529296875,0.517578125,0.4912109375,0.48046875,0.5068359375,0.5693359375,0.6357421875,0.6689453125,0.6474609375,0.5771484375,0.490234375,0.431640625,0.419921875,0.4326171875,0.4833984375,0.552734375,0.6015625,0.60546875,0.564453125,0.5,0.435546875,0.3955078125,0.40234375,0.453125,0.521484375,0.5693359375,0.5791015625,0.5732421875,0.5517578125,0.5146484375,0.47265625,0.4384765625,0.421875,0.419921875,0.421875,0.4228515625,0.423828125,0.42578125,0.4267578125,0.427734375,0.4296875,0.42578125,0.4052734375,0.3876953125,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.6455078125,0.6953125,0.70703125,0.6767578125,0.623046875,0.5810546875,0.5693359375,0.556640625,0.505859375,0.4365234375,0.3876953125,0.3837890625,0.4248046875,0.4892578125,0.544921875,0.546875,0.4951171875,0.4228515625,0.3740234375,0.380859375,0.439453125,0.5126953125,0.5810546875,0.6240234375,0.6298828125,0.607421875,0.583984375,0.5791015625,0.580078125,0.5791015625,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.568359375,0.6025390625,0.6435546875,0.66015625,0.6357421875,0.5791015625,0.509765625,0.4296875,0.328125,0.24609375,0.2275390625,0.27734375,0.3623046875,0.439453125,0.5224609375,0.6328125,0.7275390625,0.76171875,0.724609375,0.646484375,0.5693359375,0.4970703125,0.4296875,0.388671875,0.3857421875,0.4091796875,0.4345703125,0.439453125,0.44921875,0.4931640625,0.5546875,0.59765625,0.59765625,0.5546875,0.4892578125,0.412109375,0.3154296875,0.23828125,0.22265625,0.2724609375,0.35546875,0.4296875,0.5,0.5673828125,0.6123046875,0.62109375,0.6015625,0.5771484375,0.5693359375,0.5576171875,0.5166015625,0.46484375,0.4375,0.4541015625,0.5087890625,0.5791015625,0.6376953125,0.6416015625,0.5888671875,0.5107421875,0.455078125,0.4541015625,0.509765625,0.5771484375,0.6357421875,0.6630859375,0.650390625,0.6123046875,0.5791015625,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.498046875,0.5927734375,0.662109375,0.6669921875,0.6064453125,0.517578125,0.439453125,0.3720703125,0.3212890625,0.3095703125,0.33984375,0.3916015625,0.431640625,0.439453125,0.4296875,0.3935546875,0.3525390625,0.3369140625,0.361328125,0.419921875,0.4892578125,0.556640625,0.6015625,0.6025390625,0.5576171875,0.4921875,0.4423828125,0.4296875,0.4375,0.4775390625,0.5302734375,0.5625,0.5537109375,0.505859375,0.439453125,0.373046875,0.3203125,0.3037109375,0.3271484375,0.373046875,0.4111328125,0.419921875,0.431640625,0.482421875,0.552734375,0.60546875,0.61328125,0.57421875,0.509765625,0.451171875,0.4345703125,0.4599609375,0.5009765625,0.5224609375,0.501953125,0.439453125,0.361328125,0.2734375,0.2177734375,0.23046875,0.30859375,0.408203125,0.4892578125,0.5673828125,0.65234375,0.703125,0.685546875,0.6064453125,0.5078125,0.4296875,0.3759765625,0.3828125,0.451171875,0.5439453125,0.6103515625,0.615234375,0.5595703125,0.498046875,0.47265625,0.484375,0.509765625,0.5205078125,0.4931640625,0.4296875,0.36328125,0.330078125,0.3515625,0.421875,0.5087890625,0.5673828125,0.5791015625,0.5859375,0.6162109375,0.65234375,0.662109375,0.6318359375,0.5712890625,0.5,0.44140625,0.439453125,0.4951171875,0.57421875,0.6298828125,0.6279296875,0.5693359375,0.48828125,0.38671875,0.306640625,0.291015625,0.3447265625,0.4306640625,0.509765625,0.587890625,0.6728515625,0.724609375,0.7060546875,0.6240234375,0.521484375,0.439453125,0.380859375,0.375,0.4267578125,0.501953125,0.5556640625,0.5546875,0.5,0.4404296875,0.421875,0.443359375,0.4814453125,0.5009765625,0.48046875,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.6943359375,0.6630859375,0.6103515625,0.5693359375,0.5595703125,0.5673828125,0.6005859375,0.638671875,0.650390625,0.6220703125,0.560546875,0.4892578125,0.421875,0.3798828125,0.3857421875,0.4375,0.5087890625,0.55859375,0.5693359375,0.5673828125,0.5634765625,0.5595703125,0.5576171875,0.556640625,0.5576171875,0.5595703125,0.55859375,0.544921875,0.517578125,0.4833984375,0.4521484375,0.4345703125,0.4296875,0.427734375,0.42578125,0.4228515625,0.4208984375,0.419921875,0.419921875,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.365234375,0.2890625,0.25390625,0.2900390625,0.38671875,0.49609375,0.5791015625,0.6552734375,0.7333984375,0.7685546875,0.7314453125,0.6337890625,0.5224609375,0.439453125,0.380859375,0.3779296875,0.4326171875,0.5107421875,0.5673828125,0.56640625,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.568359375,0.578125,0.5380859375,0.4765625,0.4345703125,0.443359375,0.5,0.556640625,0.5654296875,0.52734375,0.470703125,0.435546875,0.44921875,0.509765625,0.5693359375,0.5810546875,0.541015625,0.4794921875,0.4365234375,0.443359375,0.5,0.57421875,0.6552734375,0.703125,0.6845703125,0.60546875,0.5078125,0.4296875,0.3759765625,0.384765625,0.45703125,0.552734375,0.6220703125,0.6259765625,0.5693359375,0.5,0.4482421875,0.4375,0.470703125,0.5263671875,0.5693359375,0.5791015625,0.5693359375,0.5283203125,0.4765625,0.447265625,0.4599609375,0.5107421875,0.5791015625,0.64453125,0.6796875,0.6630859375,0.5966796875,0.513671875,0.4541015625,0.439453125,0.4375,0.435546875,0.4345703125,0.4345703125,0.435546875,0.4375,0.439453125,0.4541015625,0.5146484375,0.599609375,0.666015625,0.6826171875,0.646484375,0.5791015625,0.4970703125,0.3876953125,0.2919921875,0.2568359375,0.2919921875,0.3662109375,0.439453125,0.5,0.525390625,0.5166015625,0.4931640625,0.4833984375,0.5087890625,0.5693359375,0.6318359375,0.6640625,0.64453125,0.578125,0.49609375,0.4404296875,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4326171875,0.40625,0.380859375,0.3828125,0.4228515625,0.48828125,0.5595703125,0.6181640625,0.62890625,0.591796875,0.533203125,0.4931640625,0.5029296875,0.5595703125,0.61328125,0.607421875,0.541015625,0.4482421875,0.380859375,0.3759765625,0.4296875,0.4990234375,0.5654296875,0.607421875,0.615234375,0.595703125,0.57421875,0.5693359375,0.5791015625,0.6123046875,0.6484375,0.6572265625,0.6240234375,0.5615234375,0.4892578125,0.41796875,0.3564453125,0.326171875,0.3369140625,0.375,0.41015625,0.419921875,0.4248046875,0.4453125,0.4814453125,0.5234375,0.5576171875,0.576171875,0.5791015625,0.5791015625,0.5791015625,0.578125,0.576171875,0.5732421875,0.5712890625,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.48828125,0.5390625,0.5517578125,0.5224609375,0.470703125,0.4296875,0.419921875,0.412109375,0.3818359375,0.3486328125,0.3408203125,0.37109375,0.4306640625,0.5,0.55859375,0.5771484375,0.5556640625,0.517578125,0.498046875,0.5185546875,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.451171875,0.4990234375,0.5634765625,0.6064453125,0.6044921875,0.55859375,0.4892578125,0.412109375,0.328125,0.279296875,0.2998046875,0.380859375,0.4814453125,0.5595703125,0.6318359375,0.7060546875,0.740234375,0.7041015625,0.6083984375,0.5009765625,0.419921875,0.35546875,0.322265625,0.3408203125,0.408203125,0.4912109375,0.5478515625,0.5595703125,0.5654296875,0.595703125,0.630859375,0.6416015625,0.615234375,0.5576171875,0.4892578125,0.4150390625,0.3330078125,0.2841796875,0.3046875,0.38671875,0.48828125,0.5693359375,0.6357421875,0.6689453125,0.6474609375,0.5771484375,0.490234375,0.431640625,0.419921875,0.412109375,0.3720703125,0.3203125,0.2900390625,0.3017578125,0.3515625,0.419921875,0.48046875,0.5009765625,0.4814453125,0.443359375,0.421875,0.4404296875,0.5,0.564453125,0.6044921875,0.599609375,0.5498046875,0.48046875,0.4306640625,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.638671875,0.7333984375,0.7998046875,0.7998046875,0.7333984375,0.638671875,0.5595703125,0.4892578125,0.435546875,0.421875,0.451171875,0.5048828125,0.5478515625,0.5595703125,0.5498046875,0.5,0.431640625,0.3818359375,0.37890625,0.421875,0.4892578125,0.560546875,0.6220703125,0.65234375,0.6416015625,0.6064453125,0.576171875,0.5693359375,0.5810546875,0.6240234375,0.6787109375,0.7099609375,0.6982421875,0.6474609375,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.5869140625,0.6201171875,0.65625,0.6669921875,0.638671875,0.5791015625,0.509765625,0.4521484375,0.4462890625,0.49609375,0.5673828125,0.6181640625,0.615234375,0.5595703125,0.4814453125,0.3837890625,0.3046875,0.2861328125,0.333984375,0.4150390625,0.4892578125,0.568359375,0.6689453125,0.7529296875,0.775390625,0.7294921875,0.646484375,0.5693359375,0.505859375,0.4775390625,0.484375,0.5048828125,0.51171875,0.4833984375,0.419921875,0.36328125,0.3681640625,0.439453125,0.5380859375,0.6123046875,0.6220703125,0.5693359375,0.5,0.4326171875,0.3876953125,0.3779296875,0.39453125,0.4150390625,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.44921875,0.4306640625,0.4541015625,0.4951171875,0.5185546875,0.5,0.439453125,0.36328125,0.27734375,0.22265625,0.236328125,0.3125,0.41015625,0.4892578125,0.5693359375,0.671875,0.755859375,0.7783203125,0.73046875,0.646484375,0.5693359375,0.5078125,0.4892578125,0.5146484375,0.55859375,0.5859375,0.5693359375,0.509765625,0.4521484375,0.4482421875,0.498046875,0.5703125,0.62109375,0.6162109375,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.431640625,0.3994140625,0.3623046875,0.69921875,0.6640625,0.6142578125,0.578125,0.5703125,0.5771484375,0.6044921875,0.6298828125,0.6279296875,0.587890625,0.5205078125,0.4482421875,0.3837890625,0.3583984375,0.3916015625,0.47265625,0.5625,0.6181640625,0.6220703125,0.609375,0.5888671875,0.568359375,0.5546875,0.552734375,0.5595703125,0.5703125,0.5771484375,0.5673828125,0.5341796875,0.4833984375,0.4306640625,0.3935546875,0.376953125,0.3662109375,0.3525390625,0.3388671875,0.3291015625,0.3251953125,0.3251953125,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.365234375,0.30859375,0.2978515625,0.3583984375,0.4716796875,0.58984375,0.673828125,0.7470703125,0.8115234375,0.82421875,0.759765625,0.638671875,0.5146484375,0.4287109375,0.37109375,0.369140625,0.4287109375,0.5166015625,0.5859375,0.59765625,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.6025390625,0.611328125,0.5732421875,0.51171875,0.46484375,0.4599609375,0.5,0.5400390625,0.5419921875,0.509765625,0.4716796875,0.4580078125,0.4873046875,0.55078125,0.6123046875,0.62890625,0.5927734375,0.52734375,0.4716796875,0.4609375,0.5,0.5537109375,0.60546875,0.6259765625,0.5927734375,0.5185546875,0.4365234375,0.376953125,0.34375,0.3779296875,0.4765625,0.5927734375,0.671875,0.6787109375,0.6220703125,0.552734375,0.5068359375,0.5048828125,0.548828125,0.6142578125,0.662109375,0.673828125,0.6650390625,0.62890625,0.5830078125,0.5576171875,0.5693359375,0.61328125,0.673828125,0.728515625,0.75,0.71484375,0.6279296875,0.5263671875,0.453125,0.4287109375,0.4169921875,0.404296875,0.39453125,0.39453125,0.404296875,0.4169921875,0.4287109375,0.455078125,0.5341796875,0.6435546875,0.734375,0.767578125,0.7392578125,0.673828125,0.5908203125,0.4794921875,0.373046875,0.3173828125,0.326171875,0.375,0.4287109375,0.4755859375,0.5068359375,0.521484375,0.529296875,0.5439453125,0.5751953125,0.6220703125,0.6640625,0.666015625,0.61328125,0.5224609375,0.431640625,0.3798828125,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.423828125,0.4052734375,0.390625,0.40234375,0.4453125,0.5068359375,0.5703125,0.623046875,0.6376953125,0.611328125,0.5634765625,0.52734375,0.529296875,0.5703125,0.6083984375,0.591796875,0.5205078125,0.4267578125,0.35546875,0.3388671875,0.376953125,0.4306640625,0.4921875,0.5478515625,0.5869140625,0.60546875,0.61328125,0.6220703125,0.6376953125,0.666015625,0.6826171875,0.662109375,0.6025390625,0.5234375,0.4482421875,0.3740234375,0.30078125,0.251953125,0.24609375,0.2744140625,0.30859375,0.3251953125,0.34375,0.3935546875,0.4736328125,0.560546875,0.630859375,0.6669921875,0.673828125,0.673828125,0.673828125,0.669921875,0.66015625,0.646484375,0.6328125,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3857421875,0.4296875,0.44140625,0.416015625,0.3701171875,0.333984375,0.3251953125,0.322265625,0.314453125,0.314453125,0.3388671875,0.3876953125,0.4462890625,0.5,0.544921875,0.5673828125,0.5703125,0.568359375,0.580078125,0.6171875,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.439453125,0.4833984375,0.541015625,0.576171875,0.5673828125,0.517578125,0.4482421875,0.3740234375,0.306640625,0.2822265625,0.3232421875,0.4140625,0.5078125,0.5703125,0.6220703125,0.666015625,0.666015625,0.6064453125,0.501953125,0.3984375,0.3251953125,0.2734375,0.263671875,0.314453125,0.41015625,0.5078125,0.5654296875,0.5703125,0.564453125,0.5712890625,0.580078125,0.57421875,0.544921875,0.4990234375,0.4482421875,0.392578125,0.3349609375,0.310546875,0.34765625,0.4375,0.541015625,0.6220703125,0.68359375,0.693359375,0.6328125,0.5205078125,0.40234375,0.33203125,0.3251953125,0.3271484375,0.298828125,0.2548828125,0.224609375,0.228515625,0.267578125,0.3251953125,0.3818359375,0.4189453125,0.4306640625,0.4287109375,0.431640625,0.4541015625,0.5,0.544921875,0.5615234375,0.5322265625,0.4638671875,0.3876953125,0.3369140625,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.6494140625,0.744140625,0.810546875,0.810546875,0.744140625,0.6494140625,0.5703125,0.4990234375,0.4404296875,0.4189453125,0.4453125,0.5009765625,0.5498046875,0.5703125,0.5673828125,0.5185546875,0.439453125,0.3720703125,0.3505859375,0.3828125,0.4482421875,0.5205078125,0.587890625,0.6318359375,0.6435546875,0.630859375,0.6171875,0.6220703125,0.6416015625,0.69140625,0.75,0.78515625,0.7783203125,0.7333984375,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.6787109375,0.7001953125,0.71875,0.7119140625,0.673828125,0.61328125,0.55078125,0.4990234375,0.486328125,0.5166015625,0.5693359375,0.6103515625,0.6103515625,0.5703125,0.5107421875,0.4287109375,0.3544921875,0.322265625,0.341796875,0.3935546875,0.4482421875,0.51171875,0.611328125,0.712890625,0.767578125,0.755859375,0.6943359375,0.6220703125,0.5546875,0.5087890625,0.482421875,0.46484375,0.439453125,0.392578125,0.3251953125,0.26953125,0.283203125,0.3740234375,0.50390625,0.6142578125,0.654296875,0.6220703125,0.56640625,0.5,0.431640625,0.3798828125,0.349609375,0.3359375,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.4970703125,0.4736328125,0.48046875,0.5,0.5068359375,0.4833984375,0.4287109375,0.361328125,0.283203125,0.23046875,0.2353515625,0.296875,0.37890625,0.4482421875,0.521484375,0.62890625,0.732421875,0.783203125,0.7626953125,0.6962890625,0.6220703125,0.55859375,0.533203125,0.5498046875,0.587890625,0.6142578125,0.6025390625,0.55078125,0.5,0.4931640625,0.5322265625,0.5888671875,0.6279296875,0.62109375,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.6318359375,0.5966796875,0.55859375,0.53515625,0.5302734375,0.537109375,0.5615234375,0.5849609375,0.580078125,0.5361328125,0.4677734375,0.39453125,0.333984375,0.326171875,0.3857421875,0.4912109375,0.59375,0.6455078125,0.634765625,0.603515625,0.5556640625,0.5078125,0.48046875,0.4814453125,0.5029296875,0.5302734375,0.5556640625,0.5703125,0.5576171875,0.513671875,0.4521484375,0.3974609375,0.3642578125,0.3359375,0.3037109375,0.275390625,0.2587890625,0.2548828125,0.2578125,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.421875,0.3798828125,0.3779296875,0.4384765625,0.5458984375,0.6572265625,0.740234375,0.8134765625,0.875,0.880859375,0.8095703125,0.6826171875,0.5556640625,0.46875,0.4091796875,0.3994140625,0.4501953125,0.53515625,0.6103515625,0.6357421875,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.6435546875,0.6533203125,0.6240234375,0.568359375,0.5146484375,0.490234375,0.5,0.5107421875,0.4951171875,0.46875,0.4580078125,0.48046875,0.53515625,0.6044921875,0.6689453125,0.6982421875,0.673828125,0.607421875,0.5341796875,0.4931640625,0.5,0.517578125,0.525390625,0.513671875,0.4775390625,0.4296875,0.388671875,0.3642578125,0.3623046875,0.4228515625,0.533203125,0.642578125,0.7041015625,0.6953125,0.634765625,0.5673828125,0.5283203125,0.5380859375,0.5966796875,0.6728515625,0.7275390625,0.740234375,0.7333984375,0.70703125,0.673828125,0.654296875,0.6630859375,0.6962890625,0.740234375,0.78125,0.796875,0.7646484375,0.685546875,0.5859375,0.5078125,0.46875,0.439453125,0.4052734375,0.380859375,0.380859375,0.4052734375,0.439453125,0.46875,0.5107421875,0.60546875,0.7236328125,0.814453125,0.841796875,0.8076171875,0.740234375,0.6611328125,0.5654296875,0.4775390625,0.427734375,0.4248046875,0.447265625,0.46875,0.4892578125,0.51171875,0.5380859375,0.56640625,0.5927734375,0.615234375,0.634765625,0.6435546875,0.609375,0.5322265625,0.44140625,0.3720703125,0.34765625,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4638671875,0.4453125,0.4248046875,0.421875,0.443359375,0.484375,0.5302734375,0.5712890625,0.59375,0.587890625,0.560546875,0.5302734375,0.517578125,0.5302734375,0.5419921875,0.5244140625,0.4765625,0.4169921875,0.369140625,0.3525390625,0.3642578125,0.384765625,0.4169921875,0.4609375,0.513671875,0.564453125,0.60546875,0.634765625,0.6650390625,0.697265625,0.701171875,0.6572265625,0.5703125,0.4736328125,0.39453125,0.3173828125,0.2333984375,0.1708984375,0.154296875,0.181640625,0.2265625,0.2587890625,0.2958984375,0.373046875,0.4853515625,0.6015625,0.689453125,0.732421875,0.740234375,0.7412109375,0.744140625,0.740234375,0.7236328125,0.6953125,0.6630859375,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.302734375,0.3359375,0.3447265625,0.3251953125,0.2919921875,0.265625,0.2587890625,0.26171875,0.2802734375,0.3193359375,0.375,0.4326171875,0.4755859375,0.5,0.517578125,0.5341796875,0.5576171875,0.59375,0.6416015625,0.693359375,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4775390625,0.509765625,0.546875,0.5576171875,0.52734375,0.4658203125,0.39453125,0.3251953125,0.2783203125,0.28125,0.3388671875,0.4267578125,0.498046875,0.5302734375,0.5478515625,0.5556640625,0.5322265625,0.4716796875,0.388671875,0.3115234375,0.2587890625,0.224609375,0.240234375,0.3115234375,0.4140625,0.5029296875,0.54296875,0.5302734375,0.50390625,0.478515625,0.4580078125,0.44140625,0.427734375,0.412109375,0.39453125,0.3720703125,0.345703125,0.341796875,0.3828125,0.4638671875,0.556640625,0.634765625,0.6923828125,0.68359375,0.59375,0.4521484375,0.3203125,0.251953125,0.2587890625,0.2783203125,0.271484375,0.2421875,0.2119140625,0.201171875,0.21875,0.2587890625,0.3056640625,0.357421875,0.4052734375,0.44140625,0.46484375,0.4814453125,0.5,0.5126953125,0.4970703125,0.447265625,0.375,0.3076171875,0.267578125,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.609375,0.7041015625,0.7705078125,0.7705078125,0.7041015625,0.609375,0.5302734375,0.4560546875,0.388671875,0.35546875,0.375,0.43359375,0.494140625,0.5302734375,0.5419921875,0.50390625,0.4248046875,0.34765625,0.310546875,0.3310546875,0.39453125,0.4658203125,0.5322265625,0.580078125,0.6015625,0.6064453125,0.61328125,0.634765625,0.6689453125,0.7275390625,0.7900390625,0.826171875,0.8212890625,0.78515625,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7431640625,0.7529296875,0.7568359375,0.740234375,0.701171875,0.65234375,0.6044921875,0.5615234375,0.5302734375,0.51953125,0.5263671875,0.5400390625,0.5439453125,0.5302734375,0.505859375,0.4638671875,0.416015625,0.380859375,0.3681640625,0.376953125,0.39453125,0.4287109375,0.5126953125,0.6240234375,0.7099609375,0.736328125,0.7021484375,0.634765625,0.56640625,0.509765625,0.4658203125,0.427734375,0.3837890625,0.3271484375,0.2587890625,0.2001953125,0.205078125,0.2900390625,0.427734375,0.5615234375,0.634765625,0.634765625,0.611328125,0.5673828125,0.5,0.4189453125,0.3447265625,0.291015625,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5634765625,0.5400390625,0.53515625,0.5380859375,0.533203125,0.509765625,0.46875,0.4169921875,0.3486328125,0.2900390625,0.26953125,0.294921875,0.345703125,0.39453125,0.4541015625,0.55859375,0.673828125,0.748046875,0.7548828125,0.705078125,0.634765625,0.5703125,0.541015625,0.5546875,0.5966796875,0.634765625,0.6396484375,0.6044921875,0.5654296875,0.548828125,0.5576171875,0.576171875,0.5849609375,0.5693359375,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.4658203125,0.4560546875,0.4521484375,0.5185546875,0.4912109375,0.4755859375,0.4697265625,0.46875,0.4765625,0.505859375,0.53515625,0.5380859375,0.5009765625,0.4365234375,0.3642578125,0.306640625,0.3095703125,0.3837890625,0.4970703125,0.595703125,0.6328125,0.6044921875,0.55078125,0.4755859375,0.40234375,0.3671875,0.37890625,0.421875,0.46875,0.517578125,0.568359375,0.59375,0.57421875,0.5146484375,0.4462890625,0.39453125,0.3466796875,0.2978515625,0.2587890625,0.2421875,0.24609375,0.255859375,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.4990234375,0.4638671875,0.4521484375,0.48828125,0.568359375,0.662109375,0.740234375,0.814453125,0.8837890625,0.9033203125,0.84765625,0.734375,0.6142578125,0.5302734375,0.4658203125,0.44140625,0.4716796875,0.541015625,0.61328125,0.6484375,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.66015625,0.673828125,0.6630859375,0.6240234375,0.5703125,0.5244140625,0.5,0.474609375,0.435546875,0.408203125,0.421875,0.4794921875,0.5595703125,0.634765625,0.7041015625,0.7509765625,0.748046875,0.6904296875,0.603515625,0.53125,0.5,0.4755859375,0.4384765625,0.3974609375,0.369140625,0.36328125,0.3759765625,0.39453125,0.427734375,0.5087890625,0.6123046875,0.6904296875,0.7099609375,0.671875,0.6044921875,0.5380859375,0.501953125,0.5185546875,0.5849609375,0.6689453125,0.7265625,0.740234375,0.736328125,0.720703125,0.701171875,0.6904296875,0.6953125,0.71484375,0.740234375,0.767578125,0.787109375,0.779296875,0.7314453125,0.65625,0.58203125,0.5302734375,0.4794921875,0.419921875,0.3779296875,0.3779296875,0.419921875,0.4794921875,0.5302734375,0.5888671875,0.689453125,0.7978515625,0.8642578125,0.8642578125,0.8115234375,0.740234375,0.66796875,0.6015625,0.5546875,0.5380859375,0.541015625,0.54296875,0.5302734375,0.515625,0.5224609375,0.5498046875,0.5849609375,0.6123046875,0.619140625,0.6044921875,0.5751953125,0.5087890625,0.4248046875,0.3583984375,0.333984375,0.3525390625,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5244140625,0.501953125,0.46875,0.44140625,0.4326171875,0.4453125,0.46875,0.4970703125,0.52734375,0.546875,0.5439453125,0.5205078125,0.4912109375,0.46875,0.451171875,0.439453125,0.43359375,0.4296875,0.423828125,0.412109375,0.39453125,0.375,0.3603515625,0.369140625,0.4140625,0.4833984375,0.552734375,0.6044921875,0.6533203125,0.6982421875,0.70703125,0.654296875,0.5537109375,0.4453125,0.3642578125,0.28515625,0.1943359375,0.123046875,0.1064453125,0.1455078125,0.20703125,0.2587890625,0.314453125,0.40625,0.521484375,0.6298828125,0.703125,0.7353515625,0.740234375,0.7431640625,0.7529296875,0.7568359375,0.740234375,0.701171875,0.65234375,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2841796875,0.3037109375,0.30859375,0.2978515625,0.2783203125,0.2626953125,0.2587890625,0.267578125,0.3076171875,0.375,0.447265625,0.4970703125,0.5126953125,0.5,0.4833984375,0.4833984375,0.513671875,0.57421875,0.646484375,0.7060546875,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5361328125,0.5576171875,0.57421875,0.560546875,0.509765625,0.4375,0.3642578125,0.2998046875,0.2705078125,0.294921875,0.361328125,0.4345703125,0.4755859375,0.46875,0.44921875,0.42578125,0.39453125,0.3583984375,0.3203125,0.287109375,0.2587890625,0.244140625,0.27734375,0.3525390625,0.4384765625,0.4970703125,0.5048828125,0.46875,0.419921875,0.36328125,0.3173828125,0.30078125,0.314453125,0.341796875,0.3642578125,0.3779296875,0.3798828125,0.3828125,0.408203125,0.4609375,0.5322265625,0.6044921875,0.66015625,0.64453125,0.546875,0.4052734375,0.283203125,0.232421875,0.2587890625,0.2998046875,0.3173828125,0.3056640625,0.275390625,0.2470703125,0.2392578125,0.2587890625,0.29296875,0.3525390625,0.4248046875,0.4853515625,0.515625,0.515625,0.5,0.4755859375,0.4326171875,0.375,0.3193359375,0.2802734375,0.26171875,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.548828125,0.642578125,0.7099609375,0.7099609375,0.642578125,0.548828125,0.46875,0.3935546875,0.314453125,0.267578125,0.2783203125,0.33984375,0.4150390625,0.46875,0.5009765625,0.4794921875,0.4111328125,0.333984375,0.2900390625,0.302734375,0.3642578125,0.43359375,0.48828125,0.521484375,0.53515625,0.5439453125,0.564453125,0.6044921875,0.6552734375,0.720703125,0.7783203125,0.806640625,0.7978515625,0.7685546875,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7412109375,0.744140625,0.740234375,0.7236328125,0.6953125,0.6630859375,0.634765625,0.6025390625,0.552734375,0.49609375,0.4560546875,0.44140625,0.451171875,0.46875,0.4873046875,0.5,0.494140625,0.4658203125,0.4248046875,0.3876953125,0.3642578125,0.361328125,0.41796875,0.521484375,0.6240234375,0.6787109375,0.666015625,0.6044921875,0.537109375,0.484375,0.447265625,0.416015625,0.3798828125,0.3271484375,0.2587890625,0.1943359375,0.1728515625,0.22265625,0.3369140625,0.470703125,0.568359375,0.6044921875,0.62109375,0.619140625,0.580078125,0.4990234375,0.3994140625,0.3134765625,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6103515625,0.59375,0.5849609375,0.580078125,0.5712890625,0.5546875,0.5302734375,0.4970703125,0.4423828125,0.3798828125,0.3369140625,0.32421875,0.3388671875,0.3642578125,0.4052734375,0.4951171875,0.607421875,0.6904296875,0.7109375,0.6728515625,0.6044921875,0.5390625,0.505859375,0.5185546875,0.568359375,0.6240234375,0.650390625,0.634765625,0.609375,0.5849609375,0.5625,0.541015625,0.51953125,0.4951171875,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.41015625,0.3994140625,0.41015625,0.4248046875,0.4287109375,0.4375,0.4736328125,0.5146484375,0.5322265625,0.5068359375,0.4482421875,0.376953125,0.3203125,0.32421875,0.3955078125,0.498046875,0.5791015625,0.5966796875,0.55078125,0.48046875,0.384765625,0.30078125,0.2685546875,0.2978515625,0.36328125,0.4287109375,0.498046875,0.580078125,0.6416015625,0.646484375,0.59375,0.515625,0.4482421875,0.3857421875,0.3251953125,0.287109375,0.2802734375,0.298828125,0.3203125,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.552734375,0.515625,0.4833984375,0.484375,0.5283203125,0.599609375,0.673828125,0.7509765625,0.83203125,0.8759765625,0.8486328125,0.7587890625,0.65234375,0.5703125,0.5029296875,0.462890625,0.46875,0.517578125,0.580078125,0.62109375,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.6357421875,0.658203125,0.6708984375,0.65625,0.611328125,0.5537109375,0.5,0.4423828125,0.37890625,0.3427734375,0.3662109375,0.4453125,0.5419921875,0.6220703125,0.6953125,0.7626953125,0.787109375,0.74609375,0.6552734375,0.5615234375,0.5,0.44140625,0.3681640625,0.3095703125,0.2958984375,0.33203125,0.392578125,0.4482421875,0.509765625,0.6015625,0.6875,0.7236328125,0.6953125,0.6259765625,0.55078125,0.484375,0.4462890625,0.4609375,0.5234375,0.6044921875,0.66015625,0.673828125,0.671875,0.666015625,0.658203125,0.6533203125,0.6552734375,0.6630859375,0.673828125,0.689453125,0.720703125,0.7451171875,0.7392578125,0.697265625,0.6337890625,0.5703125,0.501953125,0.4208984375,0.3642578125,0.3642578125,0.4208984375,0.501953125,0.5703125,0.6416015625,0.7412109375,0.8291015625,0.8603515625,0.8251953125,0.7490234375,0.673828125,0.6083984375,0.5732421875,0.57421875,0.599609375,0.6201171875,0.6123046875,0.5703125,0.52734375,0.517578125,0.5419921875,0.580078125,0.6044921875,0.59375,0.55078125,0.490234375,0.4052734375,0.3271484375,0.294921875,0.3212890625,0.3837890625,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.5654296875,0.5419921875,0.5029296875,0.4609375,0.431640625,0.421875,0.4287109375,0.4462890625,0.4833984375,0.5234375,0.5400390625,0.5234375,0.48046875,0.4287109375,0.38671875,0.3818359375,0.4140625,0.462890625,0.4951171875,0.490234375,0.4482421875,0.392578125,0.33203125,0.2998046875,0.322265625,0.39453125,0.482421875,0.55078125,0.6171875,0.6826171875,0.7080078125,0.6669921875,0.5693359375,0.4599609375,0.376953125,0.2978515625,0.203125,0.1328125,0.1240234375,0.1767578125,0.2568359375,0.3251953125,0.3935546875,0.48046875,0.5693359375,0.6357421875,0.6669921875,0.673828125,0.673828125,0.6787109375,0.7001953125,0.71875,0.7119140625,0.673828125,0.61328125,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.3359375,0.34375,0.345703125,0.3408203125,0.3330078125,0.3271484375,0.3251953125,0.3369140625,0.3876953125,0.4638671875,0.5322265625,0.5615234375,0.544921875,0.5,0.4521484375,0.4306640625,0.4521484375,0.5146484375,0.59375,0.65234375,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5751953125,0.59375,0.6044921875,0.583984375,0.52734375,0.451171875,0.376953125,0.3154296875,0.2998046875,0.3359375,0.4013671875,0.45703125,0.4677734375,0.4287109375,0.37890625,0.3349609375,0.3095703125,0.30859375,0.3212890625,0.3310546875,0.3251953125,0.326171875,0.3671875,0.43359375,0.4912109375,0.5107421875,0.484375,0.4287109375,0.361328125,0.2802734375,0.2197265625,0.2099609375,0.25390625,0.3203125,0.376953125,0.4208984375,0.4375,0.4326171875,0.4267578125,0.4404296875,0.484375,0.55078125,0.607421875,0.5966796875,0.513671875,0.3974609375,0.3056640625,0.28125,0.3251953125,0.3837890625,0.4228515625,0.4267578125,0.3955078125,0.3525390625,0.32421875,0.3251953125,0.3466796875,0.4052734375,0.484375,0.546875,0.568359375,0.546875,0.5,0.4462890625,0.3876953125,0.3388671875,0.314453125,0.314453125,0.322265625,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.5087890625,0.6025390625,0.669921875,0.669921875,0.6025390625,0.5087890625,0.4287109375,0.3505859375,0.2626953125,0.2041015625,0.2080078125,0.2724609375,0.359375,0.4287109375,0.4775390625,0.474609375,0.4208984375,0.3505859375,0.306640625,0.3173828125,0.376953125,0.4423828125,0.48046875,0.4873046875,0.4765625,0.4736328125,0.4970703125,0.55078125,0.615234375,0.6806640625,0.7275390625,0.73828125,0.7177734375,0.689453125,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.673828125,0.673828125,0.669921875,0.66015625,0.646484375,0.6328125,0.6220703125,0.599609375,0.5390625,0.4560546875,0.388671875,0.3623046875,0.3828125,0.4287109375,0.484375,0.544921875,0.5810546875,0.5673828125,0.5087890625,0.435546875,0.376953125,0.341796875,0.3671875,0.4501953125,0.5478515625,0.611328125,0.609375,0.55078125,0.486328125,0.4482421875,0.4375,0.439453125,0.4287109375,0.390625,0.3251953125,0.25390625,0.19921875,0.1982421875,0.2666015625,0.3798828125,0.486328125,0.55078125,0.6044921875,0.6494140625,0.654296875,0.599609375,0.4990234375,0.3974609375,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.6123046875,0.6044921875,0.5986328125,0.59375,0.587890625,0.580078125,0.5703125,0.5537109375,0.5166015625,0.4638671875,0.4130859375,0.3798828125,0.3701171875,0.376953125,0.4013671875,0.4716796875,0.56640625,0.6376953125,0.6552734375,0.6181640625,0.55078125,0.484375,0.4462890625,0.45703125,0.509765625,0.5771484375,0.6201171875,0.6220703125,0.6083984375,0.583984375,0.546875,0.50390625,0.466796875,0.4423828125,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5693359375,0.5703125,0.57421875,0.3544921875,0.365234375,0.400390625,0.431640625,0.439453125,0.44921875,0.490234375,0.541015625,0.5693359375,0.5537109375,0.5,0.4296875,0.37109375,0.369140625,0.4267578125,0.5078125,0.5654296875,0.5654296875,0.509765625,0.4296875,0.3291015625,0.2490234375,0.23046875,0.2802734375,0.36328125,0.439453125,0.5185546875,0.6171875,0.693359375,0.7060546875,0.65234375,0.56640625,0.4892578125,0.419921875,0.3603515625,0.33203125,0.3427734375,0.37890625,0.412109375,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.5478515625,0.5078125,0.4580078125,0.43359375,0.453125,0.5087890625,0.5791015625,0.658203125,0.75,0.8125,0.8076171875,0.736328125,0.6396484375,0.5595703125,0.490234375,0.439453125,0.4296875,0.4638671875,0.5185546875,0.560546875,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5791015625,0.611328125,0.6474609375,0.6572265625,0.626953125,0.568359375,0.5,0.4248046875,0.341796875,0.291015625,0.3076171875,0.3876953125,0.48828125,0.5693359375,0.646484375,0.73046875,0.779296875,0.759765625,0.677734375,0.5771484375,0.5,0.4228515625,0.33203125,0.2666015625,0.263671875,0.3251953125,0.4140625,0.4892578125,0.56640625,0.66015625,0.7314453125,0.73828125,0.677734375,0.587890625,0.509765625,0.44140625,0.3974609375,0.3994140625,0.4482421875,0.517578125,0.5673828125,0.5791015625,0.5791015625,0.578125,0.5771484375,0.576171875,0.576171875,0.5771484375,0.5791015625,0.58984375,0.6298828125,0.677734375,0.701171875,0.6826171875,0.6279296875,0.5595703125,0.4814453125,0.3896484375,0.32421875,0.32421875,0.3896484375,0.4814453125,0.5595703125,0.6376953125,0.7333984375,0.8037109375,0.8095703125,0.7490234375,0.658203125,0.5791015625,0.5185546875,0.50390625,0.537109375,0.5908203125,0.626953125,0.6162109375,0.5595703125,0.5009765625,0.4853515625,0.51171875,0.556640625,0.583984375,0.5673828125,0.509765625,0.4326171875,0.33984375,0.2705078125,0.2646484375,0.32421875,0.412109375,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.556640625,0.541015625,0.5126953125,0.48046875,0.4541015625,0.4404296875,0.439453125,0.451171875,0.4921875,0.54296875,0.5712890625,0.5576171875,0.5068359375,0.439453125,0.3837890625,0.3798828125,0.4287109375,0.5,0.5498046875,0.544921875,0.4892578125,0.4140625,0.3251953125,0.2646484375,0.26953125,0.337890625,0.431640625,0.509765625,0.5859375,0.6689453125,0.7177734375,0.697265625,0.6142578125,0.5107421875,0.4296875,0.349609375,0.255859375,0.1875,0.185546875,0.25,0.341796875,0.419921875,0.4912109375,0.5625,0.6103515625,0.623046875,0.6064453125,0.5849609375,0.5791015625,0.5869140625,0.6201171875,0.65625,0.6669921875,0.638671875,0.5791015625,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.421875,0.4228515625,0.4228515625,0.421875,0.4208984375,0.419921875,0.419921875,0.4306640625,0.48046875,0.5498046875,0.599609375,0.6044921875,0.564453125,0.5,0.4345703125,0.3935546875,0.3974609375,0.4462890625,0.515625,0.56640625,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.56640625,0.591796875,0.6171875,0.61328125,0.5703125,0.5029296875,0.4296875,0.3701171875,0.3583984375,0.3984375,0.4599609375,0.5029296875,0.49609375,0.439453125,0.373046875,0.3212890625,0.3056640625,0.330078125,0.3759765625,0.412109375,0.419921875,0.4287109375,0.470703125,0.5263671875,0.5625,0.5546875,0.5068359375,0.439453125,0.3623046875,0.26953125,0.203125,0.201171875,0.2646484375,0.353515625,0.4296875,0.48828125,0.505859375,0.4833984375,0.4453125,0.4248046875,0.447265625,0.509765625,0.5673828125,0.568359375,0.5087890625,0.42578125,0.365234375,0.36328125,0.419921875,0.4873046875,0.5380859375,0.5498046875,0.51953125,0.4677734375,0.427734375,0.419921875,0.4326171875,0.4833984375,0.552734375,0.6015625,0.60546875,0.564453125,0.5,0.4306640625,0.37109375,0.3408203125,0.3486328125,0.3818359375,0.412109375,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.51953125,0.61328125,0.6806640625,0.6806640625,0.61328125,0.51953125,0.439453125,0.3603515625,0.2666015625,0.201171875,0.2021484375,0.2685546875,0.361328125,0.439453125,0.498046875,0.505859375,0.462890625,0.400390625,0.359375,0.3701171875,0.4296875,0.4912109375,0.5126953125,0.4921875,0.453125,0.4306640625,0.44921875,0.509765625,0.5791015625,0.6396484375,0.669921875,0.6591796875,0.6220703125,0.5888671875,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.578125,0.576171875,0.5732421875,0.5712890625,0.5693359375,0.5546875,0.498046875,0.41796875,0.35546875,0.3408203125,0.3759765625,0.439453125,0.515625,0.6044921875,0.6650390625,0.6630859375,0.5966796875,0.505859375,0.4296875,0.375,0.3759765625,0.4345703125,0.515625,0.5712890625,0.568359375,0.509765625,0.447265625,0.42578125,0.4462890625,0.4833984375,0.5029296875,0.4814453125,0.419921875,0.3427734375,0.26171875,0.216796875,0.2421875,0.328125,0.4306640625,0.509765625,0.583984375,0.6630859375,0.7080078125,0.685546875,0.6015625,0.5,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5673828125,0.56640625,0.564453125,0.5634765625,0.5625,0.560546875,0.5595703125,0.5546875,0.5361328125,0.505859375,0.4716796875,0.4443359375,0.4306640625,0.4296875,0.443359375,0.49609375,0.5673828125,0.6181640625,0.62109375,0.5771484375,0.509765625,0.44140625,0.3974609375,0.3984375,0.4453125,0.51171875,0.5595703125,0.5693359375,0.564453125,0.548828125,0.5205078125,0.48828125,0.4599609375,0.4443359375,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.396484375,0.44140625,0.5068359375,0.556640625,0.5693359375,0.580078125,0.62109375,0.671875,0.697265625,0.681640625,0.6279296875,0.5595703125,0.4990234375,0.4794921875,0.501953125,0.5419921875,0.5654296875,0.5478515625,0.4892578125,0.4150390625,0.3310546875,0.28125,0.2978515625,0.3779296875,0.478515625,0.5595703125,0.6376953125,0.724609375,0.779296875,0.765625,0.6875,0.5888671875,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.576171875,0.560546875,0.5302734375,0.494140625,0.462890625,0.4443359375,0.439453125,0.4287109375,0.38671875,0.333984375,0.3046875,0.3193359375,0.37109375,0.439453125,0.5166015625,0.60546875,0.6650390625,0.6591796875,0.58984375,0.49609375,0.419921875,0.353515625,0.3046875,0.29296875,0.322265625,0.373046875,0.412109375,0.419921875,0.4189453125,0.419921875,0.4228515625,0.4267578125,0.4296875,0.4306640625,0.4296875,0.439453125,0.48828125,0.5576171875,0.6064453125,0.6103515625,0.5673828125,0.5,0.4189453125,0.318359375,0.23828125,0.220703125,0.271484375,0.3544921875,0.4296875,0.5078125,0.6083984375,0.689453125,0.7099609375,0.6611328125,0.5771484375,0.5,0.419921875,0.328125,0.263671875,0.265625,0.3310546875,0.4228515625,0.5,0.576171875,0.66796875,0.7353515625,0.73828125,0.6767578125,0.5869140625,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.421875,0.423828125,0.42578125,0.42578125,0.423828125,0.421875,0.419921875,0.427734375,0.46875,0.5244140625,0.5595703125,0.5517578125,0.505859375,0.439453125,0.36328125,0.2724609375,0.20703125,0.2041015625,0.265625,0.353515625,0.4296875,0.505859375,0.59765625,0.6640625,0.6650390625,0.6015625,0.5087890625,0.4296875,0.3701171875,0.3603515625,0.4033203125,0.466796875,0.5087890625,0.4990234375,0.439453125,0.380859375,0.375,0.4248046875,0.498046875,0.5498046875,0.546875,0.4892578125,0.4111328125,0.318359375,0.251953125,0.2509765625,0.31640625,0.41015625,0.4892578125,0.5576171875,0.6015625,0.6005859375,0.5537109375,0.4873046875,0.439453125,0.4296875,0.431640625,0.43359375,0.4365234375,0.4384765625,0.439453125,0.439453125,0.439453125,0.4423828125,0.45703125,0.4833984375,0.515625,0.5419921875,0.556640625,0.5595703125,0.5693359375,0.6123046875,0.6689453125,0.7041015625,0.6953125,0.646484375,0.5791015625,0.5185546875,0.49609375,0.5146484375,0.548828125,0.568359375,0.548828125,0.4892578125,0.4130859375,0.322265625,0.2578125,0.2568359375,0.3212890625,0.412109375,0.4892578125,0.5693359375,0.671875,0.7578125,0.78125,0.736328125,0.6552734375,0.5791015625,0.5009765625,0.4091796875,0.3427734375,0.3408203125,0.4033203125,0.4931640625,0.5693359375,0.6318359375,0.6640625,0.6435546875,0.5751953125,0.490234375,0.4326171875,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.4248046875,0.3818359375,0.3837890625,0.4306640625,0.4970703125,0.546875,0.5595703125,0.560546875,0.5625,0.5625,0.5615234375,0.560546875,0.5595703125,0.5595703125,0.568359375,0.6025390625,0.6435546875,0.66015625,0.6357421875,0.5791015625,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.4345703125,0.4541015625,0.48828125,0.5263671875,0.55859375,0.576171875,0.5791015625,0.576171875,0.55859375,0.5283203125,0.4912109375,0.4599609375,0.443359375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4521484375,0.5078125,0.5859375,0.6474609375,0.6611328125,0.625,0.5595703125,0.5009765625,0.4931640625,0.537109375,0.6015625,0.6455078125,0.63671875,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.4931640625,0.4013671875,0.3349609375,0.333984375,0.3974609375,0.490234375,0.5693359375,0.626953125,0.6279296875,0.5703125,0.48828125,0.4306640625,0.431640625,0.4892578125,0.55078125,0.5703125,0.5458984375,0.5029296875,0.478515625,0.498046875,0.5595703125,0.62890625,0.681640625,0.6962890625,0.66796875,0.6162109375,0.5771484375,0.5693359375,0.5791015625,0.6142578125,0.6533203125,0.666015625,0.638671875,0.5791015625,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.412109375,0.3876953125,0.3681640625,0.3759765625,0.421875,0.4892578125,0.5595703125,0.6357421875,0.724609375,0.7890625,0.7890625,0.724609375,0.6357421875,0.5595703125,0.4833984375,0.392578125,0.3291015625,0.330078125,0.396484375,0.490234375,0.5693359375,0.6298828125,0.642578125,0.6044921875,0.544921875,0.5048828125,0.5126953125,0.5693359375,0.625,0.626953125,0.57421875,0.4990234375,0.4482421875,0.4521484375,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.431640625,0.435546875,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.4140625,0.3935546875,0.3779296875,0.3916015625,0.439453125,0.5087890625,0.5791015625,0.6552734375,0.7470703125,0.8134765625,0.814453125,0.7509765625,0.658203125,0.5791015625,0.517578125,0.49609375,0.515625,0.552734375,0.5732421875,0.5517578125,0.4892578125,0.431640625,0.4306640625,0.48828125,0.5703125,0.6279296875,0.626953125,0.5693359375,0.48828125,0.3876953125,0.3095703125,0.2939453125,0.3466796875,0.4326171875,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.44140625,0.4580078125,0.490234375,0.5283203125,0.560546875,0.5771484375,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.4248046875,0.443359375,0.4755859375,0.513671875,0.5458984375,0.564453125,0.5693359375,0.5673828125,0.5517578125,0.5224609375,0.486328125,0.45703125,0.44140625,0.439453125,0.4404296875,0.4384765625,0.4326171875,0.4462890625,0.486328125,0.5498046875,0.6015625,0.6220703125,0.638671875,0.67578125,0.7119140625,0.7197265625,0.689453125,0.6328125,0.5703125,0.5146484375,0.484375,0.484375,0.4990234375,0.5078125,0.4921875,0.4482421875,0.3916015625,0.3271484375,0.291015625,0.314453125,0.3935546875,0.490234375,0.5703125,0.6474609375,0.7333984375,0.7880859375,0.779296875,0.7099609375,0.62109375,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6689453125,0.6455078125,0.5986328125,0.5380859375,0.482421875,0.4443359375,0.4287109375,0.41015625,0.3671875,0.3193359375,0.2978515625,0.3173828125,0.3681640625,0.4287109375,0.4931640625,0.5556640625,0.5810546875,0.5498046875,0.4716796875,0.3857421875,0.3251953125,0.27734375,0.24609375,0.244140625,0.2705078125,0.306640625,0.3291015625,0.3251953125,0.318359375,0.3232421875,0.33984375,0.3623046875,0.3798828125,0.384765625,0.376953125,0.3798828125,0.4287109375,0.5078125,0.5751953125,0.5966796875,0.5654296875,0.5,0.419921875,0.3232421875,0.244140625,0.220703125,0.2568359375,0.3203125,0.376953125,0.439453125,0.533203125,0.6240234375,0.6650390625,0.640625,0.5732421875,0.5,0.4228515625,0.3408203125,0.2890625,0.2978515625,0.361328125,0.4404296875,0.5,0.55859375,0.6376953125,0.705078125,0.72265625,0.6845703125,0.6171875,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.3369140625,0.3505859375,0.3603515625,0.3603515625,0.3505859375,0.3369140625,0.3251953125,0.3251953125,0.359375,0.4189453125,0.4716796875,0.4931640625,0.474609375,0.4287109375,0.37109375,0.2978515625,0.2392578125,0.2255859375,0.26171875,0.322265625,0.376953125,0.4365234375,0.515625,0.5791015625,0.587890625,0.5361328125,0.4541015625,0.376953125,0.318359375,0.314453125,0.3662109375,0.4404296875,0.4921875,0.4873046875,0.4287109375,0.3681640625,0.353515625,0.390625,0.451171875,0.498046875,0.4970703125,0.4482421875,0.3779296875,0.2919921875,0.2265625,0.22265625,0.28125,0.369140625,0.4482421875,0.5146484375,0.552734375,0.5419921875,0.4892578125,0.421875,0.37890625,0.376953125,0.388671875,0.40234375,0.416015625,0.4248046875,0.4287109375,0.4296875,0.4287109375,0.4326171875,0.44921875,0.48046875,0.5185546875,0.5498046875,0.56640625,0.5703125,0.5810546875,0.62890625,0.6982421875,0.7509765625,0.7626953125,0.73046875,0.673828125,0.615234375,0.5732421875,0.548828125,0.537109375,0.5234375,0.494140625,0.4482421875,0.3896484375,0.31640625,0.26171875,0.2568359375,0.306640625,0.380859375,0.4482421875,0.521484375,0.62890625,0.736328125,0.7958984375,0.7890625,0.736328125,0.673828125,0.60546875,0.5244140625,0.4638671875,0.4541015625,0.498046875,0.564453125,0.6220703125,0.6640625,0.666015625,0.609375,0.5087890625,0.4052734375,0.33984375,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.3994140625,0.37109375,0.380859375,0.4306640625,0.498046875,0.5498046875,0.5703125,0.580078125,0.587890625,0.58984375,0.5849609375,0.5771484375,0.5712890625,0.5703125,0.578125,0.611328125,0.6533203125,0.673828125,0.658203125,0.611328125,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.39453125,0.4375,0.505859375,0.580078125,0.6376953125,0.66796875,0.673828125,0.66796875,0.6376953125,0.5830078125,0.5185546875,0.46484375,0.4345703125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4404296875,0.4931640625,0.5703125,0.6337890625,0.654296875,0.6259765625,0.5703125,0.521484375,0.5244140625,0.58203125,0.6611328125,0.71875,0.7216796875,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.5625,0.4833984375,0.419921875,0.4111328125,0.462890625,0.544921875,0.6220703125,0.677734375,0.6669921875,0.587890625,0.4814453125,0.40234375,0.3916015625,0.4482421875,0.5107421875,0.5361328125,0.5234375,0.4951171875,0.4814453125,0.5078125,0.5703125,0.6396484375,0.6923828125,0.708984375,0.6884765625,0.6484375,0.6201171875,0.6220703125,0.638671875,0.673828125,0.705078125,0.7080078125,0.673828125,0.6142578125,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.314453125,0.306640625,0.3212890625,0.369140625,0.4404296875,0.513671875,0.5703125,0.626953125,0.693359375,0.7412109375,0.7412109375,0.693359375,0.626953125,0.5703125,0.51171875,0.439453125,0.3876953125,0.392578125,0.455078125,0.5439453125,0.6220703125,0.6845703125,0.70703125,0.6826171875,0.630859375,0.5869140625,0.58203125,0.6220703125,0.6611328125,0.654296875,0.6025390625,0.5361328125,0.4931640625,0.5,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.3896484375,0.41015625,0.4306640625,0.4443359375,0.4462890625,0.439453125,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.326171875,0.3388671875,0.37890625,0.44921875,0.5361328125,0.615234375,0.673828125,0.7333984375,0.8115234375,0.875,0.8837890625,0.83203125,0.75,0.673828125,0.6083984375,0.5703125,0.5595703125,0.5615234375,0.55078125,0.5126953125,0.4482421875,0.3916015625,0.40234375,0.4814453125,0.587890625,0.6669921875,0.677734375,0.6220703125,0.5419921875,0.4453125,0.3701171875,0.3564453125,0.4052734375,0.4833984375,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.42578125,0.4541015625,0.5146484375,0.587890625,0.6484375,0.6767578125,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.3408203125,0.37890625,0.4384765625,0.5087890625,0.568359375,0.6064453125,0.6220703125,0.6259765625,0.6044921875,0.5556640625,0.4951171875,0.4462890625,0.4248046875,0.4287109375,0.435546875,0.423828125,0.3955078125,0.4912109375,0.5078125,0.552734375,0.6025390625,0.634765625,0.6640625,0.697265625,0.712890625,0.6923828125,0.6416015625,0.580078125,0.5302734375,0.4853515625,0.4462890625,0.421875,0.4140625,0.4140625,0.41015625,0.39453125,0.369140625,0.330078125,0.3037109375,0.31640625,0.3740234375,0.4541015625,0.5302734375,0.607421875,0.6953125,0.7587890625,0.767578125,0.72265625,0.6572265625,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.7373046875,0.7197265625,0.6787109375,0.619140625,0.5537109375,0.5009765625,0.46875,0.4375,0.3916015625,0.3525390625,0.3447265625,0.373046875,0.421875,0.46875,0.5107421875,0.529296875,0.5048828125,0.4384765625,0.3544921875,0.2890625,0.2587890625,0.244140625,0.24609375,0.26171875,0.28125,0.2900390625,0.2822265625,0.2587890625,0.2392578125,0.248046875,0.2861328125,0.3369140625,0.375,0.3837890625,0.3642578125,0.3515625,0.390625,0.46875,0.546875,0.5830078125,0.5625,0.5,0.423828125,0.34375,0.2861328125,0.2734375,0.2998046875,0.3388671875,0.3642578125,0.3955078125,0.4677734375,0.5546875,0.61328125,0.6162109375,0.568359375,0.5,0.4267578125,0.36328125,0.3359375,0.3583984375,0.416015625,0.470703125,0.5,0.5263671875,0.580078125,0.640625,0.6796875,0.6806640625,0.6484375,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2880859375,0.3232421875,0.34765625,0.34765625,0.3232421875,0.2880859375,0.2587890625,0.2412109375,0.2578125,0.314453125,0.388671875,0.4521484375,0.4794921875,0.46875,0.4453125,0.408203125,0.3671875,0.3388671875,0.3330078125,0.345703125,0.3642578125,0.392578125,0.4482421875,0.5048828125,0.52734375,0.5,0.4365234375,0.3642578125,0.306640625,0.30859375,0.3720703125,0.4609375,0.5244140625,0.5263671875,0.46875,0.404296875,0.369140625,0.373046875,0.40234375,0.4306640625,0.4306640625,0.39453125,0.33984375,0.265625,0.2041015625,0.1923828125,0.2392578125,0.318359375,0.39453125,0.4599609375,0.4931640625,0.48046875,0.4306640625,0.375,0.3486328125,0.3642578125,0.392578125,0.423828125,0.4521484375,0.46875,0.47265625,0.470703125,0.46875,0.470703125,0.4775390625,0.4912109375,0.5078125,0.521484375,0.5283203125,0.5302734375,0.541015625,0.5927734375,0.673828125,0.748046875,0.787109375,0.779296875,0.740234375,0.6904296875,0.626953125,0.5546875,0.4912109375,0.4443359375,0.4150390625,0.39453125,0.3701171875,0.3291015625,0.2919921875,0.28125,0.3037109375,0.34765625,0.39453125,0.453125,0.5546875,0.673828125,0.7646484375,0.7998046875,0.7822265625,0.740234375,0.6904296875,0.6337890625,0.587890625,0.5712890625,0.5849609375,0.6123046875,0.634765625,0.64453125,0.61328125,0.5322265625,0.4248046875,0.3271484375,0.2705078125,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.375,0.3623046875,0.3701171875,0.40234375,0.451171875,0.498046875,0.5302734375,0.5556640625,0.5751953125,0.580078125,0.568359375,0.548828125,0.533203125,0.5302734375,0.5380859375,0.5732421875,0.6240234375,0.6630859375,0.6708984375,0.6474609375,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.640625,0.705078125,0.7353515625,0.740234375,0.7333984375,0.701171875,0.640625,0.568359375,0.5087890625,0.4755859375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4765625,0.5107421875,0.5576171875,0.5927734375,0.5986328125,0.572265625,0.5302734375,0.4970703125,0.515625,0.587890625,0.681640625,0.75390625,0.7734375,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.6064453125,0.55078125,0.494140625,0.4716796875,0.4990234375,0.5625,0.634765625,0.689453125,0.6708984375,0.5771484375,0.4521484375,0.3583984375,0.33984375,0.39453125,0.45703125,0.484375,0.474609375,0.44921875,0.439453125,0.466796875,0.5302734375,0.5986328125,0.6484375,0.6650390625,0.6513671875,0.626953125,0.6171875,0.634765625,0.666015625,0.7080078125,0.740234375,0.740234375,0.705078125,0.6533203125,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.2373046875,0.2392578125,0.28125,0.35546875,0.439453125,0.5009765625,0.5302734375,0.55078125,0.576171875,0.59375,0.59375,0.576171875,0.55078125,0.5302734375,0.50390625,0.4609375,0.427734375,0.4326171875,0.484375,0.560546875,0.634765625,0.7021484375,0.7431640625,0.7421875,0.7041015625,0.654296875,0.626953125,0.634765625,0.646484375,0.6298828125,0.5927734375,0.5576171875,0.5458984375,0.5634765625,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.3955078125,0.443359375,0.4912109375,0.5185546875,0.517578125,0.49609375,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.267578125,0.314453125,0.408203125,0.52734375,0.6376953125,0.7099609375,0.740234375,0.7685546875,0.82421875,0.880859375,0.9033203125,0.8759765625,0.8125,0.740234375,0.671875,0.619140625,0.5830078125,0.5517578125,0.5146484375,0.4619140625,0.39453125,0.33984375,0.3583984375,0.4521484375,0.5771484375,0.6708984375,0.689453125,0.634765625,0.55859375,0.4755859375,0.421875,0.4248046875,0.48046875,0.55078125,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.453125,0.482421875,0.5576171875,0.6513671875,0.7265625,0.755859375,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2900390625,0.3388671875,0.408203125,0.4853515625,0.5546875,0.6044921875,0.634765625,0.6533203125,0.63671875,0.5849609375,0.5185546875,0.466796875,0.451171875,0.46875,0.486328125,0.46484375,0.4033203125,0.5078125,0.4912109375,0.5126953125,0.5576171875,0.6044921875,0.6494140625,0.681640625,0.6787109375,0.6357421875,0.56640625,0.50390625,0.46875,0.4384765625,0.3955078125,0.3525390625,0.328125,0.328125,0.3447265625,0.3642578125,0.375,0.3603515625,0.3330078125,0.3232421875,0.345703125,0.3994140625,0.46875,0.546875,0.634765625,0.7041015625,0.728515625,0.7080078125,0.6669921875,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.7412109375,0.7421875,0.7294921875,0.6923828125,0.6376953125,0.5791015625,0.5302734375,0.482421875,0.43359375,0.4052734375,0.4140625,0.4521484375,0.498046875,0.5302734375,0.546875,0.521484375,0.4521484375,0.361328125,0.28515625,0.25,0.2587890625,0.283203125,0.32421875,0.361328125,0.3720703125,0.349609375,0.3056640625,0.2587890625,0.224609375,0.234375,0.2900390625,0.36328125,0.4189453125,0.4287109375,0.39453125,0.3623046875,0.3837890625,0.4521484375,0.5302734375,0.57421875,0.560546875,0.5,0.4296875,0.3759765625,0.353515625,0.36328125,0.390625,0.4052734375,0.39453125,0.388671875,0.4287109375,0.501953125,0.568359375,0.5927734375,0.564453125,0.5,0.4326171875,0.390625,0.3916015625,0.4306640625,0.48046875,0.5078125,0.5,0.48828125,0.505859375,0.5517578125,0.607421875,0.646484375,0.6552734375,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3095703125,0.369140625,0.4111328125,0.4111328125,0.369140625,0.3095703125,0.2587890625,0.21875,0.20703125,0.2451171875,0.328125,0.42578125,0.4990234375,0.5302734375,0.5478515625,0.556640625,0.5439453125,0.5078125,0.4599609375,0.4189453125,0.39453125,0.3857421875,0.4140625,0.4638671875,0.501953125,0.5029296875,0.4619140625,0.39453125,0.337890625,0.34375,0.4140625,0.5107421875,0.5810546875,0.5869140625,0.5302734375,0.4599609375,0.40234375,0.3720703125,0.3701171875,0.380859375,0.3837890625,0.3642578125,0.328125,0.267578125,0.208984375,0.189453125,0.22265625,0.291015625,0.3642578125,0.4287109375,0.4580078125,0.4443359375,0.40234375,0.3642578125,0.359375,0.39453125,0.44140625,0.4912109375,0.5302734375,0.546875,0.54296875,0.533203125,0.5302734375,0.5283203125,0.521484375,0.5078125,0.4912109375,0.4775390625,0.470703125,0.46875,0.4794921875,0.52734375,0.607421875,0.6904296875,0.74609375,0.759765625,0.740234375,0.703125,0.626953125,0.5244140625,0.427734375,0.3671875,0.3505859375,0.3642578125,0.37890625,0.376953125,0.361328125,0.341796875,0.3330078125,0.3408203125,0.3642578125,0.40234375,0.482421875,0.5908203125,0.6904296875,0.75,0.7607421875,0.740234375,0.7138671875,0.689453125,0.66796875,0.6513671875,0.6376953125,0.6220703125,0.6044921875,0.578125,0.5224609375,0.44140625,0.3583984375,0.294921875,0.2646484375,0.2587890625,0.2587890625,0.2607421875,0.26953125,0.2900390625,0.31640625,0.3427734375,0.3642578125,0.37890625,0.37890625,0.3720703125,0.373046875,0.390625,0.4248046875,0.46875,0.513671875,0.546875,0.5546875,0.53515625,0.501953125,0.4755859375,0.46875,0.4765625,0.51171875,0.568359375,0.6240234375,0.65625,0.6572265625,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.4462890625,0.521484375,0.607421875,0.6796875,0.72265625,0.73828125,0.740234375,0.7353515625,0.7099609375,0.6630859375,0.607421875,0.560546875,0.53515625,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5322265625,0.5400390625,0.5458984375,0.541015625,0.5224609375,0.49609375,0.46875,0.453125,0.482421875,0.5576171875,0.6513671875,0.7265625,0.755859375,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.61328125,0.5849609375,0.53515625,0.4970703125,0.49609375,0.537109375,0.6044921875,0.6591796875,0.640625,0.546875,0.421875,0.328125,0.3095703125,0.3642578125,0.4267578125,0.4501953125,0.4326171875,0.400390625,0.3837890625,0.4072265625,0.46875,0.5361328125,0.578125,0.587890625,0.57421875,0.5595703125,0.5673828125,0.6044921875,0.6533203125,0.705078125,0.740234375,0.740234375,0.7080078125,0.666015625,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.22265625,0.2255859375,0.2783203125,0.361328125,0.4384765625,0.4765625,0.46875,0.4482421875,0.4228515625,0.4052734375,0.4052734375,0.4228515625,0.4482421875,0.46875,0.48046875,0.4697265625,0.44921875,0.447265625,0.4765625,0.5341796875,0.6044921875,0.6767578125,0.740234375,0.767578125,0.7451171875,0.6884765625,0.6328125,0.6044921875,0.5830078125,0.5576171875,0.541015625,0.5458984375,0.572265625,0.6064453125,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.4482421875,0.5234375,0.5966796875,0.6318359375,0.6201171875,0.5771484375,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.2724609375,0.341796875,0.4638671875,0.5986328125,0.703125,0.7470703125,0.740234375,0.7314453125,0.759765625,0.8095703125,0.84765625,0.8486328125,0.8076171875,0.740234375,0.671875,0.615234375,0.5712890625,0.533203125,0.4892578125,0.4326171875,0.3642578125,0.3095703125,0.328125,0.421875,0.546875,0.640625,0.6591796875,0.6044921875,0.5322265625,0.4677734375,0.44140625,0.46875,0.5341796875,0.5986328125,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.4970703125,0.515625,0.587890625,0.681640625,0.75390625,0.7734375,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3046875,0.353515625,0.4052734375,0.4580078125,0.509765625,0.55859375,0.6044921875,0.640625,0.638671875,0.5966796875,0.5380859375,0.49609375,0.494140625,0.5302734375,0.5615234375,0.53515625,0.44921875,0.486328125,0.4462890625,0.44921875,0.4921875,0.55078125,0.609375,0.6455078125,0.6376953125,0.5830078125,0.5087890625,0.4501953125,0.4287109375,0.41015625,0.3671875,0.3154296875,0.28515625,0.2900390625,0.3271484375,0.376953125,0.41796875,0.419921875,0.3876953125,0.349609375,0.3359375,0.365234375,0.4287109375,0.5048828125,0.5869140625,0.650390625,0.67578125,0.6630859375,0.6376953125,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.6796875,0.7021484375,0.7255859375,0.7236328125,0.689453125,0.6318359375,0.5703125,0.5087890625,0.4580078125,0.4384765625,0.4609375,0.5078125,0.5517578125,0.5703125,0.5673828125,0.515625,0.4248046875,0.3349609375,0.28125,0.283203125,0.3251953125,0.3837890625,0.45703125,0.51171875,0.5166015625,0.466796875,0.392578125,0.3251953125,0.27734375,0.283203125,0.3447265625,0.4287109375,0.490234375,0.49609375,0.4482421875,0.3994140625,0.40234375,0.4560546875,0.5263671875,0.5703125,0.5595703125,0.5,0.435546875,0.40625,0.419921875,0.4580078125,0.490234375,0.48828125,0.4482421875,0.4091796875,0.419921875,0.4755859375,0.541015625,0.5771484375,0.560546875,0.5,0.4365234375,0.4140625,0.4384765625,0.490234375,0.5341796875,0.5390625,0.5,0.4541015625,0.4375,0.4638671875,0.521484375,0.5849609375,0.6220703125,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3935546875,0.474609375,0.53125,0.53125,0.474609375,0.3935546875,0.3251953125,0.2646484375,0.2197265625,0.224609375,0.2939453125,0.4033203125,0.505859375,0.5703125,0.6240234375,0.67578125,0.6962890625,0.6640625,0.5888671875,0.5078125,0.4482421875,0.408203125,0.4130859375,0.45703125,0.5087890625,0.533203125,0.5107421875,0.4482421875,0.390625,0.39453125,0.462890625,0.5556640625,0.623046875,0.626953125,0.5703125,0.4970703125,0.427734375,0.37890625,0.3623046875,0.37109375,0.3818359375,0.376953125,0.357421875,0.3076171875,0.2529296875,0.2265625,0.248046875,0.3056640625,0.376953125,0.4404296875,0.4658203125,0.44921875,0.4111328125,0.384765625,0.396484375,0.4482421875,0.5107421875,0.5703125,0.6083984375,0.615234375,0.5966796875,0.576171875,0.5703125,0.56640625,0.5498046875,0.5185546875,0.48046875,0.44921875,0.4326171875,0.4287109375,0.4365234375,0.4716796875,0.5341796875,0.603515625,0.6552734375,0.677734375,0.673828125,0.6494140625,0.576171875,0.4697265625,0.375,0.326171875,0.3330078125,0.376953125,0.42578125,0.45703125,0.4580078125,0.4326171875,0.396484375,0.3740234375,0.376953125,0.3955078125,0.4453125,0.521484375,0.599609375,0.6552734375,0.677734375,0.673828125,0.66796875,0.6748046875,0.68359375,0.6767578125,0.6484375,0.6025390625,0.55078125,0.49609375,0.431640625,0.3720703125,0.333984375,0.3212890625,0.32421875,0.3251953125,0.3193359375,0.296875,0.26953125,0.26171875,0.283203125,0.326171875,0.376953125,0.419921875,0.427734375,0.40234375,0.369140625,0.353515625,0.375,0.4287109375,0.48828125,0.533203125,0.544921875,0.5185546875,0.4736328125,0.4375,0.4287109375,0.4345703125,0.46484375,0.5146484375,0.5703125,0.611328125,0.626953125,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.6806640625,0.6845703125,0.6767578125,0.673828125,0.6708984375,0.658203125,0.6357421875,0.6083984375,0.5849609375,0.572265625,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.568359375,0.556640625,0.533203125,0.5,0.466796875,0.4423828125,0.4287109375,0.42578125,0.4541015625,0.5146484375,0.587890625,0.6484375,0.6767578125,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.5908203125,0.5859375,0.5419921875,0.490234375,0.4658203125,0.48828125,0.55078125,0.607421875,0.5966796875,0.517578125,0.4111328125,0.33203125,0.3212890625,0.376953125,0.4384765625,0.455078125,0.4267578125,0.3798828125,0.3505859375,0.3681640625,0.4287109375,0.4931640625,0.5244140625,0.51953125,0.4951171875,0.48046875,0.4990234375,0.55078125,0.6142578125,0.673828125,0.7080078125,0.705078125,0.673828125,0.638671875,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.275390625,0.2724609375,0.322265625,0.3974609375,0.45703125,0.4677734375,0.4287109375,0.3720703125,0.3056640625,0.2578125,0.2578125,0.3056640625,0.3720703125,0.4287109375,0.4716796875,0.4814453125,0.46484375,0.4453125,0.4482421875,0.4853515625,0.55078125,0.6279296875,0.7099609375,0.76171875,0.7529296875,0.689453125,0.6103515625,0.55078125,0.501953125,0.466796875,0.4658203125,0.501953125,0.556640625,0.6025390625,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.5185546875,0.6142578125,0.6982421875,0.73046875,0.701171875,0.6357421875,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.3408203125,0.4130859375,0.5283203125,0.6416015625,0.7099609375,0.71484375,0.673828125,0.6337890625,0.638671875,0.6826171875,0.734375,0.7587890625,0.736328125,0.673828125,0.6064453125,0.5595703125,0.5341796875,0.5166015625,0.490234375,0.4443359375,0.376953125,0.3212890625,0.33203125,0.4111328125,0.517578125,0.5966796875,0.607421875,0.55078125,0.4814453125,0.431640625,0.4267578125,0.470703125,0.5419921875,0.599609375,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.521484375,0.5244140625,0.58203125,0.6611328125,0.71875,0.7216796875,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3818359375,0.4189453125,0.4345703125,0.4423828125,0.4580078125,0.4951171875,0.55078125,0.6025390625,0.6142578125,0.583984375,0.537109375,0.5068359375,0.5185546875,0.5703125,0.615234375,0.5947265625,0.505859375,0.44140625,0.396484375,0.3974609375,0.4423828125,0.509765625,0.576171875,0.6201171875,0.6181640625,0.5712890625,0.5029296875,0.453125,0.439453125,0.4287109375,0.3857421875,0.3330078125,0.3017578125,0.3134765625,0.36328125,0.4296875,0.486328125,0.49609375,0.45703125,0.400390625,0.365234375,0.37890625,0.439453125,0.5126953125,0.58203125,0.625,0.6298828125,0.60546875,0.578125,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.5888671875,0.626953125,0.6748046875,0.69921875,0.681640625,0.6279296875,0.5595703125,0.4912109375,0.4384765625,0.4248046875,0.453125,0.505859375,0.5478515625,0.5595703125,0.5478515625,0.4931640625,0.4111328125,0.3447265625,0.32421875,0.3564453125,0.419921875,0.49609375,0.5869140625,0.6513671875,0.65234375,0.5888671875,0.4970703125,0.419921875,0.36328125,0.361328125,0.416015625,0.4931640625,0.5478515625,0.5458984375,0.4892578125,0.431640625,0.4228515625,0.4658203125,0.5283203125,0.5693359375,0.5595703125,0.5,0.439453125,0.4248046875,0.4609375,0.517578125,0.5556640625,0.5458984375,0.4892578125,0.43359375,0.42578125,0.46875,0.53125,0.5712890625,0.5595703125,0.5,0.439453125,0.4267578125,0.4638671875,0.5234375,0.564453125,0.5556640625,0.5,0.4345703125,0.39453125,0.3984375,0.4462890625,0.5126953125,0.5595703125,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.498046875,0.58984375,0.654296875,0.654296875,0.58984375,0.498046875,0.419921875,0.345703125,0.271484375,0.23828125,0.2763671875,0.3720703125,0.4794921875,0.5595703125,0.6337890625,0.71484375,0.7626953125,0.744140625,0.6650390625,0.5673828125,0.4892578125,0.4326171875,0.4248046875,0.4658203125,0.5244140625,0.5625,0.5498046875,0.4892578125,0.431640625,0.4287109375,0.484375,0.564453125,0.6201171875,0.6171875,0.5595703125,0.486328125,0.419921875,0.37890625,0.375,0.3994140625,0.4248046875,0.4296875,0.41796875,0.375,0.3212890625,0.2919921875,0.306640625,0.359375,0.4296875,0.4912109375,0.509765625,0.484375,0.4404296875,0.4130859375,0.4296875,0.4892578125,0.5595703125,0.619140625,0.6474609375,0.63671875,0.599609375,0.5673828125,0.5595703125,0.556640625,0.5419921875,0.515625,0.4833984375,0.45703125,0.4423828125,0.439453125,0.443359375,0.4609375,0.4931640625,0.53125,0.5615234375,0.5771484375,0.5791015625,0.564453125,0.505859375,0.4208984375,0.353515625,0.333984375,0.3662109375,0.4296875,0.49609375,0.544921875,0.556640625,0.5263671875,0.4765625,0.4375,0.4296875,0.435546875,0.455078125,0.490234375,0.5302734375,0.5615234375,0.5771484375,0.5791015625,0.5859375,0.615234375,0.650390625,0.662109375,0.634765625,0.5771484375,0.509765625,0.4404296875,0.3798828125,0.34765625,0.3525390625,0.3837890625,0.412109375,0.419921875,0.41015625,0.3720703125,0.3232421875,0.296875,0.3115234375,0.36328125,0.4296875,0.486328125,0.4970703125,0.4599609375,0.404296875,0.3681640625,0.380859375,0.439453125,0.5078125,0.55859375,0.572265625,0.5419921875,0.490234375,0.44921875,0.439453125,0.443359375,0.4599609375,0.490234375,0.5244140625,0.5537109375,0.568359375,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.6484375,0.6171875,0.5869140625,0.5791015625,0.5791015625,0.576171875,0.572265625,0.56640625,0.5625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.556640625,0.54296875,0.517578125,0.4873046875,0.4599609375,0.4443359375,0.439453125,0.44140625,0.4580078125,0.490234375,0.5283203125,0.560546875,0.5771484375,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.56640625,0.57421875,0.533203125,0.474609375,0.4365234375,0.44921875,0.509765625,0.5673828125,0.568359375,0.5107421875,0.4287109375,0.37109375,0.3720703125,0.4296875,0.490234375,0.501953125,0.4638671875,0.4052734375,0.3681640625,0.3798828125,0.439453125,0.5009765625,0.521484375,0.498046875,0.45703125,0.431640625,0.44921875,0.509765625,0.5791015625,0.638671875,0.666015625,0.6533203125,0.6142578125,0.5791015625,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.361328125,0.3525390625,0.3955078125,0.458984375,0.5029296875,0.49609375,0.439453125,0.36328125,0.2744140625,0.2099609375,0.2099609375,0.2744140625,0.36328125,0.439453125,0.498046875,0.5146484375,0.4892578125,0.4482421875,0.4267578125,0.447265625,0.509765625,0.5888671875,0.6806640625,0.7451171875,0.744140625,0.677734375,0.5859375,0.509765625,0.4443359375,0.400390625,0.3994140625,0.4443359375,0.5087890625,0.556640625,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.5693359375,0.669921875,0.75,0.7685546875,0.71875,0.6357421875,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.4326171875,0.4921875,0.5791015625,0.6494140625,0.6728515625,0.6416015625,0.5791015625,0.5224609375,0.5146484375,0.5556640625,0.6142578125,0.65234375,0.6396484375,0.5791015625,0.515625,0.4873046875,0.494140625,0.5146484375,0.521484375,0.4931640625,0.4296875,0.3720703125,0.37109375,0.4287109375,0.5107421875,0.568359375,0.5673828125,0.509765625,0.4404296875,0.39453125,0.3935546875,0.439453125,0.505859375,0.556640625,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.5009765625,0.4931640625,0.537109375,0.6015625,0.6455078125,0.63671875,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.48046875,0.501953125,0.482421875,0.447265625,0.427734375,0.44921875,0.509765625,0.5693359375,0.5859375,0.5576171875,0.51171875,0.4833984375,0.5,0.5595703125,0.6142578125,0.6083984375,0.5380859375,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.3466796875,0.341796875,0.3759765625,0.439453125,0.509765625,0.5791015625,0.6376953125,0.662109375,0.646484375,0.60546875,0.5693359375,0.5595703125,0.548828125,0.5087890625,0.4609375,0.4375,0.4560546875,0.5107421875,0.5791015625,0.63671875,0.6435546875,0.5986328125,0.5341796875,0.490234375,0.5,0.5595703125,0.6259765625,0.6640625,0.650390625,0.5888671875,0.5087890625,0.4521484375,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.44140625,0.4833984375,0.537109375,0.5673828125,0.5556640625,0.505859375,0.439453125,0.373046875,0.3232421875,0.3095703125,0.3359375,0.384765625,0.421875,0.4296875,0.421875,0.3955078125,0.3720703125,0.376953125,0.419921875,0.48828125,0.5595703125,0.6376953125,0.732421875,0.8017578125,0.806640625,0.74609375,0.65625,0.5791015625,0.51953125,0.5,0.5244140625,0.564453125,0.5888671875,0.5693359375,0.509765625,0.451171875,0.4404296875,0.478515625,0.5361328125,0.572265625,0.5595703125,0.5,0.439453125,0.4248046875,0.4609375,0.517578125,0.5556640625,0.5458984375,0.4892578125,0.43359375,0.4267578125,0.470703125,0.5341796875,0.5771484375,0.5673828125,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.638671875,0.7333984375,0.802734375,0.806640625,0.744140625,0.6552734375,0.5791015625,0.4990234375,0.3896484375,0.2890625,0.24609375,0.2744140625,0.345703125,0.419921875,0.4990234375,0.5986328125,0.677734375,0.6953125,0.646484375,0.564453125,0.4892578125,0.43359375,0.4267578125,0.470703125,0.5341796875,0.5771484375,0.5673828125,0.509765625,0.44921875,0.4267578125,0.4443359375,0.4794921875,0.4990234375,0.478515625,0.419921875,0.3564453125,0.3232421875,0.3427734375,0.4111328125,0.4951171875,0.5546875,0.5693359375,0.5615234375,0.5224609375,0.47265625,0.4423828125,0.4541015625,0.5029296875,0.5693359375,0.625,0.626953125,0.57421875,0.4990234375,0.4482421875,0.4521484375,0.509765625,0.576171875,0.6171875,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.4208984375,0.435546875,0.4658203125,0.501953125,0.53515625,0.5546875,0.5595703125,0.5576171875,0.5419921875,0.5126953125,0.4765625,0.447265625,0.431640625,0.4296875,0.4248046875,0.3994140625,0.375,0.37890625,0.419921875,0.486328125,0.5595703125,0.6298828125,0.6845703125,0.7021484375,0.6767578125,0.6279296875,0.5888671875,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.4228515625,0.3818359375,0.3876953125,0.4404296875,0.5126953125,0.5654296875,0.5791015625,0.5703125,0.52734375,0.4697265625,0.43359375,0.44140625,0.490234375,0.5595703125,0.619140625,0.6298828125,0.58984375,0.529296875,0.4892578125,0.5,0.5595703125,0.62890625,0.681640625,0.6962890625,0.66796875,0.6162109375,0.5771484375,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5576171875,0.6005859375,0.5966796875,0.5478515625,0.478515625,0.4296875,0.419921875,0.421875,0.423828125,0.427734375,0.431640625,0.435546875,0.4375,0.439453125,0.44140625,0.4423828125,0.4423828125,0.4423828125,0.4404296875,0.4404296875,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.576171875,0.5576171875,0.525390625,0.48828125,0.45703125,0.44140625,0.439453125,0.4521484375,0.5009765625,0.56640625,0.609375,0.60546875,0.55859375,0.4892578125,0.4111328125,0.3212890625,0.2607421875,0.267578125,0.3388671875,0.4326171875,0.509765625,0.5654296875,0.5712890625,0.5263671875,0.4619140625,0.419921875,0.4296875,0.4892578125,0.5517578125,0.57421875,0.5537109375,0.515625,0.4931640625,0.5107421875,0.5693359375,0.6259765625,0.63671875,0.599609375,0.5439453125,0.5078125,0.5205078125,0.5791015625,0.6357421875,0.634765625,0.576171875,0.4931640625,0.43359375,0.43359375,0.4892578125,0.5556640625,0.59765625,0.59375,0.544921875,0.4775390625,0.4296875,0.419921875,0.421875,0.4267578125,0.4326171875,0.4375,0.4404296875,0.44140625,0.439453125,0.4501953125,0.5048828125,0.5830078125,0.6455078125,0.66015625,0.6240234375,0.5595703125,0.5009765625,0.4931640625,0.537109375,0.6015625,0.6455078125,0.63671875,0.5791015625,0.501953125,0.41015625,0.3466796875,0.34765625,0.412109375,0.5029296875,0.5791015625,0.6337890625,0.6318359375,0.572265625,0.490234375,0.4326171875,0.4326171875,0.4892578125,0.568359375,0.662109375,0.7314453125,0.7373046875,0.6767578125,0.5869140625,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5859375,0.66796875,0.7138671875,0.6904296875,0.60546875,0.5009765625,0.419921875,0.353515625,0.3193359375,0.337890625,0.40625,0.490234375,0.5478515625,0.5595703125,0.5634765625,0.5859375,0.60546875,0.59765625,0.5556640625,0.4892578125,0.419921875,0.3623046875,0.3525390625,0.390625,0.4482421875,0.4873046875,0.4765625,0.419921875,0.3662109375,0.3740234375,0.4462890625,0.54296875,0.615234375,0.623046875,0.5693359375,0.51171875,0.49609375,0.5234375,0.56640625,0.5908203125,0.5712890625,0.509765625,0.4375,0.375,0.341796875,0.3505859375,0.38671875,0.419921875,0.4296875,0.4306640625,0.4296875,0.4267578125,0.4228515625,0.419921875,0.4189453125,0.419921875,0.4248046875,0.4453125,0.4814453125,0.5234375,0.5576171875,0.576171875,0.5791015625,0.5849609375,0.6064453125,0.6240234375,0.6142578125,0.568359375,0.5,0.4296875,0.373046875,0.3623046875,0.400390625,0.458984375,0.4970703125,0.486328125,0.4296875,0.36328125,0.3134765625,0.2998046875,0.326171875,0.375,0.412109375,0.419921875,0.412109375,0.3896484375,0.373046875,0.3857421875,0.435546875,0.5068359375,0.5791015625,0.6357421875,0.6376953125,0.58203125,0.501953125,0.4453125,0.4443359375,0.5,0.5546875,0.5546875,0.498046875,0.419921875,0.3671875,0.37109375,0.4296875,0.4931640625,0.5234375,0.517578125,0.298828125,0.3369140625,0.40625,0.484375,0.55078125,0.6123046875,0.666015625,0.689453125,0.6728515625,0.62890625,0.587890625,0.5703125,0.5537109375,0.5234375,0.4990234375,0.50390625,0.546875,0.609375,0.673828125,0.720703125,0.7109375,0.646484375,0.5625,0.5068359375,0.5107421875,0.5703125,0.63671875,0.671875,0.6533203125,0.5859375,0.5009765625,0.4423828125,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.3955078125,0.439453125,0.490234375,0.521484375,0.515625,0.478515625,0.4287109375,0.3798828125,0.341796875,0.3291015625,0.3408203125,0.3662109375,0.3818359375,0.376953125,0.36328125,0.34375,0.3388671875,0.3681640625,0.4296875,0.5048828125,0.5703125,0.640625,0.7333984375,0.8134765625,0.8408203125,0.806640625,0.7392578125,0.673828125,0.619140625,0.595703125,0.6025390625,0.6220703125,0.62890625,0.60546875,0.55078125,0.5,0.4912109375,0.521484375,0.564453125,0.5849609375,0.5615234375,0.5,0.435546875,0.40625,0.419921875,0.4580078125,0.490234375,0.48828125,0.4482421875,0.4091796875,0.419921875,0.4794921875,0.5546875,0.6044921875,0.6015625,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.6494140625,0.744140625,0.818359375,0.8369140625,0.796875,0.73046875,0.673828125,0.607421875,0.4921875,0.359375,0.2626953125,0.234375,0.2666015625,0.3251953125,0.3955078125,0.484375,0.5615234375,0.5888671875,0.5615234375,0.5029296875,0.4482421875,0.4091796875,0.419921875,0.4794921875,0.5546875,0.6044921875,0.6015625,0.55078125,0.4931640625,0.451171875,0.4267578125,0.4150390625,0.4013671875,0.3720703125,0.3251953125,0.28125,0.2744140625,0.3232421875,0.4189453125,0.5244140625,0.59765625,0.6220703125,0.625,0.6025390625,0.56640625,0.541015625,0.5419921875,0.5732421875,0.6220703125,0.6611328125,0.654296875,0.6025390625,0.5361328125,0.4931640625,0.5,0.55078125,0.607421875,0.630859375,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.3193359375,0.3359375,0.380859375,0.4453125,0.509765625,0.552734375,0.5703125,0.57421875,0.552734375,0.50390625,0.443359375,0.39453125,0.373046875,0.376953125,0.3818359375,0.37109375,0.3623046875,0.37890625,0.427734375,0.4970703125,0.5703125,0.642578125,0.70703125,0.7431640625,0.740234375,0.7099609375,0.6806640625,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.3916015625,0.3681640625,0.3994140625,0.48046875,0.5791015625,0.6494140625,0.673828125,0.6708984375,0.6240234375,0.5498046875,0.48828125,0.470703125,0.50390625,0.5703125,0.6298828125,0.640625,0.6005859375,0.5400390625,0.4990234375,0.509765625,0.5703125,0.6396484375,0.6923828125,0.708984375,0.6884765625,0.6484375,0.6201171875,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.513671875,0.544921875,0.5234375,0.4560546875,0.376953125,0.328125,0.3251953125,0.3369140625,0.3505859375,0.3681640625,0.38671875,0.404296875,0.41796875,0.4287109375,0.439453125,0.4462890625,0.4482421875,0.4443359375,0.4365234375,0.4306640625,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.666015625,0.630859375,0.568359375,0.4990234375,0.4462890625,0.4248046875,0.4287109375,0.44921875,0.5009765625,0.560546875,0.591796875,0.5751953125,0.5185546875,0.4482421875,0.373046875,0.3037109375,0.275390625,0.3115234375,0.3974609375,0.4892578125,0.55078125,0.5888671875,0.5712890625,0.50390625,0.4248046875,0.376953125,0.3876953125,0.4482421875,0.5146484375,0.55859375,0.572265625,0.56640625,0.5615234375,0.578125,0.6220703125,0.6640625,0.671875,0.6474609375,0.61328125,0.59765625,0.619140625,0.673828125,0.7197265625,0.701171875,0.6162109375,0.5048828125,0.419921875,0.40234375,0.4482421875,0.5029296875,0.52734375,0.50390625,0.4404296875,0.3701171875,0.3271484375,0.3251953125,0.33984375,0.3662109375,0.3984375,0.42578125,0.439453125,0.4384765625,0.4287109375,0.4306640625,0.4755859375,0.55078125,0.619140625,0.646484375,0.625,0.5703125,0.521484375,0.5244140625,0.58203125,0.6611328125,0.71875,0.7216796875,0.673828125,0.6064453125,0.5322265625,0.482421875,0.4873046875,0.5419921875,0.615234375,0.673828125,0.708984375,0.68359375,0.5966796875,0.4892578125,0.4130859375,0.400390625,0.4482421875,0.5185546875,0.611328125,0.69140625,0.71875,0.6845703125,0.6171875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.615234375,0.6748046875,0.689453125,0.6337890625,0.5244140625,0.4091796875,0.3251953125,0.2626953125,0.24609375,0.294921875,0.39453125,0.5009765625,0.564453125,0.5703125,0.5615234375,0.5537109375,0.53515625,0.4970703125,0.4404296875,0.3798828125,0.3251953125,0.283203125,0.275390625,0.3037109375,0.34765625,0.3759765625,0.3681640625,0.3251953125,0.2900390625,0.318359375,0.4130859375,0.5341796875,0.62890625,0.6572265625,0.6220703125,0.580078125,0.576171875,0.6044921875,0.6376953125,0.646484375,0.615234375,0.55078125,0.4755859375,0.396484375,0.3369140625,0.31640625,0.3330078125,0.361328125,0.376953125,0.384765625,0.3798828125,0.3623046875,0.33984375,0.3232421875,0.318359375,0.3251953125,0.34375,0.3935546875,0.4736328125,0.560546875,0.630859375,0.6669921875,0.673828125,0.673828125,0.6669921875,0.638671875,0.58203125,0.5068359375,0.43359375,0.376953125,0.3349609375,0.3271484375,0.35546875,0.3984375,0.427734375,0.419921875,0.376953125,0.328125,0.2900390625,0.27734375,0.2900390625,0.314453125,0.330078125,0.3251953125,0.3154296875,0.314453125,0.34375,0.4140625,0.5107421875,0.6044921875,0.673828125,0.7216796875,0.7158203125,0.650390625,0.556640625,0.482421875,0.462890625,0.5,0.5361328125,0.5166015625,0.4453125,0.361328125,0.3095703125,0.3173828125,0.376953125,0.4453125,0.498046875,0.5322265625,0.26953125,0.353515625,0.4580078125,0.548828125,0.6044921875,0.650390625,0.6904296875,0.701171875,0.673828125,0.6181640625,0.5634765625,0.5302734375,0.5029296875,0.482421875,0.4912109375,0.5380859375,0.61328125,0.6875,0.740234375,0.76953125,0.7353515625,0.6435546875,0.5380859375,0.470703125,0.4716796875,0.5302734375,0.5986328125,0.6435546875,0.642578125,0.5966796875,0.529296875,0.48046875,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.39453125,0.4375,0.48046875,0.5048828125,0.5048828125,0.4892578125,0.46875,0.4521484375,0.4404296875,0.43359375,0.4248046875,0.41015625,0.3896484375,0.3642578125,0.3359375,0.310546875,0.30859375,0.3447265625,0.4091796875,0.478515625,0.5302734375,0.5849609375,0.669921875,0.7587890625,0.814453125,0.8193359375,0.78515625,0.740234375,0.69921875,0.67578125,0.6708984375,0.673828125,0.6689453125,0.6455078125,0.6044921875,0.568359375,0.5634765625,0.5849609375,0.607421875,0.6044921875,0.5654296875,0.5,0.4296875,0.3759765625,0.353515625,0.36328125,0.390625,0.4052734375,0.39453125,0.38671875,0.4248046875,0.501953125,0.5849609375,0.6376953125,0.6416015625,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.607421875,0.6962890625,0.7705078125,0.8037109375,0.7939453125,0.763671875,0.740234375,0.7041015625,0.60546875,0.4609375,0.322265625,0.2373046875,0.2236328125,0.2587890625,0.30859375,0.369140625,0.421875,0.447265625,0.439453125,0.416015625,0.39453125,0.38671875,0.4248046875,0.501953125,0.5849609375,0.6376953125,0.6416015625,0.6044921875,0.5546875,0.4912109375,0.419921875,0.35546875,0.30859375,0.279296875,0.2587890625,0.2451171875,0.26171875,0.3232421875,0.4189453125,0.521484375,0.59765625,0.634765625,0.658203125,0.666015625,0.6572265625,0.6376953125,0.6220703125,0.6201171875,0.634765625,0.646484375,0.6298828125,0.5927734375,0.5576171875,0.5458984375,0.5634765625,0.6044921875,0.64453125,0.650390625,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.236328125,0.234375,0.2705078125,0.341796875,0.4267578125,0.494140625,0.5302734375,0.5478515625,0.5322265625,0.48046875,0.4140625,0.3623046875,0.345703125,0.3642578125,0.3837890625,0.380859375,0.3701171875,0.3720703125,0.40234375,0.4599609375,0.5302734375,0.6044921875,0.6826171875,0.7421875,0.767578125,0.76171875,0.7451171875,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.3544921875,0.3486328125,0.3974609375,0.4970703125,0.6123046875,0.7001953125,0.740234375,0.7509765625,0.703125,0.607421875,0.5107421875,0.45703125,0.46875,0.5302734375,0.58984375,0.6005859375,0.560546875,0.4990234375,0.458984375,0.4697265625,0.5302734375,0.5986328125,0.6484375,0.6650390625,0.6513671875,0.626953125,0.6171875,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.45703125,0.4775390625,0.44140625,0.3642578125,0.28515625,0.24609375,0.2587890625,0.2861328125,0.3154296875,0.34765625,0.380859375,0.4130859375,0.4423828125,0.46875,0.4951171875,0.513671875,0.5185546875,0.5078125,0.48828125,0.47265625,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.73046875,0.681640625,0.6015625,0.5185546875,0.4638671875,0.4501953125,0.46875,0.5029296875,0.5546875,0.5966796875,0.595703125,0.546875,0.4697265625,0.39453125,0.3271484375,0.2890625,0.30859375,0.38671875,0.490234375,0.5712890625,0.6044921875,0.6083984375,0.5546875,0.4580078125,0.3642578125,0.31640625,0.33203125,0.39453125,0.466796875,0.5380859375,0.5908203125,0.6162109375,0.619140625,0.62109375,0.634765625,0.6494140625,0.6494140625,0.642578125,0.6435546875,0.6611328125,0.6962890625,0.740234375,0.76953125,0.734375,0.6318359375,0.501953125,0.3994140625,0.3642578125,0.39453125,0.431640625,0.4326171875,0.3916015625,0.3251953125,0.2666015625,0.2431640625,0.2587890625,0.29296875,0.353515625,0.4248046875,0.48046875,0.5029296875,0.4931640625,0.46875,0.451171875,0.4658203125,0.5078125,0.5546875,0.5791015625,0.5693359375,0.5302734375,0.4970703125,0.515625,0.587890625,0.681640625,0.75390625,0.7734375,0.740234375,0.693359375,0.6494140625,0.626953125,0.6376953125,0.6748046875,0.7158203125,0.740234375,0.744140625,0.689453125,0.58203125,0.4638671875,0.380859375,0.361328125,0.39453125,0.44921875,0.53515625,0.6240234375,0.6796875,0.6845703125,0.650390625,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.650390625,0.68359375,0.66796875,0.587890625,0.4638671875,0.3427734375,0.2587890625,0.19921875,0.1953125,0.26171875,0.375,0.484375,0.5390625,0.5302734375,0.5009765625,0.458984375,0.408203125,0.35546875,0.3115234375,0.2802734375,0.2587890625,0.2431640625,0.240234375,0.2509765625,0.2666015625,0.27734375,0.2744140625,0.2587890625,0.251953125,0.294921875,0.3896484375,0.5048828125,0.599609375,0.6416015625,0.634765625,0.6259765625,0.650390625,0.693359375,0.7236328125,0.7177734375,0.6728515625,0.6044921875,0.525390625,0.4287109375,0.341796875,0.2978515625,0.3017578125,0.333984375,0.3642578125,0.3837890625,0.375,0.3369140625,0.2861328125,0.248046875,0.2392578125,0.2587890625,0.2958984375,0.373046875,0.4853515625,0.6015625,0.689453125,0.732421875,0.740234375,0.734375,0.69921875,0.6298828125,0.5380859375,0.451171875,0.3916015625,0.3642578125,0.3486328125,0.345703125,0.3564453125,0.3720703125,0.3828125,0.3798828125,0.3642578125,0.3466796875,0.3359375,0.328125,0.3193359375,0.3056640625,0.2841796875,0.2587890625,0.23828125,0.2509765625,0.3193359375,0.4384765625,0.57421875,0.6806640625,0.740234375,0.7763671875,0.7685546875,0.708984375,0.619140625,0.53515625,0.4931640625,0.5,0.5048828125,0.4609375,0.3798828125,0.306640625,0.275390625,0.2998046875,0.3642578125,0.4365234375,0.5078125,0.5712890625,0.2734375,0.3798828125,0.5029296875,0.5947265625,0.634765625,0.6630859375,0.6884765625,0.6904296875,0.654296875,0.58984375,0.5205078125,0.46875,0.427734375,0.412109375,0.4443359375,0.5244140625,0.623046875,0.7021484375,0.740234375,0.7490234375,0.6943359375,0.5849609375,0.4716796875,0.4052734375,0.4091796875,0.46875,0.5400390625,0.6005859375,0.626953125,0.6123046875,0.572265625,0.5380859375,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.439453125,0.4775390625,0.501953125,0.5107421875,0.5107421875,0.5146484375,0.5302734375,0.5517578125,0.5751953125,0.58203125,0.5576171875,0.5048828125,0.4443359375,0.39453125,0.3486328125,0.30859375,0.2978515625,0.3251953125,0.380859375,0.435546875,0.46875,0.5048828125,0.572265625,0.6572265625,0.728515625,0.7646484375,0.7626953125,0.740234375,0.7158203125,0.69921875,0.6904296875,0.6845703125,0.67578125,0.6591796875,0.634765625,0.6162109375,0.6220703125,0.640625,0.646484375,0.6220703125,0.568359375,0.5,0.423828125,0.34375,0.2861328125,0.2734375,0.2998046875,0.3388671875,0.3642578125,0.392578125,0.4541015625,0.5380859375,0.61328125,0.654296875,0.6572265625,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.54296875,0.6171875,0.6767578125,0.7099609375,0.720703125,0.7255859375,0.740234375,0.7431640625,0.68359375,0.560546875,0.4140625,0.296875,0.2470703125,0.2587890625,0.2841796875,0.3056640625,0.3193359375,0.328125,0.3359375,0.3466796875,0.3642578125,0.392578125,0.4541015625,0.5380859375,0.61328125,0.654296875,0.6572265625,0.634765625,0.59765625,0.521484375,0.4189453125,0.3232421875,0.26171875,0.2451171875,0.2587890625,0.279296875,0.30859375,0.35546875,0.419921875,0.4912109375,0.5546875,0.6044921875,0.6513671875,0.6953125,0.7177734375,0.70703125,0.669921875,0.62890625,0.6044921875,0.5830078125,0.5576171875,0.541015625,0.5458984375,0.572265625,0.6064453125,0.634765625,0.658203125,0.658203125,0.61328125,0.521484375,0.4091796875,0.3154296875,0.2587890625,0.2138671875,0.1796875,0.1845703125,0.240234375,0.3291015625,0.4140625,0.46875,0.5048828125,0.5029296875,0.4609375,0.40234375,0.3603515625,0.3583984375,0.39453125,0.4306640625,0.4306640625,0.40234375,0.373046875,0.369140625,0.404296875,0.46875,0.544921875,0.630859375,0.7041015625,0.7451171875,0.7529296875,0.744140625,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.3408203125,0.3408203125,0.3857421875,0.4775390625,0.58984375,0.68359375,0.740234375,0.767578125,0.7265625,0.62109375,0.5,0.4189453125,0.412109375,0.46875,0.529296875,0.5400390625,0.5,0.4384765625,0.3984375,0.4091796875,0.46875,0.5361328125,0.578125,0.587890625,0.57421875,0.5595703125,0.5673828125,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.4248046875,0.4384765625,0.39453125,0.3173828125,0.2490234375,0.2275390625,0.2587890625,0.302734375,0.3427734375,0.3779296875,0.4111328125,0.4462890625,0.4853515625,0.5302734375,0.57421875,0.607421875,0.615234375,0.5966796875,0.5625,0.5361328125,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.728515625,0.6767578125,0.5966796875,0.521484375,0.4833984375,0.490234375,0.5302734375,0.580078125,0.634765625,0.6591796875,0.626953125,0.54296875,0.4443359375,0.3642578125,0.3037109375,0.294921875,0.3564453125,0.4658203125,0.576171875,0.63671875,0.634765625,0.6005859375,0.51171875,0.39453125,0.30078125,0.267578125,0.2978515625,0.3642578125,0.4423828125,0.53515625,0.6162109375,0.6572265625,0.6533203125,0.626953125,0.6044921875,0.5859375,0.5732421875,0.580078125,0.6123046875,0.662109375,0.708984375,0.740234375,0.7529296875,0.7119140625,0.61328125,0.4912109375,0.392578125,0.3505859375,0.3642578125,0.380859375,0.361328125,0.30859375,0.2509765625,0.2158203125,0.220703125,0.2587890625,0.3154296875,0.408203125,0.5107421875,0.58203125,0.6005859375,0.57421875,0.5302734375,0.48828125,0.462890625,0.4609375,0.474609375,0.490234375,0.490234375,0.46875,0.453125,0.482421875,0.5576171875,0.6513671875,0.7265625,0.755859375,0.740234375,0.716796875,0.708984375,0.7177734375,0.7373046875,0.7529296875,0.7548828125,0.740234375,0.708984375,0.634765625,0.52734375,0.4248046875,0.359375,0.3447265625,0.3642578125,0.3994140625,0.466796875,0.5517578125,0.6240234375,0.66015625,0.658203125,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.662109375,0.6767578125,0.6513671875,0.5712890625,0.4541015625,0.3408203125,0.2587890625,0.2001953125,0.2001953125,0.267578125,0.3720703125,0.4638671875,0.498046875,0.46875,0.41796875,0.34765625,0.2783203125,0.234375,0.224609375,0.2392578125,0.2587890625,0.2744140625,0.27734375,0.2666015625,0.2509765625,0.240234375,0.2431640625,0.2587890625,0.283203125,0.3271484375,0.39453125,0.4697265625,0.5361328125,0.5810546875,0.6044921875,0.6337890625,0.693359375,0.7568359375,0.787109375,0.7666015625,0.70703125,0.634765625,0.5537109375,0.4453125,0.3447265625,0.2919921875,0.30078125,0.345703125,0.39453125,0.4287109375,0.4189453125,0.36328125,0.2900390625,0.234375,0.224609375,0.2587890625,0.314453125,0.40625,0.521484375,0.6298828125,0.703125,0.7353515625,0.740234375,0.7294921875,0.6767578125,0.5849609375,0.4853515625,0.412109375,0.3837890625,0.39453125,0.41015625,0.4130859375,0.40234375,0.38671875,0.3759765625,0.37890625,0.39453125,0.416015625,0.439453125,0.447265625,0.421875,0.369140625,0.30859375,0.2587890625,0.22265625,0.232421875,0.3115234375,0.447265625,0.5927734375,0.697265625,0.740234375,0.7626953125,0.763671875,0.7294921875,0.662109375,0.5859375,0.52734375,0.5,0.46875,0.400390625,0.3203125,0.26953125,0.2734375,0.32421875,0.39453125,0.46875,0.5478515625,0.6181640625,0.3037109375,0.4033203125,0.5166015625,0.595703125,0.6220703125,0.6357421875,0.6552734375,0.66015625,0.630859375,0.5693359375,0.494140625,0.4287109375,0.3740234375,0.3525390625,0.3876953125,0.4736328125,0.576171875,0.6494140625,0.673828125,0.66796875,0.6044921875,0.498046875,0.3984375,0.349609375,0.3662109375,0.4287109375,0.501953125,0.5712890625,0.6162109375,0.623046875,0.6015625,0.5771484375,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.5029296875,0.533203125,0.5341796875,0.5185546875,0.509765625,0.5263671875,0.5703125,0.625,0.68359375,0.7109375,0.68359375,0.6064453125,0.517578125,0.4482421875,0.38671875,0.3330078125,0.3095703125,0.326171875,0.3701171875,0.4111328125,0.4287109375,0.4462890625,0.4892578125,0.5537109375,0.6181640625,0.6630859375,0.6796875,0.673828125,0.6630859375,0.6552734375,0.650390625,0.6455078125,0.6396484375,0.6318359375,0.6220703125,0.619140625,0.6376953125,0.662109375,0.6650390625,0.6318359375,0.5703125,0.5,0.419921875,0.3232421875,0.244140625,0.220703125,0.2568359375,0.3203125,0.376953125,0.43359375,0.5068359375,0.5791015625,0.6259765625,0.640625,0.6328125,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.4970703125,0.5498046875,0.580078125,0.5927734375,0.6025390625,0.6279296875,0.673828125,0.7138671875,0.7021484375,0.626953125,0.5087890625,0.39453125,0.3310546875,0.3251953125,0.330078125,0.314453125,0.2900390625,0.27734375,0.2900390625,0.328125,0.376953125,0.43359375,0.5068359375,0.5791015625,0.6259765625,0.640625,0.6328125,0.6220703125,0.59765625,0.5244140625,0.4189453125,0.3232421875,0.2744140625,0.28125,0.3251953125,0.3720703125,0.4013671875,0.4150390625,0.4267578125,0.451171875,0.4931640625,0.55078125,0.6181640625,0.6923828125,0.7421875,0.7373046875,0.6826171875,0.609375,0.55078125,0.501953125,0.466796875,0.4658203125,0.501953125,0.556640625,0.6025390625,0.6220703125,0.6337890625,0.640625,0.6220703125,0.5654296875,0.48046875,0.3935546875,0.3251953125,0.259765625,0.1923828125,0.158203125,0.185546875,0.265625,0.3583984375,0.4287109375,0.48046875,0.4921875,0.4619140625,0.4150390625,0.384765625,0.396484375,0.4482421875,0.4970703125,0.498046875,0.451171875,0.390625,0.353515625,0.3681640625,0.4287109375,0.5048828125,0.5869140625,0.654296875,0.6884765625,0.689453125,0.677734375,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.365234375,0.3583984375,0.376953125,0.43359375,0.5185546875,0.60546875,0.673828125,0.7177734375,0.6904296875,0.59375,0.4736328125,0.38671875,0.373046875,0.4287109375,0.4892578125,0.5,0.458984375,0.3984375,0.3583984375,0.369140625,0.4287109375,0.4931640625,0.5244140625,0.51953125,0.4951171875,0.48046875,0.4990234375,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.4375,0.4482421875,0.404296875,0.333984375,0.2802734375,0.27734375,0.3251953125,0.3828125,0.4208984375,0.44140625,0.4541015625,0.474609375,0.513671875,0.5703125,0.6298828125,0.6748046875,0.685546875,0.66015625,0.6142578125,0.578125,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.662109375,0.6142578125,0.5458984375,0.4921875,0.48046875,0.5126953125,0.5703125,0.634765625,0.6982421875,0.7197265625,0.673828125,0.5712890625,0.4599609375,0.376953125,0.3203125,0.3271484375,0.40625,0.5224609375,0.62109375,0.6552734375,0.6220703125,0.556640625,0.4482421875,0.330078125,0.2568359375,0.25390625,0.306640625,0.376953125,0.4580078125,0.5615234375,0.6513671875,0.6884765625,0.6640625,0.6064453125,0.55078125,0.5029296875,0.474609375,0.484375,0.5341796875,0.6015625,0.6533203125,0.673828125,0.6748046875,0.640625,0.5693359375,0.4814453125,0.41015625,0.3759765625,0.376953125,0.3779296875,0.34375,0.2880859375,0.244140625,0.236328125,0.2685546875,0.3251953125,0.3994140625,0.509765625,0.62109375,0.685546875,0.68359375,0.6328125,0.5703125,0.5087890625,0.4521484375,0.41796875,0.41015625,0.4228515625,0.43359375,0.4287109375,0.42578125,0.4541015625,0.5146484375,0.587890625,0.6484375,0.6767578125,0.673828125,0.669921875,0.6923828125,0.728515625,0.7548828125,0.7529296875,0.7216796875,0.673828125,0.615234375,0.5361328125,0.453125,0.3916015625,0.3662109375,0.3671875,0.376953125,0.39453125,0.4375,0.501953125,0.56640625,0.611328125,0.6279296875,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.634765625,0.6484375,0.6376953125,0.5849609375,0.498046875,0.4033203125,0.3251953125,0.2666015625,0.2626953125,0.318359375,0.4013671875,0.466796875,0.4765625,0.4287109375,0.359375,0.2724609375,0.2001953125,0.177734375,0.2099609375,0.26953125,0.3251953125,0.3681640625,0.3759765625,0.34765625,0.3037109375,0.275390625,0.283203125,0.3251953125,0.373046875,0.408203125,0.4306640625,0.4462890625,0.46875,0.50390625,0.55078125,0.6123046875,0.7001953125,0.7783203125,0.8056640625,0.7705078125,0.697265625,0.6220703125,0.5390625,0.4296875,0.33203125,0.291015625,0.31640625,0.3818359375,0.4482421875,0.49609375,0.490234375,0.4287109375,0.3447265625,0.283203125,0.27734375,0.3251953125,0.3935546875,0.48046875,0.5693359375,0.6357421875,0.6669921875,0.673828125,0.673828125,0.6611328125,0.6044921875,0.515625,0.4345703125,0.3935546875,0.4033203125,0.4482421875,0.490234375,0.498046875,0.4697265625,0.4267578125,0.3974609375,0.4052734375,0.4482421875,0.5029296875,0.5615234375,0.5888671875,0.5615234375,0.484375,0.3955078125,0.3251953125,0.2724609375,0.263671875,0.322265625,0.435546875,0.5615234375,0.646484375,0.673828125,0.6865234375,0.7021484375,0.7041015625,0.6748046875,0.619140625,0.5546875,0.5,0.4384765625,0.353515625,0.279296875,0.2568359375,0.296875,0.3720703125,0.4482421875,0.521484375,0.5947265625,0.6513671875,0.33984375,0.408203125,0.494140625,0.5546875,0.5693359375,0.5771484375,0.603515625,0.626953125,0.6220703125,0.5791015625,0.5107421875,0.439453125,0.375,0.33984375,0.3564453125,0.421875,0.505859375,0.564453125,0.5791015625,0.5673828125,0.509765625,0.42578125,0.3583984375,0.3388671875,0.373046875,0.439453125,0.5126953125,0.5791015625,0.619140625,0.6201171875,0.59375,0.56640625,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.5498046875,0.5693359375,0.546875,0.5068359375,0.4833984375,0.5009765625,0.5595703125,0.6337890625,0.7158203125,0.765625,0.748046875,0.66796875,0.568359375,0.4892578125,0.419921875,0.361328125,0.3369140625,0.3525390625,0.3935546875,0.4296875,0.439453125,0.4443359375,0.4638671875,0.4970703125,0.533203125,0.5634765625,0.578125,0.5791015625,0.5771484375,0.576171875,0.5751953125,0.5732421875,0.572265625,0.5712890625,0.5693359375,0.576171875,0.6083984375,0.6455078125,0.658203125,0.630859375,0.5703125,0.5,0.4189453125,0.318359375,0.23828125,0.220703125,0.271484375,0.3544921875,0.4296875,0.5,0.5673828125,0.6123046875,0.62109375,0.6015625,0.5771484375,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.5029296875,0.533203125,0.5263671875,0.50390625,0.494140625,0.51953125,0.5791015625,0.6416015625,0.671875,0.6474609375,0.5751953125,0.4892578125,0.431640625,0.419921875,0.412109375,0.375,0.326171875,0.2998046875,0.3134765625,0.36328125,0.4296875,0.5,0.5673828125,0.6123046875,0.62109375,0.6015625,0.5771484375,0.5693359375,0.5546875,0.4951171875,0.4111328125,0.3427734375,0.3232421875,0.3564453125,0.419921875,0.478515625,0.4990234375,0.4794921875,0.4443359375,0.4267578125,0.44921875,0.509765625,0.5869140625,0.677734375,0.7421875,0.7412109375,0.6767578125,0.5859375,0.509765625,0.4443359375,0.400390625,0.3994140625,0.4443359375,0.5087890625,0.556640625,0.5693359375,0.5771484375,0.6005859375,0.6201171875,0.609375,0.5615234375,0.4912109375,0.419921875,0.3427734375,0.2529296875,0.1923828125,0.197265625,0.2666015625,0.361328125,0.439453125,0.4990234375,0.515625,0.4873046875,0.44140625,0.4130859375,0.4296875,0.4892578125,0.546875,0.5498046875,0.498046875,0.4248046875,0.375,0.380859375,0.439453125,0.5126953125,0.58203125,0.626953125,0.6328125,0.6103515625,0.5859375,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.421875,0.3984375,0.37890625,0.3896484375,0.4375,0.5078125,0.5791015625,0.6337890625,0.626953125,0.5546875,0.4580078125,0.388671875,0.3828125,0.439453125,0.5,0.509765625,0.4697265625,0.4091796875,0.369140625,0.3798828125,0.439453125,0.5009765625,0.521484375,0.498046875,0.45703125,0.431640625,0.44921875,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.4892578125,0.5,0.458984375,0.396484375,0.353515625,0.3623046875,0.419921875,0.4814453125,0.5087890625,0.5009765625,0.478515625,0.470703125,0.498046875,0.5595703125,0.6279296875,0.6787109375,0.69140625,0.662109375,0.609375,0.5693359375,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5693359375,0.5263671875,0.4697265625,0.4345703125,0.4423828125,0.4912109375,0.5595703125,0.634765625,0.7119140625,0.7490234375,0.7158203125,0.62109375,0.5126953125,0.4296875,0.373046875,0.376953125,0.4462890625,0.5419921875,0.6142578125,0.623046875,0.5693359375,0.4892578125,0.380859375,0.283203125,0.2451171875,0.2783203125,0.353515625,0.4296875,0.5107421875,0.6123046875,0.6943359375,0.71484375,0.666015625,0.583984375,0.509765625,0.4443359375,0.40234375,0.4033203125,0.4501953125,0.5166015625,0.56640625,0.5791015625,0.5771484375,0.5595703125,0.525390625,0.484375,0.4501953125,0.431640625,0.4296875,0.421875,0.380859375,0.326171875,0.2939453125,0.302734375,0.3525390625,0.419921875,0.5009765625,0.609375,0.7060546875,0.7431640625,0.708984375,0.6337890625,0.5595703125,0.48828125,0.423828125,0.3857421875,0.3837890625,0.4091796875,0.4345703125,0.439453125,0.44140625,0.4580078125,0.490234375,0.5283203125,0.560546875,0.5771484375,0.5791015625,0.5869140625,0.6259765625,0.6767578125,0.7060546875,0.6943359375,0.6455078125,0.5791015625,0.5087890625,0.439453125,0.392578125,0.3818359375,0.3994140625,0.421875,0.4296875,0.4345703125,0.4541015625,0.486328125,0.5234375,0.552734375,0.568359375,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5771484375,0.6025390625,0.6220703125,0.6123046875,0.564453125,0.4931640625,0.419921875,0.3603515625,0.3505859375,0.39453125,0.4599609375,0.5048828125,0.4970703125,0.439453125,0.361328125,0.2685546875,0.2001953125,0.1953125,0.255859375,0.34375,0.419921875,0.4765625,0.4873046875,0.4482421875,0.390625,0.3525390625,0.3623046875,0.419921875,0.478515625,0.5,0.4814453125,0.447265625,0.4296875,0.4501953125,0.509765625,0.5869140625,0.6865234375,0.765625,0.783203125,0.732421875,0.6474609375,0.5693359375,0.48828125,0.384765625,0.3017578125,0.28125,0.330078125,0.4130859375,0.4892578125,0.5458984375,0.5478515625,0.4931640625,0.416015625,0.361328125,0.36328125,0.419921875,0.4912109375,0.5625,0.6103515625,0.623046875,0.6064453125,0.5849609375,0.5791015625,0.5673828125,0.5166015625,0.4462890625,0.3935546875,0.3857421875,0.4248046875,0.4892578125,0.546875,0.556640625,0.5185546875,0.4609375,0.421875,0.4326171875,0.4892578125,0.564453125,0.646484375,0.6953125,0.677734375,0.5986328125,0.4990234375,0.419921875,0.35546875,0.322265625,0.34375,0.4150390625,0.5029296875,0.564453125,0.5791015625,0.5888671875,0.6201171875,0.6533203125,0.66015625,0.62890625,0.568359375,0.5,0.4228515625,0.330078125,0.26171875,0.2578125,0.3193359375,0.41015625,0.4892578125,0.5615234375,0.623046875,0.6552734375,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.3818359375,0.3779296875,0.400390625,0.4248046875,0.4296875,0.4404296875,0.49609375,0.578125,0.64453125,0.6640625,0.6318359375,0.5693359375,0.4990234375,0.4306640625,0.384765625,0.375,0.392578125,0.4140625,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.5654296875,0.5654296875,0.505859375,0.4228515625,0.3642578125,0.36328125,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.4423828125,0.3984375,0.3984375,0.44140625,0.5048828125,0.5498046875,0.5595703125,0.5546875,0.5361328125,0.5048828125,0.46875,0.4384765625,0.4228515625,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4326171875,0.4853515625,0.5556640625,0.6083984375,0.6142578125,0.57421875,0.509765625,0.4345703125,0.3486328125,0.2939453125,0.3056640625,0.380859375,0.478515625,0.5595703125,0.6259765625,0.6611328125,0.6435546875,0.576171875,0.4912109375,0.4326171875,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.4345703125,0.41015625,0.38671875,0.388671875,0.4267578125,0.490234375,0.5595703125,0.61328125,0.60546875,0.5361328125,0.4423828125,0.3759765625,0.3720703125,0.4296875,0.5029296875,0.5751953125,0.623046875,0.6328125,0.6123046875,0.5869140625,0.5791015625,0.5673828125,0.5234375,0.4677734375,0.4345703125,0.447265625,0.5,0.5693359375,0.6357421875,0.6728515625,0.6572265625,0.5927734375,0.509765625,0.453125,0.439453125,0.4326171875,0.40625,0.380859375,0.3828125,0.4228515625,0.48828125,0.5595703125,0.6162109375,0.62109375,0.5703125,0.498046875,0.4482421875,0.4521484375,0.509765625,0.5869140625,0.6796875,0.744140625,0.744140625,0.6796875,0.5869140625,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.4345703125,0.4931640625,0.5771484375,0.642578125,0.6591796875,0.6240234375,0.5595703125,0.4814453125,0.3896484375,0.3251953125,0.3271484375,0.3955078125,0.4892578125,0.5693359375,0.6279296875,0.6328125,0.580078125,0.50390625,0.4501953125,0.453125,0.509765625,0.5693359375,0.5869140625,0.5595703125,0.5146484375,0.486328125,0.5009765625,0.5595703125,0.623046875,0.658203125,0.6435546875,0.5810546875,0.5009765625,0.4443359375,0.4296875,0.431640625,0.4501953125,0.484375,0.525390625,0.5595703125,0.5771484375,0.5791015625,0.5771484375,0.57421875,0.5703125,0.5673828125,0.56640625,0.5673828125,0.5693359375,0.55859375,0.50390625,0.4248046875,0.3603515625,0.3427734375,0.3759765625,0.439453125,0.4990234375,0.5244140625,0.5126953125,0.486328125,0.474609375,0.5,0.5595703125,0.6162109375,0.6240234375,0.5830078125,0.5244140625,0.486328125,0.4990234375,0.5595703125,0.6181640625,0.6240234375,0.57421875,0.5009765625,0.44921875,0.4521484375,0.509765625,0.576171875,0.6171875,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.412109375,0.3896484375,0.373046875,0.3857421875,0.435546875,0.5068359375,0.5791015625,0.63671875,0.6435546875,0.5986328125,0.5341796875,0.490234375,0.5,0.5595703125,0.6162109375,0.61328125,0.546875,0.453125,0.3837890625,0.3759765625,0.4296875,0.49609375,0.546875,0.560546875,0.533203125,0.484375,0.447265625,0.439453125,0.44140625,0.44140625,0.4404296875,0.439453125,0.4384765625,0.4384765625,0.439453125,0.431640625,0.3916015625,0.33984375,0.3095703125,0.3212890625,0.3720703125,0.439453125,0.5205078125,0.626953125,0.71875,0.75,0.7119140625,0.634765625,0.5595703125,0.498046875,0.47265625,0.4853515625,0.513671875,0.5263671875,0.5009765625,0.439453125,0.365234375,0.2900390625,0.2548828125,0.2900390625,0.3837890625,0.490234375,0.5693359375,0.64453125,0.7275390625,0.779296875,0.763671875,0.6865234375,0.5888671875,0.509765625,0.439453125,0.3798828125,0.3505859375,0.359375,0.3935546875,0.423828125,0.4296875,0.431640625,0.4482421875,0.4814453125,0.521484375,0.556640625,0.5751953125,0.5791015625,0.5693359375,0.5283203125,0.4765625,0.447265625,0.4599609375,0.5107421875,0.5791015625,0.6533203125,0.7275390625,0.7578125,0.716796875,0.615234375,0.5029296875,0.419921875,0.353515625,0.3203125,0.3427734375,0.4150390625,0.5048828125,0.5654296875,0.5791015625,0.5751953125,0.556640625,0.521484375,0.4814453125,0.4482421875,0.431640625,0.4296875,0.4404296875,0.48046875,0.529296875,0.5546875,0.5390625,0.486328125,0.419921875,0.357421875,0.326171875,0.34765625,0.4169921875,0.5009765625,0.5576171875,0.5693359375,0.564453125,0.5458984375,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.4345703125,0.49609375,0.5830078125,0.65234375,0.6708984375,0.6357421875,0.5693359375,0.5087890625,0.49609375,0.533203125,0.58984375,0.6279296875,0.6181640625,0.5595703125,0.482421875,0.3935546875,0.333984375,0.33984375,0.4091796875,0.5029296875,0.5791015625,0.6357421875,0.642578125,0.5986328125,0.5341796875,0.4921875,0.5009765625,0.5595703125,0.6162109375,0.62109375,0.5703125,0.498046875,0.4482421875,0.4521484375,0.509765625,0.5849609375,0.666015625,0.7119140625,0.6875,0.6025390625,0.5,0.419921875,0.34375,0.2626953125,0.2177734375,0.2412109375,0.3271484375,0.4296875,0.509765625,0.5693359375,0.5869140625,0.5625,0.5205078125,0.4970703125,0.517578125,0.5791015625,0.646484375,0.6826171875,0.666015625,0.599609375,0.5146484375,0.4541015625,0.439453125,0.4296875,0.396484375,0.3583984375,0.345703125,0.373046875,0.431640625,0.5,0.5556640625,0.564453125,0.5224609375,0.4609375,0.4208984375,0.4306640625,0.4892578125,0.5693359375,0.671875,0.7578125,0.78125,0.736328125,0.6552734375,0.5791015625,0.5078125,0.4384765625,0.390625,0.37890625,0.3955078125,0.4150390625,0.419921875,0.4296875,0.478515625,0.5478515625,0.5966796875,0.6005859375,0.5576171875,0.4892578125,0.41015625,0.3173828125,0.2529296875,0.2548828125,0.32421875,0.419921875,0.5,0.5673828125,0.6103515625,0.6064453125,0.3984375,0.3779296875,0.37890625,0.3837890625,0.376953125,0.3798828125,0.431640625,0.5224609375,0.61328125,0.666015625,0.6640625,0.6220703125,0.5654296875,0.4921875,0.4169921875,0.3603515625,0.33203125,0.3251953125,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.5966796875,0.5791015625,0.494140625,0.3828125,0.2978515625,0.279296875,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.4931640625,0.45703125,0.45703125,0.4931640625,0.541015625,0.5712890625,0.5703125,0.5546875,0.5166015625,0.4609375,0.400390625,0.353515625,0.330078125,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.34765625,0.4130859375,0.5029296875,0.580078125,0.61328125,0.5966796875,0.55078125,0.4921875,0.4150390625,0.3564453125,0.3525390625,0.408203125,0.4931640625,0.5703125,0.6337890625,0.6572265625,0.615234375,0.5205078125,0.4130859375,0.3408203125,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.435546875,0.4306640625,0.42578125,0.4375,0.470703125,0.5185546875,0.5703125,0.60546875,0.5771484375,0.490234375,0.3876953125,0.3193359375,0.3193359375,0.376953125,0.455078125,0.5498046875,0.63671875,0.689453125,0.7001953125,0.6865234375,0.673828125,0.65234375,0.5966796875,0.529296875,0.490234375,0.5,0.5517578125,0.6220703125,0.6865234375,0.7158203125,0.6865234375,0.60546875,0.5087890625,0.443359375,0.4287109375,0.423828125,0.4052734375,0.390625,0.40234375,0.4453125,0.5068359375,0.5703125,0.62109375,0.6279296875,0.5888671875,0.5322265625,0.4931640625,0.5,0.55078125,0.619140625,0.7001953125,0.7568359375,0.7568359375,0.7001953125,0.619140625,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.349609375,0.4228515625,0.525390625,0.611328125,0.646484375,0.625,0.5703125,0.501953125,0.4208984375,0.3681640625,0.376953125,0.4482421875,0.5419921875,0.6220703125,0.681640625,0.689453125,0.6416015625,0.56640625,0.5087890625,0.5029296875,0.55078125,0.6044921875,0.6220703125,0.599609375,0.556640625,0.5244140625,0.5283203125,0.5703125,0.6162109375,0.63671875,0.6103515625,0.54296875,0.4599609375,0.3994140625,0.376953125,0.3759765625,0.41015625,0.4814453125,0.5693359375,0.640625,0.6748046875,0.673828125,0.66015625,0.640625,0.619140625,0.60546875,0.6044921875,0.611328125,0.6220703125,0.6201171875,0.5751953125,0.49609375,0.4189453125,0.3779296875,0.3857421875,0.4287109375,0.474609375,0.5,0.5029296875,0.49609375,0.4990234375,0.5244140625,0.5703125,0.609375,0.60546875,0.5615234375,0.5087890625,0.484375,0.5078125,0.5703125,0.630859375,0.6455078125,0.6083984375,0.5478515625,0.5009765625,0.501953125,0.55078125,0.607421875,0.630859375,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.3154296875,0.314453125,0.34375,0.4140625,0.5107421875,0.6044921875,0.673828125,0.720703125,0.7109375,0.646484375,0.5625,0.5068359375,0.5107421875,0.5703125,0.6279296875,0.6279296875,0.5595703125,0.45703125,0.3701171875,0.341796875,0.376953125,0.4267578125,0.4638671875,0.4775390625,0.46484375,0.4404296875,0.4248046875,0.4287109375,0.4375,0.439453125,0.43359375,0.4248046875,0.4189453125,0.419921875,0.4287109375,0.4306640625,0.40234375,0.3583984375,0.328125,0.33203125,0.37109375,0.4287109375,0.5,0.59765625,0.6865234375,0.7236328125,0.6982421875,0.634765625,0.5703125,0.515625,0.4892578125,0.4921875,0.5068359375,0.509765625,0.4833984375,0.4287109375,0.3671875,0.3154296875,0.3095703125,0.3642578125,0.462890625,0.5595703125,0.6220703125,0.677734375,0.7421875,0.7822265625,0.767578125,0.7021484375,0.619140625,0.55078125,0.4892578125,0.4287109375,0.38671875,0.37109375,0.3759765625,0.3828125,0.376953125,0.3740234375,0.40234375,0.466796875,0.548828125,0.623046875,0.6650390625,0.673828125,0.6650390625,0.62890625,0.5830078125,0.5576171875,0.5693359375,0.61328125,0.673828125,0.7353515625,0.779296875,0.7666015625,0.6787109375,0.5419921875,0.412109375,0.3251953125,0.263671875,0.25390625,0.318359375,0.4404296875,0.5712890625,0.6552734375,0.673828125,0.6650390625,0.623046875,0.548828125,0.466796875,0.40234375,0.3740234375,0.376953125,0.3935546875,0.423828125,0.4521484375,0.4560546875,0.427734375,0.3779296875,0.3251953125,0.2841796875,0.2890625,0.353515625,0.4580078125,0.5595703125,0.6181640625,0.6220703125,0.6064453125,0.568359375,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.3525390625,0.4375,0.5595703125,0.6630859375,0.708984375,0.685546875,0.6220703125,0.5595703125,0.5361328125,0.5576171875,0.599609375,0.6298828125,0.62109375,0.5703125,0.505859375,0.443359375,0.41796875,0.44921875,0.52734375,0.61328125,0.673828125,0.7119140625,0.701171875,0.6416015625,0.56640625,0.517578125,0.51953125,0.5703125,0.62109375,0.6279296875,0.5888671875,0.5322265625,0.4931640625,0.5,0.55078125,0.6142578125,0.6669921875,0.673828125,0.6142578125,0.5068359375,0.3994140625,0.3251953125,0.2626953125,0.2099609375,0.203125,0.2626953125,0.3701171875,0.4775390625,0.55078125,0.603515625,0.6220703125,0.6064453125,0.5830078125,0.578125,0.609375,0.673828125,0.7392578125,0.767578125,0.734375,0.6435546875,0.5341796875,0.455078125,0.4287109375,0.4130859375,0.384765625,0.3603515625,0.3623046875,0.39453125,0.447265625,0.5,0.5390625,0.5341796875,0.4873046875,0.42578125,0.3876953125,0.396484375,0.4482421875,0.521484375,0.62890625,0.736328125,0.7958984375,0.7890625,0.736328125,0.673828125,0.607421875,0.5263671875,0.4443359375,0.3828125,0.349609375,0.3349609375,0.3251953125,0.328125,0.376953125,0.4560546875,0.5234375,0.544921875,0.513671875,0.4482421875,0.369140625,0.28125,0.2265625,0.240234375,0.318359375,0.4189453125,0.5,0.5654296875,0.5966796875,0.5751953125,0.421875,0.408203125,0.400390625,0.3876953125,0.3642578125,0.34765625,0.3720703125,0.44140625,0.5322265625,0.609375,0.6435546875,0.634765625,0.607421875,0.5478515625,0.4609375,0.369140625,0.2998046875,0.2646484375,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.634765625,0.599609375,0.4970703125,0.3671875,0.2646484375,0.2294921875,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.5625,0.53515625,0.5302734375,0.541015625,0.552734375,0.55078125,0.5302734375,0.498046875,0.4453125,0.3798828125,0.3203125,0.279296875,0.26171875,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.294921875,0.3671875,0.4638671875,0.5517578125,0.60546875,0.619140625,0.6044921875,0.57421875,0.509765625,0.4365234375,0.39453125,0.4052734375,0.458984375,0.5302734375,0.59375,0.61328125,0.5654296875,0.4638671875,0.349609375,0.275390625,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.4931640625,0.5087890625,0.513671875,0.5107421875,0.5078125,0.513671875,0.5302734375,0.5341796875,0.486328125,0.3994140625,0.3173828125,0.279296875,0.30078125,0.3642578125,0.4462890625,0.5595703125,0.6767578125,0.7568359375,0.7822265625,0.7666015625,0.740234375,0.7021484375,0.6279296875,0.546875,0.4990234375,0.5087890625,0.564453125,0.634765625,0.701171875,0.7333984375,0.708984375,0.6357421875,0.544921875,0.4833984375,0.46875,0.4638671875,0.4453125,0.4248046875,0.421875,0.443359375,0.484375,0.5302734375,0.5693359375,0.5849609375,0.576171875,0.5576171875,0.548828125,0.5654296875,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.7568359375,0.71484375,0.6552734375,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.296875,0.3759765625,0.474609375,0.5546875,0.5869140625,0.5712890625,0.5302734375,0.478515625,0.416015625,0.3779296875,0.39453125,0.46484375,0.556640625,0.634765625,0.697265625,0.7197265625,0.6923828125,0.6357421875,0.5830078125,0.5712890625,0.6044921875,0.64453125,0.6572265625,0.634765625,0.587890625,0.541015625,0.51953125,0.5302734375,0.5478515625,0.5576171875,0.54296875,0.5029296875,0.4462890625,0.396484375,0.3642578125,0.3505859375,0.392578125,0.4912109375,0.61328125,0.7119140625,0.7529296875,0.740234375,0.7080078125,0.6611328125,0.61328125,0.5849609375,0.5859375,0.6083984375,0.634765625,0.654296875,0.642578125,0.595703125,0.533203125,0.4794921875,0.4580078125,0.46875,0.486328125,0.49609375,0.5,0.5,0.5029296875,0.5126953125,0.5302734375,0.5380859375,0.5107421875,0.4609375,0.421875,0.4208984375,0.462890625,0.5302734375,0.5947265625,0.6298828125,0.6259765625,0.5966796875,0.568359375,0.568359375,0.6044921875,0.64453125,0.650390625,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.23828125,0.2509765625,0.3193359375,0.4384765625,0.57421875,0.6806640625,0.740234375,0.76953125,0.7353515625,0.6435546875,0.5380859375,0.470703125,0.4716796875,0.5302734375,0.5927734375,0.6142578125,0.576171875,0.494140625,0.4072265625,0.359375,0.3642578125,0.380859375,0.392578125,0.3994140625,0.408203125,0.4228515625,0.443359375,0.46875,0.4912109375,0.4951171875,0.48046875,0.4580078125,0.443359375,0.447265625,0.46875,0.48828125,0.4814453125,0.4521484375,0.421875,0.4111328125,0.4287109375,0.46875,0.5205078125,0.587890625,0.6435546875,0.6591796875,0.630859375,0.5791015625,0.5302734375,0.490234375,0.4765625,0.48828125,0.5107421875,0.5224609375,0.5087890625,0.46875,0.4267578125,0.40234375,0.4169921875,0.4716796875,0.5458984375,0.6064453125,0.634765625,0.6591796875,0.6953125,0.7255859375,0.7294921875,0.7001953125,0.65234375,0.6044921875,0.55859375,0.51171875,0.46875,0.435546875,0.4111328125,0.388671875,0.3642578125,0.3466796875,0.373046875,0.4521484375,0.5634765625,0.6669921875,0.7275390625,0.740234375,0.7333984375,0.70703125,0.673828125,0.654296875,0.6630859375,0.6962890625,0.740234375,0.783203125,0.7998046875,0.75390625,0.6376953125,0.4833984375,0.3466796875,0.2587890625,0.2001953125,0.2060546875,0.30078125,0.4580078125,0.619140625,0.71875,0.740234375,0.7275390625,0.6669921875,0.5634765625,0.4521484375,0.373046875,0.3466796875,0.3642578125,0.3896484375,0.4072265625,0.4033203125,0.3720703125,0.3251953125,0.283203125,0.2587890625,0.2529296875,0.2998046875,0.400390625,0.5185546875,0.6123046875,0.6494140625,0.634765625,0.6044921875,0.5546875,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.3037109375,0.41015625,0.5517578125,0.6708984375,0.7216796875,0.69921875,0.634765625,0.5693359375,0.5302734375,0.52734375,0.548828125,0.5703125,0.56640625,0.5302734375,0.48828125,0.4697265625,0.494140625,0.560546875,0.64453125,0.7099609375,0.740234375,0.7470703125,0.708984375,0.6318359375,0.5498046875,0.4970703125,0.4931640625,0.5302734375,0.5693359375,0.5849609375,0.576171875,0.5576171875,0.548828125,0.5654296875,0.6044921875,0.6474609375,0.6640625,0.6298828125,0.5380859375,0.4189453125,0.3173828125,0.2587890625,0.216796875,0.19921875,0.234375,0.3251953125,0.4443359375,0.5458984375,0.6044921875,0.6416015625,0.6494140625,0.634765625,0.62109375,0.630859375,0.673828125,0.740234375,0.8076171875,0.841796875,0.814453125,0.7236328125,0.60546875,0.5107421875,0.46875,0.44140625,0.4150390625,0.40234375,0.4140625,0.443359375,0.4765625,0.5,0.5087890625,0.484375,0.4306640625,0.375,0.345703125,0.35546875,0.39453125,0.453125,0.5546875,0.673828125,0.7646484375,0.7998046875,0.7822265625,0.740234375,0.6884765625,0.6123046875,0.5166015625,0.4189453125,0.3408203125,0.2890625,0.2587890625,0.24609375,0.28515625,0.3642578125,0.44140625,0.4775390625,0.45703125,0.39453125,0.3173828125,0.2353515625,0.1923828125,0.220703125,0.310546875,0.4169921875,0.5,0.5625,0.5830078125,0.546875,0.4580078125,0.46875,0.4638671875,0.4365234375,0.39453125,0.3525390625,0.333984375,0.3583984375,0.4248046875,0.5087890625,0.5751953125,0.6044921875,0.615234375,0.5869140625,0.513671875,0.4140625,0.322265625,0.26953125,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.6484375,0.6064453125,0.5078125,0.3857421875,0.287109375,0.24609375,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.611328125,0.5986328125,0.5908203125,0.5771484375,0.5517578125,0.513671875,0.46875,0.419921875,0.361328125,0.306640625,0.26953125,0.2568359375,0.2578125,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.3095703125,0.376953125,0.455078125,0.52734375,0.5810546875,0.6142578125,0.634765625,0.6396484375,0.591796875,0.5048828125,0.4228515625,0.384765625,0.40625,0.46875,0.5341796875,0.560546875,0.52734375,0.44140625,0.3408203125,0.2734375,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.5751953125,0.6123046875,0.62109375,0.59375,0.54296875,0.4951171875,0.46875,0.439453125,0.3740234375,0.30078125,0.2587890625,0.26953125,0.32421875,0.39453125,0.478515625,0.599609375,0.7236328125,0.8037109375,0.8193359375,0.7861328125,0.740234375,0.6826171875,0.591796875,0.5,0.4521484375,0.4697265625,0.53125,0.6044921875,0.6728515625,0.7158203125,0.712890625,0.662109375,0.5927734375,0.5419921875,0.5302734375,0.5244140625,0.501953125,0.46875,0.44140625,0.4326171875,0.4453125,0.46875,0.4951171875,0.51953125,0.541015625,0.5625,0.5849609375,0.609375,0.634765625,0.6640625,0.69921875,0.7236328125,0.7236328125,0.69921875,0.6640625,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3115234375,0.3857421875,0.4609375,0.5078125,0.5166015625,0.49609375,0.46875,0.4365234375,0.392578125,0.3642578125,0.380859375,0.443359375,0.5283203125,0.6044921875,0.671875,0.7119140625,0.712890625,0.6787109375,0.6376953125,0.6181640625,0.634765625,0.6591796875,0.669921875,0.6513671875,0.6044921875,0.544921875,0.4951171875,0.46875,0.455078125,0.458984375,0.47265625,0.4794921875,0.46875,0.4375,0.39453125,0.3642578125,0.3994140625,0.501953125,0.6318359375,0.734375,0.76953125,0.740234375,0.6865234375,0.6103515625,0.5380859375,0.501953125,0.5146484375,0.5576171875,0.6044921875,0.6494140625,0.6845703125,0.6904296875,0.6591796875,0.60546875,0.556640625,0.5302734375,0.5126953125,0.5029296875,0.5,0.5,0.49609375,0.486328125,0.46875,0.4404296875,0.384765625,0.328125,0.3056640625,0.3330078125,0.396484375,0.46875,0.5390625,0.5966796875,0.626953125,0.62890625,0.6181640625,0.615234375,0.634765625,0.658203125,0.658203125,0.61328125,0.521484375,0.4091796875,0.3154296875,0.2587890625,0.22265625,0.232421875,0.3115234375,0.447265625,0.5927734375,0.697265625,0.740234375,0.7490234375,0.6943359375,0.5849609375,0.4716796875,0.4052734375,0.4091796875,0.46875,0.5400390625,0.59375,0.6044921875,0.5625,0.4892578125,0.4248046875,0.39453125,0.373046875,0.3486328125,0.341796875,0.3662109375,0.4189453125,0.4794921875,0.5302734375,0.5673828125,0.57421875,0.548828125,0.5107421875,0.4853515625,0.4921875,0.5302734375,0.5703125,0.587890625,0.5771484375,0.546875,0.517578125,0.5107421875,0.5302734375,0.5576171875,0.5849609375,0.595703125,0.580078125,0.5419921875,0.5,0.46875,0.4482421875,0.4521484375,0.48046875,0.5185546875,0.546875,0.55078125,0.5302734375,0.5087890625,0.509765625,0.53515625,0.57421875,0.607421875,0.6171875,0.6044921875,0.5908203125,0.595703125,0.619140625,0.6455078125,0.662109375,0.6572265625,0.634765625,0.6103515625,0.587890625,0.5634765625,0.5302734375,0.4873046875,0.4404296875,0.39453125,0.3583984375,0.3671875,0.435546875,0.546875,0.6572265625,0.7255859375,0.740234375,0.736328125,0.720703125,0.701171875,0.6904296875,0.6953125,0.71484375,0.740234375,0.7646484375,0.7666015625,0.7177734375,0.6103515625,0.4697265625,0.34375,0.2587890625,0.2001953125,0.2060546875,0.30078125,0.4580078125,0.619140625,0.71875,0.740234375,0.7255859375,0.6572265625,0.546875,0.435546875,0.3671875,0.3583984375,0.39453125,0.4326171875,0.4384765625,0.40234375,0.33984375,0.279296875,0.25,0.2587890625,0.2919921875,0.3740234375,0.48828125,0.5908203125,0.6455078125,0.6435546875,0.6044921875,0.55859375,0.509765625,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3212890625,0.4375,0.5771484375,0.6796875,0.708984375,0.6728515625,0.6044921875,0.53515625,0.4814453125,0.4580078125,0.4638671875,0.482421875,0.48828125,0.46875,0.4521484375,0.4775390625,0.546875,0.6376953125,0.7138671875,0.7490234375,0.740234375,0.7119140625,0.6494140625,0.56640625,0.4912109375,0.4501953125,0.447265625,0.46875,0.4951171875,0.51953125,0.541015625,0.5625,0.5849609375,0.609375,0.634765625,0.6552734375,0.64453125,0.5849609375,0.4853515625,0.376953125,0.296875,0.2587890625,0.23828125,0.2490234375,0.30859375,0.408203125,0.5166015625,0.5966796875,0.634765625,0.6533203125,0.6435546875,0.6181640625,0.6044921875,0.6220703125,0.671875,0.740234375,0.8115234375,0.8642578125,0.8642578125,0.7978515625,0.689453125,0.5888671875,0.5302734375,0.4873046875,0.4619140625,0.4609375,0.48046875,0.50390625,0.5126953125,0.5,0.474609375,0.4287109375,0.375,0.3359375,0.3251953125,0.3388671875,0.3642578125,0.40234375,0.482421875,0.5908203125,0.6904296875,0.75,0.7607421875,0.740234375,0.7099609375,0.658203125,0.580078125,0.482421875,0.38671875,0.310546875,0.2587890625,0.2275390625,0.2490234375,0.3173828125,0.39453125,0.4384765625,0.4248046875,0.3642578125,0.287109375,0.2099609375,0.1728515625,0.208984375,0.3056640625,0.4169921875,0.5,0.560546875,0.57421875,0.5302734375,0.505859375,0.5419921875,0.5419921875,0.505859375,0.4482421875,0.3837890625,0.3212890625,0.294921875,0.3271484375,0.4052734375,0.490234375,0.55078125,0.595703125,0.60546875,0.564453125,0.4833984375,0.39453125,0.337890625,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.623046875,0.5888671875,0.517578125,0.4296875,0.3583984375,0.32421875,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.615234375,0.6201171875,0.62109375,0.6005859375,0.5537109375,0.4921875,0.4287109375,0.3671875,0.3095703125,0.275390625,0.2734375,0.296875,0.3193359375,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.384765625,0.4365234375,0.4755859375,0.5068359375,0.5361328125,0.57421875,0.6220703125,0.6572265625,0.62890625,0.5419921875,0.439453125,0.37109375,0.37109375,0.4287109375,0.49609375,0.5361328125,0.5263671875,0.46875,0.392578125,0.337890625,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.6337890625,0.6904296875,0.708984375,0.6669921875,0.580078125,0.490234375,0.4287109375,0.3701171875,0.29296875,0.234375,0.23046875,0.2861328125,0.3701171875,0.4482421875,0.53125,0.646484375,0.755859375,0.8115234375,0.796875,0.7373046875,0.673828125,0.6005859375,0.5,0.4072265625,0.37109375,0.40234375,0.4755859375,0.55078125,0.62109375,0.67578125,0.693359375,0.66796875,0.619140625,0.5791015625,0.5703125,0.5654296875,0.5419921875,0.5029296875,0.4609375,0.431640625,0.421875,0.4287109375,0.4423828125,0.466796875,0.50390625,0.546875,0.583984375,0.6083984375,0.6220703125,0.6328125,0.646484375,0.65625,0.65625,0.646484375,0.6328125,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3896484375,0.4521484375,0.4951171875,0.5,0.4755859375,0.4453125,0.4287109375,0.412109375,0.376953125,0.349609375,0.35546875,0.404296875,0.4775390625,0.55078125,0.62109375,0.67578125,0.697265625,0.681640625,0.6455078125,0.6201171875,0.6220703125,0.634765625,0.6484375,0.6455078125,0.611328125,0.55078125,0.484375,0.4287109375,0.388671875,0.388671875,0.4296875,0.482421875,0.5126953125,0.5,0.4482421875,0.40234375,0.419921875,0.5048828125,0.6162109375,0.701171875,0.7197265625,0.673828125,0.6025390625,0.5068359375,0.4228515625,0.390625,0.419921875,0.4853515625,0.55078125,0.6181640625,0.6953125,0.7490234375,0.7490234375,0.6982421875,0.6279296875,0.5703125,0.5244140625,0.5,0.49609375,0.5029296875,0.5,0.474609375,0.4287109375,0.369140625,0.2900390625,0.2275390625,0.21875,0.2705078125,0.3525390625,0.4287109375,0.501953125,0.5712890625,0.6201171875,0.63671875,0.6279296875,0.6171875,0.6220703125,0.6337890625,0.640625,0.6220703125,0.5654296875,0.48046875,0.3935546875,0.3251953125,0.2724609375,0.263671875,0.322265625,0.435546875,0.5615234375,0.646484375,0.673828125,0.66796875,0.6044921875,0.498046875,0.3984375,0.349609375,0.3662109375,0.4287109375,0.505859375,0.5908203125,0.646484375,0.642578125,0.583984375,0.5068359375,0.4482421875,0.392578125,0.3349609375,0.306640625,0.3349609375,0.4111328125,0.5,0.5703125,0.62109375,0.6298828125,0.595703125,0.5439453125,0.509765625,0.5185546875,0.5703125,0.6279296875,0.6669921875,0.6708984375,0.640625,0.5966796875,0.568359375,0.5703125,0.578125,0.5751953125,0.552734375,0.515625,0.474609375,0.443359375,0.4287109375,0.423828125,0.439453125,0.4765625,0.5224609375,0.5595703125,0.5751953125,0.5703125,0.56640625,0.5859375,0.6181640625,0.6396484375,0.6328125,0.599609375,0.55078125,0.5048828125,0.482421875,0.49609375,0.541015625,0.5927734375,0.623046875,0.6220703125,0.6162109375,0.623046875,0.6279296875,0.6123046875,0.5703125,0.509765625,0.4482421875,0.3935546875,0.3759765625,0.4150390625,0.5009765625,0.5966796875,0.6591796875,0.673828125,0.671875,0.666015625,0.658203125,0.6533203125,0.6552734375,0.6630859375,0.673828125,0.685546875,0.6923828125,0.669921875,0.6044921875,0.505859375,0.4052734375,0.3251953125,0.263671875,0.25390625,0.318359375,0.4404296875,0.5712890625,0.6552734375,0.673828125,0.6591796875,0.5966796875,0.5009765625,0.4150390625,0.3759765625,0.3935546875,0.4482421875,0.498046875,0.498046875,0.4443359375,0.3642578125,0.30078125,0.287109375,0.3251953125,0.388671875,0.4892578125,0.5947265625,0.6591796875,0.66015625,0.6123046875,0.55078125,0.4951171875,0.4580078125,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.400390625,0.5146484375,0.6298828125,0.693359375,0.6845703125,0.6240234375,0.55078125,0.48046875,0.4189453125,0.3857421875,0.388671875,0.4130859375,0.431640625,0.4287109375,0.431640625,0.4833984375,0.57421875,0.6640625,0.7177734375,0.7158203125,0.673828125,0.6162109375,0.5439453125,0.4716796875,0.4248046875,0.41015625,0.41796875,0.4287109375,0.4423828125,0.466796875,0.50390625,0.546875,0.583984375,0.6083984375,0.6220703125,0.6259765625,0.6044921875,0.5478515625,0.4697265625,0.3935546875,0.34375,0.3251953125,0.3212890625,0.34375,0.3994140625,0.4775390625,0.5537109375,0.603515625,0.6220703125,0.623046875,0.5947265625,0.5556640625,0.5341796875,0.55078125,0.603515625,0.673828125,0.7490234375,0.8251953125,0.8603515625,0.8291015625,0.7412109375,0.6416015625,0.5703125,0.515625,0.4921875,0.5029296875,0.5322265625,0.552734375,0.5419921875,0.5,0.4453125,0.3876953125,0.3427734375,0.328125,0.3408203125,0.36328125,0.376953125,0.3955078125,0.4453125,0.521484375,0.599609375,0.6552734375,0.677734375,0.673828125,0.6640625,0.6494140625,0.6162109375,0.5546875,0.47265625,0.3916015625,0.3251953125,0.27734375,0.2802734375,0.333984375,0.404296875,0.4482421875,0.4375,0.376953125,0.30078125,0.220703125,0.181640625,0.2138671875,0.3076171875,0.4169921875,0.5,0.5595703125,0.5703125,0.5263671875,0.5576171875,0.6005859375,0.6005859375,0.556640625,0.4892578125,0.412109375,0.32421875,0.2646484375,0.2705078125,0.33984375,0.4326171875,0.509765625,0.57421875,0.61328125,0.60546875,0.552734375,0.482421875,0.431640625,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.5673828125,0.548828125,0.5146484375,0.4736328125,0.439453125,0.421875,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.57421875,0.5986328125,0.62109375,0.6171875,0.576171875,0.5107421875,0.439453125,0.37109375,0.3173828125,0.2998046875,0.32421875,0.3720703125,0.41015625,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.4814453125,0.51171875,0.5068359375,0.4873046875,0.4814453125,0.5087890625,0.5693359375,0.623046875,0.615234375,0.5458984375,0.4521484375,0.3857421875,0.3828125,0.439453125,0.5087890625,0.55859375,0.5673828125,0.5322265625,0.474609375,0.4306640625,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6337890625,0.7109375,0.748046875,0.7158203125,0.6240234375,0.5185546875,0.439453125,0.3642578125,0.2783203125,0.2236328125,0.2353515625,0.310546875,0.4091796875,0.4892578125,0.5712890625,0.6748046875,0.7607421875,0.783203125,0.7373046875,0.6552734375,0.5791015625,0.5,0.3984375,0.31640625,0.296875,0.3466796875,0.431640625,0.509765625,0.580078125,0.638671875,0.6630859375,0.646484375,0.603515625,0.568359375,0.5595703125,0.556640625,0.541015625,0.5126953125,0.48046875,0.4541015625,0.4404296875,0.439453125,0.4443359375,0.4599609375,0.48828125,0.5205078125,0.548828125,0.564453125,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5751953125,0.5732421875,0.5712890625,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.48828125,0.54296875,0.5615234375,0.5380859375,0.490234375,0.4501953125,0.439453125,0.4296875,0.3955078125,0.357421875,0.345703125,0.3759765625,0.4375,0.509765625,0.580078125,0.638671875,0.6640625,0.6494140625,0.609375,0.576171875,0.5693359375,0.5771484375,0.6025390625,0.625,0.619140625,0.576171875,0.509765625,0.439453125,0.3837890625,0.380859375,0.431640625,0.5029296875,0.552734375,0.546875,0.4892578125,0.43359375,0.43359375,0.4931640625,0.576171875,0.634765625,0.6357421875,0.5791015625,0.5,0.3994140625,0.318359375,0.2998046875,0.349609375,0.43359375,0.509765625,0.587890625,0.685546875,0.7607421875,0.7724609375,0.71875,0.634765625,0.5595703125,0.5,0.474609375,0.486328125,0.5126953125,0.5244140625,0.4990234375,0.439453125,0.36328125,0.271484375,0.205078125,0.2041015625,0.2685546875,0.3603515625,0.439453125,0.5126953125,0.5791015625,0.6201171875,0.6240234375,0.599609375,0.57421875,0.5693359375,0.5771484375,0.6005859375,0.6201171875,0.609375,0.5615234375,0.4912109375,0.419921875,0.35546875,0.322265625,0.34375,0.4150390625,0.5029296875,0.564453125,0.5791015625,0.5673828125,0.509765625,0.42578125,0.3583984375,0.3388671875,0.373046875,0.439453125,0.5205078125,0.6181640625,0.693359375,0.705078125,0.650390625,0.564453125,0.4892578125,0.4150390625,0.3330078125,0.283203125,0.30078125,0.380859375,0.48046875,0.5595703125,0.6181640625,0.6279296875,0.5888671875,0.529296875,0.490234375,0.5009765625,0.5595703125,0.626953125,0.677734375,0.689453125,0.6591796875,0.607421875,0.5673828125,0.5595703125,0.55859375,0.5458984375,0.5205078125,0.4892578125,0.4609375,0.4443359375,0.439453125,0.44140625,0.455078125,0.4833984375,0.515625,0.5439453125,0.5576171875,0.5595703125,0.56640625,0.5986328125,0.6376953125,0.654296875,0.6318359375,0.5771484375,0.509765625,0.4443359375,0.4033203125,0.404296875,0.4501953125,0.5146484375,0.5595703125,0.5693359375,0.5751953125,0.60546875,0.6396484375,0.6484375,0.619140625,0.5595703125,0.4892578125,0.423828125,0.3828125,0.390625,0.443359375,0.515625,0.5673828125,0.5791015625,0.5791015625,0.578125,0.5771484375,0.576171875,0.576171875,0.5771484375,0.5791015625,0.5869140625,0.6103515625,0.62890625,0.6162109375,0.56640625,0.4931640625,0.419921875,0.353515625,0.3203125,0.3427734375,0.4150390625,0.5048828125,0.5654296875,0.5791015625,0.5673828125,0.515625,0.443359375,0.390625,0.3828125,0.423828125,0.4892578125,0.546875,0.5498046875,0.49609375,0.4189453125,0.3642578125,0.3642578125,0.419921875,0.498046875,0.599609375,0.6845703125,0.708984375,0.6650390625,0.5849609375,0.509765625,0.44921875,0.427734375,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.5,0.603515625,0.6904296875,0.71484375,0.6689453125,0.5869140625,0.509765625,0.4384765625,0.3779296875,0.3505859375,0.36328125,0.4013671875,0.4326171875,0.439453125,0.451171875,0.505859375,0.587890625,0.654296875,0.6748046875,0.642578125,0.5791015625,0.5087890625,0.44140625,0.396484375,0.3876953125,0.408203125,0.431640625,0.439453125,0.4443359375,0.4599609375,0.48828125,0.5205078125,0.548828125,0.564453125,0.5693359375,0.5673828125,0.5517578125,0.51953125,0.48046875,0.4453125,0.4248046875,0.419921875,0.421875,0.4375,0.46875,0.5087890625,0.5439453125,0.5634765625,0.5693359375,0.5615234375,0.521484375,0.470703125,0.4423828125,0.45703125,0.509765625,0.5791015625,0.658203125,0.7490234375,0.8095703125,0.8037109375,0.7333984375,0.6376953125,0.5595703125,0.4990234375,0.48046875,0.5048828125,0.5478515625,0.57421875,0.5576171875,0.5,0.4306640625,0.3720703125,0.341796875,0.3515625,0.3876953125,0.419921875,0.4296875,0.435546875,0.455078125,0.490234375,0.5302734375,0.5615234375,0.5771484375,0.5791015625,0.583984375,0.603515625,0.6201171875,0.6083984375,0.560546875,0.4912109375,0.419921875,0.3623046875,0.353515625,0.396484375,0.458984375,0.5,0.4892578125,0.4296875,0.3515625,0.265625,0.21484375,0.2333984375,0.3154296875,0.41796875,0.5,0.5595703125,0.5693359375,0.5283203125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.640625,0.6572265625,0.634765625,0.578125,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.5771484375,0.6318359375,0.654296875,0.6376953125,0.5986328125,0.56640625,0.5595703125,0.5576171875,0.5419921875,0.5126953125,0.4765625,0.447265625,0.431640625,0.4296875,0.4345703125,0.4521484375,0.4833984375,0.517578125,0.544921875,0.55859375,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.443359375,0.4609375,0.4931640625,0.53125,0.5615234375,0.5771484375,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.4326171875,0.4912109375,0.576171875,0.6435546875,0.6611328125,0.6259765625,0.5595703125,0.490234375,0.4384765625,0.4287109375,0.4638671875,0.521484375,0.5673828125,0.5791015625,0.5703125,0.52734375,0.4697265625,0.43359375,0.44140625,0.490234375,0.5595703125,0.6162109375,0.611328125,0.5419921875,0.447265625,0.3779296875,0.373046875,0.4296875,0.4931640625,0.521484375,0.5126953125,0.4873046875,0.4755859375,0.5,0.5595703125,0.6259765625,0.6787109375,0.6953125,0.671875,0.6259765625,0.587890625,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.408203125,0.3662109375,0.3154296875,0.2880859375,0.3046875,0.359375,0.4296875,0.5126953125,0.6240234375,0.72265625,0.76171875,0.728515625,0.654296875,0.5791015625,0.5,0.3974609375,0.3134765625,0.291015625,0.3359375,0.4150390625,0.4892578125,0.564453125,0.646484375,0.697265625,0.6806640625,0.6044921875,0.5068359375,0.4296875,0.3544921875,0.2705078125,0.2177734375,0.2314453125,0.3095703125,0.4091796875,0.4892578125,0.5576171875,0.6025390625,0.6015625,0.5537109375,0.484375,0.4326171875,0.419921875,0.421875,0.4384765625,0.470703125,0.5087890625,0.541015625,0.5576171875,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.412109375,0.3896484375,0.373046875,0.3857421875,0.435546875,0.5068359375,0.5791015625,0.646484375,0.6962890625,0.705078125,0.6728515625,0.6181640625,0.5771484375,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.5556640625,0.59765625,0.59375,0.544921875,0.4775390625,0.4296875,0.419921875,0.4345703125,0.49609375,0.583984375,0.6552734375,0.6767578125,0.6435546875,0.5791015625,0.5185546875,0.4990234375,0.51953125,0.5556640625,0.57421875,0.5517578125,0.4892578125,0.4287109375,0.41015625,0.4384765625,0.4853515625,0.5146484375,0.4990234375,0.439453125,0.36328125,0.2802734375,0.23046875,0.2490234375,0.3291015625,0.4296875,0.509765625,0.5849609375,0.666015625,0.7119140625,0.6875,0.6025390625,0.5,0.419921875,0.365234375,0.3740234375,0.44921875,0.5498046875,0.625,0.6337890625,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.64453125,0.677734375,0.6591796875,0.5908203125,0.5048828125,0.4443359375,0.4296875,0.44140625,0.498046875,0.58203125,0.6513671875,0.6728515625,0.6416015625,0.5791015625,0.509765625,0.4423828125,0.3974609375,0.3876953125,0.4052734375,0.42578125,0.4296875,0.421875,0.396484375,0.3740234375,0.3798828125,0.4228515625,0.4892578125,0.5595703125,0.6337890625,0.71484375,0.7626953125,0.744140625,0.6650390625,0.5673828125,0.4892578125,0.412109375,0.3154296875,0.23828125,0.22265625,0.2724609375,0.35546875,0.4296875,0.486328125,0.494140625,0.4541015625,0.39453125,0.3564453125,0.369140625,0.4296875,0.4990234375,0.548828125,0.5595703125,0.525390625,0.4697265625,0.4287109375,0.419921875,0.4248046875,0.4453125,0.4814453125,0.5234375,0.5576171875,0.576171875,0.5791015625,0.576171875,0.560546875,0.5302734375,0.494140625,0.462890625,0.4443359375,0.439453125,0.44921875,0.4970703125,0.564453125,0.61328125,0.6171875,0.576171875,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.4287109375,0.3681640625,0.3408203125,0.353515625,0.390625,0.4228515625,0.4296875,0.427734375,0.4267578125,0.42578125,0.423828125,0.4228515625,0.421875,0.419921875,0.431640625,0.490234375,0.5771484375,0.6474609375,0.6689453125,0.6357421875,0.5693359375,0.49609375,0.42578125,0.3798828125,0.373046875,0.3955078125,0.421875,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.5693359375,0.58984375,0.5673828125,0.52734375,0.5029296875,0.5205078125,0.5791015625,0.6533203125,0.732421875,0.775390625,0.751953125,0.66796875,0.5673828125,0.4892578125,0.4345703125,0.43359375,0.48828125,0.5654296875,0.619140625,0.6162109375,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.43359375,0.4091796875,0.38671875,0.392578125,0.43359375,0.5,0.5693359375,0.64453125,0.728515625,0.78125,0.767578125,0.689453125,0.58984375,0.509765625,0.4404296875,0.3935546875,0.3896484375,0.4326171875,0.498046875,0.546875,0.5595703125,0.568359375,0.595703125,0.62109375,0.6181640625,0.5771484375,0.5107421875,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5556640625,0.5390625,0.5087890625,0.474609375,0.4453125,0.4306640625,0.4296875,0.4345703125,0.4541015625,0.486328125,0.5234375,0.552734375,0.568359375,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.412109375,0.3720703125,0.3203125,0.2900390625,0.3017578125,0.3515625,0.419921875,0.498046875,0.5908203125,0.6572265625,0.658203125,0.5927734375,0.4990234375,0.419921875,0.3623046875,0.361328125,0.419921875,0.50390625,0.564453125,0.5654296875,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.4326171875,0.4921875,0.5791015625,0.6494140625,0.6728515625,0.6416015625,0.5791015625,0.5224609375,0.513671875,0.552734375,0.611328125,0.6494140625,0.6376953125,0.5791015625,0.5,0.3994140625,0.3173828125,0.296875,0.34375,0.4248046875,0.5,0.5556640625,0.5625,0.51953125,0.6337890625,0.6591796875,0.6513671875,0.609375,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.599609375,0.6328125,0.6396484375,0.6181640625,0.5859375,0.56640625,0.5703125,0.57421875,0.552734375,0.50390625,0.443359375,0.39453125,0.373046875,0.376953125,0.3935546875,0.4306640625,0.4833984375,0.5341796875,0.5673828125,0.5771484375,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.4365234375,0.4716796875,0.5341796875,0.603515625,0.6552734375,0.677734375,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.3408203125,0.4130859375,0.5205078125,0.615234375,0.6572265625,0.6337890625,0.5703125,0.5009765625,0.455078125,0.45703125,0.5107421875,0.5888671875,0.6513671875,0.673828125,0.6708984375,0.6240234375,0.5498046875,0.48828125,0.470703125,0.50390625,0.5703125,0.625,0.6123046875,0.529296875,0.41796875,0.3349609375,0.322265625,0.376953125,0.4443359375,0.490234375,0.5087890625,0.5078125,0.5068359375,0.5263671875,0.5703125,0.6220703125,0.671875,0.7041015625,0.7099609375,0.6953125,0.677734375,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.306640625,0.263671875,0.2197265625,0.2080078125,0.240234375,0.3046875,0.376953125,0.462890625,0.5869140625,0.7119140625,0.78515625,0.787109375,0.736328125,0.673828125,0.6015625,0.5,0.3994140625,0.3447265625,0.349609375,0.39453125,0.4482421875,0.5029296875,0.5615234375,0.5927734375,0.57421875,0.5107421875,0.435546875,0.376953125,0.3193359375,0.2490234375,0.2021484375,0.2119140625,0.2783203125,0.369140625,0.4482421875,0.5166015625,0.5595703125,0.5537109375,0.4951171875,0.4130859375,0.3486328125,0.3251953125,0.322265625,0.3505859375,0.4111328125,0.484375,0.544921875,0.5732421875,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.3154296875,0.314453125,0.34375,0.4140625,0.5107421875,0.6044921875,0.673828125,0.73046875,0.7626953125,0.7548828125,0.7109375,0.6552734375,0.62109375,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.5029296875,0.52734375,0.50390625,0.4404296875,0.3701171875,0.3271484375,0.3251953125,0.3525390625,0.4375,0.5634765625,0.6767578125,0.7353515625,0.7265625,0.673828125,0.6181640625,0.587890625,0.580078125,0.576171875,0.55859375,0.5146484375,0.4482421875,0.3857421875,0.3671875,0.3955078125,0.4462890625,0.484375,0.4794921875,0.4287109375,0.36328125,0.2978515625,0.2685546875,0.30078125,0.384765625,0.48046875,0.55078125,0.6142578125,0.6669921875,0.673828125,0.6142578125,0.5068359375,0.3994140625,0.3251953125,0.2822265625,0.3154296875,0.427734375,0.5712890625,0.68359375,0.716796875,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.7275390625,0.7421875,0.6953125,0.595703125,0.482421875,0.4033203125,0.376953125,0.380859375,0.439453125,0.541015625,0.6455078125,0.7099609375,0.71484375,0.673828125,0.6181640625,0.55078125,0.4833984375,0.4306640625,0.4013671875,0.3876953125,0.376953125,0.3642578125,0.3505859375,0.353515625,0.3876953125,0.4482421875,0.5146484375,0.5703125,0.6240234375,0.67578125,0.6962890625,0.6640625,0.5888671875,0.5078125,0.4482421875,0.3896484375,0.314453125,0.2509765625,0.232421875,0.263671875,0.322265625,0.376953125,0.4169921875,0.412109375,0.3681640625,0.31640625,0.2919921875,0.314453125,0.376953125,0.4443359375,0.484375,0.478515625,0.4296875,0.3671875,0.3271484375,0.3251953125,0.34375,0.3935546875,0.4736328125,0.560546875,0.630859375,0.6669921875,0.673828125,0.6689453125,0.6455078125,0.5986328125,0.5380859375,0.482421875,0.4443359375,0.4287109375,0.4306640625,0.4736328125,0.5439453125,0.6064453125,0.630859375,0.6064453125,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.4287109375,0.3671875,0.333984375,0.3369140625,0.361328125,0.3798828125,0.376953125,0.3671875,0.359375,0.353515625,0.3486328125,0.34375,0.3359375,0.3251953125,0.33203125,0.40234375,0.5205078125,0.6328125,0.693359375,0.68359375,0.6220703125,0.544921875,0.45703125,0.380859375,0.3427734375,0.34375,0.36328125,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.6064453125,0.63671875,0.6376953125,0.6220703125,0.61328125,0.6298828125,0.673828125,0.724609375,0.7646484375,0.76171875,0.7021484375,0.6044921875,0.509765625,0.4482421875,0.4091796875,0.4228515625,0.486328125,0.56640625,0.6201171875,0.6201171875,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.4267578125,0.419921875,0.4248046875,0.4541015625,0.5068359375,0.5673828125,0.6220703125,0.6796875,0.75,0.796875,0.787109375,0.720703125,0.6298828125,0.55078125,0.48046875,0.423828125,0.4072265625,0.4384765625,0.498046875,0.5498046875,0.5703125,0.5849609375,0.611328125,0.6279296875,0.6123046875,0.5615234375,0.4931640625,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.564453125,0.5341796875,0.484375,0.4287109375,0.3876953125,0.3720703125,0.376953125,0.39453125,0.4375,0.501953125,0.56640625,0.611328125,0.6279296875,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3271484375,0.298828125,0.2548828125,0.224609375,0.228515625,0.267578125,0.3251953125,0.3955078125,0.4814453125,0.546875,0.55078125,0.4921875,0.404296875,0.3251953125,0.26953125,0.2802734375,0.36328125,0.478515625,0.5712890625,0.595703125,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.3408203125,0.4130859375,0.5283203125,0.6416015625,0.7099609375,0.71484375,0.673828125,0.6328125,0.630859375,0.6669921875,0.71484375,0.7412109375,0.7255859375,0.673828125,0.6025390625,0.5068359375,0.4189453125,0.376953125,0.3935546875,0.4453125,0.5,0.5380859375,0.52734375,0.4716796875,0.57421875,0.6240234375,0.65234375,0.6435546875,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.6171875,0.607421875,0.57421875,0.53515625,0.509765625,0.5087890625,0.5302734375,0.5478515625,0.5322265625,0.48046875,0.4140625,0.3623046875,0.345703125,0.3642578125,0.3974609375,0.4521484375,0.513671875,0.5576171875,0.5703125,0.5556640625,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.4794921875,0.52734375,0.607421875,0.6904296875,0.74609375,0.759765625,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.275390625,0.349609375,0.4638671875,0.5654296875,0.61328125,0.59375,0.5302734375,0.4609375,0.4189453125,0.4326171875,0.5078125,0.61328125,0.69921875,0.740234375,0.7509765625,0.703125,0.607421875,0.5107421875,0.45703125,0.46875,0.5302734375,0.5859375,0.576171875,0.4990234375,0.39453125,0.3173828125,0.30859375,0.3642578125,0.4345703125,0.49609375,0.533203125,0.5380859375,0.525390625,0.517578125,0.5302734375,0.552734375,0.5927734375,0.642578125,0.6904296875,0.7236328125,0.73828125,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.2255859375,0.177734375,0.142578125,0.1513671875,0.2080078125,0.2880859375,0.3642578125,0.44921875,0.5732421875,0.7041015625,0.7919921875,0.814453125,0.78515625,0.740234375,0.685546875,0.599609375,0.5,0.4189453125,0.3798828125,0.3779296875,0.39453125,0.4150390625,0.435546875,0.447265625,0.4384765625,0.4140625,0.3857421875,0.3642578125,0.3359375,0.2841796875,0.234375,0.2197265625,0.25390625,0.3212890625,0.39453125,0.46484375,0.515625,0.5185546875,0.4638671875,0.375,0.2978515625,0.2587890625,0.2431640625,0.2724609375,0.34765625,0.44140625,0.5166015625,0.5458984375,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.23828125,0.2509765625,0.3193359375,0.4384765625,0.57421875,0.6806640625,0.740234375,0.7783203125,0.783203125,0.748046875,0.6904296875,0.6376953125,0.6181640625,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.431640625,0.4326171875,0.3916015625,0.3251953125,0.2666015625,0.2431640625,0.2587890625,0.3017578125,0.40625,0.5517578125,0.6875,0.7666015625,0.7763671875,0.740234375,0.6982421875,0.6640625,0.6328125,0.5908203125,0.5341796875,0.4658203125,0.39453125,0.3330078125,0.3154296875,0.3525390625,0.421875,0.484375,0.501953125,0.46875,0.421875,0.37890625,0.3671875,0.40234375,0.4755859375,0.55078125,0.6044921875,0.6474609375,0.6640625,0.6298828125,0.5380859375,0.4189453125,0.3173828125,0.2587890625,0.232421875,0.2841796875,0.4169921875,0.58203125,0.71484375,0.7666015625,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.779296875,0.7822265625,0.7255859375,0.619140625,0.49609375,0.404296875,0.3642578125,0.349609375,0.38671875,0.48046875,0.5986328125,0.69921875,0.74609375,0.740234375,0.716796875,0.6728515625,0.6044921875,0.5244140625,0.4501953125,0.3955078125,0.3642578125,0.33984375,0.3291015625,0.34765625,0.39453125,0.4541015625,0.50390625,0.5302734375,0.5478515625,0.556640625,0.5439453125,0.5078125,0.4599609375,0.4189453125,0.39453125,0.373046875,0.34375,0.3193359375,0.3115234375,0.322265625,0.34375,0.3642578125,0.3720703125,0.3447265625,0.294921875,0.2568359375,0.255859375,0.296875,0.3642578125,0.427734375,0.4521484375,0.421875,0.3525390625,0.28125,0.24609375,0.2587890625,0.2958984375,0.373046875,0.4853515625,0.6015625,0.689453125,0.732421875,0.740234375,0.7373046875,0.7197265625,0.6787109375,0.619140625,0.5537109375,0.5009765625,0.46875,0.453125,0.4765625,0.53515625,0.6015625,0.6435546875,0.6416015625,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4306640625,0.376953125,0.3525390625,0.3583984375,0.376953125,0.3828125,0.3642578125,0.33984375,0.3232421875,0.314453125,0.30859375,0.2998046875,0.283203125,0.2587890625,0.251953125,0.3203125,0.4521484375,0.59375,0.68359375,0.6923828125,0.634765625,0.5556640625,0.4541015625,0.361328125,0.30859375,0.306640625,0.3349609375,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.6494140625,0.6875,0.7119140625,0.720703125,0.720703125,0.724609375,0.740234375,0.7529296875,0.736328125,0.6767578125,0.5849609375,0.490234375,0.423828125,0.39453125,0.3857421875,0.4140625,0.474609375,0.5380859375,0.57421875,0.568359375,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.470703125,0.4794921875,0.501953125,0.5380859375,0.5791015625,0.6123046875,0.634765625,0.6630859375,0.71484375,0.7646484375,0.779296875,0.7451171875,0.677734375,0.6044921875,0.529296875,0.4521484375,0.4033203125,0.40234375,0.4443359375,0.49609375,0.5302734375,0.560546875,0.5986328125,0.6240234375,0.6162109375,0.57421875,0.5185546875,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.5224609375,0.4873046875,0.4306640625,0.375,0.3427734375,0.341796875,0.3642578125,0.3994140625,0.466796875,0.5517578125,0.6240234375,0.66015625,0.658203125,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.2783203125,0.271484375,0.2421875,0.2119140625,0.201171875,0.21875,0.2587890625,0.3134765625,0.3876953125,0.44921875,0.4609375,0.4140625,0.3349609375,0.2587890625,0.203125,0.2197265625,0.3173828125,0.4580078125,0.580078125,0.630859375,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2724609375,0.341796875,0.4638671875,0.5986328125,0.703125,0.7470703125,0.740234375,0.7275390625,0.740234375,0.7705078125,0.7978515625,0.8037109375,0.78125,0.740234375,0.6875,0.6142578125,0.5380859375,0.4853515625,0.4697265625,0.48046875,0.5,0.505859375,0.46484375,0.3916015625,0.4833984375,0.5576171875,0.623046875,0.650390625,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.6064453125,0.5458984375,0.4716796875,0.4169921875,0.40234375,0.4267578125,0.46875,0.5048828125,0.5029296875,0.4609375,0.40234375,0.3603515625,0.3583984375,0.39453125,0.4462890625,0.5146484375,0.57421875,0.59375,0.568359375,0.517578125,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.541015625,0.5927734375,0.673828125,0.748046875,0.787109375,0.779296875,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.2734375,0.3408203125,0.44140625,0.52734375,0.560546875,0.5341796875,0.46875,0.3994140625,0.353515625,0.3671875,0.44921875,0.572265625,0.6796875,0.740234375,0.767578125,0.7265625,0.62109375,0.5,0.4189453125,0.412109375,0.46875,0.52734375,0.529296875,0.4716796875,0.3916015625,0.3349609375,0.3359375,0.39453125,0.46875,0.541015625,0.5849609375,0.5830078125,0.5419921875,0.49609375,0.46875,0.45703125,0.4765625,0.533203125,0.6123046875,0.6875,0.7314453125,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.2080078125,0.1494140625,0.1181640625,0.142578125,0.2197265625,0.3154296875,0.39453125,0.4755859375,0.5859375,0.6953125,0.767578125,0.787109375,0.767578125,0.740234375,0.7080078125,0.654296875,0.580078125,0.4990234375,0.431640625,0.3876953125,0.3642578125,0.34375,0.322265625,0.3115234375,0.3193359375,0.34375,0.373046875,0.39453125,0.40234375,0.37109375,0.3134765625,0.267578125,0.259765625,0.2978515625,0.3642578125,0.4375,0.50390625,0.52734375,0.48828125,0.4033203125,0.3154296875,0.2587890625,0.2255859375,0.2451171875,0.3173828125,0.4111328125,0.4833984375,0.501953125,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.22265625,0.232421875,0.3115234375,0.447265625,0.5927734375,0.697265625,0.740234375,0.755859375,0.732421875,0.673828125,0.607421875,0.56640625,0.5673828125,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.380859375,0.361328125,0.30859375,0.2509765625,0.2158203125,0.220703125,0.2587890625,0.318359375,0.4248046875,0.560546875,0.6796875,0.748046875,0.7607421875,0.740234375,0.7158203125,0.6923828125,0.6572265625,0.599609375,0.521484375,0.4384765625,0.3642578125,0.3017578125,0.28515625,0.328125,0.4140625,0.4990234375,0.5419921875,0.5302734375,0.5029296875,0.4814453125,0.48046875,0.5078125,0.5556640625,0.603515625,0.634765625,0.6552734375,0.64453125,0.5849609375,0.4853515625,0.376953125,0.296875,0.2587890625,0.248046875,0.302734375,0.4248046875,0.57421875,0.6962890625,0.7509765625,0.740234375,0.7109375,0.67578125,0.6513671875,0.6513671875,0.67578125,0.7109375,0.740234375,0.763671875,0.767578125,0.7294921875,0.6455078125,0.541015625,0.4501953125,0.39453125,0.35546875,0.353515625,0.408203125,0.5107421875,0.625,0.70703125,0.740234375,0.7568359375,0.7548828125,0.71484375,0.634765625,0.53515625,0.44921875,0.39453125,0.3544921875,0.341796875,0.3642578125,0.4111328125,0.4580078125,0.4794921875,0.46875,0.4453125,0.408203125,0.3671875,0.3388671875,0.3330078125,0.345703125,0.3642578125,0.3857421875,0.4140625,0.4384765625,0.447265625,0.435546875,0.4150390625,0.39453125,0.3662109375,0.310546875,0.25390625,0.2314453125,0.2587890625,0.322265625,0.39453125,0.455078125,0.4638671875,0.4140625,0.328125,0.2529296875,0.2275390625,0.2587890625,0.314453125,0.40625,0.521484375,0.6298828125,0.703125,0.7353515625,0.740234375,0.7412109375,0.7421875,0.7294921875,0.6923828125,0.6376953125,0.5791015625,0.5302734375,0.4921875,0.4873046875,0.521484375,0.580078125,0.6318359375,0.65234375,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.43359375,0.39453125,0.3916015625,0.4140625,0.435546875,0.4306640625,0.39453125,0.353515625,0.330078125,0.3251953125,0.328125,0.3232421875,0.2998046875,0.2587890625,0.232421875,0.283203125,0.4052734375,0.546875,0.64453125,0.66015625,0.6044921875,0.5234375,0.4189453125,0.3251953125,0.28125,0.2958984375,0.345703125,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.666015625,0.708984375,0.7509765625,0.775390625,0.7763671875,0.759765625,0.740234375,0.7099609375,0.6396484375,0.5380859375,0.4384765625,0.3720703125,0.3515625,0.3642578125,0.388671875,0.4306640625,0.4775390625,0.5078125,0.5126953125,0.4951171875,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5341796875,0.5546875,0.5849609375,0.61328125,0.6259765625,0.62109375,0.6044921875,0.5966796875,0.6279296875,0.685546875,0.7314453125,0.7392578125,0.701171875,0.634765625,0.5546875,0.4560546875,0.3720703125,0.33984375,0.3642578125,0.4189453125,0.46875,0.5185546875,0.57421875,0.6162109375,0.6240234375,0.5986328125,0.560546875,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.4609375,0.42578125,0.375,0.3359375,0.328125,0.3515625,0.39453125,0.44921875,0.53515625,0.6240234375,0.6796875,0.6845703125,0.650390625,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.2998046875,0.3173828125,0.3056640625,0.275390625,0.2470703125,0.2392578125,0.2587890625,0.294921875,0.35546875,0.4140625,0.4326171875,0.400390625,0.33203125,0.2587890625,0.201171875,0.2099609375,0.30078125,0.44140625,0.57421875,0.6416015625,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.267578125,0.314453125,0.408203125,0.52734375,0.6376953125,0.7099609375,0.740234375,0.76171875,0.791015625,0.814453125,0.8173828125,0.798828125,0.7685546875,0.740234375,0.7119140625,0.673828125,0.6298828125,0.5849609375,0.5478515625,0.51953125,0.5,0.4677734375,0.3955078125,0.30859375,0.3994140625,0.48046875,0.5673828125,0.619140625,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.5595703125,0.462890625,0.3642578125,0.3095703125,0.3154296875,0.3671875,0.4287109375,0.48046875,0.4921875,0.4619140625,0.4150390625,0.384765625,0.396484375,0.4482421875,0.515625,0.59375,0.646484375,0.6416015625,0.580078125,0.498046875,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.5810546875,0.62890625,0.6982421875,0.7509765625,0.7626953125,0.73046875,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.337890625,0.392578125,0.46875,0.5263671875,0.5361328125,0.49609375,0.4287109375,0.3564453125,0.2978515625,0.2939453125,0.3623046875,0.4814453125,0.59765625,0.673828125,0.7177734375,0.6904296875,0.59375,0.4736328125,0.38671875,0.373046875,0.4287109375,0.4892578125,0.501953125,0.4658203125,0.41015625,0.375,0.3876953125,0.4482421875,0.5244140625,0.6044921875,0.6513671875,0.6376953125,0.5703125,0.4892578125,0.4287109375,0.384765625,0.3779296875,0.4228515625,0.5087890625,0.6015625,0.66015625,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.2587890625,0.1875,0.1494140625,0.177734375,0.263671875,0.3662109375,0.4482421875,0.5244140625,0.6103515625,0.681640625,0.71484375,0.7099609375,0.6884765625,0.673828125,0.6630859375,0.6494140625,0.619140625,0.5673828125,0.4990234375,0.4326171875,0.376953125,0.322265625,0.263671875,0.232421875,0.2509765625,0.314453125,0.3896484375,0.4482421875,0.4853515625,0.47265625,0.4130859375,0.3427734375,0.3017578125,0.31640625,0.376953125,0.4541015625,0.5361328125,0.583984375,0.5654296875,0.4892578125,0.396484375,0.3251953125,0.27734375,0.2802734375,0.337890625,0.4169921875,0.474609375,0.4775390625,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.2724609375,0.263671875,0.322265625,0.435546875,0.5615234375,0.646484375,0.673828125,0.671875,0.62890625,0.55859375,0.4951171875,0.4716796875,0.49609375,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.3779296875,0.34375,0.2880859375,0.244140625,0.236328125,0.2685546875,0.3251953125,0.39453125,0.48828125,0.5849609375,0.6552734375,0.6845703125,0.68359375,0.673828125,0.666015625,0.6640625,0.650390625,0.6064453125,0.53515625,0.4521484375,0.376953125,0.3134765625,0.2900390625,0.328125,0.4140625,0.5078125,0.5654296875,0.5703125,0.5595703125,0.552734375,0.5546875,0.568359375,0.5888671875,0.609375,0.6220703125,0.6259765625,0.6044921875,0.5478515625,0.4697265625,0.3935546875,0.34375,0.3251953125,0.3251953125,0.3662109375,0.44921875,0.5498046875,0.6328125,0.673828125,0.673828125,0.662109375,0.6484375,0.638671875,0.638671875,0.6484375,0.662109375,0.673828125,0.6865234375,0.7021484375,0.7001953125,0.662109375,0.5927734375,0.5146484375,0.4482421875,0.38671875,0.3388671875,0.33984375,0.404296875,0.509765625,0.6103515625,0.673828125,0.7265625,0.771484375,0.7763671875,0.7216796875,0.6220703125,0.51953125,0.4482421875,0.39453125,0.376953125,0.3994140625,0.4423828125,0.474609375,0.470703125,0.4287109375,0.37109375,0.2978515625,0.2392578125,0.2255859375,0.26171875,0.322265625,0.376953125,0.435546875,0.5107421875,0.57421875,0.5927734375,0.5615234375,0.5029296875,0.4482421875,0.388671875,0.3095703125,0.24609375,0.2373046875,0.2890625,0.37109375,0.4482421875,0.505859375,0.5078125,0.4482421875,0.359375,0.2900390625,0.2783203125,0.3251953125,0.3935546875,0.48046875,0.5693359375,0.6357421875,0.6669921875,0.673828125,0.673828125,0.6796875,0.7021484375,0.7255859375,0.7236328125,0.689453125,0.6318359375,0.5703125,0.5126953125,0.48046875,0.48828125,0.5322265625,0.587890625,0.6220703125,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.4375,0.4140625,0.4345703125,0.4775390625,0.5078125,0.4990234375,0.4482421875,0.3935546875,0.3701171875,0.376953125,0.396484375,0.4033203125,0.3798828125,0.3251953125,0.28125,0.3056640625,0.3974609375,0.513671875,0.5966796875,0.607421875,0.55078125,0.470703125,0.3701171875,0.2880859375,0.2646484375,0.306640625,0.380859375,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.6396484375,0.68359375,0.7353515625,0.765625,0.759765625,0.7236328125,0.673828125,0.609375,0.5068359375,0.3935546875,0.3154296875,0.296875,0.3271484375,0.376953125,0.4296875,0.4794921875,0.5078125,0.50390625,0.4755859375,0.4453125,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5771484375,0.6044921875,0.6376953125,0.654296875,0.640625,0.6015625,0.55078125,0.513671875,0.5263671875,0.5859375,0.65625,0.697265625,0.6826171875,0.6220703125,0.5390625,0.427734375,0.3251953125,0.279296875,0.30078125,0.3642578125,0.4287109375,0.4931640625,0.5615234375,0.6123046875,0.6279296875,0.611328125,0.5849609375,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.4208984375,0.3876953125,0.345703125,0.3251953125,0.3408203125,0.3876953125,0.4482421875,0.5185546875,0.611328125,0.69140625,0.71875,0.6845703125,0.6171875,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3837890625,0.4228515625,0.4267578125,0.3955078125,0.3525390625,0.32421875,0.3251953125,0.345703125,0.39453125,0.4501953125,0.4765625,0.455078125,0.396484375,0.3251953125,0.2646484375,0.25390625,0.314453125,0.427734375,0.544921875,0.615234375,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.326171875,0.3388671875,0.37890625,0.44921875,0.5361328125,0.615234375,0.673828125,0.724609375,0.767578125,0.78515625,0.767578125,0.7275390625,0.6904296875,0.673828125,0.666015625,0.6669921875,0.6640625,0.64453125,0.6044921875,0.5517578125,0.5,0.4375,0.34375,0.2529296875,0.357421875,0.421875,0.5029296875,0.55859375,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.490234375,0.3837890625,0.2900390625,0.2548828125,0.2900390625,0.365234375,0.439453125,0.4990234375,0.515625,0.4873046875,0.44140625,0.4130859375,0.4296875,0.4892578125,0.56640625,0.65234375,0.7060546875,0.693359375,0.6171875,0.5185546875,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5693359375,0.6123046875,0.6689453125,0.7041015625,0.6953125,0.646484375,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.4306640625,0.474609375,0.5322265625,0.5673828125,0.55859375,0.5087890625,0.439453125,0.36328125,0.287109375,0.2529296875,0.2900390625,0.3876953125,0.498046875,0.5791015625,0.6337890625,0.626953125,0.5546875,0.4580078125,0.388671875,0.3828125,0.439453125,0.5009765625,0.517578125,0.48828125,0.4404296875,0.412109375,0.4287109375,0.4892578125,0.5673828125,0.6533203125,0.70703125,0.6923828125,0.615234375,0.517578125,0.439453125,0.3759765625,0.34375,0.3623046875,0.427734375,0.509765625,0.56640625,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.34375,0.2587890625,0.2080078125,0.2255859375,0.306640625,0.408203125,0.4892578125,0.5615234375,0.6259765625,0.66015625,0.654296875,0.62109375,0.5888671875,0.5791015625,0.583984375,0.6044921875,0.62109375,0.611328125,0.56640625,0.4990234375,0.4296875,0.35546875,0.2724609375,0.22265625,0.23828125,0.3154296875,0.412109375,0.4892578125,0.544921875,0.5458984375,0.4912109375,0.4169921875,0.365234375,0.37109375,0.4296875,0.5087890625,0.6005859375,0.6640625,0.6611328125,0.591796875,0.498046875,0.419921875,0.3623046875,0.353515625,0.3974609375,0.4619140625,0.505859375,0.498046875,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.35546875,0.322265625,0.34375,0.4150390625,0.5029296875,0.564453125,0.5791015625,0.5693359375,0.521484375,0.4541015625,0.4052734375,0.4013671875,0.443359375,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.421875,0.380859375,0.326171875,0.2939453125,0.302734375,0.3525390625,0.419921875,0.4921875,0.5634765625,0.61328125,0.6259765625,0.609375,0.5869140625,0.5791015625,0.583984375,0.6064453125,0.6259765625,0.6181640625,0.572265625,0.5029296875,0.4296875,0.36328125,0.3271484375,0.3447265625,0.41015625,0.4921875,0.5478515625,0.5595703125,0.5576171875,0.556640625,0.5576171875,0.5595703125,0.5634765625,0.5673828125,0.5693359375,0.5673828125,0.5517578125,0.51953125,0.48046875,0.4453125,0.4248046875,0.419921875,0.421875,0.44140625,0.4775390625,0.521484375,0.5576171875,0.5771484375,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.5888671875,0.619140625,0.65234375,0.6572265625,0.623046875,0.5595703125,0.4892578125,0.4140625,0.333984375,0.2900390625,0.314453125,0.3994140625,0.5009765625,0.5791015625,0.6533203125,0.7333984375,0.7783203125,0.7548828125,0.6708984375,0.5693359375,0.4892578125,0.4296875,0.412109375,0.439453125,0.484375,0.5126953125,0.498046875,0.439453125,0.36328125,0.2724609375,0.20703125,0.2041015625,0.265625,0.353515625,0.4296875,0.5068359375,0.6044921875,0.6806640625,0.697265625,0.646484375,0.564453125,0.4892578125,0.4130859375,0.3212890625,0.2548828125,0.25390625,0.318359375,0.41015625,0.4892578125,0.5478515625,0.55078125,0.4970703125,0.41796875,0.3623046875,0.36328125,0.419921875,0.4912109375,0.5625,0.6103515625,0.623046875,0.6064453125,0.5849609375,0.5791015625,0.5888671875,0.626953125,0.6748046875,0.69921875,0.681640625,0.6279296875,0.5595703125,0.4912109375,0.4423828125,0.43359375,0.4658203125,0.5205078125,0.560546875,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.439453125,0.4267578125,0.462890625,0.5205078125,0.55859375,0.5478515625,0.4892578125,0.4296875,0.41015625,0.4345703125,0.474609375,0.4990234375,0.4794921875,0.419921875,0.36328125,0.365234375,0.42578125,0.5087890625,0.568359375,0.5673828125,0.509765625,0.4296875,0.333984375,0.263671875,0.259765625,0.3212890625,0.412109375,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5810546875,0.623046875,0.6767578125,0.70703125,0.6953125,0.6455078125,0.5791015625,0.5,0.3916015625,0.294921875,0.255859375,0.28515625,0.357421875,0.4296875,0.4970703125,0.548828125,0.5654296875,0.5390625,0.490234375,0.4501953125,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.5673828125,0.6015625,0.6416015625,0.6572265625,0.6328125,0.5771484375,0.509765625,0.4541015625,0.453125,0.5078125,0.58203125,0.6337890625,0.6279296875,0.5693359375,0.486328125,0.3779296875,0.283203125,0.25,0.287109375,0.3642578125,0.439453125,0.5107421875,0.5771484375,0.6181640625,0.62109375,0.595703125,0.568359375,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.4306640625,0.396484375,0.35546875,0.3388671875,0.36328125,0.419921875,0.4892578125,0.568359375,0.662109375,0.7314453125,0.7373046875,0.6767578125,0.5869140625,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.4873046875,0.5380859375,0.5498046875,0.51953125,0.4677734375,0.427734375,0.419921875,0.431640625,0.474609375,0.5283203125,0.5576171875,0.54296875,0.490234375,0.419921875,0.353515625,0.3203125,0.341796875,0.412109375,0.4990234375,0.5576171875,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4140625,0.3935546875,0.3779296875,0.3916015625,0.439453125,0.5087890625,0.5791015625,0.646484375,0.697265625,0.7109375,0.6826171875,0.6318359375,0.5908203125,0.5791015625,0.5849609375,0.6142578125,0.6474609375,0.6552734375,0.6259765625,0.5673828125,0.5,0.421875,0.3212890625,0.2392578125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.3798828125,0.37890625,0.4052734375,0.4326171875,0.439453125,0.44921875,0.490234375,0.5419921875,0.572265625,0.55859375,0.5078125,0.439453125,0.365234375,0.2880859375,0.2509765625,0.283203125,0.375,0.48046875,0.5595703125,0.6142578125,0.6142578125,0.5576171875,0.4794921875,0.4267578125,0.4306640625,0.4892578125,0.5712890625,0.6748046875,0.7607421875,0.783203125,0.7373046875,0.6552734375,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.44921875,0.4873046875,0.5361328125,0.5625,0.5478515625,0.49609375,0.4296875,0.3662109375,0.33203125,0.3486328125,0.4111328125,0.4912109375,0.546875,0.5595703125,0.5693359375,0.6123046875,0.66796875,0.701171875,0.6904296875,0.638671875,0.5693359375,0.486328125,0.375,0.27734375,0.240234375,0.2763671875,0.353515625,0.4296875,0.4931640625,0.5234375,0.517578125,0.4970703125,0.490234375,0.517578125,0.5791015625,0.6357421875,0.6376953125,0.5830078125,0.505859375,0.451171875,0.453125,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5078125,0.4404296875,0.3984375,0.3916015625,0.412109375,0.4345703125,0.439453125,0.451171875,0.505859375,0.587890625,0.654296875,0.6748046875,0.642578125,0.5791015625,0.5009765625,0.3994140625,0.3154296875,0.29296875,0.33984375,0.421875,0.5,0.5673828125,0.6103515625,0.6064453125,0.5576171875,0.48828125,0.439453125,0.4296875,0.4443359375,0.505859375,0.5927734375,0.662109375,0.6806640625,0.6455078125,0.5791015625,0.498046875,0.396484375,0.3154296875,0.2978515625,0.3486328125,0.4326171875,0.509765625,0.5693359375,0.587890625,0.5634765625,0.5205078125,0.494140625,0.5107421875,0.5693359375,0.6455078125,0.734375,0.7978515625,0.7958984375,0.7294921875,0.63671875,0.5595703125,0.5009765625,0.4912109375,0.5322265625,0.591796875,0.630859375,0.619140625,0.5595703125,0.486328125,0.419921875,0.3798828125,0.37890625,0.4052734375,0.4326171875,0.439453125,0.4521484375,0.5078125,0.5859375,0.6474609375,0.6611328125,0.625,0.5595703125,0.48828125,0.419921875,0.376953125,0.3720703125,0.3955078125,0.421875,0.4296875,0.423828125,0.3935546875,0.3583984375,0.3466796875,0.3740234375,0.431640625,0.5,0.568359375,0.62890625,0.66015625,0.6533203125,0.6201171875,0.5888671875,0.5791015625,0.568359375,0.525390625,0.47265625,0.44140625,0.453125,0.5029296875,0.5693359375,0.6328125,0.666015625,0.6484375,0.583984375,0.5048828125,0.4501953125,0.439453125,0.4541015625,0.5107421875,0.58984375,0.650390625,0.662109375,0.625,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4423828125,0.4580078125,0.486328125,0.5185546875,0.544921875,0.55859375,0.5595703125,0.5546875,0.53515625,0.501953125,0.4658203125,0.435546875,0.4208984375,0.419921875,0.421875,0.4228515625,0.423828125,0.42578125,0.4267578125,0.427734375,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.646484375,0.7294921875,0.775390625,0.7529296875,0.6689453125,0.568359375,0.4892578125,0.4130859375,0.32421875,0.259765625,0.259765625,0.32421875,0.4130859375,0.4892578125,0.548828125,0.568359375,0.548828125,0.5146484375,0.49609375,0.5185546875,0.5791015625,0.6435546875,0.6767578125,0.658203125,0.5908203125,0.5078125,0.451171875,0.439453125,0.451171875,0.4921875,0.54296875,0.5712890625,0.5576171875,0.5068359375,0.439453125,0.373046875,0.3203125,0.3037109375,0.3271484375,0.373046875,0.4111328125,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.5654296875,0.5966796875,0.634765625,0.6484375,0.623046875,0.5673828125,0.5,0.4423828125,0.43359375,0.4716796875,0.5283203125,0.5634765625,0.5498046875,0.4892578125,0.431640625,0.4296875,0.4873046875,0.5703125,0.630859375,0.6337890625,0.5791015625,0.521484375,0.50390625,0.529296875,0.5703125,0.5927734375,0.5712890625,0.509765625,0.4296875,0.3359375,0.2685546875,0.2685546875,0.3359375,0.4296875,0.509765625,0.5771484375,0.6171875,0.609375,0.5546875,0.4814453125,0.4306640625,0.419921875,0.431640625,0.4755859375,0.533203125,0.5673828125,0.5576171875,0.5078125,0.439453125,0.365234375,0.2900390625,0.255859375,0.29296875,0.3896484375,0.498046875,0.5791015625,0.6474609375,0.697265625,0.70703125,0.6728515625,0.615234375,0.5712890625,0.5595703125,0.5546875,0.537109375,0.5068359375,0.4716796875,0.44140625,0.4248046875,0.419921875,0.4306640625,0.4814453125,0.5546875,0.609375,0.6171875,0.5771484375,0.509765625,0.447265625,0.4248046875,0.443359375,0.4794921875,0.5,0.48046875,0.419921875,0.3447265625,0.2705078125,0.2373046875,0.2763671875,0.375,0.486328125,0.5693359375,0.6357421875,0.6728515625,0.6572265625,0.5927734375,0.509765625,0.453125,0.439453125,0.4423828125,0.4560546875,0.4814453125,0.51171875,0.5390625,0.5546875,0.5595703125,0.5498046875,0.5048828125,0.44140625,0.3984375,0.3984375,0.4423828125,0.509765625,0.5869140625,0.677734375,0.7392578125,0.7353515625,0.6650390625,0.5693359375,0.4892578125,0.412109375,0.330078125,0.2841796875,0.30859375,0.3955078125,0.4990234375,0.5791015625,0.646484375,0.6962890625,0.705078125,0.6728515625,0.6181640625,0.5771484375,0.5693359375,0.5810546875,0.6240234375,0.677734375,0.70703125,0.6923828125,0.6396484375,0.5693359375,0.49609375,0.4287109375,0.3857421875,0.3818359375,0.4072265625,0.4326171875,0.439453125,0.4501953125,0.498046875,0.5615234375,0.6064453125,0.607421875,0.564453125,0.5,0.4345703125,0.3935546875,0.3974609375,0.4462890625,0.515625,0.56640625,0.5791015625,0.5673828125,0.5087890625,0.421875,0.3515625,0.330078125,0.36328125,0.4296875,0.4990234375,0.55078125,0.5615234375,0.5283203125,0.47265625,0.4296875,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.421875,0.337890625,0.2890625,0.3828125,0.3759765625,0.3974609375,0.421875,0.4287109375,0.4375,0.4736328125,0.5185546875,0.544921875,0.533203125,0.48828125,0.4287109375,0.365234375,0.30859375,0.2900390625,0.33203125,0.4189453125,0.5087890625,0.5703125,0.6064453125,0.587890625,0.5166015625,0.431640625,0.3798828125,0.3876953125,0.4482421875,0.53125,0.646484375,0.755859375,0.8115234375,0.796875,0.7373046875,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.4345703125,0.4580078125,0.484375,0.4921875,0.4716796875,0.427734375,0.376953125,0.33203125,0.318359375,0.3515625,0.4248046875,0.505859375,0.55859375,0.5703125,0.5810546875,0.62890625,0.6943359375,0.73828125,0.736328125,0.6904296875,0.6220703125,0.5361328125,0.412109375,0.291015625,0.2265625,0.2392578125,0.3037109375,0.376953125,0.4453125,0.498046875,0.5322265625,0.5537109375,0.578125,0.6171875,0.673828125,0.7216796875,0.7158203125,0.654296875,0.5703125,0.5087890625,0.5029296875,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.609375,0.541015625,0.482421875,0.4482421875,0.4375,0.4365234375,0.4287109375,0.431640625,0.4833984375,0.57421875,0.6640625,0.7177734375,0.7158203125,0.673828125,0.609375,0.509765625,0.408203125,0.353515625,0.3662109375,0.4267578125,0.5,0.5654296875,0.5966796875,0.5751953125,0.5078125,0.4287109375,0.3798828125,0.376953125,0.404296875,0.4892578125,0.611328125,0.71484375,0.759765625,0.7373046875,0.673828125,0.591796875,0.4892578125,0.4033203125,0.375,0.4130859375,0.484375,0.55078125,0.60546875,0.62890625,0.6181640625,0.58984375,0.5693359375,0.5791015625,0.6220703125,0.6787109375,0.7451171875,0.7890625,0.779296875,0.71875,0.6376953125,0.5703125,0.5205078125,0.517578125,0.5595703125,0.615234375,0.6484375,0.630859375,0.5703125,0.4970703125,0.427734375,0.3828125,0.3759765625,0.3974609375,0.421875,0.4287109375,0.4404296875,0.4931640625,0.5703125,0.6337890625,0.654296875,0.6259765625,0.5703125,0.5048828125,0.4296875,0.3681640625,0.3388671875,0.34375,0.36328125,0.376953125,0.3828125,0.3759765625,0.3671875,0.373046875,0.40234375,0.4482421875,0.5,0.5546875,0.619140625,0.6748046875,0.7041015625,0.7021484375,0.6865234375,0.673828125,0.6552734375,0.611328125,0.560546875,0.529296875,0.53515625,0.572265625,0.6220703125,0.6650390625,0.6728515625,0.6318359375,0.5546875,0.4755859375,0.4306640625,0.4287109375,0.451171875,0.51171875,0.5908203125,0.6494140625,0.6611328125,0.6279296875,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.43359375,0.45703125,0.49609375,0.5380859375,0.5673828125,0.5771484375,0.5703125,0.552734375,0.509765625,0.4453125,0.380859375,0.3359375,0.3193359375,0.3251953125,0.3359375,0.34375,0.3486328125,0.353515625,0.359375,0.3671875,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.6943359375,0.755859375,0.767578125,0.712890625,0.611328125,0.51171875,0.4482421875,0.3916015625,0.32421875,0.27734375,0.27734375,0.32421875,0.3916015625,0.4482421875,0.494140625,0.5234375,0.537109375,0.548828125,0.5732421875,0.615234375,0.673828125,0.7255859375,0.7353515625,0.6845703125,0.5888671875,0.4912109375,0.43359375,0.4287109375,0.4462890625,0.4833984375,0.5234375,0.5400390625,0.5234375,0.48046875,0.4287109375,0.376953125,0.3271484375,0.294921875,0.2890625,0.3037109375,0.3212890625,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.5654296875,0.5791015625,0.599609375,0.6064453125,0.5888671875,0.548828125,0.5,0.458984375,0.45703125,0.4892578125,0.52734375,0.541015625,0.51171875,0.4482421875,0.390625,0.39453125,0.4697265625,0.58203125,0.67578125,0.7080078125,0.673828125,0.630859375,0.6201171875,0.6376953125,0.6572265625,0.654296875,0.6171875,0.55078125,0.4716796875,0.376953125,0.310546875,0.310546875,0.376953125,0.4716796875,0.55078125,0.6142578125,0.6328125,0.5888671875,0.494140625,0.392578125,0.3310546875,0.3251953125,0.3466796875,0.40234375,0.4736328125,0.5224609375,0.5263671875,0.4873046875,0.4287109375,0.3662109375,0.3154296875,0.3134765625,0.3779296875,0.4892578125,0.599609375,0.673828125,0.732421875,0.7705078125,0.7666015625,0.7177734375,0.646484375,0.5908203125,0.5703125,0.5556640625,0.5244140625,0.4755859375,0.419921875,0.37109375,0.33984375,0.3251953125,0.3310546875,0.392578125,0.494140625,0.5888671875,0.6328125,0.6142578125,0.55078125,0.484375,0.4404296875,0.4228515625,0.4189453125,0.4111328125,0.380859375,0.3251953125,0.2626953125,0.2119140625,0.2138671875,0.287109375,0.412109375,0.5361328125,0.6220703125,0.6865234375,0.7158203125,0.6865234375,0.60546875,0.5087890625,0.443359375,0.4287109375,0.4306640625,0.4423828125,0.4658203125,0.4990234375,0.5322265625,0.556640625,0.5703125,0.5712890625,0.541015625,0.4931640625,0.45703125,0.45703125,0.4931640625,0.55078125,0.6181640625,0.6923828125,0.734375,0.7109375,0.62890625,0.5283203125,0.4482421875,0.375,0.314453125,0.3056640625,0.369140625,0.484375,0.5986328125,0.673828125,0.73046875,0.7626953125,0.7548828125,0.7109375,0.6552734375,0.62109375,0.6220703125,0.6416015625,0.69140625,0.74609375,0.7724609375,0.7509765625,0.693359375,0.6220703125,0.5478515625,0.4716796875,0.4150390625,0.39453125,0.4052734375,0.423828125,0.4287109375,0.4375,0.4755859375,0.529296875,0.5703125,0.576171875,0.5478515625,0.5,0.4521484375,0.4306640625,0.4521484375,0.5146484375,0.59375,0.65234375,0.673828125,0.6669921875,0.5966796875,0.478515625,0.3662109375,0.3056640625,0.3154296875,0.376953125,0.4462890625,0.4921875,0.494140625,0.4501953125,0.384765625,0.3369140625,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.42578125,0.3583984375,0.333984375,0.3720703125,0.38671875,0.4267578125,0.4609375,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.423828125,0.38671875,0.3779296875,0.4052734375,0.4560546875,0.50390625,0.5302734375,0.53515625,0.4912109375,0.4111328125,0.3369140625,0.3056640625,0.330078125,0.39453125,0.478515625,0.599609375,0.7236328125,0.8037109375,0.8193359375,0.7861328125,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.4697265625,0.4677734375,0.4580078125,0.4384765625,0.4111328125,0.384765625,0.3642578125,0.349609375,0.35546875,0.3896484375,0.44140625,0.4921875,0.5234375,0.5302734375,0.5419921875,0.5966796875,0.673828125,0.7314453125,0.7421875,0.7021484375,0.634765625,0.548828125,0.421875,0.294921875,0.2236328125,0.2294921875,0.291015625,0.3642578125,0.4365234375,0.5078125,0.5712890625,0.62109375,0.66015625,0.697265625,0.740234375,0.7744140625,0.7646484375,0.708984375,0.6357421875,0.580078125,0.5703125,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.693359375,0.642578125,0.59375,0.5517578125,0.5205078125,0.4951171875,0.46875,0.4521484375,0.4775390625,0.546875,0.6376953125,0.7138671875,0.7490234375,0.740234375,0.7060546875,0.62109375,0.5107421875,0.4248046875,0.3984375,0.4326171875,0.5,0.5625,0.5830078125,0.546875,0.46875,0.390625,0.3515625,0.3642578125,0.408203125,0.5146484375,0.6572265625,0.775390625,0.8271484375,0.8046875,0.740234375,0.6611328125,0.5654296875,0.48828125,0.4638671875,0.4951171875,0.5537109375,0.6044921875,0.646484375,0.6728515625,0.673828125,0.654296875,0.630859375,0.6220703125,0.634765625,0.6572265625,0.6845703125,0.6982421875,0.681640625,0.6357421875,0.5791015625,0.5302734375,0.49609375,0.50390625,0.5498046875,0.5986328125,0.619140625,0.59375,0.5302734375,0.458984375,0.3984375,0.3720703125,0.38671875,0.4267578125,0.4609375,0.46875,0.4765625,0.5107421875,0.5576171875,0.5927734375,0.5986328125,0.572265625,0.5302734375,0.478515625,0.4091796875,0.3447265625,0.30859375,0.310546875,0.3359375,0.3642578125,0.390625,0.4150390625,0.435546875,0.4521484375,0.466796875,0.4814453125,0.5,0.52734375,0.5859375,0.662109375,0.7294921875,0.763671875,0.7626953125,0.740234375,0.708984375,0.666015625,0.6240234375,0.599609375,0.5986328125,0.615234375,0.634765625,0.6455078125,0.6240234375,0.5712890625,0.5078125,0.4619140625,0.4501953125,0.46875,0.5029296875,0.5556640625,0.607421875,0.6318359375,0.6171875,0.576171875,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.474609375,0.4970703125,0.5302734375,0.5576171875,0.56640625,0.5537109375,0.5302734375,0.494140625,0.4267578125,0.341796875,0.2705078125,0.234375,0.236328125,0.2587890625,0.283203125,0.2998046875,0.30859375,0.314453125,0.3232421875,0.33984375,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.7021484375,0.736328125,0.7099609375,0.6240234375,0.5126953125,0.4287109375,0.39453125,0.373046875,0.3486328125,0.3310546875,0.3310546875,0.3486328125,0.373046875,0.39453125,0.4150390625,0.4443359375,0.4912109375,0.5546875,0.626953125,0.6904296875,0.740234375,0.7744140625,0.7587890625,0.6875,0.5849609375,0.49609375,0.4560546875,0.46875,0.4970703125,0.52734375,0.546875,0.5439453125,0.5205078125,0.4912109375,0.46875,0.4462890625,0.40625,0.3564453125,0.30859375,0.275390625,0.2607421875,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.505859375,0.494140625,0.4970703125,0.5078125,0.517578125,0.5146484375,0.5,0.48828125,0.50390625,0.5302734375,0.541015625,0.5185546875,0.4638671875,0.39453125,0.3349609375,0.3359375,0.4140625,0.5439453125,0.6708984375,0.740234375,0.740234375,0.728515625,0.740234375,0.759765625,0.76171875,0.732421875,0.6748046875,0.6044921875,0.5244140625,0.4306640625,0.3642578125,0.3642578125,0.4306640625,0.5244140625,0.6044921875,0.6630859375,0.658203125,0.57421875,0.44140625,0.3154296875,0.2509765625,0.2587890625,0.2958984375,0.3671875,0.4521484375,0.5166015625,0.53515625,0.51171875,0.46875,0.4248046875,0.3984375,0.4169921875,0.48828125,0.5908203125,0.68359375,0.740234375,0.783203125,0.8056640625,0.787109375,0.7236328125,0.6376953125,0.56640625,0.5302734375,0.501953125,0.46484375,0.4189453125,0.3701171875,0.32421875,0.287109375,0.2587890625,0.2509765625,0.3154296875,0.44140625,0.57421875,0.658203125,0.6630859375,0.6044921875,0.533203125,0.46484375,0.408203125,0.3662109375,0.3349609375,0.30078125,0.2587890625,0.2138671875,0.1845703125,0.20703125,0.294921875,0.42578125,0.5498046875,0.634765625,0.701171875,0.7333984375,0.708984375,0.6357421875,0.544921875,0.4833984375,0.46875,0.466796875,0.458984375,0.453125,0.4580078125,0.4765625,0.5029296875,0.5302734375,0.55078125,0.552734375,0.541015625,0.5302734375,0.53515625,0.5625,0.6044921875,0.6533203125,0.703125,0.7177734375,0.673828125,0.580078125,0.4755859375,0.39453125,0.326171875,0.2900390625,0.3193359375,0.421875,0.5615234375,0.677734375,0.740234375,0.7783203125,0.783203125,0.748046875,0.6904296875,0.6376953125,0.6181640625,0.634765625,0.6708984375,0.7314453125,0.7900390625,0.8095703125,0.7763671875,0.7080078125,0.634765625,0.5615234375,0.4892578125,0.4384765625,0.4248046875,0.44140625,0.462890625,0.46875,0.47265625,0.4873046875,0.5078125,0.5244140625,0.52734375,0.517578125,0.5,0.4833984375,0.4833984375,0.513671875,0.57421875,0.646484375,0.7060546875,0.740234375,0.7470703125,0.6787109375,0.546875,0.4052734375,0.3154296875,0.306640625,0.3642578125,0.431640625,0.470703125,0.4609375,0.40234375,0.326171875,0.271484375,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4306640625,0.3828125,0.3857421875,0.3564453125,0.40234375,0.4697265625,0.5185546875,0.5302734375,0.533203125,0.548828125,0.568359375,0.580078125,0.5751953125,0.5556640625,0.5302734375,0.505859375,0.490234375,0.4853515625,0.48828125,0.4912109375,0.4853515625,0.46875,0.4384765625,0.3701171875,0.2900390625,0.2392578125,0.2431640625,0.2939453125,0.3642578125,0.4462890625,0.5595703125,0.6767578125,0.7568359375,0.7822265625,0.7666015625,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.5244140625,0.4970703125,0.4521484375,0.408203125,0.3818359375,0.37890625,0.39453125,0.4150390625,0.4375,0.4580078125,0.4697265625,0.4716796875,0.4697265625,0.46875,0.482421875,0.5400390625,0.6240234375,0.6904296875,0.70703125,0.6708984375,0.6044921875,0.51953125,0.400390625,0.287109375,0.2314453125,0.2509765625,0.3193359375,0.39453125,0.46875,0.5478515625,0.6181640625,0.66796875,0.697265625,0.716796875,0.740234375,0.759765625,0.7509765625,0.712890625,0.662109375,0.6240234375,0.615234375,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7158203125,0.697265625,0.6796875,0.654296875,0.6181640625,0.5751953125,0.5302734375,0.48828125,0.4697265625,0.494140625,0.560546875,0.64453125,0.7099609375,0.740234375,0.7431640625,0.685546875,0.58203125,0.48046875,0.42578125,0.4375,0.5,0.560546875,0.57421875,0.5302734375,0.4521484375,0.3837890625,0.3623046875,0.39453125,0.4560546875,0.5732421875,0.7119140625,0.814453125,0.8447265625,0.8076171875,0.740234375,0.6640625,0.583984375,0.52734375,0.5185546875,0.5537109375,0.6015625,0.634765625,0.662109375,0.689453125,0.701171875,0.6904296875,0.66015625,0.626953125,0.6044921875,0.5869140625,0.5712890625,0.5576171875,0.541015625,0.5205078125,0.4951171875,0.46875,0.453125,0.4755859375,0.5244140625,0.56640625,0.572265625,0.53515625,0.46875,0.400390625,0.35546875,0.3564453125,0.40234375,0.4697265625,0.5185546875,0.5302734375,0.5322265625,0.5400390625,0.5458984375,0.541015625,0.5224609375,0.49609375,0.46875,0.435546875,0.380859375,0.3251953125,0.2978515625,0.30859375,0.3486328125,0.39453125,0.443359375,0.5009765625,0.546875,0.5634765625,0.548828125,0.521484375,0.5,0.4931640625,0.53515625,0.619140625,0.708984375,0.7685546875,0.7763671875,0.740234375,0.6953125,0.6572265625,0.6328125,0.6240234375,0.6240234375,0.6201171875,0.6044921875,0.578125,0.529296875,0.474609375,0.4443359375,0.4501953125,0.484375,0.5302734375,0.576171875,0.6171875,0.6318359375,0.607421875,0.5556640625,0.5029296875,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.53515625,0.5537109375,0.57421875,0.5771484375,0.5556640625,0.5146484375,0.46875,0.4140625,0.3291015625,0.240234375,0.1845703125,0.1796875,0.2138671875,0.2587890625,0.2998046875,0.3232421875,0.328125,0.3251953125,0.330078125,0.353515625,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.666015625,0.6787109375,0.6240234375,0.521484375,0.41796875,0.361328125,0.3642578125,0.384765625,0.41015625,0.427734375,0.427734375,0.41015625,0.384765625,0.3642578125,0.3505859375,0.3671875,0.427734375,0.5244140625,0.626953125,0.703125,0.740234375,0.7548828125,0.7216796875,0.646484375,0.560546875,0.501953125,0.494140625,0.5302734375,0.5712890625,0.59375,0.587890625,0.560546875,0.5302734375,0.517578125,0.5302734375,0.5419921875,0.5224609375,0.4658203125,0.38671875,0.3115234375,0.267578125,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.4228515625,0.3828125,0.3671875,0.3857421875,0.4296875,0.4736328125,0.5,0.5244140625,0.5634765625,0.5908203125,0.5771484375,0.51953125,0.439453125,0.3642578125,0.30078125,0.2822265625,0.3388671875,0.4609375,0.6015625,0.703125,0.740234375,0.765625,0.80859375,0.8427734375,0.8369140625,0.7861328125,0.7099609375,0.634765625,0.5556640625,0.4609375,0.39453125,0.39453125,0.4609375,0.5556640625,0.634765625,0.689453125,0.669921875,0.5654296875,0.4169921875,0.2880859375,0.2333984375,0.2587890625,0.3134765625,0.39453125,0.482421875,0.546875,0.568359375,0.5556640625,0.5302734375,0.505859375,0.49609375,0.5185546875,0.57421875,0.6455078125,0.7060546875,0.740234375,0.765625,0.7783203125,0.7568359375,0.693359375,0.6044921875,0.5234375,0.46875,0.4267578125,0.39453125,0.373046875,0.35546875,0.333984375,0.3017578125,0.2587890625,0.2333984375,0.2880859375,0.4169921875,0.5654296875,0.669921875,0.689453125,0.634765625,0.560546875,0.4775390625,0.3994140625,0.341796875,0.306640625,0.283203125,0.2587890625,0.2314453125,0.2119140625,0.2314453125,0.3037109375,0.4130859375,0.5234375,0.6044921875,0.6728515625,0.7158203125,0.712890625,0.662109375,0.5927734375,0.5419921875,0.5302734375,0.5224609375,0.48828125,0.44140625,0.40625,0.400390625,0.4267578125,0.46875,0.513671875,0.5517578125,0.5771484375,0.5908203125,0.5986328125,0.611328125,0.634765625,0.6640625,0.6923828125,0.6904296875,0.6376953125,0.544921875,0.443359375,0.3642578125,0.2998046875,0.27734375,0.328125,0.447265625,0.5888671875,0.6953125,0.740234375,0.755859375,0.732421875,0.673828125,0.607421875,0.56640625,0.5673828125,0.6044921875,0.6591796875,0.7333984375,0.794921875,0.806640625,0.759765625,0.6806640625,0.6044921875,0.533203125,0.4716796875,0.44140625,0.4521484375,0.4892578125,0.521484375,0.5302734375,0.5263671875,0.51171875,0.4912109375,0.474609375,0.4716796875,0.4814453125,0.5,0.517578125,0.5341796875,0.5576171875,0.59375,0.6416015625,0.693359375,0.740234375,0.7666015625,0.7158203125,0.59375,0.4521484375,0.3544921875,0.3388671875,0.39453125,0.4609375,0.4970703125,0.48046875,0.4140625,0.330078125,0.2724609375,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4345703125,0.40625,0.4306640625,0.345703125,0.4130859375,0.498046875,0.556640625,0.5703125,0.5712890625,0.5771484375,0.5849609375,0.58984375,0.587890625,0.580078125,0.5703125,0.5634765625,0.568359375,0.5732421875,0.5615234375,0.5283203125,0.48046875,0.4287109375,0.3681640625,0.283203125,0.208984375,0.1865234375,0.2255859375,0.3017578125,0.376953125,0.455078125,0.5498046875,0.63671875,0.689453125,0.7001953125,0.6865234375,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.560546875,0.515625,0.4501953125,0.396484375,0.37890625,0.4013671875,0.4482421875,0.4970703125,0.5322265625,0.537109375,0.5107421875,0.46875,0.4365234375,0.4287109375,0.44140625,0.498046875,0.5791015625,0.6416015625,0.6552734375,0.6181640625,0.55078125,0.46875,0.3623046875,0.2724609375,0.2451171875,0.2890625,0.3701171875,0.4482421875,0.521484375,0.5947265625,0.6513671875,0.67578125,0.6748046875,0.66796875,0.673828125,0.6806640625,0.67578125,0.6591796875,0.63671875,0.619140625,0.6142578125,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.6689453125,0.6845703125,0.7060546875,0.708984375,0.681640625,0.630859375,0.5703125,0.505859375,0.443359375,0.41796875,0.44921875,0.52734375,0.61328125,0.673828125,0.708984375,0.68359375,0.6005859375,0.5029296875,0.439453125,0.4404296875,0.5,0.5595703125,0.5703125,0.5263671875,0.4560546875,0.40234375,0.3994140625,0.4482421875,0.5224609375,0.63671875,0.751953125,0.8154296875,0.806640625,0.74609375,0.673828125,0.6005859375,0.5361328125,0.50390625,0.515625,0.5595703125,0.6025390625,0.6220703125,0.6376953125,0.666015625,0.6904296875,0.6884765625,0.6552734375,0.603515625,0.55078125,0.5,0.4541015625,0.4248046875,0.4189453125,0.427734375,0.4345703125,0.4287109375,0.4287109375,0.462890625,0.5146484375,0.548828125,0.5439453125,0.4970703125,0.4287109375,0.3623046875,0.3271484375,0.345703125,0.4130859375,0.498046875,0.556640625,0.5703125,0.568359375,0.556640625,0.533203125,0.5,0.466796875,0.4423828125,0.4287109375,0.4111328125,0.3701171875,0.326171875,0.3095703125,0.3330078125,0.38671875,0.4482421875,0.515625,0.5966796875,0.6572265625,0.6669921875,0.623046875,0.556640625,0.5,0.462890625,0.482421875,0.556640625,0.650390625,0.7158203125,0.7216796875,0.673828125,0.6181640625,0.587890625,0.5869140625,0.6025390625,0.611328125,0.5947265625,0.55078125,0.4931640625,0.4228515625,0.3720703125,0.3720703125,0.42578125,0.5029296875,0.5703125,0.6279296875,0.6611328125,0.6494140625,0.5908203125,0.51171875,0.451171875,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5751953125,0.59375,0.6083984375,0.5966796875,0.5537109375,0.4921875,0.4287109375,0.3583984375,0.265625,0.185546875,0.158203125,0.1923828125,0.259765625,0.3251953125,0.3798828125,0.4033203125,0.396484375,0.376953125,0.3701171875,0.3935546875,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.609375,0.611328125,0.5478515625,0.4501953125,0.3671875,0.341796875,0.376953125,0.43359375,0.5009765625,0.5478515625,0.5478515625,0.5009765625,0.43359375,0.376953125,0.3330078125,0.326171875,0.375,0.4697265625,0.576171875,0.6494140625,0.673828125,0.6728515625,0.6318359375,0.5654296875,0.5078125,0.48828125,0.5146484375,0.5703125,0.623046875,0.6376953125,0.611328125,0.5634765625,0.52734375,0.529296875,0.5703125,0.6142578125,0.62109375,0.576171875,0.490234375,0.3974609375,0.3388671875,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.3642578125,0.2978515625,0.2646484375,0.287109375,0.3583984375,0.439453125,0.5,0.556640625,0.6201171875,0.65625,0.6328125,0.5537109375,0.45703125,0.376953125,0.3076171875,0.26171875,0.2763671875,0.36328125,0.4921875,0.607421875,0.673828125,0.7314453125,0.8046875,0.85546875,0.8505859375,0.7880859375,0.7001953125,0.6220703125,0.5419921875,0.4482421875,0.380859375,0.380859375,0.4482421875,0.5419921875,0.6220703125,0.67578125,0.6572265625,0.55859375,0.423828125,0.3154296875,0.283203125,0.3251953125,0.392578125,0.47265625,0.546875,0.58984375,0.5966796875,0.5830078125,0.5703125,0.560546875,0.5595703125,0.5732421875,0.6005859375,0.6328125,0.6591796875,0.673828125,0.6865234375,0.7001953125,0.693359375,0.650390625,0.576171875,0.49609375,0.4287109375,0.375,0.353515625,0.365234375,0.3896484375,0.4013671875,0.37890625,0.3251953125,0.283203125,0.3154296875,0.423828125,0.55859375,0.6572265625,0.67578125,0.6220703125,0.546875,0.4638671875,0.392578125,0.3486328125,0.3349609375,0.3330078125,0.3251953125,0.310546875,0.2890625,0.2841796875,0.3173828125,0.388671875,0.474609375,0.55078125,0.62109375,0.67578125,0.693359375,0.66796875,0.619140625,0.5791015625,0.5703125,0.55859375,0.505859375,0.4287109375,0.365234375,0.3447265625,0.373046875,0.4287109375,0.4921875,0.5537109375,0.6005859375,0.62109375,0.6201171875,0.615234375,0.6220703125,0.6357421875,0.6552734375,0.65625,0.6181640625,0.5419921875,0.4541015625,0.376953125,0.3134765625,0.2900390625,0.3359375,0.439453125,0.5615234375,0.646484375,0.673828125,0.671875,0.62890625,0.55859375,0.4951171875,0.4716796875,0.49609375,0.55078125,0.62109375,0.70703125,0.7724609375,0.7763671875,0.7177734375,0.6298828125,0.55078125,0.4814453125,0.431640625,0.4228515625,0.4580078125,0.515625,0.5595703125,0.5703125,0.5615234375,0.5234375,0.4697265625,0.4287109375,0.4228515625,0.451171875,0.5,0.544921875,0.5673828125,0.5703125,0.568359375,0.580078125,0.6171875,0.673828125,0.7177734375,0.693359375,0.6015625,0.4853515625,0.40234375,0.3916015625,0.4482421875,0.5146484375,0.552734375,0.5380859375,0.4755859375,0.39453125,0.3388671875,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.4384765625,0.421875,0.4580078125,0.3486328125,0.41015625,0.490234375,0.546875,0.5595703125,0.5595703125,0.560546875,0.5615234375,0.5625,0.5625,0.560546875,0.5595703125,0.564453125,0.5888671875,0.6123046875,0.6103515625,0.572265625,0.5087890625,0.439453125,0.36328125,0.2705078125,0.2021484375,0.197265625,0.259765625,0.3505859375,0.4296875,0.5029296875,0.5751953125,0.623046875,0.6328125,0.6123046875,0.5869140625,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5478515625,0.5,0.43359375,0.3857421875,0.3828125,0.4248046875,0.4892578125,0.5546875,0.5986328125,0.6005859375,0.55859375,0.49609375,0.4501953125,0.439453125,0.451171875,0.501953125,0.5703125,0.619140625,0.62109375,0.5771484375,0.509765625,0.4296875,0.3330078125,0.26171875,0.255859375,0.318359375,0.41015625,0.4892578125,0.5615234375,0.623046875,0.6552734375,0.6484375,0.615234375,0.5859375,0.5791015625,0.580078125,0.5791015625,0.576171875,0.572265625,0.5693359375,0.568359375,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5869140625,0.6240234375,0.671875,0.6962890625,0.6806640625,0.6279296875,0.5595703125,0.482421875,0.3935546875,0.333984375,0.33984375,0.4091796875,0.5029296875,0.5791015625,0.6337890625,0.6328125,0.57421875,0.4931640625,0.4384765625,0.44140625,0.5,0.5595703125,0.5693359375,0.5283203125,0.4658203125,0.4228515625,0.431640625,0.4892578125,0.5693359375,0.673828125,0.759765625,0.7841796875,0.7392578125,0.65625,0.5791015625,0.5087890625,0.4541015625,0.4375,0.46484375,0.5166015625,0.5576171875,0.5693359375,0.5791015625,0.6123046875,0.650390625,0.6630859375,0.6357421875,0.5771484375,0.509765625,0.44140625,0.3837890625,0.357421875,0.3681640625,0.4033203125,0.43359375,0.439453125,0.4482421875,0.48828125,0.5419921875,0.572265625,0.560546875,0.5087890625,0.439453125,0.373046875,0.3349609375,0.3486328125,0.41015625,0.490234375,0.546875,0.5595703125,0.556640625,0.54296875,0.517578125,0.4873046875,0.4599609375,0.4443359375,0.439453125,0.4296875,0.3935546875,0.3525390625,0.3369140625,0.361328125,0.419921875,0.4892578125,0.5673828125,0.6591796875,0.7255859375,0.7275390625,0.6650390625,0.5751953125,0.5,0.4443359375,0.4453125,0.501953125,0.58203125,0.6376953125,0.6357421875,0.5791015625,0.5185546875,0.4990234375,0.521484375,0.5615234375,0.5859375,0.568359375,0.509765625,0.4345703125,0.349609375,0.2958984375,0.30859375,0.3837890625,0.48046875,0.5595703125,0.625,0.662109375,0.650390625,0.58984375,0.5107421875,0.4541015625,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.56640625,0.5927734375,0.6181640625,0.6162109375,0.576171875,0.5107421875,0.439453125,0.361328125,0.2666015625,0.197265625,0.1923828125,0.2529296875,0.3427734375,0.419921875,0.4794921875,0.4990234375,0.474609375,0.4345703125,0.41015625,0.4296875,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.568359375,0.5712890625,0.515625,0.4345703125,0.3759765625,0.375,0.4296875,0.505859375,0.595703125,0.6591796875,0.6591796875,0.595703125,0.505859375,0.4296875,0.3662109375,0.333984375,0.353515625,0.4208984375,0.505859375,0.564453125,0.5791015625,0.5703125,0.5283203125,0.47265625,0.4365234375,0.4443359375,0.4921875,0.5595703125,0.6181640625,0.62890625,0.591796875,0.533203125,0.4931640625,0.5029296875,0.5595703125,0.623046875,0.6552734375,0.63671875,0.5712890625,0.4892578125,0.4326171875,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.36328125,0.279296875,0.2294921875,0.24609375,0.32421875,0.421875,0.5,0.57421875,0.6572265625,0.7080078125,0.69140625,0.611328125,0.5107421875,0.4296875,0.353515625,0.2802734375,0.2490234375,0.2900390625,0.3896484375,0.4990234375,0.5791015625,0.6552734375,0.74609375,0.8095703125,0.80859375,0.7421875,0.6484375,0.5693359375,0.4892578125,0.3955078125,0.3291015625,0.3291015625,0.3955078125,0.4892578125,0.5693359375,0.6259765625,0.619140625,0.546875,0.447265625,0.3740234375,0.365234375,0.419921875,0.4912109375,0.560546875,0.60546875,0.6142578125,0.5927734375,0.5673828125,0.5595703125,0.5576171875,0.55859375,0.5615234375,0.56640625,0.572265625,0.5771484375,0.5791015625,0.5869140625,0.6123046875,0.6337890625,0.6259765625,0.580078125,0.51171875,0.439453125,0.380859375,0.3681640625,0.40234375,0.45703125,0.4912109375,0.478515625,0.419921875,0.365234375,0.3740234375,0.447265625,0.546875,0.619140625,0.6259765625,0.5693359375,0.49609375,0.4267578125,0.380859375,0.373046875,0.392578125,0.4150390625,0.419921875,0.41015625,0.3779296875,0.3447265625,0.3388671875,0.373046875,0.4375,0.509765625,0.580078125,0.638671875,0.6630859375,0.646484375,0.603515625,0.568359375,0.5595703125,0.546875,0.4912109375,0.4130859375,0.3515625,0.337890625,0.3740234375,0.439453125,0.5107421875,0.576171875,0.6171875,0.62109375,0.5986328125,0.57421875,0.5693359375,0.5771484375,0.603515625,0.6259765625,0.619140625,0.5732421875,0.5029296875,0.4296875,0.36328125,0.328125,0.3466796875,0.416015625,0.5029296875,0.564453125,0.5791015625,0.5693359375,0.521484375,0.4541015625,0.4052734375,0.4013671875,0.443359375,0.509765625,0.587890625,0.6806640625,0.7470703125,0.748046875,0.6826171875,0.5888671875,0.509765625,0.4404296875,0.39453125,0.392578125,0.435546875,0.5,0.5478515625,0.5595703125,0.548828125,0.5009765625,0.4375,0.392578125,0.3916015625,0.4345703125,0.5,0.55859375,0.5771484375,0.5556640625,0.517578125,0.498046875,0.5185546875,0.5791015625,0.6357421875,0.6337890625,0.5732421875,0.490234375,0.4306640625,0.431640625,0.4892578125,0.5576171875,0.6015625,0.599609375,0.55078125,0.4814453125,0.431640625,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.439453125,0.427734375,0.4677734375,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.37890625,0.37109375,0.390625,0.4130859375,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.4501953125,0.50390625,0.5810546875,0.6416015625,0.6572265625,0.623046875,0.5595703125,0.4833984375,0.3955078125,0.3349609375,0.33984375,0.408203125,0.5009765625,0.5791015625,0.6435546875,0.6767578125,0.6552734375,0.583984375,0.49609375,0.4345703125,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5791015625,0.6142578125,0.6533203125,0.666015625,0.638671875,0.5791015625,0.509765625,0.431640625,0.3388671875,0.2724609375,0.271484375,0.3369140625,0.4296875,0.509765625,0.5771484375,0.62109375,0.6181640625,0.5673828125,0.49609375,0.443359375,0.4296875,0.4287109375,0.427734375,0.4287109375,0.4306640625,0.431640625,0.4306640625,0.4296875,0.427734375,0.4267578125,0.427734375,0.4306640625,0.4345703125,0.4375,0.439453125,0.451171875,0.4912109375,0.541015625,0.5654296875,0.5458984375,0.490234375,0.419921875,0.33984375,0.2470703125,0.181640625,0.1826171875,0.2490234375,0.341796875,0.419921875,0.48046875,0.5009765625,0.4814453125,0.443359375,0.421875,0.4404296875,0.5,0.556640625,0.5673828125,0.529296875,0.4736328125,0.4375,0.4501953125,0.509765625,0.5849609375,0.6650390625,0.708984375,0.6845703125,0.599609375,0.498046875,0.419921875,0.353515625,0.3046875,0.29296875,0.322265625,0.373046875,0.412109375,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.49609375,0.4287109375,0.3857421875,0.3818359375,0.4072265625,0.4326171875,0.439453125,0.4423828125,0.4580078125,0.486328125,0.5185546875,0.544921875,0.55859375,0.5595703125,0.5458984375,0.4951171875,0.42578125,0.376953125,0.3759765625,0.4208984375,0.4892578125,0.5693359375,0.6630859375,0.73046875,0.73046875,0.6630859375,0.5693359375,0.4892578125,0.427734375,0.408203125,0.4326171875,0.4755859375,0.5029296875,0.4873046875,0.4296875,0.375,0.3759765625,0.4345703125,0.515625,0.5712890625,0.568359375,0.509765625,0.4287109375,0.3271484375,0.24609375,0.2275390625,0.2783203125,0.36328125,0.439453125,0.5107421875,0.5771484375,0.6181640625,0.62109375,0.595703125,0.568359375,0.5595703125,0.5546875,0.5361328125,0.5048828125,0.46875,0.4384765625,0.4228515625,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.4521484375,0.5087890625,0.5888671875,0.650390625,0.6640625,0.6259765625,0.5595703125,0.48046875,0.3896484375,0.3271484375,0.3310546875,0.3994140625,0.4921875,0.5693359375,0.6240234375,0.623046875,0.564453125,0.4833984375,0.427734375,0.4306640625,0.4892578125,0.55859375,0.6044921875,0.6064453125,0.5634765625,0.4990234375,0.451171875,0.439453125,0.4423828125,0.4560546875,0.4814453125,0.51171875,0.5390625,0.5546875,0.5595703125,0.55859375,0.544921875,0.5185546875,0.486328125,0.4580078125,0.4423828125,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.4228515625,0.3896484375,0.349609375,0.3349609375,0.3603515625,0.4189453125,0.4892578125,0.55078125,0.5712890625,0.548828125,0.509765625,0.4873046875,0.5078125,0.5693359375,0.6494140625,0.7431640625,0.8095703125,0.8095703125,0.7431640625,0.6494140625,0.5693359375,0.49609375,0.42578125,0.37890625,0.3701171875,0.3896484375,0.4130859375,0.419921875,0.41015625,0.369140625,0.318359375,0.291015625,0.3056640625,0.359375,0.4296875,0.4892578125,0.5,0.458984375,0.396484375,0.353515625,0.3623046875,0.419921875,0.4912109375,0.560546875,0.60546875,0.6142578125,0.5927734375,0.5673828125,0.5595703125,0.5673828125,0.607421875,0.6591796875,0.689453125,0.677734375,0.626953125,0.5595703125,0.4794921875,0.3798828125,0.2998046875,0.283203125,0.3359375,0.421875,0.5,0.580078125,0.6806640625,0.759765625,0.7744140625,0.7216796875,0.6357421875,0.5595703125,0.478515625,0.369140625,0.2744140625,0.2392578125,0.275390625,0.353515625,0.4296875,0.5087890625,0.6005859375,0.6640625,0.6611328125,0.591796875,0.498046875,0.419921875,0.341796875,0.2509765625,0.1875,0.1875,0.2529296875,0.34375,0.419921875,0.48046875,0.5087890625,0.50390625,0.4853515625,0.48046875,0.5087890625,0.5693359375,0.6328125,0.6669921875,0.650390625,0.587890625,0.5078125,0.4521484375,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.4326171875,0.4912109375,0.576171875,0.6435546875,0.6611328125,0.6259765625,0.5595703125,0.4990234375,0.4873046875,0.5263671875,0.5869140625,0.626953125,0.6171875,0.5595703125,0.498046875,0.47265625,0.4853515625,0.513671875,0.5263671875,0.5009765625,0.439453125,0.375,0.33984375,0.357421875,0.421875,0.5029296875,0.55859375,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.5556640625,0.5986328125,0.59765625,0.55078125,0.486328125,0.439453125,0.4296875,0.4248046875,0.4013671875,0.37890625,0.384765625,0.427734375,0.49609375,0.5693359375,0.6357421875,0.6689453125,0.6474609375,0.5771484375,0.490234375,0.431640625,0.419921875,0.4345703125,0.4931640625,0.5771484375,0.642578125,0.6591796875,0.6240234375,0.5595703125,0.48828125,0.419921875,0.376953125,0.3720703125,0.3955078125,0.421875,0.4296875,0.4228515625,0.390625,0.3525390625,0.337890625,0.3623046875,0.419921875,0.4892578125,0.568359375,0.6630859375,0.734375,0.740234375,0.6796875,0.5888671875,0.509765625,0.4375,0.3759765625,0.34375,0.3505859375,0.3837890625,0.4130859375,0.419921875,0.41015625,0.3779296875,0.341796875,0.33203125,0.361328125,0.4208984375,0.4892578125,0.544921875,0.5458984375,0.4912109375,0.4169921875,0.365234375,0.37109375,0.4296875,0.4912109375,0.51171875,0.4873046875,0.443359375,0.416015625,0.431640625,0.4892578125,0.55859375,0.6201171875,0.654296875,0.6494140625,0.6181640625,0.587890625,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.451171875,0.4404296875,0.4794921875,0.3837890625,0.3408203125,0.32421875,0.32421875,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.4296875,0.46875,0.5361328125,0.599609375,0.62890625,0.615234375,0.5703125,0.5146484375,0.4541015625,0.421875,0.4443359375,0.517578125,0.6044921875,0.673828125,0.7265625,0.7353515625,0.6767578125,0.5634765625,0.4375,0.3525390625,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.638671875,0.673828125,0.705078125,0.7080078125,0.673828125,0.6142578125,0.55078125,0.4814453125,0.39453125,0.330078125,0.326171875,0.384765625,0.47265625,0.55078125,0.6181640625,0.6552734375,0.6376953125,0.56640625,0.4716796875,0.4013671875,0.376953125,0.369140625,0.3671875,0.373046875,0.3818359375,0.3876953125,0.3857421875,0.376953125,0.3671875,0.359375,0.361328125,0.375,0.396484375,0.416015625,0.4287109375,0.4462890625,0.4833984375,0.515625,0.5146484375,0.470703125,0.3994140625,0.3251953125,0.2470703125,0.1591796875,0.1005859375,0.1044921875,0.169921875,0.255859375,0.3251953125,0.3818359375,0.4189453125,0.4306640625,0.4287109375,0.431640625,0.4541015625,0.5,0.5419921875,0.5498046875,0.5244140625,0.4912109375,0.4755859375,0.4970703125,0.55078125,0.6123046875,0.66015625,0.6591796875,0.5947265625,0.4892578125,0.388671875,0.3251953125,0.27734375,0.24609375,0.244140625,0.2705078125,0.306640625,0.3291015625,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.5478515625,0.4716796875,0.4150390625,0.39453125,0.4052734375,0.423828125,0.4287109375,0.43359375,0.45703125,0.49609375,0.5380859375,0.5673828125,0.5771484375,0.5703125,0.546875,0.4833984375,0.400390625,0.341796875,0.3359375,0.3798828125,0.4482421875,0.52734375,0.6220703125,0.6884765625,0.6884765625,0.6220703125,0.52734375,0.4482421875,0.3837890625,0.3525390625,0.361328125,0.39453125,0.4228515625,0.4189453125,0.376953125,0.341796875,0.3671875,0.4501953125,0.5478515625,0.611328125,0.609375,0.55078125,0.4697265625,0.3671875,0.28125,0.2529296875,0.2900390625,0.3623046875,0.4287109375,0.4931640625,0.5615234375,0.6123046875,0.6279296875,0.611328125,0.5849609375,0.5703125,0.5546875,0.5166015625,0.4609375,0.400390625,0.353515625,0.330078125,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4423828125,0.5009765625,0.5859375,0.6533203125,0.671875,0.63671875,0.5703125,0.494140625,0.4189453125,0.37890625,0.4013671875,0.4755859375,0.560546875,0.6220703125,0.6572265625,0.6318359375,0.548828125,0.451171875,0.3876953125,0.3896484375,0.4482421875,0.517578125,0.5673828125,0.576171875,0.541015625,0.4833984375,0.439453125,0.4287109375,0.4306640625,0.4423828125,0.4658203125,0.4990234375,0.5322265625,0.556640625,0.5703125,0.5771484375,0.5673828125,0.5380859375,0.49609375,0.45703125,0.43359375,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.37890625,0.353515625,0.3173828125,0.3017578125,0.3232421875,0.3779296875,0.4482421875,0.51171875,0.5439453125,0.5419921875,0.52734375,0.5263671875,0.5576171875,0.6220703125,0.701171875,0.7958984375,0.8623046875,0.8623046875,0.7958984375,0.701171875,0.6220703125,0.544921875,0.45703125,0.376953125,0.3291015625,0.31640625,0.322265625,0.3251953125,0.31640625,0.28125,0.2392578125,0.22265625,0.248046875,0.306640625,0.376953125,0.4375,0.4482421875,0.404296875,0.333984375,0.2802734375,0.27734375,0.3251953125,0.392578125,0.47265625,0.546875,0.58984375,0.5966796875,0.5830078125,0.5703125,0.568359375,0.5966796875,0.640625,0.6708984375,0.6669921875,0.6279296875,0.5703125,0.4990234375,0.4033203125,0.3232421875,0.2998046875,0.34375,0.4228515625,0.5,0.5791015625,0.67578125,0.7509765625,0.7646484375,0.7158203125,0.6376953125,0.5703125,0.49609375,0.3857421875,0.2783203125,0.22265625,0.2392578125,0.3037109375,0.376953125,0.4541015625,0.5361328125,0.583984375,0.5654296875,0.4892578125,0.396484375,0.3251953125,0.2587890625,0.1845703125,0.134765625,0.1396484375,0.1943359375,0.267578125,0.3251953125,0.375,0.4189453125,0.4560546875,0.4912109375,0.5283203125,0.572265625,0.6220703125,0.6669921875,0.6806640625,0.6474609375,0.57421875,0.4931640625,0.4404296875,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3408203125,0.4130859375,0.5205078125,0.615234375,0.6572265625,0.6337890625,0.5703125,0.5087890625,0.4921875,0.5244140625,0.5810546875,0.623046875,0.6201171875,0.5703125,0.515625,0.4892578125,0.4921875,0.5068359375,0.509765625,0.4833984375,0.4287109375,0.375,0.359375,0.3994140625,0.48046875,0.5673828125,0.619140625,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.5048828125,0.5341796875,0.5224609375,0.4736328125,0.4140625,0.376953125,0.376953125,0.3828125,0.37890625,0.3818359375,0.4111328125,0.4716796875,0.5478515625,0.6220703125,0.68359375,0.693359375,0.6328125,0.5205078125,0.40234375,0.33203125,0.3251953125,0.349609375,0.4228515625,0.525390625,0.611328125,0.646484375,0.625,0.5703125,0.5048828125,0.4296875,0.3681640625,0.3388671875,0.34375,0.36328125,0.376953125,0.380859375,0.361328125,0.3330078125,0.3212890625,0.3408203125,0.3876953125,0.4482421875,0.51953125,0.619140625,0.70703125,0.73828125,0.7021484375,0.626953125,0.55078125,0.4775390625,0.404296875,0.34765625,0.3232421875,0.32421875,0.3310546875,0.3251953125,0.3115234375,0.2890625,0.2763671875,0.291015625,0.3359375,0.3935546875,0.4482421875,0.4853515625,0.47265625,0.4130859375,0.3427734375,0.3017578125,0.31640625,0.376953125,0.44140625,0.47265625,0.4638671875,0.4306640625,0.40234375,0.40625,0.4482421875,0.50390625,0.5751953125,0.642578125,0.6845703125,0.6953125,0.685546875,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.5,0.4912109375,0.525390625,0.39453125,0.3310546875,0.2841796875,0.2626953125,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.447265625,0.4462890625,0.4697265625,0.5048828125,0.5341796875,0.54296875,0.5302734375,0.509765625,0.4951171875,0.5048828125,0.5498046875,0.619140625,0.6884765625,0.740234375,0.7763671875,0.7666015625,0.6875,0.5517578125,0.40625,0.3017578125,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.666015625,0.7080078125,0.740234375,0.740234375,0.705078125,0.6533203125,0.6044921875,0.55078125,0.4755859375,0.4140625,0.40234375,0.4501953125,0.5283203125,0.6044921875,0.6728515625,0.7109375,0.6904296875,0.607421875,0.4951171875,0.4052734375,0.3642578125,0.341796875,0.337890625,0.3525390625,0.375,0.3896484375,0.3857421875,0.3642578125,0.3369140625,0.3154296875,0.314453125,0.341796875,0.3896484375,0.4375,0.46875,0.5,0.53515625,0.546875,0.5107421875,0.4306640625,0.3369140625,0.2587890625,0.1826171875,0.1044921875,0.056640625,0.068359375,0.1298828125,0.205078125,0.2587890625,0.3056640625,0.357421875,0.4052734375,0.44140625,0.46484375,0.4814453125,0.5,0.513671875,0.5146484375,0.5078125,0.5078125,0.525390625,0.560546875,0.6044921875,0.6435546875,0.6455078125,0.5908203125,0.48828125,0.3740234375,0.2919921875,0.2587890625,0.244140625,0.24609375,0.26171875,0.28125,0.2900390625,0.2822265625,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.5615234375,0.4892578125,0.4384765625,0.4248046875,0.44140625,0.462890625,0.46875,0.474609375,0.4970703125,0.5302734375,0.5576171875,0.56640625,0.5537109375,0.5302734375,0.4912109375,0.4140625,0.3251953125,0.2705078125,0.2724609375,0.32421875,0.39453125,0.474609375,0.568359375,0.634765625,0.634765625,0.568359375,0.474609375,0.39453125,0.326171875,0.28125,0.275390625,0.3056640625,0.3486328125,0.373046875,0.3642578125,0.361328125,0.41796875,0.521484375,0.6240234375,0.6787109375,0.666015625,0.6044921875,0.525390625,0.4296875,0.3525390625,0.328125,0.359375,0.41796875,0.46875,0.5185546875,0.57421875,0.6162109375,0.6240234375,0.5986328125,0.560546875,0.5302734375,0.498046875,0.4453125,0.3798828125,0.3203125,0.279296875,0.26171875,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.48046875,0.529296875,0.5966796875,0.642578125,0.6435546875,0.5986328125,0.5302734375,0.4599609375,0.4091796875,0.4052734375,0.455078125,0.5361328125,0.6044921875,0.634765625,0.6376953125,0.5810546875,0.4775390625,0.375,0.3203125,0.3330078125,0.39453125,0.4658203125,0.52734375,0.5576171875,0.546875,0.509765625,0.4775390625,0.46875,0.466796875,0.458984375,0.453125,0.4580078125,0.4765625,0.5029296875,0.5302734375,0.5537109375,0.56640625,0.5576171875,0.5302734375,0.4970703125,0.474609375,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.380859375,0.361328125,0.3203125,0.2861328125,0.287109375,0.3271484375,0.39453125,0.4599609375,0.5,0.513671875,0.5166015625,0.529296875,0.5693359375,0.634765625,0.71484375,0.80859375,0.8759765625,0.8759765625,0.80859375,0.71484375,0.634765625,0.556640625,0.4580078125,0.361328125,0.2919921875,0.26171875,0.2578125,0.2587890625,0.2509765625,0.22265625,0.1923828125,0.189453125,0.2265625,0.2919921875,0.3642578125,0.4248046875,0.4384765625,0.39453125,0.3173828125,0.2490234375,0.2275390625,0.2587890625,0.3134765625,0.39453125,0.482421875,0.546875,0.568359375,0.5556640625,0.5302734375,0.5107421875,0.517578125,0.546875,0.5771484375,0.587890625,0.5703125,0.5302734375,0.474609375,0.396484375,0.328125,0.30859375,0.3486328125,0.423828125,0.5,0.576171875,0.6591796875,0.712890625,0.708984375,0.654296875,0.5830078125,0.5302734375,0.4716796875,0.376953125,0.2783203125,0.2236328125,0.2333984375,0.2919921875,0.3642578125,0.4375,0.50390625,0.52734375,0.48828125,0.4033203125,0.3154296875,0.2587890625,0.2119140625,0.16796875,0.1455078125,0.15625,0.1943359375,0.234375,0.2587890625,0.283203125,0.33203125,0.4052734375,0.48828125,0.5615234375,0.6103515625,0.634765625,0.6494140625,0.6435546875,0.609375,0.5576171875,0.5068359375,0.4755859375,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.275390625,0.349609375,0.4638671875,0.5654296875,0.61328125,0.59375,0.5302734375,0.466796875,0.4404296875,0.4609375,0.5107421875,0.5556640625,0.564453125,0.5302734375,0.490234375,0.4765625,0.48828125,0.5107421875,0.5224609375,0.5087890625,0.46875,0.4326171875,0.4345703125,0.4833984375,0.5576171875,0.623046875,0.650390625,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.4345703125,0.4482421875,0.4306640625,0.3916015625,0.3564453125,0.345703125,0.3642578125,0.3857421875,0.396484375,0.408203125,0.4384765625,0.4921875,0.5625,0.634765625,0.6923828125,0.68359375,0.59375,0.4521484375,0.3203125,0.251953125,0.2587890625,0.296875,0.3759765625,0.474609375,0.5546875,0.5869140625,0.5712890625,0.5302734375,0.478515625,0.4091796875,0.3447265625,0.30859375,0.310546875,0.3359375,0.3642578125,0.3837890625,0.380859375,0.3583984375,0.3359375,0.33203125,0.353515625,0.39453125,0.453125,0.5537109375,0.662109375,0.7294921875,0.7294921875,0.67578125,0.6044921875,0.5302734375,0.451171875,0.380859375,0.3310546875,0.3017578125,0.2822265625,0.2587890625,0.2333984375,0.2197265625,0.2314453125,0.2705078125,0.3232421875,0.369140625,0.39453125,0.40234375,0.37109375,0.3134765625,0.267578125,0.259765625,0.2978515625,0.3642578125,0.431640625,0.4765625,0.482421875,0.4521484375,0.4091796875,0.384765625,0.39453125,0.4248046875,0.49609375,0.595703125,0.6904296875,0.7490234375,0.7607421875,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.427734375,0.3642578125,0.302734375,0.2666015625,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.4814453125,0.4306640625,0.39453125,0.3896484375,0.4130859375,0.4462890625,0.46875,0.490234375,0.521484375,0.56640625,0.6181640625,0.669921875,0.7109375,0.740234375,0.7607421875,0.748046875,0.6796875,0.560546875,0.4248046875,0.318359375,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.6533203125,0.705078125,0.740234375,0.740234375,0.7080078125,0.666015625,0.634765625,0.599609375,0.5380859375,0.48046875,0.4609375,0.494140625,0.5615234375,0.634765625,0.705078125,0.7548828125,0.748046875,0.673828125,0.55859375,0.4541015625,0.39453125,0.3564453125,0.349609375,0.375,0.4140625,0.439453125,0.4326171875,0.39453125,0.3466796875,0.3037109375,0.2919921875,0.328125,0.400390625,0.4765625,0.5302734375,0.5771484375,0.619140625,0.62109375,0.560546875,0.453125,0.341796875,0.2587890625,0.185546875,0.1181640625,0.0849609375,0.1044921875,0.162109375,0.2236328125,0.2587890625,0.29296875,0.3525390625,0.4248046875,0.4853515625,0.515625,0.515625,0.5,0.48046875,0.4677734375,0.474609375,0.5078125,0.556640625,0.603515625,0.634765625,0.6494140625,0.6123046875,0.5185546875,0.400390625,0.2998046875,0.2529296875,0.2587890625,0.283203125,0.32421875,0.361328125,0.3720703125,0.349609375,0.3056640625,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.533203125,0.4716796875,0.44140625,0.4521484375,0.4892578125,0.521484375,0.5302734375,0.53515625,0.5537109375,0.57421875,0.5771484375,0.5556640625,0.5146484375,0.46875,0.4130859375,0.3251953125,0.240234375,0.201171875,0.224609375,0.2900390625,0.3642578125,0.443359375,0.5380859375,0.6044921875,0.6044921875,0.5380859375,0.443359375,0.3642578125,0.2919921875,0.232421875,0.2119140625,0.2421875,0.3056640625,0.365234375,0.39453125,0.4287109375,0.5126953125,0.6240234375,0.7099609375,0.736328125,0.7021484375,0.634765625,0.5595703125,0.478515625,0.421875,0.4140625,0.4482421875,0.4970703125,0.5302734375,0.560546875,0.5986328125,0.6240234375,0.6162109375,0.57421875,0.5185546875,0.46875,0.419921875,0.361328125,0.306640625,0.26953125,0.2568359375,0.2578125,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5380859375,0.572265625,0.6123046875,0.626953125,0.6005859375,0.5400390625,0.46875,0.4052734375,0.3798828125,0.4111328125,0.4853515625,0.5654296875,0.6103515625,0.6044921875,0.5703125,0.486328125,0.375,0.2890625,0.2626953125,0.296875,0.3642578125,0.4375,0.509765625,0.560546875,0.57421875,0.5576171875,0.5361328125,0.5302734375,0.5224609375,0.48828125,0.44140625,0.40625,0.400390625,0.4267578125,0.46875,0.5146484375,0.5556640625,0.5771484375,0.57421875,0.5537109375,0.53515625,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.427734375,0.416015625,0.36328125,0.306640625,0.279296875,0.3017578125,0.3642578125,0.4296875,0.4697265625,0.482421875,0.4853515625,0.4990234375,0.5390625,0.6044921875,0.6845703125,0.7783203125,0.8447265625,0.8447265625,0.7783203125,0.6845703125,0.6044921875,0.5263671875,0.4326171875,0.341796875,0.28125,0.2568359375,0.2568359375,0.2587890625,0.251953125,0.2265625,0.2041015625,0.208984375,0.2529296875,0.3212890625,0.39453125,0.45703125,0.4775390625,0.44140625,0.3642578125,0.28515625,0.24609375,0.2587890625,0.2958984375,0.3671875,0.4521484375,0.5166015625,0.53515625,0.51171875,0.46875,0.4287109375,0.4111328125,0.421875,0.4521484375,0.4814453125,0.48828125,0.46875,0.4345703125,0.376953125,0.3251953125,0.314453125,0.353515625,0.42578125,0.5,0.572265625,0.63671875,0.662109375,0.6357421875,0.5703125,0.505859375,0.46875,0.431640625,0.361328125,0.287109375,0.248046875,0.263671875,0.322265625,0.39453125,0.46484375,0.515625,0.5185546875,0.4638671875,0.375,0.2978515625,0.2587890625,0.236328125,0.2275390625,0.2373046875,0.255859375,0.2724609375,0.2734375,0.2587890625,0.2509765625,0.2900390625,0.3779296875,0.4853515625,0.5732421875,0.6123046875,0.6044921875,0.583984375,0.5615234375,0.541015625,0.529296875,0.52734375,0.529296875,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.2734375,0.3408203125,0.44140625,0.52734375,0.560546875,0.5341796875,0.46875,0.4033203125,0.3662109375,0.3720703125,0.4140625,0.462890625,0.484375,0.46875,0.4482421875,0.4521484375,0.48046875,0.5185546875,0.546875,0.55078125,0.5302734375,0.5126953125,0.5283203125,0.57421875,0.6240234375,0.65234375,0.6435546875,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.3837890625,0.380859375,0.3583984375,0.3359375,0.33203125,0.353515625,0.39453125,0.43359375,0.4501953125,0.4521484375,0.4580078125,0.484375,0.5361328125,0.6044921875,0.66015625,0.64453125,0.546875,0.4052734375,0.283203125,0.232421875,0.2587890625,0.3115234375,0.3857421875,0.4609375,0.5078125,0.5166015625,0.49609375,0.46875,0.435546875,0.380859375,0.3251953125,0.2978515625,0.30859375,0.3486328125,0.39453125,0.4345703125,0.4482421875,0.4306640625,0.3916015625,0.3564453125,0.345703125,0.3642578125,0.40625,0.5,0.619140625,0.708984375,0.7373046875,0.7021484375,0.634765625,0.5625,0.4912109375,0.427734375,0.3779296875,0.3388671875,0.3017578125,0.2587890625,0.2197265625,0.2109375,0.240234375,0.294921875,0.3486328125,0.3740234375,0.3642578125,0.3359375,0.2841796875,0.234375,0.2197265625,0.25390625,0.3212890625,0.39453125,0.4658203125,0.525390625,0.546875,0.5166015625,0.4521484375,0.3935546875,0.3642578125,0.3603515625,0.4189453125,0.533203125,0.6591796875,0.7490234375,0.7724609375,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.61328125,0.609375,0.6240234375,0.4873046875,0.4384765625,0.376953125,0.3349609375,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.5,0.408203125,0.3271484375,0.294921875,0.318359375,0.3740234375,0.4287109375,0.482421875,0.5439453125,0.599609375,0.638671875,0.6572265625,0.6650390625,0.673828125,0.68359375,0.6845703125,0.6552734375,0.5849609375,0.48828125,0.39453125,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.6142578125,0.673828125,0.7080078125,0.705078125,0.673828125,0.638671875,0.6220703125,0.6015625,0.552734375,0.4970703125,0.470703125,0.4921875,0.55078125,0.6220703125,0.6962890625,0.7626953125,0.783203125,0.732421875,0.62890625,0.521484375,0.4482421875,0.396484375,0.3876953125,0.421875,0.4736328125,0.5078125,0.4990234375,0.4482421875,0.3828125,0.31640625,0.287109375,0.3193359375,0.4033203125,0.4990234375,0.5703125,0.6337890625,0.6904296875,0.701171875,0.640625,0.52734375,0.4091796875,0.3251953125,0.2548828125,0.1962890625,0.1748046875,0.201171875,0.255859375,0.3056640625,0.3251953125,0.3466796875,0.4052734375,0.484375,0.546875,0.568359375,0.546875,0.5,0.451171875,0.4228515625,0.4326171875,0.482421875,0.5498046875,0.6015625,0.6220703125,0.6181640625,0.5595703125,0.4580078125,0.353515625,0.2890625,0.2841796875,0.3251953125,0.3837890625,0.45703125,0.51171875,0.5166015625,0.466796875,0.392578125,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.4814453125,0.431640625,0.4228515625,0.4580078125,0.515625,0.5595703125,0.5703125,0.5751953125,0.59375,0.6083984375,0.5966796875,0.5537109375,0.4921875,0.4287109375,0.3583984375,0.265625,0.189453125,0.1708984375,0.21875,0.2998046875,0.376953125,0.45703125,0.55078125,0.6181640625,0.6181640625,0.55078125,0.45703125,0.376953125,0.3017578125,0.228515625,0.193359375,0.220703125,0.298828125,0.38671875,0.4482421875,0.51171875,0.611328125,0.712890625,0.767578125,0.755859375,0.6943359375,0.6220703125,0.548828125,0.484375,0.4521484375,0.4638671875,0.5078125,0.55078125,0.5703125,0.5849609375,0.611328125,0.6279296875,0.6123046875,0.5615234375,0.4931640625,0.4287109375,0.3671875,0.3095703125,0.275390625,0.2734375,0.296875,0.3193359375,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.5771484375,0.6015625,0.623046875,0.6162109375,0.5712890625,0.501953125,0.4287109375,0.369140625,0.361328125,0.4130859375,0.4970703125,0.568359375,0.587890625,0.55078125,0.4873046875,0.3876953125,0.2861328125,0.2314453125,0.2431640625,0.3046875,0.376953125,0.451171875,0.52734375,0.583984375,0.6044921875,0.59375,0.5751953125,0.5703125,0.55859375,0.505859375,0.4287109375,0.365234375,0.3447265625,0.373046875,0.4287109375,0.4921875,0.5537109375,0.5966796875,0.6083984375,0.59375,0.5751953125,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.49609375,0.490234375,0.4326171875,0.357421875,0.3095703125,0.3173828125,0.376953125,0.44140625,0.47265625,0.4716796875,0.45703125,0.455078125,0.4873046875,0.55078125,0.630859375,0.724609375,0.7919921875,0.7919921875,0.724609375,0.630859375,0.55078125,0.4765625,0.396484375,0.3330078125,0.3037109375,0.306640625,0.3212890625,0.3251953125,0.318359375,0.2919921875,0.265625,0.267578125,0.3076171875,0.375,0.4482421875,0.513671875,0.544921875,0.5234375,0.4560546875,0.376953125,0.328125,0.3251953125,0.3466796875,0.40234375,0.4736328125,0.5224609375,0.5263671875,0.4873046875,0.4287109375,0.37109375,0.33203125,0.328125,0.3583984375,0.40234375,0.4306640625,0.4287109375,0.41015625,0.3701171875,0.330078125,0.3232421875,0.359375,0.4267578125,0.5,0.5693359375,0.619140625,0.6240234375,0.580078125,0.5087890625,0.451171875,0.4287109375,0.4091796875,0.3623046875,0.3115234375,0.2900390625,0.3154296875,0.3759765625,0.4482421875,0.5166015625,0.5595703125,0.5537109375,0.4951171875,0.4130859375,0.3486328125,0.3251953125,0.322265625,0.3447265625,0.380859375,0.40625,0.4052734375,0.3740234375,0.3251953125,0.2880859375,0.30859375,0.38671875,0.490234375,0.568359375,0.5888671875,0.55078125,0.501953125,0.466796875,0.4619140625,0.48828125,0.5302734375,0.5625,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.337890625,0.392578125,0.46875,0.5263671875,0.5361328125,0.49609375,0.4287109375,0.3603515625,0.314453125,0.30859375,0.34375,0.39453125,0.4287109375,0.4287109375,0.423828125,0.439453125,0.4765625,0.5224609375,0.5595703125,0.5751953125,0.5703125,0.568359375,0.59375,0.6337890625,0.6591796875,0.6513671875,0.609375,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.380859375,0.361328125,0.3330078125,0.3212890625,0.3408203125,0.3876953125,0.4482421875,0.5,0.515625,0.4970703125,0.4677734375,0.4580078125,0.4873046875,0.55078125,0.607421875,0.5966796875,0.513671875,0.3974609375,0.3056640625,0.28125,0.3251953125,0.3896484375,0.4521484375,0.4951171875,0.5,0.4755859375,0.4453125,0.4287109375,0.4111328125,0.3701171875,0.326171875,0.3095703125,0.3330078125,0.38671875,0.4482421875,0.5048828125,0.5341796875,0.5224609375,0.4736328125,0.4140625,0.376953125,0.376953125,0.4033203125,0.482421875,0.591796875,0.6826171875,0.7158203125,0.6875,0.6220703125,0.5537109375,0.5009765625,0.466796875,0.4453125,0.4208984375,0.3818359375,0.3251953125,0.2744140625,0.265625,0.3037109375,0.3642578125,0.412109375,0.4169921875,0.376953125,0.3193359375,0.2490234375,0.2021484375,0.2119140625,0.2783203125,0.369140625,0.4482421875,0.5234375,0.5966796875,0.6318359375,0.6044921875,0.5263671875,0.4384765625,0.376953125,0.3427734375,0.3779296875,0.4794921875,0.60546875,0.6982421875,0.71875,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.61328125,0.611328125,0.6171875,0.5615234375,0.52734375,0.4716796875,0.4296875,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.478515625,0.373046875,0.283203125,0.251953125,0.2900390625,0.3662109375,0.439453125,0.5087890625,0.5751953125,0.6181640625,0.625,0.60546875,0.583984375,0.5791015625,0.5869140625,0.609375,0.6259765625,0.61328125,0.5634765625,0.4921875,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.5791015625,0.638671875,0.666015625,0.6533203125,0.6142578125,0.5791015625,0.5693359375,0.5576171875,0.5146484375,0.4609375,0.431640625,0.4462890625,0.4990234375,0.5693359375,0.646484375,0.73046875,0.7783203125,0.755859375,0.671875,0.5693359375,0.4892578125,0.4306640625,0.4208984375,0.4599609375,0.51953125,0.55859375,0.5478515625,0.4892578125,0.4130859375,0.330078125,0.2802734375,0.298828125,0.37890625,0.4794921875,0.5595703125,0.6337890625,0.7099609375,0.7451171875,0.708984375,0.6123046875,0.5029296875,0.419921875,0.349609375,0.296875,0.2822265625,0.3115234375,0.365234375,0.408203125,0.419921875,0.4326171875,0.4833984375,0.552734375,0.6015625,0.60546875,0.564453125,0.5,0.4345703125,0.3916015625,0.3935546875,0.4404296875,0.5068359375,0.556640625,0.5693359375,0.5576171875,0.5009765625,0.4169921875,0.34765625,0.326171875,0.357421875,0.419921875,0.49609375,0.5869140625,0.6513671875,0.65234375,0.5888671875,0.4970703125,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.4404296875,0.39453125,0.392578125,0.435546875,0.5,0.5478515625,0.5595703125,0.56640625,0.5927734375,0.6181640625,0.6162109375,0.576171875,0.5107421875,0.439453125,0.361328125,0.267578125,0.1982421875,0.1953125,0.2587890625,0.3505859375,0.4296875,0.509765625,0.603515625,0.669921875,0.669921875,0.603515625,0.509765625,0.4296875,0.3515625,0.2666015625,0.2158203125,0.2333984375,0.3125,0.412109375,0.4892578125,0.568359375,0.6689453125,0.7529296875,0.775390625,0.7294921875,0.646484375,0.5693359375,0.4990234375,0.4443359375,0.427734375,0.455078125,0.505859375,0.5478515625,0.5595703125,0.568359375,0.595703125,0.62109375,0.6181640625,0.5771484375,0.5107421875,0.439453125,0.37109375,0.3173828125,0.2998046875,0.32421875,0.3720703125,0.41015625,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.56640625,0.59375,0.6201171875,0.619140625,0.5791015625,0.5126953125,0.439453125,0.380859375,0.376953125,0.4296875,0.5078125,0.564453125,0.564453125,0.509765625,0.4306640625,0.330078125,0.24609375,0.2236328125,0.26953125,0.3525390625,0.4296875,0.5029296875,0.5703125,0.61328125,0.6171875,0.591796875,0.56640625,0.5595703125,0.546875,0.4912109375,0.4130859375,0.3515625,0.337890625,0.3740234375,0.439453125,0.5107421875,0.576171875,0.6162109375,0.6181640625,0.5927734375,0.56640625,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.5458984375,0.548828125,0.4951171875,0.4189453125,0.3662109375,0.37109375,0.4296875,0.4912109375,0.51171875,0.4892578125,0.4501953125,0.427734375,0.4482421875,0.509765625,0.5888671875,0.68359375,0.75,0.75,0.68359375,0.5888671875,0.509765625,0.4375,0.3740234375,0.3408203125,0.34765625,0.380859375,0.412109375,0.419921875,0.4111328125,0.3779296875,0.33984375,0.328125,0.357421875,0.41796875,0.4892578125,0.5576171875,0.6005859375,0.5966796875,0.5478515625,0.478515625,0.4296875,0.419921875,0.431640625,0.4755859375,0.533203125,0.5673828125,0.5576171875,0.5078125,0.439453125,0.3720703125,0.3212890625,0.3095703125,0.33984375,0.3916015625,0.431640625,0.439453125,0.4296875,0.3935546875,0.353515625,0.33984375,0.3671875,0.427734375,0.5,0.568359375,0.6142578125,0.615234375,0.5703125,0.5029296875,0.453125,0.439453125,0.4296875,0.392578125,0.349609375,0.3330078125,0.359375,0.41796875,0.4892578125,0.5576171875,0.6025390625,0.6015625,0.5537109375,0.484375,0.4326171875,0.419921875,0.427734375,0.4658203125,0.5166015625,0.546875,0.53515625,0.486328125,0.419921875,0.365234375,0.365234375,0.423828125,0.505859375,0.5634765625,0.564453125,0.509765625,0.4443359375,0.400390625,0.3984375,0.4404296875,0.5029296875,0.548828125,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.4306640625,0.474609375,0.5322265625,0.5673828125,0.55859375,0.5087890625,0.439453125,0.3701171875,0.318359375,0.306640625,0.337890625,0.390625,0.431640625,0.439453125,0.44140625,0.455078125,0.4833984375,0.515625,0.5439453125,0.5576171875,0.5595703125,0.56640625,0.599609375,0.640625,0.6572265625,0.634765625,0.578125,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.4228515625,0.390625,0.3525390625,0.337890625,0.3623046875,0.419921875,0.4892578125,0.5478515625,0.560546875,0.5244140625,0.4697265625,0.4345703125,0.44921875,0.509765625,0.5673828125,0.568359375,0.5087890625,0.42578125,0.365234375,0.36328125,0.419921875,0.48828125,0.54296875,0.5615234375,0.5380859375,0.490234375,0.4501953125,0.439453125,0.4296875,0.3935546875,0.3525390625,0.3369140625,0.361328125,0.419921875,0.4892578125,0.5556640625,0.5986328125,0.59765625,0.55078125,0.486328125,0.439453125,0.4296875,0.4443359375,0.5048828125,0.5888671875,0.65625,0.6728515625,0.6357421875,0.5693359375,0.505859375,0.4755859375,0.4814453125,0.501953125,0.5087890625,0.4814453125,0.419921875,0.361328125,0.3515625,0.3916015625,0.4521484375,0.494140625,0.486328125,0.4296875,0.3544921875,0.2705078125,0.2177734375,0.2314453125,0.3095703125,0.4091796875,0.4892578125,0.5673828125,0.65234375,0.703125,0.685546875,0.6064453125,0.5078125,0.4296875,0.3759765625,0.3857421875,0.4580078125,0.556640625,0.6279296875,0.634765625,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.568359375,0.5673828125,0.568359375,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.703125,0.669921875,0.6142578125,0.5712890625,0.5595703125,0.564453125,0.5888671875,0.6123046875,0.6103515625,0.572265625,0.5087890625,0.439453125,0.3662109375,0.2919921875,0.2568359375,0.2919921875,0.3876953125,0.4970703125,0.5791015625,0.6455078125,0.6806640625,0.662109375,0.5927734375,0.505859375,0.4443359375,0.4296875,0.44140625,0.4990234375,0.583984375,0.654296875,0.67578125,0.6435546875,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.41015625,0.3798828125,0.3466796875,0.341796875,0.3759765625,0.439453125,0.509765625,0.576171875,0.6171875,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.4091796875,0.369140625,0.3203125,0.294921875,0.310546875,0.3623046875,0.4296875,0.5078125,0.6083984375,0.689453125,0.7099609375,0.6611328125,0.5771484375,0.5,0.439453125,0.4296875,0.470703125,0.533203125,0.576171875,0.5673828125,0.509765625,0.4296875,0.3291015625,0.2490234375,0.23046875,0.2802734375,0.36328125,0.439453125,0.5205078125,0.6298828125,0.724609375,0.759765625,0.7236328125,0.6455078125,0.5693359375,0.4990234375,0.4443359375,0.427734375,0.455078125,0.505859375,0.5478515625,0.5595703125,0.5693359375,0.60546875,0.6455078125,0.6591796875,0.6318359375,0.5712890625,0.5,0.427734375,0.3642578125,0.33203125,0.3408203125,0.376953125,0.41015625,0.419921875,0.4150390625,0.392578125,0.3720703125,0.3779296875,0.4208984375,0.48828125,0.5595703125,0.6376953125,0.732421875,0.8017578125,0.806640625,0.74609375,0.65625,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.439453125,0.3779296875,0.3466796875,0.353515625,0.384765625,0.4140625,0.419921875,0.431640625,0.4892578125,0.5732421875,0.640625,0.66015625,0.6259765625,0.5595703125,0.48046875,0.3896484375,0.3271484375,0.3310546875,0.3994140625,0.4921875,0.5693359375,0.6455078125,0.7373046875,0.8046875,0.8076171875,0.74609375,0.65625,0.5791015625,0.4990234375,0.396484375,0.3115234375,0.287109375,0.3330078125,0.4140625,0.4892578125,0.56640625,0.65234375,0.7060546875,0.693359375,0.6171875,0.5185546875,0.439453125,0.37109375,0.31640625,0.2978515625,0.3212890625,0.369140625,0.4091796875,0.419921875,0.4345703125,0.4931640625,0.578125,0.6455078125,0.6650390625,0.6328125,0.5693359375,0.5029296875,0.4541015625,0.443359375,0.4755859375,0.5283203125,0.5693359375,0.5791015625,0.576171875,0.55859375,0.5283203125,0.4912109375,0.4599609375,0.443359375,0.439453125,0.453125,0.51171875,0.595703125,0.6630859375,0.681640625,0.6455078125,0.5791015625,0.517578125,0.494140625,0.513671875,0.5498046875,0.5703125,0.5498046875,0.4892578125,0.4140625,0.3330078125,0.287109375,0.3115234375,0.396484375,0.4990234375,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.4130859375,0.388671875,0.3662109375,0.3720703125,0.4169921875,0.486328125,0.5595703125,0.6259765625,0.662109375,0.6455078125,0.5791015625,0.494140625,0.4345703125,0.419921875,0.41015625,0.3798828125,0.3466796875,0.341796875,0.3759765625,0.439453125,0.509765625,0.5693359375,0.587890625,0.5634765625,0.5205078125,0.494140625,0.5107421875,0.5693359375,0.6240234375,0.623046875,0.564453125,0.4833984375,0.427734375,0.4306640625,0.4892578125,0.5693359375,0.6630859375,0.73046875,0.73046875,0.6630859375,0.5693359375,0.4892578125,0.421875,0.3798828125,0.38671875,0.44140625,0.5146484375,0.5673828125,0.5791015625,0.5673828125,0.5166015625,0.4462890625,0.3935546875,0.3857421875,0.4248046875,0.4892578125,0.55859375,0.6201171875,0.654296875,0.6494140625,0.6181640625,0.587890625,0.5791015625,0.5869140625,0.6240234375,0.671875,0.6962890625,0.6806640625,0.6279296875,0.5595703125,0.4912109375,0.4384765625,0.4248046875,0.453125,0.505859375,0.5478515625,0.5595703125,0.5498046875,0.501953125,0.4345703125,0.3857421875,0.3818359375,0.4228515625,0.4892578125,0.5595703125,0.6201171875,0.650390625,0.6396484375,0.6025390625,0.5693359375,0.5595703125,0.546875,0.4970703125,0.4306640625,0.3837890625,0.3818359375,0.4248046875,0.4892578125,0.55859375,0.619140625,0.650390625,0.6435546875,0.609375,0.578125,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.51171875,0.49609375,0.5234375,0.56640625,0.5908203125,0.5712890625,0.509765625,0.4375,0.375,0.341796875,0.3505859375,0.38671875,0.419921875,0.4296875,0.4345703125,0.4501953125,0.478515625,0.5107421875,0.5390625,0.5546875,0.5595703125,0.5703125,0.611328125,0.6630859375,0.6904296875,0.6767578125,0.6259765625,0.5595703125,0.4931640625,0.443359375,0.431640625,0.4619140625,0.515625,0.5576171875,0.5693359375,0.568359375,0.5546875,0.52734375,0.4931640625,0.462890625,0.4443359375,0.439453125,0.44921875,0.49609375,0.5595703125,0.6044921875,0.603515625,0.5576171875,0.4892578125,0.421875,0.3798828125,0.3857421875,0.4375,0.5087890625,0.55859375,0.5693359375,0.5556640625,0.5048828125,0.435546875,0.3876953125,0.3857421875,0.4306640625,0.5,0.5595703125,0.5693359375,0.5283203125,0.4658203125,0.4228515625,0.431640625,0.4892578125,0.5498046875,0.5712890625,0.5517578125,0.5166015625,0.4970703125,0.5185546875,0.5791015625,0.6474609375,0.6982421875,0.7119140625,0.681640625,0.6298828125,0.5888671875,0.5791015625,0.5673828125,0.5146484375,0.44140625,0.38671875,0.3798828125,0.421875,0.4892578125,0.5615234375,0.625,0.658203125,0.6513671875,0.6181640625,0.5869140625,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.365234375,0.373046875,0.4462890625,0.546875,0.6220703125,0.6318359375,0.5791015625,0.5224609375,0.5126953125,0.5517578125,0.6083984375,0.6435546875,0.6298828125,0.5693359375,0.48828125,0.38671875,0.306640625,0.291015625,0.3447265625,0.4306640625,0.509765625,0.5908203125,0.693359375,0.775390625,0.7939453125,0.7431640625,0.6572265625,0.5791015625,0.515625,0.4873046875,0.4951171875,0.5185546875,0.52734375,0.5009765625,0.439453125,0.37109375,0.3173828125,0.2998046875,0.32421875,0.3720703125,0.41015625,0.419921875,0.419921875,0.4208984375,0.421875,0.7470703125,0.7021484375,0.6396484375,0.58984375,0.5703125,0.5634765625,0.568359375,0.5732421875,0.5615234375,0.5283203125,0.48046875,0.4287109375,0.375,0.326171875,0.3173828125,0.373046875,0.4794921875,0.5908203125,0.673828125,0.7373046875,0.759765625,0.71484375,0.611328125,0.4892578125,0.404296875,0.376953125,0.3828125,0.4462890625,0.556640625,0.6650390625,0.7275390625,0.724609375,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.3125,0.296875,0.298828125,0.3369140625,0.40625,0.484375,0.55078125,0.607421875,0.630859375,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.3095703125,0.2783203125,0.25,0.2470703125,0.275390625,0.3251953125,0.376953125,0.439453125,0.533203125,0.6240234375,0.6650390625,0.640625,0.5732421875,0.5,0.439453125,0.4287109375,0.47265625,0.54296875,0.5966796875,0.599609375,0.55078125,0.48046875,0.384765625,0.30078125,0.2685546875,0.2978515625,0.36328125,0.4287109375,0.5029296875,0.61328125,0.720703125,0.7763671875,0.759765625,0.6953125,0.6220703125,0.548828125,0.484375,0.4521484375,0.4638671875,0.5078125,0.55078125,0.5703125,0.5888671875,0.62890625,0.6689453125,0.67578125,0.6396484375,0.572265625,0.5,0.423828125,0.3447265625,0.28515625,0.2646484375,0.28125,0.3095703125,0.3251953125,0.3330078125,0.3349609375,0.345703125,0.3798828125,0.4375,0.505859375,0.5703125,0.640625,0.7333984375,0.8134765625,0.8408203125,0.806640625,0.7392578125,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.4873046875,0.421875,0.3671875,0.337890625,0.33203125,0.33203125,0.3251953125,0.3310546875,0.39453125,0.5009765625,0.6005859375,0.6494140625,0.6328125,0.5703125,0.494140625,0.4189453125,0.37890625,0.4013671875,0.4755859375,0.560546875,0.6220703125,0.6806640625,0.759765625,0.8271484375,0.8447265625,0.806640625,0.7392578125,0.673828125,0.599609375,0.4921875,0.384765625,0.3251953125,0.33203125,0.384765625,0.4482421875,0.515625,0.59375,0.646484375,0.6416015625,0.580078125,0.498046875,0.4287109375,0.365234375,0.3017578125,0.259765625,0.25390625,0.2783203125,0.3095703125,0.3251953125,0.349609375,0.4228515625,0.529296875,0.6240234375,0.6728515625,0.666015625,0.6220703125,0.5732421875,0.5419921875,0.544921875,0.580078125,0.62890625,0.6650390625,0.673828125,0.66796875,0.6376953125,0.5830078125,0.5185546875,0.46484375,0.4345703125,0.4287109375,0.4443359375,0.515625,0.6240234375,0.71875,0.759765625,0.7373046875,0.673828125,0.6064453125,0.5625,0.544921875,0.5419921875,0.533203125,0.5029296875,0.4482421875,0.384765625,0.33203125,0.3251953125,0.384765625,0.4921875,0.599609375,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.3212890625,0.3095703125,0.310546875,0.3447265625,0.412109375,0.494140625,0.5703125,0.6357421875,0.6640625,0.630859375,0.5400390625,0.4306640625,0.3515625,0.3251953125,0.3125,0.296875,0.298828125,0.3369140625,0.40625,0.484375,0.55078125,0.60546875,0.62890625,0.6181640625,0.58984375,0.5693359375,0.5791015625,0.6220703125,0.6572265625,0.6318359375,0.548828125,0.451171875,0.3876953125,0.3896484375,0.4482421875,0.52734375,0.6220703125,0.6884765625,0.6884765625,0.6220703125,0.52734375,0.4482421875,0.3837890625,0.3583984375,0.3955078125,0.4853515625,0.5888671875,0.658203125,0.673828125,0.6611328125,0.6044921875,0.515625,0.4345703125,0.3935546875,0.4033203125,0.4482421875,0.50390625,0.5751953125,0.642578125,0.6845703125,0.6953125,0.685546875,0.673828125,0.6689453125,0.6845703125,0.7060546875,0.708984375,0.681640625,0.630859375,0.5703125,0.5087890625,0.4580078125,0.4384765625,0.4609375,0.5078125,0.5517578125,0.5703125,0.568359375,0.525390625,0.455078125,0.392578125,0.3681640625,0.392578125,0.4482421875,0.51171875,0.5771484375,0.6240234375,0.634765625,0.6142578125,0.5859375,0.5703125,0.5498046875,0.498046875,0.4306640625,0.380859375,0.37109375,0.3994140625,0.4482421875,0.5029296875,0.5673828125,0.623046875,0.65234375,0.6513671875,0.634765625,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.580078125,0.576171875,0.6044921875,0.6376953125,0.646484375,0.615234375,0.55078125,0.4755859375,0.396484375,0.3369140625,0.31640625,0.3330078125,0.361328125,0.376953125,0.390625,0.4150390625,0.4521484375,0.4951171875,0.5322265625,0.556640625,0.5703125,0.5869140625,0.6240234375,0.6640625,0.681640625,0.6640625,0.62109375,0.5703125,0.5205078125,0.4833984375,0.4775390625,0.5087890625,0.5595703125,0.603515625,0.6220703125,0.62890625,0.619140625,0.5859375,0.53515625,0.482421875,0.4453125,0.4287109375,0.4296875,0.4658203125,0.521484375,0.5615234375,0.5595703125,0.515625,0.4482421875,0.3837890625,0.3583984375,0.3916015625,0.47265625,0.5625,0.6181640625,0.6220703125,0.5986328125,0.5341796875,0.4521484375,0.3935546875,0.3876953125,0.4306640625,0.5,0.5595703125,0.5703125,0.5263671875,0.4560546875,0.40234375,0.3994140625,0.4482421875,0.50390625,0.541015625,0.556640625,0.564453125,0.580078125,0.6171875,0.673828125,0.7333984375,0.7783203125,0.7890625,0.763671875,0.7177734375,0.681640625,0.673828125,0.658203125,0.5888671875,0.4853515625,0.3955078125,0.3583984375,0.3837890625,0.4482421875,0.5224609375,0.6025390625,0.666015625,0.6953125,0.6923828125,0.677734375,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.28125,0.30859375,0.412109375,0.5517578125,0.666015625,0.7060546875,0.673828125,0.6328125,0.630859375,0.6630859375,0.701171875,0.71484375,0.685546875,0.6220703125,0.5400390625,0.4375,0.35546875,0.3369140625,0.3876953125,0.47265625,0.55078125,0.6337890625,0.7431640625,0.8369140625,0.869140625,0.8291015625,0.75,0.673828125,0.6064453125,0.5595703125,0.5380859375,0.529296875,0.517578125,0.484375,0.4287109375,0.3671875,0.3095703125,0.275390625,0.2734375,0.296875,0.3193359375,0.3251953125,0.3271484375,0.3330078125,0.3408203125,0.7373046875,0.6845703125,0.619140625,0.5634765625,0.5302734375,0.505859375,0.490234375,0.4853515625,0.48828125,0.4912109375,0.4853515625,0.46875,0.447265625,0.4248046875,0.427734375,0.4775390625,0.5654296875,0.6611328125,0.740234375,0.8046875,0.8271484375,0.775390625,0.6572265625,0.5146484375,0.408203125,0.3642578125,0.353515625,0.40625,0.5185546875,0.6484375,0.744140625,0.771484375,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.2353515625,0.2314453125,0.26953125,0.353515625,0.4580078125,0.548828125,0.6044921875,0.64453125,0.650390625,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.2333984375,0.2158203125,0.2197265625,0.2509765625,0.2978515625,0.33984375,0.3642578125,0.3955078125,0.4677734375,0.5546875,0.61328125,0.6162109375,0.568359375,0.5,0.4384765625,0.4248046875,0.46875,0.546875,0.615234375,0.63671875,0.6044921875,0.55078125,0.4755859375,0.40234375,0.3671875,0.37890625,0.421875,0.46875,0.52734375,0.6220703125,0.720703125,0.775390625,0.765625,0.70703125,0.634765625,0.5595703125,0.478515625,0.421875,0.4140625,0.4482421875,0.4970703125,0.5302734375,0.564453125,0.6220703125,0.673828125,0.6845703125,0.6455078125,0.5732421875,0.5,0.4208984375,0.3232421875,0.2373046875,0.1923828125,0.197265625,0.228515625,0.2587890625,0.2841796875,0.310546875,0.341796875,0.3828125,0.4326171875,0.4833984375,0.5302734375,0.5849609375,0.669921875,0.7587890625,0.814453125,0.8193359375,0.78515625,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.5556640625,0.49609375,0.4306640625,0.369140625,0.3212890625,0.2861328125,0.2587890625,0.25,0.3046875,0.4140625,0.52734375,0.59375,0.58984375,0.5302734375,0.4599609375,0.4091796875,0.4052734375,0.455078125,0.5361328125,0.6044921875,0.634765625,0.662109375,0.71484375,0.775390625,0.814453125,0.8154296875,0.7841796875,0.740234375,0.681640625,0.580078125,0.4609375,0.369140625,0.3349609375,0.3515625,0.39453125,0.4462890625,0.5146484375,0.57421875,0.59375,0.568359375,0.517578125,0.46875,0.4169921875,0.3427734375,0.267578125,0.2197265625,0.2119140625,0.2314453125,0.2587890625,0.2958984375,0.3720703125,0.474609375,0.5712890625,0.6318359375,0.6484375,0.634765625,0.619140625,0.6181640625,0.6376953125,0.673828125,0.7109375,0.7353515625,0.740234375,0.7333984375,0.701171875,0.640625,0.568359375,0.5087890625,0.4755859375,0.46875,0.4853515625,0.5595703125,0.673828125,0.775390625,0.8232421875,0.8037109375,0.740234375,0.6689453125,0.6005859375,0.5439453125,0.501953125,0.4697265625,0.4365234375,0.39453125,0.3515625,0.3349609375,0.369140625,0.4609375,0.580078125,0.681640625,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.2548828125,0.24609375,0.25390625,0.294921875,0.3681640625,0.4541015625,0.5302734375,0.5966796875,0.6318359375,0.6044921875,0.513671875,0.39453125,0.30078125,0.2587890625,0.2353515625,0.2314453125,0.26953125,0.353515625,0.4580078125,0.548828125,0.6044921875,0.646484375,0.6728515625,0.673828125,0.654296875,0.630859375,0.6220703125,0.634765625,0.6376953125,0.5810546875,0.4775390625,0.375,0.3203125,0.3330078125,0.39453125,0.474609375,0.568359375,0.634765625,0.634765625,0.568359375,0.474609375,0.39453125,0.3330078125,0.322265625,0.3857421875,0.5078125,0.638671875,0.7216796875,0.740234375,0.7294921875,0.6767578125,0.5849609375,0.4853515625,0.412109375,0.3837890625,0.39453125,0.4248046875,0.49609375,0.595703125,0.6904296875,0.7490234375,0.7607421875,0.740234375,0.7158203125,0.697265625,0.6796875,0.654296875,0.6181640625,0.5751953125,0.5302734375,0.482421875,0.43359375,0.4052734375,0.4140625,0.4521484375,0.498046875,0.5302734375,0.5458984375,0.5224609375,0.4638671875,0.3974609375,0.35546875,0.357421875,0.39453125,0.4453125,0.509765625,0.568359375,0.5966796875,0.587890625,0.55859375,0.5302734375,0.498046875,0.451171875,0.40234375,0.3701171875,0.3623046875,0.375,0.39453125,0.421875,0.48046875,0.5576171875,0.6240234375,0.6591796875,0.6572265625,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.6259765625,0.650390625,0.693359375,0.7236328125,0.7177734375,0.6728515625,0.6044921875,0.525390625,0.4287109375,0.341796875,0.2978515625,0.3017578125,0.333984375,0.3642578125,0.3896484375,0.4140625,0.4365234375,0.4580078125,0.4794921875,0.50390625,0.5302734375,0.55859375,0.5888671875,0.607421875,0.6044921875,0.5810546875,0.5517578125,0.5302734375,0.509765625,0.494140625,0.494140625,0.5185546875,0.5615234375,0.6044921875,0.634765625,0.66015625,0.6748046875,0.662109375,0.619140625,0.556640625,0.501953125,0.46875,0.4521484375,0.46484375,0.4970703125,0.5185546875,0.5087890625,0.4619140625,0.39453125,0.333984375,0.326171875,0.3857421875,0.4912109375,0.59375,0.6455078125,0.634765625,0.595703125,0.5185546875,0.4306640625,0.375,0.3779296875,0.4296875,0.5,0.560546875,0.57421875,0.5302734375,0.4521484375,0.3837890625,0.3623046875,0.39453125,0.4404296875,0.4892578125,0.541015625,0.59375,0.6455078125,0.6943359375,0.740234375,0.7841796875,0.8173828125,0.826171875,0.806640625,0.7724609375,0.74609375,0.740234375,0.7216796875,0.638671875,0.5078125,0.3857421875,0.322265625,0.3330078125,0.39453125,0.47265625,0.56640625,0.6572265625,0.7177734375,0.7421875,0.7421875,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.228515625,0.2646484375,0.3779296875,0.5322265625,0.669921875,0.7412109375,0.740234375,0.7294921875,0.744140625,0.7705078125,0.78125,0.7587890625,0.7041015625,0.634765625,0.5546875,0.45703125,0.3828125,0.375,0.435546875,0.525390625,0.6044921875,0.6875,0.7978515625,0.89453125,0.9306640625,0.89453125,0.81640625,0.740234375,0.669921875,0.611328125,0.5712890625,0.5498046875,0.5341796875,0.509765625,0.46875,0.419921875,0.361328125,0.306640625,0.26953125,0.2568359375,0.2578125,0.2587890625,0.2626953125,0.2783203125,0.2978515625,0.6708984375,0.626953125,0.572265625,0.5166015625,0.46875,0.423828125,0.38671875,0.3779296875,0.4052734375,0.4560546875,0.50390625,0.5302734375,0.54296875,0.541015625,0.5380859375,0.5546875,0.6015625,0.66796875,0.740234375,0.8076171875,0.8447265625,0.814453125,0.7119140625,0.5732421875,0.4560546875,0.39453125,0.3623046875,0.3857421875,0.474609375,0.5966796875,0.7021484375,0.7509765625,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.2197265625,0.216796875,0.2734375,0.3798828125,0.5029296875,0.5947265625,0.634765625,0.658203125,0.658203125,0.61328125,0.521484375,0.4091796875,0.3154296875,0.2587890625,0.220703125,0.21484375,0.2509765625,0.3134765625,0.3740234375,0.4033203125,0.39453125,0.388671875,0.4287109375,0.501953125,0.568359375,0.5927734375,0.564453125,0.5,0.4365234375,0.416015625,0.4521484375,0.5302734375,0.6083984375,0.6474609375,0.634765625,0.603515625,0.5556640625,0.5078125,0.48046875,0.4814453125,0.5029296875,0.5302734375,0.5673828125,0.6376953125,0.7119140625,0.7509765625,0.7353515625,0.6767578125,0.6044921875,0.525390625,0.4296875,0.3525390625,0.328125,0.359375,0.41796875,0.46875,0.5244140625,0.6025390625,0.6708984375,0.6904296875,0.650390625,0.5751953125,0.5,0.41796875,0.3095703125,0.208984375,0.15625,0.1650390625,0.2109375,0.2587890625,0.3046875,0.34765625,0.3828125,0.408203125,0.4267578125,0.4453125,0.46875,0.5048828125,0.572265625,0.6572265625,0.728515625,0.7646484375,0.7626953125,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.6064453125,0.568359375,0.513671875,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.2294921875,0.263671875,0.35546875,0.4609375,0.5283203125,0.52734375,0.46875,0.4052734375,0.3798828125,0.4111328125,0.4853515625,0.5654296875,0.6103515625,0.6044921875,0.5927734375,0.611328125,0.6572265625,0.7119140625,0.751953125,0.759765625,0.740234375,0.7021484375,0.6220703125,0.513671875,0.4140625,0.3544921875,0.34375,0.3642578125,0.3974609375,0.4521484375,0.513671875,0.5576171875,0.5703125,0.5556640625,0.5302734375,0.4912109375,0.4130859375,0.3134765625,0.234375,0.2021484375,0.2177734375,0.2587890625,0.30859375,0.3720703125,0.4443359375,0.5078125,0.5546875,0.583984375,0.6044921875,0.6259765625,0.65625,0.6904296875,0.7177734375,0.734375,0.7392578125,0.740234375,0.7353515625,0.7099609375,0.6630859375,0.607421875,0.560546875,0.53515625,0.5302734375,0.544921875,0.6123046875,0.7119140625,0.7978515625,0.83203125,0.8046875,0.740234375,0.6650390625,0.58203125,0.5048828125,0.447265625,0.412109375,0.388671875,0.3642578125,0.34375,0.3544921875,0.4140625,0.513671875,0.6220703125,0.7021484375,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.25390625,0.2373046875,0.2314453125,0.2568359375,0.31640625,0.39453125,0.46875,0.5400390625,0.59375,0.59375,0.52734375,0.41796875,0.318359375,0.2587890625,0.2197265625,0.216796875,0.2734375,0.3798828125,0.5029296875,0.5947265625,0.634765625,0.662109375,0.689453125,0.701171875,0.6904296875,0.66015625,0.626953125,0.6044921875,0.5703125,0.486328125,0.375,0.2890625,0.2626953125,0.296875,0.3642578125,0.443359375,0.5380859375,0.6044921875,0.6044921875,0.5380859375,0.443359375,0.3642578125,0.302734375,0.2958984375,0.3671875,0.4970703125,0.6337890625,0.7216796875,0.740234375,0.734375,0.69921875,0.6298828125,0.5380859375,0.451171875,0.3916015625,0.3642578125,0.3603515625,0.4189453125,0.533203125,0.6591796875,0.7490234375,0.7724609375,0.740234375,0.693359375,0.642578125,0.59375,0.5517578125,0.5205078125,0.4951171875,0.46875,0.4375,0.3916015625,0.3525390625,0.3447265625,0.373046875,0.421875,0.46875,0.5068359375,0.51171875,0.4775390625,0.4189453125,0.3671875,0.3466796875,0.3642578125,0.3984375,0.45703125,0.5185546875,0.5546875,0.5498046875,0.5146484375,0.46875,0.4248046875,0.390625,0.373046875,0.3720703125,0.37890625,0.37890625,0.3642578125,0.357421875,0.3994140625,0.4833984375,0.57421875,0.6337890625,0.640625,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.6337890625,0.693359375,0.7568359375,0.787109375,0.7666015625,0.70703125,0.634765625,0.5537109375,0.4453125,0.3447265625,0.2919921875,0.30078125,0.345703125,0.39453125,0.43359375,0.4501953125,0.44140625,0.4228515625,0.4140625,0.4296875,0.46875,0.5107421875,0.533203125,0.52734375,0.5,0.4697265625,0.45703125,0.46875,0.484375,0.48828125,0.48828125,0.4970703125,0.521484375,0.5595703125,0.6044921875,0.6533203125,0.7041015625,0.7294921875,0.708984375,0.650390625,0.58203125,0.5302734375,0.4921875,0.48046875,0.48828125,0.494140625,0.4775390625,0.431640625,0.3642578125,0.306640625,0.3095703125,0.3837890625,0.4970703125,0.595703125,0.6328125,0.6044921875,0.5478515625,0.4609375,0.375,0.3359375,0.3603515625,0.42578125,0.5,0.5625,0.5830078125,0.546875,0.46875,0.390625,0.3515625,0.3642578125,0.39453125,0.4443359375,0.513671875,0.5908203125,0.66015625,0.708984375,0.740234375,0.765625,0.78515625,0.7900390625,0.7783203125,0.7587890625,0.744140625,0.740234375,0.7216796875,0.6337890625,0.4970703125,0.3671875,0.2958984375,0.302734375,0.3642578125,0.4423828125,0.541015625,0.6376953125,0.70703125,0.7373046875,0.7412109375,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.2421875,0.26953125,0.3583984375,0.48828125,0.619140625,0.70703125,0.740234375,0.765625,0.8046875,0.8310546875,0.8173828125,0.759765625,0.6796875,0.6044921875,0.525390625,0.435546875,0.375,0.3828125,0.45703125,0.5546875,0.634765625,0.716796875,0.82421875,0.9140625,0.9423828125,0.8984375,0.8173828125,0.740234375,0.6689453125,0.6064453125,0.56640625,0.5517578125,0.5537109375,0.55078125,0.5302734375,0.498046875,0.4453125,0.3798828125,0.3203125,0.279296875,0.26171875,0.2587890625,0.265625,0.2919921875,0.3251953125,0.5771484375,0.560546875,0.5322265625,0.4873046875,0.4287109375,0.365234375,0.30859375,0.2900390625,0.33203125,0.4189453125,0.5087890625,0.5703125,0.6123046875,0.6201171875,0.599609375,0.57421875,0.5732421875,0.6083984375,0.673828125,0.74609375,0.806640625,0.8154296875,0.751953125,0.63671875,0.5224609375,0.4482421875,0.39453125,0.3837890625,0.4296875,0.5205078125,0.6142578125,0.669921875,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.271484375,0.2568359375,0.3037109375,0.4033203125,0.5166015625,0.595703125,0.6220703125,0.6337890625,0.640625,0.6220703125,0.5654296875,0.48046875,0.3935546875,0.3251953125,0.2763671875,0.275390625,0.3291015625,0.4091796875,0.47265625,0.486328125,0.4482421875,0.4091796875,0.419921875,0.4755859375,0.541015625,0.5771484375,0.560546875,0.5,0.43359375,0.40234375,0.423828125,0.4912109375,0.5703125,0.619140625,0.6220703125,0.609375,0.5888671875,0.568359375,0.5546875,0.552734375,0.5595703125,0.5703125,0.58984375,0.63671875,0.6875,0.708984375,0.68359375,0.623046875,0.55078125,0.4697265625,0.3671875,0.28125,0.2529296875,0.2900390625,0.3623046875,0.4287109375,0.5,0.595703125,0.67578125,0.69921875,0.6552734375,0.576171875,0.5,0.4169921875,0.3076171875,0.2099609375,0.1689453125,0.1943359375,0.259765625,0.3251953125,0.38671875,0.4375,0.4638671875,0.4609375,0.4404296875,0.4248046875,0.4287109375,0.4462890625,0.4892578125,0.5537109375,0.6181640625,0.6630859375,0.6796875,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.61328125,0.60546875,0.5830078125,0.53515625,0.4658203125,0.390625,0.3251953125,0.2783203125,0.2880859375,0.3525390625,0.4365234375,0.4921875,0.48828125,0.4287109375,0.369140625,0.361328125,0.4130859375,0.4970703125,0.568359375,0.587890625,0.55078125,0.505859375,0.4892578125,0.5146484375,0.5732421875,0.63671875,0.673828125,0.673828125,0.6552734375,0.60546875,0.529296875,0.451171875,0.39453125,0.373046875,0.376953125,0.3935546875,0.4306640625,0.4833984375,0.5341796875,0.5673828125,0.5771484375,0.5703125,0.5458984375,0.47265625,0.37109375,0.2841796875,0.2490234375,0.2705078125,0.3251953125,0.3837890625,0.42578125,0.4501953125,0.4619140625,0.4755859375,0.5048828125,0.55078125,0.603515625,0.6552734375,0.6923828125,0.703125,0.6923828125,0.677734375,0.673828125,0.6708984375,0.658203125,0.6357421875,0.6083984375,0.5849609375,0.572265625,0.5703125,0.58203125,0.63671875,0.712890625,0.7705078125,0.7802734375,0.7412109375,0.673828125,0.5986328125,0.515625,0.4443359375,0.400390625,0.3857421875,0.384765625,0.376953125,0.373046875,0.39453125,0.451171875,0.529296875,0.60546875,0.6552734375,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.318359375,0.2890625,0.2587890625,0.255859375,0.2919921875,0.3564453125,0.4287109375,0.5048828125,0.580078125,0.6162109375,0.5849609375,0.4970703125,0.3974609375,0.3251953125,0.271484375,0.2568359375,0.3037109375,0.4033203125,0.5166015625,0.595703125,0.6220703125,0.6376953125,0.666015625,0.6904296875,0.6884765625,0.6552734375,0.603515625,0.55078125,0.4873046875,0.3876953125,0.2861328125,0.2314453125,0.2431640625,0.3046875,0.376953125,0.45703125,0.55078125,0.6181640625,0.6181640625,0.55078125,0.45703125,0.376953125,0.314453125,0.2978515625,0.3505859375,0.458984375,0.5791015625,0.65625,0.673828125,0.673828125,0.6669921875,0.638671875,0.58203125,0.5068359375,0.43359375,0.376953125,0.3427734375,0.3779296875,0.4794921875,0.60546875,0.6982421875,0.71875,0.673828125,0.609375,0.541015625,0.482421875,0.4482421875,0.4375,0.4365234375,0.4287109375,0.41015625,0.3671875,0.3193359375,0.2978515625,0.3173828125,0.3681640625,0.4287109375,0.486328125,0.5185546875,0.5107421875,0.466796875,0.4111328125,0.376953125,0.376953125,0.3974609375,0.4462890625,0.505859375,0.541015625,0.533203125,0.4892578125,0.4287109375,0.375,0.353515625,0.369140625,0.40234375,0.427734375,0.419921875,0.376953125,0.33984375,0.359375,0.4345703125,0.5283203125,0.59375,0.599609375,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.6123046875,0.7001953125,0.7783203125,0.8056640625,0.7705078125,0.697265625,0.6220703125,0.5390625,0.4296875,0.33203125,0.291015625,0.31640625,0.3818359375,0.4482421875,0.4990234375,0.505859375,0.466796875,0.41015625,0.37109375,0.3779296875,0.4287109375,0.4814453125,0.4970703125,0.4697265625,0.4228515625,0.38671875,0.3876953125,0.4287109375,0.47265625,0.4892578125,0.48046875,0.46484375,0.4658203125,0.49609375,0.55078125,0.6201171875,0.7021484375,0.763671875,0.7685546875,0.7158203125,0.6376953125,0.5703125,0.515625,0.4892578125,0.48828125,0.494140625,0.4833984375,0.443359375,0.376953125,0.3203125,0.32421875,0.3955078125,0.498046875,0.5791015625,0.5966796875,0.55078125,0.48046875,0.3876953125,0.3115234375,0.29296875,0.3408203125,0.4228515625,0.5,0.5654296875,0.5966796875,0.5751953125,0.5078125,0.4287109375,0.3798828125,0.376953125,0.392578125,0.4306640625,0.490234375,0.560546875,0.6201171875,0.658203125,0.673828125,0.68359375,0.69140625,0.693359375,0.6884765625,0.6806640625,0.6748046875,0.673828125,0.65625,0.5791015625,0.458984375,0.3505859375,0.2978515625,0.314453125,0.376953125,0.4541015625,0.5419921875,0.6220703125,0.669921875,0.6826171875,0.6767578125,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.31640625,0.3212890625,0.359375,0.43359375,0.5283203125,0.6142578125,0.673828125,0.73046875,0.7939453125,0.830078125,0.806640625,0.7275390625,0.630859375,0.55078125,0.47265625,0.3876953125,0.3369140625,0.35546875,0.4375,0.5400390625,0.6220703125,0.7021484375,0.802734375,0.880859375,0.89453125,0.83984375,0.751953125,0.673828125,0.6025390625,0.5439453125,0.5146484375,0.5224609375,0.55078125,0.572265625,0.5703125,0.5546875,0.5166015625,0.4609375,0.400390625,0.353515625,0.330078125,0.3251953125,0.333984375,0.3701171875,0.416015625,0.5009765625,0.5234375,0.5302734375,0.501953125,0.439453125,0.365234375,0.2880859375,0.2509765625,0.283203125,0.375,0.48046875,0.5595703125,0.6162109375,0.626953125,0.5908203125,0.537109375,0.50390625,0.5185546875,0.5791015625,0.65625,0.7392578125,0.7841796875,0.759765625,0.673828125,0.5693359375,0.4892578125,0.423828125,0.384765625,0.392578125,0.4462890625,0.5185546875,0.5693359375,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.3544921875,0.3212890625,0.33984375,0.408203125,0.494140625,0.5546875,0.5693359375,0.5771484375,0.6005859375,0.6201171875,0.609375,0.5615234375,0.4912109375,0.419921875,0.3623046875,0.359375,0.4130859375,0.490234375,0.5458984375,0.544921875,0.4892578125,0.43359375,0.42578125,0.46875,0.53125,0.5712890625,0.5595703125,0.5,0.431640625,0.388671875,0.392578125,0.44140625,0.5107421875,0.5595703125,0.5693359375,0.5673828125,0.5634765625,0.5595703125,0.5576171875,0.556640625,0.5576171875,0.5595703125,0.5693359375,0.6064453125,0.6494140625,0.666015625,0.6396484375,0.5810546875,0.509765625,0.4287109375,0.3271484375,0.24609375,0.2275390625,0.2783203125,0.36328125,0.439453125,0.51953125,0.619140625,0.69921875,0.7158203125,0.6630859375,0.5771484375,0.5,0.41796875,0.3154296875,0.232421875,0.2119140625,0.2607421875,0.34375,0.419921875,0.48828125,0.541015625,0.556640625,0.5322265625,0.484375,0.447265625,0.439453125,0.4443359375,0.4638671875,0.4970703125,0.533203125,0.5634765625,0.578125,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.57421875,0.595703125,0.6142578125,0.6044921875,0.5595703125,0.4912109375,0.419921875,0.3623046875,0.35546875,0.400390625,0.46484375,0.5087890625,0.4990234375,0.439453125,0.380859375,0.376953125,0.4296875,0.5078125,0.564453125,0.564453125,0.509765625,0.4443359375,0.404296875,0.408203125,0.4560546875,0.5224609375,0.5693359375,0.5791015625,0.57421875,0.5537109375,0.5185546875,0.4794921875,0.447265625,0.431640625,0.4296875,0.4345703125,0.4521484375,0.4833984375,0.517578125,0.544921875,0.55859375,0.5595703125,0.544921875,0.4853515625,0.40234375,0.3359375,0.3193359375,0.3544921875,0.419921875,0.48046875,0.5029296875,0.484375,0.4501953125,0.4306640625,0.4501953125,0.509765625,0.5771484375,0.6357421875,0.6640625,0.6533203125,0.6181640625,0.5869140625,0.5791015625,0.5791015625,0.576171875,0.572265625,0.56640625,0.5625,0.5595703125,0.5595703125,0.5693359375,0.6142578125,0.671875,0.70703125,0.6982421875,0.6484375,0.5791015625,0.505859375,0.4365234375,0.3916015625,0.3828125,0.40234375,0.4248046875,0.4296875,0.431640625,0.447265625,0.4794921875,0.5185546875,0.5537109375,0.57421875,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.41015625,0.37109375,0.322265625,0.296875,0.314453125,0.369140625,0.439453125,0.5185546875,0.609375,0.6708984375,0.6640625,0.59375,0.498046875,0.419921875,0.3544921875,0.3212890625,0.33984375,0.408203125,0.494140625,0.5546875,0.5693359375,0.5791015625,0.6123046875,0.650390625,0.6630859375,0.6357421875,0.5771484375,0.509765625,0.4306640625,0.330078125,0.24609375,0.2236328125,0.26953125,0.3525390625,0.4296875,0.509765625,0.603515625,0.669921875,0.669921875,0.603515625,0.509765625,0.4296875,0.36328125,0.3291015625,0.349609375,0.4189453125,0.505859375,0.5654296875,0.5791015625,0.5849609375,0.6064453125,0.6240234375,0.6142578125,0.568359375,0.5,0.4296875,0.3759765625,0.3857421875,0.4580078125,0.556640625,0.6279296875,0.634765625,0.5791015625,0.5078125,0.4404296875,0.3984375,0.3916015625,0.412109375,0.4345703125,0.439453125,0.4287109375,0.38671875,0.333984375,0.3046875,0.3193359375,0.37109375,0.439453125,0.5078125,0.556640625,0.5654296875,0.533203125,0.478515625,0.4384765625,0.4296875,0.44140625,0.484375,0.5390625,0.5703125,0.55859375,0.5078125,0.439453125,0.380859375,0.3681640625,0.404296875,0.4599609375,0.4970703125,0.486328125,0.4296875,0.375,0.375,0.4326171875,0.5126953125,0.568359375,0.56640625,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.5869140625,0.6865234375,0.765625,0.783203125,0.732421875,0.6474609375,0.5693359375,0.48828125,0.384765625,0.3017578125,0.28125,0.330078125,0.4130859375,0.4892578125,0.546875,0.55078125,0.5009765625,0.4287109375,0.3779296875,0.3828125,0.439453125,0.498046875,0.509765625,0.4716796875,0.4130859375,0.3740234375,0.3828125,0.439453125,0.498046875,0.515625,0.4921875,0.4521484375,0.4296875,0.44921875,0.509765625,0.5888671875,0.6865234375,0.7626953125,0.7763671875,0.7216796875,0.6357421875,0.5595703125,0.498046875,0.47265625,0.484375,0.509765625,0.5205078125,0.4931640625,0.4296875,0.37109375,0.369140625,0.4267578125,0.5078125,0.5654296875,0.5654296875,0.509765625,0.4306640625,0.3369140625,0.2685546875,0.2646484375,0.328125,0.419921875,0.5,0.5673828125,0.6103515625,0.6064453125,0.5576171875,0.48828125,0.439453125,0.4296875,0.4345703125,0.453125,0.4853515625,0.5234375,0.5556640625,0.57421875,0.5791015625,0.5810546875,0.58203125,0.58203125,0.58203125,0.580078125,0.5791015625,0.5791015625,0.5654296875,0.505859375,0.4189453125,0.349609375,0.3291015625,0.36328125,0.4296875,0.5029296875,0.5732421875,0.6201171875,0.62890625,0.609375,0.5859375,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.412109375,0.390625,0.375,0.388671875,0.4384765625,0.5087890625,0.5791015625,0.654296875,0.7373046875,0.7880859375,0.7705078125,0.69140625,0.5908203125,0.509765625,0.4306640625,0.3447265625,0.291015625,0.306640625,0.38671875,0.48828125,0.5693359375,0.6494140625,0.744140625,0.8134765625,0.81640625,0.751953125,0.6591796875,0.5791015625,0.5087890625,0.455078125,0.4384765625,0.46484375,0.513671875,0.5517578125,0.5595703125,0.5546875,0.5361328125,0.5048828125,0.46875,0.4384765625,0.4228515625,0.419921875,0.4296875,0.470703125,0.5224609375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.4521484375,0.552734375,0.6259765625,0.6337890625,0.5791015625,0.498046875,0.38671875,0.28515625,0.2431640625,0.2734375,0.345703125,0.419921875,0.478515625,0.4931640625,0.458984375,0.40625,0.37109375,0.3828125,0.439453125,0.517578125,0.6171875,0.697265625,0.716796875,0.66796875,0.5859375,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5078125,0.439453125,0.39453125,0.384765625,0.4033203125,0.4248046875,0.4296875,0.44140625,0.4990234375,0.583984375,0.654296875,0.67578125,0.6435546875,0.5791015625,0.5185546875,0.49609375,0.5146484375,0.548828125,0.568359375,0.548828125,0.4892578125,0.4326171875,0.423828125,0.4638671875,0.5244140625,0.5654296875,0.556640625,0.5,0.4306640625,0.3701171875,0.3388671875,0.345703125,0.37890625,0.41015625,0.419921875,0.4208984375,0.421875,0.4208984375,0.4189453125,0.41796875,0.41796875,0.419921875,0.43359375,0.4873046875,0.5615234375,0.6142578125,0.6201171875,0.5771484375,0.509765625,0.4306640625,0.3427734375,0.287109375,0.30078125,0.3779296875,0.478515625,0.5595703125,0.6376953125,0.724609375,0.779296875,0.765625,0.6875,0.5888671875,0.509765625,0.43359375,0.349609375,0.298828125,0.3154296875,0.3935546875,0.4912109375,0.5693359375,0.6357421875,0.6845703125,0.6943359375,0.6630859375,0.6103515625,0.5693359375,0.5595703125,0.556640625,0.541015625,0.5126953125,0.48046875,0.4541015625,0.4404296875,0.439453125,0.4443359375,0.4609375,0.4892578125,0.5205078125,0.5458984375,0.55859375,0.5595703125,0.546875,0.498046875,0.4326171875,0.3896484375,0.3935546875,0.4404296875,0.509765625,0.5771484375,0.6201171875,0.6142578125,0.5615234375,0.4873046875,0.43359375,0.419921875,0.4306640625,0.4873046875,0.5703125,0.6376953125,0.6572265625,0.6240234375,0.5595703125,0.5009765625,0.4892578125,0.52734375,0.5859375,0.625,0.6162109375,0.5595703125,0.5009765625,0.486328125,0.5146484375,0.5595703125,0.5869140625,0.5693359375,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.564453125,0.548828125,0.5205078125,0.48828125,0.4599609375,0.4443359375,0.439453125,0.431640625,0.40625,0.384765625,0.3935546875,0.4384765625,0.5078125,0.5791015625,0.63671875,0.6396484375,0.5859375,0.5087890625,0.453125,0.4541015625,0.509765625,0.57421875,0.61328125,0.6064453125,0.5556640625,0.4873046875,0.439453125,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.4287109375,0.4697265625,0.525390625,0.5595703125,0.548828125,0.4990234375,0.4296875,0.36328125,0.326171875,0.3427734375,0.41015625,0.494140625,0.5546875,0.5693359375,0.568359375,0.552734375,0.5234375,0.486328125,0.4541015625,0.4345703125,0.4296875,0.431640625,0.447265625,0.4765625,0.5126953125,0.5419921875,0.5576171875,0.5595703125,0.5478515625,0.5048828125,0.451171875,0.421875,0.435546875,0.4892578125,0.5595703125,0.6396484375,0.734375,0.8037109375,0.806640625,0.7421875,0.6484375,0.5693359375,0.49609375,0.423828125,0.3759765625,0.3662109375,0.38671875,0.412109375,0.419921875,0.43359375,0.486328125,0.55859375,0.611328125,0.6171875,0.576171875,0.509765625,0.43359375,0.349609375,0.298828125,0.3154296875,0.3935546875,0.4912109375,0.5693359375,0.6455078125,0.7353515625,0.798828125,0.798828125,0.7353515625,0.6455078125,0.5693359375,0.4990234375,0.4296875,0.3828125,0.37109375,0.3896484375,0.412109375,0.419921875,0.4345703125,0.49609375,0.5830078125,0.65234375,0.6708984375,0.6357421875,0.5693359375,0.505859375,0.4765625,0.482421875,0.5048828125,0.5146484375,0.4892578125,0.4296875,0.3662109375,0.3310546875,0.345703125,0.408203125,0.48828125,0.544921875,0.5595703125,0.55078125,0.51171875,0.4609375,0.4326171875,0.447265625,0.5,0.5693359375,0.6396484375,0.6923828125,0.70703125,0.677734375,0.6240234375,0.5810546875,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.5126953125,0.505859375,0.548828125,0.6103515625,0.650390625,0.6396484375,0.5791015625,0.517578125,0.49609375,0.515625,0.552734375,0.5732421875,0.5517578125,0.4892578125,0.41015625,0.3193359375,0.2578125,0.26171875,0.330078125,0.4228515625,0.5,0.57421875,0.658203125,0.708984375,0.6943359375,0.6171875,0.5185546875,0.439453125,0.36328125,0.27734375,0.224609375,0.2392578125,0.318359375,0.4189453125,0.5,0.5615234375,0.5810546875,0.556640625,0.513671875,0.4853515625,0.5009765625,0.5595703125,0.6171875,0.6298828125,0.595703125,0.54296875,0.5087890625,0.521484375,0.5791015625,0.634765625,0.634765625,0.5791015625,0.5,0.443359375,0.4443359375,0.5,0.57421875,0.6552734375,0.703125,0.6845703125,0.60546875,0.5078125,0.4296875,0.3759765625,0.3828125,0.451171875,0.5439453125,0.6103515625,0.615234375,0.5595703125,0.4990234375,0.4794921875,0.501953125,0.5419921875,0.5654296875,0.5478515625,0.4892578125,0.4140625,0.3251953125,0.263671875,0.2666015625,0.33203125,0.4228515625,0.5,0.568359375,0.62890625,0.66015625,0.6533203125,0.6201171875,0.5888671875,0.5791015625,0.57421875,0.5537109375,0.5185546875,0.4794921875,0.447265625,0.431640625,0.4296875,0.431640625,0.4326171875,0.4345703125,0.435546875,0.4365234375,0.4384765625,0.439453125,0.4345703125,0.412109375,0.390625,0.39453125,0.435546875,0.5,0.5693359375,0.6328125,0.6669921875,0.6494140625,0.583984375,0.501953125,0.4443359375,0.4296875,0.431640625,0.4482421875,0.48046875,0.5185546875,0.55078125,0.5673828125,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.4296875,0.3291015625,0.248046875,0.2275390625,0.2744140625,0.35546875,0.4296875,0.505859375,0.59375,0.6552734375,0.65234375,0.5869140625,0.49609375,0.419921875,0.353515625,0.306640625,0.2978515625,0.33203125,0.3876953125,0.4296875,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.5888671875,0.626953125,0.6748046875,0.447265625,0.5869140625,0.6904296875,0.7177734375,0.673828125,0.5966796875,0.474609375,0.33984375,0.248046875,0.2275390625,0.265625,0.3251953125,0.380859375,0.408203125,0.4052734375,0.384765625,0.37109375,0.3857421875,0.4287109375,0.490234375,0.578125,0.66015625,0.697265625,0.6748046875,0.615234375,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6083984375,0.533203125,0.4638671875,0.416015625,0.3935546875,0.3857421875,0.376953125,0.3828125,0.4462890625,0.556640625,0.6650390625,0.7275390625,0.724609375,0.673828125,0.615234375,0.5732421875,0.548828125,0.537109375,0.5234375,0.494140625,0.4482421875,0.40625,0.4052734375,0.4453125,0.501953125,0.5419921875,0.541015625,0.5,0.4443359375,0.3798828125,0.32421875,0.294921875,0.296875,0.3125,0.3251953125,0.333984375,0.3359375,0.330078125,0.3212890625,0.3154296875,0.3173828125,0.3251953125,0.3505859375,0.427734375,0.533203125,0.619140625,0.6484375,0.6171875,0.55078125,0.4716796875,0.3798828125,0.3173828125,0.322265625,0.3935546875,0.490234375,0.5703125,0.6474609375,0.7333984375,0.7880859375,0.779296875,0.7099609375,0.62109375,0.55078125,0.486328125,0.419921875,0.38671875,0.4091796875,0.48046875,0.5615234375,0.6220703125,0.669921875,0.701171875,0.69921875,0.6640625,0.6142578125,0.578125,0.5703125,0.5654296875,0.5419921875,0.5029296875,0.4609375,0.431640625,0.421875,0.4287109375,0.443359375,0.474609375,0.515625,0.552734375,0.5751953125,0.578125,0.5703125,0.5498046875,0.498046875,0.4384765625,0.4072265625,0.423828125,0.48046875,0.55078125,0.6171875,0.6484375,0.619140625,0.533203125,0.427734375,0.3505859375,0.3251953125,0.330078125,0.3876953125,0.486328125,0.5810546875,0.6318359375,0.623046875,0.5703125,0.517578125,0.501953125,0.529296875,0.576171875,0.6123046875,0.611328125,0.5703125,0.5283203125,0.5244140625,0.556640625,0.599609375,0.6220703125,0.6044921875,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6083984375,0.583984375,0.546875,0.50390625,0.466796875,0.4423828125,0.4287109375,0.416015625,0.40234375,0.4091796875,0.4521484375,0.5263671875,0.6064453125,0.673828125,0.72265625,0.7236328125,0.669921875,0.58984375,0.5263671875,0.5126953125,0.55078125,0.595703125,0.60546875,0.568359375,0.49609375,0.421875,0.3779296875,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3271484375,0.3671875,0.4296875,0.478515625,0.484375,0.4443359375,0.376953125,0.3115234375,0.283203125,0.31640625,0.4072265625,0.5166015625,0.595703125,0.6220703125,0.6279296875,0.611328125,0.56640625,0.501953125,0.4375,0.39453125,0.376953125,0.373046875,0.39453125,0.443359375,0.50390625,0.552734375,0.57421875,0.5703125,0.5498046875,0.5009765625,0.4453125,0.4189453125,0.4404296875,0.4990234375,0.5703125,0.6513671875,0.7509765625,0.830078125,0.8427734375,0.7880859375,0.7001953125,0.6220703125,0.5439453125,0.44921875,0.3623046875,0.3095703125,0.298828125,0.3125,0.3251953125,0.349609375,0.419921875,0.5185546875,0.599609375,0.630859375,0.607421875,0.55078125,0.486328125,0.419921875,0.38671875,0.4091796875,0.48046875,0.5615234375,0.6220703125,0.6787109375,0.7451171875,0.79296875,0.79296875,0.7451171875,0.6787109375,0.6220703125,0.5634765625,0.484375,0.4013671875,0.33984375,0.314453125,0.3154296875,0.3251953125,0.3525390625,0.4375,0.5595703125,0.6630859375,0.708984375,0.685546875,0.6220703125,0.5537109375,0.5009765625,0.470703125,0.4580078125,0.4482421875,0.4228515625,0.376953125,0.3310546875,0.310546875,0.3369140625,0.4052734375,0.4873046875,0.548828125,0.5703125,0.5712890625,0.5439453125,0.50390625,0.482421875,0.4990234375,0.5517578125,0.6220703125,0.693359375,0.7509765625,0.7724609375,0.74609375,0.69140625,0.6416015625,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.5830078125,0.59375,0.6494140625,0.71484375,0.7509765625,0.734375,0.673828125,0.6083984375,0.5703125,0.5595703125,0.5615234375,0.55078125,0.5126953125,0.4482421875,0.3720703125,0.296875,0.2568359375,0.279296875,0.353515625,0.4384765625,0.5,0.5556640625,0.6201171875,0.66015625,0.6455078125,0.580078125,0.4970703125,0.4287109375,0.361328125,0.283203125,0.234375,0.248046875,0.3232421875,0.419921875,0.5,0.5634765625,0.5947265625,0.5859375,0.552734375,0.5244140625,0.5283203125,0.5703125,0.615234375,0.634765625,0.6298828125,0.6142578125,0.6083984375,0.62890625,0.673828125,0.7119140625,0.6982421875,0.630859375,0.5419921875,0.474609375,0.4609375,0.5,0.5537109375,0.60546875,0.6259765625,0.5927734375,0.5185546875,0.4365234375,0.376953125,0.3408203125,0.3623046875,0.44140625,0.5400390625,0.6103515625,0.6181640625,0.5703125,0.5146484375,0.484375,0.484375,0.4990234375,0.5078125,0.4921875,0.4482421875,0.392578125,0.33203125,0.2958984375,0.3095703125,0.3681640625,0.44140625,0.5,0.5546875,0.619140625,0.6748046875,0.7041015625,0.7021484375,0.6865234375,0.673828125,0.6552734375,0.60546875,0.529296875,0.451171875,0.39453125,0.373046875,0.376953125,0.38671875,0.39453125,0.400390625,0.4052734375,0.4111328125,0.4189453125,0.4287109375,0.4365234375,0.4375,0.4443359375,0.4697265625,0.5146484375,0.5693359375,0.6220703125,0.6669921875,0.6806640625,0.6435546875,0.5615234375,0.466796875,0.400390625,0.376953125,0.3740234375,0.40234375,0.462890625,0.5361328125,0.5966796875,0.625,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.48046875,0.384765625,0.296875,0.2548828125,0.271484375,0.3232421875,0.376953125,0.4326171875,0.4931640625,0.529296875,0.515625,0.45703125,0.3837890625,0.3251953125,0.2783203125,0.25390625,0.267578125,0.31640625,0.376953125,0.419921875,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.6796875,0.7021484375,0.7255859375,0.466796875,0.62109375,0.734375,0.7705078125,0.740234375,0.6787109375,0.560546875,0.4111328125,0.2841796875,0.21875,0.2197265625,0.2587890625,0.3056640625,0.3525390625,0.39453125,0.4228515625,0.439453125,0.4521484375,0.46875,0.4970703125,0.5537109375,0.62109375,0.66796875,0.67578125,0.6484375,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.6904296875,0.626953125,0.5546875,0.4853515625,0.4306640625,0.392578125,0.3642578125,0.353515625,0.40625,0.5185546875,0.6484375,0.744140625,0.771484375,0.740234375,0.6904296875,0.626953125,0.5546875,0.4912109375,0.4443359375,0.4150390625,0.39453125,0.380859375,0.390625,0.4248046875,0.46875,0.5029296875,0.5126953125,0.5,0.4716796875,0.4130859375,0.3369140625,0.26953125,0.2353515625,0.236328125,0.2587890625,0.28125,0.28515625,0.2705078125,0.248046875,0.2333984375,0.2373046875,0.2587890625,0.302734375,0.4052734375,0.541015625,0.6513671875,0.6953125,0.669921875,0.6044921875,0.5234375,0.419921875,0.3369140625,0.31640625,0.3671875,0.4521484375,0.5302734375,0.607421875,0.6953125,0.7587890625,0.767578125,0.72265625,0.6572265625,0.6044921875,0.55859375,0.5185546875,0.501953125,0.521484375,0.5654296875,0.609375,0.634765625,0.6513671875,0.65234375,0.6318359375,0.5966796875,0.55859375,0.53515625,0.5302734375,0.5244140625,0.501953125,0.46875,0.44140625,0.4326171875,0.4453125,0.46875,0.5,0.5419921875,0.580078125,0.595703125,0.5849609375,0.5576171875,0.5302734375,0.49609375,0.4443359375,0.40234375,0.4033203125,0.4521484375,0.529296875,0.6044921875,0.669921875,0.6953125,0.6513671875,0.541015625,0.4052734375,0.302734375,0.2587890625,0.24609375,0.2861328125,0.375,0.4775390625,0.548828125,0.564453125,0.5302734375,0.48828125,0.4658203125,0.4716796875,0.4990234375,0.529296875,0.5419921875,0.5302734375,0.51953125,0.541015625,0.587890625,0.634765625,0.6572265625,0.64453125,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.609375,0.5849609375,0.5625,0.541015625,0.51953125,0.4951171875,0.46875,0.443359375,0.4306640625,0.4521484375,0.5166015625,0.6044921875,0.685546875,0.740234375,0.7783203125,0.7841796875,0.748046875,0.685546875,0.625,0.595703125,0.6044921875,0.6142578125,0.5830078125,0.513671875,0.4306640625,0.3671875,0.3466796875,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.24609375,0.28125,0.3525390625,0.421875,0.4521484375,0.427734375,0.3642578125,0.296875,0.26171875,0.2900390625,0.3798828125,0.4990234375,0.5927734375,0.634765625,0.658203125,0.66015625,0.6240234375,0.5517578125,0.466796875,0.3994140625,0.3642578125,0.345703125,0.3623046875,0.4140625,0.48046875,0.5322265625,0.5478515625,0.5302734375,0.494140625,0.43359375,0.375,0.35546875,0.388671875,0.4560546875,0.5302734375,0.6123046875,0.71875,0.8095703125,0.8369140625,0.7939453125,0.7119140625,0.634765625,0.552734375,0.439453125,0.322265625,0.2421875,0.216796875,0.232421875,0.2587890625,0.298828125,0.38671875,0.501953125,0.6015625,0.650390625,0.64453125,0.6044921875,0.55859375,0.5185546875,0.501953125,0.521484375,0.5654296875,0.609375,0.634765625,0.65625,0.6806640625,0.6982421875,0.6982421875,0.6806640625,0.65625,0.634765625,0.6044921875,0.529296875,0.421875,0.3193359375,0.2548828125,0.2392578125,0.2587890625,0.3037109375,0.41015625,0.5517578125,0.6708984375,0.7216796875,0.69921875,0.634765625,0.5615234375,0.4873046875,0.427734375,0.39453125,0.3837890625,0.37890625,0.3642578125,0.345703125,0.3369140625,0.3505859375,0.3916015625,0.447265625,0.498046875,0.5302734375,0.5478515625,0.5380859375,0.513671875,0.5,0.5166015625,0.56640625,0.634765625,0.7080078125,0.7763671875,0.8095703125,0.7900390625,0.7314453125,0.6708984375,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.62890625,0.669921875,0.7431640625,0.8095703125,0.8330078125,0.8046875,0.740234375,0.671875,0.619140625,0.5830078125,0.5517578125,0.5146484375,0.4619140625,0.39453125,0.32421875,0.2734375,0.26953125,0.3203125,0.400390625,0.46875,0.5,0.5234375,0.560546875,0.5908203125,0.59375,0.564453125,0.5166015625,0.46875,0.416015625,0.3447265625,0.2900390625,0.2861328125,0.33984375,0.4228515625,0.5,0.5673828125,0.6123046875,0.6181640625,0.587890625,0.544921875,0.5205078125,0.5302734375,0.55078125,0.5791015625,0.615234375,0.654296875,0.69140625,0.7197265625,0.740234375,0.75,0.7236328125,0.6591796875,0.580078125,0.515625,0.4892578125,0.5,0.517578125,0.525390625,0.513671875,0.4775390625,0.4296875,0.388671875,0.3642578125,0.35546875,0.388671875,0.4560546875,0.5263671875,0.5693359375,0.5673828125,0.5302734375,0.4853515625,0.4462890625,0.421875,0.4140625,0.4140625,0.41015625,0.39453125,0.3759765625,0.36328125,0.369140625,0.3974609375,0.4384765625,0.4755859375,0.5,0.52734375,0.5859375,0.662109375,0.7294921875,0.763671875,0.7626953125,0.740234375,0.7021484375,0.6220703125,0.513671875,0.4140625,0.3544921875,0.34375,0.3642578125,0.388671875,0.4052734375,0.4140625,0.4189453125,0.427734375,0.4443359375,0.46875,0.49609375,0.5244140625,0.5517578125,0.5771484375,0.59765625,0.6162109375,0.634765625,0.650390625,0.6474609375,0.609375,0.541015625,0.4619140625,0.3984375,0.3642578125,0.3486328125,0.376953125,0.4521484375,0.546875,0.6220703125,0.650390625,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.552734375,0.478515625,0.40234375,0.3505859375,0.333984375,0.3447265625,0.3642578125,0.3828125,0.39453125,0.388671875,0.361328125,0.3203125,0.2822265625,0.2587890625,0.2451171875,0.2568359375,0.30078125,0.3642578125,0.4248046875,0.4619140625,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.7412109375,0.7421875,0.7294921875,0.5107421875,0.640625,0.7294921875,0.7568359375,0.740234375,0.69921875,0.6064453125,0.474609375,0.34765625,0.2646484375,0.2412109375,0.2587890625,0.2939453125,0.3564453125,0.4365234375,0.5048828125,0.5419921875,0.5458984375,0.5302734375,0.517578125,0.5322265625,0.5712890625,0.6181640625,0.6513671875,0.6552734375,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.712890625,0.677734375,0.6298828125,0.568359375,0.5029296875,0.443359375,0.39453125,0.3623046875,0.3857421875,0.474609375,0.5966796875,0.7021484375,0.7509765625,0.740234375,0.703125,0.626953125,0.5244140625,0.427734375,0.3671875,0.3505859375,0.3642578125,0.3828125,0.40234375,0.421875,0.44140625,0.4609375,0.48046875,0.5,0.505859375,0.4638671875,0.3798828125,0.2900390625,0.23046875,0.22265625,0.2587890625,0.296875,0.3037109375,0.2783203125,0.240234375,0.21484375,0.220703125,0.2587890625,0.3212890625,0.4423828125,0.587890625,0.6982421875,0.7353515625,0.7021484375,0.634765625,0.5517578125,0.4375,0.3330078125,0.2900390625,0.3193359375,0.3935546875,0.46875,0.546875,0.634765625,0.7041015625,0.728515625,0.7080078125,0.6669921875,0.634765625,0.611328125,0.599609375,0.6015625,0.61328125,0.6220703125,0.6201171875,0.6044921875,0.5830078125,0.552734375,0.5185546875,0.4912109375,0.4755859375,0.4697265625,0.46875,0.4638671875,0.4453125,0.4248046875,0.421875,0.443359375,0.484375,0.5302734375,0.5791015625,0.630859375,0.6591796875,0.6435546875,0.587890625,0.5205078125,0.46875,0.4189453125,0.3642578125,0.33984375,0.3720703125,0.4560546875,0.5546875,0.634765625,0.7021484375,0.7353515625,0.6982421875,0.587890625,0.4423828125,0.3212890625,0.2587890625,0.2236328125,0.2314453125,0.2890625,0.375,0.451171875,0.4833984375,0.46875,0.4404296875,0.41015625,0.3916015625,0.39453125,0.41796875,0.447265625,0.46875,0.4951171875,0.544921875,0.6044921875,0.6513671875,0.669921875,0.6591796875,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5654296875,0.548828125,0.5576171875,0.576171875,0.5849609375,0.5693359375,0.5302734375,0.4873046875,0.4638671875,0.482421875,0.546875,0.6318359375,0.703125,0.740234375,0.765625,0.783203125,0.779296875,0.748046875,0.701171875,0.6591796875,0.634765625,0.6044921875,0.53515625,0.4443359375,0.369140625,0.337890625,0.353515625,0.39453125,0.44140625,0.484375,0.4970703125,0.4609375,0.388671875,0.3125,0.2587890625,0.2275390625,0.2529296875,0.328125,0.4140625,0.4638671875,0.455078125,0.39453125,0.3232421875,0.26953125,0.26953125,0.3369140625,0.4453125,0.5458984375,0.6044921875,0.650390625,0.6845703125,0.6796875,0.6240234375,0.53515625,0.44921875,0.39453125,0.3583984375,0.3603515625,0.40234375,0.4609375,0.5029296875,0.5048828125,0.46875,0.4150390625,0.33984375,0.2783203125,0.267578125,0.314453125,0.3935546875,0.46875,0.5517578125,0.6630859375,0.759765625,0.794921875,0.7587890625,0.681640625,0.6044921875,0.5205078125,0.3994140625,0.275390625,0.1953125,0.1796875,0.212890625,0.2587890625,0.3154296875,0.4091796875,0.521484375,0.61328125,0.658203125,0.658203125,0.634765625,0.611328125,0.599609375,0.6015625,0.61328125,0.6220703125,0.6201171875,0.6044921875,0.583984375,0.55859375,0.541015625,0.541015625,0.55859375,0.583984375,0.6044921875,0.6083984375,0.5546875,0.447265625,0.328125,0.2451171875,0.2255859375,0.2587890625,0.3212890625,0.4375,0.5771484375,0.6796875,0.708984375,0.6728515625,0.6044921875,0.52734375,0.4384765625,0.3642578125,0.3310546875,0.3408203125,0.37109375,0.39453125,0.408203125,0.4052734375,0.3916015625,0.3837890625,0.39453125,0.42578125,0.46875,0.5068359375,0.5146484375,0.4990234375,0.4853515625,0.4951171875,0.5380859375,0.6044921875,0.6806640625,0.759765625,0.806640625,0.794921875,0.7333984375,0.6591796875,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.6357421875,0.7080078125,0.794921875,0.853515625,0.8564453125,0.8095703125,0.740234375,0.671875,0.615234375,0.5712890625,0.533203125,0.4892578125,0.4326171875,0.3642578125,0.2998046875,0.275390625,0.306640625,0.3798828125,0.4609375,0.5048828125,0.5,0.4853515625,0.490234375,0.513671875,0.541015625,0.556640625,0.5517578125,0.5302734375,0.4931640625,0.4287109375,0.36328125,0.3369140625,0.3623046875,0.4267578125,0.5,0.5712890625,0.630859375,0.6513671875,0.62109375,0.5576171875,0.498046875,0.46875,0.4599609375,0.4892578125,0.560546875,0.6484375,0.7197265625,0.75,0.740234375,0.71875,0.6865234375,0.6435546875,0.595703125,0.552734375,0.5205078125,0.5,0.4755859375,0.4384765625,0.3974609375,0.369140625,0.36328125,0.3759765625,0.39453125,0.41796875,0.4560546875,0.49609375,0.51953125,0.5166015625,0.49609375,0.46875,0.4384765625,0.3955078125,0.3525390625,0.328125,0.328125,0.3447265625,0.3642578125,0.388671875,0.4296875,0.4775390625,0.513671875,0.525390625,0.517578125,0.5,0.4931640625,0.53515625,0.619140625,0.708984375,0.7685546875,0.7763671875,0.740234375,0.681640625,0.580078125,0.4609375,0.369140625,0.3349609375,0.3515625,0.39453125,0.435546875,0.458984375,0.4638671875,0.4609375,0.4658203125,0.4892578125,0.5302734375,0.578125,0.6318359375,0.6708984375,0.6796875,0.6591796875,0.6279296875,0.6044921875,0.587890625,0.57421875,0.5576171875,0.529296875,0.48828125,0.4404296875,0.39453125,0.361328125,0.3798828125,0.4521484375,0.546875,0.619140625,0.6376953125,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.6064453125,0.5693359375,0.5244140625,0.48046875,0.4423828125,0.4150390625,0.39453125,0.3701171875,0.3291015625,0.28125,0.2451171875,0.232421875,0.2412109375,0.2587890625,0.283203125,0.330078125,0.39453125,0.4580078125,0.50390625,0.5263671875,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.7373046875,0.7197265625,0.6787109375,0.5654296875,0.6396484375,0.677734375,0.6826171875,0.673828125,0.6533203125,0.59765625,0.5107421875,0.4189453125,0.3505859375,0.322265625,0.3251953125,0.3486328125,0.4150390625,0.509765625,0.591796875,0.62890625,0.615234375,0.5703125,0.5234375,0.498046875,0.5078125,0.5478515625,0.5947265625,0.623046875,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.6669921875,0.6669921875,0.6611328125,0.6318359375,0.5771484375,0.51171875,0.4482421875,0.39453125,0.3837890625,0.4296875,0.5205078125,0.6142578125,0.669921875,0.673828125,0.6494140625,0.576171875,0.4697265625,0.375,0.326171875,0.3330078125,0.376953125,0.4228515625,0.4453125,0.443359375,0.4326171875,0.431640625,0.4541015625,0.5,0.5361328125,0.5166015625,0.4423828125,0.3486328125,0.283203125,0.27734375,0.3251953125,0.376953125,0.3857421875,0.3515625,0.2998046875,0.265625,0.2744140625,0.3251953125,0.40234375,0.5244140625,0.6552734375,0.73828125,0.7451171875,0.693359375,0.6220703125,0.537109375,0.419921875,0.310546875,0.259765625,0.283203125,0.353515625,0.4287109375,0.5048828125,0.5869140625,0.650390625,0.67578125,0.6630859375,0.6376953125,0.6220703125,0.6171875,0.630859375,0.650390625,0.658203125,0.640625,0.6005859375,0.55078125,0.4990234375,0.4462890625,0.41015625,0.3994140625,0.41015625,0.4248046875,0.4287109375,0.423828125,0.4052734375,0.390625,0.40234375,0.4453125,0.5068359375,0.5703125,0.634765625,0.6982421875,0.7236328125,0.6865234375,0.59765625,0.5,0.4287109375,0.3642578125,0.30078125,0.279296875,0.3251953125,0.427734375,0.5390625,0.6220703125,0.693359375,0.7451171875,0.73828125,0.6552734375,0.5244140625,0.40234375,0.3251953125,0.26953125,0.2431640625,0.2626953125,0.3203125,0.3876953125,0.427734375,0.4287109375,0.412109375,0.375,0.3349609375,0.3173828125,0.3349609375,0.3779296875,0.4287109375,0.484375,0.55078125,0.611328125,0.6455078125,0.6484375,0.634765625,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.5,0.4931640625,0.5322265625,0.5888671875,0.6279296875,0.62109375,0.5703125,0.51171875,0.47265625,0.4765625,0.525390625,0.5966796875,0.65234375,0.673828125,0.689453125,0.720703125,0.7490234375,0.751953125,0.7236328125,0.673828125,0.6220703125,0.5595703125,0.4658203125,0.3720703125,0.3212890625,0.33203125,0.384765625,0.4482421875,0.513671875,0.5791015625,0.6083984375,0.576171875,0.4921875,0.396484375,0.3251953125,0.2783203125,0.2900390625,0.359375,0.4482421875,0.5078125,0.505859375,0.4482421875,0.3720703125,0.296875,0.2607421875,0.2919921875,0.3798828125,0.4794921875,0.55078125,0.6171875,0.6845703125,0.71875,0.69140625,0.611328125,0.5185546875,0.4482421875,0.396484375,0.384765625,0.4150390625,0.4619140625,0.4921875,0.48046875,0.4287109375,0.359375,0.2724609375,0.2080078125,0.2041015625,0.2626953125,0.3505859375,0.4287109375,0.51171875,0.6201171875,0.71484375,0.7470703125,0.70703125,0.6279296875,0.55078125,0.4677734375,0.3525390625,0.2431640625,0.1875,0.2021484375,0.26171875,0.3251953125,0.3935546875,0.48046875,0.5654296875,0.6220703125,0.640625,0.6337890625,0.6220703125,0.6171875,0.630859375,0.650390625,0.658203125,0.640625,0.6005859375,0.55078125,0.494140625,0.427734375,0.3798828125,0.3798828125,0.427734375,0.494140625,0.55078125,0.5869140625,0.5615234375,0.474609375,0.3671875,0.2900390625,0.2783203125,0.3251953125,0.400390625,0.5146484375,0.6298828125,0.693359375,0.6845703125,0.6240234375,0.55078125,0.4716796875,0.376953125,0.302734375,0.2841796875,0.32421875,0.390625,0.4482421875,0.48828125,0.4873046875,0.447265625,0.39453125,0.3642578125,0.376953125,0.4287109375,0.4814453125,0.4990234375,0.484375,0.4609375,0.455078125,0.4873046875,0.55078125,0.6298828125,0.7177734375,0.7763671875,0.7724609375,0.70703125,0.62109375,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.61328125,0.70703125,0.7978515625,0.8388671875,0.814453125,0.7470703125,0.673828125,0.6064453125,0.5595703125,0.5341796875,0.5166015625,0.490234375,0.4443359375,0.376953125,0.3173828125,0.3095703125,0.361328125,0.4453125,0.5166015625,0.5361328125,0.5,0.453125,0.4306640625,0.4443359375,0.4892578125,0.541015625,0.5712890625,0.5703125,0.5478515625,0.490234375,0.4189453125,0.375,0.3798828125,0.4296875,0.5,0.5751953125,0.6484375,0.68359375,0.65625,0.578125,0.490234375,0.4287109375,0.392578125,0.4140625,0.4970703125,0.60546875,0.6884765625,0.7099609375,0.673828125,0.626953125,0.59765625,0.587890625,0.5849609375,0.5751953125,0.5458984375,0.5,0.44140625,0.3681640625,0.3095703125,0.2958984375,0.33203125,0.392578125,0.4482421875,0.498046875,0.5390625,0.552734375,0.5302734375,0.486328125,0.4462890625,0.4287109375,0.41015625,0.3671875,0.3154296875,0.28515625,0.2900390625,0.3271484375,0.376953125,0.4365234375,0.5185546875,0.5927734375,0.6259765625,0.60546875,0.5537109375,0.5,0.462890625,0.482421875,0.556640625,0.650390625,0.7158203125,0.7216796875,0.673828125,0.599609375,0.4921875,0.384765625,0.3251953125,0.33203125,0.384765625,0.4482421875,0.501953125,0.525390625,0.5185546875,0.4990234375,0.4921875,0.515625,0.5703125,0.63671875,0.708984375,0.75390625,0.744140625,0.6845703125,0.609375,0.55078125,0.5078125,0.4931640625,0.5068359375,0.52734375,0.5302734375,0.5029296875,0.4482421875,0.3994140625,0.40234375,0.4599609375,0.5390625,0.5966796875,0.599609375,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.6142578125,0.615234375,0.61328125,0.5927734375,0.552734375,0.5,0.4482421875,0.388671875,0.306640625,0.232421875,0.19921875,0.2197265625,0.271484375,0.3251953125,0.380859375,0.4482421875,0.51171875,0.5546875,0.5712890625,0.5712890625,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6689453125,0.6455078125,0.5986328125,0.6103515625,0.6240234375,0.6083984375,0.5869140625,0.5791015625,0.5732421875,0.5517578125,0.5146484375,0.47265625,0.4384765625,0.421875,0.419921875,0.4345703125,0.4921875,0.57421875,0.6396484375,0.6572265625,0.623046875,0.5595703125,0.4931640625,0.4453125,0.4365234375,0.46875,0.521484375,0.5615234375,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.5849609375,0.6142578125,0.6455078125,0.65234375,0.62109375,0.5595703125,0.4892578125,0.423828125,0.384765625,0.392578125,0.4462890625,0.5185546875,0.5693359375,0.5791015625,0.564453125,0.505859375,0.4208984375,0.353515625,0.333984375,0.3662109375,0.4296875,0.48828125,0.5068359375,0.484375,0.4453125,0.421875,0.4404296875,0.5,0.5546875,0.5537109375,0.4970703125,0.4169921875,0.361328125,0.36328125,0.419921875,0.478515625,0.48828125,0.44921875,0.3896484375,0.3505859375,0.361328125,0.419921875,0.5009765625,0.6123046875,0.7119140625,0.751953125,0.720703125,0.6455078125,0.5693359375,0.486328125,0.376953125,0.28125,0.2470703125,0.2841796875,0.36328125,0.439453125,0.5126953125,0.58203125,0.625,0.6298828125,0.60546875,0.578125,0.5693359375,0.576171875,0.607421875,0.64453125,0.658203125,0.6337890625,0.5771484375,0.509765625,0.44140625,0.3828125,0.3544921875,0.365234375,0.400390625,0.431640625,0.439453125,0.4326171875,0.40625,0.380859375,0.3828125,0.4228515625,0.48828125,0.5595703125,0.634765625,0.7119140625,0.75,0.71875,0.626953125,0.5205078125,0.439453125,0.3642578125,0.287109375,0.25,0.283203125,0.3779296875,0.486328125,0.5693359375,0.6455078125,0.720703125,0.751953125,0.7119140625,0.6123046875,0.5009765625,0.419921875,0.3525390625,0.3046875,0.296875,0.3330078125,0.3896484375,0.4306640625,0.439453125,0.4287109375,0.3876953125,0.3359375,0.30859375,0.322265625,0.373046875,0.439453125,0.509765625,0.576171875,0.619140625,0.625,0.6025390625,0.5771484375,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.4521484375,0.4482421875,0.498046875,0.5703125,0.62109375,0.6162109375,0.5595703125,0.4912109375,0.44140625,0.431640625,0.4658203125,0.5234375,0.5673828125,0.5791015625,0.58984375,0.6298828125,0.6787109375,0.7041015625,0.6884765625,0.63671875,0.5693359375,0.4912109375,0.390625,0.30859375,0.2861328125,0.33203125,0.4140625,0.4892578125,0.5654296875,0.6494140625,0.69921875,0.6806640625,0.599609375,0.4990234375,0.419921875,0.36328125,0.3623046875,0.41796875,0.4970703125,0.55078125,0.5478515625,0.4892578125,0.41015625,0.3193359375,0.2587890625,0.2646484375,0.3359375,0.4306640625,0.509765625,0.5869140625,0.6767578125,0.7373046875,0.7314453125,0.662109375,0.568359375,0.4892578125,0.4296875,0.4130859375,0.44140625,0.4873046875,0.515625,0.4990234375,0.439453125,0.361328125,0.2685546875,0.2021484375,0.201171875,0.2666015625,0.3603515625,0.439453125,0.521484375,0.6240234375,0.7060546875,0.724609375,0.6728515625,0.587890625,0.509765625,0.427734375,0.32421875,0.23828125,0.2158203125,0.26171875,0.34375,0.419921875,0.4912109375,0.5615234375,0.609375,0.6201171875,0.6005859375,0.5771484375,0.5693359375,0.576171875,0.607421875,0.64453125,0.658203125,0.6337890625,0.5771484375,0.509765625,0.43359375,0.34375,0.2802734375,0.2802734375,0.34375,0.43359375,0.509765625,0.564453125,0.5625,0.5029296875,0.4208984375,0.3623046875,0.36328125,0.419921875,0.5,0.603515625,0.6904296875,0.71484375,0.6689453125,0.5869140625,0.509765625,0.4296875,0.3349609375,0.2666015625,0.2626953125,0.32421875,0.4130859375,0.4892578125,0.544921875,0.548828125,0.498046875,0.42578125,0.376953125,0.3818359375,0.439453125,0.5,0.517578125,0.4921875,0.451171875,0.427734375,0.4482421875,0.509765625,0.5888671875,0.6826171875,0.748046875,0.7470703125,0.6806640625,0.587890625,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.587890625,0.6875,0.76953125,0.7890625,0.740234375,0.6572265625,0.5791015625,0.515625,0.4873046875,0.494140625,0.5146484375,0.521484375,0.4931640625,0.4296875,0.37109375,0.3671875,0.419921875,0.498046875,0.5546875,0.5546875,0.5,0.4345703125,0.392578125,0.39453125,0.4404296875,0.50390625,0.5498046875,0.5595703125,0.5458984375,0.49609375,0.4287109375,0.3837890625,0.384765625,0.4306640625,0.5,0.5771484375,0.662109375,0.712890625,0.6962890625,0.6162109375,0.517578125,0.439453125,0.3857421875,0.392578125,0.4619140625,0.556640625,0.6259765625,0.6328125,0.5791015625,0.5205078125,0.5,0.5205078125,0.5576171875,0.578125,0.55859375,0.5,0.4228515625,0.33203125,0.2666015625,0.263671875,0.3251953125,0.4140625,0.4892578125,0.5546875,0.599609375,0.6025390625,0.5615234375,0.4990234375,0.4521484375,0.439453125,0.4287109375,0.3857421875,0.3330078125,0.3017578125,0.3134765625,0.36328125,0.4296875,0.5078125,0.60546875,0.6845703125,0.703125,0.6552734375,0.57421875,0.5,0.4443359375,0.4453125,0.501953125,0.58203125,0.6376953125,0.6357421875,0.5791015625,0.4990234375,0.396484375,0.3115234375,0.287109375,0.3330078125,0.4140625,0.4892578125,0.5498046875,0.568359375,0.544921875,0.50390625,0.48046875,0.4990234375,0.5595703125,0.6357421875,0.720703125,0.7734375,0.759765625,0.68359375,0.5869140625,0.509765625,0.4521484375,0.4404296875,0.4755859375,0.529296875,0.5625,0.548828125,0.4892578125,0.431640625,0.423828125,0.466796875,0.5322265625,0.5751953125,0.5673828125,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.5751953125,0.6044921875,0.63671875,0.6455078125,0.6162109375,0.5576171875,0.4892578125,0.412109375,0.3134765625,0.234375,0.2158203125,0.263671875,0.345703125,0.419921875,0.4892578125,0.556640625,0.6005859375,0.6083984375,0.5888671875,0.5654296875,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.576171875,0.560546875,0.5302734375,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.65234375,0.58203125,0.4951171875,0.4345703125,0.419921875,0.421875,0.44140625,0.4775390625,0.521484375,0.5576171875,0.5771484375,0.5791015625,0.583984375,0.607421875,0.6298828125,0.6240234375,0.5810546875,0.5126953125,0.439453125,0.3701171875,0.3173828125,0.3046875,0.3349609375,0.3876953125,0.4296875,0.439453125,0.4326171875,0.408203125,0.3857421875,0.392578125,0.4365234375,0.505859375,0.5791015625,0.6455078125,0.6796875,0.6611328125,0.5927734375,0.5087890625,0.451171875,0.439453125,0.44140625,0.44140625,0.4404296875,0.439453125,0.4384765625,0.4384765625,0.439453125,0.453125,0.5029296875,0.5712890625,0.6181640625,0.6201171875,0.576171875,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4130859375,0.388671875,0.3662109375,0.3720703125,0.4169921875,0.486328125,0.5595703125,0.6181640625,0.62109375,0.5673828125,0.4912109375,0.4375,0.44140625,0.5,0.560546875,0.5791015625,0.5517578125,0.5068359375,0.48046875,0.498046875,0.5595703125,0.6201171875,0.6337890625,0.599609375,0.544921875,0.5087890625,0.5205078125,0.5791015625,0.6533203125,0.7255859375,0.755859375,0.7138671875,0.6123046875,0.5009765625,0.419921875,0.3447265625,0.2685546875,0.2333984375,0.26953125,0.3662109375,0.4765625,0.5595703125,0.6259765625,0.6611328125,0.6435546875,0.576171875,0.4912109375,0.4326171875,0.419921875,0.431640625,0.484375,0.5576171875,0.6123046875,0.619140625,0.5771484375,0.509765625,0.4404296875,0.3935546875,0.3896484375,0.4326171875,0.498046875,0.546875,0.5595703125,0.5478515625,0.4912109375,0.408203125,0.3408203125,0.322265625,0.35546875,0.419921875,0.5009765625,0.609375,0.7060546875,0.7431640625,0.708984375,0.6337890625,0.5595703125,0.478515625,0.3701171875,0.275390625,0.2392578125,0.2734375,0.3466796875,0.419921875,0.5,0.609375,0.7099609375,0.7529296875,0.724609375,0.6533203125,0.5791015625,0.5107421875,0.45703125,0.4404296875,0.466796875,0.517578125,0.55859375,0.5693359375,0.5615234375,0.5244140625,0.4755859375,0.44921875,0.462890625,0.5126953125,0.5791015625,0.642578125,0.673828125,0.65234375,0.58203125,0.4951171875,0.4345703125,0.419921875,0.421875,0.44140625,0.4775390625,0.521484375,0.5576171875,0.5771484375,0.5791015625,0.5849609375,0.6142578125,0.6474609375,0.6552734375,0.6259765625,0.5673828125,0.5,0.4404296875,0.421875,0.4453125,0.484375,0.5068359375,0.48828125,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.36328125,0.2802734375,0.23046875,0.2490234375,0.3291015625,0.4296875,0.509765625,0.5888671875,0.6865234375,0.7626953125,0.7763671875,0.7216796875,0.6357421875,0.5595703125,0.5,0.4833984375,0.51171875,0.5576171875,0.5859375,0.5693359375,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.5869140625,0.6796875,0.744140625,0.744140625,0.6796875,0.5869140625,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.6552734375,0.7373046875,0.783203125,0.7607421875,0.6748046875,0.5712890625,0.4892578125,0.412109375,0.330078125,0.283203125,0.3056640625,0.3896484375,0.4912109375,0.5693359375,0.6318359375,0.6640625,0.6435546875,0.5751953125,0.490234375,0.4326171875,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.568359375,0.583984375,0.5546875,0.5078125,0.48046875,0.498046875,0.5595703125,0.6376953125,0.72265625,0.7744140625,0.755859375,0.673828125,0.5712890625,0.4892578125,0.41015625,0.3193359375,0.2587890625,0.2646484375,0.3359375,0.4306640625,0.509765625,0.5693359375,0.5859375,0.55859375,0.5146484375,0.4892578125,0.5078125,0.5693359375,0.6279296875,0.6298828125,0.572265625,0.4912109375,0.43359375,0.43359375,0.4892578125,0.5673828125,0.658203125,0.7216796875,0.7216796875,0.65625,0.5654296875,0.4892578125,0.4140625,0.326171875,0.267578125,0.2724609375,0.3408203125,0.4326171875,0.509765625,0.5830078125,0.662109375,0.7060546875,0.6826171875,0.5986328125,0.498046875,0.419921875,0.3662109375,0.3740234375,0.4443359375,0.5400390625,0.609375,0.6142578125,0.5595703125,0.5,0.4833984375,0.51171875,0.5576171875,0.5859375,0.5693359375,0.509765625,0.4404296875,0.380859375,0.353515625,0.3662109375,0.40234375,0.43359375,0.439453125,0.4296875,0.396484375,0.3583984375,0.345703125,0.373046875,0.431640625,0.5,0.5771484375,0.673828125,0.7509765625,0.7666015625,0.716796875,0.6337890625,0.5595703125,0.4990234375,0.4716796875,0.4794921875,0.5,0.5068359375,0.48046875,0.419921875,0.365234375,0.365234375,0.421875,0.4990234375,0.552734375,0.5478515625,0.4892578125,0.41015625,0.3193359375,0.2578125,0.26171875,0.330078125,0.4228515625,0.5,0.568359375,0.6279296875,0.658203125,0.650390625,0.6171875,0.5869140625,0.5791015625,0.5693359375,0.5283203125,0.4765625,0.447265625,0.4599609375,0.5107421875,0.5791015625,0.6552734375,0.73828125,0.787109375,0.7666015625,0.68359375,0.5810546875,0.5,0.4375,0.4169921875,0.4384765625,0.4794921875,0.5048828125,0.48828125,0.4296875,0.3544921875,0.2705078125,0.2177734375,0.2314453125,0.3095703125,0.4091796875,0.4892578125,0.5478515625,0.5517578125,0.498046875,0.421875,0.3681640625,0.37109375,0.4296875,0.5107421875,0.6142578125,0.697265625,0.7177734375,0.6689453125,0.5859375,0.509765625,0.451171875,0.4384765625,0.474609375,0.529296875,0.564453125,0.5498046875,0.4892578125,0.4296875,0.4189453125,0.458984375,0.51953125,0.5595703125,0.5498046875,0.4892578125,0.4208984375,0.3759765625,0.376953125,0.42578125,0.4951171875,0.5458984375,0.5595703125,0.55859375,0.544921875,0.5185546875,0.486328125,0.4580078125,0.4423828125,0.439453125,0.4501953125,0.49609375,0.55859375,0.6005859375,0.5986328125,0.5546875,0.4892578125,0.4150390625,0.3330078125,0.283203125,0.30078125,0.380859375,0.48046875,0.5595703125,0.6240234375,0.658203125,0.640625,0.57421875,0.490234375,0.4326171875,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.44140625,0.455078125,0.4833984375,0.6572265625,0.5478515625,0.4306640625,0.3505859375,0.3251953125,0.3251953125,0.3662109375,0.44921875,0.5498046875,0.6328125,0.673828125,0.673828125,0.66796875,0.671875,0.6689453125,0.638671875,0.5791015625,0.5029296875,0.4287109375,0.359375,0.306640625,0.2939453125,0.32421875,0.376953125,0.4189453125,0.4287109375,0.4248046875,0.4130859375,0.4140625,0.4482421875,0.515625,0.59765625,0.673828125,0.736328125,0.7529296875,0.7041015625,0.6044921875,0.498046875,0.4345703125,0.4287109375,0.4375,0.439453125,0.43359375,0.4248046875,0.4189453125,0.419921875,0.4287109375,0.4501953125,0.5087890625,0.5830078125,0.6376953125,0.6455078125,0.609375,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.3212890625,0.3095703125,0.310546875,0.3447265625,0.412109375,0.494140625,0.5703125,0.6279296875,0.6298828125,0.57421875,0.4951171875,0.439453125,0.44140625,0.5,0.560546875,0.580078125,0.5556640625,0.513671875,0.4892578125,0.5087890625,0.5703125,0.6337890625,0.6630859375,0.6533203125,0.625,0.60546875,0.62109375,0.673828125,0.7333984375,0.771484375,0.7509765625,0.6591796875,0.5244140625,0.40234375,0.3251953125,0.26171875,0.205078125,0.1943359375,0.2548828125,0.3681640625,0.486328125,0.5703125,0.6337890625,0.6572265625,0.615234375,0.5205078125,0.4130859375,0.3408203125,0.3251953125,0.3408203125,0.41015625,0.513671875,0.603515625,0.640625,0.615234375,0.55078125,0.48046875,0.423828125,0.4072265625,0.4384765625,0.498046875,0.5498046875,0.5703125,0.5654296875,0.5078125,0.41015625,0.314453125,0.263671875,0.2734375,0.3251953125,0.3994140625,0.509765625,0.62109375,0.685546875,0.68359375,0.6328125,0.5703125,0.498046875,0.3935546875,0.2900390625,0.2294921875,0.23046875,0.2734375,0.3251953125,0.3916015625,0.5068359375,0.6396484375,0.736328125,0.7646484375,0.732421875,0.673828125,0.611328125,0.5537109375,0.5234375,0.53125,0.5673828125,0.6044921875,0.6220703125,0.6259765625,0.6103515625,0.5859375,0.5732421875,0.5869140625,0.6240234375,0.673828125,0.7158203125,0.7177734375,0.6572265625,0.5478515625,0.4306640625,0.3505859375,0.3251953125,0.3251953125,0.3662109375,0.44921875,0.5498046875,0.6328125,0.673828125,0.673828125,0.666015625,0.6669921875,0.6640625,0.64453125,0.6044921875,0.5517578125,0.5,0.4541015625,0.431640625,0.4326171875,0.443359375,0.4453125,0.4228515625,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.36328125,0.2978515625,0.2685546875,0.30078125,0.384765625,0.48046875,0.55078125,0.6201171875,0.7021484375,0.763671875,0.7685546875,0.7158203125,0.6376953125,0.5703125,0.5185546875,0.5068359375,0.537109375,0.583984375,0.6142578125,0.6025390625,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.619140625,0.7001953125,0.7568359375,0.7568359375,0.7001953125,0.619140625,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.7373046875,0.796875,0.8115234375,0.755859375,0.646484375,0.53125,0.4482421875,0.375,0.314453125,0.3017578125,0.3564453125,0.4580078125,0.55859375,0.6220703125,0.6640625,0.666015625,0.609375,0.5087890625,0.4052734375,0.33984375,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.6015625,0.6064453125,0.5693359375,0.517578125,0.4892578125,0.5087890625,0.5703125,0.646484375,0.7265625,0.765625,0.7333984375,0.6396484375,0.5302734375,0.4482421875,0.3720703125,0.296875,0.2607421875,0.2919921875,0.3798828125,0.4794921875,0.55078125,0.6025390625,0.6142578125,0.587890625,0.5498046875,0.533203125,0.55859375,0.6220703125,0.6787109375,0.6748046875,0.603515625,0.5009765625,0.419921875,0.40234375,0.4482421875,0.5146484375,0.5888671875,0.638671875,0.6337890625,0.5791015625,0.505859375,0.4482421875,0.3935546875,0.3388671875,0.314453125,0.341796875,0.4130859375,0.4921875,0.55078125,0.6025390625,0.642578125,0.6396484375,0.5791015625,0.4814453125,0.3876953125,0.3251953125,0.2900390625,0.318359375,0.4091796875,0.521484375,0.6025390625,0.6171875,0.5703125,0.5185546875,0.5068359375,0.537109375,0.583984375,0.6142578125,0.6025390625,0.55078125,0.490234375,0.4365234375,0.4052734375,0.4033203125,0.419921875,0.43359375,0.4287109375,0.4130859375,0.384765625,0.3603515625,0.3623046875,0.39453125,0.447265625,0.5,0.5576171875,0.6328125,0.6962890625,0.71484375,0.68359375,0.625,0.5703125,0.521484375,0.484375,0.458984375,0.4375,0.4111328125,0.3740234375,0.3251953125,0.2890625,0.30859375,0.3798828125,0.4638671875,0.515625,0.5078125,0.4482421875,0.3720703125,0.296875,0.2568359375,0.279296875,0.353515625,0.4384765625,0.5,0.552734375,0.611328125,0.66015625,0.6845703125,0.6845703125,0.6767578125,0.673828125,0.6650390625,0.62890625,0.5830078125,0.5576171875,0.5693359375,0.61328125,0.673828125,0.7392578125,0.8046875,0.830078125,0.7890625,0.69140625,0.58203125,0.5,0.43359375,0.396484375,0.3935546875,0.4130859375,0.4296875,0.419921875,0.376953125,0.3193359375,0.2490234375,0.2021484375,0.2119140625,0.2783203125,0.369140625,0.4482421875,0.505859375,0.5078125,0.4521484375,0.373046875,0.3173828125,0.3193359375,0.376953125,0.4599609375,0.5693359375,0.6669921875,0.7080078125,0.6826171875,0.6171875,0.55078125,0.4990234375,0.4833984375,0.501953125,0.53125,0.541015625,0.51171875,0.4482421875,0.3876953125,0.376953125,0.41796875,0.478515625,0.5185546875,0.5078125,0.4482421875,0.3798828125,0.3359375,0.341796875,0.400390625,0.4833984375,0.546875,0.5703125,0.5771484375,0.5673828125,0.5380859375,0.49609375,0.45703125,0.43359375,0.4287109375,0.4365234375,0.46875,0.5107421875,0.537109375,0.5322265625,0.4970703125,0.4482421875,0.392578125,0.3349609375,0.306640625,0.3349609375,0.4111328125,0.5,0.5703125,0.6240234375,0.6396484375,0.595703125,0.505859375,0.4052734375,0.33984375,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.423828125,0.439453125,0.4765625,0.6376953125,0.513671875,0.38671875,0.298828125,0.2587890625,0.248046875,0.302734375,0.4248046875,0.57421875,0.6962890625,0.7509765625,0.740234375,0.7177734375,0.7080078125,0.6953125,0.666015625,0.611328125,0.5419921875,0.46875,0.3994140625,0.3466796875,0.333984375,0.3642578125,0.41796875,0.458984375,0.46875,0.4658203125,0.45703125,0.4638671875,0.5048828125,0.5791015625,0.6640625,0.740234375,0.7998046875,0.8037109375,0.7373046875,0.6240234375,0.5146484375,0.4599609375,0.46875,0.4912109375,0.4951171875,0.48046875,0.4580078125,0.443359375,0.447265625,0.46875,0.50390625,0.56640625,0.6357421875,0.6787109375,0.681640625,0.6494140625,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2548828125,0.24609375,0.25390625,0.294921875,0.3681640625,0.4541015625,0.5302734375,0.5888671875,0.595703125,0.548828125,0.48046875,0.43359375,0.4404296875,0.5,0.5595703125,0.57421875,0.541015625,0.48828125,0.455078125,0.4697265625,0.5302734375,0.5986328125,0.6494140625,0.67578125,0.6826171875,0.6845703125,0.701171875,0.740234375,0.779296875,0.7802734375,0.71484375,0.587890625,0.4384765625,0.3203125,0.2587890625,0.2109375,0.1689453125,0.16796875,0.228515625,0.3359375,0.447265625,0.5302734375,0.59375,0.61328125,0.5654296875,0.4638671875,0.349609375,0.275390625,0.2587890625,0.27734375,0.3603515625,0.4912109375,0.61328125,0.6767578125,0.666015625,0.6044921875,0.529296875,0.4521484375,0.4033203125,0.40234375,0.4443359375,0.49609375,0.5302734375,0.54296875,0.5029296875,0.4140625,0.3115234375,0.240234375,0.224609375,0.2587890625,0.3154296875,0.408203125,0.5107421875,0.58203125,0.6005859375,0.57421875,0.5302734375,0.4765625,0.3994140625,0.31640625,0.2568359375,0.2333984375,0.240234375,0.2587890625,0.294921875,0.3935546875,0.5380859375,0.6767578125,0.76171875,0.775390625,0.740234375,0.689453125,0.62890625,0.5771484375,0.5576171875,0.572265625,0.60546875,0.634765625,0.66015625,0.681640625,0.6953125,0.7041015625,0.7119140625,0.72265625,0.740234375,0.7509765625,0.7216796875,0.6376953125,0.513671875,0.38671875,0.298828125,0.2587890625,0.248046875,0.302734375,0.4248046875,0.57421875,0.6962890625,0.7509765625,0.740234375,0.7119140625,0.673828125,0.6298828125,0.5849609375,0.5478515625,0.51953125,0.5,0.48046875,0.4609375,0.44140625,0.421875,0.40234375,0.3828125,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.421875,0.37890625,0.3671875,0.40234375,0.4755859375,0.55078125,0.6044921875,0.6533203125,0.7041015625,0.7294921875,0.708984375,0.650390625,0.58203125,0.5302734375,0.494140625,0.49609375,0.5380859375,0.5966796875,0.638671875,0.640625,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.7568359375,0.71484375,0.6552734375,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.7861328125,0.8193359375,0.8037109375,0.7236328125,0.599609375,0.478515625,0.39453125,0.3271484375,0.29296875,0.3193359375,0.4052734375,0.5166015625,0.6005859375,0.634765625,0.64453125,0.61328125,0.5322265625,0.4248046875,0.3271484375,0.2705078125,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.63671875,0.619140625,0.5576171875,0.48828125,0.451171875,0.4677734375,0.5302734375,0.6064453125,0.6845703125,0.720703125,0.6845703125,0.587890625,0.4775390625,0.39453125,0.3232421875,0.26953125,0.26953125,0.3369140625,0.4453125,0.5458984375,0.6044921875,0.6396484375,0.634765625,0.5966796875,0.5546875,0.541015625,0.5703125,0.634765625,0.6923828125,0.689453125,0.615234375,0.501953125,0.4033203125,0.3662109375,0.39453125,0.44140625,0.4853515625,0.5078125,0.4970703125,0.458984375,0.4189453125,0.39453125,0.3779296875,0.37890625,0.408203125,0.4638671875,0.5283203125,0.5791015625,0.6044921875,0.6171875,0.6005859375,0.541015625,0.44921875,0.3544921875,0.2880859375,0.2587890625,0.2529296875,0.298828125,0.3896484375,0.48828125,0.5546875,0.5654296875,0.5302734375,0.494140625,0.49609375,0.5380859375,0.5966796875,0.638671875,0.640625,0.6044921875,0.5615234375,0.5263671875,0.5078125,0.501953125,0.5009765625,0.4912109375,0.46875,0.44140625,0.4150390625,0.40234375,0.4140625,0.443359375,0.4765625,0.5,0.521484375,0.5498046875,0.57421875,0.58203125,0.5712890625,0.5498046875,0.5302734375,0.5078125,0.4716796875,0.421875,0.3662109375,0.31640625,0.28125,0.2587890625,0.25390625,0.2978515625,0.3779296875,0.4521484375,0.4833984375,0.4580078125,0.39453125,0.32421875,0.2734375,0.26953125,0.3203125,0.400390625,0.46875,0.5,0.5234375,0.56640625,0.6240234375,0.6796875,0.71875,0.7373046875,0.740234375,0.7333984375,0.70703125,0.673828125,0.654296875,0.6630859375,0.6962890625,0.740234375,0.7880859375,0.833984375,0.8427734375,0.7900390625,0.689453125,0.5810546875,0.5,0.4296875,0.37109375,0.341796875,0.3447265625,0.3642578125,0.3759765625,0.3642578125,0.3359375,0.2841796875,0.234375,0.2197265625,0.25390625,0.3212890625,0.39453125,0.453125,0.4609375,0.4140625,0.3447265625,0.2978515625,0.3046875,0.3642578125,0.4453125,0.5537109375,0.654296875,0.70703125,0.6982421875,0.6533203125,0.6044921875,0.5654296875,0.548828125,0.546875,0.541015625,0.5146484375,0.462890625,0.39453125,0.3349609375,0.32421875,0.3642578125,0.4248046875,0.46484375,0.4541015625,0.39453125,0.32421875,0.2724609375,0.2705078125,0.3251953125,0.4140625,0.4912109375,0.5302734375,0.5537109375,0.56640625,0.5576171875,0.5302734375,0.4970703125,0.474609375,0.46875,0.4697265625,0.4716796875,0.4697265625,0.4580078125,0.4375,0.4150390625,0.39453125,0.373046875,0.3486328125,0.341796875,0.3662109375,0.4189453125,0.4794921875,0.5302734375,0.5673828125,0.568359375,0.515625,0.4248046875,0.3310546875,0.271484375,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.4482421875,0.4521484375,0.48046875,0.59375,0.494140625,0.392578125,0.3115234375,0.2587890625,0.232421875,0.2841796875,0.4169921875,0.58203125,0.71484375,0.7666015625,0.740234375,0.701171875,0.6845703125,0.6826171875,0.67578125,0.6494140625,0.5986328125,0.5302734375,0.4599609375,0.4072265625,0.39453125,0.4248046875,0.478515625,0.51953125,0.5302734375,0.5244140625,0.5087890625,0.501953125,0.52734375,0.587890625,0.6650390625,0.740234375,0.798828125,0.798828125,0.7314453125,0.626953125,0.53515625,0.5009765625,0.5302734375,0.5673828125,0.57421875,0.548828125,0.5107421875,0.4853515625,0.4921875,0.5302734375,0.580078125,0.6416015625,0.6923828125,0.712890625,0.697265625,0.6640625,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.25390625,0.2373046875,0.2314453125,0.2568359375,0.31640625,0.39453125,0.46875,0.529296875,0.5439453125,0.5107421875,0.4580078125,0.4248046875,0.439453125,0.5,0.55859375,0.5654296875,0.5185546875,0.4501953125,0.4033203125,0.41015625,0.46875,0.5419921875,0.611328125,0.666015625,0.6953125,0.7080078125,0.7177734375,0.740234375,0.7578125,0.734375,0.6513671875,0.5244140625,0.392578125,0.2998046875,0.2587890625,0.228515625,0.1923828125,0.181640625,0.2177734375,0.2978515625,0.390625,0.46875,0.5341796875,0.560546875,0.52734375,0.44140625,0.3408203125,0.2734375,0.2587890625,0.27734375,0.365234375,0.501953125,0.6318359375,0.703125,0.6962890625,0.634765625,0.5546875,0.4560546875,0.3720703125,0.33984375,0.3642578125,0.4189453125,0.46875,0.5048828125,0.4970703125,0.4384765625,0.3525390625,0.27734375,0.244140625,0.2587890625,0.29296875,0.353515625,0.4248046875,0.48046875,0.5029296875,0.4931640625,0.46875,0.44140625,0.4072265625,0.3701171875,0.3330078125,0.302734375,0.2783203125,0.2587890625,0.255859375,0.3154296875,0.4384765625,0.5849609375,0.7021484375,0.751953125,0.740234375,0.705078125,0.642578125,0.57421875,0.5302734375,0.5283203125,0.5595703125,0.6044921875,0.654296875,0.71484375,0.767578125,0.7919921875,0.78515625,0.76171875,0.740234375,0.716796875,0.6708984375,0.59375,0.494140625,0.392578125,0.3115234375,0.2587890625,0.232421875,0.2841796875,0.4169921875,0.58203125,0.71484375,0.7666015625,0.740234375,0.6875,0.6142578125,0.5380859375,0.4853515625,0.4697265625,0.48046875,0.5,0.5126953125,0.5029296875,0.46875,0.4248046875,0.390625,0.380859375,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.5029296875,0.4814453125,0.48046875,0.5078125,0.5556640625,0.603515625,0.634765625,0.66015625,0.6748046875,0.662109375,0.619140625,0.556640625,0.501953125,0.46875,0.451171875,0.466796875,0.5185546875,0.5849609375,0.63671875,0.6533203125,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.6640625,0.69921875,0.7236328125,0.7236328125,0.69921875,0.6640625,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.7109375,0.67578125,0.6513671875,0.6513671875,0.67578125,0.7109375,0.740234375,0.7666015625,0.7822265625,0.7568359375,0.6767578125,0.5595703125,0.4462890625,0.3642578125,0.302734375,0.2900390625,0.3447265625,0.447265625,0.55078125,0.607421875,0.6044921875,0.578125,0.5224609375,0.44140625,0.3583984375,0.294921875,0.2646484375,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.646484375,0.6044921875,0.5185546875,0.43359375,0.3896484375,0.4072265625,0.46875,0.546875,0.6279296875,0.6708984375,0.6435546875,0.552734375,0.4462890625,0.3642578125,0.296875,0.26171875,0.2900390625,0.3798828125,0.4990234375,0.5927734375,0.634765625,0.650390625,0.6240234375,0.568359375,0.5185546875,0.505859375,0.5390625,0.6044921875,0.6650390625,0.6728515625,0.61328125,0.5078125,0.4052734375,0.353515625,0.3642578125,0.38671875,0.3955078125,0.3857421875,0.3671875,0.3505859375,0.349609375,0.3642578125,0.3916015625,0.44921875,0.52734375,0.5986328125,0.6416015625,0.6494140625,0.634765625,0.60546875,0.5341796875,0.4326171875,0.333984375,0.267578125,0.2470703125,0.2587890625,0.2861328125,0.3408203125,0.4111328125,0.4697265625,0.4970703125,0.4921875,0.46875,0.451171875,0.466796875,0.5185546875,0.5849609375,0.63671875,0.6533203125,0.634765625,0.61328125,0.607421875,0.61328125,0.615234375,0.603515625,0.572265625,0.5302734375,0.4873046875,0.4619140625,0.4609375,0.48046875,0.50390625,0.5126953125,0.5,0.4775390625,0.44921875,0.4248046875,0.4169921875,0.427734375,0.44921875,0.46875,0.48046875,0.45703125,0.3994140625,0.328125,0.2705078125,0.248046875,0.2587890625,0.2900390625,0.3583984375,0.4384765625,0.48828125,0.484375,0.43359375,0.3642578125,0.2998046875,0.275390625,0.306640625,0.3798828125,0.4609375,0.5048828125,0.5,0.486328125,0.501953125,0.5517578125,0.6240234375,0.69140625,0.7314453125,0.740234375,0.736328125,0.720703125,0.701171875,0.6904296875,0.6953125,0.71484375,0.740234375,0.7705078125,0.8017578125,0.806640625,0.76171875,0.67578125,0.578125,0.5,0.4248046875,0.3486328125,0.2978515625,0.2919921875,0.3251953125,0.3681640625,0.39453125,0.40234375,0.37109375,0.3134765625,0.267578125,0.259765625,0.2978515625,0.3642578125,0.4248046875,0.4384765625,0.4052734375,0.3525390625,0.3193359375,0.333984375,0.39453125,0.4736328125,0.5703125,0.6572265625,0.701171875,0.697265625,0.6650390625,0.634765625,0.61328125,0.6025390625,0.5908203125,0.560546875,0.5068359375,0.4365234375,0.3642578125,0.3046875,0.2939453125,0.333984375,0.39453125,0.4345703125,0.423828125,0.3642578125,0.2900390625,0.224609375,0.201171875,0.240234375,0.3251953125,0.4130859375,0.46875,0.5146484375,0.5556640625,0.5771484375,0.57421875,0.5537109375,0.53515625,0.5302734375,0.5234375,0.4921875,0.44140625,0.3896484375,0.35546875,0.349609375,0.3642578125,0.380859375,0.392578125,0.3994140625,0.408203125,0.4228515625,0.443359375,0.46875,0.490234375,0.4833984375,0.44140625,0.375,0.30859375,0.267578125,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.490234375,0.4765625,0.48828125,0.5390625,0.4951171875,0.443359375,0.38671875,0.3251953125,0.2822265625,0.3154296875,0.427734375,0.5712890625,0.68359375,0.716796875,0.673828125,0.62109375,0.60546875,0.625,0.6533203125,0.6630859375,0.6337890625,0.5703125,0.5,0.4482421875,0.4345703125,0.46484375,0.5185546875,0.5595703125,0.5703125,0.5625,0.533203125,0.5029296875,0.5,0.5361328125,0.6015625,0.673828125,0.732421875,0.736328125,0.6806640625,0.59765625,0.5322265625,0.5224609375,0.5703125,0.62109375,0.6298828125,0.595703125,0.5439453125,0.509765625,0.5185546875,0.5703125,0.6328125,0.689453125,0.7197265625,0.7119140625,0.67578125,0.638671875,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.318359375,0.2890625,0.2587890625,0.255859375,0.2919921875,0.3564453125,0.4287109375,0.490234375,0.509765625,0.4853515625,0.443359375,0.4189453125,0.4384765625,0.5,0.5576171875,0.5595703125,0.50390625,0.4248046875,0.369140625,0.37109375,0.4287109375,0.5029296875,0.5791015625,0.638671875,0.6689453125,0.671875,0.66796875,0.673828125,0.6767578125,0.6484375,0.580078125,0.48828125,0.4013671875,0.345703125,0.3251953125,0.3076171875,0.271484375,0.2392578125,0.240234375,0.2841796875,0.35546875,0.4287109375,0.49609375,0.5361328125,0.5263671875,0.46875,0.392578125,0.337890625,0.3251953125,0.3427734375,0.419921875,0.5400390625,0.6484375,0.701171875,0.6845703125,0.6220703125,0.5390625,0.427734375,0.3251953125,0.279296875,0.30078125,0.3642578125,0.4287109375,0.484375,0.5107421875,0.4912109375,0.43359375,0.3671875,0.326171875,0.3251953125,0.33984375,0.3662109375,0.3984375,0.42578125,0.439453125,0.4384765625,0.4287109375,0.423828125,0.4326171875,0.4462890625,0.4443359375,0.419921875,0.3759765625,0.3251953125,0.28515625,0.296875,0.3720703125,0.490234375,0.6044921875,0.66796875,0.673828125,0.65234375,0.59375,0.5185546875,0.46484375,0.45703125,0.4931640625,0.55078125,0.62109375,0.7099609375,0.787109375,0.814453125,0.787109375,0.728515625,0.673828125,0.6240234375,0.580078125,0.5390625,0.4951171875,0.443359375,0.38671875,0.3251953125,0.2822265625,0.3154296875,0.427734375,0.5712890625,0.68359375,0.716796875,0.673828125,0.6025390625,0.5068359375,0.4189453125,0.376953125,0.3935546875,0.4453125,0.5,0.541015625,0.5419921875,0.501953125,0.4453125,0.4052734375,0.40625,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.5595703125,0.552734375,0.5546875,0.568359375,0.5888671875,0.609375,0.6220703125,0.62890625,0.619140625,0.5859375,0.53515625,0.482421875,0.4453125,0.4287109375,0.4248046875,0.4462890625,0.4951171875,0.5556640625,0.6044921875,0.6259765625,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.6328125,0.646484375,0.65625,0.65625,0.646484375,0.6328125,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.662109375,0.6484375,0.638671875,0.638671875,0.6484375,0.662109375,0.673828125,0.6865234375,0.7001953125,0.689453125,0.63671875,0.5498046875,0.455078125,0.376953125,0.318359375,0.3173828125,0.380859375,0.478515625,0.5615234375,0.5869140625,0.55078125,0.49609375,0.431640625,0.3720703125,0.333984375,0.3212890625,0.32421875,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.6171875,0.5595703125,0.46484375,0.3798828125,0.341796875,0.365234375,0.4287109375,0.5078125,0.595703125,0.650390625,0.63671875,0.55859375,0.4580078125,0.376953125,0.3115234375,0.283203125,0.31640625,0.4072265625,0.5166015625,0.595703125,0.6220703125,0.6201171875,0.5771484375,0.509765625,0.45703125,0.4462890625,0.484375,0.55078125,0.615234375,0.640625,0.607421875,0.5263671875,0.4365234375,0.380859375,0.376953125,0.3798828125,0.3583984375,0.322265625,0.2958984375,0.2978515625,0.3291015625,0.376953125,0.439453125,0.5361328125,0.6376953125,0.703125,0.7099609375,0.6728515625,0.6220703125,0.55859375,0.455078125,0.341796875,0.263671875,0.2451171875,0.275390625,0.3251953125,0.37890625,0.4345703125,0.4755859375,0.4853515625,0.46875,0.443359375,0.4287109375,0.4248046875,0.4462890625,0.4951171875,0.5556640625,0.6044921875,0.6259765625,0.6220703125,0.619140625,0.640625,0.6728515625,0.689453125,0.6748046875,0.6298828125,0.5703125,0.515625,0.4921875,0.5029296875,0.5322265625,0.552734375,0.5419921875,0.5,0.44140625,0.3662109375,0.302734375,0.2841796875,0.3154296875,0.3740234375,0.4287109375,0.46875,0.4638671875,0.412109375,0.341796875,0.2900390625,0.28515625,0.3251953125,0.38671875,0.4716796875,0.5458984375,0.568359375,0.5283203125,0.453125,0.376953125,0.3173828125,0.3095703125,0.361328125,0.4453125,0.5166015625,0.5361328125,0.5,0.4541015625,0.4375,0.466796875,0.53515625,0.611328125,0.662109375,0.673828125,0.671875,0.666015625,0.658203125,0.6533203125,0.6552734375,0.6630859375,0.673828125,0.689453125,0.7177734375,0.734375,0.7138671875,0.654296875,0.5751953125,0.5,0.421875,0.3330078125,0.2705078125,0.265625,0.31640625,0.3896484375,0.4482421875,0.4853515625,0.47265625,0.4130859375,0.3427734375,0.3017578125,0.31640625,0.376953125,0.4384765625,0.4580078125,0.43359375,0.3916015625,0.3671875,0.38671875,0.4482421875,0.5234375,0.6025390625,0.662109375,0.6826171875,0.666015625,0.6376953125,0.6220703125,0.6162109375,0.6201171875,0.6171875,0.587890625,0.52734375,0.451171875,0.376953125,0.3173828125,0.306640625,0.3466796875,0.4072265625,0.4482421875,0.4375,0.376953125,0.2998046875,0.21875,0.1708984375,0.189453125,0.265625,0.3583984375,0.4287109375,0.4921875,0.5537109375,0.5966796875,0.6083984375,0.59375,0.5751953125,0.5703125,0.55859375,0.505859375,0.4248046875,0.3515625,0.318359375,0.33203125,0.376953125,0.4267578125,0.4638671875,0.4775390625,0.46484375,0.4404296875,0.4248046875,0.4287109375,0.4365234375,0.431640625,0.41015625,0.37890625,0.34765625,0.3291015625,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.515625,0.4892578125,0.4921875,0.494140625,0.5107421875,0.5126953125,0.482421875,0.419921875,0.365234375,0.3740234375,0.44921875,0.5498046875,0.625,0.6337890625,0.5791015625,0.5205078125,0.5087890625,0.544921875,0.599609375,0.6337890625,0.6201171875,0.5595703125,0.4892578125,0.4375,0.423828125,0.4541015625,0.5078125,0.5498046875,0.5595703125,0.5498046875,0.5107421875,0.4619140625,0.4365234375,0.4541015625,0.5087890625,0.5791015625,0.638671875,0.6484375,0.6044921875,0.5390625,0.494140625,0.501953125,0.5595703125,0.6181640625,0.6279296875,0.5888671875,0.529296875,0.490234375,0.5009765625,0.5595703125,0.6279296875,0.681640625,0.697265625,0.671875,0.62109375,0.580078125,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.41015625,0.37109375,0.322265625,0.296875,0.314453125,0.369140625,0.439453125,0.5009765625,0.5185546875,0.4921875,0.447265625,0.419921875,0.4384765625,0.5,0.5576171875,0.5615234375,0.5078125,0.431640625,0.3779296875,0.380859375,0.439453125,0.5126953125,0.5810546875,0.6240234375,0.6298828125,0.607421875,0.583984375,0.5791015625,0.5771484375,0.560546875,0.5263671875,0.484375,0.447265625,0.42578125,0.419921875,0.408203125,0.3681640625,0.3193359375,0.294921875,0.3134765625,0.369140625,0.439453125,0.5087890625,0.55859375,0.5673828125,0.5322265625,0.474609375,0.4306640625,0.419921875,0.43359375,0.4931640625,0.580078125,0.6494140625,0.669921875,0.6357421875,0.5693359375,0.486328125,0.3779296875,0.283203125,0.25,0.287109375,0.3642578125,0.439453125,0.5068359375,0.5546875,0.5625,0.5263671875,0.470703125,0.4287109375,0.419921875,0.421875,0.4267578125,0.4326171875,0.4375,0.4404296875,0.44140625,0.439453125,0.447265625,0.4833984375,0.529296875,0.5537109375,0.5380859375,0.486328125,0.419921875,0.357421875,0.3271484375,0.3515625,0.423828125,0.509765625,0.5673828125,0.5791015625,0.56640625,0.515625,0.4482421875,0.400390625,0.3994140625,0.4423828125,0.509765625,0.5888671875,0.6884765625,0.767578125,0.78515625,0.736328125,0.654296875,0.5791015625,0.5185546875,0.490234375,0.494140625,0.5107421875,0.5126953125,0.482421875,0.419921875,0.365234375,0.3740234375,0.44921875,0.5498046875,0.625,0.6337890625,0.5791015625,0.5,0.3994140625,0.3173828125,0.296875,0.34375,0.4248046875,0.5,0.556640625,0.5654296875,0.5244140625,0.4638671875,0.423828125,0.4326171875,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.5576171875,0.556640625,0.5576171875,0.5595703125,0.5634765625,0.5673828125,0.5693359375,0.568359375,0.5546875,0.52734375,0.4931640625,0.462890625,0.4443359375,0.439453125,0.44140625,0.45703125,0.486328125,0.5224609375,0.5517578125,0.5673828125,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5751953125,0.5732421875,0.5712890625,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.5869140625,0.6123046875,0.6328125,0.623046875,0.5751953125,0.5029296875,0.4296875,0.37109375,0.3681640625,0.423828125,0.50390625,0.5625,0.564453125,0.509765625,0.4404296875,0.3798828125,0.34765625,0.3525390625,0.3837890625,0.412109375,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5576171875,0.501953125,0.419921875,0.3544921875,0.337890625,0.373046875,0.439453125,0.51953125,0.6123046875,0.6767578125,0.673828125,0.60546875,0.509765625,0.4296875,0.36328125,0.326171875,0.3427734375,0.41015625,0.494140625,0.5546875,0.5693359375,0.5595703125,0.51171875,0.4453125,0.3984375,0.3974609375,0.44140625,0.509765625,0.5771484375,0.619140625,0.61328125,0.5615234375,0.490234375,0.4404296875,0.4296875,0.421875,0.3837890625,0.3330078125,0.302734375,0.314453125,0.36328125,0.4296875,0.5087890625,0.615234375,0.7099609375,0.7470703125,0.71484375,0.6416015625,0.5693359375,0.490234375,0.3818359375,0.28515625,0.2451171875,0.275390625,0.34765625,0.419921875,0.4873046875,0.5400390625,0.55859375,0.5361328125,0.4892578125,0.4501953125,0.439453125,0.44140625,0.45703125,0.486328125,0.5224609375,0.5517578125,0.5673828125,0.5693359375,0.5771484375,0.615234375,0.6650390625,0.6923828125,0.6787109375,0.6279296875,0.5595703125,0.4990234375,0.48046875,0.5048828125,0.5478515625,0.57421875,0.5576171875,0.5,0.421875,0.3251953125,0.248046875,0.232421875,0.2822265625,0.365234375,0.439453125,0.49609375,0.50390625,0.4609375,0.3984375,0.35546875,0.36328125,0.419921875,0.49609375,0.58984375,0.6572265625,0.662109375,0.599609375,0.5087890625,0.4296875,0.37109375,0.3671875,0.419921875,0.498046875,0.5546875,0.5546875,0.5,0.4345703125,0.39453125,0.3994140625,0.44921875,0.5185546875,0.568359375,0.5791015625,0.5791015625,0.578125,0.5771484375,0.576171875,0.576171875,0.5771484375,0.5791015625,0.5888671875,0.6220703125,0.658203125,0.6669921875,0.634765625,0.5712890625,0.5,0.419921875,0.326171875,0.259765625,0.2587890625,0.3232421875,0.4130859375,0.4892578125,0.544921875,0.5458984375,0.4912109375,0.4169921875,0.365234375,0.37109375,0.4296875,0.4912109375,0.5087890625,0.482421875,0.4375,0.41015625,0.4287109375,0.4892578125,0.5615234375,0.6240234375,0.6572265625,0.6484375,0.6123046875,0.5791015625,0.5693359375,0.57421875,0.59765625,0.6201171875,0.6142578125,0.5712890625,0.5029296875,0.4296875,0.3701171875,0.359375,0.3994140625,0.4599609375,0.5,0.4892578125,0.4296875,0.3505859375,0.2587890625,0.1953125,0.1982421875,0.267578125,0.361328125,0.439453125,0.5107421875,0.576171875,0.6162109375,0.6181640625,0.5927734375,0.56640625,0.5595703125,0.546875,0.4912109375,0.4111328125,0.3486328125,0.33203125,0.3662109375,0.4296875,0.49609375,0.546875,0.560546875,0.533203125,0.484375,0.447265625,0.439453125,0.4404296875,0.439453125,0.435546875,0.4296875,0.423828125,0.4208984375,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.498046875,0.47265625,0.4853515625,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.4609375,0.5576171875,0.6279296875,0.634765625,0.5791015625,0.517578125,0.4873046875,0.4921875,0.51171875,0.517578125,0.490234375,0.4296875,0.3720703125,0.361328125,0.3974609375,0.4521484375,0.48828125,0.4765625,0.419921875,0.353515625,0.3046875,0.29296875,0.322265625,0.373046875,0.412109375,0.419921875,0.408203125,0.3662109375,0.3134765625,0.28515625,0.298828125,0.3515625,0.419921875,0.478515625,0.4912109375,0.455078125,0.3994140625,0.3623046875,0.373046875,0.4296875,0.486328125,0.494140625,0.4521484375,0.3916015625,0.3515625,0.361328125,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.4423828125,0.458984375,0.48828125,0.5244140625,0.556640625,0.57421875,0.5791015625,0.5712890625,0.5302734375,0.474609375,0.439453125,0.447265625,0.4931640625,0.5595703125,0.6142578125,0.615234375,0.560546875,0.4833984375,0.4296875,0.4326171875,0.4892578125,0.5498046875,0.5712890625,0.5517578125,0.5166015625,0.4970703125,0.5185546875,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.55859375,0.517578125,0.466796875,0.4404296875,0.45703125,0.5107421875,0.5791015625,0.6474609375,0.6982421875,0.7119140625,0.681640625,0.6298828125,0.5888671875,0.5791015625,0.5859375,0.609375,0.630859375,0.623046875,0.5791015625,0.5107421875,0.439453125,0.3642578125,0.287109375,0.25,0.283203125,0.3779296875,0.486328125,0.5693359375,0.6396484375,0.693359375,0.7080078125,0.6806640625,0.6298828125,0.5888671875,0.5791015625,0.578125,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.55859375,0.5595703125,0.5703125,0.61328125,0.666015625,0.697265625,0.685546875,0.6357421875,0.5693359375,0.4990234375,0.4306640625,0.384765625,0.375,0.392578125,0.4140625,0.419921875,0.412109375,0.3818359375,0.3486328125,0.3408203125,0.37109375,0.4306640625,0.5,0.5732421875,0.6533203125,0.69921875,0.6787109375,0.5966796875,0.498046875,0.419921875,0.3662109375,0.3740234375,0.4443359375,0.5400390625,0.609375,0.6142578125,0.5595703125,0.498046875,0.47265625,0.4853515625,0.513671875,0.5263671875,0.5009765625,0.439453125,0.36328125,0.2783203125,0.2255859375,0.2392578125,0.3154296875,0.412109375,0.4892578125,0.546875,0.55859375,0.5224609375,0.466796875,0.4306640625,0.4423828125,0.5,0.568359375,0.6279296875,0.658203125,0.650390625,0.6171875,0.5869140625,0.5791015625,0.576171875,0.560546875,0.5302734375,0.494140625,0.462890625,0.4443359375,0.439453125,0.4384765625,0.4365234375,0.4365234375,0.4375,0.4384765625,0.439453125,0.439453125,0.4423828125,0.45703125,0.4853515625,0.5185546875,0.5478515625,0.564453125,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.41796875,0.4169921875,0.41796875,0.4208984375,0.423828125,0.427734375,0.4296875,0.4443359375,0.501953125,0.583984375,0.6494140625,0.6669921875,0.6328125,0.5693359375,0.51171875,0.49609375,0.5234375,0.56640625,0.5908203125,0.5712890625,0.509765625,0.44140625,0.3955078125,0.39453125,0.439453125,0.5029296875,0.5498046875,0.5595703125,0.5546875,0.5361328125,0.5048828125,0.46875,0.4384765625,0.4228515625,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.4248046875,0.40234375,0.3798828125,0.384765625,0.4248046875,0.490234375,0.5595703125,0.6357421875,0.7265625,0.7919921875,0.794921875,0.7333984375,0.6455078125,0.5693359375,0.4990234375,0.4326171875,0.3876953125,0.3779296875,0.39453125,0.4150390625,0.419921875,0.41015625,0.376953125,0.33984375,0.3291015625,0.359375,0.419921875,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.5576171875,0.513671875,0.45703125,0.4248046875,0.4375,0.4892578125,0.5595703125,0.6357421875,0.71484375,0.75390625,0.720703125,0.6279296875,0.5205078125,0.439453125,0.3642578125,0.287109375,0.2490234375,0.2802734375,0.3720703125,0.478515625,0.5595703125,0.6279296875,0.681640625,0.69921875,0.6748046875,0.626953125,0.5888671875,0.5791015625,0.5751953125,0.5546875,0.5185546875,0.4755859375,0.4404296875,0.421875,0.419921875,0.4306640625,0.4736328125,0.5263671875,0.5576171875,0.5458984375,0.49609375,0.4296875,0.375,0.375,0.431640625,0.5087890625,0.5625,0.55859375,0.5,0.421875,0.3369140625,0.2880859375,0.3095703125,0.3935546875,0.498046875,0.5791015625,0.6396484375,0.65234375,0.6142578125,0.5556640625,0.5146484375,0.5224609375,0.5791015625,0.6552734375,0.74609375,0.8115234375,0.8115234375,0.748046875,0.6572265625,0.5791015625,0.51953125,0.5,0.5244140625,0.564453125,0.5888671875,0.5693359375,0.509765625,0.439453125,0.37890625,0.3486328125,0.359375,0.396484375,0.4296875,0.439453125,0.4404296875,0.439453125,0.435546875,0.4296875,0.423828125,0.4208984375,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.419921875,0.3251953125,0.2578125,0.255859375,0.3203125,0.412109375,0.4892578125,0.5498046875,0.5712890625,0.55078125,0.513671875,0.4921875,0.5107421875,0.5693359375,0.6240234375,0.625,0.5693359375,0.490234375,0.43359375,0.4345703125,0.4892578125,0.5546875,0.5966796875,0.595703125,0.548828125,0.482421875,0.4326171875,0.419921875,0.4306640625,0.4873046875,0.5703125,0.6376953125,0.6572265625,0.6240234375,0.5595703125,0.5009765625,0.490234375,0.529296875,0.5888671875,0.6279296875,0.6181640625,0.5595703125,0.4814453125,0.388671875,0.322265625,0.3212890625,0.38671875,0.4794921875,0.5595703125,0.6259765625,0.6630859375,0.6484375,0.5859375,0.505859375,0.451171875,0.439453125,0.4345703125,0.408203125,0.3818359375,0.3818359375,0.4208984375,0.4873046875,0.5595703125,0.62890625,0.681640625,0.6943359375,0.6640625,0.611328125,0.5693359375,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5859375,0.607421875,0.6259765625,0.6142578125,0.5654296875,0.4931640625,0.419921875,0.36328125,0.369140625,0.4404296875,0.4931640625,0.609375,0.6982421875,0.71875,0.673828125,0.6142578125,0.5625,0.5234375,0.4921875,0.462890625,0.4248046875,0.376953125,0.333984375,0.3193359375,0.3369140625,0.3662109375,0.3828125,0.369140625,0.3251953125,0.27734375,0.24609375,0.244140625,0.2705078125,0.306640625,0.3291015625,0.3251953125,0.306640625,0.263671875,0.2158203125,0.1943359375,0.2138671875,0.2646484375,0.3251953125,0.3798828125,0.4013671875,0.3857421875,0.3515625,0.3271484375,0.3349609375,0.376953125,0.4169921875,0.412109375,0.3642578125,0.3037109375,0.265625,0.2744140625,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.43359375,0.45703125,0.50390625,0.5634765625,0.6201171875,0.6572265625,0.673828125,0.673828125,0.6396484375,0.580078125,0.52734375,0.505859375,0.5244140625,0.5703125,0.6083984375,0.5947265625,0.53125,0.451171875,0.3974609375,0.3984375,0.4482421875,0.50390625,0.541015625,0.556640625,0.564453125,0.580078125,0.6171875,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6044921875,0.5673828125,0.53125,0.5234375,0.5537109375,0.611328125,0.673828125,0.7333984375,0.7783203125,0.7890625,0.763671875,0.7177734375,0.681640625,0.673828125,0.67578125,0.6826171875,0.673828125,0.634765625,0.5693359375,0.494140625,0.4287109375,0.3642578125,0.30078125,0.279296875,0.3251953125,0.427734375,0.5390625,0.6220703125,0.6923828125,0.7509765625,0.7763671875,0.759765625,0.7177734375,0.6826171875,0.673828125,0.669921875,0.6513671875,0.6201171875,0.5888671875,0.5673828125,0.5625,0.5703125,0.5888671875,0.6318359375,0.68359375,0.7138671875,0.708984375,0.671875,0.6220703125,0.5654296875,0.4921875,0.4169921875,0.3603515625,0.33203125,0.3251953125,0.3251953125,0.322265625,0.314453125,0.314453125,0.3388671875,0.3876953125,0.4462890625,0.5,0.5517578125,0.59765625,0.6064453125,0.560546875,0.474609375,0.38671875,0.3251953125,0.2900390625,0.318359375,0.4091796875,0.521484375,0.6025390625,0.6171875,0.5703125,0.515625,0.4892578125,0.4921875,0.5068359375,0.509765625,0.4833984375,0.4287109375,0.3623046875,0.2900390625,0.2451171875,0.2548828125,0.314453125,0.3896484375,0.4482421875,0.4912109375,0.505859375,0.48828125,0.458984375,0.4423828125,0.4560546875,0.5,0.552734375,0.611328125,0.66015625,0.6845703125,0.6845703125,0.6767578125,0.673828125,0.6689453125,0.6455078125,0.5986328125,0.5380859375,0.482421875,0.4443359375,0.4287109375,0.4189453125,0.4111328125,0.4091796875,0.4140625,0.421875,0.427734375,0.4287109375,0.431640625,0.44921875,0.484375,0.53125,0.576171875,0.607421875,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.3154296875,0.3076171875,0.3095703125,0.3232421875,0.3447265625,0.3642578125,0.376953125,0.400390625,0.466796875,0.5615234375,0.6435546875,0.6806640625,0.6669921875,0.6220703125,0.580078125,0.576171875,0.6044921875,0.6376953125,0.646484375,0.615234375,0.55078125,0.4833984375,0.439453125,0.4375,0.4775390625,0.533203125,0.5693359375,0.5703125,0.5546875,0.5166015625,0.4609375,0.400390625,0.353515625,0.330078125,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.384765625,0.3857421875,0.3935546875,0.41796875,0.462890625,0.517578125,0.5703125,0.6279296875,0.701171875,0.759765625,0.7734375,0.7373046875,0.6767578125,0.6220703125,0.56640625,0.5,0.431640625,0.3798828125,0.349609375,0.3359375,0.3251953125,0.3095703125,0.28125,0.2607421875,0.271484375,0.318359375,0.3837890625,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.6005859375,0.544921875,0.4775390625,0.4384765625,0.4482421875,0.5,0.5703125,0.6455078125,0.7158203125,0.7431640625,0.7021484375,0.60546875,0.501953125,0.4287109375,0.3642578125,0.30078125,0.275390625,0.3125,0.4013671875,0.4990234375,0.5703125,0.6318359375,0.689453125,0.7236328125,0.7255859375,0.7021484375,0.6796875,0.673828125,0.6640625,0.615234375,0.5302734375,0.43359375,0.3583984375,0.3232421875,0.3251953125,0.34375,0.3876953125,0.4384765625,0.4697265625,0.4638671875,0.4267578125,0.376953125,0.3408203125,0.359375,0.4306640625,0.515625,0.5673828125,0.5595703125,0.5,0.423828125,0.3505859375,0.3232421875,0.369140625,0.474609375,0.58984375,0.673828125,0.736328125,0.7587890625,0.734375,0.6826171875,0.638671875,0.6337890625,0.673828125,0.7314453125,0.8046875,0.859375,0.8642578125,0.814453125,0.740234375,0.673828125,0.619140625,0.595703125,0.6025390625,0.6220703125,0.62890625,0.60546875,0.55078125,0.4873046875,0.421875,0.375,0.3642578125,0.384765625,0.4130859375,0.4287109375,0.4365234375,0.431640625,0.41015625,0.37890625,0.34765625,0.3291015625,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.419921875,0.3251953125,0.2548828125,0.24609375,0.298828125,0.37890625,0.4482421875,0.5048828125,0.541015625,0.552734375,0.5517578125,0.5537109375,0.576171875,0.6220703125,0.66015625,0.646484375,0.5791015625,0.490234375,0.4228515625,0.4091796875,0.4482421875,0.49609375,0.5244140625,0.5146484375,0.46484375,0.3974609375,0.345703125,0.3251953125,0.330078125,0.3876953125,0.486328125,0.5810546875,0.6318359375,0.623046875,0.5703125,0.5185546875,0.509765625,0.5439453125,0.595703125,0.6298828125,0.62109375,0.5703125,0.5,0.4140625,0.3486328125,0.3447265625,0.4033203125,0.4921875,0.5703125,0.634765625,0.6640625,0.638671875,0.56640625,0.4833984375,0.4326171875,0.4287109375,0.4326171875,0.4150390625,0.3955078125,0.3974609375,0.4345703125,0.498046875,0.5703125,0.6396484375,0.6923828125,0.705078125,0.6748046875,0.6220703125,0.580078125,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6748046875,0.6748046875,0.650390625,0.5888671875,0.498046875,0.4033203125,0.3251953125,0.271484375,0.2900390625,0.384765625,0.5498046875,0.6591796875,0.7451171875,0.771484375,0.740234375,0.689453125,0.6220703125,0.5439453125,0.4716796875,0.41796875,0.384765625,0.3642578125,0.345703125,0.330078125,0.3173828125,0.3056640625,0.29296875,0.27734375,0.2587890625,0.244140625,0.24609375,0.26171875,0.28125,0.2900390625,0.2822265625,0.2587890625,0.2265625,0.181640625,0.142578125,0.134765625,0.1630859375,0.2109375,0.2587890625,0.302734375,0.337890625,0.35546875,0.3564453125,0.349609375,0.349609375,0.3642578125,0.3740234375,0.3486328125,0.294921875,0.240234375,0.2109375,0.2197265625,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.4716796875,0.4892578125,0.5302734375,0.5908203125,0.65625,0.7080078125,0.740234375,0.7578125,0.7412109375,0.6845703125,0.6103515625,0.546875,0.51953125,0.5302734375,0.5390625,0.509765625,0.44921875,0.38671875,0.3505859375,0.3564453125,0.39453125,0.4404296875,0.4892578125,0.541015625,0.59375,0.6455078125,0.6943359375,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.60546875,0.572265625,0.5576171875,0.5771484375,0.62890625,0.689453125,0.740234375,0.7841796875,0.8173828125,0.826171875,0.806640625,0.7724609375,0.74609375,0.740234375,0.740234375,0.7333984375,0.70703125,0.654296875,0.5859375,0.51953125,0.46875,0.4189453125,0.3642578125,0.33984375,0.3720703125,0.4560546875,0.5546875,0.634765625,0.70703125,0.7724609375,0.8095703125,0.806640625,0.7763671875,0.748046875,0.740234375,0.7314453125,0.6904296875,0.6240234375,0.5576171875,0.515625,0.5087890625,0.5302734375,0.560546875,0.603515625,0.646484375,0.6708984375,0.6708984375,0.654296875,0.634765625,0.607421875,0.5478515625,0.4609375,0.369140625,0.2998046875,0.2646484375,0.2587890625,0.26171875,0.2802734375,0.3193359375,0.375,0.4326171875,0.4755859375,0.5,0.5146484375,0.5107421875,0.474609375,0.4111328125,0.33984375,0.28515625,0.2587890625,0.2529296875,0.298828125,0.3896484375,0.48828125,0.5546875,0.5654296875,0.5302734375,0.490234375,0.4765625,0.48828125,0.5107421875,0.5224609375,0.5087890625,0.46875,0.4208984375,0.3671875,0.328125,0.3193359375,0.33984375,0.37109375,0.39453125,0.4130859375,0.4287109375,0.44140625,0.453125,0.4658203125,0.4814453125,0.5,0.5234375,0.56640625,0.6240234375,0.6796875,0.71875,0.7373046875,0.740234375,0.7373046875,0.7197265625,0.6787109375,0.619140625,0.5537109375,0.5009765625,0.46875,0.443359375,0.423828125,0.4189453125,0.4306640625,0.4501953125,0.4658203125,0.46875,0.4697265625,0.474609375,0.4912109375,0.5244140625,0.56640625,0.60546875,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.232421875,0.2099609375,0.208984375,0.2373046875,0.28515625,0.33203125,0.3642578125,0.3984375,0.4619140625,0.541015625,0.609375,0.6474609375,0.650390625,0.634765625,0.6259765625,0.650390625,0.693359375,0.7236328125,0.7177734375,0.6728515625,0.6044921875,0.537109375,0.490234375,0.48046875,0.501953125,0.5341796875,0.546875,0.5302734375,0.498046875,0.4453125,0.3798828125,0.3203125,0.279296875,0.26171875,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.390625,0.4189453125,0.447265625,0.4716796875,0.4921875,0.51171875,0.5302734375,0.5537109375,0.5908203125,0.6318359375,0.66015625,0.666015625,0.6533203125,0.634765625,0.611328125,0.5673828125,0.4990234375,0.4189453125,0.3447265625,0.291015625,0.2587890625,0.23046875,0.201171875,0.1923828125,0.220703125,0.2783203125,0.34375,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.5966796875,0.5234375,0.44140625,0.39453125,0.404296875,0.458984375,0.5302734375,0.6044921875,0.67578125,0.708984375,0.6826171875,0.6064453125,0.5244140625,0.46875,0.419921875,0.3681640625,0.33984375,0.35546875,0.4111328125,0.478515625,0.5302734375,0.5791015625,0.6376953125,0.6923828125,0.7294921875,0.7421875,0.7412109375,0.740234375,0.7255859375,0.6513671875,0.5244140625,0.3857421875,0.283203125,0.244140625,0.2587890625,0.2900390625,0.3330078125,0.375,0.3994140625,0.400390625,0.3837890625,0.3642578125,0.3583984375,0.4033203125,0.4833984375,0.5576171875,0.5888671875,0.5634765625,0.5,0.42578125,0.3603515625,0.34765625,0.4111328125,0.53125,0.654296875,0.740234375,0.8076171875,0.8486328125,0.84765625,0.8095703125,0.759765625,0.7314453125,0.740234375,0.7646484375,0.8046875,0.8427734375,0.853515625,0.8310546875,0.787109375,0.740234375,0.69921875,0.67578125,0.6708984375,0.673828125,0.6689453125,0.6455078125,0.6044921875,0.5537109375,0.4892578125,0.4306640625,0.40234375,0.4111328125,0.4404296875,0.46875,0.490234375,0.4833984375,0.44140625,0.375,0.30859375,0.267578125,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4208984375,0.3291015625,0.2587890625,0.2421875,0.2802734375,0.3427734375,0.39453125,0.44140625,0.4931640625,0.541015625,0.5771484375,0.6005859375,0.6171875,0.634765625,0.6455078125,0.619140625,0.5546875,0.474609375,0.41015625,0.3837890625,0.39453125,0.4130859375,0.42578125,0.4189453125,0.38671875,0.3369140625,0.2900390625,0.2587890625,0.24609375,0.2861328125,0.375,0.4775390625,0.548828125,0.564453125,0.5302734375,0.4921875,0.4853515625,0.5107421875,0.548828125,0.57421875,0.5673828125,0.5302734375,0.4755859375,0.4013671875,0.3388671875,0.328125,0.375,0.4541015625,0.5302734375,0.5947265625,0.6240234375,0.6044921875,0.546875,0.484375,0.455078125,0.46875,0.486328125,0.4716796875,0.4365234375,0.4111328125,0.41796875,0.4619140625,0.5302734375,0.599609375,0.65234375,0.6650390625,0.634765625,0.5810546875,0.5400390625,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.7392578125,0.7216796875,0.66796875,0.5712890625,0.451171875,0.33984375,0.2587890625,0.205078125,0.2275390625,0.328125,0.595703125,0.673828125,0.7353515625,0.7568359375,0.740234375,0.7041015625,0.6318359375,0.53515625,0.447265625,0.3935546875,0.3798828125,0.39453125,0.4072265625,0.3935546875,0.3525390625,0.30078125,0.259765625,0.24609375,0.2587890625,0.283203125,0.32421875,0.361328125,0.3720703125,0.349609375,0.3056640625,0.2587890625,0.2109375,0.1630859375,0.134765625,0.142578125,0.181640625,0.2265625,0.2587890625,0.2900390625,0.3369140625,0.38671875,0.4189453125,0.42578125,0.4130859375,0.39453125,0.369140625,0.3232421875,0.2705078125,0.2314453125,0.2197265625,0.2333984375,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.5283203125,0.52734375,0.541015625,0.5771484375,0.6328125,0.69140625,0.740234375,0.7802734375,0.7919921875,0.75390625,0.6708984375,0.5732421875,0.5,0.46875,0.4443359375,0.40234375,0.3564453125,0.3251953125,0.3203125,0.337890625,0.3642578125,0.39453125,0.4443359375,0.513671875,0.5908203125,0.66015625,0.708984375,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5595703125,0.5283203125,0.5302734375,0.57421875,0.642578125,0.705078125,0.740234375,0.765625,0.78515625,0.7900390625,0.7783203125,0.7587890625,0.744140625,0.740234375,0.7392578125,0.728515625,0.701171875,0.6572265625,0.60546875,0.560546875,0.5302734375,0.49609375,0.4443359375,0.40234375,0.4033203125,0.4521484375,0.529296875,0.6044921875,0.677734375,0.74609375,0.7900390625,0.794921875,0.7724609375,0.7470703125,0.740234375,0.7275390625,0.66796875,0.57421875,0.4833984375,0.4306640625,0.431640625,0.46875,0.513671875,0.552734375,0.5771484375,0.5849609375,0.5849609375,0.5888671875,0.6044921875,0.615234375,0.5869140625,0.513671875,0.4140625,0.322265625,0.26953125,0.2587890625,0.267578125,0.3076171875,0.375,0.447265625,0.4970703125,0.5126953125,0.5,0.47265625,0.4189453125,0.34765625,0.2841796875,0.248046875,0.2431640625,0.2587890625,0.2861328125,0.3408203125,0.4111328125,0.4697265625,0.4970703125,0.4921875,0.46875,0.4482421875,0.4521484375,0.48046875,0.5185546875,0.546875,0.55078125,0.5302734375,0.5029296875,0.474609375,0.447265625,0.421875,0.4013671875,0.3828125,0.3642578125,0.3515625,0.365234375,0.40625,0.4580078125,0.4990234375,0.51171875,0.5,0.486328125,0.501953125,0.5517578125,0.6240234375,0.69140625,0.7314453125,0.740234375,0.7412109375,0.7421875,0.7294921875,0.6923828125,0.6376953125,0.5791015625,0.5302734375,0.4853515625,0.4521484375,0.4443359375,0.4638671875,0.4970703125,0.5234375,0.5302734375,0.525390625,0.5078125,0.4912109375,0.4912109375,0.5166015625,0.55859375,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.2119140625,0.1689453125,0.15625,0.1923828125,0.2646484375,0.3408203125,0.39453125,0.4404296875,0.48828125,0.529296875,0.5576171875,0.57421875,0.587890625,0.6044921875,0.6337890625,0.693359375,0.7568359375,0.787109375,0.7666015625,0.70703125,0.634765625,0.5673828125,0.521484375,0.5048828125,0.5107421875,0.5185546875,0.5068359375,0.46875,0.419921875,0.361328125,0.306640625,0.26953125,0.2568359375,0.2578125,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.443359375,0.49609375,0.53515625,0.5439453125,0.5234375,0.4921875,0.46875,0.451171875,0.4423828125,0.455078125,0.4912109375,0.5390625,0.580078125,0.6044921875,0.62109375,0.619140625,0.580078125,0.5,0.3994140625,0.3134765625,0.2587890625,0.2138671875,0.177734375,0.1728515625,0.208984375,0.271484375,0.330078125,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.5478515625,0.4560546875,0.3642578125,0.3173828125,0.333984375,0.396484375,0.46875,0.5439453125,0.619140625,0.666015625,0.662109375,0.6181640625,0.564453125,0.5302734375,0.4990234375,0.45703125,0.4189453125,0.4033203125,0.4140625,0.44140625,0.46875,0.5009765625,0.5537109375,0.619140625,0.6787109375,0.7197265625,0.7373046875,0.740234375,0.72265625,0.6376953125,0.4970703125,0.3505859375,0.2509765625,0.2255859375,0.2587890625,0.3037109375,0.341796875,0.3662109375,0.375,0.375,0.37890625,0.39453125,0.4248046875,0.4931640625,0.57421875,0.6240234375,0.6201171875,0.5693359375,0.5,0.42578125,0.3603515625,0.34765625,0.4111328125,0.53125,0.654296875,0.740234375,0.8125,0.8759765625,0.9033203125,0.880859375,0.82421875,0.7685546875,0.740234375,0.7255859375,0.7265625,0.7431640625,0.76171875,0.771484375,0.7626953125,0.740234375,0.7158203125,0.69921875,0.6904296875,0.6845703125,0.67578125,0.6591796875,0.634765625,0.6005859375,0.5419921875,0.48046875,0.4443359375,0.44921875,0.484375,0.5302734375,0.5673828125,0.568359375,0.515625,0.4248046875,0.3310546875,0.271484375,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4228515625,0.3388671875,0.275390625,0.2587890625,0.287109375,0.33203125,0.3642578125,0.3984375,0.45703125,0.5302734375,0.5908203125,0.62109375,0.62109375,0.6044921875,0.5830078125,0.55078125,0.5078125,0.4609375,0.41796875,0.3857421875,0.3642578125,0.349609375,0.349609375,0.3564453125,0.35546875,0.337890625,0.302734375,0.2587890625,0.2236328125,0.2314453125,0.2890625,0.375,0.451171875,0.4833984375,0.46875,0.447265625,0.443359375,0.4580078125,0.48046875,0.4951171875,0.4912109375,0.46875,0.43359375,0.3720703125,0.314453125,0.294921875,0.328125,0.3955078125,0.46875,0.5341796875,0.5673828125,0.560546875,0.52734375,0.4951171875,0.494140625,0.5302734375,0.5625,0.546875,0.48828125,0.4228515625,0.388671875,0.4072265625,0.46875,0.5390625,0.591796875,0.6044921875,0.57421875,0.5205078125,0.4794921875,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.7392578125,0.7216796875,0.66796875,0.5712890625,0.451171875,0.33984375,0.2587890625,0.2041015625,0.21875,0.3056640625,0.603515625,0.6396484375,0.6689453125,0.6796875,0.673828125,0.6513671875,0.5859375,0.49609375,0.4189453125,0.3857421875,0.40234375,0.4482421875,0.4873046875,0.48046875,0.4248046875,0.3486328125,0.29296875,0.2861328125,0.3251953125,0.3837890625,0.45703125,0.51171875,0.5166015625,0.466796875,0.392578125,0.3251953125,0.2646484375,0.2138671875,0.1943359375,0.2158203125,0.263671875,0.306640625,0.3251953125,0.345703125,0.3974609375,0.46484375,0.5146484375,0.5244140625,0.49609375,0.4482421875,0.3935546875,0.3359375,0.291015625,0.2763671875,0.2890625,0.3115234375,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.5634765625,0.541015625,0.5185546875,0.51953125,0.5537109375,0.611328125,0.673828125,0.734375,0.779296875,0.7744140625,0.705078125,0.595703125,0.4931640625,0.4287109375,0.376953125,0.3271484375,0.298828125,0.3017578125,0.330078125,0.361328125,0.376953125,0.392578125,0.4306640625,0.490234375,0.560546875,0.6201171875,0.658203125,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.4931640625,0.45703125,0.46484375,0.5185546875,0.59375,0.65234375,0.673828125,0.68359375,0.69140625,0.693359375,0.6884765625,0.6806640625,0.6748046875,0.673828125,0.6728515625,0.666015625,0.650390625,0.6279296875,0.6025390625,0.58203125,0.5703125,0.5498046875,0.498046875,0.4384765625,0.4072265625,0.423828125,0.48046875,0.55078125,0.6240234375,0.69140625,0.7314453125,0.7333984375,0.70703125,0.6806640625,0.673828125,0.6591796875,0.59375,0.4931640625,0.4033203125,0.359375,0.375,0.4287109375,0.484375,0.5146484375,0.5146484375,0.5,0.4912109375,0.5068359375,0.55078125,0.595703125,0.60546875,0.564453125,0.4833984375,0.39453125,0.337890625,0.3251953125,0.3369140625,0.3876953125,0.4638671875,0.5322265625,0.5615234375,0.544921875,0.5,0.4384765625,0.3505859375,0.2646484375,0.21875,0.2275390625,0.2734375,0.3251953125,0.37890625,0.4345703125,0.4755859375,0.4853515625,0.46875,0.443359375,0.4287109375,0.423828125,0.439453125,0.4765625,0.5224609375,0.5595703125,0.5751953125,0.5703125,0.5625,0.5615234375,0.5546875,0.529296875,0.484375,0.4296875,0.376953125,0.337890625,0.3447265625,0.400390625,0.4765625,0.5322265625,0.5390625,0.5,0.4541015625,0.4375,0.466796875,0.53515625,0.611328125,0.662109375,0.673828125,0.6796875,0.7021484375,0.7255859375,0.7236328125,0.689453125,0.6318359375,0.5703125,0.5107421875,0.4658203125,0.4541015625,0.48046875,0.525390625,0.5615234375,0.5703125,0.5615234375,0.5234375,0.4736328125,0.4423828125,0.44921875,0.4921875,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.2607421875,0.1943359375,0.1650390625,0.197265625,0.28125,0.376953125,0.4482421875,0.5029296875,0.5302734375,0.52734375,0.5068359375,0.4931640625,0.5078125,0.55078125,0.6123046875,0.7001953125,0.7783203125,0.8056640625,0.7705078125,0.697265625,0.6220703125,0.5556640625,0.515625,0.5048828125,0.5107421875,0.509765625,0.4833984375,0.4287109375,0.3671875,0.3095703125,0.275390625,0.2734375,0.296875,0.3193359375,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.513671875,0.5859375,0.6318359375,0.6220703125,0.5625,0.4873046875,0.4287109375,0.375,0.3232421875,0.302734375,0.3349609375,0.41015625,0.4912109375,0.55078125,0.6044921875,0.6494140625,0.654296875,0.599609375,0.4990234375,0.3974609375,0.3251953125,0.265625,0.220703125,0.2138671875,0.2490234375,0.3076171875,0.357421875,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.478515625,0.376953125,0.28515625,0.2490234375,0.2802734375,0.353515625,0.4287109375,0.50390625,0.5791015625,0.6318359375,0.642578125,0.619140625,0.5869140625,0.5703125,0.5556640625,0.5244140625,0.4833984375,0.4462890625,0.423828125,0.4208984375,0.4287109375,0.4443359375,0.482421875,0.5380859375,0.5986328125,0.6455078125,0.6689453125,0.673828125,0.6572265625,0.5791015625,0.455078125,0.337890625,0.271484375,0.2744140625,0.3251953125,0.380859375,0.4111328125,0.412109375,0.396484375,0.3876953125,0.404296875,0.4482421875,0.5087890625,0.59375,0.66796875,0.6904296875,0.6513671875,0.5751953125,0.5,0.423828125,0.3505859375,0.3232421875,0.369140625,0.474609375,0.58984375,0.673828125,0.75,0.83203125,0.8837890625,0.875,0.8115234375,0.7333984375,0.673828125,0.625,0.59375,0.5927734375,0.6181640625,0.654296875,0.6767578125,0.673828125,0.6630859375,0.6552734375,0.650390625,0.6455078125,0.6396484375,0.6318359375,0.6220703125,0.6015625,0.552734375,0.4931640625,0.4580078125,0.4658203125,0.509765625,0.5703125,0.6240234375,0.6396484375,0.595703125,0.505859375,0.4052734375,0.33984375,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.42578125,0.3525390625,0.3037109375,0.2978515625,0.3251953125,0.3603515625,0.376953125,0.3984375,0.45703125,0.53515625,0.5986328125,0.6201171875,0.5986328125,0.55078125,0.5048828125,0.4755859375,0.4658203125,0.462890625,0.4521484375,0.423828125,0.376953125,0.3349609375,0.3271484375,0.3515625,0.3857421875,0.4013671875,0.3798828125,0.3251953125,0.26953125,0.2431640625,0.2626953125,0.3203125,0.3876953125,0.427734375,0.4287109375,0.419921875,0.4189453125,0.4248046875,0.43359375,0.439453125,0.4375,0.4287109375,0.4091796875,0.359375,0.3046875,0.2783203125,0.2998046875,0.357421875,0.4287109375,0.4931640625,0.52734375,0.5263671875,0.5078125,0.4970703125,0.5166015625,0.5703125,0.6162109375,0.6025390625,0.529296875,0.435546875,0.37109375,0.37109375,0.4287109375,0.4990234375,0.55078125,0.564453125,0.5341796875,0.48046875,0.439453125,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.6748046875,0.6748046875,0.650390625,0.5888671875,0.498046875,0.4033203125,0.3251953125,0.2685546875,0.2705078125,0.3330078125,0.56640625,0.572265625,0.578125,0.580078125,0.5791015625,0.56640625,0.513671875,0.443359375,0.390625,0.384765625,0.4248046875,0.4892578125,0.544921875,0.546875,0.4931640625,0.4169921875,0.3623046875,0.3642578125,0.419921875,0.49609375,0.5869140625,0.6513671875,0.65234375,0.5888671875,0.4970703125,0.419921875,0.3515625,0.298828125,0.28515625,0.3134765625,0.3662109375,0.408203125,0.419921875,0.4326171875,0.482421875,0.548828125,0.595703125,0.5966796875,0.5546875,0.4892578125,0.4208984375,0.361328125,0.33203125,0.341796875,0.3779296875,0.41015625,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.5498046875,0.51171875,0.4638671875,0.439453125,0.45703125,0.5107421875,0.5791015625,0.6533203125,0.7275390625,0.7607421875,0.72265625,0.626953125,0.51953125,0.439453125,0.373046875,0.3203125,0.3046875,0.330078125,0.37890625,0.4189453125,0.4296875,0.4345703125,0.453125,0.4853515625,0.5234375,0.5556640625,0.57421875,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.4423828125,0.3994140625,0.400390625,0.4482421875,0.515625,0.56640625,0.5791015625,0.5810546875,0.58203125,0.58203125,0.58203125,0.580078125,0.5791015625,0.5791015625,0.5791015625,0.5771484375,0.57421875,0.5693359375,0.5654296875,0.5615234375,0.5595703125,0.546875,0.498046875,0.4326171875,0.3896484375,0.3935546875,0.4404296875,0.509765625,0.5810546875,0.6416015625,0.6708984375,0.6591796875,0.62109375,0.587890625,0.5791015625,0.56640625,0.5087890625,0.4248046875,0.3583984375,0.3408203125,0.375,0.439453125,0.5,0.51953125,0.4970703125,0.45703125,0.43359375,0.451171875,0.509765625,0.57421875,0.61328125,0.60546875,0.552734375,0.482421875,0.431640625,0.419921875,0.4306640625,0.48046875,0.5498046875,0.599609375,0.6044921875,0.564453125,0.5,0.421875,0.322265625,0.2412109375,0.2197265625,0.265625,0.345703125,0.419921875,0.4873046875,0.5400390625,0.55859375,0.5361328125,0.4892578125,0.4501953125,0.439453125,0.44140625,0.455078125,0.4833984375,0.515625,0.5439453125,0.5576171875,0.5595703125,0.564453125,0.5869140625,0.6083984375,0.6044921875,0.5634765625,0.4990234375,0.4296875,0.3740234375,0.373046875,0.4267578125,0.5029296875,0.556640625,0.5546875,0.5,0.4345703125,0.39453125,0.3994140625,0.44921875,0.5185546875,0.568359375,0.5791015625,0.5888671875,0.626953125,0.6748046875,0.69921875,0.681640625,0.6279296875,0.5595703125,0.4912109375,0.4404296875,0.4267578125,0.45703125,0.5087890625,0.5498046875,0.5595703125,0.548828125,0.501953125,0.4384765625,0.3955078125,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.34375,0.259765625,0.2109375,0.228515625,0.3095703125,0.41015625,0.4892578125,0.548828125,0.5625,0.529296875,0.4755859375,0.4404296875,0.4521484375,0.509765625,0.5869140625,0.6865234375,0.765625,0.783203125,0.732421875,0.6474609375,0.5693359375,0.505859375,0.478515625,0.4892578125,0.5146484375,0.5263671875,0.5009765625,0.439453125,0.37109375,0.3173828125,0.2998046875,0.32421875,0.3720703125,0.41015625,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.56640625,0.6513671875,0.7041015625,0.689453125,0.6142578125,0.517578125,0.439453125,0.365234375,0.2841796875,0.236328125,0.2548828125,0.333984375,0.431640625,0.509765625,0.583984375,0.6630859375,0.7080078125,0.685546875,0.6015625,0.4990234375,0.419921875,0.3515625,0.30078125,0.2890625,0.3203125,0.375,0.41796875,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.4296875,0.328125,0.24609375,0.2275390625,0.27734375,0.3623046875,0.439453125,0.5126953125,0.580078125,0.6220703125,0.6240234375,0.5966796875,0.568359375,0.5595703125,0.5546875,0.5380859375,0.509765625,0.478515625,0.453125,0.4404296875,0.439453125,0.4443359375,0.462890625,0.494140625,0.5302734375,0.560546875,0.576171875,0.5791015625,0.5654296875,0.505859375,0.41796875,0.345703125,0.3232421875,0.35546875,0.419921875,0.48046875,0.5,0.4775390625,0.4375,0.4130859375,0.4306640625,0.4892578125,0.56640625,0.6591796875,0.7275390625,0.7314453125,0.669921875,0.578125,0.5,0.421875,0.3369140625,0.2880859375,0.3095703125,0.3935546875,0.498046875,0.5791015625,0.658203125,0.7509765625,0.814453125,0.8134765625,0.7470703125,0.6552734375,0.5791015625,0.5126953125,0.4638671875,0.4521484375,0.482421875,0.533203125,0.5712890625,0.5791015625,0.5771484375,0.576171875,0.5751953125,0.5732421875,0.572265625,0.5712890625,0.5693359375,0.5576171875,0.5146484375,0.4599609375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.6240234375,0.658203125,0.640625,0.57421875,0.490234375,0.4326171875,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.427734375,0.3662109375,0.3359375,0.3466796875,0.3857421875,0.419921875,0.4296875,0.4423828125,0.4931640625,0.5625,0.611328125,0.615234375,0.57421875,0.509765625,0.4501953125,0.4306640625,0.451171875,0.48828125,0.5087890625,0.48828125,0.4296875,0.373046875,0.3623046875,0.3994140625,0.455078125,0.4912109375,0.478515625,0.419921875,0.3525390625,0.3046875,0.296875,0.3330078125,0.3896484375,0.4306640625,0.439453125,0.4384765625,0.4384765625,0.439453125,0.4404296875,0.44140625,0.44140625,0.439453125,0.427734375,0.384765625,0.3310546875,0.3017578125,0.31640625,0.3701171875,0.439453125,0.5029296875,0.5283203125,0.5166015625,0.48828125,0.474609375,0.498046875,0.5595703125,0.6142578125,0.609375,0.54296875,0.451171875,0.3857421875,0.3828125,0.439453125,0.509765625,0.5615234375,0.5751953125,0.544921875,0.4912109375,0.44921875,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.5859375,0.607421875,0.6259765625,0.6142578125,0.5654296875,0.4931640625,0.419921875,0.3603515625,0.3525390625,0.396484375,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.4140625,0.384765625,0.353515625,0.3466796875,0.3779296875,0.439453125,0.509765625,0.5693359375,0.5859375,0.5576171875,0.51171875,0.4833984375,0.5,0.5595703125,0.6376953125,0.7314453125,0.80078125,0.8037109375,0.740234375,0.6484375,0.5693359375,0.4990234375,0.4462890625,0.431640625,0.4609375,0.5146484375,0.5576171875,0.5693359375,0.578125,0.609375,0.6435546875,0.650390625,0.619140625,0.55859375,0.4892578125,0.4248046875,0.3857421875,0.3935546875,0.4462890625,0.5166015625,0.5673828125,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.41015625,0.369140625,0.318359375,0.291015625,0.3056640625,0.359375,0.4296875,0.5126953125,0.6240234375,0.72265625,0.76171875,0.728515625,0.654296875,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.564453125,0.5478515625,0.517578125,0.4814453125,0.451171875,0.4345703125,0.4296875,0.431640625,0.4482421875,0.4814453125,0.521484375,0.556640625,0.5751953125,0.5791015625,0.5869140625,0.6181640625,0.6513671875,0.658203125,0.625,0.5615234375,0.4892578125,0.41796875,0.357421875,0.330078125,0.34375,0.3837890625,0.419921875,0.4296875,0.431640625,0.435546875,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.4384765625,0.4384765625,0.439453125,0.4404296875,0.44140625,0.44140625,0.439453125,0.4296875,0.3935546875,0.3525390625,0.3369140625,0.361328125,0.419921875,0.4892578125,0.5556640625,0.5986328125,0.595703125,0.5478515625,0.48046875,0.4306640625,0.419921875,0.4130859375,0.3896484375,0.3701171875,0.37890625,0.42578125,0.49609375,0.5693359375,0.6279296875,0.6318359375,0.5791015625,0.5009765625,0.4443359375,0.4443359375,0.5,0.5673828125,0.6259765625,0.6552734375,0.6474609375,0.6142578125,0.5849609375,0.5791015625,0.5888671875,0.62109375,0.654296875,0.66015625,0.6259765625,0.5615234375,0.4892578125,0.412109375,0.3310546875,0.287109375,0.3115234375,0.3984375,0.5009765625,0.5791015625,0.6455078125,0.6943359375,0.703125,0.669921875,0.6142578125,0.5712890625,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.453125,0.509765625,0.5927734375,0.6572265625,0.6728515625,0.6357421875,0.5693359375,0.5078125,0.4892578125,0.5146484375,0.55859375,0.5859375,0.5693359375,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.431640625,0.474609375,0.5302734375,0.564453125,0.5546875,0.505859375,0.439453125,0.373046875,0.3232421875,0.310546875,0.33984375,0.390625,0.4306640625,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.564453125,0.60546875,0.6015625,0.552734375,0.4833984375,0.4326171875,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.431640625,0.490234375,0.578125,0.650390625,0.673828125,0.6435546875,0.5791015625,0.4990234375,0.3955078125,0.30859375,0.2841796875,0.330078125,0.412109375,0.4892578125,0.5498046875,0.5595703125,0.51953125,0.458984375,0.4189453125,0.4296875,0.4892578125,0.568359375,0.6552734375,0.708984375,0.6953125,0.6181640625,0.5185546875,0.439453125,0.3837890625,0.3876953125,0.4541015625,0.544921875,0.611328125,0.615234375,0.5595703125,0.4912109375,0.44140625,0.4296875,0.4599609375,0.51171875,0.55078125,0.5595703125,0.546875,0.4990234375,0.435546875,0.392578125,0.396484375,0.4423828125,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5,0.3994140625,0.318359375,0.2998046875,0.349609375,0.43359375,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.5751953125,0.6044921875,0.63671875,0.6455078125,0.6162109375,0.5576171875,0.4892578125,0.4150390625,0.333984375,0.2861328125,0.3046875,0.3837890625,0.4814453125,0.5595703125,0.623046875,0.66015625,0.646484375,0.5869140625,0.5087890625,0.4541015625,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.556640625,0.541015625,0.5126953125,0.48046875,0.4541015625,0.4404296875,0.439453125,0.4345703125,0.412109375,0.3916015625,0.3984375,0.4404296875,0.5078125,0.5791015625,0.6357421875,0.6376953125,0.58203125,0.501953125,0.4453125,0.4443359375,0.5,0.576171875,0.66796875,0.7333984375,0.7353515625,0.6708984375,0.5791015625,0.5,0.4189453125,0.3193359375,0.2421875,0.2275390625,0.2802734375,0.3642578125,0.439453125,0.515625,0.6064453125,0.671875,0.671875,0.6083984375,0.517578125,0.439453125,0.37109375,0.3173828125,0.2998046875,0.32421875,0.3720703125,0.41015625,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.4296875,0.38671875,0.3310546875,0.2978515625,0.30859375,0.3603515625,0.4296875,0.501953125,0.5693359375,0.6103515625,0.61328125,0.58984375,0.564453125,0.5595703125,0.5693359375,0.6044921875,0.64453125,0.6591796875,0.634765625,0.5771484375,0.509765625,0.4443359375,0.4033203125,0.404296875,0.4501953125,0.5146484375,0.5595703125,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.453125,0.4501953125,0.50390625,0.580078125,0.6328125,0.6279296875,0.5693359375,0.5087890625,0.49609375,0.533203125,0.58984375,0.6279296875,0.6181640625,0.5595703125,0.4912109375,0.44140625,0.4296875,0.4599609375,0.51171875,0.55078125,0.5595703125,0.55859375,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.578125,0.5791015625,0.568359375,0.5244140625,0.466796875,0.431640625,0.4404296875,0.490234375,0.5595703125,0.6162109375,0.611328125,0.5419921875,0.447265625,0.3779296875,0.373046875,0.4296875,0.4931640625,0.521484375,0.5126953125,0.4873046875,0.4755859375,0.5,0.5595703125,0.6259765625,0.6748046875,0.685546875,0.65625,0.60546875,0.5673828125,0.5595703125,0.5576171875,0.5419921875,0.5126953125,0.4765625,0.447265625,0.431640625,0.4296875,0.4443359375,0.5048828125,0.5888671875,0.65625,0.6728515625,0.6357421875,0.5693359375,0.5087890625,0.4951171875,0.5302734375,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.33203125,0.33203125,0.337890625,0.3671875,0.421875,0.4873046875,0.55078125,0.6025390625,0.6142578125,0.583984375,0.537109375,0.5068359375,0.5185546875,0.5703125,0.640625,0.7333984375,0.8095703125,0.828125,0.7802734375,0.69921875,0.6220703125,0.55078125,0.4921875,0.470703125,0.4970703125,0.552734375,0.6015625,0.6220703125,0.634765625,0.6513671875,0.65234375,0.623046875,0.5673828125,0.5029296875,0.4482421875,0.4033203125,0.3935546875,0.4345703125,0.515625,0.6044921875,0.6611328125,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.31640625,0.28125,0.2392578125,0.22265625,0.248046875,0.306640625,0.376953125,0.462890625,0.5869140625,0.7119140625,0.78515625,0.787109375,0.736328125,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.607421875,0.576171875,0.52734375,0.4716796875,0.4228515625,0.3916015625,0.376953125,0.3740234375,0.40234375,0.466796875,0.548828125,0.623046875,0.6650390625,0.673828125,0.677734375,0.6923828125,0.6953125,0.666015625,0.6025390625,0.5224609375,0.4482421875,0.375,0.3076171875,0.271484375,0.2783203125,0.318359375,0.359375,0.376953125,0.3896484375,0.41015625,0.4306640625,0.4443359375,0.4462890625,0.439453125,0.4287109375,0.419921875,0.4189453125,0.4248046875,0.43359375,0.439453125,0.4375,0.4287109375,0.4111328125,0.3701171875,0.326171875,0.3095703125,0.3330078125,0.38671875,0.4482421875,0.5048828125,0.5341796875,0.5185546875,0.4609375,0.3876953125,0.3369140625,0.3251953125,0.322265625,0.31640625,0.3291015625,0.376953125,0.45703125,0.544921875,0.6220703125,0.681640625,0.689453125,0.6376953125,0.5537109375,0.482421875,0.462890625,0.5,0.5517578125,0.6044921875,0.64453125,0.6640625,0.6669921875,0.666015625,0.673828125,0.6884765625,0.7099609375,0.71484375,0.681640625,0.6103515625,0.5244140625,0.4482421875,0.3759765625,0.3212890625,0.3203125,0.388671875,0.501953125,0.6083984375,0.673828125,0.7216796875,0.7529296875,0.7470703125,0.7021484375,0.6396484375,0.58984375,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.443359375,0.5087890625,0.60546875,0.6865234375,0.7158203125,0.6865234375,0.6220703125,0.55859375,0.533203125,0.5498046875,0.587890625,0.6142578125,0.6025390625,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.345703125,0.39453125,0.4580078125,0.5029296875,0.5087890625,0.4775390625,0.4287109375,0.3798828125,0.341796875,0.3330078125,0.3544921875,0.392578125,0.421875,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.546875,0.568359375,0.546875,0.484375,0.4052734375,0.3466796875,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.33203125,0.40234375,0.5234375,0.646484375,0.7197265625,0.7236328125,0.673828125,0.5986328125,0.484375,0.369140625,0.3056640625,0.314453125,0.375,0.4482421875,0.5078125,0.5185546875,0.478515625,0.41796875,0.376953125,0.3876953125,0.4482421875,0.525390625,0.611328125,0.666015625,0.6572265625,0.587890625,0.4990234375,0.4287109375,0.380859375,0.388671875,0.455078125,0.5439453125,0.6103515625,0.6181640625,0.5703125,0.51171875,0.47265625,0.4697265625,0.5,0.5439453125,0.5712890625,0.5703125,0.55078125,0.505859375,0.453125,0.4267578125,0.4423828125,0.490234375,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.6025390625,0.5068359375,0.4228515625,0.390625,0.419921875,0.4853515625,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.6142578125,0.615234375,0.61328125,0.5927734375,0.552734375,0.5,0.4482421875,0.3935546875,0.341796875,0.322265625,0.3544921875,0.4287109375,0.5107421875,0.5703125,0.6181640625,0.6435546875,0.6298828125,0.5751953125,0.50390625,0.44921875,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5654296875,0.5419921875,0.5029296875,0.4609375,0.431640625,0.421875,0.4287109375,0.4365234375,0.4375,0.4482421875,0.482421875,0.541015625,0.609375,0.673828125,0.7216796875,0.7158203125,0.650390625,0.556640625,0.482421875,0.462890625,0.5,0.55859375,0.6376953125,0.701171875,0.7099609375,0.658203125,0.576171875,0.5,0.4208984375,0.330078125,0.263671875,0.25390625,0.30078125,0.37109375,0.4287109375,0.4873046875,0.5595703125,0.615234375,0.619140625,0.5703125,0.49609375,0.4287109375,0.3671875,0.3095703125,0.275390625,0.2734375,0.296875,0.3193359375,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.41796875,0.3701171875,0.3046875,0.2607421875,0.2626953125,0.30859375,0.376953125,0.4501953125,0.51953125,0.568359375,0.5849609375,0.576171875,0.5654296875,0.5703125,0.5869140625,0.6220703125,0.6572265625,0.669921875,0.6484375,0.6025390625,0.55078125,0.5048828125,0.482421875,0.49609375,0.541015625,0.5927734375,0.623046875,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.5029296875,0.5087890625,0.56640625,0.6416015625,0.689453125,0.681640625,0.6220703125,0.5595703125,0.5361328125,0.5576171875,0.599609375,0.6298828125,0.62109375,0.5703125,0.51171875,0.47265625,0.4697265625,0.5,0.5439453125,0.5712890625,0.5703125,0.5625,0.5673828125,0.5888671875,0.6201171875,0.6513671875,0.669921875,0.673828125,0.6611328125,0.6064453125,0.5302734375,0.47265625,0.462890625,0.5029296875,0.5703125,0.625,0.6123046875,0.529296875,0.41796875,0.3349609375,0.322265625,0.376953125,0.4443359375,0.490234375,0.5087890625,0.5078125,0.5068359375,0.5263671875,0.5703125,0.6181640625,0.6494140625,0.6513671875,0.625,0.5888671875,0.5673828125,0.5703125,0.57421875,0.552734375,0.50390625,0.443359375,0.39453125,0.373046875,0.376953125,0.4033203125,0.482421875,0.591796875,0.6826171875,0.7158203125,0.6875,0.6220703125,0.5576171875,0.5283203125,0.5419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.2861328125,0.3212890625,0.369140625,0.4306640625,0.49609375,0.5556640625,0.6044921875,0.640625,0.638671875,0.5966796875,0.5380859375,0.49609375,0.494140625,0.5302734375,0.5859375,0.673828125,0.7587890625,0.7978515625,0.7744140625,0.708984375,0.634765625,0.5615234375,0.494140625,0.4609375,0.48046875,0.5380859375,0.599609375,0.634765625,0.6572265625,0.6591796875,0.6240234375,0.5576171875,0.48046875,0.421875,0.39453125,0.3837890625,0.412109375,0.4853515625,0.5849609375,0.6767578125,0.7294921875,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2509765625,0.22265625,0.1923828125,0.189453125,0.2265625,0.2919921875,0.3642578125,0.44921875,0.5732421875,0.7041015625,0.7919921875,0.814453125,0.78515625,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.6064453125,0.5703125,0.5244140625,0.474609375,0.4287109375,0.392578125,0.3642578125,0.3466796875,0.373046875,0.4521484375,0.5634765625,0.6669921875,0.7275390625,0.740234375,0.7421875,0.7421875,0.7177734375,0.6572265625,0.56640625,0.47265625,0.39453125,0.3203125,0.2490234375,0.208984375,0.220703125,0.271484375,0.3291015625,0.3642578125,0.3955078125,0.443359375,0.4912109375,0.5185546875,0.517578125,0.49609375,0.46875,0.447265625,0.443359375,0.4580078125,0.48046875,0.4951171875,0.4912109375,0.46875,0.435546875,0.380859375,0.3251953125,0.2978515625,0.30859375,0.3486328125,0.39453125,0.435546875,0.4521484375,0.4306640625,0.375,0.3115234375,0.2685546875,0.2587890625,0.2578125,0.26171875,0.2919921875,0.361328125,0.4580078125,0.556640625,0.634765625,0.69921875,0.7236328125,0.6923828125,0.619140625,0.5380859375,0.494140625,0.5,0.51953125,0.5478515625,0.5849609375,0.6298828125,0.673828125,0.7119140625,0.740234375,0.767578125,0.787109375,0.767578125,0.6953125,0.5859375,0.4755859375,0.39453125,0.330078125,0.30859375,0.3583984375,0.4716796875,0.6064453125,0.7041015625,0.740234375,0.7568359375,0.7607421875,0.7373046875,0.6845703125,0.619140625,0.5634765625,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.4833984375,0.544921875,0.6357421875,0.708984375,0.7333984375,0.701171875,0.634765625,0.5703125,0.541015625,0.5546875,0.5966796875,0.634765625,0.6396484375,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2919921875,0.34765625,0.4140625,0.4658203125,0.490234375,0.486328125,0.46875,0.451171875,0.4365234375,0.43359375,0.44140625,0.455078125,0.466796875,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.515625,0.515625,0.4853515625,0.4248046875,0.3525390625,0.29296875,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.2509765625,0.31640625,0.4521484375,0.6103515625,0.728515625,0.76953125,0.740234375,0.677734375,0.5615234375,0.421875,0.3193359375,0.2900390625,0.326171875,0.39453125,0.4541015625,0.46484375,0.4248046875,0.3642578125,0.32421875,0.3349609375,0.39453125,0.47265625,0.560546875,0.6240234375,0.6328125,0.5869140625,0.521484375,0.46875,0.4326171875,0.43359375,0.47265625,0.5263671875,0.5654296875,0.56640625,0.5302734375,0.4892578125,0.4716796875,0.482421875,0.513671875,0.5419921875,0.548828125,0.5302734375,0.5,0.462890625,0.44140625,0.453125,0.4970703125,0.5546875,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.6865234375,0.6103515625,0.5380859375,0.501953125,0.5146484375,0.5576171875,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.6064453125,0.5693359375,0.5244140625,0.48046875,0.4423828125,0.4150390625,0.39453125,0.376953125,0.3681640625,0.380859375,0.416015625,0.4638671875,0.505859375,0.5302734375,0.55078125,0.572265625,0.58203125,0.5693359375,0.5361328125,0.4990234375,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5244140625,0.501953125,0.46875,0.44140625,0.4326171875,0.4453125,0.46875,0.4951171875,0.5205078125,0.5517578125,0.59375,0.642578125,0.693359375,0.740234375,0.7763671875,0.7685546875,0.708984375,0.619140625,0.53515625,0.4931640625,0.5,0.5283203125,0.5830078125,0.640625,0.6630859375,0.6357421875,0.572265625,0.5,0.4267578125,0.359375,0.3251953125,0.33984375,0.3896484375,0.44140625,0.46875,0.494140625,0.5341796875,0.5712890625,0.5830078125,0.5595703125,0.515625,0.46875,0.419921875,0.361328125,0.306640625,0.26953125,0.2568359375,0.2578125,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.45703125,0.40234375,0.3251953125,0.267578125,0.2568359375,0.296875,0.3642578125,0.43359375,0.4912109375,0.521484375,0.5244140625,0.5126953125,0.5107421875,0.5302734375,0.5595703125,0.599609375,0.634765625,0.6513671875,0.6455078125,0.625,0.6044921875,0.5908203125,0.595703125,0.619140625,0.6455078125,0.662109375,0.6572265625,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.5712890625,0.5830078125,0.6357421875,0.6923828125,0.7197265625,0.697265625,0.634765625,0.5693359375,0.5302734375,0.52734375,0.548828125,0.5703125,0.56640625,0.5302734375,0.4892578125,0.4716796875,0.482421875,0.513671875,0.5419921875,0.548828125,0.5302734375,0.5087890625,0.515625,0.5576171875,0.6240234375,0.6904296875,0.7314453125,0.740234375,0.7255859375,0.658203125,0.5576171875,0.4716796875,0.4384765625,0.46484375,0.5302734375,0.5859375,0.576171875,0.4990234375,0.39453125,0.3173828125,0.30859375,0.3642578125,0.4345703125,0.49609375,0.533203125,0.5380859375,0.525390625,0.517578125,0.5302734375,0.544921875,0.54296875,0.52734375,0.5078125,0.4990234375,0.5068359375,0.5302734375,0.5478515625,0.5322265625,0.48046875,0.4140625,0.3623046875,0.345703125,0.3642578125,0.40625,0.5,0.619140625,0.708984375,0.7373046875,0.7021484375,0.634765625,0.5654296875,0.5107421875,0.48828125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.30859375,0.3720703125,0.4443359375,0.513671875,0.568359375,0.6064453125,0.634765625,0.6533203125,0.63671875,0.5849609375,0.5185546875,0.466796875,0.451171875,0.46875,0.5078125,0.5849609375,0.673828125,0.728515625,0.7265625,0.6748046875,0.6044921875,0.5283203125,0.4501953125,0.40234375,0.4140625,0.4755859375,0.55078125,0.6044921875,0.640625,0.6337890625,0.57421875,0.4833984375,0.3994140625,0.357421875,0.3642578125,0.3916015625,0.451171875,0.5380859375,0.6298828125,0.69921875,0.734375,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.251953125,0.2265625,0.2041015625,0.208984375,0.2529296875,0.3212890625,0.39453125,0.4755859375,0.5859375,0.6953125,0.767578125,0.787109375,0.767578125,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.5615234375,0.529296875,0.5078125,0.4912109375,0.4697265625,0.4375,0.39453125,0.3583984375,0.3671875,0.435546875,0.546875,0.6572265625,0.7255859375,0.740234375,0.7412109375,0.7373046875,0.70703125,0.6376953125,0.541015625,0.4423828125,0.3642578125,0.2890625,0.2138671875,0.1728515625,0.1923828125,0.2607421875,0.33984375,0.39453125,0.4482421875,0.5234375,0.5966796875,0.6318359375,0.6201171875,0.5771484375,0.5302734375,0.4921875,0.4853515625,0.5107421875,0.548828125,0.57421875,0.5673828125,0.5302734375,0.478515625,0.4091796875,0.3447265625,0.30859375,0.310546875,0.3359375,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.2568359375,0.2568359375,0.28125,0.341796875,0.4326171875,0.5263671875,0.6044921875,0.6748046875,0.7255859375,0.7294921875,0.6787109375,0.5986328125,0.5302734375,0.5,0.48046875,0.4697265625,0.4853515625,0.5380859375,0.6142578125,0.6875,0.740234375,0.78515625,0.814453125,0.7919921875,0.7041015625,0.5732421875,0.44921875,0.3642578125,0.3056640625,0.3095703125,0.39453125,0.5322265625,0.666015625,0.740234375,0.740234375,0.7216796875,0.701171875,0.6708984375,0.626953125,0.572265625,0.5166015625,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.5419921875,0.5927734375,0.662109375,0.712890625,0.7158203125,0.6728515625,0.6044921875,0.5390625,0.505859375,0.5185546875,0.568359375,0.6240234375,0.650390625,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.306640625,0.361328125,0.416015625,0.4609375,0.4912109375,0.51171875,0.5302734375,0.5478515625,0.5625,0.5654296875,0.5576171875,0.5439453125,0.5322265625,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.4814453125,0.46484375,0.44140625,0.4052734375,0.357421875,0.3056640625,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.2294921875,0.2705078125,0.388671875,0.546875,0.6826171875,0.748046875,0.740234375,0.6953125,0.5888671875,0.447265625,0.328125,0.27734375,0.2998046875,0.3642578125,0.423828125,0.4345703125,0.39453125,0.333984375,0.2939453125,0.3046875,0.3642578125,0.44140625,0.529296875,0.599609375,0.6240234375,0.6025390625,0.5615234375,0.5302734375,0.5068359375,0.4951171875,0.49609375,0.5029296875,0.50390625,0.4921875,0.46875,0.4501953125,0.45703125,0.4853515625,0.5166015625,0.52734375,0.509765625,0.46875,0.4248046875,0.396484375,0.40625,0.4580078125,0.533203125,0.599609375,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7080078125,0.6611328125,0.61328125,0.5849609375,0.5859375,0.6083984375,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.552734375,0.478515625,0.40234375,0.3505859375,0.333984375,0.3447265625,0.3642578125,0.3876953125,0.4248046875,0.4658203125,0.494140625,0.5,0.4873046875,0.46875,0.4580078125,0.478515625,0.5224609375,0.5654296875,0.5849609375,0.5703125,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.4638671875,0.4453125,0.4248046875,0.421875,0.443359375,0.484375,0.5302734375,0.5751953125,0.6181640625,0.654296875,0.6796875,0.697265625,0.7158203125,0.740234375,0.7626953125,0.763671875,0.7294921875,0.662109375,0.5859375,0.52734375,0.5,0.4912109375,0.5185546875,0.568359375,0.607421875,0.6083984375,0.56640625,0.5,0.4326171875,0.3955078125,0.4033203125,0.44921875,0.505859375,0.5380859375,0.5302734375,0.5146484375,0.5166015625,0.533203125,0.5517578125,0.5615234375,0.552734375,0.5302734375,0.498046875,0.4453125,0.3798828125,0.3203125,0.279296875,0.26171875,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5166015625,0.458984375,0.375,0.30859375,0.2919921875,0.328125,0.39453125,0.4599609375,0.4951171875,0.4912109375,0.4609375,0.4326171875,0.43359375,0.46875,0.5146484375,0.556640625,0.587890625,0.6044921875,0.611328125,0.619140625,0.634765625,0.6591796875,0.6953125,0.7255859375,0.7294921875,0.7001953125,0.65234375,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.6181640625,0.6376953125,0.6787109375,0.712890625,0.7119140625,0.671875,0.6044921875,0.53515625,0.4814453125,0.4580078125,0.4638671875,0.482421875,0.48828125,0.46875,0.4501953125,0.45703125,0.4853515625,0.5166015625,0.52734375,0.509765625,0.46875,0.431640625,0.4306640625,0.4833984375,0.57421875,0.66796875,0.7275390625,0.740234375,0.7236328125,0.6494140625,0.53515625,0.43359375,0.3857421875,0.4052734375,0.46875,0.52734375,0.529296875,0.4716796875,0.3916015625,0.3349609375,0.3359375,0.39453125,0.46875,0.541015625,0.5849609375,0.5830078125,0.5419921875,0.49609375,0.46875,0.4443359375,0.404296875,0.3671875,0.35546875,0.3779296875,0.4228515625,0.46875,0.5048828125,0.5029296875,0.4609375,0.40234375,0.3603515625,0.3583984375,0.39453125,0.453125,0.5537109375,0.662109375,0.7294921875,0.7294921875,0.67578125,0.6044921875,0.529296875,0.44921875,0.3916015625,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.390625,0.4658203125,0.53515625,0.5830078125,0.60546875,0.61328125,0.6220703125,0.6259765625,0.6044921875,0.5556640625,0.4951171875,0.4462890625,0.4248046875,0.4287109375,0.4521484375,0.515625,0.5986328125,0.6572265625,0.6630859375,0.619140625,0.55078125,0.47265625,0.384765625,0.326171875,0.330078125,0.39453125,0.4814453125,0.55078125,0.599609375,0.59375,0.5283203125,0.4345703125,0.359375,0.33984375,0.376953125,0.43359375,0.5068359375,0.58203125,0.638671875,0.6669921875,0.673828125,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.318359375,0.2919921875,0.265625,0.267578125,0.3076171875,0.375,0.4482421875,0.5244140625,0.6103515625,0.681640625,0.71484375,0.7099609375,0.6884765625,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.498046875,0.4755859375,0.4873046875,0.51171875,0.5234375,0.5009765625,0.4482421875,0.3935546875,0.3759765625,0.4150390625,0.5009765625,0.5966796875,0.6591796875,0.673828125,0.6767578125,0.6826171875,0.669921875,0.6220703125,0.5419921875,0.4541015625,0.376953125,0.30078125,0.220703125,0.177734375,0.201171875,0.28125,0.376953125,0.4482421875,0.5185546875,0.6142578125,0.6982421875,0.73046875,0.701171875,0.6357421875,0.5703125,0.5185546875,0.509765625,0.5439453125,0.595703125,0.6298828125,0.62109375,0.5703125,0.5048828125,0.4296875,0.3681640625,0.3388671875,0.34375,0.36328125,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.3212890625,0.306640625,0.3037109375,0.3330078125,0.396484375,0.4765625,0.55078125,0.626953125,0.7021484375,0.7421875,0.7197265625,0.6455078125,0.560546875,0.5,0.4453125,0.3935546875,0.376953125,0.4189453125,0.5068359375,0.6025390625,0.673828125,0.736328125,0.787109375,0.78515625,0.7119140625,0.5869140625,0.462890625,0.376953125,0.3212890625,0.3349609375,0.42578125,0.5556640625,0.666015625,0.7060546875,0.673828125,0.626953125,0.595703125,0.5771484375,0.560546875,0.5322265625,0.4873046875,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.5791015625,0.619140625,0.66796875,0.693359375,0.67578125,0.62109375,0.55078125,0.484375,0.4462890625,0.45703125,0.509765625,0.5771484375,0.6201171875,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3837890625,0.4287109375,0.45703125,0.4736328125,0.4921875,0.5234375,0.5703125,0.619140625,0.6572265625,0.666015625,0.64453125,0.6064453125,0.5771484375,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.4541015625,0.431640625,0.4287109375,0.4306640625,0.4189453125,0.3818359375,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.275390625,0.279296875,0.3525390625,0.4755859375,0.5966796875,0.6669921875,0.673828125,0.646484375,0.5615234375,0.439453125,0.3359375,0.2900390625,0.3134765625,0.376953125,0.4375,0.4482421875,0.4072265625,0.3466796875,0.306640625,0.3173828125,0.376953125,0.453125,0.53515625,0.5986328125,0.6240234375,0.611328125,0.5859375,0.5703125,0.5576171875,0.5390625,0.513671875,0.4853515625,0.4599609375,0.44140625,0.4287109375,0.427734375,0.455078125,0.4990234375,0.529296875,0.5263671875,0.4873046875,0.4287109375,0.3720703125,0.3447265625,0.369140625,0.44140625,0.5322265625,0.5986328125,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.66015625,0.640625,0.619140625,0.60546875,0.6044921875,0.611328125,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.48046875,0.384765625,0.296875,0.2548828125,0.271484375,0.3232421875,0.376953125,0.435546875,0.5087890625,0.5673828125,0.5810546875,0.544921875,0.484375,0.4287109375,0.3916015625,0.4072265625,0.474609375,0.5595703125,0.6171875,0.619140625,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.423828125,0.4052734375,0.390625,0.40234375,0.4453125,0.5068359375,0.5703125,0.630859375,0.681640625,0.708984375,0.7060546875,0.6845703125,0.6689453125,0.673828125,0.6865234375,0.7021484375,0.7041015625,0.6748046875,0.619140625,0.5546875,0.5,0.4599609375,0.46484375,0.5087890625,0.560546875,0.5849609375,0.5625,0.5,0.4384765625,0.423828125,0.46484375,0.53515625,0.5947265625,0.6083984375,0.5703125,0.521484375,0.490234375,0.4892578125,0.5146484375,0.55078125,0.5732421875,0.5703125,0.5546875,0.5166015625,0.4609375,0.400390625,0.353515625,0.330078125,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.5576171875,0.5009765625,0.419921875,0.357421875,0.34375,0.380859375,0.4482421875,0.5087890625,0.5234375,0.486328125,0.4248046875,0.37890625,0.3798828125,0.4287109375,0.486328125,0.5244140625,0.541015625,0.544921875,0.55078125,0.576171875,0.6220703125,0.677734375,0.7421875,0.7822265625,0.767578125,0.7021484375,0.619140625,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.6201171875,0.6455078125,0.681640625,0.697265625,0.67578125,0.62109375,0.55078125,0.48046875,0.4189453125,0.3857421875,0.388671875,0.4130859375,0.431640625,0.4287109375,0.427734375,0.455078125,0.4990234375,0.529296875,0.5263671875,0.4873046875,0.4287109375,0.375,0.359375,0.4033203125,0.4931640625,0.59375,0.6591796875,0.673828125,0.658203125,0.5859375,0.478515625,0.3837890625,0.341796875,0.365234375,0.4287109375,0.4892578125,0.501953125,0.4658203125,0.41015625,0.375,0.3876953125,0.4482421875,0.5244140625,0.6044921875,0.6513671875,0.6376953125,0.5703125,0.4892578125,0.4287109375,0.37109375,0.2978515625,0.2431640625,0.23828125,0.2880859375,0.3623046875,0.4287109375,0.48046875,0.4921875,0.4619140625,0.4150390625,0.384765625,0.396484375,0.4482421875,0.51953125,0.619140625,0.70703125,0.73828125,0.7021484375,0.626953125,0.55078125,0.4716796875,0.375,0.2958984375,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.4912109375,0.5595703125,0.6044921875,0.6142578125,0.595703125,0.57421875,0.5693359375,0.5673828125,0.5517578125,0.5224609375,0.486328125,0.45703125,0.44140625,0.439453125,0.453125,0.50390625,0.5732421875,0.6220703125,0.623046875,0.578125,0.509765625,0.4296875,0.3369140625,0.271484375,0.2724609375,0.3388671875,0.431640625,0.509765625,0.56640625,0.568359375,0.5126953125,0.4326171875,0.375,0.375,0.4296875,0.5,0.568359375,0.6142578125,0.6240234375,0.6064453125,0.5849609375,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4111328125,0.3779296875,0.33984375,0.328125,0.357421875,0.41796875,0.4892578125,0.5615234375,0.6259765625,0.66015625,0.654296875,0.62109375,0.5888671875,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.4501953125,0.4375,0.47265625,0.5263671875,0.5615234375,0.548828125,0.4892578125,0.423828125,0.3828125,0.390625,0.443359375,0.515625,0.5673828125,0.5791015625,0.5859375,0.609375,0.62890625,0.6201171875,0.5732421875,0.5029296875,0.4296875,0.3515625,0.265625,0.2138671875,0.23046875,0.3095703125,0.41015625,0.4892578125,0.5693359375,0.669921875,0.75,0.7685546875,0.71875,0.6357421875,0.5595703125,0.5009765625,0.490234375,0.529296875,0.5888671875,0.6279296875,0.6181640625,0.5595703125,0.48828125,0.419921875,0.376953125,0.3720703125,0.3955078125,0.421875,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.412109375,0.380859375,0.34765625,0.3408203125,0.3740234375,0.4375,0.509765625,0.5888671875,0.6796875,0.7412109375,0.7373046875,0.6689453125,0.576171875,0.5,0.4248046875,0.34375,0.296875,0.3173828125,0.3994140625,0.5,0.5791015625,0.654296875,0.728515625,0.76171875,0.72265625,0.6240234375,0.5126953125,0.4296875,0.373046875,0.37890625,0.44921875,0.5478515625,0.6220703125,0.6318359375,0.5791015625,0.51953125,0.4931640625,0.5009765625,0.5234375,0.5302734375,0.501953125,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.568359375,0.603515625,0.646484375,0.6630859375,0.638671875,0.580078125,0.509765625,0.44140625,0.3974609375,0.3984375,0.4453125,0.51171875,0.5595703125,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.4814453125,0.509765625,0.5029296875,0.4814453125,0.47265625,0.4990234375,0.5595703125,0.6259765625,0.67578125,0.6884765625,0.6591796875,0.6083984375,0.568359375,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.4404296875,0.421875,0.443359375,0.4814453125,0.5009765625,0.48046875,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.35546875,0.3251953125,0.3486328125,0.4208984375,0.5087890625,0.5673828125,0.5791015625,0.564453125,0.5029296875,0.416015625,0.3466796875,0.328125,0.36328125,0.4296875,0.4892578125,0.5,0.4599609375,0.3994140625,0.359375,0.3701171875,0.4296875,0.5029296875,0.572265625,0.615234375,0.6201171875,0.5947265625,0.568359375,0.5595703125,0.5546875,0.5400390625,0.5146484375,0.484375,0.458984375,0.4443359375,0.439453125,0.4482421875,0.4873046875,0.5390625,0.5693359375,0.5576171875,0.5078125,0.439453125,0.3740234375,0.337890625,0.3525390625,0.416015625,0.4970703125,0.5546875,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5771484375,0.57421875,0.5703125,0.5673828125,0.56640625,0.5673828125,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.4296875,0.3291015625,0.248046875,0.2275390625,0.2744140625,0.35546875,0.4296875,0.505859375,0.5966796875,0.6630859375,0.6650390625,0.6044921875,0.515625,0.439453125,0.3857421875,0.390625,0.45703125,0.5478515625,0.6123046875,0.615234375,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.4326171875,0.40625,0.380859375,0.3828125,0.4228515625,0.48828125,0.5595703125,0.6279296875,0.6806640625,0.6962890625,0.671875,0.6240234375,0.5869140625,0.5791015625,0.5888671875,0.6201171875,0.6533203125,0.66015625,0.62890625,0.568359375,0.5,0.443359375,0.4345703125,0.4755859375,0.53515625,0.572265625,0.5595703125,0.5,0.4404296875,0.435546875,0.486328125,0.5615234375,0.615234375,0.6142578125,0.5595703125,0.4931640625,0.4443359375,0.4326171875,0.4619140625,0.5126953125,0.5517578125,0.5595703125,0.5546875,0.5361328125,0.5048828125,0.46875,0.4384765625,0.4228515625,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5478515625,0.4970703125,0.4287109375,0.3798828125,0.3779296875,0.421875,0.4892578125,0.548828125,0.5537109375,0.50390625,0.4306640625,0.37890625,0.3828125,0.439453125,0.5009765625,0.5283203125,0.51953125,0.4951171875,0.484375,0.509765625,0.5693359375,0.64453125,0.7275390625,0.779296875,0.763671875,0.6865234375,0.5888671875,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.576171875,0.609375,0.6494140625,0.6640625,0.638671875,0.580078125,0.509765625,0.4384765625,0.3779296875,0.3505859375,0.36328125,0.4013671875,0.4326171875,0.439453125,0.4482421875,0.4873046875,0.5390625,0.5693359375,0.5576171875,0.5078125,0.439453125,0.375,0.3408203125,0.3583984375,0.4248046875,0.5087890625,0.56640625,0.5791015625,0.56640625,0.5078125,0.4228515625,0.35546875,0.337890625,0.373046875,0.439453125,0.5009765625,0.517578125,0.48828125,0.4404296875,0.412109375,0.4287109375,0.4892578125,0.5673828125,0.6533203125,0.70703125,0.6923828125,0.615234375,0.517578125,0.439453125,0.36328125,0.2724609375,0.2080078125,0.20703125,0.271484375,0.3623046875,0.439453125,0.4990234375,0.515625,0.4873046875,0.44140625,0.4130859375,0.4296875,0.4892578125,0.568359375,0.6630859375,0.734375,0.740234375,0.6796875,0.5888671875,0.509765625,0.4287109375,0.328125,0.248046875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.3828125,0.3916015625,0.4365234375,0.505859375,0.5791015625,0.6455078125,0.6796875,0.658203125,0.5869140625,0.4970703125,0.435546875,0.419921875,0.421875,0.4384765625,0.470703125,0.5087890625,0.541015625,0.5576171875,0.5595703125,0.56640625,0.59765625,0.6357421875,0.6484375,0.62109375,0.560546875,0.4892578125,0.41015625,0.31640625,0.2509765625,0.251953125,0.318359375,0.4111328125,0.4892578125,0.5498046875,0.568359375,0.5458984375,0.5068359375,0.486328125,0.5078125,0.5693359375,0.6357421875,0.669921875,0.6494140625,0.580078125,0.4931640625,0.43359375,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.546875,0.498046875,0.4326171875,0.3896484375,0.3935546875,0.4404296875,0.509765625,0.5771484375,0.6201171875,0.6171875,0.5673828125,0.4990234375,0.44921875,0.439453125,0.4521484375,0.4990234375,0.5615234375,0.6025390625,0.599609375,0.5546875,0.4892578125,0.43359375,0.42578125,0.46875,0.53125,0.5712890625,0.5595703125,0.5,0.427734375,0.3642578125,0.33203125,0.3408203125,0.376953125,0.41015625,0.419921875,0.4345703125,0.4931640625,0.5771484375,0.642578125,0.6591796875,0.6240234375,0.5595703125,0.4794921875,0.3779296875,0.2958984375,0.27734375,0.3271484375,0.412109375,0.4892578125,0.5673828125,0.6533203125,0.7041015625,0.685546875,0.603515625,0.5009765625,0.419921875,0.359375,0.3486328125,0.388671875,0.4501953125,0.4931640625,0.486328125,0.4296875,0.3671875,0.3359375,0.3583984375,0.4267578125,0.5107421875,0.568359375,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.5693359375,0.5185546875,0.4462890625,0.392578125,0.384765625,0.423828125,0.4892578125,0.568359375,0.662109375,0.7314453125,0.7373046875,0.6767578125,0.5869140625,0.509765625,0.4296875,0.3271484375,0.2431640625,0.220703125,0.2685546875,0.3525390625,0.4296875,0.5126953125,0.6240234375,0.72265625,0.76171875,0.728515625,0.654296875,0.5791015625,0.517578125,0.490234375,0.498046875,0.5205078125,0.5283203125,0.5009765625,0.439453125,0.384765625,0.3896484375,0.4560546875,0.5478515625,0.61328125,0.6162109375,0.5595703125,0.486328125,0.4169921875,0.3720703125,0.3662109375,0.388671875,0.4130859375,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.6162109375,0.6103515625,0.541015625,0.4443359375,0.3720703125,0.365234375,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.451171875,0.4990234375,0.5634765625,0.6064453125,0.6044921875,0.55859375,0.4892578125,0.4306640625,0.427734375,0.482421875,0.560546875,0.6171875,0.6162109375,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.453125,0.509765625,0.5927734375,0.6572265625,0.6728515625,0.6357421875,0.5693359375,0.49609375,0.423828125,0.3759765625,0.3662109375,0.38671875,0.412109375,0.419921875,0.4150390625,0.3955078125,0.37890625,0.390625,0.4384765625,0.5078125,0.5791015625,0.63671875,0.6455078125,0.6025390625,0.5400390625,0.4990234375,0.509765625,0.5693359375,0.63671875,0.673828125,0.6591796875,0.595703125,0.5126953125,0.4541015625,0.439453125,0.4404296875,0.453125,0.478515625,0.509765625,0.5380859375,0.5546875,0.5595703125,0.5703125,0.6123046875,0.6650390625,0.6943359375,0.6796875,0.6279296875,0.5595703125,0.4873046875,0.4189453125,0.373046875,0.365234375,0.38671875,0.412109375,0.419921875,0.421875,0.4228515625,0.423828125,0.42578125,0.4267578125,0.427734375,0.4296875,0.4306640625,0.431640625,0.4306640625,0.4287109375,0.427734375,0.4287109375,0.4296875,0.431640625,0.4326171875,0.4345703125,0.435546875,0.4365234375,0.4384765625,0.439453125,0.4521484375,0.4990234375,0.5615234375,0.6025390625,0.599609375,0.5546875,0.4892578125,0.4150390625,0.3359375,0.291015625,0.3134765625,0.3974609375,0.5,0.5791015625,0.6572265625,0.7490234375,0.814453125,0.814453125,0.7490234375,0.6572265625,0.5791015625,0.517578125,0.4892578125,0.49609375,0.517578125,0.5263671875,0.5,0.439453125,0.3759765625,0.3388671875,0.3525390625,0.412109375,0.490234375,0.544921875,0.5595703125,0.5478515625,0.4921875,0.41015625,0.3447265625,0.3271484375,0.36328125,0.4296875,0.4990234375,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.451171875,0.439453125,0.4775390625,0.5361328125,0.5751953125,0.56640625,0.509765625,0.451171875,0.4345703125,0.4599609375,0.5009765625,0.5224609375,0.501953125,0.439453125,0.3701171875,0.3173828125,0.3046875,0.3349609375,0.3876953125,0.4296875,0.439453125,0.443359375,0.4609375,0.4931640625,0.53125,0.5615234375,0.5771484375,0.5791015625,0.57421875,0.5546875,0.51953125,0.4794921875,0.4443359375,0.4248046875,0.419921875,0.41015625,0.3779296875,0.341796875,0.33203125,0.361328125,0.4208984375,0.4892578125,0.5478515625,0.56640625,0.5439453125,0.5048828125,0.482421875,0.5009765625,0.5595703125,0.61328125,0.60546875,0.5361328125,0.4423828125,0.3759765625,0.3720703125,0.4296875,0.5107421875,0.611328125,0.69140625,0.7080078125,0.6572265625,0.57421875,0.5,0.431640625,0.373046875,0.34375,0.3515625,0.384765625,0.4140625,0.419921875,0.4296875,0.478515625,0.5478515625,0.5966796875,0.6005859375,0.5576171875,0.4892578125,0.421875,0.37890625,0.3818359375,0.431640625,0.5,0.5498046875,0.5595703125,0.5673828125,0.607421875,0.66015625,0.6923828125,0.68359375,0.6357421875,0.5693359375,0.5,0.4326171875,0.3896484375,0.3837890625,0.40625,0.431640625,0.439453125,0.4345703125,0.412109375,0.3916015625,0.3984375,0.4404296875,0.5078125,0.5791015625,0.6357421875,0.6357421875,0.5771484375,0.49609375,0.439453125,0.44140625,0.5,0.5810546875,0.68359375,0.7666015625,0.787109375,0.73828125,0.6552734375,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.6279296875,0.6328125,0.580078125,0.50390625,0.4501953125,0.453125,0.509765625,0.587890625,0.6806640625,0.7470703125,0.748046875,0.6826171875,0.5888671875,0.509765625,0.431640625,0.34765625,0.2998046875,0.400390625,0.4443359375,0.515625,0.5986328125,0.673828125,0.736328125,0.7529296875,0.6962890625,0.578125,0.4453125,0.353515625,0.3251953125,0.322265625,0.3505859375,0.4111328125,0.484375,0.544921875,0.5732421875,0.5703125,0.5673828125,0.5859375,0.6103515625,0.61328125,0.580078125,0.5185546875,0.4482421875,0.369140625,0.28125,0.22265625,0.2265625,0.2919921875,0.3779296875,0.4482421875,0.501953125,0.525390625,0.5224609375,0.51171875,0.5185546875,0.556640625,0.6220703125,0.6845703125,0.701171875,0.6484375,0.5400390625,0.419921875,0.3427734375,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.5498046875,0.498046875,0.4384765625,0.4072265625,0.423828125,0.48046875,0.55078125,0.6162109375,0.6484375,0.626953125,0.5595703125,0.48046875,0.431640625,0.4287109375,0.4462890625,0.486328125,0.5302734375,0.552734375,0.5390625,0.498046875,0.4482421875,0.4091796875,0.419921875,0.4755859375,0.541015625,0.5771484375,0.560546875,0.5,0.423828125,0.3447265625,0.28515625,0.2646484375,0.28125,0.3095703125,0.3251953125,0.349609375,0.4228515625,0.525390625,0.611328125,0.646484375,0.625,0.5703125,0.4970703125,0.396484375,0.3037109375,0.267578125,0.298828125,0.3720703125,0.4482421875,0.5244140625,0.6044921875,0.6435546875,0.611328125,0.517578125,0.408203125,0.3251953125,0.2646484375,0.248046875,0.2841796875,0.349609375,0.4052734375,0.416015625,0.376953125,0.3359375,0.3408203125,0.4052734375,0.509765625,0.611328125,0.669921875,0.673828125,0.662109375,0.6484375,0.638671875,0.638671875,0.6484375,0.662109375,0.673828125,0.669921875,0.6142578125,0.5205078125,0.4296875,0.3837890625,0.39453125,0.4482421875,0.5185546875,0.611328125,0.69140625,0.71875,0.6845703125,0.6171875,0.55078125,0.4775390625,0.3701171875,0.2666015625,0.2158203125,0.236328125,0.302734375,0.376953125,0.462890625,0.5869140625,0.7119140625,0.78515625,0.787109375,0.736328125,0.673828125,0.6162109375,0.578125,0.5576171875,0.544921875,0.5244140625,0.4853515625,0.4287109375,0.3828125,0.396484375,0.4697265625,0.5634765625,0.6279296875,0.6279296875,0.5703125,0.494140625,0.412109375,0.3447265625,0.310546875,0.3095703125,0.3212890625,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.6259765625,0.6123046875,0.525390625,0.4052734375,0.30859375,0.28125,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.439453125,0.4833984375,0.541015625,0.576171875,0.5673828125,0.517578125,0.4482421875,0.3896484375,0.3876953125,0.447265625,0.5361328125,0.60546875,0.6171875,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.443359375,0.5087890625,0.60546875,0.6865234375,0.7158203125,0.6865234375,0.6220703125,0.5439453125,0.44921875,0.3623046875,0.3095703125,0.298828125,0.3125,0.3251953125,0.3349609375,0.349609375,0.3828125,0.4443359375,0.5263671875,0.607421875,0.673828125,0.7216796875,0.71875,0.6650390625,0.5947265625,0.55078125,0.5615234375,0.6220703125,0.6884765625,0.7236328125,0.701171875,0.625,0.5263671875,0.453125,0.4287109375,0.4208984375,0.423828125,0.4462890625,0.4833984375,0.5244140625,0.5556640625,0.5703125,0.5888671875,0.6318359375,0.6796875,0.701171875,0.681640625,0.630859375,0.5703125,0.5029296875,0.4228515625,0.3486328125,0.3056640625,0.298828125,0.3125,0.3251953125,0.3359375,0.34375,0.3486328125,0.353515625,0.359375,0.3671875,0.376953125,0.3857421875,0.3876953125,0.3818359375,0.373046875,0.3671875,0.369140625,0.376953125,0.38671875,0.39453125,0.400390625,0.4052734375,0.4111328125,0.4189453125,0.4287109375,0.4462890625,0.486328125,0.5302734375,0.552734375,0.5390625,0.498046875,0.4482421875,0.39453125,0.349609375,0.3447265625,0.3994140625,0.4990234375,0.6015625,0.673828125,0.7412109375,0.822265625,0.87890625,0.87890625,0.822265625,0.7412109375,0.673828125,0.615234375,0.5703125,0.5419921875,0.525390625,0.5068359375,0.4755859375,0.4287109375,0.380859375,0.35546875,0.369140625,0.423828125,0.4951171875,0.5498046875,0.5703125,0.5654296875,0.5078125,0.4140625,0.328125,0.2900390625,0.3134765625,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.4990234375,0.4833984375,0.509765625,0.5576171875,0.59375,0.591796875,0.55078125,0.5087890625,0.498046875,0.5146484375,0.53515625,0.5322265625,0.494140625,0.4287109375,0.359375,0.306640625,0.2939453125,0.32421875,0.376953125,0.4189453125,0.4287109375,0.4365234375,0.4716796875,0.5341796875,0.603515625,0.6552734375,0.677734375,0.673828125,0.65625,0.61328125,0.541015625,0.4580078125,0.3857421875,0.3427734375,0.3251953125,0.3115234375,0.2890625,0.2763671875,0.291015625,0.3359375,0.3935546875,0.4482421875,0.4931640625,0.515625,0.5146484375,0.50390625,0.501953125,0.5244140625,0.5703125,0.60546875,0.5771484375,0.490234375,0.3876953125,0.3193359375,0.3193359375,0.376953125,0.45703125,0.5537109375,0.6328125,0.65625,0.6201171875,0.556640625,0.5,0.447265625,0.39453125,0.3544921875,0.3349609375,0.33203125,0.3330078125,0.3251953125,0.328125,0.376953125,0.4560546875,0.5234375,0.544921875,0.513671875,0.4482421875,0.3828125,0.3505859375,0.3720703125,0.439453125,0.5185546875,0.5673828125,0.5703125,0.568359375,0.5966796875,0.64453125,0.68359375,0.693359375,0.6689453125,0.6220703125,0.56640625,0.5,0.439453125,0.4052734375,0.40234375,0.416015625,0.4287109375,0.4365234375,0.4375,0.4482421875,0.482421875,0.541015625,0.609375,0.673828125,0.71875,0.701171875,0.6201171875,0.517578125,0.4462890625,0.4423828125,0.5,0.58203125,0.69140625,0.7890625,0.830078125,0.8046875,0.7392578125,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.681640625,0.689453125,0.6416015625,0.56640625,0.5087890625,0.5029296875,0.55078125,0.62109375,0.70703125,0.7724609375,0.7763671875,0.7177734375,0.6298828125,0.55078125,0.4775390625,0.41015625,0.3857421875,0.447265625,0.5048828125,0.58203125,0.6650390625,0.740234375,0.802734375,0.8115234375,0.7373046875,0.5908203125,0.4248046875,0.3056640625,0.2587890625,0.2431640625,0.2724609375,0.34765625,0.44140625,0.5166015625,0.5458984375,0.5302734375,0.5107421875,0.5166015625,0.53515625,0.541015625,0.517578125,0.4638671875,0.39453125,0.318359375,0.2392578125,0.1923828125,0.2041015625,0.265625,0.33984375,0.39453125,0.4345703125,0.455078125,0.4638671875,0.4775390625,0.5107421875,0.5654296875,0.634765625,0.6962890625,0.703125,0.6318359375,0.501953125,0.365234375,0.27734375,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.49609375,0.4443359375,0.40234375,0.4033203125,0.4521484375,0.529296875,0.6044921875,0.66796875,0.6884765625,0.6513671875,0.57421875,0.4951171875,0.45703125,0.46875,0.49609375,0.5166015625,0.51953125,0.49609375,0.4560546875,0.41796875,0.39453125,0.388671875,0.4287109375,0.501953125,0.568359375,0.5927734375,0.564453125,0.5,0.4208984375,0.3232421875,0.2373046875,0.1923828125,0.197265625,0.228515625,0.2587890625,0.296875,0.3759765625,0.474609375,0.5546875,0.5869140625,0.5712890625,0.5302734375,0.47265625,0.380859375,0.2890625,0.2421875,0.2587890625,0.3212890625,0.39453125,0.470703125,0.548828125,0.5849609375,0.5498046875,0.4521484375,0.341796875,0.2587890625,0.1943359375,0.166015625,0.189453125,0.255859375,0.3291015625,0.3701171875,0.3642578125,0.3583984375,0.4052734375,0.5048828125,0.6240234375,0.716796875,0.75390625,0.740234375,0.7109375,0.67578125,0.6513671875,0.6513671875,0.67578125,0.7109375,0.740234375,0.7509765625,0.7021484375,0.5966796875,0.474609375,0.3857421875,0.3623046875,0.39453125,0.44921875,0.53515625,0.6240234375,0.6796875,0.6845703125,0.650390625,0.6044921875,0.544921875,0.4404296875,0.3251953125,0.2509765625,0.244140625,0.2939453125,0.3642578125,0.44921875,0.5732421875,0.7041015625,0.7919921875,0.814453125,0.78515625,0.740234375,0.6962890625,0.65625,0.62109375,0.587890625,0.552734375,0.513671875,0.46875,0.4365234375,0.4521484375,0.5107421875,0.576171875,0.6103515625,0.591796875,0.5302734375,0.4541015625,0.3681640625,0.294921875,0.25390625,0.24609375,0.2548828125,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.5869140625,0.580078125,0.4990234375,0.3779296875,0.2724609375,0.2314453125,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.4775390625,0.509765625,0.546875,0.5576171875,0.52734375,0.4658203125,0.39453125,0.333984375,0.32421875,0.375,0.4609375,0.5361328125,0.560546875,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.4833984375,0.544921875,0.6357421875,0.708984375,0.7333984375,0.701171875,0.634765625,0.552734375,0.439453125,0.322265625,0.2421875,0.216796875,0.232421875,0.2587890625,0.2890625,0.3408203125,0.4189453125,0.5166015625,0.6123046875,0.6884765625,0.740234375,0.771484375,0.75,0.681640625,0.6044921875,0.560546875,0.57421875,0.634765625,0.7041015625,0.751953125,0.748046875,0.685546875,0.58984375,0.5087890625,0.46875,0.44140625,0.4140625,0.4033203125,0.4189453125,0.45703125,0.4990234375,0.5302734375,0.5615234375,0.607421875,0.646484375,0.654296875,0.6259765625,0.5771484375,0.5302734375,0.4755859375,0.39453125,0.3056640625,0.2421875,0.220703125,0.2333984375,0.2587890625,0.283203125,0.2998046875,0.30859375,0.314453125,0.3232421875,0.33984375,0.3642578125,0.3857421875,0.3896484375,0.375,0.3525390625,0.337890625,0.341796875,0.3642578125,0.388671875,0.4052734375,0.4140625,0.4189453125,0.427734375,0.4443359375,0.46875,0.49609375,0.5166015625,0.51953125,0.49609375,0.4560546875,0.41796875,0.39453125,0.3779296875,0.3798828125,0.4189453125,0.4990234375,0.599609375,0.685546875,0.740234375,0.7900390625,0.849609375,0.892578125,0.892578125,0.849609375,0.7900390625,0.740234375,0.6923828125,0.6376953125,0.5830078125,0.5380859375,0.5078125,0.4873046875,0.46875,0.4482421875,0.4267578125,0.4169921875,0.4296875,0.462890625,0.5,0.5302734375,0.5419921875,0.4990234375,0.4140625,0.328125,0.28515625,0.3017578125,0.3642578125,0.4345703125,0.490234375,0.5,0.4521484375,0.37109375,0.296875,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5634765625,0.541015625,0.546875,0.57421875,0.6044921875,0.6171875,0.6044921875,0.5927734375,0.6044921875,0.6240234375,0.626953125,0.59765625,0.5390625,0.46875,0.3994140625,0.3466796875,0.333984375,0.3642578125,0.41796875,0.458984375,0.46875,0.4794921875,0.52734375,0.607421875,0.6904296875,0.74609375,0.759765625,0.740234375,0.70703125,0.64453125,0.5517578125,0.447265625,0.3544921875,0.2919921875,0.2587890625,0.2333984375,0.2197265625,0.2314453125,0.2705078125,0.3232421875,0.369140625,0.39453125,0.4130859375,0.4326171875,0.4521484375,0.4716796875,0.4912109375,0.5107421875,0.5302734375,0.5341796875,0.486328125,0.3994140625,0.3173828125,0.279296875,0.30078125,0.3642578125,0.439453125,0.51953125,0.5771484375,0.5908203125,0.5634765625,0.5244140625,0.5,0.4794921875,0.451171875,0.4140625,0.369140625,0.3251953125,0.287109375,0.2587890625,0.24609375,0.28515625,0.3642578125,0.44140625,0.4775390625,0.45703125,0.39453125,0.3310546875,0.310546875,0.34765625,0.4248046875,0.50390625,0.5419921875,0.5302734375,0.5087890625,0.513671875,0.546875,0.59375,0.6328125,0.6474609375,0.634765625,0.609375,0.5595703125,0.5,0.4521484375,0.4345703125,0.4443359375,0.46875,0.4951171875,0.5205078125,0.5517578125,0.59375,0.642578125,0.693359375,0.740234375,0.7685546875,0.73046875,0.6318359375,0.5185546875,0.4443359375,0.44140625,0.5,0.5810546875,0.689453125,0.7900390625,0.8427734375,0.833984375,0.7880859375,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.697265625,0.7197265625,0.6923828125,0.6357421875,0.5830078125,0.5712890625,0.6044921875,0.6591796875,0.7333984375,0.794921875,0.806640625,0.759765625,0.6806640625,0.6044921875,0.53515625,0.48828125,0.4912109375,0.501953125,0.5439453125,0.6005859375,0.6689453125,0.740234375,0.8046875,0.8251953125,0.7646484375,0.626953125,0.45703125,0.32421875,0.2587890625,0.2255859375,0.2451171875,0.3173828125,0.4111328125,0.4833984375,0.501953125,0.46875,0.4326171875,0.4287109375,0.4501953125,0.4716796875,0.46875,0.4296875,0.3642578125,0.291015625,0.22265625,0.189453125,0.208984375,0.267578125,0.328125,0.3642578125,0.3857421875,0.392578125,0.3974609375,0.4189453125,0.466796875,0.533203125,0.6044921875,0.666015625,0.6767578125,0.61328125,0.4912109375,0.3603515625,0.27734375,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.4189453125,0.3642578125,0.33984375,0.3720703125,0.4560546875,0.5546875,0.634765625,0.6962890625,0.708984375,0.6650390625,0.587890625,0.51953125,0.498046875,0.5302734375,0.5673828125,0.5693359375,0.5263671875,0.4560546875,0.388671875,0.35546875,0.3642578125,0.3955078125,0.4677734375,0.5546875,0.61328125,0.6162109375,0.568359375,0.5,0.41796875,0.3095703125,0.208984375,0.15625,0.1650390625,0.2109375,0.2587890625,0.3115234375,0.3857421875,0.4609375,0.5078125,0.5166015625,0.49609375,0.46875,0.4306640625,0.357421875,0.275390625,0.228515625,0.23828125,0.29296875,0.3642578125,0.44140625,0.5224609375,0.56640625,0.5380859375,0.4482421875,0.3408203125,0.2587890625,0.189453125,0.142578125,0.1455078125,0.2041015625,0.291015625,0.36328125,0.39453125,0.4267578125,0.509765625,0.6240234375,0.7265625,0.78125,0.7783203125,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.771484375,0.744140625,0.6484375,0.5185546875,0.40625,0.353515625,0.3642578125,0.3994140625,0.466796875,0.5517578125,0.6240234375,0.66015625,0.658203125,0.634765625,0.59375,0.50390625,0.3916015625,0.30859375,0.2880859375,0.326171875,0.39453125,0.4755859375,0.5859375,0.6953125,0.767578125,0.787109375,0.767578125,0.740234375,0.712890625,0.68359375,0.6513671875,0.6181640625,0.5859375,0.556640625,0.5302734375,0.5126953125,0.52734375,0.5625,0.587890625,0.5810546875,0.537109375,0.46875,0.39453125,0.31640625,0.2568359375,0.2314453125,0.2373046875,0.25390625,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.5302734375,0.5419921875,0.48828125,0.3916015625,0.2958984375,0.248046875,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.5361328125,0.5576171875,0.57421875,0.560546875,0.509765625,0.4375,0.3642578125,0.30078125,0.2763671875,0.3056640625,0.375,0.447265625,0.482421875,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5419921875,0.5927734375,0.662109375,0.712890625,0.7158203125,0.6728515625,0.6044921875,0.5205078125,0.3994140625,0.275390625,0.1953125,0.1796875,0.212890625,0.2587890625,0.310546875,0.38671875,0.482421875,0.580078125,0.658203125,0.7099609375,0.740234375,0.7529296875,0.7138671875,0.634765625,0.5576171875,0.521484375,0.5419921875,0.6044921875,0.6787109375,0.7490234375,0.779296875,0.748046875,0.669921875,0.5859375,0.5302734375,0.478515625,0.4111328125,0.35546875,0.33984375,0.3681640625,0.419921875,0.46875,0.5166015625,0.5654296875,0.59375,0.5849609375,0.546875,0.5009765625,0.46875,0.4326171875,0.361328125,0.275390625,0.2119140625,0.193359375,0.2158203125,0.2587890625,0.2998046875,0.3232421875,0.328125,0.3251953125,0.330078125,0.353515625,0.39453125,0.4326171875,0.439453125,0.4140625,0.375,0.349609375,0.3564453125,0.39453125,0.435546875,0.458984375,0.4638671875,0.4609375,0.4658203125,0.4892578125,0.5302734375,0.5673828125,0.5693359375,0.5263671875,0.4560546875,0.388671875,0.35546875,0.3642578125,0.3876953125,0.431640625,0.5,0.580078125,0.654296875,0.7080078125,0.740234375,0.76953125,0.8037109375,0.828125,0.828125,0.8037109375,0.76953125,0.740234375,0.70703125,0.6513671875,0.5849609375,0.533203125,0.5087890625,0.5126953125,0.5302734375,0.541015625,0.5205078125,0.4765625,0.43359375,0.4140625,0.4287109375,0.46875,0.501953125,0.484375,0.421875,0.3525390625,0.3154296875,0.3330078125,0.39453125,0.4677734375,0.529296875,0.546875,0.5,0.4072265625,0.31640625,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6064453125,0.576171875,0.5576171875,0.560546875,0.583984375,0.61328125,0.634765625,0.6611328125,0.7041015625,0.7373046875,0.7314453125,0.6806640625,0.6044921875,0.5302734375,0.4599609375,0.4072265625,0.39453125,0.4248046875,0.478515625,0.51953125,0.5302734375,0.541015625,0.5927734375,0.673828125,0.748046875,0.787109375,0.779296875,0.740234375,0.69140625,0.6259765625,0.5439453125,0.455078125,0.373046875,0.3076171875,0.2587890625,0.2197265625,0.2109375,0.240234375,0.294921875,0.3486328125,0.3740234375,0.3642578125,0.3505859375,0.3603515625,0.39453125,0.4384765625,0.47265625,0.482421875,0.46875,0.439453125,0.3740234375,0.30078125,0.2587890625,0.26953125,0.32421875,0.39453125,0.4638671875,0.5185546875,0.541015625,0.5302734375,0.50390625,0.48828125,0.5,0.5185546875,0.529296875,0.513671875,0.4609375,0.384765625,0.3115234375,0.2587890625,0.2275390625,0.2490234375,0.3173828125,0.39453125,0.4384765625,0.4248046875,0.3642578125,0.302734375,0.2900390625,0.333984375,0.4111328125,0.4794921875,0.5009765625,0.46875,0.42578125,0.3974609375,0.4052734375,0.4521484375,0.5205078125,0.5771484375,0.6044921875,0.615234375,0.59375,0.546875,0.4990234375,0.4775390625,0.490234375,0.5302734375,0.5751953125,0.6181640625,0.654296875,0.6796875,0.697265625,0.7158203125,0.740234375,0.75,0.6982421875,0.5966796875,0.4912109375,0.4306640625,0.439453125,0.5,0.578125,0.67578125,0.76171875,0.806640625,0.8017578125,0.7705078125,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.671875,0.7119140625,0.712890625,0.6787109375,0.6376953125,0.6181640625,0.634765625,0.6708984375,0.7314453125,0.7900390625,0.8095703125,0.7763671875,0.7080078125,0.634765625,0.5703125,0.5419921875,0.56640625,0.5419921875,0.544921875,0.5625,0.6064453125,0.673828125,0.7431640625,0.7890625,0.7705078125,0.6748046875,0.5322265625,0.4033203125,0.3251953125,0.27734375,0.2802734375,0.337890625,0.4169921875,0.474609375,0.4775390625,0.4287109375,0.3779296875,0.369140625,0.3994140625,0.44140625,0.462890625,0.439453125,0.376953125,0.3056640625,0.248046875,0.2265625,0.2529296875,0.3076171875,0.357421875,0.376953125,0.3818359375,0.3681640625,0.35546875,0.3671875,0.4111328125,0.478515625,0.55078125,0.615234375,0.640625,0.603515625,0.513671875,0.41015625,0.3408203125,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.3642578125,0.30078125,0.279296875,0.3251953125,0.427734375,0.5390625,0.6220703125,0.681640625,0.6923828125,0.6484375,0.578125,0.5244140625,0.521484375,0.5703125,0.6181640625,0.6103515625,0.5400390625,0.44140625,0.3623046875,0.3408203125,0.376953125,0.439453125,0.533203125,0.6240234375,0.6650390625,0.640625,0.5732421875,0.5,0.4169921875,0.3076171875,0.2099609375,0.1689453125,0.1943359375,0.259765625,0.3251953125,0.3896484375,0.4521484375,0.4951171875,0.5,0.4755859375,0.4453125,0.4287109375,0.408203125,0.3525390625,0.28515625,0.24609375,0.2548828125,0.3076171875,0.376953125,0.4560546875,0.5439453125,0.5986328125,0.5849609375,0.5068359375,0.40625,0.3251953125,0.251953125,0.1845703125,0.16015625,0.201171875,0.2919921875,0.3857421875,0.4482421875,0.5107421875,0.611328125,0.716796875,0.78125,0.7822265625,0.7353515625,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.724609375,0.7275390625,0.6650390625,0.556640625,0.4462890625,0.3828125,0.376953125,0.39453125,0.4375,0.501953125,0.56640625,0.611328125,0.6279296875,0.6220703125,0.59765625,0.52734375,0.4326171875,0.361328125,0.34375,0.380859375,0.4482421875,0.5244140625,0.6103515625,0.681640625,0.71484375,0.7099609375,0.6884765625,0.673828125,0.662109375,0.6484375,0.630859375,0.6123046875,0.5947265625,0.5810546875,0.5703125,0.56640625,0.583984375,0.603515625,0.6015625,0.564453125,0.5009765625,0.4287109375,0.3564453125,0.2919921875,0.255859375,0.2587890625,0.2890625,0.318359375,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.4951171875,0.5283203125,0.5107421875,0.44921875,0.375,0.328125,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.5751953125,0.59375,0.6044921875,0.583984375,0.52734375,0.451171875,0.376953125,0.310546875,0.2705078125,0.2763671875,0.32421875,0.3876953125,0.427734375,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5791015625,0.619140625,0.66796875,0.693359375,0.67578125,0.62109375,0.55078125,0.4677734375,0.3525390625,0.2431640625,0.1875,0.2021484375,0.26171875,0.3251953125,0.3916015625,0.47265625,0.5546875,0.6162109375,0.6494140625,0.6640625,0.673828125,0.6708984375,0.6220703125,0.54296875,0.4755859375,0.4541015625,0.4853515625,0.55078125,0.6298828125,0.720703125,0.783203125,0.7841796875,0.7236328125,0.6396484375,0.5703125,0.4990234375,0.4013671875,0.3125,0.275390625,0.30078125,0.3642578125,0.4287109375,0.490234375,0.541015625,0.560546875,0.5380859375,0.4912109375,0.447265625,0.4287109375,0.408203125,0.3525390625,0.28125,0.232421875,0.228515625,0.2666015625,0.3251953125,0.3798828125,0.4033203125,0.396484375,0.376953125,0.3701171875,0.3935546875,0.4482421875,0.4990234375,0.5078125,0.4736328125,0.421875,0.3876953125,0.396484375,0.4482421875,0.501953125,0.525390625,0.5185546875,0.4990234375,0.4921875,0.515625,0.5703125,0.6181640625,0.6103515625,0.5400390625,0.44140625,0.3623046875,0.3408203125,0.376953125,0.4326171875,0.5,0.5673828125,0.619140625,0.6494140625,0.6630859375,0.673828125,0.6845703125,0.6982421875,0.7080078125,0.7080078125,0.6982421875,0.6845703125,0.673828125,0.6533203125,0.6044921875,0.541015625,0.49609375,0.490234375,0.521484375,0.5703125,0.607421875,0.591796875,0.5244140625,0.439453125,0.3818359375,0.3798828125,0.4287109375,0.4794921875,0.484375,0.4462890625,0.3955078125,0.3671875,0.3857421875,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.6044921875,0.5673828125,0.52734375,0.509765625,0.52734375,0.5703125,0.6220703125,0.6796875,0.7529296875,0.8037109375,0.798828125,0.736328125,0.6484375,0.5703125,0.5,0.4482421875,0.4345703125,0.46484375,0.5185546875,0.5595703125,0.5703125,0.5810546875,0.62890625,0.6982421875,0.7509765625,0.7626953125,0.73046875,0.673828125,0.6142578125,0.5625,0.51953125,0.4794921875,0.4365234375,0.384765625,0.3251953125,0.2744140625,0.265625,0.3037109375,0.3642578125,0.412109375,0.4169921875,0.376953125,0.3359375,0.3349609375,0.375,0.431640625,0.4716796875,0.470703125,0.4287109375,0.3701171875,0.29296875,0.234375,0.23046875,0.2861328125,0.3701171875,0.4482421875,0.51171875,0.541015625,0.52734375,0.4892578125,0.45703125,0.458984375,0.5,0.5537109375,0.60546875,0.6220703125,0.580078125,0.4921875,0.396484375,0.3251953125,0.27734375,0.2802734375,0.333984375,0.404296875,0.4482421875,0.4375,0.376953125,0.3173828125,0.306640625,0.3505859375,0.4208984375,0.474609375,0.4775390625,0.4287109375,0.365234375,0.3056640625,0.283203125,0.3203125,0.40234375,0.490234375,0.55078125,0.5927734375,0.5966796875,0.564453125,0.521484375,0.5,0.5166015625,0.5703125,0.630859375,0.681640625,0.708984375,0.7060546875,0.6845703125,0.6689453125,0.673828125,0.669921875,0.6142578125,0.5234375,0.443359375,0.41015625,0.435546875,0.5,0.5751953125,0.654296875,0.7138671875,0.734375,0.7177734375,0.689453125,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.62109375,0.67578125,0.697265625,0.681640625,0.6455078125,0.6201171875,0.6220703125,0.6416015625,0.69140625,0.74609375,0.7724609375,0.7509765625,0.693359375,0.6220703125,0.560546875,0.5439453125,0.580078125,0.5498046875,0.513671875,0.494140625,0.517578125,0.5791015625,0.6552734375,0.728515625,0.7587890625,0.7158203125,0.6142578125,0.501953125,0.419921875,0.3623046875,0.353515625,0.3974609375,0.4619140625,0.505859375,0.498046875,0.439453125,0.380859375,0.37109375,0.4091796875,0.4658203125,0.5029296875,0.490234375,0.4296875,0.359375,0.306640625,0.2919921875,0.3212890625,0.375,0.41796875,0.4296875,0.4228515625,0.392578125,0.357421875,0.3466796875,0.376953125,0.4384765625,0.509765625,0.5771484375,0.619140625,0.6123046875,0.5576171875,0.484375,0.431640625,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.3642578125,0.287109375,0.25,0.283203125,0.3779296875,0.486328125,0.5693359375,0.62890625,0.6396484375,0.5986328125,0.5361328125,0.4931640625,0.5009765625,0.5595703125,0.615234375,0.6103515625,0.5439453125,0.451171875,0.3828125,0.3759765625,0.4296875,0.5078125,0.6083984375,0.689453125,0.7099609375,0.6611328125,0.5771484375,0.5,0.41796875,0.3154296875,0.232421875,0.2119140625,0.2607421875,0.34375,0.419921875,0.48828125,0.54296875,0.5615234375,0.5380859375,0.490234375,0.4501953125,0.439453125,0.427734375,0.3837890625,0.328125,0.2958984375,0.3076171875,0.3603515625,0.4296875,0.5087890625,0.6025390625,0.6669921875,0.6640625,0.5947265625,0.5,0.419921875,0.341796875,0.2587890625,0.2099609375,0.2294921875,0.3115234375,0.4111328125,0.4892578125,0.568359375,0.669921875,0.75390625,0.7783203125,0.7353515625,0.6552734375,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.6435546875,0.67578125,0.654296875,0.583984375,0.4990234375,0.44140625,0.4296875,0.4345703125,0.4541015625,0.486328125,0.5234375,0.552734375,0.568359375,0.5693359375,0.5556640625,0.5029296875,0.431640625,0.380859375,0.3779296875,0.421875,0.4892578125,0.5615234375,0.6259765625,0.66015625,0.654296875,0.62109375,0.5888671875,0.5791015625,0.5771484375,0.5751953125,0.5712890625,0.5673828125,0.5634765625,0.5615234375,0.5595703125,0.564453125,0.5908203125,0.6171875,0.6171875,0.578125,0.51171875,0.439453125,0.369140625,0.314453125,0.296875,0.322265625,0.37109375,0.41015625,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.5087890625,0.5576171875,0.5654296875,0.529296875,0.4716796875,0.4287109375,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.56640625,0.591796875,0.6171875,0.61328125,0.5703125,0.5029296875,0.4296875,0.3603515625,0.310546875,0.30078125,0.333984375,0.3896484375,0.4306640625,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.568359375,0.603515625,0.646484375,0.6630859375,0.638671875,0.580078125,0.509765625,0.427734375,0.32421875,0.23828125,0.2158203125,0.26171875,0.34375,0.419921875,0.4912109375,0.560546875,0.6083984375,0.6201171875,0.603515625,0.583984375,0.5791015625,0.5693359375,0.5205078125,0.451171875,0.40234375,0.3984375,0.44140625,0.509765625,0.58984375,0.689453125,0.765625,0.7783203125,0.72265625,0.63671875,0.5595703125,0.478515625,0.3720703125,0.2802734375,0.2490234375,0.287109375,0.3642578125,0.439453125,0.5078125,0.560546875,0.57421875,0.5458984375,0.4931640625,0.451171875,0.439453125,0.427734375,0.3837890625,0.326171875,0.2919921875,0.3017578125,0.3515625,0.419921875,0.4794921875,0.4990234375,0.474609375,0.4345703125,0.41015625,0.4296875,0.4892578125,0.5478515625,0.55859375,0.51953125,0.4599609375,0.4208984375,0.4306640625,0.4892578125,0.5498046875,0.568359375,0.544921875,0.50390625,0.48046875,0.4990234375,0.5595703125,0.615234375,0.6103515625,0.5439453125,0.451171875,0.3828125,0.3759765625,0.4296875,0.4990234375,0.56640625,0.611328125,0.62109375,0.6044921875,0.583984375,0.5791015625,0.5810546875,0.5830078125,0.5849609375,0.5849609375,0.5830078125,0.5810546875,0.5791015625,0.5673828125,0.5244140625,0.46875,0.4345703125,0.4443359375,0.4931640625,0.5595703125,0.61328125,0.6083984375,0.5419921875,0.451171875,0.38671875,0.3837890625,0.439453125,0.4990234375,0.5146484375,0.4853515625,0.4384765625,0.41015625,0.4287109375,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.4990234375,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.55859375,0.517578125,0.4658203125,0.4375,0.451171875,0.5029296875,0.5693359375,0.6455078125,0.736328125,0.7998046875,0.798828125,0.732421875,0.638671875,0.5595703125,0.4892578125,0.4375,0.423828125,0.4541015625,0.5078125,0.5498046875,0.5595703125,0.5693359375,0.6123046875,0.6689453125,0.7041015625,0.6953125,0.646484375,0.5791015625,0.517578125,0.4873046875,0.4912109375,0.5078125,0.51171875,0.4814453125,0.419921875,0.361328125,0.3515625,0.3916015625,0.4521484375,0.494140625,0.486328125,0.4296875,0.373046875,0.3642578125,0.404296875,0.46484375,0.505859375,0.49609375,0.439453125,0.3642578125,0.2783203125,0.2236328125,0.2353515625,0.310546875,0.4091796875,0.4892578125,0.5498046875,0.5634765625,0.5283203125,0.4716796875,0.43359375,0.4423828125,0.5,0.57421875,0.6552734375,0.7021484375,0.681640625,0.599609375,0.4990234375,0.419921875,0.3623046875,0.353515625,0.396484375,0.458984375,0.5,0.4892578125,0.4296875,0.3701171875,0.359375,0.400390625,0.462890625,0.505859375,0.498046875,0.439453125,0.36328125,0.28125,0.232421875,0.251953125,0.33203125,0.431640625,0.509765625,0.5673828125,0.5830078125,0.5546875,0.5087890625,0.482421875,0.5,0.5595703125,0.6279296875,0.6806640625,0.6962890625,0.671875,0.6240234375,0.5869140625,0.5791015625,0.5693359375,0.5185546875,0.4482421875,0.3955078125,0.3896484375,0.431640625,0.5,0.5712890625,0.634765625,0.6669921875,0.658203125,0.6220703125,0.5888671875,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.580078125,0.638671875,0.6640625,0.6494140625,0.609375,0.576171875,0.5693359375,0.5810546875,0.6240234375,0.677734375,0.70703125,0.6923828125,0.6396484375,0.5693359375,0.5087890625,0.498046875,0.5380859375,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5029296875,0.421875,0.36328125,0.36328125,0.419921875,0.5009765625,0.6123046875,0.7138671875,0.755859375,0.7255859375,0.6533203125,0.5791015625,0.5205078125,0.5087890625,0.544921875,0.599609375,0.6337890625,0.6201171875,0.5595703125,0.4990234375,0.48828125,0.52734375,0.58984375,0.6328125,0.6259765625,0.5693359375,0.5029296875,0.4541015625,0.443359375,0.4755859375,0.5283203125,0.5693359375,0.5791015625,0.5673828125,0.5146484375,0.44140625,0.38671875,0.3798828125,0.421875,0.4892578125,0.5615234375,0.623046875,0.6552734375,0.6484375,0.615234375,0.5859375,0.5791015625,0.5908203125,0.6328125,0.685546875,0.7138671875,0.7001953125,0.6474609375,0.5791015625,0.498046875,0.388671875,0.2919921875,0.2529296875,0.2841796875,0.357421875,0.4296875,0.486328125,0.4970703125,0.4599609375,0.404296875,0.3681640625,0.380859375,0.439453125,0.5009765625,0.5244140625,0.5107421875,0.482421875,0.470703125,0.49609375,0.5595703125,0.63671875,0.7216796875,0.7734375,0.755859375,0.6767578125,0.5771484375,0.5,0.4248046875,0.33984375,0.287109375,0.3017578125,0.37890625,0.478515625,0.5595703125,0.6298828125,0.6845703125,0.7021484375,0.6767578125,0.6279296875,0.5888671875,0.5791015625,0.5693359375,0.5283203125,0.4765625,0.447265625,0.4599609375,0.5107421875,0.5791015625,0.6572265625,0.7490234375,0.8134765625,0.8115234375,0.7431640625,0.6494140625,0.5693359375,0.48828125,0.3876953125,0.3076171875,0.291015625,0.341796875,0.4248046875,0.5,0.57421875,0.6552734375,0.703125,0.6845703125,0.60546875,0.5078125,0.4296875,0.353515625,0.265625,0.2041015625,0.20703125,0.2724609375,0.36328125,0.439453125,0.509765625,0.576171875,0.619140625,0.625,0.6025390625,0.5771484375,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.4130859375,0.3837890625,0.3505859375,0.34375,0.3759765625,0.4375,0.509765625,0.5771484375,0.619140625,0.6123046875,0.5576171875,0.484375,0.431640625,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.4521484375,0.505859375,0.583984375,0.64453125,0.658203125,0.623046875,0.5595703125,0.4931640625,0.4453125,0.4375,0.4716796875,0.52734375,0.5693359375,0.5791015625,0.576171875,0.55859375,0.5283203125,0.4912109375,0.4599609375,0.443359375,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.412109375,0.3876953125,0.3681640625,0.3759765625,0.421875,0.4892578125,0.5595703125,0.626953125,0.6796875,0.6982421875,0.6748046875,0.62890625,0.58984375,0.5791015625,0.57421875,0.556640625,0.5244140625,0.48828125,0.458984375,0.4423828125,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.4296875,0.478515625,0.5478515625,0.5966796875,0.6005859375,0.5576171875,0.4892578125,0.412109375,0.3291015625,0.2822265625,0.3056640625,0.392578125,0.4970703125,0.5791015625,0.6455078125,0.6806640625,0.662109375,0.5927734375,0.505859375,0.4443359375,0.4296875,0.419921875,0.3876953125,0.353515625,0.345703125,0.376953125,0.439453125,0.509765625,0.5849609375,0.6669921875,0.712890625,0.6904296875,0.6083984375,0.5078125,0.4296875,0.3564453125,0.2822265625,0.2470703125,0.2822265625,0.3779296875,0.486328125,0.5693359375,0.638671875,0.6884765625,0.6982421875,0.6650390625,0.609375,0.568359375,0.5595703125,0.5517578125,0.5146484375,0.466796875,0.4423828125,0.4580078125,0.5107421875,0.5791015625,0.6357421875,0.6376953125,0.5830078125,0.505859375,0.451171875,0.453125,0.509765625,0.568359375,0.578125,0.5390625,0.4794921875,0.4404296875,0.451171875,0.509765625,0.5654296875,0.5654296875,0.505859375,0.4228515625,0.3642578125,0.36328125,0.419921875,0.4814453125,0.51171875,0.5078125,0.4912109375,0.4873046875,0.517578125,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.412109375,0.3720703125,0.3203125,0.2900390625,0.3017578125,0.3515625,0.419921875,0.4814453125,0.5087890625,0.501953125,0.4814453125,0.4755859375,0.505859375,0.5693359375,0.6279296875,0.630859375,0.5751953125,0.4951171875,0.4365234375,0.4345703125,0.4892578125,0.5673828125,0.66796875,0.751953125,0.775390625,0.732421875,0.6533203125,0.5791015625,0.509765625,0.4423828125,0.3984375,0.390625,0.41015625,0.43359375,0.439453125,0.4296875,0.38671875,0.3310546875,0.2978515625,0.30859375,0.3603515625,0.4296875,0.5087890625,0.599609375,0.662109375,0.6572265625,0.58984375,0.49609375,0.419921875,0.353515625,0.3037109375,0.2919921875,0.322265625,0.3759765625,0.41796875,0.4296875,0.44140625,0.484375,0.5390625,0.5703125,0.55859375,0.5078125,0.439453125,0.384765625,0.3896484375,0.458984375,0.5546875,0.625,0.6328125,0.5791015625,0.5224609375,0.5126953125,0.5517578125,0.6083984375,0.6435546875,0.6298828125,0.5693359375,0.5087890625,0.4951171875,0.5302734375,0.5869140625,0.6259765625,0.6162109375,0.5595703125,0.4814453125,0.384765625,0.3095703125,0.294921875,0.34765625,0.4326171875,0.509765625,0.5673828125,0.5771484375,0.5341796875,0.470703125,0.4267578125,0.43359375,0.4892578125,0.5673828125,0.6669921875,0.7470703125,0.7666015625,0.7177734375,0.6357421875,0.5595703125,0.5009765625,0.490234375,0.53125,0.591796875,0.6337890625,0.6259765625,0.5693359375,0.5126953125,0.5029296875,0.5419921875,0.5986328125,0.6337890625,0.6201171875,0.5595703125,0.478515625,0.380859375,0.3056640625,0.2939453125,0.3486328125,0.4345703125,0.509765625,0.564453125,0.5625,0.50390625,0.423828125,0.3681640625,0.37109375,0.4296875,0.4990234375,0.55078125,0.5625,0.53125,0.478515625,0.4384765625,0.4296875,0.423828125,0.3935546875,0.3583984375,0.3466796875,0.3740234375,0.431640625,0.5,0.564453125,0.6064453125,0.6044921875,0.55859375,0.4951171875,0.44921875,0.439453125,0.4326171875,0.3994140625,0.3583984375,0.341796875,0.3642578125,0.4208984375,0.4892578125,0.556640625,0.6015625,0.603515625,0.560546875,0.4970703125,0.4501953125,0.439453125,0.44921875,0.4873046875,0.53515625,0.5595703125,0.5419921875,0.48828125,0.419921875,0.361328125,0.349609375,0.3876953125,0.4814453125,0.37890625,0.2978515625,0.2802734375,0.3251953125,0.40234375,0.5244140625,0.6591796875,0.7509765625,0.771484375,0.7333984375,0.673828125,0.62109375,0.60546875,0.625,0.6533203125,0.6630859375,0.6337890625,0.5703125,0.5087890625,0.4921875,0.5283203125,0.59375,0.6494140625,0.66015625,0.6220703125,0.5732421875,0.5419921875,0.544921875,0.580078125,0.62890625,0.6650390625,0.673828125,0.658203125,0.5888671875,0.4853515625,0.3955078125,0.3583984375,0.3837890625,0.4482421875,0.521484375,0.5947265625,0.6513671875,0.67578125,0.6748046875,0.66796875,0.673828125,0.6923828125,0.7353515625,0.783203125,0.8046875,0.78515625,0.734375,0.673828125,0.599609375,0.4892578125,0.3740234375,0.2998046875,0.2890625,0.326171875,0.376953125,0.419921875,0.427734375,0.40234375,0.369140625,0.353515625,0.375,0.4287109375,0.482421875,0.501953125,0.4912109375,0.47265625,0.4716796875,0.505859375,0.5703125,0.6455078125,0.71875,0.75390625,0.7265625,0.6484375,0.560546875,0.5,0.44140625,0.37109375,0.32421875,0.333984375,0.4013671875,0.4912109375,0.5703125,0.642578125,0.70703125,0.7431640625,0.740234375,0.7099609375,0.6806640625,0.673828125,0.6650390625,0.62890625,0.5830078125,0.5576171875,0.5693359375,0.61328125,0.673828125,0.7421875,0.822265625,0.875,0.8662109375,0.7958984375,0.701171875,0.6220703125,0.5419921875,0.4453125,0.3662109375,0.3427734375,0.37890625,0.4423828125,0.5,0.5537109375,0.60546875,0.6259765625,0.5927734375,0.5185546875,0.4365234375,0.376953125,0.322265625,0.26171875,0.2255859375,0.2392578125,0.2978515625,0.37109375,0.4287109375,0.484375,0.55078125,0.611328125,0.6455078125,0.6484375,0.634765625,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3310546875,0.32421875,0.3232421875,0.34765625,0.404296875,0.4775390625,0.55078125,0.615234375,0.640625,0.603515625,0.513671875,0.41015625,0.3408203125,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.439453125,0.486328125,0.5556640625,0.6142578125,0.63671875,0.6162109375,0.5703125,0.5224609375,0.498046875,0.51171875,0.560546875,0.6220703125,0.6640625,0.673828125,0.66796875,0.6376953125,0.5830078125,0.5185546875,0.46484375,0.4345703125,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.314453125,0.306640625,0.3212890625,0.369140625,0.4404296875,0.513671875,0.5703125,0.623046875,0.6796875,0.7197265625,0.7294921875,0.712890625,0.6884765625,0.673828125,0.6572265625,0.6201171875,0.5634765625,0.50390625,0.45703125,0.43359375,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.328125,0.376953125,0.4560546875,0.5234375,0.544921875,0.513671875,0.4482421875,0.373046875,0.306640625,0.2900390625,0.349609375,0.466796875,0.5888671875,0.673828125,0.7373046875,0.759765625,0.71484375,0.611328125,0.4892578125,0.404296875,0.376953125,0.3623046875,0.3408203125,0.33203125,0.3564453125,0.4140625,0.486328125,0.55078125,0.6142578125,0.6669921875,0.677734375,0.626953125,0.533203125,0.439453125,0.376953125,0.3232421875,0.2744140625,0.265625,0.3212890625,0.427734375,0.5390625,0.6220703125,0.6884765625,0.728515625,0.72265625,0.6748046875,0.611328125,0.5712890625,0.5703125,0.57421875,0.55859375,0.5380859375,0.53515625,0.5615234375,0.6123046875,0.673828125,0.7216796875,0.7158203125,0.654296875,0.5703125,0.5087890625,0.5029296875,0.55078125,0.6025390625,0.611328125,0.5771484375,0.525390625,0.4912109375,0.5,0.55078125,0.5966796875,0.5791015625,0.494140625,0.3828125,0.2978515625,0.279296875,0.3251953125,0.384765625,0.4365234375,0.4794921875,0.51953125,0.5625,0.6142578125,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.3271484375,0.298828125,0.2548828125,0.224609375,0.228515625,0.267578125,0.3251953125,0.3818359375,0.4208984375,0.4453125,0.466796875,0.5009765625,0.5537109375,0.6220703125,0.6806640625,0.681640625,0.6181640625,0.5205078125,0.4375,0.412109375,0.4482421875,0.509765625,0.6044921875,0.7021484375,0.76171875,0.7646484375,0.724609375,0.673828125,0.6181640625,0.55078125,0.4873046875,0.4443359375,0.427734375,0.427734375,0.4287109375,0.41796875,0.3701171875,0.3046875,0.2607421875,0.2626953125,0.30859375,0.376953125,0.453125,0.5283203125,0.568359375,0.5458984375,0.4716796875,0.38671875,0.3251953125,0.275390625,0.2392578125,0.2333984375,0.263671875,0.3154296875,0.359375,0.376953125,0.3974609375,0.4462890625,0.505859375,0.541015625,0.533203125,0.4892578125,0.4287109375,0.3818359375,0.396484375,0.4775390625,0.58984375,0.6806640625,0.708984375,0.673828125,0.6328125,0.630859375,0.6630859375,0.701171875,0.71484375,0.685546875,0.6220703125,0.5576171875,0.5283203125,0.5419921875,0.580078125,0.6123046875,0.6103515625,0.5703125,0.51171875,0.4365234375,0.376953125,0.3671875,0.4130859375,0.4853515625,0.55078125,0.6015625,0.6044921875,0.5546875,0.4794921875,0.419921875,0.4091796875,0.4482421875,0.5087890625,0.5966796875,0.6787109375,0.7158203125,0.693359375,0.6337890625,0.5703125,0.5185546875,0.509765625,0.5478515625,0.609375,0.6572265625,0.6611328125,0.6220703125,0.5810546875,0.5791015625,0.611328125,0.6494140625,0.6630859375,0.6337890625,0.5703125,0.4931640625,0.408203125,0.3525390625,0.3564453125,0.4150390625,0.4921875,0.55078125,0.5869140625,0.5615234375,0.478515625,0.380859375,0.3173828125,0.318359375,0.376953125,0.4453125,0.4921875,0.498046875,0.462890625,0.4111328125,0.376953125,0.376953125,0.3828125,0.3759765625,0.3671875,0.373046875,0.40234375,0.4482421875,0.5,0.5458984375,0.568359375,0.5546875,0.509765625,0.4580078125,0.427734375,0.4287109375,0.4306640625,0.4052734375,0.365234375,0.33984375,0.34765625,0.3896484375,0.4482421875,0.5068359375,0.5498046875,0.556640625,0.525390625,0.4755859375,0.4375,0.4287109375,0.435546875,0.4580078125,0.48046875,0.4794921875,0.4453125,0.3876953125,0.3251953125,0.2734375,0.2578125,0.2841796875,0.48046875,0.3671875,0.2685546875,0.23046875,0.2587890625,0.3203125,0.4384765625,0.587890625,0.71484375,0.7802734375,0.779296875,0.740234375,0.701171875,0.6845703125,0.6826171875,0.67578125,0.6494140625,0.5986328125,0.5302734375,0.46484375,0.4365234375,0.4609375,0.52734375,0.6005859375,0.640625,0.634765625,0.619140625,0.6181640625,0.6376953125,0.673828125,0.7109375,0.7353515625,0.740234375,0.7216796875,0.638671875,0.5078125,0.3857421875,0.322265625,0.3330078125,0.39453125,0.46875,0.5478515625,0.6181640625,0.66796875,0.697265625,0.716796875,0.740234375,0.7724609375,0.8173828125,0.8564453125,0.8642578125,0.8359375,0.7880859375,0.740234375,0.6845703125,0.5947265625,0.48828125,0.400390625,0.353515625,0.34765625,0.3642578125,0.37890625,0.37890625,0.3720703125,0.373046875,0.390625,0.4248046875,0.46875,0.5048828125,0.50390625,0.4716796875,0.4384765625,0.431640625,0.46484375,0.5302734375,0.6015625,0.6611328125,0.681640625,0.6513671875,0.587890625,0.5283203125,0.5,0.4716796875,0.419921875,0.3701171875,0.35546875,0.3896484375,0.45703125,0.5302734375,0.6044921875,0.6826171875,0.7421875,0.767578125,0.76171875,0.7451171875,0.740234375,0.7333984375,0.70703125,0.673828125,0.654296875,0.6630859375,0.6962890625,0.740234375,0.7919921875,0.853515625,0.892578125,0.8759765625,0.8046875,0.7138671875,0.634765625,0.5595703125,0.4794921875,0.421875,0.408203125,0.435546875,0.474609375,0.5,0.517578125,0.525390625,0.513671875,0.4775390625,0.4296875,0.388671875,0.3642578125,0.345703125,0.3330078125,0.3388671875,0.3671875,0.408203125,0.4453125,0.46875,0.4951171875,0.544921875,0.6044921875,0.6513671875,0.669921875,0.6591796875,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.2822265625,0.3017578125,0.3310546875,0.380859375,0.451171875,0.5302734375,0.6044921875,0.666015625,0.6767578125,0.61328125,0.4912109375,0.3603515625,0.27734375,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4736328125,0.4912109375,0.51953125,0.54296875,0.5537109375,0.546875,0.5302734375,0.5166015625,0.5283203125,0.5712890625,0.634765625,0.6962890625,0.732421875,0.740234375,0.7333984375,0.701171875,0.640625,0.568359375,0.5087890625,0.4755859375,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.2373046875,0.2392578125,0.28125,0.35546875,0.439453125,0.5009765625,0.5302734375,0.556640625,0.611328125,0.681640625,0.740234375,0.7685546875,0.763671875,0.740234375,0.7080078125,0.65625,0.5908203125,0.5302734375,0.4892578125,0.4716796875,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.24609375,0.28515625,0.3642578125,0.44140625,0.4775390625,0.45703125,0.39453125,0.322265625,0.2705078125,0.28125,0.3720703125,0.5166015625,0.65234375,0.740234375,0.8046875,0.8271484375,0.775390625,0.6572265625,0.5146484375,0.408203125,0.3642578125,0.337890625,0.3212890625,0.3359375,0.3916015625,0.4736328125,0.55078125,0.6044921875,0.6455078125,0.6611328125,0.6298828125,0.5546875,0.4638671875,0.39453125,0.3642578125,0.341796875,0.3193359375,0.3232421875,0.3720703125,0.4599609375,0.556640625,0.634765625,0.6982421875,0.72265625,0.693359375,0.6240234375,0.5517578125,0.5166015625,0.5302734375,0.5537109375,0.572265625,0.5908203125,0.6162109375,0.6513671875,0.6943359375,0.740234375,0.7744140625,0.7646484375,0.708984375,0.6357421875,0.580078125,0.5703125,0.6044921875,0.642578125,0.6494140625,0.6240234375,0.5849609375,0.5595703125,0.56640625,0.6044921875,0.634765625,0.599609375,0.4970703125,0.3671875,0.2646484375,0.2294921875,0.2587890625,0.3076171875,0.373046875,0.455078125,0.5439453125,0.6259765625,0.69140625,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.2783203125,0.271484375,0.2421875,0.2119140625,0.201171875,0.21875,0.2587890625,0.3017578125,0.3388671875,0.3779296875,0.427734375,0.4912109375,0.5625,0.634765625,0.6962890625,0.708984375,0.654296875,0.5517578125,0.4482421875,0.3916015625,0.39453125,0.423828125,0.490234375,0.5849609375,0.6767578125,0.736328125,0.7529296875,0.740234375,0.7158203125,0.6689453125,0.6044921875,0.541015625,0.4951171875,0.47265625,0.46875,0.45703125,0.40234375,0.3251953125,0.267578125,0.2568359375,0.296875,0.3642578125,0.43359375,0.484375,0.48828125,0.4384765625,0.3583984375,0.2900390625,0.2587890625,0.2392578125,0.22265625,0.2236328125,0.248046875,0.2900390625,0.3330078125,0.3642578125,0.3984375,0.45703125,0.5185546875,0.5546875,0.5498046875,0.5146484375,0.46875,0.43359375,0.4443359375,0.5107421875,0.609375,0.7001953125,0.74609375,0.740234375,0.7294921875,0.744140625,0.7705078125,0.78125,0.7587890625,0.7041015625,0.634765625,0.5654296875,0.5107421875,0.48828125,0.4990234375,0.525390625,0.541015625,0.5302734375,0.5068359375,0.4755859375,0.455078125,0.4638671875,0.5029296875,0.5556640625,0.6044921875,0.6416015625,0.6376953125,0.5849609375,0.501953125,0.4248046875,0.38671875,0.39453125,0.421875,0.478515625,0.546875,0.59375,0.6015625,0.5732421875,0.5302734375,0.4912109375,0.4814453125,0.5107421875,0.5654296875,0.619140625,0.64453125,0.634765625,0.6240234375,0.638671875,0.666015625,0.67578125,0.6533203125,0.599609375,0.5302734375,0.458984375,0.4052734375,0.39453125,0.4365234375,0.509765625,0.57421875,0.6044921875,0.607421875,0.55078125,0.447265625,0.3447265625,0.2900390625,0.302734375,0.3642578125,0.4296875,0.466796875,0.4609375,0.4189453125,0.37109375,0.3486328125,0.3642578125,0.390625,0.4150390625,0.435546875,0.4521484375,0.466796875,0.4814453125,0.5,0.513671875,0.5087890625,0.4853515625,0.4580078125,0.4423828125,0.447265625,0.46875,0.486328125,0.470703125,0.4248046875,0.375,0.3466796875,0.35546875,0.39453125,0.4404296875,0.482421875,0.5078125,0.5078125,0.4912109375,0.4736328125,0.46875,0.470703125,0.4716796875,0.4580078125,0.421875,0.3662109375,0.3076171875,0.2587890625,0.2177734375,0.1953125,0.201171875,0.5078125,0.40234375,0.30078125,0.2490234375,0.2587890625,0.2998046875,0.392578125,0.5244140625,0.6513671875,0.734375,0.7578125,0.740234375,0.7177734375,0.7080078125,0.6953125,0.666015625,0.611328125,0.5419921875,0.46875,0.400390625,0.3525390625,0.35546875,0.4140625,0.5009765625,0.5732421875,0.6044921875,0.6259765625,0.65625,0.6904296875,0.7177734375,0.734375,0.7392578125,0.740234375,0.7216796875,0.6337890625,0.4970703125,0.3671875,0.2958984375,0.302734375,0.3642578125,0.4365234375,0.5078125,0.5712890625,0.62109375,0.66015625,0.697265625,0.740234375,0.7880859375,0.8359375,0.8642578125,0.8564453125,0.8173828125,0.7724609375,0.740234375,0.708984375,0.6591796875,0.5908203125,0.5185546875,0.4580078125,0.4169921875,0.39453125,0.375,0.3623046875,0.3701171875,0.40234375,0.451171875,0.498046875,0.5302734375,0.5439453125,0.5146484375,0.4521484375,0.39453125,0.375,0.404296875,0.46875,0.537109375,0.58203125,0.587890625,0.5576171875,0.5146484375,0.490234375,0.5,0.5068359375,0.4755859375,0.4189453125,0.373046875,0.365234375,0.40234375,0.46875,0.544921875,0.630859375,0.7041015625,0.7451171875,0.7529296875,0.744140625,0.740234375,0.736328125,0.720703125,0.701171875,0.6904296875,0.6953125,0.71484375,0.740234375,0.7724609375,0.8173828125,0.8447265625,0.828125,0.765625,0.681640625,0.6044921875,0.53515625,0.48046875,0.4580078125,0.46875,0.4951171875,0.5107421875,0.5,0.4755859375,0.4384765625,0.3974609375,0.369140625,0.36328125,0.3759765625,0.39453125,0.4189453125,0.4599609375,0.5078125,0.5439453125,0.556640625,0.5478515625,0.5302734375,0.51953125,0.541015625,0.587890625,0.634765625,0.6572265625,0.64453125,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3017578125,0.3388671875,0.3779296875,0.427734375,0.4912109375,0.5625,0.634765625,0.6962890625,0.703125,0.6318359375,0.501953125,0.365234375,0.27734375,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.525390625,0.5078125,0.4794921875,0.4560546875,0.4453125,0.4521484375,0.46875,0.494140625,0.541015625,0.6044921875,0.66796875,0.71484375,0.736328125,0.740234375,0.7353515625,0.7099609375,0.6630859375,0.607421875,0.560546875,0.53515625,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.22265625,0.2255859375,0.2783203125,0.361328125,0.4384765625,0.4765625,0.46875,0.462890625,0.5087890625,0.599609375,0.6982421875,0.7646484375,0.775390625,0.740234375,0.69140625,0.6328125,0.5771484375,0.541015625,0.52734375,0.5283203125,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.2275390625,0.2490234375,0.3173828125,0.39453125,0.4384765625,0.4248046875,0.3642578125,0.29296875,0.244140625,0.26171875,0.361328125,0.51171875,0.6513671875,0.740234375,0.8076171875,0.8447265625,0.814453125,0.7119140625,0.5732421875,0.4560546875,0.39453125,0.3525390625,0.3330078125,0.3583984375,0.4306640625,0.5224609375,0.59765625,0.634765625,0.65234375,0.6318359375,0.568359375,0.4853515625,0.416015625,0.384765625,0.39453125,0.408203125,0.4052734375,0.40234375,0.419921875,0.4658203125,0.5322265625,0.6044921875,0.6650390625,0.6748046875,0.6240234375,0.5380859375,0.462890625,0.4384765625,0.46875,0.515625,0.56640625,0.6162109375,0.6572265625,0.6884765625,0.71484375,0.740234375,0.759765625,0.7509765625,0.712890625,0.662109375,0.6240234375,0.615234375,0.634765625,0.6572265625,0.6611328125,0.646484375,0.6240234375,0.609375,0.61328125,0.634765625,0.6484375,0.6064453125,0.5078125,0.3857421875,0.287109375,0.24609375,0.2587890625,0.2919921875,0.3544921875,0.447265625,0.5517578125,0.64453125,0.70703125,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.2998046875,0.3173828125,0.3056640625,0.275390625,0.2470703125,0.2392578125,0.2587890625,0.2822265625,0.3017578125,0.3310546875,0.380859375,0.451171875,0.5302734375,0.6044921875,0.671875,0.7060546875,0.6796875,0.59375,0.482421875,0.3984375,0.3642578125,0.3515625,0.3720703125,0.4384765625,0.5380859375,0.6396484375,0.7099609375,0.740234375,0.75390625,0.7421875,0.6982421875,0.634765625,0.57421875,0.537109375,0.5302734375,0.5166015625,0.458984375,0.375,0.30859375,0.2919921875,0.328125,0.39453125,0.4580078125,0.4833984375,0.4521484375,0.3779296875,0.2978515625,0.25390625,0.2587890625,0.2744140625,0.2783203125,0.2783203125,0.287109375,0.3115234375,0.349609375,0.39453125,0.4453125,0.509765625,0.568359375,0.5966796875,0.587890625,0.55859375,0.5302734375,0.5068359375,0.501953125,0.529296875,0.587890625,0.658203125,0.712890625,0.740234375,0.765625,0.8046875,0.8310546875,0.8173828125,0.759765625,0.6796875,0.6044921875,0.529296875,0.44921875,0.3916015625,0.3779296875,0.4052734375,0.4443359375,0.46875,0.4873046875,0.5068359375,0.52734375,0.5517578125,0.580078125,0.6083984375,0.634765625,0.6572265625,0.654296875,0.61328125,0.5380859375,0.4541015625,0.392578125,0.3642578125,0.3515625,0.3662109375,0.4052734375,0.4521484375,0.4853515625,0.490234375,0.46875,0.4443359375,0.4296875,0.44140625,0.48046875,0.5341796875,0.5791015625,0.6044921875,0.6298828125,0.6689453125,0.6953125,0.6826171875,0.625,0.544921875,0.46875,0.40625,0.384765625,0.4228515625,0.5048828125,0.591796875,0.6396484375,0.634765625,0.6005859375,0.5166015625,0.4052734375,0.3193359375,0.29296875,0.3271484375,0.39453125,0.4580078125,0.484375,0.4638671875,0.4140625,0.369140625,0.3603515625,0.39453125,0.443359375,0.5009765625,0.546875,0.5634765625,0.548828125,0.521484375,0.5,0.4755859375,0.4384765625,0.408203125,0.4052734375,0.4345703125,0.482421875,0.5302734375,0.56640625,0.564453125,0.515625,0.44140625,0.3759765625,0.3486328125,0.3642578125,0.3935546875,0.4326171875,0.474609375,0.5078125,0.5244140625,0.529296875,0.5302734375,0.52734375,0.509765625,0.46875,0.408203125,0.3427734375,0.291015625,0.2587890625,0.23046875,0.2001953125,0.181640625,0.5556640625,0.4755859375,0.384765625,0.3291015625,0.3251953125,0.345703125,0.4013671875,0.48828125,0.580078125,0.6484375,0.6767578125,0.673828125,0.66796875,0.671875,0.6689453125,0.638671875,0.5791015625,0.5029296875,0.4287109375,0.35546875,0.2880859375,0.263671875,0.3046875,0.39453125,0.4892578125,0.55078125,0.603515625,0.6552734375,0.6923828125,0.703125,0.6923828125,0.677734375,0.673828125,0.65625,0.5791015625,0.458984375,0.3505859375,0.2978515625,0.314453125,0.376953125,0.4453125,0.498046875,0.5322265625,0.5537109375,0.578125,0.6171875,0.673828125,0.734375,0.78515625,0.8046875,0.783203125,0.7353515625,0.6923828125,0.673828125,0.6650390625,0.66015625,0.6455078125,0.6123046875,0.5595703125,0.5009765625,0.4482421875,0.3994140625,0.37109375,0.380859375,0.4306640625,0.498046875,0.5498046875,0.5703125,0.56640625,0.515625,0.4326171875,0.3603515625,0.3349609375,0.3642578125,0.4287109375,0.4931640625,0.5244140625,0.515625,0.482421875,0.4541015625,0.4580078125,0.5,0.537109375,0.5244140625,0.46484375,0.39453125,0.353515625,0.3681640625,0.4287109375,0.5048828125,0.5869140625,0.654296875,0.6884765625,0.689453125,0.677734375,0.673828125,0.671875,0.666015625,0.658203125,0.6533203125,0.6552734375,0.6630859375,0.673828125,0.6904296875,0.724609375,0.7529296875,0.7470703125,0.6982421875,0.625,0.55078125,0.4873046875,0.4580078125,0.4716796875,0.509765625,0.5419921875,0.5400390625,0.5,0.44140625,0.3681640625,0.3095703125,0.2958984375,0.33203125,0.392578125,0.4482421875,0.5078125,0.5888671875,0.6640625,0.6962890625,0.67578125,0.6240234375,0.5703125,0.5283203125,0.5244140625,0.556640625,0.599609375,0.6220703125,0.6044921875,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3818359375,0.4208984375,0.4453125,0.466796875,0.5009765625,0.5537109375,0.6220703125,0.6845703125,0.701171875,0.6484375,0.5400390625,0.419921875,0.3427734375,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.5595703125,0.5126953125,0.443359375,0.384765625,0.3623046875,0.3828125,0.4287109375,0.484375,0.55078125,0.615234375,0.658203125,0.6748046875,0.6748046875,0.673828125,0.6708984375,0.658203125,0.6357421875,0.6083984375,0.5849609375,0.572265625,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.275390625,0.2724609375,0.322265625,0.3974609375,0.45703125,0.4677734375,0.4287109375,0.3935546875,0.421875,0.5126953125,0.625,0.7060546875,0.720703125,0.673828125,0.611328125,0.5537109375,0.51953125,0.5185546875,0.541015625,0.5634765625,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.27734375,0.2802734375,0.333984375,0.404296875,0.4482421875,0.4375,0.376953125,0.3046875,0.24609375,0.24609375,0.32421875,0.45703125,0.5869140625,0.673828125,0.74609375,0.806640625,0.8154296875,0.751953125,0.63671875,0.5224609375,0.4482421875,0.390625,0.361328125,0.380859375,0.4482421875,0.5341796875,0.5986328125,0.6220703125,0.62109375,0.5771484375,0.5029296875,0.4306640625,0.3935546875,0.4033203125,0.4482421875,0.490234375,0.498046875,0.4765625,0.4521484375,0.451171875,0.486328125,0.55078125,0.609375,0.611328125,0.5517578125,0.462890625,0.3935546875,0.3818359375,0.4287109375,0.4931640625,0.5615234375,0.619140625,0.6533203125,0.6640625,0.666015625,0.673828125,0.6806640625,0.67578125,0.6591796875,0.63671875,0.619140625,0.6142578125,0.6220703125,0.6298828125,0.6318359375,0.6259765625,0.6171875,0.611328125,0.61328125,0.6220703125,0.623046875,0.5888671875,0.517578125,0.4296875,0.3583984375,0.32421875,0.3251953125,0.3427734375,0.3857421875,0.4580078125,0.541015625,0.61328125,0.65625,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.3837890625,0.4228515625,0.4267578125,0.3955078125,0.3525390625,0.32421875,0.3251953125,0.3310546875,0.32421875,0.3232421875,0.34765625,0.404296875,0.4775390625,0.55078125,0.6240234375,0.6845703125,0.697265625,0.642578125,0.541015625,0.4404296875,0.376953125,0.3271484375,0.296875,0.3154296875,0.3935546875,0.5068359375,0.609375,0.673828125,0.720703125,0.7451171875,0.7314453125,0.6826171875,0.6220703125,0.5791015625,0.5703125,0.5576171875,0.5009765625,0.419921875,0.357421875,0.34375,0.380859375,0.4482421875,0.5078125,0.515625,0.4638671875,0.3798828125,0.30859375,0.2890625,0.3251953125,0.369140625,0.3857421875,0.376953125,0.361328125,0.3623046875,0.392578125,0.4482421875,0.51171875,0.5771484375,0.6240234375,0.634765625,0.6142578125,0.5859375,0.5703125,0.5556640625,0.5302734375,0.513671875,0.5234375,0.564453125,0.6201171875,0.673828125,0.73046875,0.7939453125,0.830078125,0.806640625,0.7275390625,0.630859375,0.55078125,0.4716796875,0.375,0.2958984375,0.2724609375,0.30859375,0.3720703125,0.4287109375,0.4814453125,0.5361328125,0.5810546875,0.60546875,0.61328125,0.6142578125,0.6220703125,0.6328125,0.640625,0.6259765625,0.5791015625,0.5068359375,0.43359375,0.376953125,0.330078125,0.3056640625,0.3154296875,0.3544921875,0.40234375,0.4306640625,0.4287109375,0.4150390625,0.392578125,0.3798828125,0.39453125,0.439453125,0.4970703125,0.55078125,0.607421875,0.671875,0.7080078125,0.6845703125,0.60546875,0.5087890625,0.4287109375,0.37109375,0.37109375,0.439453125,0.5419921875,0.62890625,0.6572265625,0.6220703125,0.55859375,0.4580078125,0.3564453125,0.3017578125,0.314453125,0.375,0.4482421875,0.5087890625,0.525390625,0.4931640625,0.4375,0.39453125,0.3984375,0.4482421875,0.515625,0.5966796875,0.6572265625,0.6669921875,0.623046875,0.556640625,0.5,0.443359375,0.37890625,0.3388671875,0.353515625,0.4189453125,0.501953125,0.5703125,0.6240234375,0.6396484375,0.599609375,0.5185546875,0.431640625,0.3798828125,0.376953125,0.3916015625,0.4228515625,0.4677734375,0.5146484375,0.5498046875,0.5673828125,0.5703125,0.5654296875,0.5419921875,0.4951171875,0.435546875,0.37890625,0.341796875,0.3251953125,0.30859375,0.271484375,0.2314453125,0.603515625,0.55078125,0.48046875,0.4296875,0.419921875,0.42578125,0.447265625,0.484375,0.5263671875,0.560546875,0.5771484375,0.5791015625,0.583984375,0.607421875,0.6298828125,0.6240234375,0.5810546875,0.5126953125,0.439453125,0.3623046875,0.2783203125,0.2294921875,0.25,0.3310546875,0.431640625,0.509765625,0.5771484375,0.6357421875,0.6640625,0.6533203125,0.6181640625,0.5869140625,0.5791015625,0.5654296875,0.505859375,0.4189453125,0.349609375,0.3291015625,0.36328125,0.4296875,0.4931640625,0.5234375,0.517578125,0.4970703125,0.490234375,0.517578125,0.5791015625,0.6474609375,0.7001953125,0.7138671875,0.685546875,0.6328125,0.5908203125,0.5791015625,0.5849609375,0.6123046875,0.6435546875,0.6494140625,0.6181640625,0.5576171875,0.4892578125,0.4248046875,0.3818359375,0.3837890625,0.4306640625,0.4970703125,0.546875,0.5595703125,0.5478515625,0.4931640625,0.4130859375,0.3505859375,0.3359375,0.373046875,0.439453125,0.5009765625,0.521484375,0.4970703125,0.453125,0.42578125,0.44140625,0.5,0.5546875,0.5556640625,0.501953125,0.4267578125,0.375,0.380859375,0.439453125,0.5126953125,0.58203125,0.626953125,0.6328125,0.6103515625,0.5859375,0.5791015625,0.5791015625,0.578125,0.5771484375,0.576171875,0.576171875,0.5771484375,0.5791015625,0.5888671875,0.6240234375,0.662109375,0.6728515625,0.642578125,0.5810546875,0.509765625,0.44921875,0.435546875,0.470703125,0.52734375,0.5654296875,0.556640625,0.5,0.4228515625,0.33203125,0.2666015625,0.263671875,0.3251953125,0.4140625,0.4892578125,0.5673828125,0.6650390625,0.744140625,0.7626953125,0.71484375,0.6337890625,0.5595703125,0.5009765625,0.486328125,0.5146484375,0.5595703125,0.5869140625,0.5693359375,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.4814453125,0.5087890625,0.501953125,0.4814453125,0.4755859375,0.505859375,0.5693359375,0.6357421875,0.669921875,0.6494140625,0.580078125,0.4931640625,0.43359375,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.546875,0.4931640625,0.4150390625,0.3544921875,0.3408203125,0.3759765625,0.439453125,0.509765625,0.576171875,0.6201171875,0.6279296875,0.6083984375,0.5859375,0.5791015625,0.5791015625,0.576171875,0.572265625,0.56640625,0.5625,0.5595703125,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.361328125,0.3525390625,0.3955078125,0.458984375,0.5029296875,0.49609375,0.439453125,0.3857421875,0.3935546875,0.46484375,0.5595703125,0.62890625,0.634765625,0.5791015625,0.5107421875,0.45703125,0.439453125,0.4638671875,0.51171875,0.5498046875,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.3623046875,0.353515625,0.396484375,0.458984375,0.5,0.4892578125,0.4296875,0.353515625,0.27734375,0.244140625,0.283203125,0.3837890625,0.49609375,0.5791015625,0.65625,0.7392578125,0.7841796875,0.759765625,0.673828125,0.5693359375,0.4892578125,0.4228515625,0.380859375,0.3837890625,0.4345703125,0.5048828125,0.5556640625,0.5693359375,0.5595703125,0.51171875,0.443359375,0.392578125,0.3857421875,0.4248046875,0.4892578125,0.546875,0.5576171875,0.5205078125,0.466796875,0.43359375,0.44921875,0.509765625,0.568359375,0.5712890625,0.5166015625,0.4384765625,0.3818359375,0.3828125,0.439453125,0.5107421875,0.578125,0.62109375,0.626953125,0.6064453125,0.583984375,0.5791015625,0.580078125,0.5791015625,0.576171875,0.572265625,0.5693359375,0.568359375,0.5693359375,0.5703125,0.5712890625,0.5703125,0.568359375,0.5673828125,0.568359375,0.5693359375,0.5673828125,0.548828125,0.5146484375,0.4736328125,0.439453125,0.421875,0.419921875,0.4248046875,0.4443359375,0.4794921875,0.51953125,0.5546875,0.57421875,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.4873046875,0.5380859375,0.5498046875,0.51953125,0.4677734375,0.427734375,0.419921875,0.4130859375,0.3837890625,0.3505859375,0.34375,0.3759765625,0.4375,0.509765625,0.5869140625,0.6689453125,0.7158203125,0.693359375,0.609375,0.5078125,0.4296875,0.357421875,0.28515625,0.255859375,0.294921875,0.3916015625,0.5,0.5791015625,0.6455078125,0.6923828125,0.701171875,0.6669921875,0.611328125,0.5693359375,0.5595703125,0.5478515625,0.4970703125,0.4287109375,0.3798828125,0.3779296875,0.421875,0.4892578125,0.5478515625,0.552734375,0.4990234375,0.421875,0.365234375,0.365234375,0.419921875,0.478515625,0.49609375,0.4716796875,0.431640625,0.4091796875,0.4296875,0.4892578125,0.5595703125,0.6201171875,0.650390625,0.6396484375,0.6025390625,0.5693359375,0.5595703125,0.548828125,0.509765625,0.462890625,0.4404296875,0.458984375,0.51171875,0.5791015625,0.654296875,0.7373046875,0.7880859375,0.7705078125,0.69140625,0.5908203125,0.509765625,0.4287109375,0.328125,0.248046875,0.2314453125,0.28125,0.365234375,0.439453125,0.5087890625,0.57421875,0.6142578125,0.619140625,0.5966796875,0.57421875,0.5693359375,0.5771484375,0.6015625,0.62109375,0.6123046875,0.5673828125,0.5,0.4296875,0.36328125,0.3154296875,0.306640625,0.3388671875,0.3916015625,0.431640625,0.439453125,0.4306640625,0.3974609375,0.3623046875,0.3525390625,0.3818359375,0.44140625,0.509765625,0.583984375,0.66796875,0.7177734375,0.701171875,0.62109375,0.5205078125,0.439453125,0.3828125,0.3857421875,0.4521484375,0.5458984375,0.615234375,0.623046875,0.5693359375,0.4912109375,0.3896484375,0.3056640625,0.283203125,0.330078125,0.412109375,0.4892578125,0.5498046875,0.5615234375,0.5224609375,0.4619140625,0.421875,0.431640625,0.4892578125,0.5673828125,0.6591796875,0.7255859375,0.7275390625,0.6650390625,0.5751953125,0.5,0.4248046875,0.3408203125,0.2900390625,0.3046875,0.3818359375,0.48046875,0.5595703125,0.6240234375,0.6591796875,0.6416015625,0.5771484375,0.49609375,0.4404296875,0.4296875,0.4345703125,0.451171875,0.48046875,0.513671875,0.5419921875,0.556640625,0.5595703125,0.556640625,0.5400390625,0.5107421875,0.474609375,0.4423828125,0.4248046875,0.419921875,0.408203125,0.3671875,0.31640625,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.65234375,0.640625,0.60546875,0.5751953125,0.5693359375,0.5673828125,0.5517578125,0.5224609375,0.486328125,0.45703125,0.44140625,0.439453125,0.4541015625,0.5126953125,0.595703125,0.6591796875,0.673828125,0.63671875,0.5693359375,0.4873046875,0.3837890625,0.2998046875,0.2783203125,0.3271484375,0.412109375,0.4892578125,0.55859375,0.6044921875,0.60546875,0.5595703125,0.4931640625,0.4423828125,0.4296875,0.421875,0.3974609375,0.3779296875,0.38671875,0.431640625,0.4990234375,0.5693359375,0.623046875,0.6181640625,0.55078125,0.4580078125,0.3916015625,0.3857421875,0.439453125,0.505859375,0.5546875,0.564453125,0.5302734375,0.474609375,0.431640625,0.419921875,0.4296875,0.4765625,0.54296875,0.5908203125,0.5947265625,0.5546875,0.4892578125,0.4208984375,0.361328125,0.33203125,0.341796875,0.3779296875,0.41015625,0.419921875,0.4150390625,0.3935546875,0.3740234375,0.380859375,0.423828125,0.490234375,0.5595703125,0.6142578125,0.615234375,0.5615234375,0.486328125,0.435546875,0.4404296875,0.5,0.5615234375,0.5810546875,0.556640625,0.513671875,0.4853515625,0.5009765625,0.5595703125,0.623046875,0.6572265625,0.6416015625,0.5810546875,0.50390625,0.4501953125,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.435546875,0.431640625,0.4296875,0.4404296875,0.490234375,0.5615234375,0.61328125,0.619140625,0.5771484375,0.509765625,0.44921875,0.4375,0.4765625,0.537109375,0.5771484375,0.5673828125,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5654296875,0.6494140625,0.69921875,0.6806640625,0.599609375,0.4990234375,0.419921875,0.3623046875,0.359375,0.4130859375,0.490234375,0.5458984375,0.544921875,0.4892578125,0.4150390625,0.3359375,0.291015625,0.3134765625,0.3974609375,0.5,0.5791015625,0.634765625,0.6279296875,0.556640625,0.4580078125,0.3857421875,0.3759765625,0.4296875,0.5,0.5693359375,0.6162109375,0.6279296875,0.609375,0.5869140625,0.5791015625,0.57421875,0.5537109375,0.5185546875,0.4794921875,0.447265625,0.431640625,0.4296875,0.42578125,0.4052734375,0.3876953125,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.6416015625,0.6728515625,0.6513671875,0.58203125,0.498046875,0.44140625,0.4296875,0.431640625,0.4326171875,0.4345703125,0.435546875,0.4365234375,0.4384765625,0.439453125,0.4541015625,0.51171875,0.5947265625,0.6591796875,0.6767578125,0.642578125,0.5791015625,0.5224609375,0.513671875,0.552734375,0.611328125,0.6494140625,0.6376953125,0.5791015625,0.517578125,0.4873046875,0.4921875,0.51171875,0.517578125,0.490234375,0.4296875,0.36328125,0.314453125,0.3046875,0.3359375,0.388671875,0.4296875,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.4443359375,0.501953125,0.5830078125,0.646484375,0.6611328125,0.625,0.5595703125,0.5009765625,0.490234375,0.53125,0.591796875,0.6337890625,0.6259765625,0.5693359375,0.4892578125,0.380859375,0.2822265625,0.2421875,0.2724609375,0.345703125,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.439453125,0.3798828125,0.3505859375,0.359375,0.3935546875,0.423828125,0.4296875,0.419921875,0.3876953125,0.3515625,0.341796875,0.3720703125,0.4306640625,0.5,0.5556640625,0.564453125,0.5224609375,0.4609375,0.4208984375,0.4306640625,0.4892578125,0.5498046875,0.568359375,0.5458984375,0.5068359375,0.486328125,0.5078125,0.5693359375,0.6357421875,0.669921875,0.6513671875,0.5830078125,0.4990234375,0.44140625,0.4296875,0.4306640625,0.4296875,0.4267578125,0.4228515625,0.419921875,0.4189453125,0.419921875,0.4208984375,0.421875,0.4208984375,0.4189453125,0.41796875,0.41796875,0.419921875,0.4248046875,0.4453125,0.4814453125,0.5234375,0.5576171875,0.576171875,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4228515625,0.4384765625,0.46875,0.5048828125,0.5361328125,0.5546875,0.5595703125,0.5517578125,0.5146484375,0.4658203125,0.4384765625,0.4521484375,0.5029296875,0.5693359375,0.63671875,0.6884765625,0.7041015625,0.6787109375,0.6298828125,0.58984375,0.5791015625,0.5654296875,0.5126953125,0.4404296875,0.3876953125,0.3818359375,0.4228515625,0.4892578125,0.5693359375,0.671875,0.755859375,0.7783203125,0.73046875,0.646484375,0.5693359375,0.486328125,0.375,0.27734375,0.240234375,0.2763671875,0.353515625,0.4296875,0.4990234375,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.41015625,0.3798828125,0.3466796875,0.341796875,0.3759765625,0.439453125,0.509765625,0.5693359375,0.5859375,0.5576171875,0.51171875,0.4833984375,0.5,0.5595703125,0.6162109375,0.6181640625,0.564453125,0.48828125,0.4365234375,0.4404296875,0.5,0.568359375,0.61328125,0.61328125,0.56640625,0.5,0.451171875,0.439453125,0.4296875,0.38671875,0.330078125,0.294921875,0.3037109375,0.3525390625,0.419921875,0.4990234375,0.6005859375,0.6826171875,0.7021484375,0.65234375,0.5673828125,0.4892578125,0.412109375,0.3291015625,0.2822265625,0.3056640625,0.392578125,0.4970703125,0.5791015625,0.6455078125,0.6806640625,0.662109375,0.5927734375,0.505859375,0.4443359375,0.4296875,0.44140625,0.4990234375,0.5830078125,0.6513671875,0.669921875,0.6357421875,0.5693359375,0.5,0.447265625,0.4326171875,0.4609375,0.51171875,0.55078125,0.5595703125,0.546875,0.4990234375,0.435546875,0.392578125,0.396484375,0.4423828125,0.509765625,0.587890625,0.685546875,0.7607421875,0.7724609375,0.71875,0.634765625,0.5595703125,0.5,0.4755859375,0.4892578125,0.515625,0.52734375,0.5009765625,0.439453125,0.36328125,0.2783203125,0.2255859375,0.2392578125,0.3154296875,0.412109375,0.4892578125,0.5458984375,0.5546875,0.513671875,0.4541015625,0.4169921875,0.4296875,0.4892578125,0.5693359375,0.6650390625,0.7333984375,0.736328125,0.671875,0.5791015625,0.5,0.4189453125,0.318359375,0.2392578125,0.224609375,0.27734375,0.36328125,0.439453125,0.51171875,0.580078125,0.6259765625,0.6337890625,0.6123046875,0.5869140625,0.5791015625,0.57421875,0.556640625,0.5244140625,0.48828125,0.458984375,0.4423828125,0.439453125,0.443359375,0.4599609375,0.490234375,0.5244140625,0.5537109375,0.568359375,0.5693359375,0.55859375,0.5185546875,0.4697265625,0.6259765625,0.6318359375,0.623046875,0.6162109375,0.6220703125,0.6259765625,0.6044921875,0.5556640625,0.4951171875,0.4462890625,0.4248046875,0.4287109375,0.453125,0.5263671875,0.625,0.701171875,0.7236328125,0.6884765625,0.6220703125,0.5380859375,0.4228515625,0.3173828125,0.271484375,0.298828125,0.3720703125,0.4482421875,0.517578125,0.5673828125,0.572265625,0.5283203125,0.45703125,0.3994140625,0.376953125,0.3662109375,0.3583984375,0.373046875,0.419921875,0.4921875,0.5654296875,0.6220703125,0.66015625,0.6435546875,0.572265625,0.478515625,0.4072265625,0.390625,0.4287109375,0.4775390625,0.5087890625,0.5029296875,0.4580078125,0.39453125,0.345703125,0.3251953125,0.3251953125,0.3623046875,0.42578125,0.484375,0.509765625,0.4931640625,0.4482421875,0.3935546875,0.3359375,0.291015625,0.2763671875,0.2890625,0.3115234375,0.3251953125,0.333984375,0.341796875,0.3603515625,0.3994140625,0.455078125,0.5166015625,0.5703125,0.6083984375,0.5947265625,0.53515625,0.46484375,0.423828125,0.4384765625,0.5,0.5634765625,0.5947265625,0.5859375,0.552734375,0.5244140625,0.5283203125,0.5703125,0.615234375,0.62890625,0.599609375,0.5361328125,0.46875,0.4296875,0.4287109375,0.439453125,0.4462890625,0.4443359375,0.4306640625,0.41015625,0.3896484375,0.376953125,0.380859375,0.4365234375,0.5263671875,0.607421875,0.640625,0.615234375,0.55078125,0.490234375,0.4736328125,0.505859375,0.5615234375,0.6044921875,0.6005859375,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.513671875,0.5791015625,0.6083984375,0.576171875,0.4921875,0.396484375,0.3251953125,0.2763671875,0.275390625,0.3291015625,0.4091796875,0.47265625,0.486328125,0.4482421875,0.39453125,0.349609375,0.3447265625,0.3994140625,0.5,0.6015625,0.673828125,0.71875,0.6982421875,0.60546875,0.4794921875,0.3779296875,0.3427734375,0.376953125,0.435546875,0.5146484375,0.59765625,0.6591796875,0.6845703125,0.68359375,0.673828125,0.6552734375,0.60546875,0.529296875,0.451171875,0.39453125,0.373046875,0.376953125,0.3876953125,0.4013671875,0.4306640625,0.4833984375,0.55078125,0.6181640625,0.673828125,0.71484375,0.7099609375,0.6455078125,0.541015625,0.439453125,0.380859375,0.376953125,0.38671875,0.39453125,0.400390625,0.4052734375,0.4111328125,0.4189453125,0.4287109375,0.4521484375,0.5185546875,0.61328125,0.6953125,0.732421875,0.71875,0.673828125,0.6328125,0.630859375,0.6669921875,0.71484375,0.7412109375,0.7255859375,0.673828125,0.6142578125,0.5625,0.5234375,0.4921875,0.462890625,0.4248046875,0.376953125,0.3291015625,0.2978515625,0.2998046875,0.3349609375,0.384765625,0.4208984375,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.400390625,0.466796875,0.5576171875,0.6298828125,0.654296875,0.626953125,0.5703125,0.5185546875,0.509765625,0.5478515625,0.609375,0.6572265625,0.6611328125,0.6220703125,0.556640625,0.4482421875,0.326171875,0.244140625,0.2275390625,0.265625,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.4892578125,0.4287109375,0.38671875,0.37109375,0.3759765625,0.3828125,0.376953125,0.36328125,0.3408203125,0.328125,0.3427734375,0.3876953125,0.4453125,0.5,0.5390625,0.5341796875,0.4873046875,0.42578125,0.3876953125,0.396484375,0.4482421875,0.501953125,0.525390625,0.5224609375,0.51171875,0.5185546875,0.556640625,0.6220703125,0.6845703125,0.701171875,0.65234375,0.552734375,0.4462890625,0.3828125,0.376953125,0.384765625,0.3798828125,0.3623046875,0.33984375,0.3232421875,0.318359375,0.3251953125,0.333984375,0.3359375,0.330078125,0.3212890625,0.3154296875,0.3173828125,0.3251953125,0.34375,0.3935546875,0.4736328125,0.560546875,0.630859375,0.6669921875,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.330078125,0.353515625,0.400390625,0.4609375,0.5166015625,0.5546875,0.5703125,0.57421875,0.55859375,0.5341796875,0.521484375,0.53515625,0.572265625,0.6220703125,0.673828125,0.7236328125,0.751953125,0.7490234375,0.720703125,0.689453125,0.673828125,0.6494140625,0.5791015625,0.48046875,0.3994140625,0.3681640625,0.3916015625,0.4482421875,0.521484375,0.62890625,0.732421875,0.783203125,0.7626953125,0.6962890625,0.6220703125,0.5361328125,0.412109375,0.291015625,0.2265625,0.2392578125,0.3037109375,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.3125,0.296875,0.298828125,0.3369140625,0.40625,0.484375,0.55078125,0.6025390625,0.6142578125,0.583984375,0.537109375,0.5068359375,0.5185546875,0.5703125,0.6181640625,0.6123046875,0.5546875,0.4794921875,0.431640625,0.439453125,0.5,0.5673828125,0.611328125,0.609375,0.5595703125,0.4912109375,0.4404296875,0.4287109375,0.41796875,0.3701171875,0.30078125,0.248046875,0.236328125,0.2685546875,0.3251953125,0.3984375,0.4990234375,0.591796875,0.6279296875,0.5966796875,0.5234375,0.4482421875,0.373046875,0.306640625,0.2900390625,0.349609375,0.466796875,0.5888671875,0.673828125,0.7373046875,0.759765625,0.71484375,0.611328125,0.4892578125,0.404296875,0.376953125,0.3828125,0.4462890625,0.552734375,0.65234375,0.701171875,0.6845703125,0.6220703125,0.5517578125,0.5,0.482421875,0.50390625,0.5439453125,0.5712890625,0.5703125,0.55078125,0.505859375,0.453125,0.4267578125,0.4423828125,0.490234375,0.55078125,0.6181640625,0.6953125,0.7490234375,0.7490234375,0.6982421875,0.6279296875,0.5703125,0.525390625,0.5068359375,0.51171875,0.5224609375,0.517578125,0.4853515625,0.4287109375,0.3623046875,0.2900390625,0.2451171875,0.2548828125,0.314453125,0.3896484375,0.4482421875,0.4873046875,0.4833984375,0.439453125,0.38671875,0.3623046875,0.384765625,0.4482421875,0.5283203125,0.62890625,0.70703125,0.720703125,0.666015625,0.578125,0.5,0.419921875,0.3232421875,0.248046875,0.234375,0.283203125,0.361328125,0.4287109375,0.49609375,0.576171875,0.650390625,0.693359375,0.7001953125,0.6865234375,0.673828125,0.6572265625,0.6201171875,0.5634765625,0.50390625,0.45703125,0.43359375,0.4287109375,0.4345703125,0.46484375,0.5146484375,0.5703125,0.611328125,0.626953125,0.6220703125,0.60546875,0.5751953125,0.546875,0.546875,0.5634765625,0.583984375,0.6083984375,0.634765625,0.6533203125,0.63671875,0.5849609375,0.5185546875,0.466796875,0.451171875,0.46875,0.5087890625,0.58984375,0.685546875,0.748046875,0.751953125,0.7041015625,0.634765625,0.5498046875,0.4267578125,0.3056640625,0.2421875,0.2548828125,0.3203125,0.39453125,0.466796875,0.53125,0.5576171875,0.5302734375,0.46484375,0.400390625,0.3642578125,0.341796875,0.3447265625,0.3857421875,0.4609375,0.544921875,0.6064453125,0.634765625,0.646484375,0.6298828125,0.58203125,0.5224609375,0.474609375,0.45703125,0.46875,0.486328125,0.490234375,0.4658203125,0.4140625,0.34765625,0.2919921875,0.2587890625,0.2392578125,0.2470703125,0.287109375,0.341796875,0.3876953125,0.40625,0.39453125,0.369140625,0.3232421875,0.2705078125,0.2314453125,0.2197265625,0.2333984375,0.2587890625,0.2880859375,0.3291015625,0.380859375,0.4326171875,0.4775390625,0.5087890625,0.5302734375,0.5380859375,0.505859375,0.44921875,0.4033203125,0.3955078125,0.4326171875,0.5,0.5673828125,0.6123046875,0.6181640625,0.587890625,0.544921875,0.5205078125,0.5302734375,0.54296875,0.5341796875,0.5048828125,0.4697265625,0.4462890625,0.447265625,0.46875,0.49609375,0.517578125,0.5185546875,0.4912109375,0.443359375,0.3955078125,0.3642578125,0.353515625,0.4052734375,0.5078125,0.61328125,0.6728515625,0.6650390625,0.6044921875,0.541015625,0.5146484375,0.53515625,0.5849609375,0.6298828125,0.638671875,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.44140625,0.484375,0.4970703125,0.4609375,0.388671875,0.3125,0.2587890625,0.220703125,0.21484375,0.2509765625,0.3134765625,0.3740234375,0.4033203125,0.39453125,0.3779296875,0.3798828125,0.4189453125,0.5,0.599609375,0.685546875,0.740234375,0.7724609375,0.7490234375,0.6591796875,0.533203125,0.4189453125,0.3603515625,0.3642578125,0.39453125,0.4697265625,0.5771484375,0.6796875,0.744140625,0.759765625,0.740234375,0.7021484375,0.6220703125,0.513671875,0.4140625,0.3544921875,0.34375,0.3642578125,0.3955078125,0.4501953125,0.5244140625,0.6044921875,0.6728515625,0.716796875,0.740234375,0.74609375,0.69921875,0.5986328125,0.48046875,0.38671875,0.349609375,0.3642578125,0.388671875,0.4052734375,0.4140625,0.4189453125,0.427734375,0.4443359375,0.46875,0.50390625,0.5673828125,0.646484375,0.71484375,0.751953125,0.755859375,0.740234375,0.7275390625,0.740234375,0.7705078125,0.7978515625,0.8037109375,0.78125,0.740234375,0.689453125,0.6220703125,0.5439453125,0.4716796875,0.41796875,0.384765625,0.3642578125,0.34765625,0.3466796875,0.3671875,0.40234375,0.4404296875,0.4638671875,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.3994140625,0.4658203125,0.541015625,0.5927734375,0.6025390625,0.57421875,0.5302734375,0.4912109375,0.4814453125,0.5107421875,0.5654296875,0.619140625,0.64453125,0.634765625,0.6015625,0.515625,0.39453125,0.2841796875,0.22265625,0.220703125,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.55859375,0.51171875,0.46875,0.435546875,0.4111328125,0.388671875,0.3642578125,0.3388671875,0.3251953125,0.3359375,0.375,0.4287109375,0.474609375,0.5,0.5087890625,0.484375,0.4306640625,0.375,0.345703125,0.35546875,0.39453125,0.4345703125,0.455078125,0.4638671875,0.4775390625,0.5107421875,0.5654296875,0.634765625,0.6943359375,0.69921875,0.6318359375,0.5185546875,0.41015625,0.3544921875,0.3642578125,0.3837890625,0.375,0.3369140625,0.2861328125,0.248046875,0.2392578125,0.2587890625,0.28125,0.28515625,0.2705078125,0.248046875,0.2333984375,0.2373046875,0.2587890625,0.2958984375,0.373046875,0.4853515625,0.6015625,0.689453125,0.732421875,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.26171875,0.279296875,0.3203125,0.3798828125,0.4453125,0.498046875,0.5302734375,0.5556640625,0.576171875,0.5908203125,0.599609375,0.6064453125,0.6181640625,0.634765625,0.6591796875,0.701171875,0.748046875,0.779296875,0.783203125,0.765625,0.740234375,0.7001953125,0.6123046875,0.4970703125,0.3974609375,0.3486328125,0.3544921875,0.39453125,0.4541015625,0.55859375,0.673828125,0.748046875,0.7548828125,0.705078125,0.634765625,0.548828125,0.421875,0.294921875,0.2236328125,0.2294921875,0.291015625,0.3642578125,0.4345703125,0.490234375,0.4990234375,0.4521484375,0.37109375,0.296875,0.2587890625,0.2353515625,0.2314453125,0.26953125,0.353515625,0.4580078125,0.548828125,0.6044921875,0.640625,0.638671875,0.5966796875,0.5380859375,0.49609375,0.494140625,0.5302734375,0.5634765625,0.55078125,0.4990234375,0.44140625,0.4140625,0.4365234375,0.5,0.568359375,0.6171875,0.6240234375,0.5849609375,0.525390625,0.4794921875,0.46875,0.4580078125,0.40625,0.3251953125,0.2509765625,0.2119140625,0.2197265625,0.2587890625,0.31640625,0.4072265625,0.4990234375,0.546875,0.529296875,0.4677734375,0.39453125,0.322265625,0.2705078125,0.28125,0.3720703125,0.5166015625,0.65234375,0.740234375,0.8046875,0.8271484375,0.775390625,0.6572265625,0.5146484375,0.408203125,0.3642578125,0.3544921875,0.41015625,0.5185546875,0.6318359375,0.69921875,0.6943359375,0.634765625,0.56640625,0.5166015625,0.5,0.513671875,0.5380859375,0.5478515625,0.5302734375,0.5,0.462890625,0.44140625,0.453125,0.4970703125,0.5546875,0.6044921875,0.6494140625,0.6845703125,0.6904296875,0.6591796875,0.60546875,0.556640625,0.5302734375,0.5166015625,0.521484375,0.5380859375,0.5498046875,0.5419921875,0.51171875,0.46875,0.4208984375,0.3671875,0.328125,0.3193359375,0.33984375,0.37109375,0.39453125,0.4033203125,0.375,0.3251953125,0.287109375,0.2861328125,0.3271484375,0.39453125,0.4765625,0.5830078125,0.673828125,0.701171875,0.658203125,0.5771484375,0.5,0.4228515625,0.33984375,0.2861328125,0.2900390625,0.3447265625,0.416015625,0.46875,0.5234375,0.6044921875,0.693359375,0.7568359375,0.7783203125,0.765625,0.740234375,0.7080078125,0.65625,0.5908203125,0.5302734375,0.4892578125,0.4716796875,0.46875,0.4765625,0.51171875,0.568359375,0.6240234375,0.65625,0.6572265625,0.634765625,0.609375,0.591796875,0.595703125,0.435546875,0.4521484375,0.498046875,0.5556640625,0.6044921875,0.640625,0.638671875,0.5966796875,0.5380859375,0.49609375,0.494140625,0.5302734375,0.5859375,0.669921875,0.748046875,0.779296875,0.7490234375,0.6787109375,0.6044921875,0.51953125,0.3955078125,0.275390625,0.2119140625,0.224609375,0.2900390625,0.3642578125,0.4404296875,0.5234375,0.5771484375,0.57421875,0.5185546875,0.4482421875,0.39453125,0.357421875,0.361328125,0.4140625,0.4970703125,0.57421875,0.6123046875,0.6044921875,0.5869140625,0.5751953125,0.5693359375,0.5654296875,0.5595703125,0.5478515625,0.5302734375,0.51171875,0.4912109375,0.4609375,0.416015625,0.361328125,0.306640625,0.2587890625,0.21484375,0.18359375,0.1845703125,0.2236328125,0.2841796875,0.3369140625,0.3642578125,0.3740234375,0.3486328125,0.294921875,0.240234375,0.2109375,0.2197265625,0.2587890625,0.310546875,0.3798828125,0.44921875,0.494140625,0.50390625,0.4892578125,0.46875,0.44140625,0.3896484375,0.33984375,0.3251953125,0.359375,0.4267578125,0.5,0.5712890625,0.630859375,0.6513671875,0.62109375,0.5576171875,0.498046875,0.46875,0.4462890625,0.4130859375,0.3896484375,0.39453125,0.4306640625,0.4814453125,0.5302734375,0.5771484375,0.6201171875,0.6318359375,0.5966796875,0.5234375,0.4482421875,0.39453125,0.3662109375,0.4033203125,0.501953125,0.615234375,0.689453125,0.6923828125,0.634765625,0.5693359375,0.5322265625,0.5380859375,0.580078125,0.6279296875,0.650390625,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.2333984375,0.2158203125,0.2197265625,0.2509765625,0.2978515625,0.33984375,0.3642578125,0.3876953125,0.431640625,0.4990234375,0.580078125,0.654296875,0.7080078125,0.740234375,0.7607421875,0.7490234375,0.6904296875,0.595703125,0.49609375,0.4248046875,0.39453125,0.390625,0.4443359375,0.5517578125,0.6708984375,0.75390625,0.7734375,0.740234375,0.681640625,0.580078125,0.4609375,0.369140625,0.3349609375,0.3515625,0.39453125,0.44921875,0.53515625,0.634765625,0.71484375,0.7548828125,0.7568359375,0.740234375,0.70703125,0.625,0.5107421875,0.408203125,0.353515625,0.35546875,0.39453125,0.435546875,0.458984375,0.4638671875,0.4609375,0.4658203125,0.4892578125,0.5302734375,0.576171875,0.6240234375,0.6650390625,0.693359375,0.7099609375,0.72265625,0.740234375,0.76171875,0.791015625,0.814453125,0.8173828125,0.798828125,0.7685546875,0.740234375,0.7041015625,0.6318359375,0.53515625,0.447265625,0.3935546875,0.3798828125,0.39453125,0.416015625,0.4462890625,0.48046875,0.5078125,0.5234375,0.529296875,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.4443359375,0.501953125,0.5458984375,0.5576171875,0.5361328125,0.4990234375,0.46875,0.4443359375,0.4296875,0.44140625,0.48046875,0.5341796875,0.5791015625,0.6044921875,0.611328125,0.568359375,0.474609375,0.3642578125,0.27734375,0.244140625,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.6103515625,0.587890625,0.5634765625,0.5302734375,0.4873046875,0.4404296875,0.39453125,0.35546875,0.345703125,0.375,0.4306640625,0.484375,0.5087890625,0.5,0.474609375,0.4287109375,0.375,0.3359375,0.3251953125,0.3388671875,0.3642578125,0.3857421875,0.392578125,0.3974609375,0.4189453125,0.466796875,0.533203125,0.6044921875,0.6630859375,0.6640625,0.5966796875,0.4912109375,0.3994140625,0.365234375,0.39453125,0.4287109375,0.4189453125,0.36328125,0.2900390625,0.234375,0.224609375,0.2587890625,0.296875,0.3037109375,0.2783203125,0.240234375,0.21484375,0.220703125,0.2587890625,0.314453125,0.40625,0.521484375,0.6298828125,0.703125,0.7353515625,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2578125,0.2568359375,0.26953125,0.306640625,0.361328125,0.419921875,0.46875,0.51953125,0.580078125,0.6328125,0.6572265625,0.650390625,0.6259765625,0.6044921875,0.595703125,0.625,0.685546875,0.748046875,0.7841796875,0.7783203125,0.740234375,0.68359375,0.58984375,0.4775390625,0.3857421875,0.3408203125,0.3408203125,0.3642578125,0.4052734375,0.4951171875,0.607421875,0.6904296875,0.7109375,0.6728515625,0.6044921875,0.51953125,0.400390625,0.287109375,0.2314453125,0.2509765625,0.3193359375,0.39453125,0.4677734375,0.529296875,0.546875,0.5,0.4072265625,0.31640625,0.2587890625,0.2197265625,0.216796875,0.2734375,0.3798828125,0.5029296875,0.5947265625,0.634765625,0.6533203125,0.63671875,0.5849609375,0.5185546875,0.466796875,0.451171875,0.46875,0.4853515625,0.466796875,0.4248046875,0.3916015625,0.3916015625,0.4326171875,0.5,0.5703125,0.6259765625,0.646484375,0.6240234375,0.5771484375,0.5390625,0.5302734375,0.51953125,0.4716796875,0.3916015625,0.30859375,0.2529296875,0.2392578125,0.2587890625,0.296875,0.37109375,0.4521484375,0.5,0.490234375,0.4345703125,0.3642578125,0.29296875,0.244140625,0.26171875,0.361328125,0.51171875,0.6513671875,0.740234375,0.8076171875,0.8447265625,0.814453125,0.7119140625,0.5732421875,0.4560546875,0.39453125,0.365234375,0.3994140625,0.4912109375,0.5966796875,0.6640625,0.6630859375,0.6044921875,0.5380859375,0.4951171875,0.4853515625,0.5,0.5146484375,0.5068359375,0.46875,0.4248046875,0.396484375,0.40625,0.4580078125,0.533203125,0.599609375,0.634765625,0.654296875,0.642578125,0.595703125,0.533203125,0.4794921875,0.4580078125,0.46875,0.4931640625,0.529296875,0.56640625,0.5849609375,0.580078125,0.556640625,0.5302734375,0.5029296875,0.474609375,0.447265625,0.421875,0.4013671875,0.3828125,0.3642578125,0.3359375,0.2802734375,0.2236328125,0.201171875,0.228515625,0.2919921875,0.3642578125,0.447265625,0.5576171875,0.654296875,0.6904296875,0.6533203125,0.576171875,0.5,0.4267578125,0.3623046875,0.3369140625,0.36328125,0.4287109375,0.4931640625,0.5302734375,0.56640625,0.6376953125,0.7236328125,0.787109375,0.8056640625,0.783203125,0.740234375,0.69140625,0.6328125,0.5771484375,0.541015625,0.52734375,0.5283203125,0.5302734375,0.5380859375,0.5732421875,0.6240234375,0.6630859375,0.6708984375,0.6474609375,0.6044921875,0.56640625,0.560546875,0.5966796875,0.33203125,0.341796875,0.40234375,0.4833984375,0.55078125,0.6025390625,0.6142578125,0.583984375,0.537109375,0.5068359375,0.5185546875,0.5703125,0.6396484375,0.7236328125,0.7841796875,0.783203125,0.720703125,0.6298828125,0.55078125,0.4677734375,0.3525390625,0.2470703125,0.201171875,0.228515625,0.3017578125,0.376953125,0.45703125,0.5537109375,0.62890625,0.642578125,0.59375,0.515625,0.4482421875,0.3974609375,0.39453125,0.4443359375,0.51953125,0.5791015625,0.58984375,0.55078125,0.5087890625,0.50390625,0.5361328125,0.5849609375,0.6171875,0.6123046875,0.5703125,0.5234375,0.4921875,0.4736328125,0.45703125,0.4287109375,0.3837890625,0.3251953125,0.259765625,0.1923828125,0.154296875,0.171875,0.2392578125,0.318359375,0.376953125,0.4169921875,0.412109375,0.3642578125,0.3037109375,0.265625,0.2744140625,0.3251953125,0.39453125,0.4814453125,0.5546875,0.5771484375,0.544921875,0.484375,0.4287109375,0.37109375,0.30078125,0.25390625,0.263671875,0.330078125,0.4208984375,0.5,0.5751953125,0.6484375,0.68359375,0.65625,0.578125,0.490234375,0.4287109375,0.3740234375,0.318359375,0.294921875,0.3271484375,0.408203125,0.5,0.5703125,0.6357421875,0.701171875,0.73046875,0.6982421875,0.6142578125,0.5185546875,0.4482421875,0.40234375,0.419921875,0.5009765625,0.603515625,0.6748046875,0.6787109375,0.6220703125,0.5537109375,0.5068359375,0.5009765625,0.5361328125,0.587890625,0.6220703125,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3095703125,0.2783203125,0.25,0.2470703125,0.275390625,0.3251953125,0.376953125,0.4326171875,0.4990234375,0.5673828125,0.619140625,0.6494140625,0.6630859375,0.673828125,0.685546875,0.6953125,0.6845703125,0.642578125,0.5751953125,0.50390625,0.4482421875,0.412109375,0.4375,0.5244140625,0.6318359375,0.708984375,0.720703125,0.673828125,0.599609375,0.4921875,0.384765625,0.3251953125,0.33203125,0.384765625,0.4482421875,0.51953125,0.6220703125,0.7216796875,0.7763671875,0.771484375,0.7265625,0.673828125,0.6103515625,0.509765625,0.404296875,0.33984375,0.3388671875,0.38671875,0.4482421875,0.501953125,0.525390625,0.5185546875,0.4990234375,0.4921875,0.515625,0.5703125,0.625,0.65234375,0.6494140625,0.62890625,0.6162109375,0.6298828125,0.673828125,0.724609375,0.767578125,0.78515625,0.767578125,0.7275390625,0.6904296875,0.673828125,0.6513671875,0.5859375,0.49609375,0.4189453125,0.3857421875,0.40234375,0.4482421875,0.5,0.552734375,0.5888671875,0.599609375,0.5888671875,0.57421875,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.5087890625,0.556640625,0.572265625,0.5458984375,0.4931640625,0.4482421875,0.4287109375,0.4150390625,0.392578125,0.3798828125,0.39453125,0.439453125,0.4970703125,0.55078125,0.59375,0.59765625,0.548828125,0.4638671875,0.376953125,0.328125,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.6162109375,0.623046875,0.6279296875,0.6123046875,0.5703125,0.509765625,0.4482421875,0.396484375,0.3876953125,0.42578125,0.4873046875,0.5341796875,0.5390625,0.5,0.4453125,0.3876953125,0.3427734375,0.328125,0.3408203125,0.36328125,0.376953125,0.3818359375,0.3681640625,0.35546875,0.3671875,0.4111328125,0.478515625,0.55078125,0.6103515625,0.6142578125,0.55859375,0.4755859375,0.41015625,0.400390625,0.4482421875,0.49609375,0.490234375,0.4287109375,0.3447265625,0.283203125,0.27734375,0.3251953125,0.376953125,0.3857421875,0.3515625,0.2998046875,0.265625,0.2744140625,0.3251953125,0.3935546875,0.48046875,0.5693359375,0.6357421875,0.6669921875,0.673828125,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.3193359375,0.296875,0.2734375,0.275390625,0.3095703125,0.3671875,0.4287109375,0.4990234375,0.587890625,0.6640625,0.6923828125,0.6640625,0.6064453125,0.55078125,0.5126953125,0.5263671875,0.58984375,0.669921875,0.7236328125,0.72265625,0.673828125,0.60546875,0.5185546875,0.43359375,0.376953125,0.3583984375,0.365234375,0.376953125,0.4013671875,0.4716796875,0.56640625,0.6376953125,0.6552734375,0.6181640625,0.55078125,0.46875,0.3623046875,0.2724609375,0.2451171875,0.2890625,0.3701171875,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.271484375,0.2568359375,0.3037109375,0.4033203125,0.5166015625,0.595703125,0.6220703125,0.6259765625,0.6044921875,0.5556640625,0.4951171875,0.4462890625,0.4248046875,0.4287109375,0.4306640625,0.4052734375,0.369140625,0.353515625,0.375,0.4296875,0.5,0.5712890625,0.6318359375,0.6611328125,0.6494140625,0.611328125,0.578125,0.5703125,0.5625,0.52734375,0.46484375,0.3955078125,0.34375,0.3212890625,0.3251953125,0.3466796875,0.40234375,0.4697265625,0.5087890625,0.4990234375,0.447265625,0.376953125,0.3046875,0.24609375,0.24609375,0.32421875,0.45703125,0.5869140625,0.673828125,0.74609375,0.806640625,0.8154296875,0.751953125,0.63671875,0.5224609375,0.4482421875,0.400390625,0.41015625,0.4755859375,0.55859375,0.6142578125,0.6103515625,0.55078125,0.4873046875,0.455078125,0.4609375,0.484375,0.4990234375,0.4814453125,0.4287109375,0.3720703125,0.3447265625,0.369140625,0.44140625,0.5322265625,0.5986328125,0.6220703125,0.6201171875,0.5751953125,0.49609375,0.4189453125,0.3779296875,0.3857421875,0.4287109375,0.4833984375,0.5439453125,0.5927734375,0.6123046875,0.6044921875,0.583984375,0.5703125,0.5625,0.5615234375,0.5546875,0.529296875,0.484375,0.4296875,0.376953125,0.3173828125,0.2392578125,0.17578125,0.1669921875,0.21875,0.30078125,0.376953125,0.4599609375,0.5693359375,0.6630859375,0.6953125,0.6552734375,0.576171875,0.5,0.4296875,0.3798828125,0.375,0.4189453125,0.490234375,0.5478515625,0.5703125,0.5908203125,0.646484375,0.7177734375,0.7666015625,0.7705078125,0.732421875,0.673828125,0.611328125,0.5537109375,0.51953125,0.5185546875,0.541015625,0.5634765625,0.5703125,0.578125,0.611328125,0.6533203125,0.673828125,0.658203125,0.611328125,0.55078125,0.5009765625,0.5009765625,0.5546875,0.271484375,0.2734375,0.33984375,0.431640625,0.509765625,0.5693359375,0.5859375,0.5576171875,0.51171875,0.4833984375,0.5,0.5595703125,0.63671875,0.72265625,0.7783203125,0.765625,0.689453125,0.58984375,0.509765625,0.427734375,0.32421875,0.2392578125,0.21875,0.267578125,0.3515625,0.4296875,0.5107421875,0.611328125,0.689453125,0.705078125,0.65234375,0.56640625,0.4892578125,0.431640625,0.421875,0.46484375,0.5283203125,0.572265625,0.5654296875,0.509765625,0.4541015625,0.44921875,0.4990234375,0.5703125,0.619140625,0.615234375,0.5595703125,0.4990234375,0.47265625,0.4814453125,0.5029296875,0.509765625,0.4814453125,0.419921875,0.3427734375,0.2529296875,0.19140625,0.1943359375,0.26171875,0.353515625,0.4296875,0.486328125,0.494140625,0.4521484375,0.3916015625,0.3515625,0.361328125,0.419921875,0.498046875,0.5908203125,0.6591796875,0.6640625,0.603515625,0.515625,0.439453125,0.3642578125,0.2802734375,0.2275390625,0.2421875,0.3193359375,0.4189453125,0.5,0.5771484375,0.662109375,0.712890625,0.6962890625,0.6162109375,0.517578125,0.439453125,0.3662109375,0.2900390625,0.251953125,0.283203125,0.373046875,0.478515625,0.5595703125,0.6357421875,0.71875,0.7685546875,0.75,0.669921875,0.5693359375,0.4892578125,0.43359375,0.43359375,0.4912109375,0.572265625,0.6298828125,0.6279296875,0.5693359375,0.5,0.4482421875,0.4365234375,0.4677734375,0.5205078125,0.560546875,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.4091796875,0.369140625,0.3203125,0.294921875,0.310546875,0.3623046875,0.4296875,0.4990234375,0.56640625,0.611328125,0.62109375,0.6044921875,0.583984375,0.5791015625,0.587890625,0.6181640625,0.6494140625,0.654296875,0.6201171875,0.55859375,0.4892578125,0.4345703125,0.4365234375,0.49609375,0.578125,0.63671875,0.6357421875,0.5791015625,0.4990234375,0.396484375,0.3115234375,0.287109375,0.3330078125,0.4140625,0.4892578125,0.5693359375,0.6708984375,0.7548828125,0.7783203125,0.7333984375,0.6533203125,0.5791015625,0.5009765625,0.3994140625,0.314453125,0.2900390625,0.333984375,0.4140625,0.4892578125,0.5498046875,0.568359375,0.544921875,0.50390625,0.48046875,0.4990234375,0.5595703125,0.6181640625,0.6318359375,0.5986328125,0.5458984375,0.5107421875,0.5224609375,0.5791015625,0.646484375,0.697265625,0.7109375,0.6826171875,0.6318359375,0.5908203125,0.5791015625,0.56640625,0.513671875,0.443359375,0.390625,0.384765625,0.4248046875,0.4892578125,0.5576171875,0.6162109375,0.64453125,0.6337890625,0.5986328125,0.5673828125,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.556640625,0.6025390625,0.6064453125,0.5634765625,0.5,0.4521484375,0.439453125,0.4306640625,0.3974609375,0.3623046875,0.3525390625,0.3818359375,0.44140625,0.509765625,0.5732421875,0.611328125,0.603515625,0.5498046875,0.4794921875,0.4296875,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.5751953125,0.60546875,0.6396484375,0.6484375,0.619140625,0.5595703125,0.4892578125,0.4306640625,0.4208984375,0.4609375,0.5224609375,0.564453125,0.5556640625,0.5,0.4306640625,0.3720703125,0.341796875,0.3515625,0.3876953125,0.419921875,0.4296875,0.4228515625,0.392578125,0.357421875,0.3466796875,0.376953125,0.4384765625,0.509765625,0.5693359375,0.578125,0.53515625,0.4697265625,0.4248046875,0.431640625,0.4892578125,0.5458984375,0.5478515625,0.4931640625,0.416015625,0.361328125,0.36328125,0.419921875,0.478515625,0.48828125,0.44921875,0.3896484375,0.3505859375,0.361328125,0.419921875,0.4912109375,0.5625,0.6103515625,0.623046875,0.6064453125,0.5849609375,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.41015625,0.3720703125,0.32421875,0.2998046875,0.3173828125,0.37109375,0.439453125,0.5185546875,0.6181640625,0.6982421875,0.7158203125,0.666015625,0.583984375,0.509765625,0.4541015625,0.453125,0.5087890625,0.5859375,0.6396484375,0.63671875,0.5791015625,0.5078125,0.4375,0.3896484375,0.37890625,0.3984375,0.421875,0.4296875,0.443359375,0.49609375,0.5673828125,0.6181640625,0.62109375,0.5771484375,0.509765625,0.4296875,0.3330078125,0.26171875,0.255859375,0.318359375,0.41015625,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.4990234375,0.419921875,0.3544921875,0.3212890625,0.33984375,0.408203125,0.494140625,0.5546875,0.5693359375,0.5673828125,0.5517578125,0.5224609375,0.486328125,0.45703125,0.44140625,0.439453125,0.4326171875,0.3994140625,0.359375,0.3447265625,0.3701171875,0.4287109375,0.5,0.5703125,0.6298828125,0.6572265625,0.642578125,0.6025390625,0.568359375,0.5595703125,0.5556640625,0.5380859375,0.505859375,0.4677734375,0.4375,0.421875,0.419921875,0.431640625,0.4755859375,0.53125,0.564453125,0.5517578125,0.4990234375,0.4296875,0.353515625,0.27734375,0.244140625,0.283203125,0.3837890625,0.49609375,0.5791015625,0.65625,0.7392578125,0.7841796875,0.759765625,0.673828125,0.5693359375,0.4892578125,0.431640625,0.4248046875,0.4697265625,0.53515625,0.578125,0.5693359375,0.509765625,0.4482421875,0.427734375,0.451171875,0.4921875,0.517578125,0.4990234375,0.439453125,0.3740234375,0.337890625,0.3525390625,0.416015625,0.4970703125,0.5546875,0.5693359375,0.55859375,0.50390625,0.4248046875,0.3603515625,0.3427734375,0.3759765625,0.439453125,0.5087890625,0.5751953125,0.615234375,0.619140625,0.59375,0.5673828125,0.5595703125,0.564453125,0.5869140625,0.6083984375,0.6044921875,0.5634765625,0.4990234375,0.4296875,0.353515625,0.26171875,0.1953125,0.1943359375,0.2578125,0.3505859375,0.4296875,0.5107421875,0.61328125,0.6962890625,0.71484375,0.6630859375,0.5771484375,0.5,0.4306640625,0.384765625,0.3837890625,0.4287109375,0.49609375,0.5458984375,0.5595703125,0.5712890625,0.615234375,0.6728515625,0.70703125,0.697265625,0.6474609375,0.5791015625,0.5107421875,0.45703125,0.439453125,0.4638671875,0.51171875,0.5498046875,0.5595703125,0.568359375,0.6025390625,0.6435546875,0.66015625,0.6357421875,0.5791015625,0.509765625,0.4521484375,0.44921875,0.5029296875,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.2578125,0.255859375,0.3203125,0.412109375,0.4892578125,0.5458984375,0.5478515625,0.4931640625,0.416015625,0.361328125,0.36328125,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.4326171875,0.3466796875,0.2939453125,0.3095703125,0.3876953125,0.48828125,0.5693359375,0.6474609375,0.7314453125,0.7802734375,0.759765625,0.6748046875,0.5712890625,0.4892578125,0.4296875,0.4208984375,0.4638671875,0.529296875,0.57421875,0.5673828125,0.509765625,0.44921875,0.427734375,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.365234375,0.3740234375,0.44921875,0.5498046875,0.625,0.6337890625,0.5791015625,0.5009765625,0.4052734375,0.3349609375,0.328125,0.3896484375,0.48046875,0.5595703125,0.6201171875,0.6337890625,0.599609375,0.544921875,0.5087890625,0.5205078125,0.5791015625,0.6572265625,0.7490234375,0.814453125,0.814453125,0.7490234375,0.6572265625,0.5791015625,0.4990234375,0.396484375,0.3115234375,0.287109375,0.3330078125,0.4140625,0.4892578125,0.5693359375,0.671875,0.7578125,0.78125,0.736328125,0.6552734375,0.5791015625,0.498046875,0.38671875,0.287109375,0.2470703125,0.2783203125,0.353515625,0.4296875,0.5107421875,0.6142578125,0.697265625,0.7177734375,0.6689453125,0.5859375,0.509765625,0.44921875,0.427734375,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.3525390625,0.3037109375,0.294921875,0.330078125,0.38671875,0.4296875,0.439453125,0.443359375,0.4599609375,0.490234375,0.5244140625,0.5537109375,0.568359375,0.5693359375,0.5673828125,0.56640625,0.564453125,0.5634765625,0.5625,0.560546875,0.5595703125,0.548828125,0.5087890625,0.4609375,0.4375,0.4560546875,0.5107421875,0.5791015625,0.6435546875,0.6767578125,0.6552734375,0.583984375,0.49609375,0.4345703125,0.419921875,0.4296875,0.4765625,0.54296875,0.5908203125,0.5947265625,0.5546875,0.4892578125,0.431640625,0.416015625,0.4443359375,0.490234375,0.5166015625,0.4990234375,0.439453125,0.36328125,0.27734375,0.224609375,0.2392578125,0.318359375,0.4189453125,0.5,0.5771484375,0.6591796875,0.7060546875,0.68359375,0.599609375,0.498046875,0.419921875,0.345703125,0.265625,0.220703125,0.244140625,0.328125,0.4296875,0.509765625,0.5654296875,0.5654296875,0.5078125,0.4267578125,0.369140625,0.37109375,0.4296875,0.4892578125,0.5,0.458984375,0.396484375,0.353515625,0.3623046875,0.419921875,0.48828125,0.5390625,0.5537109375,0.525390625,0.4755859375,0.4375,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.576171875,0.6171875,0.61328125,0.564453125,0.4970703125,0.44921875,0.439453125,0.4443359375,0.4638671875,0.4970703125,0.533203125,0.5634765625,0.578125,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.580078125,0.638671875,0.6640625,0.6494140625,0.609375,0.576171875,0.5693359375,0.55859375,0.5087890625,0.4375,0.3857421875,0.3798828125,0.421875,0.4892578125,0.560546875,0.6220703125,0.65234375,0.6416015625,0.6064453125,0.576171875,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.4501953125,0.49609375,0.55859375,0.6005859375,0.5986328125,0.5546875,0.4892578125,0.43359375,0.4267578125,0.470703125,0.5341796875,0.5771484375,0.5673828125,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.5478515625,0.5576171875,0.5166015625,0.45703125,0.41796875,0.4296875,0.4892578125,0.5517578125,0.57421875,0.5537109375,0.515625,0.4931640625,0.5107421875,0.5693359375,0.6259765625,0.63671875,0.599609375,0.5439453125,0.5078125,0.5205078125,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.4228515625,0.4384765625,0.46875,0.5048828125,0.5361328125,0.5546875,0.5595703125,0.5517578125,0.5126953125,0.4619140625,0.4326171875,0.4443359375,0.4931640625,0.5595703125,0.6337890625,0.7158203125,0.765625,0.748046875,0.66796875,0.568359375,0.4892578125,0.4296875,0.4111328125,0.435546875,0.478515625,0.5048828125,0.48828125,0.4296875,0.3671875,0.3359375,0.3583984375,0.4267578125,0.5107421875,0.568359375,0.5791015625,0.5859375,0.615234375,0.6484375,0.6552734375,0.623046875,0.5615234375,0.4892578125,0.41015625,0.318359375,0.25390625,0.2548828125,0.3212890625,0.4130859375,0.4892578125,0.5673828125,0.66796875,0.751953125,0.775390625,0.732421875,0.6533203125,0.5791015625,0.509765625,0.4423828125,0.3974609375,0.3876953125,0.4052734375,0.42578125,0.4296875,0.431640625,0.447265625,0.4765625,0.5126953125,0.5419921875,0.5576171875,0.5595703125,0.546875,0.4990234375,0.43359375,0.3896484375,0.390625,0.4345703125,0.5,0.564453125,0.6044921875,0.599609375,0.5498046875,0.48046875,0.4306640625,0.419921875,0.4228515625,0.4384765625,0.46875,0.5048828125,0.5361328125,0.5546875,0.5595703125,0.5703125,0.61328125,0.666015625,0.697265625,0.685546875,0.6357421875,0.5693359375,0.490234375,0.384765625,0.2919921875,0.2578125,0.29296875,0.3671875,0.439453125,0.517578125,0.6171875,0.697265625,0.716796875,0.66796875,0.5859375,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.4521484375,0.44921875,0.5009765625,0.57421875,0.6240234375,0.6181640625,0.5595703125,0.486328125,0.4169921875,0.3740234375,0.369140625,0.3935546875,0.4208984375,0.4296875,0.42578125,0.4052734375,0.3876953125,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.642578125,0.6767578125,0.6591796875,0.5947265625,0.51171875,0.4541015625,0.439453125,0.451171875,0.5068359375,0.5888671875,0.654296875,0.671875,0.6357421875,0.5693359375,0.490234375,0.3984375,0.3349609375,0.337890625,0.4072265625,0.5009765625,0.5791015625,0.6552734375,0.7392578125,0.7880859375,0.7705078125,0.689453125,0.5888671875,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.4306640625,0.4736328125,0.5263671875,0.5576171875,0.5458984375,0.49609375,0.4296875,0.36328125,0.314453125,0.3046875,0.3359375,0.388671875,0.4296875,0.439453125,0.451171875,0.4990234375,0.5634765625,0.6064453125,0.6044921875,0.55859375,0.4892578125,0.4287109375,0.41015625,0.4384765625,0.2548828125,0.24609375,0.298828125,0.37890625,0.4482421875,0.49609375,0.490234375,0.4287109375,0.3447265625,0.283203125,0.27734375,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.4833984375,0.4052734375,0.3564453125,0.3701171875,0.4453125,0.5419921875,0.6220703125,0.697265625,0.7705078125,0.7978515625,0.751953125,0.646484375,0.53125,0.4482421875,0.388671875,0.384765625,0.4404296875,0.5234375,0.5888671875,0.5986328125,0.55078125,0.4951171875,0.4580078125,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.2822265625,0.3154296875,0.427734375,0.5712890625,0.68359375,0.716796875,0.673828125,0.6015625,0.501953125,0.4140625,0.3828125,0.4189453125,0.494140625,0.5703125,0.6337890625,0.6630859375,0.6533203125,0.625,0.60546875,0.62109375,0.673828125,0.7412109375,0.822265625,0.87890625,0.87890625,0.822265625,0.7412109375,0.673828125,0.599609375,0.4921875,0.384765625,0.3251953125,0.33203125,0.384765625,0.4482421875,0.521484375,0.62890625,0.736328125,0.7958984375,0.7890625,0.736328125,0.673828125,0.5966796875,0.474609375,0.34375,0.2607421875,0.25390625,0.3056640625,0.376953125,0.4599609375,0.5693359375,0.6669921875,0.7080078125,0.6826171875,0.6171875,0.55078125,0.4951171875,0.4580078125,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.2685546875,0.236328125,0.248046875,0.30078125,0.3701171875,0.41796875,0.4287109375,0.4345703125,0.46484375,0.5146484375,0.5703125,0.611328125,0.626953125,0.6220703125,0.6123046875,0.6044921875,0.5986328125,0.59375,0.587890625,0.580078125,0.5703125,0.5537109375,0.5234375,0.4990234375,0.50390625,0.546875,0.609375,0.673828125,0.7265625,0.7353515625,0.6767578125,0.5634765625,0.4375,0.3525390625,0.3251953125,0.3251953125,0.3623046875,0.42578125,0.484375,0.509765625,0.4931640625,0.4482421875,0.40625,0.40234375,0.4345703125,0.4775390625,0.4990234375,0.482421875,0.4287109375,0.361328125,0.283203125,0.234375,0.248046875,0.3232421875,0.419921875,0.5,0.572265625,0.6328125,0.6455078125,0.5908203125,0.4892578125,0.3896484375,0.3251953125,0.2724609375,0.2275390625,0.22265625,0.27734375,0.376953125,0.4794921875,0.55078125,0.5966796875,0.5791015625,0.498046875,0.3955078125,0.32421875,0.3203125,0.376953125,0.4375,0.4482421875,0.404296875,0.333984375,0.2802734375,0.27734375,0.3251953125,0.384765625,0.4296875,0.4453125,0.4287109375,0.396484375,0.375,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.6064453125,0.630859375,0.6064453125,0.5439453125,0.4736328125,0.4306640625,0.4287109375,0.4462890625,0.4892578125,0.5537109375,0.6181640625,0.6630859375,0.6796875,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.62109375,0.67578125,0.697265625,0.681640625,0.6455078125,0.6201171875,0.6220703125,0.6181640625,0.5625,0.47265625,0.3916015625,0.3583984375,0.3837890625,0.4482421875,0.5205078125,0.587890625,0.6318359375,0.6435546875,0.630859375,0.6171875,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.4365234375,0.46875,0.5107421875,0.537109375,0.5322265625,0.4970703125,0.4482421875,0.4091796875,0.419921875,0.4794921875,0.5546875,0.6044921875,0.6015625,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.4970703125,0.5009765625,0.458984375,0.40234375,0.3701171875,0.38671875,0.4482421875,0.5146484375,0.55859375,0.572265625,0.56640625,0.5615234375,0.578125,0.6220703125,0.6640625,0.671875,0.6474609375,0.61328125,0.59765625,0.619140625,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.330078125,0.353515625,0.400390625,0.4609375,0.5166015625,0.5546875,0.5703125,0.5732421875,0.55078125,0.5146484375,0.4892578125,0.490234375,0.521484375,0.5703125,0.625,0.68359375,0.7109375,0.68359375,0.6064453125,0.517578125,0.4482421875,0.3935546875,0.3701171875,0.380859375,0.4091796875,0.4296875,0.419921875,0.376953125,0.3359375,0.3408203125,0.4052734375,0.509765625,0.611328125,0.669921875,0.673828125,0.66796875,0.6748046875,0.67578125,0.6513671875,0.5947265625,0.521484375,0.4482421875,0.37109375,0.2890625,0.2373046875,0.24609375,0.3095703125,0.388671875,0.4482421875,0.509765625,0.6044921875,0.7021484375,0.76171875,0.7646484375,0.724609375,0.673828125,0.6181640625,0.55078125,0.4833984375,0.4306640625,0.4013671875,0.3876953125,0.376953125,0.373046875,0.39453125,0.443359375,0.50390625,0.552734375,0.57421875,0.5703125,0.55078125,0.505859375,0.4501953125,0.4140625,0.4150390625,0.4501953125,0.5,0.544921875,0.5615234375,0.5322265625,0.4638671875,0.3876953125,0.3369140625,0.3251953125,0.330078125,0.353515625,0.400390625,0.4609375,0.5166015625,0.5546875,0.5703125,0.5888671875,0.6318359375,0.68359375,0.7138671875,0.708984375,0.671875,0.6220703125,0.560546875,0.470703125,0.3798828125,0.3291015625,0.3330078125,0.376953125,0.4287109375,0.490234375,0.578125,0.66015625,0.697265625,0.6748046875,0.615234375,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.501953125,0.5009765625,0.5478515625,0.6083984375,0.6455078125,0.630859375,0.5703125,0.494140625,0.412109375,0.3486328125,0.3232421875,0.3359375,0.361328125,0.376953125,0.3876953125,0.4013671875,0.4306640625,0.4833984375,0.55078125,0.6181640625,0.673828125,0.71875,0.732421875,0.6953125,0.61328125,0.5185546875,0.4521484375,0.4287109375,0.43359375,0.4912109375,0.5849609375,0.6708984375,0.708984375,0.685546875,0.6220703125,0.544921875,0.462890625,0.4150390625,0.43359375,0.509765625,0.6025390625,0.673828125,0.73828125,0.8046875,0.833984375,0.8017578125,0.7177734375,0.6220703125,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.34375,0.3876953125,0.4384765625,0.4697265625,0.4638671875,0.4267578125,0.376953125,0.3291015625,0.2978515625,0.2998046875,0.3349609375,0.384765625,0.4208984375,0.4287109375,0.439453125,0.4833984375,0.541015625,0.576171875,0.5673828125,0.517578125,0.4482421875,0.3857421875,0.3671875,0.3955078125,0.2587890625,0.2421875,0.2802734375,0.3427734375,0.39453125,0.4287109375,0.4189453125,0.36328125,0.2900390625,0.234375,0.224609375,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.55078125,0.48046875,0.4248046875,0.421875,0.4755859375,0.55859375,0.634765625,0.708984375,0.7744140625,0.787109375,0.7236328125,0.603515625,0.4794921875,0.39453125,0.3359375,0.3349609375,0.40234375,0.5078125,0.599609375,0.6337890625,0.6044921875,0.55859375,0.509765625,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.232421875,0.2841796875,0.4169921875,0.58203125,0.71484375,0.7666015625,0.740234375,0.6806640625,0.5810546875,0.4716796875,0.4052734375,0.4052734375,0.458984375,0.5302734375,0.5986328125,0.6494140625,0.67578125,0.6826171875,0.6845703125,0.701171875,0.740234375,0.7900390625,0.849609375,0.892578125,0.892578125,0.849609375,0.7900390625,0.740234375,0.681640625,0.580078125,0.4609375,0.369140625,0.3349609375,0.3515625,0.39453125,0.453125,0.5546875,0.673828125,0.7646484375,0.7998046875,0.7822265625,0.740234375,0.677734375,0.556640625,0.4111328125,0.30078125,0.263671875,0.296875,0.3642578125,0.4453125,0.5537109375,0.654296875,0.70703125,0.6982421875,0.6533203125,0.6044921875,0.55859375,0.509765625,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.2197265625,0.2119140625,0.2509765625,0.3251953125,0.40625,0.4580078125,0.46875,0.4765625,0.51171875,0.568359375,0.6240234375,0.65625,0.6572265625,0.634765625,0.6103515625,0.59375,0.5849609375,0.580078125,0.5712890625,0.5546875,0.5302734375,0.5029296875,0.482421875,0.4912109375,0.5380859375,0.61328125,0.6875,0.740234375,0.7763671875,0.7666015625,0.6875,0.5517578125,0.40625,0.3017578125,0.2587890625,0.2392578125,0.2470703125,0.287109375,0.341796875,0.3876953125,0.40625,0.39453125,0.3837890625,0.4052734375,0.4521484375,0.5,0.521484375,0.5087890625,0.46875,0.416015625,0.3447265625,0.2900390625,0.2861328125,0.33984375,0.4228515625,0.5,0.56640625,0.6005859375,0.57421875,0.48828125,0.3779296875,0.29296875,0.2587890625,0.2421875,0.244140625,0.2841796875,0.3642578125,0.4638671875,0.5498046875,0.6044921875,0.6328125,0.595703125,0.4970703125,0.3837890625,0.3095703125,0.306640625,0.3642578125,0.4248046875,0.4384765625,0.39453125,0.3173828125,0.2490234375,0.2275390625,0.2587890625,0.3017578125,0.33203125,0.3447265625,0.341796875,0.3369140625,0.341796875,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.6416015625,0.6435546875,0.6015625,0.53515625,0.4765625,0.453125,0.46875,0.5048828125,0.572265625,0.6572265625,0.728515625,0.7646484375,0.7626953125,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.671875,0.7119140625,0.712890625,0.6787109375,0.6376953125,0.6181640625,0.634765625,0.6455078125,0.59375,0.4912109375,0.3857421875,0.326171875,0.333984375,0.39453125,0.4658203125,0.5322265625,0.580078125,0.6015625,0.6064453125,0.61328125,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.4697265625,0.4716796875,0.4697265625,0.4580078125,0.4375,0.4150390625,0.39453125,0.38671875,0.4248046875,0.501953125,0.5849609375,0.6376953125,0.6416015625,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.4287109375,0.419921875,0.375,0.3251953125,0.3046875,0.3310546875,0.39453125,0.466796875,0.5380859375,0.5908203125,0.6162109375,0.619140625,0.62109375,0.634765625,0.6494140625,0.6494140625,0.642578125,0.6435546875,0.6611328125,0.6962890625,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.26171875,0.279296875,0.3203125,0.3798828125,0.4453125,0.498046875,0.5302734375,0.552734375,0.5615234375,0.5517578125,0.533203125,0.5166015625,0.5146484375,0.5302734375,0.5517578125,0.5751953125,0.58203125,0.5576171875,0.5048828125,0.4443359375,0.39453125,0.3525390625,0.326171875,0.3251953125,0.3447265625,0.3681640625,0.376953125,0.3642578125,0.3583984375,0.4052734375,0.5048828125,0.6240234375,0.716796875,0.75390625,0.740234375,0.716796875,0.697265625,0.66796875,0.6181640625,0.5478515625,0.46875,0.39453125,0.322265625,0.2587890625,0.2314453125,0.25390625,0.310546875,0.3662109375,0.39453125,0.423828125,0.490234375,0.5849609375,0.6767578125,0.736328125,0.7529296875,0.740234375,0.716796875,0.6728515625,0.6044921875,0.5244140625,0.4501953125,0.3955078125,0.3642578125,0.345703125,0.3623046875,0.4140625,0.48046875,0.5322265625,0.5478515625,0.5302734375,0.5009765625,0.466796875,0.44140625,0.4365234375,0.4521484375,0.478515625,0.5,0.5126953125,0.4970703125,0.447265625,0.375,0.3076171875,0.267578125,0.2587890625,0.26171875,0.279296875,0.3203125,0.3798828125,0.4453125,0.498046875,0.5302734375,0.560546875,0.603515625,0.646484375,0.6708984375,0.6708984375,0.654296875,0.634765625,0.6103515625,0.5654296875,0.5107421875,0.466796875,0.447265625,0.4521484375,0.46875,0.4970703125,0.5537109375,0.62109375,0.66796875,0.67578125,0.6484375,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.568359375,0.568359375,0.5966796875,0.6259765625,0.6298828125,0.5947265625,0.5302734375,0.4521484375,0.3642578125,0.294921875,0.2705078125,0.291015625,0.33203125,0.3642578125,0.3955078125,0.4501953125,0.5244140625,0.6044921875,0.6728515625,0.716796875,0.740234375,0.755859375,0.751953125,0.71484375,0.646484375,0.5673828125,0.50390625,0.46875,0.45703125,0.5,0.5849609375,0.6708984375,0.7138671875,0.697265625,0.634765625,0.5615234375,0.4951171875,0.4716796875,0.5107421875,0.595703125,0.68359375,0.740234375,0.787109375,0.830078125,0.8427734375,0.806640625,0.734375,0.658203125,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2900390625,0.3330078125,0.375,0.3994140625,0.400390625,0.3837890625,0.3642578125,0.34765625,0.3466796875,0.3671875,0.40234375,0.4404296875,0.4638671875,0.46875,0.4775390625,0.509765625,0.546875,0.5576171875,0.52734375,0.4658203125,0.39453125,0.3330078125,0.3154296875,0.3525390625,0.275390625,0.2587890625,0.287109375,0.33203125,0.3642578125,0.3837890625,0.375,0.3369140625,0.2861328125,0.248046875,0.2392578125,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.5986328125,0.5341796875,0.46875,0.44140625,0.4677734375,0.5322265625,0.6044921875,0.6787109375,0.744140625,0.7568359375,0.693359375,0.572265625,0.44921875,0.3642578125,0.3046875,0.2998046875,0.3671875,0.48046875,0.5888671875,0.64453125,0.634765625,0.6044921875,0.5546875,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.248046875,0.302734375,0.4248046875,0.57421875,0.6962890625,0.7509765625,0.740234375,0.6982421875,0.6044921875,0.4853515625,0.39453125,0.3671875,0.40234375,0.46875,0.5419921875,0.611328125,0.666015625,0.6953125,0.7080078125,0.7177734375,0.740234375,0.76953125,0.8037109375,0.828125,0.828125,0.8037109375,0.76953125,0.740234375,0.7021484375,0.6220703125,0.513671875,0.4140625,0.3544921875,0.34375,0.3642578125,0.40234375,0.482421875,0.5908203125,0.6904296875,0.75,0.7607421875,0.740234375,0.6962890625,0.59375,0.4580078125,0.34765625,0.3037109375,0.3291015625,0.39453125,0.4736328125,0.5703125,0.6572265625,0.701171875,0.697265625,0.6650390625,0.634765625,0.6044921875,0.5546875,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.2392578125,0.2529296875,0.30859375,0.3916015625,0.4716796875,0.51953125,0.5302734375,0.5380859375,0.5732421875,0.6240234375,0.6630859375,0.6708984375,0.6474609375,0.6044921875,0.5634765625,0.5400390625,0.53515625,0.5380859375,0.533203125,0.509765625,0.46875,0.427734375,0.412109375,0.4443359375,0.5244140625,0.623046875,0.7021484375,0.740234375,0.7607421875,0.748046875,0.6796875,0.560546875,0.4248046875,0.318359375,0.2587890625,0.21484375,0.18359375,0.1845703125,0.2236328125,0.2841796875,0.3369140625,0.3642578125,0.3896484375,0.439453125,0.5,0.546875,0.564453125,0.5546875,0.5302734375,0.4931640625,0.4287109375,0.36328125,0.3369140625,0.3623046875,0.4267578125,0.5,0.5615234375,0.5732421875,0.5185546875,0.4169921875,0.3134765625,0.255859375,0.2587890625,0.2822265625,0.326171875,0.39453125,0.474609375,0.548828125,0.603515625,0.634765625,0.6455078125,0.59375,0.4912109375,0.3857421875,0.326171875,0.333984375,0.39453125,0.45703125,0.4775390625,0.44140625,0.3642578125,0.28515625,0.24609375,0.2587890625,0.28125,0.291015625,0.2919921875,0.2978515625,0.31640625,0.3505859375,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.65234375,0.6318359375,0.580078125,0.521484375,0.4873046875,0.4921875,0.5302734375,0.5849609375,0.669921875,0.7587890625,0.814453125,0.8193359375,0.78515625,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.697265625,0.7197265625,0.6923828125,0.6357421875,0.5830078125,0.5712890625,0.6044921875,0.6328125,0.595703125,0.4970703125,0.3837890625,0.3095703125,0.306640625,0.3642578125,0.43359375,0.48828125,0.521484375,0.53515625,0.5439453125,0.564453125,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.5234375,0.4921875,0.44140625,0.3896484375,0.35546875,0.349609375,0.3642578125,0.392578125,0.4541015625,0.5380859375,0.61328125,0.654296875,0.6572265625,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.3798828125,0.357421875,0.30859375,0.267578125,0.2607421875,0.2978515625,0.3642578125,0.4423828125,0.53515625,0.6162109375,0.6572265625,0.6533203125,0.626953125,0.6044921875,0.5859375,0.5732421875,0.580078125,0.6123046875,0.662109375,0.708984375,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2578125,0.2568359375,0.26953125,0.306640625,0.361328125,0.419921875,0.46875,0.515625,0.5595703125,0.5830078125,0.5712890625,0.5341796875,0.494140625,0.46875,0.4521484375,0.4404296875,0.43359375,0.4248046875,0.41015625,0.3896484375,0.3642578125,0.3369140625,0.3095703125,0.2978515625,0.30859375,0.3388671875,0.3720703125,0.39453125,0.4267578125,0.509765625,0.6240234375,0.7265625,0.78125,0.7783203125,0.740234375,0.697265625,0.66015625,0.62109375,0.5712890625,0.5078125,0.4365234375,0.3642578125,0.296875,0.255859375,0.2568359375,0.294921875,0.3447265625,0.3720703125,0.3642578125,0.3515625,0.3720703125,0.4384765625,0.5380859375,0.6396484375,0.7099609375,0.740234375,0.7568359375,0.7548828125,0.71484375,0.634765625,0.53515625,0.44921875,0.39453125,0.3583984375,0.3603515625,0.40234375,0.4609375,0.5029296875,0.5048828125,0.46875,0.4287109375,0.41015625,0.4228515625,0.4580078125,0.4951171875,0.5107421875,0.5,0.4755859375,0.4326171875,0.375,0.3193359375,0.2802734375,0.26171875,0.2587890625,0.2578125,0.2568359375,0.26953125,0.306640625,0.361328125,0.419921875,0.46875,0.513671875,0.552734375,0.5771484375,0.5849609375,0.5849609375,0.5888671875,0.6044921875,0.6240234375,0.6396484375,0.640625,0.62109375,0.5869140625,0.552734375,0.5302734375,0.517578125,0.5322265625,0.5712890625,0.6181640625,0.6513671875,0.6552734375,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.615234375,0.6181640625,0.62890625,0.626953125,0.5966796875,0.5390625,0.46875,0.3916015625,0.3037109375,0.240234375,0.2314453125,0.2763671875,0.341796875,0.39453125,0.44921875,0.53515625,0.634765625,0.71484375,0.7548828125,0.7568359375,0.740234375,0.72265625,0.7099609375,0.693359375,0.6650390625,0.6240234375,0.576171875,0.5302734375,0.4970703125,0.5146484375,0.5771484375,0.646484375,0.68359375,0.666015625,0.6044921875,0.5341796875,0.4833984375,0.48046875,0.53515625,0.6240234375,0.701171875,0.740234375,0.7666015625,0.7890625,0.7900390625,0.76171875,0.7138671875,0.6669921875,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3037109375,0.341796875,0.3662109375,0.375,0.375,0.37890625,0.39453125,0.416015625,0.4462890625,0.48046875,0.5078125,0.5234375,0.529296875,0.5302734375,0.5361328125,0.5576171875,0.57421875,0.560546875,0.509765625,0.4375,0.3642578125,0.3017578125,0.28515625,0.328125,0.3037109375,0.2978515625,0.3251953125,0.3603515625,0.376953125,0.384765625,0.3798828125,0.3623046875,0.33984375,0.3232421875,0.318359375,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.599609375,0.5419921875,0.470703125,0.4267578125,0.431640625,0.4814453125,0.55078125,0.626953125,0.7001953125,0.7275390625,0.681640625,0.576171875,0.4609375,0.376953125,0.314453125,0.2978515625,0.3466796875,0.4462890625,0.552734375,0.6162109375,0.6220703125,0.6064453125,0.568359375,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.3251953125,0.3662109375,0.44921875,0.5498046875,0.6328125,0.673828125,0.673828125,0.6474609375,0.568359375,0.458984375,0.3681640625,0.3349609375,0.36328125,0.4287109375,0.5029296875,0.5791015625,0.638671875,0.6689453125,0.671875,0.66796875,0.673828125,0.6845703125,0.6982421875,0.7080078125,0.7080078125,0.6982421875,0.6845703125,0.673828125,0.6552734375,0.60546875,0.529296875,0.451171875,0.39453125,0.373046875,0.376953125,0.3955078125,0.4453125,0.521484375,0.599609375,0.6552734375,0.677734375,0.673828125,0.6484375,0.5712890625,0.4658203125,0.3798828125,0.3505859375,0.3818359375,0.4482421875,0.5234375,0.6025390625,0.662109375,0.6826171875,0.666015625,0.6376953125,0.6220703125,0.6064453125,0.568359375,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.3212890625,0.34375,0.3955078125,0.46484375,0.52734375,0.5625,0.5703125,0.578125,0.611328125,0.6533203125,0.673828125,0.658203125,0.611328125,0.55078125,0.4970703125,0.4736328125,0.48046875,0.5,0.5068359375,0.4833984375,0.4287109375,0.3740234375,0.3525390625,0.3876953125,0.4736328125,0.576171875,0.6494140625,0.673828125,0.68359375,0.6845703125,0.6552734375,0.5849609375,0.48828125,0.39453125,0.3251953125,0.259765625,0.1923828125,0.154296875,0.171875,0.2392578125,0.318359375,0.376953125,0.4326171875,0.5,0.5595703125,0.59375,0.5966796875,0.5830078125,0.5703125,0.5478515625,0.490234375,0.4189453125,0.375,0.3798828125,0.4296875,0.5,0.55859375,0.5595703125,0.49609375,0.3984375,0.3154296875,0.2900390625,0.3251953125,0.380859375,0.4482421875,0.515625,0.568359375,0.59765625,0.611328125,0.6220703125,0.6181640625,0.5625,0.47265625,0.3916015625,0.3583984375,0.3837890625,0.4482421875,0.513671875,0.544921875,0.5234375,0.4560546875,0.376953125,0.328125,0.3251953125,0.330078125,0.31640625,0.30078125,0.3017578125,0.3330078125,0.38671875,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.6220703125,0.587890625,0.5322265625,0.48828125,0.48046875,0.5126953125,0.5703125,0.640625,0.7333984375,0.8134765625,0.8408203125,0.806640625,0.7392578125,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.681640625,0.689453125,0.6416015625,0.56640625,0.5087890625,0.5029296875,0.55078125,0.5966796875,0.5791015625,0.498046875,0.3955078125,0.32421875,0.3203125,0.376953125,0.4423828125,0.48046875,0.4873046875,0.4765625,0.4736328125,0.4970703125,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.55859375,0.505859375,0.4248046875,0.3515625,0.318359375,0.33203125,0.376953125,0.43359375,0.5068359375,0.5791015625,0.6259765625,0.640625,0.6328125,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.3779296875,0.34375,0.2919921875,0.2568359375,0.2626953125,0.30859375,0.376953125,0.4580078125,0.5615234375,0.6513671875,0.6884765625,0.6640625,0.6064453125,0.55078125,0.5029296875,0.474609375,0.484375,0.5341796875,0.6015625,0.6533203125,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3193359375,0.296875,0.2734375,0.275390625,0.3095703125,0.3671875,0.4287109375,0.49609375,0.5703125,0.619140625,0.615234375,0.5595703125,0.4873046875,0.4287109375,0.3798828125,0.341796875,0.3291015625,0.3408203125,0.3662109375,0.3818359375,0.376953125,0.361328125,0.3330078125,0.30859375,0.310546875,0.34375,0.3955078125,0.4482421875,0.5107421875,0.611328125,0.716796875,0.78125,0.7822265625,0.7353515625,0.673828125,0.6171875,0.578125,0.5537109375,0.5322265625,0.498046875,0.4453125,0.376953125,0.314453125,0.2919921875,0.31640625,0.3681640625,0.412109375,0.4169921875,0.376953125,0.3271484375,0.296875,0.3154296875,0.3935546875,0.5068359375,0.609375,0.673828125,0.7265625,0.771484375,0.7763671875,0.7216796875,0.6220703125,0.51953125,0.4482421875,0.396484375,0.384765625,0.4150390625,0.4619140625,0.4921875,0.48046875,0.4287109375,0.3779296875,0.37109375,0.4140625,0.4794921875,0.5322265625,0.5390625,0.5,0.4462890625,0.3876953125,0.3388671875,0.314453125,0.314453125,0.322265625,0.3251953125,0.3193359375,0.296875,0.2734375,0.275390625,0.3095703125,0.3671875,0.4287109375,0.484375,0.5146484375,0.5146484375,0.5,0.4912109375,0.5068359375,0.55078125,0.6083984375,0.677734375,0.7294921875,0.734375,0.6904296875,0.6259765625,0.5703125,0.5234375,0.498046875,0.5078125,0.5478515625,0.5947265625,0.623046875,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.6171875,0.6279296875,0.63671875,0.6201171875,0.5712890625,0.501953125,0.4287109375,0.3515625,0.265625,0.2109375,0.2197265625,0.2890625,0.3779296875,0.4482421875,0.51953125,0.6220703125,0.7216796875,0.7763671875,0.771484375,0.7265625,0.673828125,0.6298828125,0.6162109375,0.62890625,0.6494140625,0.65234375,0.625,0.5703125,0.51953125,0.5146484375,0.552734375,0.603515625,0.6318359375,0.61328125,0.55078125,0.482421875,0.439453125,0.4453125,0.50390625,0.5859375,0.650390625,0.673828125,0.68359375,0.69140625,0.689453125,0.67578125,0.654296875,0.634765625,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.380859375,0.4111328125,0.412109375,0.396484375,0.3876953125,0.404296875,0.4482421875,0.5,0.552734375,0.5888671875,0.599609375,0.5888671875,0.57421875,0.5703125,0.5751953125,0.59375,0.6044921875,0.583984375,0.52734375,0.451171875,0.376953125,0.3134765625,0.2900390625,0.328125,0.3359375,0.3466796875,0.3857421875,0.419921875,0.4296875,0.4306640625,0.4296875,0.4267578125,0.4228515625,0.419921875,0.4189453125,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.556640625,0.505859375,0.439453125,0.3935546875,0.39453125,0.4404296875,0.509765625,0.5869140625,0.671875,0.720703125,0.69921875,0.615234375,0.51171875,0.4296875,0.36328125,0.3291015625,0.34765625,0.416015625,0.5,0.5576171875,0.5693359375,0.564453125,0.5458984375,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.421875,0.44140625,0.4775390625,0.521484375,0.5576171875,0.5771484375,0.5791015625,0.564453125,0.5048828125,0.419921875,0.353515625,0.3369140625,0.373046875,0.439453125,0.5126953125,0.5810546875,0.6240234375,0.6298828125,0.607421875,0.583984375,0.5791015625,0.5810546875,0.5830078125,0.5849609375,0.5849609375,0.5830078125,0.5810546875,0.5791015625,0.57421875,0.5537109375,0.5185546875,0.4794921875,0.447265625,0.431640625,0.4296875,0.435546875,0.455078125,0.490234375,0.5302734375,0.5615234375,0.5771484375,0.5791015625,0.5654296875,0.51171875,0.4375,0.384765625,0.37890625,0.421875,0.4892578125,0.5615234375,0.6240234375,0.6572265625,0.6484375,0.6123046875,0.5791015625,0.5693359375,0.564453125,0.5458984375,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.421875,0.4375,0.4677734375,0.505859375,0.5380859375,0.5556640625,0.5595703125,0.568359375,0.6025390625,0.6435546875,0.66015625,0.6357421875,0.5791015625,0.509765625,0.44921875,0.4306640625,0.4541015625,0.4951171875,0.5185546875,0.5,0.439453125,0.375,0.33984375,0.3564453125,0.421875,0.505859375,0.564453125,0.5791015625,0.5869140625,0.609375,0.6259765625,0.61328125,0.5634765625,0.4921875,0.419921875,0.3427734375,0.2529296875,0.19140625,0.1943359375,0.26171875,0.353515625,0.4296875,0.4990234375,0.56640625,0.609375,0.615234375,0.5927734375,0.5673828125,0.5595703125,0.5458984375,0.49609375,0.4287109375,0.3837890625,0.384765625,0.4306640625,0.5,0.5576171875,0.560546875,0.505859375,0.4248046875,0.3662109375,0.365234375,0.419921875,0.4892578125,0.556640625,0.6015625,0.611328125,0.59375,0.5732421875,0.5693359375,0.55859375,0.5087890625,0.4375,0.3857421875,0.3798828125,0.421875,0.4892578125,0.5576171875,0.6005859375,0.5966796875,0.5478515625,0.478515625,0.4296875,0.419921875,0.4130859375,0.3818359375,0.345703125,0.333984375,0.361328125,0.419921875,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.560546875,0.5205078125,0.4658203125,0.43359375,0.4423828125,0.4912109375,0.5595703125,0.6376953125,0.732421875,0.8017578125,0.806640625,0.74609375,0.65625,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.6279296875,0.6328125,0.580078125,0.50390625,0.4501953125,0.453125,0.509765625,0.5654296875,0.5654296875,0.5078125,0.4267578125,0.369140625,0.37109375,0.4296875,0.4912109375,0.5126953125,0.4921875,0.453125,0.4306640625,0.44921875,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.546875,0.4912109375,0.4111328125,0.3486328125,0.33203125,0.3662109375,0.4296875,0.5,0.5673828125,0.6123046875,0.62109375,0.6015625,0.5771484375,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.421875,0.380859375,0.328125,0.296875,0.30859375,0.3603515625,0.4296875,0.5107421875,0.6123046875,0.6943359375,0.71484375,0.666015625,0.583984375,0.509765625,0.4443359375,0.40234375,0.4033203125,0.4501953125,0.5166015625,0.56640625,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.41015625,0.3720703125,0.32421875,0.2998046875,0.3173828125,0.37109375,0.439453125,0.517578125,0.6083984375,0.671875,0.671875,0.6064453125,0.515625,0.439453125,0.373046875,0.3232421875,0.3095703125,0.3359375,0.384765625,0.421875,0.4296875,0.419921875,0.38671875,0.3486328125,0.3359375,0.36328125,0.421875,0.4892578125,0.568359375,0.669921875,0.75390625,0.7783203125,0.7353515625,0.6552734375,0.5791015625,0.517578125,0.490234375,0.4970703125,0.517578125,0.5234375,0.4931640625,0.4296875,0.369140625,0.3564453125,0.39453125,0.4541015625,0.494140625,0.486328125,0.4296875,0.357421875,0.28515625,0.255859375,0.294921875,0.3916015625,0.5,0.5791015625,0.6533203125,0.7333984375,0.7783203125,0.7548828125,0.6708984375,0.5693359375,0.4892578125,0.4296875,0.4130859375,0.44140625,0.4873046875,0.515625,0.4990234375,0.439453125,0.3828125,0.3779296875,0.4296875,0.50390625,0.556640625,0.5546875,0.5,0.4306640625,0.37109375,0.3408203125,0.3486328125,0.3818359375,0.412109375,0.419921875,0.41015625,0.3720703125,0.32421875,0.2998046875,0.3173828125,0.37109375,0.439453125,0.5,0.51953125,0.4970703125,0.45703125,0.43359375,0.451171875,0.509765625,0.5869140625,0.6826171875,0.7568359375,0.7705078125,0.7177734375,0.6337890625,0.5595703125,0.4931640625,0.4453125,0.4365234375,0.46875,0.521484375,0.5615234375,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.57421875,0.599609375,0.6240234375,0.6201171875,0.5791015625,0.5126953125,0.439453125,0.361328125,0.2744140625,0.2197265625,0.2333984375,0.3115234375,0.41015625,0.4892578125,0.5693359375,0.6708984375,0.7548828125,0.7783203125,0.7333984375,0.6533203125,0.5791015625,0.5224609375,0.5107421875,0.5458984375,0.5986328125,0.6318359375,0.6181640625,0.5595703125,0.5,0.484375,0.513671875,0.560546875,0.5888671875,0.5703125,0.509765625,0.44140625,0.396484375,0.3974609375,0.4453125,0.5146484375,0.56640625,0.5791015625,0.5810546875,0.58203125,0.5810546875,0.578125,0.5751953125,0.5712890625,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.48046875,0.5,0.4775390625,0.4375,0.4130859375,0.4306640625,0.4892578125,0.5576171875,0.6162109375,0.64453125,0.6337890625,0.5986328125,0.5673828125,0.5595703125,0.56640625,0.591796875,0.6171875,0.61328125,0.5703125,0.5029296875,0.4296875,0.36328125,0.3271484375,0.3447265625,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.41015625,0.3798828125,0.3466796875,0.341796875,0.3759765625,0.439453125,0.509765625,0.5888671875,0.6865234375,0.7626953125,0.7763671875,0.7216796875,0.6357421875,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.5546875,0.53515625,0.501953125,0.4658203125,0.435546875,0.4208984375,0.419921875,0.4150390625,0.3935546875,0.3740234375,0.380859375,0.423828125,0.490234375,0.5595703125,0.623046875,0.6552734375,0.63671875,0.5712890625,0.4892578125,0.4326171875,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.4228515625,0.3916015625,0.3544921875,0.3408203125,0.365234375,0.421875,0.4892578125,0.5546875,0.5986328125,0.6005859375,0.55859375,0.49609375,0.4501953125,0.439453125,0.443359375,0.4599609375,0.490234375,0.5244140625,0.5537109375,0.568359375,0.5693359375,0.564453125,0.5458984375,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.4296875,0.4775390625,0.5458984375,0.5966796875,0.603515625,0.5634765625,0.5,0.4443359375,0.443359375,0.4970703125,0.572265625,0.6240234375,0.6181640625,0.5595703125,0.486328125,0.4169921875,0.3720703125,0.3662109375,0.388671875,0.4130859375,0.419921875,0.4326171875,0.4921875,0.5791015625,0.6494140625,0.6728515625,0.6416015625,0.5791015625,0.501953125,0.408203125,0.337890625,0.3310546875,0.390625,0.48046875,0.5595703125,0.6259765625,0.6640625,0.650390625,0.5888671875,0.5087890625,0.4521484375,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.55859375,0.578125,0.5576171875,0.5205078125,0.5,0.5205078125,0.5791015625,0.642578125,0.67578125,0.6572265625,0.5908203125,0.5087890625,0.4521484375,0.439453125,0.4306640625,0.396484375,0.3564453125,0.341796875,0.369140625,0.4287109375,0.5,0.5703125,0.62890625,0.654296875,0.6396484375,0.599609375,0.56640625,0.5595703125,0.5498046875,0.5048828125,0.44140625,0.3984375,0.3984375,0.4423828125,0.509765625,0.576171875,0.6171875,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.4091796875,0.369140625,0.3203125,0.294921875,0.310546875,0.3623046875,0.4296875,0.505859375,0.5986328125,0.6650390625,0.6689453125,0.6064453125,0.517578125,0.439453125,0.361328125,0.2685546875,0.2001953125,0.1953125,0.255859375,0.34375,0.419921875,0.478515625,0.4990234375,0.478515625,0.44140625,0.4208984375,0.4404296875,0.5,0.5576171875,0.57421875,0.548828125,0.5087890625,0.486328125,0.5078125,0.5693359375,0.6279296875,0.6298828125,0.572265625,0.4912109375,0.43359375,0.43359375,0.4892578125,0.556640625,0.599609375,0.5986328125,0.55078125,0.4833984375,0.4326171875,0.419921875,0.412109375,0.388671875,0.3701171875,0.3828125,0.4326171875,0.505859375,0.5791015625,0.6455078125,0.681640625,0.6630859375,0.595703125,0.51171875,0.453125,0.439453125,0.4501953125,0.49609375,0.55859375,0.6005859375,0.5986328125,0.5546875,0.4892578125,0.4248046875,0.3857421875,0.392578125,0.443359375,0.51171875,0.5595703125,0.5693359375,0.55859375,0.517578125,0.4658203125,0.4375,0.451171875,0.5029296875,0.5693359375,0.64453125,0.728515625,0.78125,0.767578125,0.689453125,0.58984375,0.509765625,0.4375,0.375,0.341796875,0.3505859375,0.38671875,0.419921875,0.4296875,0.4345703125,0.453125,0.4853515625,0.5234375,0.5556640625,0.57421875,0.5791015625,0.5712890625,0.5302734375,0.474609375,0.439453125,0.447265625,0.4931640625,0.5595703125,0.6357421875,0.724609375,0.7890625,0.7890625,0.724609375,0.6357421875,0.5595703125,0.4931640625,0.443359375,0.431640625,0.4619140625,0.515625,0.5576171875,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.5849609375,0.6669921875,0.712890625,0.6904296875,0.6083984375,0.5078125,0.4296875,0.3759765625,0.3828125,0.4521484375,0.546875,0.6162109375,0.623046875,0.5693359375,0.5126953125,0.505859375,0.548828125,0.6103515625,0.650390625,0.6396484375,0.5791015625,0.49609375,0.3837890625,0.2822265625,0.2412109375,0.271484375,0.345703125,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.4521484375,0.44921875,0.5009765625,0.57421875,0.6240234375,0.6181640625,0.5595703125,0.498046875,0.48046875,0.5068359375,0.5517578125,0.5791015625,0.560546875,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.568359375,0.5244140625,0.466796875,0.431640625,0.4404296875,0.490234375,0.5595703125,0.6181640625,0.6240234375,0.57421875,0.5009765625,0.44921875,0.4521484375,0.509765625,0.5859375,0.669921875,0.7216796875,0.703125,0.6220703125,0.5205078125,0.439453125,0.369140625,0.3134765625,0.294921875,0.3193359375,0.3681640625,0.408203125,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.4521484375,0.505859375,0.583984375,0.64453125,0.658203125,0.623046875,0.5595703125,0.4814453125,0.384765625,0.3095703125,0.294921875,0.34765625,0.4326171875,0.509765625,0.5849609375,0.6650390625,0.708984375,0.6845703125,0.599609375,0.498046875,0.419921875,0.36328125,0.35546875,0.3984375,0.4609375,0.50390625,0.49609375,0.439453125,0.384765625,0.3818359375,0.43359375,0.5068359375,0.5556640625,0.548828125,0.4892578125,0.4189453125,0.3603515625,0.3349609375,0.349609375,0.3896484375,0.4228515625,0.4296875,0.427734375,0.42578125,0.4228515625,0.4208984375,0.419921875,0.419921875,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6357421875,0.634765625,0.576171875,0.4931640625,0.43359375,0.43359375,0.4892578125,0.556640625,0.6015625,0.603515625,0.560546875,0.4970703125,0.4501953125,0.439453125,0.4521484375,0.5078125,0.5859375,0.6474609375,0.6611328125,0.625,0.5595703125,0.48828125,0.4228515625,0.3828125,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.3125,0.296875,0.298828125,0.3369140625,0.40625,0.484375,0.55078125,0.6201171875,0.7021484375,0.763671875,0.7685546875,0.7158203125,0.6376953125,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.552734375,0.509765625,0.4453125,0.380859375,0.3359375,0.3193359375,0.3251953125,0.333984375,0.341796875,0.3603515625,0.3994140625,0.455078125,0.5166015625,0.5703125,0.6142578125,0.62109375,0.576171875,0.490234375,0.3974609375,0.3388671875,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3818359375,0.3681640625,0.3486328125,0.3408203125,0.3583984375,0.3984375,0.4482421875,0.4970703125,0.5322265625,0.537109375,0.5107421875,0.46875,0.4365234375,0.4287109375,0.4345703125,0.46484375,0.5146484375,0.5703125,0.611328125,0.626953125,0.6220703125,0.6064453125,0.568359375,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.3271484375,0.3701171875,0.4443359375,0.5166015625,0.5537109375,0.5439453125,0.5,0.4619140625,0.474609375,0.5341796875,0.6044921875,0.6455078125,0.630859375,0.5703125,0.494140625,0.412109375,0.3447265625,0.310546875,0.3095703125,0.3212890625,0.3251953125,0.3408203125,0.4130859375,0.5283203125,0.6416015625,0.7099609375,0.71484375,0.673828125,0.611328125,0.51953125,0.43359375,0.3974609375,0.42578125,0.4951171875,0.5703125,0.63671875,0.671875,0.6533203125,0.5859375,0.5009765625,0.4423828125,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.5458984375,0.5751953125,0.5849609375,0.587890625,0.59765625,0.626953125,0.673828125,0.716796875,0.724609375,0.6796875,0.59375,0.5009765625,0.44140625,0.4287109375,0.4208984375,0.3876953125,0.349609375,0.337890625,0.3671875,0.427734375,0.5,0.5693359375,0.6240234375,0.6455078125,0.6298828125,0.59375,0.568359375,0.5703125,0.5712890625,0.541015625,0.4931640625,0.45703125,0.45703125,0.4931640625,0.55078125,0.607421875,0.630859375,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.3095703125,0.2783203125,0.25,0.2470703125,0.275390625,0.3251953125,0.376953125,0.4365234375,0.515625,0.58203125,0.6005859375,0.5625,0.494140625,0.4287109375,0.359375,0.2724609375,0.2001953125,0.177734375,0.2099609375,0.26953125,0.3251953125,0.3720703125,0.4013671875,0.4111328125,0.4140625,0.423828125,0.453125,0.5,0.5419921875,0.552734375,0.53515625,0.515625,0.5185546875,0.556640625,0.6220703125,0.6787109375,0.6748046875,0.603515625,0.5009765625,0.419921875,0.40234375,0.4482421875,0.505859375,0.5419921875,0.5341796875,0.48046875,0.4052734375,0.3466796875,0.3251953125,0.3134765625,0.306640625,0.3291015625,0.39453125,0.4931640625,0.59375,0.673828125,0.7373046875,0.759765625,0.71875,0.6240234375,0.515625,0.4443359375,0.4287109375,0.4365234375,0.46875,0.5107421875,0.537109375,0.5322265625,0.4970703125,0.4482421875,0.4033203125,0.3935546875,0.4306640625,0.5029296875,0.5771484375,0.62109375,0.6220703125,0.6044921875,0.5673828125,0.52734375,0.509765625,0.52734375,0.5703125,0.6220703125,0.6796875,0.75,0.796875,0.787109375,0.720703125,0.6298828125,0.55078125,0.4755859375,0.396484375,0.3369140625,0.31640625,0.3330078125,0.361328125,0.376953125,0.392578125,0.4306640625,0.490234375,0.560546875,0.6201171875,0.658203125,0.673828125,0.673828125,0.6396484375,0.580078125,0.52734375,0.505859375,0.5244140625,0.5703125,0.626953125,0.693359375,0.7412109375,0.7412109375,0.693359375,0.626953125,0.5703125,0.5205078125,0.4833984375,0.4775390625,0.5087890625,0.5595703125,0.603515625,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.6142578125,0.6669921875,0.677734375,0.626953125,0.533203125,0.439453125,0.376953125,0.3408203125,0.3623046875,0.4453125,0.5537109375,0.63671875,0.658203125,0.6220703125,0.5830078125,0.59375,0.6494140625,0.71484375,0.7509765625,0.734375,0.673828125,0.5869140625,0.45703125,0.3203125,0.232421875,0.2197265625,0.263671875,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.501953125,0.5009765625,0.5478515625,0.6083984375,0.6455078125,0.630859375,0.5703125,0.5087890625,0.4892578125,0.513671875,0.5556640625,0.580078125,0.560546875,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.6611328125,0.6064453125,0.5302734375,0.47265625,0.462890625,0.5029296875,0.5703125,0.630859375,0.6455078125,0.6083984375,0.5478515625,0.5009765625,0.501953125,0.55078125,0.6181640625,0.689453125,0.7275390625,0.69921875,0.61328125,0.509765625,0.4287109375,0.35546875,0.2841796875,0.240234375,0.2392578125,0.271484375,0.3076171875,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.439453125,0.486328125,0.5556640625,0.6142578125,0.63671875,0.6162109375,0.5703125,0.51171875,0.4365234375,0.376953125,0.3671875,0.4130859375,0.4853515625,0.55078125,0.6123046875,0.66015625,0.6591796875,0.5947265625,0.4892578125,0.388671875,0.3251953125,0.28515625,0.2900390625,0.341796875,0.412109375,0.4638671875,0.46875,0.4287109375,0.3896484375,0.396484375,0.4443359375,0.501953125,0.5302734375,0.509765625,0.4482421875,0.3779296875,0.3232421875,0.3017578125,0.3173828125,0.353515625,0.37890625,0.376953125,0.3662109375,0.3525390625,0.3388671875,0.3291015625,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.7197265625,0.701171875,0.6162109375,0.5048828125,0.419921875,0.40234375,0.4482421875,0.5068359375,0.5498046875,0.556640625,0.525390625,0.4755859375,0.4375,0.4287109375,0.4404296875,0.4931640625,0.5703125,0.6337890625,0.654296875,0.6259765625,0.5703125,0.5068359375,0.4453125,0.40234375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.2353515625,0.2314453125,0.26953125,0.353515625,0.4580078125,0.548828125,0.6044921875,0.6533203125,0.7041015625,0.7294921875,0.708984375,0.650390625,0.58203125,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.494140625,0.4267578125,0.341796875,0.2705078125,0.234375,0.236328125,0.2587890625,0.2880859375,0.3291015625,0.380859375,0.4326171875,0.4775390625,0.5087890625,0.5302734375,0.5419921875,0.5224609375,0.4658203125,0.38671875,0.3115234375,0.267578125,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.3876953125,0.3994140625,0.3974609375,0.3857421875,0.376953125,0.37890625,0.39453125,0.4150390625,0.4375,0.4580078125,0.4697265625,0.4716796875,0.4697265625,0.46875,0.4765625,0.51171875,0.568359375,0.6240234375,0.65625,0.6572265625,0.634765625,0.6044921875,0.5546875,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.2412109375,0.2626953125,0.3251953125,0.408203125,0.4775390625,0.5087890625,0.5,0.4921875,0.5234375,0.580078125,0.6259765625,0.6337890625,0.5966796875,0.5302734375,0.4541015625,0.3681640625,0.294921875,0.25390625,0.24609375,0.2548828125,0.2587890625,0.2724609375,0.341796875,0.4638671875,0.5986328125,0.703125,0.7470703125,0.740234375,0.70703125,0.6259765625,0.521484375,0.4443359375,0.4248046875,0.4619140625,0.5302734375,0.5986328125,0.6435546875,0.642578125,0.5966796875,0.529296875,0.48046875,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.5205078125,0.552734375,0.595703125,0.6435546875,0.6865234375,0.71875,0.740234375,0.751953125,0.7333984375,0.67578125,0.5966796875,0.5224609375,0.478515625,0.46875,0.4599609375,0.421875,0.375,0.3525390625,0.373046875,0.4287109375,0.5,0.56640625,0.607421875,0.607421875,0.57421875,0.5322265625,0.513671875,0.5302734375,0.55078125,0.552734375,0.541015625,0.5302734375,0.53515625,0.5625,0.6044921875,0.64453125,0.650390625,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.2333984375,0.2158203125,0.2197265625,0.2509765625,0.2978515625,0.33984375,0.3642578125,0.3916015625,0.4443359375,0.5048828125,0.5439453125,0.544921875,0.513671875,0.46875,0.41796875,0.34765625,0.2783203125,0.234375,0.224609375,0.2392578125,0.2587890625,0.2802734375,0.3125,0.35546875,0.4033203125,0.4462890625,0.478515625,0.5,0.5107421875,0.5,0.48046875,0.4775390625,0.5068359375,0.564453125,0.634765625,0.6923828125,0.689453125,0.615234375,0.501953125,0.4033203125,0.3662109375,0.39453125,0.439453125,0.470703125,0.46875,0.4248046875,0.3564453125,0.2939453125,0.2587890625,0.234375,0.232421875,0.28125,0.388671875,0.529296875,0.6552734375,0.740234375,0.8037109375,0.8232421875,0.775390625,0.673828125,0.5595703125,0.4853515625,0.46875,0.4697265625,0.4716796875,0.4697265625,0.4580078125,0.4375,0.4150390625,0.39453125,0.384765625,0.416015625,0.4853515625,0.568359375,0.6318359375,0.65234375,0.634765625,0.6064453125,0.576171875,0.5576171875,0.560546875,0.583984375,0.61328125,0.634765625,0.6630859375,0.71484375,0.7646484375,0.779296875,0.7451171875,0.677734375,0.6044921875,0.525390625,0.4287109375,0.341796875,0.2978515625,0.3017578125,0.333984375,0.3642578125,0.39453125,0.4443359375,0.513671875,0.5908203125,0.66015625,0.708984375,0.740234375,0.7578125,0.7412109375,0.6845703125,0.6103515625,0.546875,0.51953125,0.5302734375,0.55078125,0.576171875,0.59375,0.59375,0.576171875,0.55078125,0.5302734375,0.509765625,0.494140625,0.494140625,0.5185546875,0.5615234375,0.6044921875,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.6455078125,0.6611328125,0.6298828125,0.5546875,0.4638671875,0.39453125,0.3642578125,0.3544921875,0.384765625,0.4560546875,0.54296875,0.6142578125,0.64453125,0.634765625,0.62890625,0.669921875,0.7431640625,0.8095703125,0.8330078125,0.8046875,0.740234375,0.65234375,0.515625,0.361328125,0.2451171875,0.19921875,0.2158203125,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.568359375,0.568359375,0.5966796875,0.6259765625,0.6298828125,0.5947265625,0.5302734375,0.4697265625,0.455078125,0.48828125,0.541015625,0.57421875,0.5595703125,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.7255859375,0.658203125,0.5576171875,0.4716796875,0.4384765625,0.46484375,0.5302734375,0.5947265625,0.6298828125,0.6259765625,0.5966796875,0.568359375,0.568359375,0.6044921875,0.6552734375,0.7138671875,0.7451171875,0.720703125,0.6435546875,0.548828125,0.46875,0.390625,0.2978515625,0.2177734375,0.181640625,0.1923828125,0.228515625,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4736328125,0.4912109375,0.51953125,0.54296875,0.5537109375,0.546875,0.5302734375,0.5068359375,0.4755859375,0.455078125,0.4638671875,0.5029296875,0.5556640625,0.6044921875,0.6435546875,0.6455078125,0.5908203125,0.48828125,0.3740234375,0.2919921875,0.2587890625,0.248046875,0.2705078125,0.328125,0.3994140625,0.45703125,0.48046875,0.46875,0.458984375,0.4775390625,0.5107421875,0.529296875,0.513671875,0.462890625,0.39453125,0.3271484375,0.287109375,0.2861328125,0.3203125,0.361328125,0.380859375,0.3642578125,0.3359375,0.3037109375,0.275390625,0.2587890625,0.2548828125,0.2578125,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.76953125,0.734375,0.6318359375,0.501953125,0.3994140625,0.3642578125,0.39453125,0.4404296875,0.482421875,0.5078125,0.5078125,0.4912109375,0.4736328125,0.46875,0.4765625,0.5107421875,0.5576171875,0.5927734375,0.5986328125,0.572265625,0.5302734375,0.484375,0.443359375,0.421875,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.2197265625,0.216796875,0.2734375,0.3798828125,0.5029296875,0.5947265625,0.634765625,0.66015625,0.6748046875,0.662109375,0.619140625,0.556640625,0.501953125,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.4140625,0.3291015625,0.240234375,0.1845703125,0.1796875,0.2138671875,0.2587890625,0.310546875,0.3798828125,0.44921875,0.494140625,0.50390625,0.4892578125,0.46875,0.4462890625,0.40625,0.3564453125,0.30859375,0.275390625,0.2607421875,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.4404296875,0.48046875,0.4970703125,0.4775390625,0.43359375,0.3896484375,0.3642578125,0.349609375,0.35546875,0.3896484375,0.44140625,0.4921875,0.5234375,0.5302734375,0.5380859375,0.5732421875,0.6240234375,0.6630859375,0.6708984375,0.6474609375,0.6044921875,0.55859375,0.509765625,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.2177734375,0.203125,0.234375,0.30859375,0.3994140625,0.46875,0.5,0.52734375,0.5791015625,0.62890625,0.6435546875,0.609375,0.5419921875,0.46875,0.39453125,0.31640625,0.2568359375,0.2314453125,0.2373046875,0.25390625,0.2587890625,0.267578125,0.314453125,0.408203125,0.52734375,0.6376953125,0.7099609375,0.740234375,0.7421875,0.681640625,0.5712890625,0.4609375,0.3994140625,0.408203125,0.46875,0.5400390625,0.6005859375,0.626953125,0.6123046875,0.572265625,0.5380859375,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.4892578125,0.515625,0.580078125,0.6591796875,0.7236328125,0.75,0.740234375,0.716796875,0.677734375,0.626953125,0.5791015625,0.546875,0.5322265625,0.5302734375,0.51953125,0.4736328125,0.4140625,0.375,0.3818359375,0.4306640625,0.5,0.5625,0.5849609375,0.5576171875,0.5,0.4482421875,0.435546875,0.46875,0.513671875,0.5517578125,0.5771484375,0.5908203125,0.5986328125,0.611328125,0.634765625,0.658203125,0.658203125,0.61328125,0.521484375,0.4091796875,0.3154296875,0.2587890625,0.220703125,0.21484375,0.2509765625,0.3134765625,0.3740234375,0.4033203125,0.39453125,0.3828125,0.400390625,0.447265625,0.501953125,0.5419921875,0.5498046875,0.5302734375,0.5009765625,0.458984375,0.408203125,0.35546875,0.3115234375,0.2802734375,0.2587890625,0.2490234375,0.275390625,0.33984375,0.4189453125,0.4833984375,0.509765625,0.5,0.4736328125,0.4306640625,0.3974609375,0.40234375,0.453125,0.529296875,0.6044921875,0.6650390625,0.6728515625,0.61328125,0.5078125,0.4052734375,0.353515625,0.3642578125,0.3935546875,0.4267578125,0.44140625,0.421875,0.3701171875,0.3095703125,0.2587890625,0.2158203125,0.19921875,0.2451171875,0.361328125,0.515625,0.65234375,0.740234375,0.8046875,0.83203125,0.7978515625,0.7119140625,0.6123046875,0.544921875,0.5302734375,0.5234375,0.4921875,0.44140625,0.3896484375,0.35546875,0.349609375,0.3642578125,0.39453125,0.4638671875,0.5546875,0.6298828125,0.6611328125,0.6455078125,0.6044921875,0.5634765625,0.541015625,0.546875,0.57421875,0.6044921875,0.6171875,0.6044921875,0.5966796875,0.6279296875,0.685546875,0.7314453125,0.7392578125,0.701171875,0.634765625,0.5537109375,0.4453125,0.3447265625,0.2919921875,0.30078125,0.345703125,0.39453125,0.4404296875,0.4892578125,0.541015625,0.59375,0.6455078125,0.6943359375,0.740234375,0.7802734375,0.7919921875,0.75390625,0.6708984375,0.5732421875,0.5,0.46875,0.4482421875,0.4228515625,0.4052734375,0.4052734375,0.4228515625,0.4482421875,0.46875,0.484375,0.48828125,0.48828125,0.4970703125,0.521484375,0.5595703125,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.65234375,0.6318359375,0.568359375,0.4853515625,0.416015625,0.384765625,0.39453125,0.4150390625,0.443359375,0.4794921875,0.51953125,0.5556640625,0.583984375,0.6044921875,0.6357421875,0.7080078125,0.794921875,0.853515625,0.8564453125,0.8095703125,0.740234375,0.6552734375,0.529296875,0.388671875,0.28125,0.232421875,0.234375,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.615234375,0.6181640625,0.62890625,0.626953125,0.5966796875,0.5390625,0.46875,0.41015625,0.4033203125,0.4501953125,0.5185546875,0.5654296875,0.55859375,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.7236328125,0.6494140625,0.53515625,0.43359375,0.3857421875,0.4052734375,0.46875,0.5390625,0.5966796875,0.626953125,0.62890625,0.6181640625,0.615234375,0.634765625,0.66796875,0.716796875,0.7509765625,0.7421875,0.6865234375,0.60546875,0.5302734375,0.447265625,0.3359375,0.228515625,0.16796875,0.1689453125,0.2109375,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.525390625,0.5078125,0.4794921875,0.4560546875,0.4453125,0.4521484375,0.46875,0.4873046875,0.5068359375,0.52734375,0.5517578125,0.580078125,0.6083984375,0.634765625,0.6494140625,0.6123046875,0.5185546875,0.400390625,0.2998046875,0.2529296875,0.2587890625,0.28125,0.31640625,0.3662109375,0.421875,0.4716796875,0.5078125,0.5302734375,0.5546875,0.58984375,0.609375,0.587890625,0.5234375,0.4404296875,0.3642578125,0.3017578125,0.279296875,0.306640625,0.36328125,0.416015625,0.427734375,0.39453125,0.3466796875,0.2978515625,0.2587890625,0.2421875,0.24609375,0.255859375,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.7529296875,0.7119140625,0.61328125,0.4912109375,0.392578125,0.3505859375,0.3642578125,0.3935546875,0.4326171875,0.474609375,0.5078125,0.5244140625,0.529296875,0.5302734375,0.5322265625,0.5400390625,0.5458984375,0.541015625,0.5224609375,0.49609375,0.46875,0.4453125,0.4326171875,0.44140625,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.271484375,0.2568359375,0.3037109375,0.4033203125,0.5166015625,0.595703125,0.6220703125,0.62890625,0.619140625,0.5859375,0.53515625,0.482421875,0.4453125,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.3583984375,0.265625,0.185546875,0.158203125,0.1923828125,0.259765625,0.3251953125,0.39453125,0.4814453125,0.5546875,0.5771484375,0.544921875,0.484375,0.4287109375,0.376953125,0.3271484375,0.294921875,0.2890625,0.3037109375,0.3212890625,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.5126953125,0.5791015625,0.6123046875,0.58984375,0.5185546875,0.4375,0.376953125,0.33203125,0.318359375,0.3515625,0.4248046875,0.505859375,0.55859375,0.5703125,0.578125,0.611328125,0.6533203125,0.673828125,0.658203125,0.611328125,0.55078125,0.4951171875,0.4580078125,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.2626953125,0.2099609375,0.19921875,0.2490234375,0.34375,0.4375,0.5,0.5576171875,0.6279296875,0.6748046875,0.6650390625,0.59765625,0.5078125,0.4287109375,0.3564453125,0.2919921875,0.255859375,0.2587890625,0.2890625,0.318359375,0.3251953125,0.326171875,0.3388671875,0.37890625,0.44921875,0.5361328125,0.615234375,0.673828125,0.70703125,0.6728515625,0.57421875,0.4580078125,0.37890625,0.3720703125,0.4287109375,0.501953125,0.5712890625,0.6162109375,0.623046875,0.6015625,0.5771484375,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.4609375,0.474609375,0.5419921875,0.630859375,0.6982421875,0.7119140625,0.673828125,0.62109375,0.5712890625,0.5390625,0.533203125,0.5478515625,0.5654296875,0.5703125,0.55859375,0.5078125,0.439453125,0.3896484375,0.3876953125,0.431640625,0.5,0.5595703125,0.5673828125,0.51953125,0.4443359375,0.38671875,0.380859375,0.4287109375,0.4921875,0.5537109375,0.6005859375,0.62109375,0.6201171875,0.615234375,0.6220703125,0.6337890625,0.640625,0.6220703125,0.5654296875,0.48046875,0.3935546875,0.3251953125,0.2763671875,0.275390625,0.3291015625,0.4091796875,0.47265625,0.486328125,0.4482421875,0.40234375,0.3857421875,0.412109375,0.4697265625,0.533203125,0.5703125,0.5703125,0.5615234375,0.5537109375,0.53515625,0.4970703125,0.4404296875,0.3798828125,0.3251953125,0.287109375,0.30078125,0.3681640625,0.45703125,0.5244140625,0.5380859375,0.5,0.44140625,0.3681640625,0.3173828125,0.322265625,0.384765625,0.47265625,0.55078125,0.615234375,0.640625,0.607421875,0.5263671875,0.4365234375,0.380859375,0.376953125,0.39453125,0.431640625,0.4677734375,0.4755859375,0.4453125,0.3876953125,0.3251953125,0.263671875,0.2197265625,0.232421875,0.3203125,0.45703125,0.5869140625,0.673828125,0.7412109375,0.7802734375,0.7705078125,0.712890625,0.63671875,0.58203125,0.5703125,0.55859375,0.505859375,0.4248046875,0.3515625,0.318359375,0.33203125,0.376953125,0.439453125,0.533203125,0.626953125,0.677734375,0.6669921875,0.6142578125,0.55078125,0.4990234375,0.4833984375,0.509765625,0.5576171875,0.59375,0.591796875,0.55078125,0.513671875,0.5263671875,0.5859375,0.65625,0.697265625,0.6826171875,0.6220703125,0.5390625,0.4296875,0.33203125,0.291015625,0.31640625,0.3818359375,0.4482421875,0.50390625,0.541015625,0.556640625,0.564453125,0.580078125,0.6171875,0.673828125,0.734375,0.779296875,0.7744140625,0.705078125,0.595703125,0.4931640625,0.4287109375,0.3720703125,0.3056640625,0.2578125,0.2578125,0.3056640625,0.3720703125,0.4287109375,0.47265625,0.4892578125,0.48046875,0.46484375,0.4658203125,0.49609375,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.62109375,0.5771484375,0.5029296875,0.4306640625,0.3935546875,0.4033203125,0.4482421875,0.4931640625,0.5126953125,0.5078125,0.4912109375,0.486328125,0.505859375,0.55078125,0.61328125,0.70703125,0.7978515625,0.8388671875,0.814453125,0.7470703125,0.673828125,0.59375,0.4931640625,0.39453125,0.3291015625,0.306640625,0.3134765625,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.6171875,0.6279296875,0.63671875,0.6201171875,0.5712890625,0.501953125,0.4287109375,0.37109375,0.369140625,0.4248046875,0.50390625,0.5595703125,0.5576171875,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.658203125,0.5859375,0.478515625,0.3837890625,0.341796875,0.365234375,0.4287109375,0.501953125,0.5712890625,0.6201171875,0.63671875,0.6279296875,0.6171875,0.6220703125,0.640625,0.68359375,0.7275390625,0.7392578125,0.70703125,0.642578125,0.5703125,0.486328125,0.3681640625,0.2548828125,0.1943359375,0.205078125,0.26171875,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.5595703125,0.5126953125,0.443359375,0.384765625,0.3623046875,0.3828125,0.4287109375,0.4814453125,0.5361328125,0.5810546875,0.60546875,0.61328125,0.6142578125,0.6220703125,0.6181640625,0.5595703125,0.4580078125,0.353515625,0.2890625,0.2841796875,0.3251953125,0.3740234375,0.4111328125,0.4375,0.458984375,0.484375,0.521484375,0.5703125,0.625,0.6806640625,0.7001953125,0.658203125,0.564453125,0.458984375,0.376953125,0.3173828125,0.3095703125,0.357421875,0.4326171875,0.490234375,0.49609375,0.4482421875,0.3857421875,0.3251953125,0.287109375,0.2802734375,0.298828125,0.3203125,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.6748046875,0.640625,0.5693359375,0.4814453125,0.41015625,0.3759765625,0.376953125,0.3916015625,0.4228515625,0.4677734375,0.5146484375,0.5498046875,0.5673828125,0.5703125,0.568359375,0.556640625,0.533203125,0.5,0.466796875,0.4423828125,0.4287109375,0.421875,0.431640625,0.4609375,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.3544921875,0.3212890625,0.33984375,0.408203125,0.494140625,0.5546875,0.5693359375,0.568359375,0.5546875,0.52734375,0.4931640625,0.462890625,0.4443359375,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.361328125,0.2666015625,0.197265625,0.1923828125,0.2529296875,0.3427734375,0.419921875,0.498046875,0.5908203125,0.6591796875,0.6640625,0.603515625,0.515625,0.439453125,0.373046875,0.3203125,0.3037109375,0.3271484375,0.373046875,0.4111328125,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5654296875,0.6494140625,0.7001953125,0.68359375,0.60546875,0.5078125,0.4296875,0.3662109375,0.33203125,0.3486328125,0.4111328125,0.4912109375,0.546875,0.5595703125,0.568359375,0.6025390625,0.6435546875,0.66015625,0.6357421875,0.5791015625,0.509765625,0.44921875,0.427734375,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.34375,0.2626953125,0.216796875,0.23828125,0.3212890625,0.421875,0.5,0.57421875,0.6591796875,0.7119140625,0.697265625,0.6201171875,0.5205078125,0.439453125,0.369140625,0.314453125,0.296875,0.322265625,0.37109375,0.41015625,0.419921875,0.4140625,0.3935546875,0.3779296875,0.3916015625,0.439453125,0.5087890625,0.5791015625,0.6328125,0.6240234375,0.5517578125,0.4560546875,0.38671875,0.3828125,0.439453125,0.5126953125,0.5791015625,0.619140625,0.6201171875,0.59375,0.56640625,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.4443359375,0.443359375,0.5,0.5791015625,0.634765625,0.634765625,0.5791015625,0.5126953125,0.4599609375,0.4423828125,0.466796875,0.5126953125,0.5498046875,0.5595703125,0.5478515625,0.4990234375,0.4326171875,0.3857421875,0.3857421875,0.4306640625,0.5,0.55859375,0.5625,0.5107421875,0.4345703125,0.380859375,0.3828125,0.439453125,0.5107421875,0.576171875,0.6171875,0.62109375,0.5986328125,0.57421875,0.5693359375,0.5771484375,0.6005859375,0.6201171875,0.609375,0.5615234375,0.4912109375,0.419921875,0.3623046875,0.359375,0.4130859375,0.490234375,0.5458984375,0.544921875,0.4892578125,0.4248046875,0.384765625,0.388671875,0.4365234375,0.5029296875,0.5498046875,0.5595703125,0.5634765625,0.5859375,0.60546875,0.59765625,0.5556640625,0.4892578125,0.419921875,0.3642578125,0.3642578125,0.419921875,0.4990234375,0.5556640625,0.5546875,0.5,0.4228515625,0.3330078125,0.2685546875,0.2705078125,0.3369140625,0.4296875,0.509765625,0.5771484375,0.619140625,0.61328125,0.5615234375,0.490234375,0.4404296875,0.4296875,0.4404296875,0.4814453125,0.5322265625,0.55859375,0.5419921875,0.48828125,0.419921875,0.345703125,0.271484375,0.2412109375,0.2822265625,0.3837890625,0.49609375,0.5791015625,0.6484375,0.6982421875,0.70703125,0.671875,0.6142578125,0.5693359375,0.5595703125,0.546875,0.4912109375,0.4111328125,0.3486328125,0.33203125,0.3662109375,0.4296875,0.5078125,0.6083984375,0.6904296875,0.712890625,0.6669921875,0.5849609375,0.509765625,0.451171875,0.439453125,0.4775390625,0.5361328125,0.5751953125,0.56640625,0.509765625,0.4541015625,0.453125,0.5078125,0.58203125,0.6337890625,0.6279296875,0.5693359375,0.48828125,0.384765625,0.3017578125,0.28125,0.330078125,0.4130859375,0.4892578125,0.5498046875,0.5712890625,0.5517578125,0.5166015625,0.4970703125,0.5185546875,0.5791015625,0.6533203125,0.7275390625,0.7607421875,0.72265625,0.626953125,0.51953125,0.439453125,0.36328125,0.2744140625,0.2099609375,0.2099609375,0.2744140625,0.36328125,0.439453125,0.498046875,0.515625,0.4921875,0.4521484375,0.4296875,0.44921875,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5595703125,0.51171875,0.443359375,0.392578125,0.3857421875,0.4248046875,0.4892578125,0.546875,0.5595703125,0.525390625,0.4736328125,0.439453125,0.4521484375,0.509765625,0.587890625,0.6875,0.76953125,0.7890625,0.740234375,0.6572265625,0.5791015625,0.505859375,0.4326171875,0.3828125,0.3701171875,0.388671875,0.412109375,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.57421875,0.599609375,0.6240234375,0.6201171875,0.5791015625,0.5126953125,0.439453125,0.380859375,0.3779296875,0.431640625,0.5078125,0.5615234375,0.5576171875,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.56640625,0.5078125,0.4228515625,0.35546875,0.337890625,0.373046875,0.439453125,0.5126953125,0.5791015625,0.6201171875,0.6240234375,0.599609375,0.57421875,0.5693359375,0.5810546875,0.6220703125,0.673828125,0.701171875,0.6845703125,0.6298828125,0.5595703125,0.4765625,0.3662109375,0.26953125,0.2333984375,0.2685546875,0.3447265625,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.546875,0.4931640625,0.4150390625,0.3544921875,0.3408203125,0.3759765625,0.439453125,0.5087890625,0.57421875,0.6142578125,0.619140625,0.5966796875,0.57421875,0.5693359375,0.5576171875,0.5009765625,0.4169921875,0.34765625,0.326171875,0.357421875,0.419921875,0.48046875,0.5068359375,0.5,0.4794921875,0.4716796875,0.4990234375,0.5595703125,0.6328125,0.708984375,0.74609375,0.712890625,0.6201171875,0.51171875,0.4296875,0.37109375,0.3662109375,0.4189453125,0.4951171875,0.548828125,0.5458984375,0.4892578125,0.419921875,0.3603515625,0.33203125,0.3427734375,0.37890625,0.412109375,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5771484375,0.5595703125,0.525390625,0.484375,0.4501953125,0.431640625,0.4296875,0.4345703125,0.451171875,0.48046875,0.513671875,0.5419921875,0.556640625,0.5595703125,0.556640625,0.54296875,0.517578125,0.4873046875,0.4599609375,0.4443359375,0.439453125,0.4404296875,0.4541015625,0.48046875,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.353515625,0.3623046875,0.39453125,0.423828125,0.4296875,0.427734375,0.42578125,0.4228515625,0.4208984375,0.419921875,0.419921875,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.5078125,0.439453125,0.39453125,0.384765625,0.4033203125,0.4248046875,0.4296875,0.431640625,0.447265625,0.4765625,0.5126953125,0.5419921875,0.5576171875,0.5595703125,0.5576171875,0.5576171875,0.55859375,0.5595703125,0.560546875,0.560546875,0.5595703125,0.5673828125,0.6083984375,0.6611328125,0.6923828125,0.6806640625,0.62890625,0.5595703125,0.48046875,0.388671875,0.326171875,0.3310546875,0.40234375,0.4990234375,0.5791015625,0.6591796875,0.751953125,0.8173828125,0.81640625,0.75,0.6572265625,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.5693359375,0.5283203125,0.4755859375,0.443359375,0.4541015625,0.5029296875,0.5693359375,0.6435546875,0.7236328125,0.76953125,0.748046875,0.6669921875,0.5673828125,0.4892578125,0.4140625,0.3251953125,0.2646484375,0.26953125,0.337890625,0.431640625,0.509765625,0.5888671875,0.689453125,0.7685546875,0.78515625,0.7333984375,0.6474609375,0.5693359375,0.49609375,0.4267578125,0.380859375,0.373046875,0.392578125,0.4150390625,0.419921875,0.4296875,0.478515625,0.5478515625,0.5966796875,0.6005859375,0.5576171875,0.4892578125,0.431640625,0.4296875,0.4873046875,0.5703125,0.630859375,0.6337890625,0.5791015625,0.5009765625,0.400390625,0.31640625,0.29296875,0.3369140625,0.416015625,0.4892578125,0.568359375,0.6708984375,0.7568359375,0.7822265625,0.7373046875,0.65625,0.5791015625,0.5087890625,0.453125,0.43359375,0.4580078125,0.5078125,0.5478515625,0.5595703125,0.5478515625,0.4921875,0.41015625,0.3447265625,0.3271484375,0.36328125,0.4296875,0.4931640625,0.521484375,0.5126953125,0.4873046875,0.4755859375,0.5,0.5595703125,0.623046875,0.6552734375,0.63671875,0.5712890625,0.4892578125,0.4326171875,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.4384765625,0.4189453125,0.4443359375,0.4892578125,0.515625,0.4990234375,0.439453125,0.37109375,0.3203125,0.3076171875,0.3369140625,0.3896484375,0.4296875,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.5576171875,0.5732421875,0.5458984375,0.501953125,0.4775390625,0.498046875,0.5595703125,0.6259765625,0.66015625,0.640625,0.5732421875,0.4892578125,0.431640625,0.419921875,0.4345703125,0.49609375,0.583984375,0.6552734375,0.6767578125,0.6435546875,0.5791015625,0.5185546875,0.49609375,0.5146484375,0.548828125,0.568359375,0.548828125,0.4892578125,0.421875,0.3662109375,0.341796875,0.357421875,0.3974609375,0.431640625,0.439453125,0.4521484375,0.5078125,0.587890625,0.650390625,0.6669921875,0.6328125,0.5693359375,0.5107421875,0.4931640625,0.515625,0.5537109375,0.57421875,0.5517578125,0.4892578125,0.41015625,0.3193359375,0.2587890625,0.2646484375,0.3359375,0.4306640625,0.509765625,0.5791015625,0.638671875,0.6669921875,0.65625,0.6201171875,0.5869140625,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.486328125,0.3779296875,0.283203125,0.25,0.287109375,0.3642578125,0.439453125,0.5078125,0.5576171875,0.5673828125,0.533203125,0.4755859375,0.431640625,0.419921875,0.412109375,0.3896484375,0.373046875,0.3857421875,0.435546875,0.5068359375,0.5791015625,0.6552734375,0.7353515625,0.7783203125,0.75390625,0.669921875,0.568359375,0.4892578125,0.43359375,0.4267578125,0.470703125,0.5341796875,0.5771484375,0.5673828125,0.509765625,0.44921875,0.4306640625,0.4541015625,0.4951171875,0.5185546875,0.5,0.439453125,0.3623046875,0.2763671875,0.220703125,0.2333984375,0.3095703125,0.4091796875,0.4892578125,0.548828125,0.5556640625,0.5068359375,0.43359375,0.3818359375,0.384765625,0.439453125,0.5185546875,0.623046875,0.712890625,0.7451171875,0.7080078125,0.6328125,0.5595703125,0.4833984375,0.3935546875,0.33203125,0.3359375,0.4052734375,0.5,0.5791015625,0.6376953125,0.640625,0.5859375,0.5078125,0.4521484375,0.453125,0.509765625,0.576171875,0.6171875,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.41015625,0.376953125,0.33984375,0.3291015625,0.359375,0.419921875,0.4892578125,0.548828125,0.5615234375,0.5263671875,0.47265625,0.4375,0.4501953125,0.509765625,0.5849609375,0.6650390625,0.708984375,0.6845703125,0.599609375,0.498046875,0.419921875,0.3564453125,0.322265625,0.33984375,0.404296875,0.4873046875,0.544921875,0.5595703125,0.5576171875,0.541015625,0.5087890625,0.470703125,0.4384765625,0.421875,0.419921875,0.4345703125,0.49609375,0.5830078125,0.65234375,0.6708984375,0.6357421875,0.5693359375,0.5078125,0.48828125,0.513671875,0.5556640625,0.580078125,0.560546875,0.5,0.427734375,0.3662109375,0.3359375,0.3466796875,0.3857421875,0.419921875,0.4296875,0.4248046875,0.3994140625,0.375,0.37890625,0.419921875,0.486328125,0.5595703125,0.6259765625,0.6611328125,0.64453125,0.5791015625,0.4970703125,0.44140625,0.4296875,0.4404296875,0.48046875,0.529296875,0.5546875,0.5390625,0.486328125,0.419921875,0.3466796875,0.271484375,0.2373046875,0.2724609375,0.3671875,0.4765625,0.5595703125,0.6259765625,0.6630859375,0.6484375,0.5859375,0.505859375,0.451171875,0.439453125,0.435546875,0.4130859375,0.3935546875,0.4013671875,0.443359375,0.509765625,0.5791015625,0.6416015625,0.671875,0.6474609375,0.5751953125,0.4892578125,0.431640625,0.419921875,0.416015625,0.396484375,0.3818359375,0.3935546875,0.4404296875,0.5087890625,0.5791015625,0.6318359375,0.6220703125,0.546875,0.4462890625,0.373046875,0.365234375,0.419921875,0.5009765625,0.6103515625,0.70703125,0.74609375,0.71484375,0.6416015625,0.5693359375,0.5107421875,0.494140625,0.5205078125,0.5634765625,0.587890625,0.5693359375,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.564453125,0.5478515625,0.5185546875,0.4853515625,0.45703125,0.4423828125,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.5751953125,0.556640625,0.521484375,0.40625,0.3857421875,0.3837890625,0.384765625,0.376953125,0.3662109375,0.3525390625,0.3388671875,0.3291015625,0.3251953125,0.3251953125,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.6083984375,0.533203125,0.4638671875,0.416015625,0.3935546875,0.3857421875,0.376953125,0.373046875,0.39453125,0.443359375,0.50390625,0.552734375,0.57421875,0.5703125,0.5615234375,0.5595703125,0.5654296875,0.57421875,0.580078125,0.5791015625,0.5703125,0.5703125,0.6044921875,0.6552734375,0.6904296875,0.6845703125,0.638671875,0.5703125,0.4931640625,0.4111328125,0.3671875,0.39453125,0.484375,0.5908203125,0.673828125,0.751953125,0.83984375,0.8984375,0.89453125,0.8291015625,0.7431640625,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.6650390625,0.62890625,0.580078125,0.544921875,0.5419921875,0.5732421875,0.6220703125,0.673828125,0.7197265625,0.728515625,0.6826171875,0.5966796875,0.5087890625,0.4482421875,0.392578125,0.33203125,0.2998046875,0.322265625,0.39453125,0.482421875,0.55078125,0.6220703125,0.7177734375,0.7978515625,0.8212890625,0.7783203125,0.6982421875,0.6220703125,0.546875,0.4638671875,0.392578125,0.3486328125,0.3349609375,0.3330078125,0.3251953125,0.328125,0.376953125,0.4560546875,0.5234375,0.544921875,0.513671875,0.4482421875,0.390625,0.39453125,0.4697265625,0.58203125,0.67578125,0.7080078125,0.673828125,0.611328125,0.517578125,0.419921875,0.359375,0.3564453125,0.396484375,0.4482421875,0.5126953125,0.619140625,0.732421875,0.80078125,0.7998046875,0.7451171875,0.673828125,0.599609375,0.5283203125,0.484375,0.4833984375,0.515625,0.552734375,0.5703125,0.5654296875,0.5078125,0.4140625,0.328125,0.2900390625,0.3134765625,0.376953125,0.4443359375,0.490234375,0.5087890625,0.5078125,0.5068359375,0.5263671875,0.5703125,0.6142578125,0.62109375,0.576171875,0.490234375,0.3974609375,0.3388671875,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.4365234375,0.4111328125,0.427734375,0.4658203125,0.4921875,0.48046875,0.4287109375,0.369140625,0.32421875,0.3134765625,0.3388671875,0.384765625,0.4208984375,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.541015625,0.544921875,0.5166015625,0.4833984375,0.474609375,0.505859375,0.5703125,0.6328125,0.6494140625,0.6005859375,0.5009765625,0.39453125,0.3310546875,0.3251953125,0.3525390625,0.4375,0.5634765625,0.6767578125,0.7353515625,0.7265625,0.673828125,0.615234375,0.5732421875,0.548828125,0.537109375,0.5234375,0.494140625,0.4482421875,0.3974609375,0.3583984375,0.3447265625,0.361328125,0.39453125,0.421875,0.4287109375,0.4404296875,0.4931640625,0.57421875,0.6474609375,0.6806640625,0.6669921875,0.6220703125,0.578125,0.5615234375,0.56640625,0.572265625,0.55859375,0.5146484375,0.4482421875,0.3720703125,0.296875,0.2607421875,0.2919921875,0.3798828125,0.4794921875,0.55078125,0.61328125,0.673828125,0.7119140625,0.71875,0.7001953125,0.6787109375,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.5390625,0.427734375,0.3251953125,0.279296875,0.30078125,0.3642578125,0.4287109375,0.4873046875,0.5263671875,0.5224609375,0.4736328125,0.40234375,0.3466796875,0.3251953125,0.3154296875,0.314453125,0.34375,0.4140625,0.5107421875,0.6044921875,0.673828125,0.7353515625,0.7822265625,0.78125,0.716796875,0.611328125,0.5107421875,0.4482421875,0.4091796875,0.419921875,0.4794921875,0.5546875,0.6044921875,0.6015625,0.55078125,0.4970703125,0.4736328125,0.48046875,0.5,0.5068359375,0.4833984375,0.4287109375,0.359375,0.275390625,0.21484375,0.2158203125,0.2783203125,0.369140625,0.4482421875,0.509765625,0.5302734375,0.501953125,0.4443359375,0.396484375,0.3896484375,0.4287109375,0.4892578125,0.5732421875,0.6513671875,0.689453125,0.6728515625,0.623046875,0.5703125,0.5126953125,0.4462890625,0.40625,0.4248046875,0.4990234375,0.59375,0.673828125,0.7314453125,0.7333984375,0.673828125,0.5849609375,0.515625,0.50390625,0.55078125,0.607421875,0.630859375,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.3095703125,0.28125,0.2607421875,0.271484375,0.318359375,0.3837890625,0.4482421875,0.5009765625,0.5234375,0.51171875,0.4873046875,0.4755859375,0.498046875,0.55078125,0.6123046875,0.66015625,0.6591796875,0.5947265625,0.4892578125,0.388671875,0.3251953125,0.2802734375,0.2666015625,0.3037109375,0.3857421875,0.48046875,0.546875,0.5703125,0.5732421875,0.544921875,0.484375,0.4111328125,0.3505859375,0.322265625,0.3251953125,0.3525390625,0.4375,0.5595703125,0.6630859375,0.708984375,0.685546875,0.6220703125,0.55859375,0.533203125,0.546875,0.5751953125,0.587890625,0.5625,0.5,0.42578125,0.3525390625,0.3037109375,0.2978515625,0.3251953125,0.3603515625,0.376953125,0.3818359375,0.37109375,0.3623046875,0.37890625,0.427734375,0.4970703125,0.5703125,0.6337890625,0.6572265625,0.619140625,0.5341796875,0.439453125,0.3818359375,0.376953125,0.3935546875,0.423828125,0.4521484375,0.4560546875,0.427734375,0.3779296875,0.3251953125,0.271484375,0.22265625,0.2138671875,0.26953125,0.3759765625,0.4873046875,0.5703125,0.634765625,0.6640625,0.638671875,0.56640625,0.4833984375,0.4326171875,0.4287109375,0.4375,0.4453125,0.4638671875,0.501953125,0.55859375,0.619140625,0.673828125,0.7138671875,0.7021484375,0.626953125,0.5087890625,0.39453125,0.3310546875,0.3251953125,0.3369140625,0.3564453125,0.3984375,0.46484375,0.5439453125,0.6171875,0.673828125,0.7060546875,0.666015625,0.5517578125,0.412109375,0.30859375,0.28125,0.3251953125,0.3994140625,0.509765625,0.625,0.69921875,0.7099609375,0.6728515625,0.6220703125,0.5791015625,0.5693359375,0.58984375,0.6181640625,0.62890625,0.60546875,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.607421875,0.576171875,0.53125,0.484375,0.44921875,0.431640625,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.6650390625,0.623046875,0.548828125,0.5185546875,0.474609375,0.4296875,0.392578125,0.3642578125,0.3359375,0.3037109375,0.275390625,0.2587890625,0.2548828125,0.2578125,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.6904296875,0.626953125,0.5546875,0.4853515625,0.4306640625,0.392578125,0.3642578125,0.345703125,0.3623046875,0.4140625,0.48046875,0.5322265625,0.5478515625,0.5302734375,0.5078125,0.50390625,0.5185546875,0.541015625,0.5556640625,0.5517578125,0.5302734375,0.5146484375,0.5361328125,0.5849609375,0.626953125,0.6328125,0.595703125,0.5302734375,0.455078125,0.38671875,0.3662109375,0.421875,0.5361328125,0.6552734375,0.740234375,0.81640625,0.89453125,0.9423828125,0.9306640625,0.869140625,0.7939453125,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7353515625,0.7109375,0.673828125,0.6376953125,0.6181640625,0.619140625,0.634765625,0.650390625,0.646484375,0.6103515625,0.546875,0.4755859375,0.4208984375,0.39453125,0.375,0.3603515625,0.369140625,0.4140625,0.4833984375,0.552734375,0.6044921875,0.6591796875,0.73828125,0.806640625,0.826171875,0.78515625,0.7099609375,0.634765625,0.560546875,0.4775390625,0.3994140625,0.341796875,0.306640625,0.283203125,0.2587890625,0.24609375,0.28515625,0.3642578125,0.44140625,0.4775390625,0.45703125,0.39453125,0.3349609375,0.3359375,0.4140625,0.5439453125,0.6708984375,0.740234375,0.740234375,0.7109375,0.64453125,0.5498046875,0.4580078125,0.3984375,0.3818359375,0.39453125,0.4306640625,0.5283203125,0.662109375,0.7763671875,0.826171875,0.8046875,0.740234375,0.662109375,0.568359375,0.48828125,0.4521484375,0.4638671875,0.4990234375,0.5302734375,0.5419921875,0.4990234375,0.4140625,0.328125,0.28515625,0.3017578125,0.3642578125,0.4345703125,0.49609375,0.533203125,0.5380859375,0.525390625,0.517578125,0.5302734375,0.5419921875,0.5224609375,0.4658203125,0.38671875,0.3115234375,0.267578125,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.435546875,0.4052734375,0.4189453125,0.4609375,0.4990234375,0.50390625,0.46875,0.4248046875,0.3916015625,0.3837890625,0.40234375,0.4365234375,0.462890625,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.5087890625,0.484375,0.44140625,0.4111328125,0.4169921875,0.4619140625,0.5302734375,0.58984375,0.59375,0.52734375,0.4140625,0.3046875,0.25,0.2587890625,0.3017578125,0.40625,0.5517578125,0.6875,0.7666015625,0.7763671875,0.740234375,0.6904296875,0.626953125,0.5546875,0.4912109375,0.4443359375,0.4150390625,0.39453125,0.3779296875,0.373046875,0.3857421875,0.4140625,0.4443359375,0.46484375,0.46875,0.4755859375,0.5068359375,0.5576171875,0.609375,0.6435546875,0.6494140625,0.634765625,0.62109375,0.619140625,0.6162109375,0.5908203125,0.5380859375,0.466796875,0.39453125,0.3232421875,0.26953125,0.26953125,0.3369140625,0.4453125,0.5458984375,0.6044921875,0.65234375,0.701171875,0.740234375,0.7568359375,0.7529296875,0.7431640625,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.5546875,0.4560546875,0.3720703125,0.33984375,0.3642578125,0.4189453125,0.46875,0.51171875,0.53515625,0.5166015625,0.4521484375,0.3671875,0.2958984375,0.2587890625,0.23828125,0.2509765625,0.3193359375,0.4384765625,0.57421875,0.6806640625,0.740234375,0.7783203125,0.78125,0.7265625,0.6240234375,0.509765625,0.4267578125,0.39453125,0.38671875,0.4248046875,0.501953125,0.5849609375,0.6376953125,0.6416015625,0.6044921875,0.5634765625,0.5400390625,0.53515625,0.5380859375,0.533203125,0.509765625,0.46875,0.4130859375,0.3291015625,0.2509765625,0.2197265625,0.25,0.3203125,0.39453125,0.462890625,0.513671875,0.529296875,0.5107421875,0.4775390625,0.458984375,0.46875,0.4912109375,0.5234375,0.5546875,0.5712890625,0.5673828125,0.5498046875,0.5302734375,0.505859375,0.4765625,0.4658203125,0.5,0.57421875,0.6630859375,0.740234375,0.80078125,0.8095703125,0.7587890625,0.673828125,0.5986328125,0.5732421875,0.6044921875,0.64453125,0.650390625,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.23046875,0.201171875,0.1923828125,0.220703125,0.2783203125,0.34375,0.39453125,0.4375,0.4697265625,0.4912109375,0.5078125,0.529296875,0.5615234375,0.6044921875,0.6435546875,0.6455078125,0.5908203125,0.48828125,0.3740234375,0.2919921875,0.2587890625,0.2431640625,0.2470703125,0.2841796875,0.3525390625,0.431640625,0.4951171875,0.5302734375,0.5458984375,0.5166015625,0.44140625,0.34765625,0.2724609375,0.2431640625,0.2587890625,0.3037109375,0.41015625,0.5517578125,0.6708984375,0.7216796875,0.69921875,0.634765625,0.572265625,0.544921875,0.5546875,0.580078125,0.58984375,0.5625,0.5,0.4228515625,0.3388671875,0.275390625,0.2587890625,0.287109375,0.33203125,0.3642578125,0.3837890625,0.380859375,0.3701171875,0.3720703125,0.40234375,0.4599609375,0.5302734375,0.591796875,0.609375,0.5654296875,0.48046875,0.39453125,0.3525390625,0.3642578125,0.3896484375,0.4072265625,0.4033203125,0.3720703125,0.3251953125,0.283203125,0.2587890625,0.2373046875,0.2138671875,0.2177734375,0.2666015625,0.3544921875,0.451171875,0.5302734375,0.5947265625,0.6240234375,0.6044921875,0.546875,0.484375,0.455078125,0.46875,0.498046875,0.5400390625,0.5908203125,0.6435546875,0.6875,0.71875,0.740234375,0.7431640625,0.68359375,0.560546875,0.4140625,0.296875,0.2470703125,0.2587890625,0.29296875,0.359375,0.4580078125,0.56640625,0.6572265625,0.7138671875,0.740234375,0.7412109375,0.669921875,0.5322265625,0.3779296875,0.2646484375,0.228515625,0.2587890625,0.314453125,0.404296875,0.5107421875,0.5986328125,0.6455078125,0.6513671875,0.634765625,0.6220703125,0.630859375,0.654296875,0.673828125,0.6728515625,0.646484375,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.60546875,0.56640625,0.5244140625,0.4912109375,0.474609375,0.4697265625,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.7275390625,0.6669921875,0.5634765625,0.6484375,0.5966796875,0.5205078125,0.4462890625,0.39453125,0.3466796875,0.2978515625,0.2587890625,0.2421875,0.24609375,0.255859375,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.712890625,0.677734375,0.6298828125,0.568359375,0.5029296875,0.443359375,0.39453125,0.3583984375,0.3603515625,0.40234375,0.4609375,0.5029296875,0.5048828125,0.46875,0.431640625,0.4248046875,0.4501953125,0.48828125,0.513671875,0.5068359375,0.46875,0.4345703125,0.443359375,0.48828125,0.5380859375,0.55859375,0.5322265625,0.46875,0.3955078125,0.3349609375,0.328125,0.3994140625,0.52734375,0.654296875,0.740234375,0.8134765625,0.880859375,0.9140625,0.89453125,0.8369140625,0.775390625,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7392578125,0.734375,0.7177734375,0.6904296875,0.65625,0.6259765625,0.6044921875,0.578125,0.5234375,0.4521484375,0.388671875,0.3525390625,0.3486328125,0.3642578125,0.384765625,0.4169921875,0.4609375,0.513671875,0.564453125,0.60546875,0.634765625,0.669921875,0.7275390625,0.7783203125,0.7900390625,0.75,0.6787109375,0.6044921875,0.533203125,0.46484375,0.408203125,0.3662109375,0.3349609375,0.30078125,0.2587890625,0.2275390625,0.2490234375,0.3173828125,0.39453125,0.4384765625,0.4248046875,0.3642578125,0.30078125,0.2822265625,0.3388671875,0.4609375,0.6015625,0.703125,0.740234375,0.751953125,0.7314453125,0.6650390625,0.56640625,0.46484375,0.3935546875,0.3642578125,0.3642578125,0.4375,0.5712890625,0.708984375,0.7939453125,0.798828125,0.740234375,0.6572265625,0.5458984375,0.4384765625,0.3779296875,0.3798828125,0.421875,0.46875,0.501953125,0.484375,0.421875,0.3525390625,0.3154296875,0.3330078125,0.39453125,0.46875,0.541015625,0.5849609375,0.5830078125,0.5419921875,0.49609375,0.46875,0.4462890625,0.40625,0.3564453125,0.30859375,0.275390625,0.2607421875,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.4345703125,0.400390625,0.4140625,0.4638671875,0.5185546875,0.544921875,0.5302734375,0.50390625,0.4853515625,0.48046875,0.4912109375,0.5107421875,0.5263671875,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.470703125,0.4111328125,0.34765625,0.3173828125,0.337890625,0.3974609375,0.46875,0.52734375,0.5283203125,0.4609375,0.35546875,0.263671875,0.2294921875,0.2587890625,0.318359375,0.4248046875,0.560546875,0.6796875,0.748046875,0.7607421875,0.740234375,0.703125,0.626953125,0.5244140625,0.427734375,0.3671875,0.3505859375,0.3642578125,0.38671875,0.419921875,0.4609375,0.4970703125,0.51953125,0.5283203125,0.5302734375,0.529296875,0.52734375,0.529296875,0.541015625,0.5615234375,0.583984375,0.6044921875,0.626953125,0.6533203125,0.6572265625,0.6162109375,0.53515625,0.4423828125,0.3642578125,0.296875,0.26171875,0.2900390625,0.3798828125,0.4990234375,0.5927734375,0.634765625,0.6630859375,0.6953125,0.7236328125,0.740234375,0.744140625,0.7412109375,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.529296875,0.4521484375,0.4033203125,0.40234375,0.4443359375,0.49609375,0.5302734375,0.5556640625,0.568359375,0.546875,0.482421875,0.39453125,0.3134765625,0.2587890625,0.22265625,0.232421875,0.3115234375,0.447265625,0.5927734375,0.697265625,0.740234375,0.75390625,0.716796875,0.6240234375,0.5048828125,0.4052734375,0.3583984375,0.3642578125,0.392578125,0.4541015625,0.5380859375,0.61328125,0.654296875,0.6572265625,0.634765625,0.6103515625,0.59375,0.5849609375,0.580078125,0.5712890625,0.5546875,0.5302734375,0.490234375,0.4091796875,0.3134765625,0.2509765625,0.2470703125,0.294921875,0.3642578125,0.4404296875,0.5234375,0.587890625,0.609375,0.58984375,0.5546875,0.5302734375,0.5078125,0.4755859375,0.4443359375,0.427734375,0.431640625,0.44921875,0.46875,0.484375,0.4892578125,0.5,0.533203125,0.5927734375,0.6669921875,0.740234375,0.8037109375,0.828125,0.7978515625,0.728515625,0.6572265625,0.6220703125,0.634765625,0.658203125,0.658203125,0.61328125,0.521484375,0.4091796875,0.3154296875,0.2587890625,0.2138671875,0.177734375,0.1728515625,0.208984375,0.271484375,0.330078125,0.3642578125,0.392578125,0.4287109375,0.474609375,0.5244140625,0.5703125,0.6064453125,0.634765625,0.6494140625,0.6123046875,0.5185546875,0.400390625,0.2998046875,0.2529296875,0.2587890625,0.2763671875,0.2890625,0.3056640625,0.333984375,0.375,0.4228515625,0.46875,0.501953125,0.4833984375,0.4111328125,0.3173828125,0.2451171875,0.2255859375,0.2587890625,0.3212890625,0.4375,0.5771484375,0.6796875,0.708984375,0.6728515625,0.6044921875,0.5419921875,0.5185546875,0.53515625,0.568359375,0.5849609375,0.5615234375,0.5,0.4208984375,0.3291015625,0.2587890625,0.2421875,0.2802734375,0.3427734375,0.39453125,0.4306640625,0.4306640625,0.40234375,0.373046875,0.369140625,0.404296875,0.46875,0.53125,0.5478515625,0.5107421875,0.44140625,0.3798828125,0.3623046875,0.39453125,0.4326171875,0.4384765625,0.40234375,0.33984375,0.279296875,0.25,0.2587890625,0.2724609375,0.26953125,0.2666015625,0.2841796875,0.330078125,0.3974609375,0.46875,0.5341796875,0.5673828125,0.560546875,0.52734375,0.4951171875,0.494140625,0.5302734375,0.5810546875,0.6513671875,0.720703125,0.7646484375,0.7744140625,0.759765625,0.740234375,0.7041015625,0.60546875,0.4609375,0.322265625,0.2373046875,0.2236328125,0.2587890625,0.31640625,0.419921875,0.5498046875,0.6650390625,0.7353515625,0.75390625,0.740234375,0.70703125,0.619140625,0.48828125,0.3583984375,0.26953125,0.2421875,0.2587890625,0.2900390625,0.33984375,0.408203125,0.48046875,0.541015625,0.58203125,0.6044921875,0.626953125,0.66015625,0.6904296875,0.701171875,0.689453125,0.662109375,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.55859375,0.5166015625,0.4912109375,0.4912109375,0.5078125,0.525390625,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.7255859375,0.6572265625,0.546875,0.744140625,0.7021484375,0.6142578125,0.5185546875,0.4482421875,0.3857421875,0.3251953125,0.287109375,0.2802734375,0.298828125,0.3203125,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.6669921875,0.6669921875,0.6611328125,0.6318359375,0.5771484375,0.51171875,0.4482421875,0.396484375,0.384765625,0.4150390625,0.4619140625,0.4921875,0.48046875,0.4287109375,0.3779296875,0.369140625,0.4033203125,0.455078125,0.4892578125,0.48046875,0.4287109375,0.37890625,0.3759765625,0.41796875,0.474609375,0.5068359375,0.490234375,0.4287109375,0.3544921875,0.2900390625,0.2783203125,0.3427734375,0.4638671875,0.587890625,0.673828125,0.744140625,0.802734375,0.82421875,0.7978515625,0.7431640625,0.693359375,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.677734375,0.6923828125,0.703125,0.6923828125,0.6552734375,0.603515625,0.55078125,0.490234375,0.40234375,0.31640625,0.2705078125,0.279296875,0.3251953125,0.376953125,0.4306640625,0.4921875,0.5478515625,0.5869140625,0.60546875,0.61328125,0.6220703125,0.6396484375,0.6806640625,0.720703125,0.7275390625,0.69140625,0.6240234375,0.55078125,0.484375,0.4404296875,0.4228515625,0.4189453125,0.4111328125,0.380859375,0.3251953125,0.27734375,0.2802734375,0.333984375,0.404296875,0.4482421875,0.4375,0.376953125,0.3076171875,0.26171875,0.2763671875,0.36328125,0.4921875,0.607421875,0.673828125,0.7236328125,0.75390625,0.7353515625,0.6572265625,0.5439453125,0.4404296875,0.376953125,0.3447265625,0.384765625,0.4951171875,0.625,0.7158203125,0.7294921875,0.673828125,0.58984375,0.4716796875,0.3583984375,0.2978515625,0.30859375,0.365234375,0.4287109375,0.4794921875,0.484375,0.4462890625,0.3955078125,0.3671875,0.3857421875,0.4482421875,0.5244140625,0.6044921875,0.6513671875,0.6376953125,0.5703125,0.4892578125,0.4287109375,0.376953125,0.3271484375,0.294921875,0.2890625,0.3037109375,0.3212890625,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.4326171875,0.39453125,0.4052734375,0.458984375,0.525390625,0.568359375,0.5703125,0.5595703125,0.552734375,0.55078125,0.5546875,0.5625,0.568359375,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.4384765625,0.3505859375,0.2724609375,0.2451171875,0.2802734375,0.353515625,0.4287109375,0.48828125,0.4921875,0.4365234375,0.3525390625,0.2880859375,0.2783203125,0.3251953125,0.39453125,0.48828125,0.5849609375,0.6552734375,0.6845703125,0.68359375,0.673828125,0.6494140625,0.576171875,0.4697265625,0.375,0.326171875,0.3330078125,0.376953125,0.431640625,0.4921875,0.544921875,0.57421875,0.5791015625,0.572265625,0.5703125,0.5625,0.5302734375,0.48828125,0.4619140625,0.466796875,0.501953125,0.55078125,0.6064453125,0.6640625,0.6884765625,0.6513671875,0.5615234375,0.4580078125,0.376953125,0.3115234375,0.283203125,0.31640625,0.4072265625,0.5166015625,0.595703125,0.6220703125,0.6328125,0.646484375,0.66015625,0.669921875,0.673828125,0.673828125,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.48046875,0.423828125,0.4072265625,0.4384765625,0.498046875,0.5498046875,0.5703125,0.5830078125,0.5966796875,0.58984375,0.546875,0.47265625,0.392578125,0.3251953125,0.2724609375,0.263671875,0.322265625,0.435546875,0.5615234375,0.646484375,0.673828125,0.669921875,0.611328125,0.509765625,0.4052734375,0.3408203125,0.3359375,0.376953125,0.43359375,0.5068359375,0.5791015625,0.6259765625,0.640625,0.6328125,0.6220703125,0.6123046875,0.6044921875,0.5986328125,0.59375,0.587890625,0.580078125,0.5703125,0.5458984375,0.47265625,0.3740234375,0.2978515625,0.275390625,0.310546875,0.376953125,0.458984375,0.564453125,0.658203125,0.7001953125,0.6806640625,0.625,0.5703125,0.509765625,0.42578125,0.34765625,0.3095703125,0.326171875,0.3759765625,0.4287109375,0.474609375,0.5,0.509765625,0.5224609375,0.552734375,0.60546875,0.673828125,0.740234375,0.7802734375,0.7744140625,0.7265625,0.6630859375,0.623046875,0.6220703125,0.6337890625,0.640625,0.6220703125,0.5654296875,0.48046875,0.3935546875,0.3251953125,0.265625,0.220703125,0.2138671875,0.2490234375,0.3076171875,0.357421875,0.376953125,0.3916015625,0.4228515625,0.4716796875,0.52734375,0.576171875,0.607421875,0.6220703125,0.6181640625,0.5595703125,0.4580078125,0.353515625,0.2890625,0.2841796875,0.3251953125,0.369140625,0.3828125,0.3701171875,0.349609375,0.3466796875,0.3740234375,0.4287109375,0.4775390625,0.474609375,0.4169921875,0.337890625,0.2802734375,0.27734375,0.3251953125,0.400390625,0.5146484375,0.6298828125,0.693359375,0.6845703125,0.6240234375,0.55078125,0.490234375,0.4736328125,0.501953125,0.548828125,0.5771484375,0.560546875,0.5,0.419921875,0.3251953125,0.2548828125,0.24609375,0.298828125,0.37890625,0.4482421875,0.4970703125,0.498046875,0.451171875,0.390625,0.353515625,0.3681640625,0.4287109375,0.490234375,0.509765625,0.4814453125,0.4296875,0.392578125,0.3974609375,0.4482421875,0.498046875,0.498046875,0.4443359375,0.3642578125,0.30078125,0.287109375,0.3251953125,0.3671875,0.3759765625,0.3544921875,0.330078125,0.328125,0.3642578125,0.4287109375,0.4931640625,0.52734375,0.5263671875,0.5078125,0.4970703125,0.5166015625,0.5703125,0.6396484375,0.7265625,0.798828125,0.8212890625,0.7890625,0.7294921875,0.673828125,0.607421875,0.4921875,0.359375,0.2626953125,0.234375,0.2666015625,0.3251953125,0.400390625,0.517578125,0.64453125,0.7314453125,0.75390625,0.7236328125,0.673828125,0.6142578125,0.5283203125,0.43359375,0.359375,0.3212890625,0.31640625,0.3251953125,0.333984375,0.3388671875,0.353515625,0.38671875,0.439453125,0.498046875,0.55078125,0.603515625,0.6552734375,0.6884765625,0.6904296875,0.666015625,0.6376953125,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.4921875,0.44921875,0.4423828125,0.4736328125,0.5234375,0.5615234375,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6591796875,0.5966796875,0.5009765625,0.771484375,0.7509765625,0.669921875,0.5693359375,0.4892578125,0.419921875,0.3603515625,0.33203125,0.3427734375,0.37890625,0.412109375,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.5849609375,0.6142578125,0.6455078125,0.65234375,0.62109375,0.5595703125,0.4892578125,0.4296875,0.4130859375,0.44140625,0.4873046875,0.515625,0.4990234375,0.439453125,0.380859375,0.37109375,0.41015625,0.4697265625,0.5087890625,0.498046875,0.439453125,0.3818359375,0.3720703125,0.412109375,0.47265625,0.51171875,0.5,0.439453125,0.36328125,0.2861328125,0.25,0.287109375,0.384765625,0.49609375,0.5791015625,0.6494140625,0.7021484375,0.716796875,0.6875,0.6337890625,0.5908203125,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5869140625,0.6181640625,0.6533203125,0.6640625,0.6357421875,0.5771484375,0.509765625,0.431640625,0.33203125,0.2509765625,0.2294921875,0.275390625,0.35546875,0.4296875,0.4990234375,0.5654296875,0.607421875,0.615234375,0.595703125,0.57421875,0.5693359375,0.5791015625,0.615234375,0.6552734375,0.6689453125,0.6416015625,0.5810546875,0.509765625,0.447265625,0.4248046875,0.443359375,0.4794921875,0.5,0.48046875,0.419921875,0.3623046875,0.353515625,0.396484375,0.458984375,0.5,0.4892578125,0.4296875,0.353515625,0.2802734375,0.2490234375,0.2900390625,0.3896484375,0.4990234375,0.5791015625,0.6513671875,0.7236328125,0.75390625,0.7138671875,0.6171875,0.5087890625,0.4296875,0.376953125,0.38671875,0.4609375,0.5595703125,0.630859375,0.6357421875,0.5791015625,0.49609375,0.38671875,0.2900390625,0.25390625,0.2890625,0.365234375,0.439453125,0.4990234375,0.5146484375,0.4853515625,0.4384765625,0.41015625,0.4287109375,0.4892578125,0.5673828125,0.6533203125,0.70703125,0.6923828125,0.615234375,0.517578125,0.439453125,0.373046875,0.3203125,0.3037109375,0.3271484375,0.373046875,0.4111328125,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.431640625,0.38671875,0.388671875,0.435546875,0.501953125,0.5498046875,0.5595703125,0.5576171875,0.556640625,0.556640625,0.556640625,0.55859375,0.55859375,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.421875,0.322265625,0.2431640625,0.2255859375,0.27734375,0.3623046875,0.439453125,0.4990234375,0.5087890625,0.46484375,0.400390625,0.35546875,0.3623046875,0.419921875,0.4921875,0.5634765625,0.61328125,0.6259765625,0.609375,0.5869140625,0.5791015625,0.564453125,0.505859375,0.4208984375,0.353515625,0.333984375,0.3662109375,0.4296875,0.4990234375,0.5654296875,0.6064453125,0.6123046875,0.58984375,0.5654296875,0.5595703125,0.548828125,0.5029296875,0.4404296875,0.3984375,0.400390625,0.4443359375,0.509765625,0.583984375,0.666015625,0.71484375,0.6943359375,0.6123046875,0.5107421875,0.4296875,0.36328125,0.326171875,0.3427734375,0.41015625,0.494140625,0.5546875,0.5693359375,0.5712890625,0.5732421875,0.576171875,0.578125,0.5791015625,0.5791015625,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.4404296875,0.3935546875,0.3896484375,0.4326171875,0.498046875,0.546875,0.5595703125,0.5673828125,0.5927734375,0.6142578125,0.60546875,0.560546875,0.4912109375,0.419921875,0.35546875,0.322265625,0.34375,0.4150390625,0.5029296875,0.564453125,0.5791015625,0.568359375,0.5107421875,0.4267578125,0.3583984375,0.3359375,0.3671875,0.4296875,0.5,0.5673828125,0.6123046875,0.62109375,0.6015625,0.5771484375,0.5693359375,0.5673828125,0.56640625,0.564453125,0.5634765625,0.5625,0.560546875,0.5595703125,0.544921875,0.486328125,0.4033203125,0.33984375,0.3251953125,0.3623046875,0.4296875,0.51171875,0.6201171875,0.712890625,0.74609375,0.708984375,0.6328125,0.5595703125,0.48046875,0.3759765625,0.2861328125,0.25390625,0.291015625,0.3662109375,0.439453125,0.4990234375,0.5244140625,0.5146484375,0.4931640625,0.486328125,0.515625,0.5791015625,0.6484375,0.69921875,0.708984375,0.6748046875,0.619140625,0.578125,0.5693359375,0.5771484375,0.6005859375,0.6201171875,0.609375,0.5615234375,0.4912109375,0.419921875,0.3515625,0.30078125,0.2890625,0.3203125,0.375,0.41796875,0.4296875,0.4345703125,0.451171875,0.4814453125,0.517578125,0.5478515625,0.564453125,0.5693359375,0.5576171875,0.5009765625,0.4169921875,0.34765625,0.326171875,0.357421875,0.419921875,0.4765625,0.48828125,0.453125,0.400390625,0.3671875,0.380859375,0.439453125,0.498046875,0.505859375,0.4619140625,0.3974609375,0.353515625,0.3623046875,0.419921875,0.5,0.603515625,0.6904296875,0.71484375,0.6689453125,0.5869140625,0.509765625,0.44921875,0.4375,0.4755859375,0.533203125,0.5712890625,0.5595703125,0.5,0.419921875,0.3251953125,0.2578125,0.255859375,0.3203125,0.412109375,0.4892578125,0.546875,0.5498046875,0.498046875,0.4248046875,0.375,0.380859375,0.439453125,0.5009765625,0.5185546875,0.4912109375,0.4443359375,0.4150390625,0.4306640625,0.4892578125,0.546875,0.5498046875,0.49609375,0.4189453125,0.3642578125,0.3642578125,0.419921875,0.4765625,0.4873046875,0.451171875,0.3974609375,0.3642578125,0.37890625,0.439453125,0.5029296875,0.5283203125,0.5166015625,0.48828125,0.474609375,0.498046875,0.5595703125,0.6376953125,0.73046875,0.798828125,0.8037109375,0.7431640625,0.6552734375,0.5791015625,0.4990234375,0.3896484375,0.2890625,0.24609375,0.2744140625,0.345703125,0.419921875,0.5009765625,0.611328125,0.7109375,0.751953125,0.7236328125,0.6513671875,0.5791015625,0.5087890625,0.4384765625,0.388671875,0.375,0.390625,0.412109375,0.419921875,0.4140625,0.38671875,0.35546875,0.349609375,0.380859375,0.44140625,0.509765625,0.5771484375,0.6357421875,0.6630859375,0.650390625,0.6123046875,0.5791015625,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.4423828125,0.3974609375,0.3955078125,0.4384765625,0.501953125,0.548828125,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5673828125,0.515625,0.443359375,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.6923828125,0.7080078125,0.654296875,0.568359375,0.4892578125,0.421875,0.37890625,0.384765625,0.4375,0.51171875,0.5654296875,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.4345703125,0.43359375,0.490234375,0.5693359375,0.625,0.6240234375,0.5693359375,0.5126953125,0.501953125,0.5390625,0.5947265625,0.630859375,0.6181640625,0.5595703125,0.501953125,0.494140625,0.5390625,0.6044921875,0.6484375,0.638671875,0.5791015625,0.49609375,0.3837890625,0.2822265625,0.2412109375,0.271484375,0.345703125,0.419921875,0.48828125,0.541015625,0.556640625,0.5322265625,0.484375,0.447265625,0.439453125,0.4404296875,0.4384765625,0.4326171875,0.4267578125,0.4208984375,0.4189453125,0.419921875,0.4326171875,0.4833984375,0.55078125,0.5986328125,0.599609375,0.556640625,0.4892578125,0.4130859375,0.3291015625,0.27734375,0.2958984375,0.376953125,0.478515625,0.5595703125,0.6259765625,0.66015625,0.640625,0.5732421875,0.4892578125,0.431640625,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.431640625,0.4306640625,0.48828125,0.5703125,0.6279296875,0.626953125,0.5693359375,0.5087890625,0.49609375,0.533203125,0.58984375,0.6279296875,0.6181640625,0.5595703125,0.478515625,0.369140625,0.2734375,0.236328125,0.2705078125,0.3447265625,0.419921875,0.5009765625,0.6123046875,0.7119140625,0.751953125,0.720703125,0.6455078125,0.5693359375,0.505859375,0.478515625,0.4873046875,0.51171875,0.5205078125,0.4931640625,0.4296875,0.353515625,0.27734375,0.2421875,0.27734375,0.3720703125,0.4794921875,0.5595703125,0.6142578125,0.6162109375,0.5625,0.486328125,0.4326171875,0.4345703125,0.4892578125,0.568359375,0.669921875,0.75390625,0.7783203125,0.7353515625,0.6552734375,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.5869140625,0.619140625,0.6552734375,0.6640625,0.6328125,0.5712890625,0.5,0.4287109375,0.369140625,0.341796875,0.3564453125,0.396484375,0.4306640625,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.451171875,0.5,0.56640625,0.61328125,0.61328125,0.568359375,0.5,0.4208984375,0.333984375,0.28125,0.296875,0.376953125,0.478515625,0.5595703125,0.6201171875,0.6337890625,0.5986328125,0.5419921875,0.5029296875,0.5126953125,0.5693359375,0.6328125,0.666015625,0.6484375,0.583984375,0.5048828125,0.4501953125,0.439453125,0.4345703125,0.4091796875,0.3857421875,0.388671875,0.4296875,0.4970703125,0.5693359375,0.6357421875,0.669921875,0.6494140625,0.580078125,0.4931640625,0.43359375,0.419921875,0.412109375,0.3818359375,0.3486328125,0.3408203125,0.37109375,0.4306640625,0.5,0.5771484375,0.677734375,0.7607421875,0.7822265625,0.736328125,0.6552734375,0.5791015625,0.5078125,0.439453125,0.39453125,0.384765625,0.4033203125,0.4248046875,0.4296875,0.4287109375,0.427734375,0.4287109375,0.4306640625,0.431640625,0.4306640625,0.4296875,0.439453125,0.4873046875,0.5537109375,0.6005859375,0.6015625,0.5576171875,0.4892578125,0.4189453125,0.3603515625,0.3349609375,0.349609375,0.3896484375,0.4228515625,0.4296875,0.44140625,0.498046875,0.58203125,0.6513671875,0.6728515625,0.6416015625,0.5791015625,0.5087890625,0.439453125,0.3916015625,0.3779296875,0.3935546875,0.4140625,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6435546875,0.6767578125,0.6552734375,0.583984375,0.49609375,0.4345703125,0.419921875,0.4189453125,0.4208984375,0.4267578125,0.4326171875,0.4384765625,0.4404296875,0.439453125,0.431640625,0.40625,0.3837890625,0.3896484375,0.4326171875,0.5,0.5693359375,0.6416015625,0.71484375,0.74609375,0.70703125,0.6103515625,0.5009765625,0.419921875,0.345703125,0.271484375,0.2412109375,0.2822265625,0.3837890625,0.49609375,0.5791015625,0.63671875,0.6318359375,0.5634765625,0.466796875,0.3955078125,0.38671875,0.439453125,0.505859375,0.556640625,0.5693359375,0.5400390625,0.4892578125,0.44921875,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.4248046875,0.400390625,0.3779296875,0.3818359375,0.4228515625,0.48828125,0.5595703125,0.6171875,0.626953125,0.5869140625,0.5263671875,0.4873046875,0.4990234375,0.5595703125,0.619140625,0.6298828125,0.58984375,0.529296875,0.4892578125,0.5,0.5595703125,0.6376953125,0.724609375,0.779296875,0.765625,0.6875,0.5888671875,0.509765625,0.451171875,0.439453125,0.4775390625,0.5361328125,0.5751953125,0.56640625,0.509765625,0.43359375,0.3427734375,0.27734375,0.27734375,0.3408203125,0.431640625,0.509765625,0.5693359375,0.5888671875,0.564453125,0.5244140625,0.5,0.51953125,0.5791015625,0.6357421875,0.6376953125,0.5830078125,0.505859375,0.451171875,0.453125,0.509765625,0.5693359375,0.5859375,0.5576171875,0.51171875,0.4833984375,0.5,0.5595703125,0.6181640625,0.630859375,0.5966796875,0.5419921875,0.5078125,0.5205078125,0.5791015625,0.6337890625,0.625,0.5517578125,0.4521484375,0.3798828125,0.373046875,0.4296875,0.5087890625,0.599609375,0.662109375,0.6572265625,0.58984375,0.49609375,0.419921875,0.34765625,0.275390625,0.2470703125,0.2880859375,0.3876953125,0.498046875,0.5791015625,0.654296875,0.728515625,0.7626953125,0.7255859375,0.6298828125,0.5205078125,0.439453125,0.375,0.341796875,0.361328125,0.4287109375,0.51171875,0.568359375,0.5791015625,0.56640625,0.515625,0.4482421875,0.400390625,0.3994140625,0.4423828125,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4404296875,0.4404296875,0.4423828125,0.4423828125,0.4423828125,0.44140625,0.439453125,0.44140625,0.45703125,0.48828125,0.525390625,0.5576171875,0.576171875,0.5791015625,0.5869140625,0.6171875,0.650390625,0.658203125,0.6279296875,0.568359375,0.5,0.431640625,0.373046875,0.345703125,0.3583984375,0.396484375,0.4296875,0.439453125,0.44140625,0.44140625,0.4404296875,0.439453125,0.4384765625,0.4384765625,0.439453125,0.4326171875,0.3994140625,0.359375,0.6435546875,0.662109375,0.611328125,0.5263671875,0.4482421875,0.3818359375,0.3505859375,0.3798828125,0.4658203125,0.5712890625,0.6484375,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.4091796875,0.4228515625,0.490234375,0.5791015625,0.646484375,0.66015625,0.6220703125,0.5791015625,0.5712890625,0.5966796875,0.6298828125,0.6455078125,0.6240234375,0.5703125,0.5224609375,0.5322265625,0.59765625,0.6806640625,0.736328125,0.732421875,0.673828125,0.5869140625,0.45703125,0.3203125,0.232421875,0.2197265625,0.263671875,0.3251953125,0.38671875,0.4375,0.4638671875,0.4609375,0.4404296875,0.4248046875,0.4287109375,0.435546875,0.423828125,0.3955078125,0.359375,0.330078125,0.3193359375,0.3251953125,0.3466796875,0.4052734375,0.48046875,0.5341796875,0.5419921875,0.505859375,0.4482421875,0.380859375,0.3095703125,0.271484375,0.2998046875,0.3857421875,0.4892578125,0.5703125,0.6328125,0.6494140625,0.6005859375,0.5009765625,0.39453125,0.3310546875,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.3916015625,0.40234375,0.4814453125,0.587890625,0.6669921875,0.677734375,0.6220703125,0.5595703125,0.5361328125,0.5576171875,0.599609375,0.6298828125,0.62109375,0.5703125,0.49609375,0.3857421875,0.2744140625,0.2099609375,0.2119140625,0.2626953125,0.3251953125,0.40234375,0.5244140625,0.6552734375,0.73828125,0.7451171875,0.693359375,0.6220703125,0.556640625,0.515625,0.5009765625,0.498046875,0.4833984375,0.4423828125,0.376953125,0.3046875,0.24609375,0.23828125,0.2978515625,0.4033203125,0.505859375,0.5703125,0.609375,0.6025390625,0.546875,0.4716796875,0.4150390625,0.408203125,0.4482421875,0.5107421875,0.611328125,0.716796875,0.78125,0.7822265625,0.7353515625,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.6796875,0.7001953125,0.71484375,0.69921875,0.646484375,0.5732421875,0.5,0.427734375,0.3671875,0.337890625,0.349609375,0.3876953125,0.4208984375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.609375,0.611328125,0.5673828125,0.5,0.421875,0.3359375,0.28515625,0.3037109375,0.3857421875,0.48828125,0.5703125,0.6337890625,0.6630859375,0.6494140625,0.611328125,0.5791015625,0.5810546875,0.6220703125,0.6650390625,0.6728515625,0.6318359375,0.5546875,0.4755859375,0.4306640625,0.4287109375,0.43359375,0.4228515625,0.4140625,0.4306640625,0.4794921875,0.548828125,0.6220703125,0.6845703125,0.701171875,0.6484375,0.5400390625,0.419921875,0.3427734375,0.3251953125,0.322265625,0.314453125,0.314453125,0.3388671875,0.3876953125,0.4462890625,0.5,0.5615234375,0.6552734375,0.75,0.7998046875,0.7890625,0.736328125,0.673828125,0.6083984375,0.533203125,0.4638671875,0.416015625,0.3935546875,0.3857421875,0.376953125,0.369140625,0.3671875,0.373046875,0.3818359375,0.3876953125,0.3857421875,0.376953125,0.37890625,0.421875,0.4892578125,0.5419921875,0.552734375,0.5146484375,0.4482421875,0.3779296875,0.3232421875,0.3017578125,0.3173828125,0.353515625,0.37890625,0.376953125,0.380859375,0.439453125,0.541015625,0.6455078125,0.7099609375,0.71484375,0.673828125,0.615234375,0.5361328125,0.44921875,0.37890625,0.3388671875,0.326171875,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.7265625,0.7353515625,0.6767578125,0.5634765625,0.4375,0.3525390625,0.3251953125,0.3193359375,0.330078125,0.359375,0.3955078125,0.423828125,0.435546875,0.4287109375,0.416015625,0.40234375,0.4052734375,0.439453125,0.5,0.56640625,0.6220703125,0.6728515625,0.7099609375,0.69921875,0.625,0.509765625,0.3994140625,0.3251953125,0.263671875,0.2197265625,0.232421875,0.3203125,0.45703125,0.5869140625,0.673828125,0.73046875,0.7236328125,0.64453125,0.52734375,0.4296875,0.3955078125,0.4287109375,0.478515625,0.515625,0.525390625,0.50390625,0.4658203125,0.4365234375,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3837890625,0.37890625,0.3779296875,0.3984375,0.4453125,0.5068359375,0.5703125,0.6201171875,0.623046875,0.5810546875,0.5244140625,0.4921875,0.5087890625,0.5703125,0.6298828125,0.640625,0.6005859375,0.5400390625,0.5,0.509765625,0.5703125,0.6474609375,0.7333984375,0.7880859375,0.779296875,0.7099609375,0.62109375,0.55078125,0.4990234375,0.4833984375,0.509765625,0.5576171875,0.59375,0.591796875,0.55078125,0.4931640625,0.419921875,0.365234375,0.3603515625,0.41015625,0.484375,0.55078125,0.60546875,0.62890625,0.6220703125,0.6025390625,0.595703125,0.619140625,0.673828125,0.7216796875,0.7158203125,0.654296875,0.5703125,0.5087890625,0.5029296875,0.55078125,0.6025390625,0.6142578125,0.583984375,0.537109375,0.5068359375,0.5185546875,0.5703125,0.6240234375,0.6455078125,0.6337890625,0.609375,0.59765625,0.6201171875,0.673828125,0.7158203125,0.68359375,0.5751953125,0.4404296875,0.341796875,0.3232421875,0.376953125,0.453125,0.5283203125,0.568359375,0.5458984375,0.4716796875,0.38671875,0.3251953125,0.275390625,0.2451171875,0.267578125,0.3544921875,0.4814453125,0.5986328125,0.673828125,0.736328125,0.787109375,0.7890625,0.724609375,0.61328125,0.5029296875,0.4287109375,0.3759765625,0.3671875,0.41796875,0.5126953125,0.611328125,0.6689453125,0.673828125,0.65234375,0.59375,0.5185546875,0.46484375,0.45703125,0.4931640625,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4306640625,0.4365234375,0.4443359375,0.4482421875,0.4462890625,0.439453125,0.4287109375,0.4248046875,0.4462890625,0.4990234375,0.568359375,0.630859375,0.666015625,0.673828125,0.6767578125,0.6845703125,0.6845703125,0.66015625,0.611328125,0.552734375,0.5,0.447265625,0.39453125,0.3623046875,0.3603515625,0.384765625,0.4130859375,0.4287109375,0.4375,0.439453125,0.43359375,0.4248046875,0.4189453125,0.419921875,0.4287109375,0.4306640625,0.4052734375,0.369140625,0.6162109375,0.6240234375,0.5634765625,0.4736328125,0.39453125,0.3291015625,0.3037109375,0.34765625,0.4580078125,0.59375,0.6962890625,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.3837890625,0.41015625,0.474609375,0.5546875,0.619140625,0.6455078125,0.634765625,0.6201171875,0.6201171875,0.626953125,0.6259765625,0.6083984375,0.57421875,0.5302734375,0.5009765625,0.53515625,0.626953125,0.7314453125,0.798828125,0.798828125,0.740234375,0.65234375,0.515625,0.361328125,0.2451171875,0.19921875,0.2158203125,0.2587890625,0.3046875,0.34765625,0.3828125,0.408203125,0.4267578125,0.4453125,0.46875,0.486328125,0.46484375,0.4033203125,0.3251953125,0.263671875,0.2421875,0.2587890625,0.2939453125,0.3564453125,0.4248046875,0.46875,0.470703125,0.439453125,0.39453125,0.34375,0.28515625,0.25390625,0.2783203125,0.35546875,0.4501953125,0.5302734375,0.58984375,0.59375,0.52734375,0.4140625,0.3046875,0.25,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.33984375,0.3583984375,0.4521484375,0.5771484375,0.6708984375,0.689453125,0.634765625,0.5693359375,0.5302734375,0.52734375,0.548828125,0.5703125,0.56640625,0.5302734375,0.4736328125,0.380859375,0.2783203125,0.20703125,0.1884765625,0.21484375,0.2587890625,0.3212890625,0.4423828125,0.587890625,0.6982421875,0.7353515625,0.7021484375,0.634765625,0.5693359375,0.525390625,0.5048828125,0.494140625,0.4736328125,0.4296875,0.3642578125,0.2958984375,0.251953125,0.26171875,0.328125,0.421875,0.498046875,0.5302734375,0.54296875,0.529296875,0.48828125,0.4365234375,0.3955078125,0.3818359375,0.39453125,0.4267578125,0.509765625,0.6240234375,0.7265625,0.78125,0.7783203125,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.744140625,0.7568359375,0.7568359375,0.7236328125,0.65625,0.5751953125,0.5,0.4287109375,0.373046875,0.3525390625,0.375,0.421875,0.4599609375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4794921875,0.525390625,0.5849609375,0.6240234375,0.6171875,0.568359375,0.5,0.4208984375,0.330078125,0.2705078125,0.2783203125,0.3515625,0.44921875,0.5302734375,0.599609375,0.6533203125,0.67578125,0.666015625,0.638671875,0.6240234375,0.634765625,0.6455078125,0.6240234375,0.5712890625,0.5078125,0.4619140625,0.4501953125,0.46875,0.48828125,0.486328125,0.474609375,0.4775390625,0.5078125,0.5654296875,0.634765625,0.6962890625,0.703125,0.6318359375,0.501953125,0.365234375,0.27734375,0.2587890625,0.26171875,0.2802734375,0.3193359375,0.375,0.4326171875,0.4755859375,0.5,0.5302734375,0.599609375,0.6904296875,0.7646484375,0.7958984375,0.78125,0.740234375,0.6904296875,0.626953125,0.5546875,0.4853515625,0.4306640625,0.392578125,0.3642578125,0.341796875,0.337890625,0.3525390625,0.375,0.3896484375,0.3857421875,0.3642578125,0.3486328125,0.375,0.4306640625,0.48046875,0.4931640625,0.4599609375,0.39453125,0.3271484375,0.287109375,0.2861328125,0.3203125,0.361328125,0.380859375,0.3642578125,0.349609375,0.38671875,0.48046875,0.5986328125,0.69921875,0.74609375,0.740234375,0.7099609375,0.6376953125,0.52734375,0.408203125,0.314453125,0.267578125,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.7763671875,0.7666015625,0.6875,0.5517578125,0.40625,0.3017578125,0.2587890625,0.2421875,0.263671875,0.3251953125,0.4033203125,0.46484375,0.486328125,0.46875,0.4443359375,0.4345703125,0.4521484375,0.5,0.5595703125,0.609375,0.634765625,0.6513671875,0.6455078125,0.5986328125,0.5107421875,0.404296875,0.314453125,0.2587890625,0.2158203125,0.19921875,0.2451171875,0.361328125,0.515625,0.65234375,0.740234375,0.80078125,0.8095703125,0.748046875,0.6376953125,0.52734375,0.466796875,0.46875,0.4873046875,0.5009765625,0.5048828125,0.4970703125,0.482421875,0.4716796875,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.3876953125,0.400390625,0.408203125,0.421875,0.447265625,0.4853515625,0.5302734375,0.564453125,0.5556640625,0.5107421875,0.4609375,0.4404296875,0.466796875,0.5302734375,0.58984375,0.6005859375,0.560546875,0.4990234375,0.458984375,0.4697265625,0.5302734375,0.607421875,0.6953125,0.7587890625,0.767578125,0.72265625,0.6572265625,0.6044921875,0.5634765625,0.541015625,0.546875,0.57421875,0.6044921875,0.6171875,0.6044921875,0.580078125,0.5400390625,0.501953125,0.4912109375,0.513671875,0.5576171875,0.6044921875,0.6455078125,0.6689453125,0.673828125,0.6708984375,0.67578125,0.69921875,0.740234375,0.7744140625,0.7646484375,0.708984375,0.6357421875,0.580078125,0.5703125,0.6044921875,0.640625,0.638671875,0.5966796875,0.5380859375,0.49609375,0.494140625,0.5302734375,0.572265625,0.6044921875,0.6259765625,0.6435546875,0.6650390625,0.697265625,0.740234375,0.765625,0.7109375,0.58203125,0.43359375,0.3291015625,0.3095703125,0.3642578125,0.43359375,0.484375,0.48828125,0.4384765625,0.3583984375,0.2900390625,0.2587890625,0.2451171875,0.263671875,0.333984375,0.44921875,0.5791015625,0.6826171875,0.740234375,0.7841796875,0.810546875,0.7919921875,0.720703125,0.6181640625,0.525390625,0.46875,0.4345703125,0.4501953125,0.521484375,0.6240234375,0.712890625,0.7529296875,0.740234375,0.705078125,0.642578125,0.57421875,0.5302734375,0.5283203125,0.5595703125,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.47265625,0.48828125,0.5078125,0.5185546875,0.513671875,0.4951171875,0.46875,0.4501953125,0.4638671875,0.5185546875,0.6015625,0.681640625,0.73046875,0.740234375,0.7373046875,0.71875,0.6796875,0.6240234375,0.56640625,0.5234375,0.5,0.4765625,0.443359375,0.4140625,0.40234375,0.4150390625,0.44140625,0.46875,0.4912109375,0.4951171875,0.48046875,0.4580078125,0.443359375,0.447265625,0.46875,0.4853515625,0.466796875,0.4248046875,0.6240234375,0.6162109375,0.5419921875,0.4443359375,0.3642578125,0.296875,0.263671875,0.30078125,0.4111328125,0.556640625,0.677734375,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.2587890625,0.2607421875,0.26953125,0.2900390625,0.31640625,0.3427734375,0.3642578125,0.3857421875,0.41796875,0.4609375,0.5078125,0.55078125,0.5830078125,0.6044921875,0.6240234375,0.63671875,0.62890625,0.5966796875,0.5478515625,0.5009765625,0.46875,0.4599609375,0.5146484375,0.6240234375,0.7373046875,0.8037109375,0.7998046875,0.740234375,0.6552734375,0.529296875,0.388671875,0.28125,0.232421875,0.234375,0.2587890625,0.2841796875,0.310546875,0.341796875,0.3828125,0.4326171875,0.4833984375,0.5302734375,0.5615234375,0.53515625,0.44921875,0.33984375,0.25390625,0.2275390625,0.2587890625,0.3095703125,0.3701171875,0.421875,0.44140625,0.4267578125,0.3935546875,0.3642578125,0.3310546875,0.2822265625,0.248046875,0.2568359375,0.3125,0.3935546875,0.46875,0.52734375,0.5283203125,0.4609375,0.35546875,0.263671875,0.2294921875,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.3095703125,0.328125,0.421875,0.546875,0.640625,0.6591796875,0.6044921875,0.53515625,0.4814453125,0.4580078125,0.4638671875,0.482421875,0.48828125,0.46875,0.4345703125,0.375,0.3037109375,0.248046875,0.2255859375,0.234375,0.2587890625,0.302734375,0.4052734375,0.541015625,0.6513671875,0.6953125,0.669921875,0.6044921875,0.5400390625,0.50390625,0.4970703125,0.501953125,0.4951171875,0.458984375,0.39453125,0.3291015625,0.296875,0.314453125,0.3720703125,0.4384765625,0.4755859375,0.46875,0.451171875,0.435546875,0.4228515625,0.4111328125,0.3974609375,0.3818359375,0.3642578125,0.3583984375,0.4052734375,0.5048828125,0.6240234375,0.716796875,0.75390625,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.744140625,0.7568359375,0.7568359375,0.7236328125,0.65625,0.5751953125,0.5,0.4306640625,0.3818359375,0.375,0.4140625,0.4736328125,0.51953125,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5390625,0.5771484375,0.6240234375,0.646484375,0.6259765625,0.5703125,0.5,0.4189453125,0.3212890625,0.248046875,0.240234375,0.2998046875,0.3896484375,0.46875,0.544921875,0.625,0.6826171875,0.6953125,0.6689453125,0.6298828125,0.6044921875,0.578125,0.529296875,0.474609375,0.4443359375,0.4501953125,0.484375,0.5302734375,0.5654296875,0.56640625,0.5380859375,0.5078125,0.50390625,0.5390625,0.6044921875,0.666015625,0.6767578125,0.61328125,0.4912109375,0.3603515625,0.27734375,0.2587890625,0.267578125,0.3076171875,0.375,0.447265625,0.4970703125,0.5126953125,0.5,0.490234375,0.521484375,0.5908203125,0.673828125,0.736328125,0.7578125,0.740234375,0.712890625,0.677734375,0.6298828125,0.568359375,0.5029296875,0.443359375,0.39453125,0.3564453125,0.349609375,0.375,0.4140625,0.439453125,0.4326171875,0.39453125,0.359375,0.3642578125,0.40234375,0.4443359375,0.4580078125,0.4287109375,0.3642578125,0.3017578125,0.279296875,0.306640625,0.36328125,0.416015625,0.427734375,0.39453125,0.35546875,0.353515625,0.408203125,0.5107421875,0.625,0.70703125,0.740234375,0.7470703125,0.703125,0.5986328125,0.4638671875,0.341796875,0.2724609375,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.7607421875,0.748046875,0.6796875,0.560546875,0.4248046875,0.318359375,0.2587890625,0.2275390625,0.25390625,0.33984375,0.44921875,0.53515625,0.5615234375,0.5302734375,0.490234375,0.4775390625,0.5,0.546875,0.59375,0.615234375,0.6044921875,0.58203125,0.541015625,0.48046875,0.408203125,0.33984375,0.2900390625,0.2587890625,0.234375,0.232421875,0.28125,0.388671875,0.529296875,0.6552734375,0.740234375,0.8076171875,0.845703125,0.826171875,0.748046875,0.64453125,0.5634765625,0.5302734375,0.51171875,0.498046875,0.494140625,0.501953125,0.5166015625,0.52734375,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.4365234375,0.4638671875,0.46875,0.4580078125,0.4462890625,0.4482421875,0.46875,0.484375,0.462890625,0.4140625,0.3720703125,0.3662109375,0.4033203125,0.46875,0.529296875,0.5400390625,0.5,0.4384765625,0.3984375,0.4091796875,0.46875,0.546875,0.634765625,0.7041015625,0.728515625,0.7080078125,0.6669921875,0.634765625,0.6064453125,0.576171875,0.5576171875,0.560546875,0.583984375,0.61328125,0.634765625,0.6494140625,0.6484375,0.6318359375,0.61328125,0.603515625,0.6123046875,0.634765625,0.6591796875,0.67578125,0.6845703125,0.6904296875,0.69921875,0.7158203125,0.740234375,0.759765625,0.7509765625,0.712890625,0.662109375,0.6240234375,0.615234375,0.634765625,0.6533203125,0.63671875,0.5849609375,0.5185546875,0.466796875,0.451171875,0.46875,0.4970703125,0.5341796875,0.580078125,0.62890625,0.6748046875,0.7119140625,0.740234375,0.748046875,0.68359375,0.5576171875,0.4248046875,0.3408203125,0.3359375,0.39453125,0.4580078125,0.4833984375,0.4521484375,0.3779296875,0.2978515625,0.25390625,0.2587890625,0.28515625,0.341796875,0.4326171875,0.541015625,0.6396484375,0.7060546875,0.740234375,0.7646484375,0.7734375,0.7509765625,0.6953125,0.6240234375,0.564453125,0.5302734375,0.515625,0.5478515625,0.6240234375,0.7099609375,0.767578125,0.775390625,0.740234375,0.689453125,0.62890625,0.5771484375,0.5576171875,0.572265625,0.60546875,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5361328125,0.5625,0.5966796875,0.615234375,0.607421875,0.57421875,0.5302734375,0.490234375,0.4833984375,0.521484375,0.5966796875,0.6767578125,0.728515625,0.740234375,0.7314453125,0.69140625,0.6240234375,0.5517578125,0.501953125,0.486328125,0.5,0.5126953125,0.50390625,0.48046875,0.4609375,0.4619140625,0.4873046875,0.5302734375,0.5673828125,0.57421875,0.548828125,0.5107421875,0.4853515625,0.4921875,0.5302734375,0.5634765625,0.55078125,0.4990234375,0.662109375,0.6435546875,0.5615234375,0.458984375,0.376953125,0.3056640625,0.25390625,0.2607421875,0.34375,0.474609375,0.5966796875,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.3193359375,0.296875,0.26953125,0.26171875,0.283203125,0.326171875,0.376953125,0.423828125,0.4521484375,0.462890625,0.4658203125,0.4755859375,0.5048828125,0.55078125,0.599609375,0.6279296875,0.6181640625,0.568359375,0.5009765625,0.44921875,0.4287109375,0.4345703125,0.498046875,0.6044921875,0.7041015625,0.7529296875,0.736328125,0.673828125,0.59375,0.4931640625,0.39453125,0.3291015625,0.306640625,0.3134765625,0.3251953125,0.3330078125,0.3349609375,0.345703125,0.3798828125,0.4375,0.505859375,0.5703125,0.615234375,0.5947265625,0.505859375,0.3896484375,0.30078125,0.2802734375,0.3251953125,0.3876953125,0.4453125,0.4755859375,0.4677734375,0.431640625,0.39453125,0.376953125,0.3583984375,0.3154296875,0.271484375,0.259765625,0.2919921875,0.3564453125,0.4287109375,0.48828125,0.4921875,0.4365234375,0.3525390625,0.2880859375,0.2783203125,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.3212890625,0.33203125,0.4111328125,0.517578125,0.5966796875,0.607421875,0.55078125,0.48046875,0.4189453125,0.3857421875,0.388671875,0.4130859375,0.431640625,0.4287109375,0.4150390625,0.388671875,0.3564453125,0.3291015625,0.3154296875,0.31640625,0.3251953125,0.3505859375,0.427734375,0.533203125,0.619140625,0.6484375,0.6171875,0.55078125,0.4892578125,0.4658203125,0.482421875,0.5166015625,0.533203125,0.509765625,0.4482421875,0.384765625,0.359375,0.3798828125,0.4267578125,0.466796875,0.46875,0.4287109375,0.3857421875,0.37109375,0.388671875,0.41796875,0.4345703125,0.4208984375,0.376953125,0.3359375,0.3408203125,0.4052734375,0.509765625,0.611328125,0.669921875,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.6796875,0.7001953125,0.71484375,0.69921875,0.646484375,0.5732421875,0.5,0.431640625,0.3876953125,0.3896484375,0.439453125,0.5078125,0.55859375,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.578125,0.611328125,0.6494140625,0.6611328125,0.6318359375,0.5712890625,0.5,0.41796875,0.3154296875,0.2333984375,0.21484375,0.265625,0.3505859375,0.4287109375,0.5087890625,0.60546875,0.6845703125,0.7080078125,0.671875,0.607421875,0.55078125,0.4931640625,0.4228515625,0.3720703125,0.3720703125,0.42578125,0.5029296875,0.5703125,0.619140625,0.6201171875,0.57421875,0.5126953125,0.4755859375,0.490234375,0.55078125,0.615234375,0.640625,0.603515625,0.513671875,0.41015625,0.3408203125,0.3251953125,0.3369140625,0.3876953125,0.4638671875,0.5322265625,0.5615234375,0.544921875,0.5,0.455078125,0.4453125,0.482421875,0.5546875,0.62890625,0.671875,0.673828125,0.6669921875,0.6669921875,0.6611328125,0.6318359375,0.5771484375,0.51171875,0.4482421875,0.396484375,0.3876953125,0.421875,0.4736328125,0.5078125,0.4990234375,0.4482421875,0.396484375,0.384765625,0.4111328125,0.44921875,0.4658203125,0.4404296875,0.376953125,0.3173828125,0.3095703125,0.357421875,0.4326171875,0.490234375,0.49609375,0.4482421875,0.38671875,0.3388671875,0.33984375,0.404296875,0.509765625,0.6103515625,0.673828125,0.71484375,0.7099609375,0.6416015625,0.5283203125,0.4130859375,0.3408203125,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.68359375,0.6845703125,0.6552734375,0.5849609375,0.48828125,0.39453125,0.3251953125,0.2802734375,0.30078125,0.3896484375,0.505859375,0.5947265625,0.615234375,0.5703125,0.5166015625,0.5,0.521484375,0.564453125,0.5966796875,0.5927734375,0.55078125,0.498046875,0.439453125,0.38671875,0.353515625,0.3388671875,0.333984375,0.3251953125,0.3134765625,0.306640625,0.3291015625,0.39453125,0.4931640625,0.59375,0.673828125,0.748046875,0.8173828125,0.845703125,0.8095703125,0.7236328125,0.6318359375,0.5703125,0.5205078125,0.4833984375,0.4736328125,0.4951171875,0.533203125,0.5625,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.505859375,0.5419921875,0.5419921875,0.505859375,0.4580078125,0.427734375,0.4287109375,0.4287109375,0.39453125,0.34375,0.30859375,0.314453125,0.3603515625,0.4287109375,0.4892578125,0.5,0.458984375,0.3984375,0.3583984375,0.369140625,0.4287109375,0.5048828125,0.5869140625,0.650390625,0.67578125,0.6630859375,0.6376953125,0.6220703125,0.6044921875,0.5673828125,0.52734375,0.509765625,0.52734375,0.5703125,0.6220703125,0.669921875,0.701171875,0.703125,0.6767578125,0.640625,0.619140625,0.6220703125,0.6318359375,0.6396484375,0.6455078125,0.650390625,0.6552734375,0.6630859375,0.673828125,0.6806640625,0.67578125,0.6591796875,0.63671875,0.619140625,0.6142578125,0.6220703125,0.6259765625,0.6044921875,0.5556640625,0.4951171875,0.4462890625,0.4248046875,0.4287109375,0.443359375,0.474609375,0.5234375,0.5791015625,0.6279296875,0.6591796875,0.673828125,0.66796875,0.6064453125,0.5048828125,0.41015625,0.3662109375,0.384765625,0.4482421875,0.5078125,0.515625,0.4638671875,0.3798828125,0.30859375,0.2890625,0.3251953125,0.3818359375,0.455078125,0.5341796875,0.6005859375,0.642578125,0.662109375,0.673828125,0.6826171875,0.68359375,0.669921875,0.642578125,0.6103515625,0.583984375,0.5703125,0.5712890625,0.611328125,0.6787109375,0.736328125,0.755859375,0.7294921875,0.673828125,0.611328125,0.5537109375,0.5234375,0.53125,0.5673828125,0.6044921875,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.578125,0.6142578125,0.66015625,0.685546875,0.6748046875,0.6298828125,0.5703125,0.5126953125,0.48046875,0.4921875,0.5458984375,0.6142578125,0.662109375,0.673828125,0.662109375,0.611328125,0.53515625,0.466796875,0.4375,0.4541015625,0.5,0.5419921875,0.552734375,0.5322265625,0.5029296875,0.4921875,0.515625,0.5703125,0.62109375,0.6298828125,0.595703125,0.5439453125,0.509765625,0.5185546875,0.5703125,0.6181640625,0.6123046875,0.5546875,0.7080078125,0.6923828125,0.6123046875,0.5107421875,0.4296875,0.353515625,0.2783203125,0.2470703125,0.287109375,0.38671875,0.498046875,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.41015625,0.3720703125,0.3232421875,0.296875,0.3115234375,0.36328125,0.4296875,0.48828125,0.5087890625,0.48828125,0.451171875,0.4306640625,0.4501953125,0.509765625,0.57421875,0.6171875,0.615234375,0.568359375,0.501953125,0.4521484375,0.439453125,0.451171875,0.5087890625,0.5927734375,0.6611328125,0.6796875,0.6455078125,0.5791015625,0.505859375,0.4326171875,0.3828125,0.3701171875,0.388671875,0.412109375,0.419921875,0.4150390625,0.392578125,0.3720703125,0.3779296875,0.4208984375,0.48828125,0.5595703125,0.6142578125,0.6083984375,0.5380859375,0.44140625,0.37109375,0.3642578125,0.419921875,0.48828125,0.5419921875,0.55859375,0.5322265625,0.4814453125,0.4404296875,0.4296875,0.41796875,0.376953125,0.3251953125,0.2978515625,0.314453125,0.369140625,0.439453125,0.4990234375,0.5087890625,0.46484375,0.400390625,0.35546875,0.3623046875,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.3720703125,0.37109375,0.4287109375,0.5107421875,0.568359375,0.5673828125,0.509765625,0.4384765625,0.3779296875,0.3505859375,0.36328125,0.4013671875,0.4326171875,0.439453125,0.4375,0.4326171875,0.4267578125,0.421875,0.4189453125,0.41796875,0.419921875,0.43359375,0.4873046875,0.5615234375,0.6142578125,0.6201171875,0.5771484375,0.509765625,0.44921875,0.4365234375,0.4716796875,0.52734375,0.5625,0.5498046875,0.4892578125,0.427734375,0.4091796875,0.435546875,0.482421875,0.51171875,0.4970703125,0.439453125,0.3828125,0.37109375,0.4072265625,0.4619140625,0.498046875,0.4873046875,0.4296875,0.3671875,0.3359375,0.3583984375,0.4267578125,0.5107421875,0.568359375,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5869140625,0.619140625,0.6552734375,0.6640625,0.6328125,0.5712890625,0.5,0.4306640625,0.3857421875,0.3857421875,0.4326171875,0.4990234375,0.5478515625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.568359375,0.6025390625,0.642578125,0.6572265625,0.6298828125,0.5703125,0.5,0.41796875,0.3173828125,0.2373046875,0.220703125,0.2744140625,0.361328125,0.439453125,0.5205078125,0.62109375,0.701171875,0.7177734375,0.66796875,0.583984375,0.509765625,0.4345703125,0.349609375,0.2958984375,0.30859375,0.3837890625,0.48046875,0.5595703125,0.6162109375,0.6201171875,0.568359375,0.4951171875,0.4453125,0.4501953125,0.509765625,0.5771484375,0.619140625,0.6123046875,0.5576171875,0.484375,0.431640625,0.419921875,0.4306640625,0.48046875,0.5498046875,0.599609375,0.6044921875,0.564453125,0.5,0.435546875,0.3955078125,0.40234375,0.453125,0.521484375,0.5693359375,0.5791015625,0.5849609375,0.6142578125,0.6455078125,0.65234375,0.62109375,0.5595703125,0.4892578125,0.4306640625,0.4208984375,0.4599609375,0.51953125,0.55859375,0.5478515625,0.4892578125,0.4296875,0.4130859375,0.4404296875,0.484375,0.509765625,0.4912109375,0.4296875,0.37109375,0.3662109375,0.4189453125,0.4951171875,0.548828125,0.5458984375,0.4892578125,0.4140625,0.333984375,0.2900390625,0.314453125,0.3994140625,0.5009765625,0.5791015625,0.6416015625,0.6728515625,0.6494140625,0.5791015625,0.4921875,0.4326171875,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5869140625,0.609375,0.6259765625,0.61328125,0.5634765625,0.4921875,0.419921875,0.3642578125,0.37109375,0.44140625,0.5380859375,0.6083984375,0.6142578125,0.5595703125,0.5,0.482421875,0.5087890625,0.5546875,0.5830078125,0.5673828125,0.509765625,0.44140625,0.380859375,0.349609375,0.35546875,0.38671875,0.4140625,0.419921875,0.412109375,0.388671875,0.3701171875,0.3828125,0.4326171875,0.505859375,0.5791015625,0.658203125,0.748046875,0.8076171875,0.80078125,0.73046875,0.63671875,0.5595703125,0.4931640625,0.4423828125,0.4296875,0.458984375,0.509765625,0.5498046875,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.556640625,0.6005859375,0.6005859375,0.5576171875,0.494140625,0.44921875,0.439453125,0.431640625,0.390625,0.337890625,0.306640625,0.318359375,0.3701171875,0.439453125,0.4990234375,0.509765625,0.4697265625,0.4091796875,0.369140625,0.3798828125,0.439453125,0.5126953125,0.58203125,0.625,0.6298828125,0.60546875,0.578125,0.5693359375,0.55859375,0.517578125,0.4658203125,0.4375,0.451171875,0.5029296875,0.5693359375,0.6357421875,0.6845703125,0.6962890625,0.666015625,0.615234375,0.5771484375,0.5693359375,0.5712890625,0.572265625,0.5732421875,0.5751953125,0.576171875,0.5771484375,0.5791015625,0.580078125,0.5791015625,0.576171875,0.572265625,0.5693359375,0.568359375,0.5693359375,0.5673828125,0.5517578125,0.5224609375,0.486328125,0.45703125,0.44140625,0.439453125,0.4443359375,0.4619140625,0.4921875,0.52734375,0.5576171875,0.57421875,0.5791015625,0.568359375,0.517578125,0.4443359375,0.3896484375,0.3818359375,0.421875,0.4892578125,0.5478515625,0.552734375,0.4990234375,0.421875,0.365234375,0.365234375,0.419921875,0.490234375,0.55859375,0.60546875,0.6171875,0.6025390625,0.5830078125,0.5791015625,0.5810546875,0.580078125,0.5771484375,0.572265625,0.56640625,0.5615234375,0.5595703125,0.568359375,0.609375,0.666015625,0.7021484375,0.6943359375,0.646484375,0.5791015625,0.5107421875,0.45703125,0.4404296875,0.466796875,0.517578125,0.55859375,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5693359375,0.609375,0.662109375,0.69140625,0.6787109375,0.6279296875,0.5595703125,0.4912109375,0.4423828125,0.4345703125,0.4697265625,0.5263671875,0.5693359375,0.5791015625,0.568359375,0.5185546875,0.44921875,0.3994140625,0.39453125,0.4345703125,0.5,0.5576171875,0.57421875,0.5478515625,0.5048828125,0.48046875,0.4990234375,0.5595703125,0.6181640625,0.6279296875,0.5888671875,0.529296875,0.490234375,0.5009765625,0.5595703125,0.6162109375,0.6181640625,0.564453125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.7626953125,0.7763671875,0.7216796875,0.6357421875,0.5595703125,0.478515625,0.373046875,0.283203125,0.251953125,0.2900390625,0.3662109375,0.439453125,0.5087890625,0.5751953125,0.6181640625,0.625,0.60546875,0.583984375,0.5791015625,0.5712890625,0.5302734375,0.4775390625,0.4462890625,0.4580078125,0.509765625,0.5791015625,0.6376953125,0.6416015625,0.5888671875,0.5107421875,0.455078125,0.4541015625,0.509765625,0.5771484375,0.6318359375,0.654296875,0.6376953125,0.5986328125,0.56640625,0.5595703125,0.568359375,0.5947265625,0.6201171875,0.615234375,0.572265625,0.5029296875,0.4296875,0.36328125,0.326171875,0.3427734375,0.41015625,0.494140625,0.5546875,0.5693359375,0.55859375,0.5029296875,0.421875,0.357421875,0.33984375,0.375,0.439453125,0.5009765625,0.5244140625,0.5107421875,0.482421875,0.470703125,0.49609375,0.5595703125,0.62890625,0.681640625,0.6962890625,0.66796875,0.6162109375,0.5771484375,0.5693359375,0.5615234375,0.521484375,0.46875,0.4365234375,0.4453125,0.4931640625,0.5595703125,0.6162109375,0.6279296875,0.591796875,0.537109375,0.5009765625,0.51171875,0.5693359375,0.6455078125,0.7353515625,0.798828125,0.798828125,0.7353515625,0.6455078125,0.5693359375,0.5107421875,0.4931640625,0.515625,0.5537109375,0.57421875,0.5517578125,0.4892578125,0.421875,0.3798828125,0.38671875,0.44140625,0.5146484375,0.5673828125,0.5791015625,0.578125,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.55859375,0.5595703125,0.5693359375,0.60546875,0.646484375,0.662109375,0.6376953125,0.5791015625,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.4521484375,0.4462890625,0.49609375,0.5673828125,0.6181640625,0.615234375,0.5595703125,0.5029296875,0.4970703125,0.54296875,0.607421875,0.6494140625,0.638671875,0.5791015625,0.505859375,0.435546875,0.3896484375,0.3828125,0.4052734375,0.431640625,0.439453125,0.4404296875,0.439453125,0.4365234375,0.4326171875,0.4296875,0.4287109375,0.4296875,0.4423828125,0.4931640625,0.5625,0.611328125,0.615234375,0.57421875,0.509765625,0.4404296875,0.3798828125,0.3486328125,0.35546875,0.3896484375,0.4208984375,0.4296875,0.431640625,0.43359375,0.4365234375,0.4384765625,0.439453125,0.439453125,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.43359375,0.349609375,0.2998046875,0.318359375,0.3994140625,0.5,0.5791015625,0.6552734375,0.740234375,0.791015625,0.7734375,0.6923828125,0.5908203125,0.509765625,0.427734375,0.32421875,0.23828125,0.2158203125,0.26171875,0.34375,0.419921875,0.4794921875,0.4970703125,0.47265625,0.4306640625,0.408203125,0.427734375,0.4892578125,0.5615234375,0.625,0.658203125,0.6513671875,0.6181640625,0.5869140625,0.5791015625,0.5869140625,0.6201171875,0.65625,0.6669921875,0.638671875,0.5791015625,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.4326171875,0.4248046875,0.4658203125,0.5244140625,0.5625,0.5498046875,0.4892578125,0.4306640625,0.427734375,0.4833984375,0.564453125,0.623046875,0.6240234375,0.5693359375,0.5107421875,0.494140625,0.5205078125,0.5634765625,0.587890625,0.5693359375,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.4912109375,0.55859375,0.6005859375,0.607421875,0.5869140625,0.564453125,0.5595703125,0.5576171875,0.5419921875,0.5107421875,0.4736328125,0.44140625,0.4228515625,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.498046875,0.470703125,0.4794921875,0.50390625,0.5146484375,0.4892578125,0.4296875,0.375,0.375,0.4326171875,0.5126953125,0.568359375,0.56640625,0.509765625,0.4423828125,0.3984375,0.3984375,0.44140625,0.5048828125,0.5498046875,0.5595703125,0.544921875,0.490234375,0.412109375,0.3525390625,0.3388671875,0.3759765625,0.439453125,0.5166015625,0.607421875,0.673828125,0.67578125,0.611328125,0.5185546875,0.439453125,0.3701171875,0.3173828125,0.3046875,0.3349609375,0.3876953125,0.4296875,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.4521484375,0.5,0.5654296875,0.609375,0.6083984375,0.564453125,0.5,0.423828125,0.333984375,0.271484375,0.2734375,0.33984375,0.431640625,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.5498046875,0.5078125,0.4541015625,0.423828125,0.4375,0.4892578125,0.5595703125,0.6201171875,0.6337890625,0.599609375,0.544921875,0.5087890625,0.5205078125,0.5791015625,0.6435546875,0.6767578125,0.6552734375,0.583984375,0.49609375,0.4345703125,0.419921875,0.408203125,0.3662109375,0.3154296875,0.2880859375,0.3046875,0.359375,0.4296875,0.5,0.5537109375,0.5693359375,0.541015625,0.490234375,0.44921875,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.4306640625,0.4296875,0.4267578125,0.4228515625,0.419921875,0.4189453125,0.419921875,0.4248046875,0.4443359375,0.4765625,0.513671875,0.54296875,0.5576171875,0.5595703125,0.5546875,0.5390625,0.5107421875,0.478515625,0.4501953125,0.4345703125,0.4296875,0.419921875,0.3857421875,0.3466796875,0.3359375,0.3662109375,0.427734375,0.5,0.5615234375,0.583984375,0.564453125,0.525390625,0.5029296875,0.5205078125,0.5791015625,0.6416015625,0.6728515625,0.6513671875,0.58203125,0.498046875,0.44140625,0.4296875,0.431640625,0.43359375,0.4365234375,0.4384765625,0.439453125,0.439453125,0.439453125,0.44921875,0.4873046875,0.5361328125,0.5625,0.5478515625,0.49609375,0.4296875,0.36328125,0.3125,0.2978515625,0.326171875,0.3779296875,0.4189453125,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.427734375,0.46875,0.521484375,0.552734375,0.541015625,0.4892578125,0.419921875,0.349609375,0.296875,0.2822265625,0.3115234375,0.365234375,0.408203125,0.419921875,0.4130859375,0.3837890625,0.3486328125,0.3369140625,0.3642578125,0.421875,0.4892578125,0.544921875,0.5478515625,0.49609375,0.4228515625,0.37109375,0.3740234375,0.4296875,0.486328125,0.494140625,0.4541015625,0.39453125,0.3564453125,0.369140625,0.4296875,0.4912109375,0.5126953125,0.490234375,0.763671875,0.7685546875,0.7158203125,0.6376953125,0.5703125,0.5,0.408203125,0.3271484375,0.294921875,0.318359375,0.3740234375,0.4287109375,0.482421875,0.5439453125,0.599609375,0.638671875,0.6572265625,0.6650390625,0.673828125,0.673828125,0.6396484375,0.587890625,0.552734375,0.55859375,0.60546875,0.673828125,0.7333984375,0.7412109375,0.689453125,0.60546875,0.5341796875,0.5146484375,0.55078125,0.599609375,0.6328125,0.6396484375,0.6181640625,0.5859375,0.56640625,0.5703125,0.5859375,0.611328125,0.6240234375,0.5986328125,0.53515625,0.453125,0.376953125,0.3115234375,0.283203125,0.31640625,0.4072265625,0.5166015625,0.595703125,0.6220703125,0.619140625,0.5673828125,0.48046875,0.3994140625,0.359375,0.375,0.4287109375,0.482421875,0.501953125,0.4912109375,0.47265625,0.4716796875,0.505859375,0.5703125,0.6396484375,0.6923828125,0.708984375,0.6884765625,0.6484375,0.6201171875,0.6220703125,0.623046875,0.5947265625,0.5478515625,0.5078125,0.498046875,0.5234375,0.5703125,0.61328125,0.6279296875,0.6103515625,0.5810546875,0.564453125,0.578125,0.6220703125,0.6787109375,0.7451171875,0.79296875,0.79296875,0.7451171875,0.6787109375,0.6220703125,0.578125,0.5615234375,0.56640625,0.572265625,0.55859375,0.5146484375,0.4482421875,0.3837890625,0.3583984375,0.3955078125,0.4853515625,0.5888671875,0.658203125,0.673828125,0.669921875,0.6513671875,0.6201171875,0.5888671875,0.5673828125,0.5625,0.5703125,0.587890625,0.62890625,0.6728515625,0.689453125,0.666015625,0.6123046875,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.4990234375,0.486328125,0.5166015625,0.5693359375,0.6103515625,0.6103515625,0.5703125,0.533203125,0.5498046875,0.6171875,0.6962890625,0.744140625,0.7333984375,0.673828125,0.5966796875,0.5087890625,0.4326171875,0.39453125,0.39453125,0.4150390625,0.4287109375,0.4365234375,0.431640625,0.4140625,0.3916015625,0.375,0.3701171875,0.376953125,0.3984375,0.45703125,0.53515625,0.5986328125,0.6201171875,0.5986328125,0.55078125,0.49609375,0.431640625,0.3759765625,0.3466796875,0.34765625,0.3642578125,0.376953125,0.388671875,0.40234375,0.416015625,0.4248046875,0.4287109375,0.4296875,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.4853515625,0.419921875,0.390625,0.4228515625,0.5068359375,0.6025390625,0.673828125,0.740234375,0.8115234375,0.849609375,0.8212890625,0.7353515625,0.6328125,0.55078125,0.4677734375,0.3525390625,0.2431640625,0.1875,0.2021484375,0.26171875,0.3251953125,0.3779296875,0.396484375,0.380859375,0.357421875,0.3525390625,0.3837890625,0.4482421875,0.5224609375,0.6025390625,0.666015625,0.6953125,0.6923828125,0.677734375,0.673828125,0.6787109375,0.7001953125,0.71875,0.7119140625,0.673828125,0.61328125,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.408203125,0.4130859375,0.45703125,0.5087890625,0.533203125,0.5107421875,0.4482421875,0.3896484375,0.3876953125,0.451171875,0.548828125,0.6318359375,0.6572265625,0.6220703125,0.5791015625,0.5693359375,0.58984375,0.6181640625,0.62890625,0.60546875,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3896484375,0.4580078125,0.5166015625,0.55078125,0.5615234375,0.5625,0.5703125,0.57421875,0.552734375,0.5,0.4306640625,0.3681640625,0.3330078125,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.5126953125,0.474609375,0.4580078125,0.4541015625,0.4482421875,0.4228515625,0.376953125,0.33984375,0.359375,0.4345703125,0.5283203125,0.59375,0.599609375,0.55078125,0.4931640625,0.45703125,0.45703125,0.4931640625,0.541015625,0.5712890625,0.5703125,0.5498046875,0.4951171875,0.423828125,0.369140625,0.35546875,0.380859375,0.4287109375,0.48828125,0.5673828125,0.6298828125,0.638671875,0.587890625,0.505859375,0.4287109375,0.359375,0.306640625,0.2939453125,0.32421875,0.376953125,0.4189453125,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.4482421875,0.4931640625,0.548828125,0.5849609375,0.583984375,0.548828125,0.5,0.4423828125,0.3759765625,0.33203125,0.341796875,0.40234375,0.4833984375,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.5595703125,0.5185546875,0.46484375,0.4345703125,0.4482421875,0.5,0.5703125,0.6337890625,0.6630859375,0.6533203125,0.625,0.60546875,0.62109375,0.673828125,0.7265625,0.7353515625,0.6767578125,0.5634765625,0.4375,0.3525390625,0.3251953125,0.306640625,0.263671875,0.2197265625,0.2080078125,0.240234375,0.3046875,0.376953125,0.4482421875,0.5068359375,0.5322265625,0.5146484375,0.4736328125,0.4375,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.384765625,0.3798828125,0.3623046875,0.33984375,0.3232421875,0.318359375,0.3251953125,0.3427734375,0.3857421875,0.4501953125,0.5146484375,0.5595703125,0.576171875,0.5703125,0.556640625,0.5322265625,0.4951171875,0.4521484375,0.4150390625,0.390625,0.376953125,0.3603515625,0.3251953125,0.2978515625,0.3037109375,0.3525390625,0.42578125,0.5,0.56640625,0.6103515625,0.6240234375,0.6181640625,0.61328125,0.6298828125,0.673828125,0.71484375,0.7099609375,0.6455078125,0.541015625,0.439453125,0.380859375,0.376953125,0.388671875,0.40234375,0.416015625,0.4248046875,0.4287109375,0.4296875,0.4287109375,0.4345703125,0.4580078125,0.484375,0.4921875,0.4716796875,0.427734375,0.376953125,0.326171875,0.283203125,0.265625,0.283203125,0.3232421875,0.3603515625,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3251953125,0.359375,0.4111328125,0.4462890625,0.4404296875,0.3935546875,0.3251953125,0.2548828125,0.1962890625,0.1748046875,0.201171875,0.255859375,0.3056640625,0.3251953125,0.3310546875,0.32421875,0.3154296875,0.322265625,0.3505859375,0.396484375,0.4482421875,0.48828125,0.4873046875,0.443359375,0.3818359375,0.337890625,0.3369140625,0.376953125,0.4169921875,0.412109375,0.3681640625,0.31640625,0.2919921875,0.314453125,0.376953125,0.4423828125,0.48046875,0.4833984375,0.7294921875,0.708984375,0.650390625,0.58203125,0.5302734375,0.4814453125,0.4306640625,0.39453125,0.3896484375,0.4130859375,0.4462890625,0.46875,0.490234375,0.521484375,0.56640625,0.6181640625,0.669921875,0.7109375,0.740234375,0.755859375,0.7333984375,0.6845703125,0.6435546875,0.63671875,0.673828125,0.740234375,0.8037109375,0.8291015625,0.7978515625,0.7236328125,0.6435546875,0.599609375,0.6044921875,0.6171875,0.607421875,0.57421875,0.53515625,0.509765625,0.5087890625,0.5302734375,0.5615234375,0.6025390625,0.6240234375,0.599609375,0.529296875,0.44140625,0.3642578125,0.296875,0.26171875,0.2900390625,0.3798828125,0.4990234375,0.5927734375,0.634765625,0.650390625,0.623046875,0.5576171875,0.4833984375,0.4345703125,0.4326171875,0.46875,0.5048828125,0.50390625,0.4716796875,0.4384765625,0.431640625,0.46484375,0.5302734375,0.5986328125,0.6484375,0.6650390625,0.6513671875,0.626953125,0.6171875,0.634765625,0.6552734375,0.6513671875,0.6181640625,0.5712890625,0.5322265625,0.517578125,0.5302734375,0.5478515625,0.5634765625,0.576171875,0.587890625,0.6015625,0.6171875,0.634765625,0.65625,0.6806640625,0.6982421875,0.6982421875,0.6806640625,0.65625,0.634765625,0.62109375,0.619140625,0.6162109375,0.5908203125,0.5380859375,0.466796875,0.39453125,0.3330078125,0.322265625,0.3857421875,0.5078125,0.638671875,0.7216796875,0.740234375,0.7314453125,0.6904296875,0.6240234375,0.5576171875,0.515625,0.5087890625,0.5302734375,0.5634765625,0.6181640625,0.673828125,0.701171875,0.6904296875,0.650390625,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.5615234375,0.5302734375,0.51953125,0.5263671875,0.5400390625,0.5439453125,0.5302734375,0.5263671875,0.580078125,0.6767578125,0.7705078125,0.818359375,0.802734375,0.740234375,0.66015625,0.5595703125,0.4658203125,0.4140625,0.412109375,0.439453125,0.46875,0.48828125,0.4794921875,0.44140625,0.3916015625,0.353515625,0.3447265625,0.3642578125,0.3984375,0.45703125,0.5302734375,0.5908203125,0.62109375,0.62109375,0.6044921875,0.5771484375,0.5185546875,0.44140625,0.375,0.33984375,0.341796875,0.3642578125,0.392578125,0.423828125,0.4521484375,0.46875,0.47265625,0.470703125,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.5576171875,0.5146484375,0.501953125,0.5380859375,0.6103515625,0.6865234375,0.740234375,0.791015625,0.849609375,0.880859375,0.8564453125,0.779296875,0.68359375,0.6044921875,0.5205078125,0.3994140625,0.275390625,0.1953125,0.1796875,0.212890625,0.2587890625,0.2958984375,0.3037109375,0.2890625,0.275390625,0.28515625,0.328125,0.39453125,0.47265625,0.56640625,0.6572265625,0.7177734375,0.7421875,0.7421875,0.740234375,0.7431640625,0.7529296875,0.7568359375,0.740234375,0.701171875,0.65234375,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.3857421875,0.4140625,0.4638671875,0.501953125,0.5029296875,0.4619140625,0.39453125,0.3330078125,0.3203125,0.375,0.4775390625,0.5810546875,0.6376953125,0.634765625,0.6220703125,0.630859375,0.654296875,0.673828125,0.6728515625,0.646484375,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3056640625,0.3564453125,0.4052734375,0.447265625,0.478515625,0.50390625,0.5302734375,0.548828125,0.53515625,0.48046875,0.3974609375,0.3173828125,0.2685546875,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.484375,0.4423828125,0.4111328125,0.39453125,0.3876953125,0.3798828125,0.3642578125,0.357421875,0.3994140625,0.4833984375,0.57421875,0.6337890625,0.640625,0.6044921875,0.5625,0.53515625,0.5302734375,0.541015625,0.552734375,0.55078125,0.5302734375,0.5,0.462890625,0.4296875,0.4169921875,0.4267578125,0.4482421875,0.46875,0.498046875,0.552734375,0.6103515625,0.6328125,0.60546875,0.5419921875,0.46875,0.3994140625,0.3466796875,0.333984375,0.3642578125,0.41796875,0.458984375,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.498046875,0.5322265625,0.5576171875,0.5625,0.546875,0.5205078125,0.5,0.4775390625,0.4501953125,0.435546875,0.4521484375,0.498046875,0.5556640625,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.51953125,0.478515625,0.4248046875,0.39453125,0.4072265625,0.4599609375,0.5302734375,0.5986328125,0.6494140625,0.67578125,0.6826171875,0.6845703125,0.701171875,0.740234375,0.7763671875,0.7666015625,0.6875,0.5517578125,0.40625,0.3017578125,0.2587890625,0.2255859375,0.177734375,0.142578125,0.1513671875,0.2080078125,0.2880859375,0.3642578125,0.4365234375,0.5009765625,0.5380859375,0.53515625,0.505859375,0.4765625,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.3837890625,0.375,0.3369140625,0.2861328125,0.248046875,0.2392578125,0.2587890625,0.294921875,0.3623046875,0.447265625,0.5185546875,0.5546875,0.552734375,0.5302734375,0.50390625,0.4794921875,0.4580078125,0.4365234375,0.4140625,0.3896484375,0.3642578125,0.33203125,0.287109375,0.2587890625,0.275390625,0.3388671875,0.4228515625,0.5,0.572265625,0.642578125,0.6953125,0.720703125,0.724609375,0.7255859375,0.740234375,0.74609375,0.69921875,0.5986328125,0.48046875,0.38671875,0.349609375,0.3642578125,0.392578125,0.423828125,0.4521484375,0.46875,0.47265625,0.470703125,0.46875,0.4697265625,0.4677734375,0.4580078125,0.4384765625,0.4111328125,0.384765625,0.3642578125,0.341796875,0.3125,0.2900390625,0.2861328125,0.3056640625,0.3359375,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.2431640625,0.265625,0.314453125,0.35546875,0.3623046875,0.3251953125,0.2587890625,0.185546875,0.1181640625,0.0849609375,0.1044921875,0.162109375,0.2236328125,0.2587890625,0.28515625,0.3095703125,0.3310546875,0.34765625,0.361328125,0.376953125,0.39453125,0.4091796875,0.408203125,0.3916015625,0.3671875,0.349609375,0.3486328125,0.3642578125,0.3720703125,0.3447265625,0.294921875,0.2568359375,0.255859375,0.296875,0.3642578125,0.4345703125,0.4921875,0.521484375,0.662109375,0.619140625,0.556640625,0.501953125,0.46875,0.447265625,0.4462890625,0.4697265625,0.5048828125,0.5341796875,0.54296875,0.5302734375,0.509765625,0.4951171875,0.5048828125,0.5498046875,0.619140625,0.6884765625,0.740234375,0.7744140625,0.765625,0.720703125,0.6708984375,0.650390625,0.6767578125,0.740234375,0.8095703125,0.8603515625,0.8642578125,0.814453125,0.734375,0.666015625,0.634765625,0.6064453125,0.5458984375,0.4716796875,0.4169921875,0.40234375,0.4267578125,0.46875,0.521484375,0.5869140625,0.6328125,0.6240234375,0.560546875,0.47265625,0.39453125,0.3232421875,0.26953125,0.26953125,0.3369140625,0.4453125,0.5458984375,0.6044921875,0.6435546875,0.65234375,0.6240234375,0.57421875,0.5283203125,0.5126953125,0.5302734375,0.5439453125,0.5146484375,0.4521484375,0.39453125,0.375,0.404296875,0.46875,0.5361328125,0.578125,0.587890625,0.57421875,0.5595703125,0.5673828125,0.6044921875,0.6484375,0.67578125,0.66796875,0.62109375,0.5537109375,0.4970703125,0.46875,0.4560546875,0.4697265625,0.5107421875,0.5625,0.603515625,0.6171875,0.6044921875,0.583984375,0.55859375,0.541015625,0.541015625,0.55859375,0.583984375,0.6044921875,0.626953125,0.6533203125,0.6572265625,0.6162109375,0.53515625,0.4423828125,0.3642578125,0.302734375,0.2958984375,0.3671875,0.4970703125,0.6337890625,0.7216796875,0.740234375,0.7275390625,0.66796875,0.57421875,0.4833984375,0.4306640625,0.431640625,0.46875,0.5205078125,0.58984375,0.654296875,0.6904296875,0.6884765625,0.6630859375,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.6025390625,0.552734375,0.49609375,0.4560546875,0.44140625,0.451171875,0.46875,0.50390625,0.5927734375,0.7099609375,0.8037109375,0.8369140625,0.806640625,0.740234375,0.6591796875,0.5546875,0.4609375,0.416015625,0.431640625,0.48046875,0.5302734375,0.564453125,0.5546875,0.4990234375,0.4248046875,0.369140625,0.359375,0.39453125,0.44140625,0.4931640625,0.541015625,0.5771484375,0.6005859375,0.6171875,0.634765625,0.6416015625,0.599609375,0.515625,0.4248046875,0.365234375,0.3583984375,0.39453125,0.44140625,0.4912109375,0.5302734375,0.546875,0.54296875,0.533203125,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.6083984375,0.5859375,0.5849609375,0.61328125,0.6611328125,0.7080078125,0.740234375,0.7734375,0.8212890625,0.8564453125,0.84765625,0.791015625,0.7109375,0.634765625,0.552734375,0.439453125,0.322265625,0.2421875,0.216796875,0.232421875,0.2587890625,0.27734375,0.267578125,0.2421875,0.228515625,0.24609375,0.2958984375,0.3642578125,0.4423828125,0.541015625,0.6376953125,0.70703125,0.7373046875,0.7412109375,0.740234375,0.7412109375,0.744140625,0.740234375,0.7236328125,0.6953125,0.6630859375,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2587890625,0.2607421875,0.26953125,0.2900390625,0.31640625,0.3427734375,0.3642578125,0.392578125,0.4482421875,0.5048828125,0.52734375,0.5,0.4365234375,0.3642578125,0.296875,0.2626953125,0.2890625,0.375,0.486328125,0.5703125,0.6044921875,0.626953125,0.66015625,0.6904296875,0.701171875,0.689453125,0.662109375,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.283203125,0.3017578125,0.3193359375,0.3447265625,0.380859375,0.423828125,0.46875,0.5087890625,0.515625,0.4775390625,0.40234375,0.322265625,0.2705078125,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.439453125,0.3994140625,0.3642578125,0.34765625,0.353515625,0.3740234375,0.39453125,0.421875,0.48046875,0.5576171875,0.6240234375,0.6591796875,0.6572265625,0.634765625,0.611328125,0.5986328125,0.5908203125,0.5771484375,0.5517578125,0.513671875,0.46875,0.4287109375,0.4140625,0.43359375,0.4765625,0.5205078125,0.541015625,0.5302734375,0.521484375,0.548828125,0.599609375,0.6376953125,0.638671875,0.5966796875,0.5302734375,0.4599609375,0.4072265625,0.39453125,0.4248046875,0.478515625,0.51953125,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.5703125,0.5888671875,0.576171875,0.541015625,0.50390625,0.48828125,0.5,0.517578125,0.5322265625,0.546875,0.5634765625,0.583984375,0.6083984375,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.458984375,0.41796875,0.3642578125,0.333984375,0.3466796875,0.3994140625,0.46875,0.5419921875,0.611328125,0.666015625,0.6953125,0.7080078125,0.7177734375,0.740234375,0.7607421875,0.748046875,0.6796875,0.560546875,0.4248046875,0.318359375,0.2587890625,0.2080078125,0.1494140625,0.1181640625,0.142578125,0.2197265625,0.3154296875,0.39453125,0.4677734375,0.5361328125,0.580078125,0.5849609375,0.5615234375,0.537109375,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.4287109375,0.4189453125,0.36328125,0.2900390625,0.234375,0.224609375,0.2587890625,0.314453125,0.3994140625,0.48828125,0.5439453125,0.548828125,0.5146484375,0.46875,0.4296875,0.4140625,0.4228515625,0.44140625,0.4501953125,0.43359375,0.39453125,0.3427734375,0.2802734375,0.2421875,0.2587890625,0.3291015625,0.4208984375,0.5,0.5771484375,0.669921875,0.7509765625,0.7919921875,0.7890625,0.7626953125,0.740234375,0.70703125,0.625,0.5107421875,0.408203125,0.353515625,0.35546875,0.39453125,0.44140625,0.4912109375,0.5302734375,0.546875,0.54296875,0.533203125,0.5302734375,0.5244140625,0.4970703125,0.4521484375,0.408203125,0.3818359375,0.37890625,0.39453125,0.40625,0.3935546875,0.36328125,0.3369140625,0.3310546875,0.3525390625,0.39453125,0.44140625,0.484375,0.4970703125,0.4609375,0.388671875,0.3125,0.2587890625,0.224609375,0.2333984375,0.2783203125,0.328125,0.3486328125,0.322265625,0.2587890625,0.1826171875,0.1044921875,0.056640625,0.068359375,0.1298828125,0.205078125,0.2587890625,0.30859375,0.365234375,0.4111328125,0.427734375,0.4140625,0.38671875,0.3642578125,0.3486328125,0.349609375,0.3671875,0.3916015625,0.408203125,0.4091796875,0.39453125,0.3662109375,0.310546875,0.25390625,0.2314453125,0.2587890625,0.322265625,0.39453125,0.4697265625,0.5458984375,0.5966796875,0.5859375,0.53515625,0.482421875,0.4453125,0.4287109375,0.4296875,0.46875,0.5361328125,0.599609375,0.62890625,0.615234375,0.5703125,0.5146484375,0.4541015625,0.421875,0.4443359375,0.517578125,0.6044921875,0.673828125,0.72265625,0.7265625,0.6845703125,0.6279296875,0.595703125,0.6123046875,0.673828125,0.7490234375,0.8251953125,0.8642578125,0.841796875,0.767578125,0.6826171875,0.6220703125,0.5595703125,0.462890625,0.3642578125,0.3095703125,0.3154296875,0.3671875,0.4287109375,0.4990234375,0.587890625,0.6572265625,0.666015625,0.611328125,0.525390625,0.4482421875,0.3720703125,0.296875,0.2607421875,0.2919921875,0.3798828125,0.4794921875,0.55078125,0.609375,0.6513671875,0.6591796875,0.6337890625,0.59375,0.568359375,0.5703125,0.56640625,0.515625,0.4326171875,0.3603515625,0.3349609375,0.3642578125,0.4287109375,0.4931640625,0.5244140625,0.51953125,0.4951171875,0.48046875,0.4990234375,0.55078125,0.615234375,0.6748046875,0.697265625,0.66015625,0.578125,0.490234375,0.4287109375,0.3896484375,0.396484375,0.4521484375,0.52734375,0.583984375,0.5908203125,0.55078125,0.494140625,0.427734375,0.3798828125,0.3798828125,0.427734375,0.494140625,0.55078125,0.6064453125,0.6640625,0.6884765625,0.6513671875,0.5615234375,0.4580078125,0.376953125,0.314453125,0.2978515625,0.3505859375,0.458984375,0.5791015625,0.65625,0.673828125,0.6591796875,0.59375,0.4931640625,0.4033203125,0.359375,0.375,0.4287109375,0.494140625,0.5693359375,0.630859375,0.66015625,0.6552734375,0.6357421875,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.599609375,0.5390625,0.4560546875,0.388671875,0.3623046875,0.3828125,0.4287109375,0.494140625,0.6025390625,0.720703125,0.7939453125,0.796875,0.744140625,0.673828125,0.5927734375,0.4921875,0.41015625,0.38671875,0.4287109375,0.5029296875,0.5703125,0.6181640625,0.6123046875,0.55078125,0.466796875,0.4052734375,0.3994140625,0.4482421875,0.5048828125,0.541015625,0.552734375,0.5517578125,0.5537109375,0.576171875,0.6220703125,0.6591796875,0.6396484375,0.564453125,0.470703125,0.4052734375,0.3994140625,0.4482421875,0.5107421875,0.5703125,0.6083984375,0.615234375,0.5966796875,0.576171875,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.611328125,0.6044921875,0.60546875,0.619140625,0.640625,0.66015625,0.673828125,0.6923828125,0.7353515625,0.779296875,0.791015625,0.7587890625,0.6943359375,0.6220703125,0.5439453125,0.44921875,0.3623046875,0.3095703125,0.298828125,0.3125,0.3251953125,0.3271484375,0.298828125,0.2587890625,0.23828125,0.2548828125,0.3076171875,0.376953125,0.4541015625,0.5419921875,0.6220703125,0.669921875,0.6826171875,0.6767578125,0.673828125,0.673828125,0.673828125,0.669921875,0.66015625,0.646484375,0.6328125,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.3193359375,0.296875,0.26953125,0.26171875,0.283203125,0.326171875,0.376953125,0.4365234375,0.515625,0.5791015625,0.587890625,0.5361328125,0.4541015625,0.376953125,0.3046875,0.2431640625,0.2314453125,0.2861328125,0.3876953125,0.4873046875,0.55078125,0.603515625,0.6552734375,0.6884765625,0.6904296875,0.666015625,0.6376953125,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.330078125,0.314453125,0.29296875,0.2900390625,0.3173828125,0.3681640625,0.4287109375,0.486328125,0.5185546875,0.5068359375,0.453125,0.384765625,0.3369140625,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.412109375,0.376953125,0.341796875,0.3291015625,0.3505859375,0.396484375,0.4482421875,0.5029296875,0.5673828125,0.623046875,0.65234375,0.6513671875,0.634765625,0.6220703125,0.615234375,0.6201171875,0.62109375,0.6005859375,0.5537109375,0.4921875,0.4287109375,0.3798828125,0.3818359375,0.439453125,0.5244140625,0.591796875,0.607421875,0.5703125,0.5302734375,0.53515625,0.5791015625,0.630859375,0.6552734375,0.6328125,0.5703125,0.5,0.4482421875,0.4345703125,0.46484375,0.5185546875,0.5595703125,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.62109375,0.6279296875,0.5849609375,0.51953125,0.466796875,0.4599609375,0.5,0.55078125,0.5966796875,0.6259765625,0.6318359375,0.623046875,0.6162109375,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.4189453125,0.376953125,0.32421875,0.2939453125,0.306640625,0.359375,0.4287109375,0.5029296875,0.5791015625,0.638671875,0.6689453125,0.671875,0.66796875,0.673828125,0.68359375,0.6845703125,0.6552734375,0.5849609375,0.48828125,0.39453125,0.3251953125,0.2587890625,0.1875,0.1494140625,0.177734375,0.263671875,0.3662109375,0.4482421875,0.5205078125,0.587890625,0.6279296875,0.6298828125,0.6044921875,0.5771484375,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.49609375,0.490234375,0.4287109375,0.3447265625,0.283203125,0.27734375,0.3251953125,0.396484375,0.4892578125,0.5693359375,0.5966796875,0.5625,0.4951171875,0.4287109375,0.3779296875,0.37109375,0.41015625,0.466796875,0.505859375,0.4990234375,0.4482421875,0.37890625,0.298828125,0.24609375,0.2548828125,0.3251953125,0.419921875,0.5,0.580078125,0.68359375,0.7734375,0.810546875,0.787109375,0.728515625,0.673828125,0.6103515625,0.509765625,0.404296875,0.33984375,0.3388671875,0.38671875,0.4482421875,0.5107421875,0.5703125,0.6083984375,0.615234375,0.5966796875,0.576171875,0.5703125,0.560546875,0.515625,0.4501953125,0.396484375,0.37890625,0.4013671875,0.4482421875,0.4892578125,0.490234375,0.4541015625,0.40625,0.3798828125,0.3955078125,0.4482421875,0.513671875,0.5791015625,0.6083984375,0.576171875,0.4921875,0.396484375,0.3251953125,0.2763671875,0.2724609375,0.314453125,0.37109375,0.4033203125,0.38671875,0.3251953125,0.2470703125,0.1591796875,0.1005859375,0.1044921875,0.169921875,0.255859375,0.3251953125,0.3935546875,0.474609375,0.53515625,0.544921875,0.5009765625,0.4345703125,0.376953125,0.3369140625,0.337890625,0.3818359375,0.443359375,0.4873046875,0.48828125,0.4482421875,0.388671875,0.3095703125,0.24609375,0.2373046875,0.2890625,0.37109375,0.4482421875,0.5263671875,0.6142578125,0.6767578125,0.52734375,0.4931640625,0.462890625,0.4443359375,0.439453125,0.4501953125,0.50390625,0.5810546875,0.6416015625,0.6572265625,0.623046875,0.5595703125,0.4833984375,0.3955078125,0.3349609375,0.33984375,0.408203125,0.5009765625,0.5791015625,0.6376953125,0.646484375,0.6064453125,0.546875,0.5078125,0.51953125,0.5791015625,0.658203125,0.7490234375,0.8115234375,0.8076171875,0.7392578125,0.646484375,0.5693359375,0.490234375,0.3837890625,0.2900390625,0.2548828125,0.2900390625,0.365234375,0.439453125,0.5185546875,0.6181640625,0.6953125,0.708984375,0.6552734375,0.568359375,0.4892578125,0.41015625,0.3193359375,0.2587890625,0.2646484375,0.3359375,0.4306640625,0.509765625,0.578125,0.634765625,0.6572265625,0.640625,0.599609375,0.56640625,0.5595703125,0.5478515625,0.4931640625,0.4130859375,0.3505859375,0.3359375,0.373046875,0.439453125,0.5009765625,0.521484375,0.498046875,0.45703125,0.431640625,0.44921875,0.509765625,0.5859375,0.66796875,0.716796875,0.697265625,0.6171875,0.517578125,0.439453125,0.384765625,0.3828125,0.4365234375,0.5126953125,0.56640625,0.564453125,0.509765625,0.43359375,0.34375,0.2802734375,0.2802734375,0.34375,0.43359375,0.509765625,0.583984375,0.666015625,0.71484375,0.6943359375,0.6123046875,0.5107421875,0.4296875,0.36328125,0.3291015625,0.349609375,0.4189453125,0.505859375,0.5654296875,0.5791015625,0.56640625,0.5087890625,0.4248046875,0.3583984375,0.3408203125,0.375,0.439453125,0.5107421875,0.5791015625,0.6220703125,0.626953125,0.603515625,0.5771484375,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.5546875,0.498046875,0.41796875,0.35546875,0.3408203125,0.3759765625,0.439453125,0.51953125,0.6279296875,0.7255859375,0.763671875,0.73046875,0.6552734375,0.5791015625,0.4990234375,0.4033203125,0.333984375,0.3291015625,0.3916015625,0.4814453125,0.5595703125,0.6162109375,0.6181640625,0.5634765625,0.4853515625,0.4306640625,0.4326171875,0.4892578125,0.5498046875,0.5712890625,0.55078125,0.513671875,0.4921875,0.5107421875,0.5693359375,0.6240234375,0.6240234375,0.56640625,0.486328125,0.4306640625,0.4326171875,0.4892578125,0.5595703125,0.619140625,0.6474609375,0.63671875,0.599609375,0.5673828125,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.5673828125,0.56640625,0.5673828125,0.5703125,0.57421875,0.5771484375,0.5791015625,0.5908203125,0.6328125,0.68359375,0.7109375,0.6943359375,0.6396484375,0.5693359375,0.49609375,0.423828125,0.3759765625,0.3662109375,0.38671875,0.412109375,0.419921875,0.412109375,0.3720703125,0.3212890625,0.29296875,0.3076171875,0.3603515625,0.4296875,0.5029296875,0.5732421875,0.6201171875,0.62890625,0.609375,0.5859375,0.5791015625,0.5791015625,0.5791015625,0.578125,0.576171875,0.5732421875,0.5712890625,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.41015625,0.3720703125,0.3232421875,0.296875,0.3115234375,0.36328125,0.4296875,0.505859375,0.59765625,0.6640625,0.6650390625,0.6015625,0.5087890625,0.4296875,0.3525390625,0.26953125,0.2236328125,0.24609375,0.330078125,0.4306640625,0.509765625,0.5771484375,0.6357421875,0.6630859375,0.650390625,0.6123046875,0.5791015625,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.412109375,0.375,0.3271484375,0.302734375,0.318359375,0.37109375,0.439453125,0.5078125,0.556640625,0.564453125,0.529296875,0.47265625,0.4296875,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.4296875,0.39453125,0.3544921875,0.33984375,0.3642578125,0.421875,0.4892578125,0.55859375,0.619140625,0.650390625,0.6435546875,0.609375,0.578125,0.5693359375,0.57421875,0.5986328125,0.62109375,0.6171875,0.576171875,0.5107421875,0.439453125,0.3837890625,0.38671875,0.451171875,0.5419921875,0.6083984375,0.61328125,0.5595703125,0.5029296875,0.494140625,0.53515625,0.5947265625,0.6318359375,0.619140625,0.5595703125,0.4892578125,0.4375,0.423828125,0.4541015625,0.5078125,0.5498046875,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6162109375,0.62109375,0.5693359375,0.4951171875,0.4423828125,0.4443359375,0.5,0.5673828125,0.625,0.65234375,0.640625,0.60546875,0.5751953125,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.4296875,0.3876953125,0.3349609375,0.3046875,0.3173828125,0.3701171875,0.439453125,0.5126953125,0.5810546875,0.6240234375,0.6298828125,0.607421875,0.583984375,0.5791015625,0.5869140625,0.609375,0.6259765625,0.61328125,0.5634765625,0.4921875,0.419921875,0.34375,0.2587890625,0.2080078125,0.2255859375,0.306640625,0.408203125,0.4892578125,0.560546875,0.6220703125,0.650390625,0.638671875,0.6005859375,0.5673828125,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.5458984375,0.5478515625,0.4931640625,0.416015625,0.361328125,0.36328125,0.419921875,0.498046875,0.5927734375,0.662109375,0.6669921875,0.6064453125,0.517578125,0.439453125,0.3828125,0.3779296875,0.4287109375,0.5009765625,0.55078125,0.546875,0.4892578125,0.412109375,0.3203125,0.255859375,0.2578125,0.3251953125,0.419921875,0.5,0.5810546875,0.6826171875,0.7646484375,0.7841796875,0.736328125,0.654296875,0.5791015625,0.5009765625,0.3994140625,0.314453125,0.2900390625,0.333984375,0.4140625,0.4892578125,0.5595703125,0.619140625,0.6474609375,0.63671875,0.599609375,0.5673828125,0.5595703125,0.5478515625,0.5,0.43359375,0.3857421875,0.3828125,0.4248046875,0.4892578125,0.5458984375,0.5556640625,0.515625,0.45703125,0.419921875,0.4306640625,0.4892578125,0.5654296875,0.6494140625,0.69921875,0.6806640625,0.599609375,0.4990234375,0.419921875,0.361328125,0.3525390625,0.392578125,0.4521484375,0.4912109375,0.4794921875,0.419921875,0.33984375,0.2470703125,0.181640625,0.1826171875,0.2490234375,0.341796875,0.419921875,0.498046875,0.58984375,0.65625,0.658203125,0.595703125,0.505859375,0.4296875,0.3740234375,0.37109375,0.4228515625,0.49609375,0.5478515625,0.544921875,0.4892578125,0.4130859375,0.3212890625,0.2548828125,0.25390625,0.318359375,0.41015625,0.4892578125,0.5693359375,0.662109375,0.728515625,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.4765625,0.5126953125,0.5419921875,0.5576171875,0.5595703125,0.564453125,0.5869140625,0.607421875,0.6005859375,0.55859375,0.4912109375,0.419921875,0.341796875,0.25,0.185546875,0.1875,0.255859375,0.349609375,0.4296875,0.490234375,0.5029296875,0.4658203125,0.4091796875,0.37109375,0.380859375,0.439453125,0.517578125,0.609375,0.6748046875,0.6748046875,0.609375,0.517578125,0.439453125,0.3642578125,0.287109375,0.25,0.283203125,0.3779296875,0.486328125,0.5693359375,0.6474609375,0.7333984375,0.78515625,0.7685546875,0.689453125,0.5888671875,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5556640625,0.59765625,0.59375,0.544921875,0.4775390625,0.4296875,0.419921875,0.4150390625,0.3935546875,0.3740234375,0.380859375,0.423828125,0.490234375,0.5595703125,0.615234375,0.6181640625,0.5673828125,0.49609375,0.4462890625,0.4521484375,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.51953125,0.501953125,0.5263671875,0.568359375,0.5908203125,0.5712890625,0.509765625,0.4296875,0.3369140625,0.271484375,0.2724609375,0.3388671875,0.431640625,0.509765625,0.5888671875,0.6865234375,0.763671875,0.779296875,0.7275390625,0.64453125,0.5693359375,0.5,0.4326171875,0.3896484375,0.3837890625,0.40625,0.431640625,0.439453125,0.4345703125,0.408203125,0.3818359375,0.3818359375,0.4208984375,0.4873046875,0.5595703125,0.6259765625,0.6640625,0.650390625,0.5888671875,0.5087890625,0.4521484375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4326171875,0.408203125,0.3857421875,0.392578125,0.4365234375,0.505859375,0.5791015625,0.6552734375,0.7275390625,0.755859375,0.712890625,0.611328125,0.5,0.419921875,0.34375,0.255859375,0.1953125,0.2001953125,0.2685546875,0.361328125,0.439453125,0.5,0.5185546875,0.4951171875,0.4541015625,0.4306640625,0.44921875,0.509765625,0.5654296875,0.5654296875,0.5078125,0.4267578125,0.369140625,0.37109375,0.4296875,0.4912109375,0.5107421875,0.4853515625,0.443359375,0.4189453125,0.4384765625,0.5,0.568359375,0.61328125,0.61328125,0.56640625,0.5,0.451171875,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.44140625,0.484375,0.5390625,0.5703125,0.55859375,0.5078125,0.439453125,0.375,0.3408203125,0.3583984375,0.4248046875,0.5087890625,0.56640625,0.5791015625,0.5693359375,0.5283203125,0.4755859375,0.443359375,0.4541015625,0.5029296875,0.5693359375,0.6318359375,0.6640625,0.64453125,0.578125,0.49609375,0.4404296875,0.4296875,0.4306640625,0.4296875,0.4267578125,0.4228515625,0.419921875,0.4189453125,0.419921875,0.42578125,0.447265625,0.484375,0.5263671875,0.560546875,0.5771484375,0.5791015625,0.5673828125,0.5244140625,0.470703125,0.44140625,0.4560546875,0.5087890625,0.5791015625,0.658203125,0.7490234375,0.8095703125,0.8037109375,0.7333984375,0.6376953125,0.5595703125,0.4794921875,0.3779296875,0.2958984375,0.27734375,0.3271484375,0.412109375,0.4892578125,0.5576171875,0.6015625,0.599609375,0.55078125,0.4814453125,0.431640625,0.419921875,0.4228515625,0.4384765625,0.46875,0.5048828125,0.5361328125,0.5546875,0.5595703125,0.5517578125,0.5126953125,0.4619140625,0.4326171875,0.4443359375,0.4931640625,0.5595703125,0.6259765625,0.6748046875,0.685546875,0.65625,0.60546875,0.5673828125,0.5595703125,0.5615234375,0.5634765625,0.564453125,0.564453125,0.5634765625,0.5615234375,0.5595703125,0.546875,0.4990234375,0.43359375,0.3896484375,0.390625,0.4345703125,0.5,0.564453125,0.60546875,0.6015625,0.552734375,0.4833984375,0.4326171875,0.419921875,0.431640625,0.4892578125,0.5732421875,0.640625,0.66015625,0.6259765625,0.5595703125,0.4970703125,0.4716796875,0.4853515625,0.513671875,0.52734375,0.501953125,0.439453125,0.37890625,0.3642578125,0.3974609375,0.451171875,0.4873046875,0.4765625,0.419921875,0.353515625,0.306640625,0.2978515625,0.33203125,0.3876953125,0.4296875,0.439453125,0.4296875,0.38671875,0.330078125,0.294921875,0.3037109375,0.3525390625,0.419921875,0.48046875,0.5,0.4775390625,0.4375,0.4130859375,0.4306640625,0.4892578125,0.5546875,0.5947265625,0.5908203125,0.54296875,0.4765625,0.4296875,0.419921875,0.4248046875,0.44140625,0.4716796875,0.5068359375,0.537109375,0.5546875,0.5595703125,0.5517578125,0.5146484375,0.466796875,0.4423828125,0.4580078125,0.5107421875,0.5791015625,0.64453125,0.677734375,0.6591796875,0.5908203125,0.5048828125,0.4443359375,0.4296875,0.44140625,0.4990234375,0.583984375,0.654296875,0.67578125,0.6435546875,0.5791015625,0.5,0.3994140625,0.318359375,0.2998046875,0.349609375,0.43359375,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5517578125,0.57421875,0.5556640625,0.51953125,0.4990234375,0.5185546875,0.5791015625,0.6572265625,0.7470703125,0.8095703125,0.8046875,0.734375,0.6396484375,0.5595703125,0.498046875,0.48046875,0.5068359375,0.5517578125,0.5791015625,0.560546875,0.5,0.419921875,0.328125,0.263671875,0.265625,0.3310546875,0.4228515625,0.5,0.57421875,0.658203125,0.708984375,0.6943359375,0.6171875,0.5185546875,0.439453125,0.3623046875,0.2763671875,0.220703125,0.2333984375,0.3095703125,0.4091796875,0.4892578125,0.5576171875,0.6015625,0.6005859375,0.5537109375,0.4873046875,0.439453125,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.568359375,0.578125,0.5390625,0.4794921875,0.4404296875,0.451171875,0.509765625,0.5888671875,0.689453125,0.7685546875,0.78515625,0.7333984375,0.6474609375,0.5693359375,0.509765625,0.4990234375,0.5390625,0.599609375,0.6396484375,0.62890625,0.5693359375,0.4892578125,0.3935546875,0.3251953125,0.322265625,0.38671875,0.4794921875,0.5595703125,0.6396484375,0.734375,0.8037109375,0.806640625,0.7421875,0.6484375,0.5693359375,0.5068359375,0.484375,0.5048828125,0.54296875,0.5654296875,0.5478515625,0.4892578125,0.4130859375,0.32421875,0.259765625,0.259765625,0.32421875,0.4130859375,0.4892578125,0.56640625,0.6591796875,0.7275390625,0.443359375,0.50390625,0.552734375,0.57421875,0.5703125,0.5625,0.5615234375,0.55078125,0.5166015625,0.4580078125,0.3896484375,0.3251953125,0.2568359375,0.1767578125,0.1240234375,0.1328125,0.203125,0.2978515625,0.376953125,0.439453125,0.462890625,0.44140625,0.3994140625,0.369140625,0.3779296875,0.4287109375,0.4970703125,0.578125,0.634765625,0.634765625,0.578125,0.4970703125,0.4287109375,0.3642578125,0.30078125,0.279296875,0.3251953125,0.427734375,0.5390625,0.6220703125,0.6982421875,0.7783203125,0.8212890625,0.7978515625,0.7177734375,0.6220703125,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.5029296875,0.52734375,0.50390625,0.4404296875,0.3701171875,0.3271484375,0.3251953125,0.333984375,0.341796875,0.3603515625,0.3994140625,0.455078125,0.5166015625,0.5703125,0.6103515625,0.6103515625,0.5693359375,0.5166015625,0.486328125,0.4990234375,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.62109375,0.6025390625,0.6181640625,0.6416015625,0.646484375,0.615234375,0.55078125,0.47265625,0.384765625,0.326171875,0.330078125,0.39453125,0.4814453125,0.55078125,0.619140625,0.7021484375,0.767578125,0.7822265625,0.7421875,0.677734375,0.6220703125,0.56640625,0.5,0.439453125,0.4052734375,0.40234375,0.416015625,0.4287109375,0.4326171875,0.4150390625,0.3955078125,0.3974609375,0.4345703125,0.498046875,0.5703125,0.63671875,0.671875,0.6533203125,0.5859375,0.5009765625,0.4423828125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4248046875,0.4130859375,0.4140625,0.4482421875,0.515625,0.59765625,0.673828125,0.7421875,0.7822265625,0.755859375,0.6552734375,0.5146484375,0.3935546875,0.3251953125,0.26953125,0.2099609375,0.177734375,0.2001953125,0.2724609375,0.359375,0.4287109375,0.4833984375,0.5068359375,0.5,0.48046875,0.4736328125,0.4970703125,0.55078125,0.5966796875,0.5791015625,0.498046875,0.3955078125,0.32421875,0.3203125,0.376953125,0.4404296875,0.4658203125,0.4521484375,0.423828125,0.4111328125,0.4365234375,0.5,0.5673828125,0.611328125,0.609375,0.5595703125,0.4912109375,0.4404296875,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.3974609375,0.4462890625,0.505859375,0.541015625,0.533203125,0.4892578125,0.4287109375,0.375,0.359375,0.4033203125,0.4931640625,0.59375,0.6591796875,0.673828125,0.6650390625,0.62890625,0.580078125,0.544921875,0.5419921875,0.5732421875,0.6220703125,0.6640625,0.666015625,0.61328125,0.5224609375,0.431640625,0.3798828125,0.376953125,0.384765625,0.3798828125,0.3623046875,0.33984375,0.3232421875,0.318359375,0.3251953125,0.345703125,0.4013671875,0.48828125,0.580078125,0.6484375,0.6767578125,0.673828125,0.6533203125,0.6044921875,0.548828125,0.5224609375,0.5439453125,0.6025390625,0.673828125,0.7490234375,0.8251953125,0.8603515625,0.8291015625,0.7412109375,0.6416015625,0.5703125,0.4970703125,0.396484375,0.3037109375,0.267578125,0.298828125,0.3720703125,0.4482421875,0.5146484375,0.552734375,0.5380859375,0.4755859375,0.39453125,0.3388671875,0.3251953125,0.330078125,0.353515625,0.400390625,0.4609375,0.5166015625,0.5546875,0.5703125,0.5732421875,0.55078125,0.5146484375,0.4892578125,0.490234375,0.521484375,0.5703125,0.6181640625,0.6494140625,0.6513671875,0.625,0.5888671875,0.5673828125,0.5703125,0.58203125,0.5947265625,0.6044921875,0.6044921875,0.5947265625,0.58203125,0.5703125,0.55078125,0.505859375,0.4501953125,0.4140625,0.4150390625,0.4501953125,0.5,0.546875,0.568359375,0.546875,0.484375,0.4052734375,0.3466796875,0.3251953125,0.3310546875,0.39453125,0.5009765625,0.6005859375,0.6494140625,0.6328125,0.5703125,0.5068359375,0.4794921875,0.48828125,0.5107421875,0.51953125,0.4921875,0.4287109375,0.3642578125,0.328125,0.330078125,0.3544921875,0.3759765625,0.3671875,0.3251953125,0.2783203125,0.25390625,0.267578125,0.31640625,0.376953125,0.419921875,0.4287109375,0.41796875,0.3701171875,0.30078125,0.248046875,0.236328125,0.2685546875,0.3251953125,0.380859375,0.4111328125,0.412109375,0.396484375,0.3876953125,0.404296875,0.4482421875,0.4931640625,0.509765625,0.484375,0.42578125,0.3623046875,0.3251953125,0.3251953125,0.33984375,0.37109375,0.419921875,0.4755859375,0.5244140625,0.5556640625,0.5703125,0.57421875,0.55859375,0.5380859375,0.53515625,0.5615234375,0.6123046875,0.673828125,0.7275390625,0.7421875,0.6953125,0.595703125,0.482421875,0.4033203125,0.376953125,0.3828125,0.4462890625,0.556640625,0.6650390625,0.7275390625,0.724609375,0.673828125,0.6025390625,0.5068359375,0.4228515625,0.390625,0.419921875,0.4853515625,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.5146484375,0.55859375,0.576171875,0.580078125,0.587890625,0.6181640625,0.673828125,0.740234375,0.814453125,0.8564453125,0.8330078125,0.7509765625,0.650390625,0.5703125,0.5087890625,0.4892578125,0.513671875,0.5556640625,0.580078125,0.560546875,0.5,0.4228515625,0.3408203125,0.2890625,0.2978515625,0.361328125,0.4404296875,0.5,0.5556640625,0.6201171875,0.66015625,0.6455078125,0.580078125,0.4970703125,0.4287109375,0.359375,0.275390625,0.21484375,0.2158203125,0.2783203125,0.369140625,0.4482421875,0.5146484375,0.552734375,0.5419921875,0.4892578125,0.421875,0.37890625,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.6025390625,0.611328125,0.5771484375,0.525390625,0.4912109375,0.5,0.55078125,0.6220703125,0.7177734375,0.7978515625,0.8212890625,0.7783203125,0.6982421875,0.6220703125,0.5615234375,0.55078125,0.591796875,0.65234375,0.6923828125,0.681640625,0.6220703125,0.541015625,0.4404296875,0.3623046875,0.3486328125,0.4033203125,0.4912109375,0.5703125,0.6513671875,0.7509765625,0.830078125,0.8427734375,0.7880859375,0.7001953125,0.6220703125,0.5546875,0.5107421875,0.4970703125,0.5029296875,0.5078125,0.4912109375,0.4482421875,0.3916015625,0.32421875,0.27734375,0.27734375,0.32421875,0.3916015625,0.4482421875,0.5087890625,0.59375,0.66796875,0.4140625,0.48046875,0.5322265625,0.5478515625,0.5302734375,0.50390625,0.478515625,0.447265625,0.4052734375,0.3564453125,0.3056640625,0.2587890625,0.20703125,0.1455078125,0.1064453125,0.123046875,0.1943359375,0.28515625,0.3642578125,0.4296875,0.46875,0.4716796875,0.4501953125,0.4287109375,0.4326171875,0.46875,0.51953125,0.5791015625,0.62109375,0.62109375,0.5791015625,0.51953125,0.46875,0.4189453125,0.3642578125,0.33984375,0.3720703125,0.4560546875,0.5546875,0.634765625,0.7099609375,0.78515625,0.826171875,0.806640625,0.73828125,0.6591796875,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.431640625,0.4326171875,0.3916015625,0.3251953125,0.2666015625,0.2431640625,0.2587890625,0.2880859375,0.3291015625,0.380859375,0.4326171875,0.4775390625,0.5087890625,0.5302734375,0.5439453125,0.5400390625,0.5263671875,0.51953125,0.5302734375,0.5615234375,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.703125,0.6953125,0.7099609375,0.7236328125,0.7138671875,0.6708984375,0.6044921875,0.5283203125,0.4501953125,0.40234375,0.4140625,0.4755859375,0.55078125,0.6044921875,0.65234375,0.7001953125,0.7294921875,0.7255859375,0.6953125,0.6591796875,0.634765625,0.609375,0.5595703125,0.5,0.4521484375,0.4345703125,0.4443359375,0.46875,0.486328125,0.4716796875,0.4365234375,0.4111328125,0.41796875,0.4619140625,0.5302734375,0.5986328125,0.6435546875,0.642578125,0.5966796875,0.529296875,0.48046875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4658203125,0.45703125,0.4638671875,0.5048828125,0.5791015625,0.6640625,0.740234375,0.8017578125,0.806640625,0.7265625,0.5771484375,0.412109375,0.298828125,0.2587890625,0.2392578125,0.224609375,0.234375,0.2783203125,0.34765625,0.41796875,0.46875,0.509765625,0.533203125,0.5380859375,0.53515625,0.5400390625,0.5634765625,0.6044921875,0.6328125,0.595703125,0.4970703125,0.3837890625,0.3095703125,0.306640625,0.3642578125,0.4267578125,0.4541015625,0.4443359375,0.4189453125,0.4091796875,0.4365234375,0.5,0.568359375,0.6171875,0.6240234375,0.5849609375,0.525390625,0.4794921875,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.3984375,0.45703125,0.5185546875,0.5546875,0.5498046875,0.5146484375,0.46875,0.431640625,0.4306640625,0.4833984375,0.57421875,0.66796875,0.7275390625,0.740234375,0.7353515625,0.7109375,0.673828125,0.6376953125,0.6181640625,0.619140625,0.634765625,0.6435546875,0.609375,0.5322265625,0.44140625,0.3720703125,0.34765625,0.3642578125,0.3837890625,0.375,0.3369140625,0.2861328125,0.248046875,0.2392578125,0.2587890625,0.2998046875,0.392578125,0.5244140625,0.6513671875,0.734375,0.7578125,0.740234375,0.7041015625,0.6435546875,0.5849609375,0.56640625,0.5986328125,0.6669921875,0.740234375,0.8115234375,0.8642578125,0.8642578125,0.7978515625,0.689453125,0.5888671875,0.5302734375,0.47265625,0.380859375,0.2890625,0.2421875,0.2587890625,0.3212890625,0.39453125,0.4609375,0.4970703125,0.48046875,0.4140625,0.330078125,0.2724609375,0.2587890625,0.26171875,0.279296875,0.3203125,0.3798828125,0.4453125,0.498046875,0.5302734375,0.552734375,0.5615234375,0.5517578125,0.533203125,0.5166015625,0.5146484375,0.5302734375,0.544921875,0.54296875,0.52734375,0.5078125,0.4990234375,0.5068359375,0.5302734375,0.5595703125,0.59375,0.6181640625,0.6181640625,0.59375,0.5595703125,0.5302734375,0.5009765625,0.466796875,0.44140625,0.4365234375,0.4521484375,0.478515625,0.5,0.515625,0.515625,0.4853515625,0.4248046875,0.3525390625,0.29296875,0.2587890625,0.25,0.3046875,0.4140625,0.52734375,0.59375,0.58984375,0.5302734375,0.46875,0.4501953125,0.4775390625,0.521484375,0.548828125,0.5302734375,0.46875,0.3974609375,0.330078125,0.2841796875,0.2666015625,0.26953125,0.2724609375,0.2587890625,0.2451171875,0.2568359375,0.30078125,0.3642578125,0.4248046875,0.4619140625,0.46875,0.4580078125,0.40625,0.3251953125,0.2509765625,0.2119140625,0.2197265625,0.2587890625,0.3037109375,0.341796875,0.3662109375,0.375,0.375,0.37890625,0.39453125,0.40625,0.3876953125,0.341796875,0.287109375,0.2470703125,0.2392578125,0.2587890625,0.287109375,0.32421875,0.3701171875,0.4189453125,0.46484375,0.501953125,0.5302734375,0.5537109375,0.572265625,0.5908203125,0.6162109375,0.6513671875,0.6943359375,0.740234375,0.779296875,0.7822265625,0.7255859375,0.619140625,0.49609375,0.404296875,0.3642578125,0.353515625,0.40625,0.5185546875,0.6484375,0.744140625,0.771484375,0.740234375,0.6865234375,0.6103515625,0.5380859375,0.501953125,0.5146484375,0.5576171875,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.4658203125,0.5341796875,0.5908203125,0.6328125,0.6640625,0.6982421875,0.740234375,0.7890625,0.8388671875,0.853515625,0.8095703125,0.71484375,0.6103515625,0.5302734375,0.4697265625,0.455078125,0.48828125,0.541015625,0.57421875,0.5595703125,0.5,0.4267578125,0.36328125,0.3359375,0.3583984375,0.416015625,0.470703125,0.5,0.5234375,0.560546875,0.5908203125,0.59375,0.564453125,0.5166015625,0.46875,0.4130859375,0.3291015625,0.2509765625,0.2197265625,0.25,0.3203125,0.39453125,0.4599609375,0.4931640625,0.48046875,0.4306640625,0.375,0.3486328125,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.642578125,0.6494140625,0.6240234375,0.5849609375,0.5595703125,0.56640625,0.6044921875,0.6591796875,0.73828125,0.806640625,0.826171875,0.78515625,0.7099609375,0.634765625,0.5751953125,0.564453125,0.6044921875,0.6650390625,0.705078125,0.6943359375,0.634765625,0.552734375,0.4462890625,0.35546875,0.328125,0.37109375,0.4521484375,0.5302734375,0.6123046875,0.71875,0.8095703125,0.8369140625,0.7939453125,0.7119140625,0.634765625,0.5625,0.4912109375,0.4384765625,0.4140625,0.41015625,0.408203125,0.39453125,0.373046875,0.3486328125,0.3310546875,0.3310546875,0.3486328125,0.373046875,0.39453125,0.4248046875,0.4931640625,0.57421875,0.40234375,0.4609375,0.5029296875,0.5048828125,0.46875,0.423828125,0.380859375,0.3447265625,0.3193359375,0.3017578125,0.283203125,0.2587890625,0.2265625,0.181640625,0.154296875,0.1708984375,0.2333984375,0.3173828125,0.39453125,0.4638671875,0.517578125,0.541015625,0.53515625,0.5166015625,0.5107421875,0.5302734375,0.5595703125,0.59375,0.6181640625,0.6181640625,0.59375,0.5595703125,0.5302734375,0.49609375,0.4443359375,0.40234375,0.4033203125,0.4521484375,0.529296875,0.6044921875,0.6787109375,0.75,0.7900390625,0.7783203125,0.7275390625,0.669921875,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.380859375,0.361328125,0.30859375,0.2509765625,0.2158203125,0.220703125,0.2587890625,0.310546875,0.3798828125,0.44921875,0.494140625,0.50390625,0.4892578125,0.46875,0.451171875,0.44140625,0.4560546875,0.49609375,0.552734375,0.6025390625,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7216796875,0.7314453125,0.7568359375,0.7705078125,0.7529296875,0.703125,0.634765625,0.5615234375,0.494140625,0.4609375,0.48046875,0.5380859375,0.599609375,0.634765625,0.6572265625,0.662109375,0.6455078125,0.619140625,0.595703125,0.5908203125,0.6044921875,0.615234375,0.59375,0.546875,0.4990234375,0.4775390625,0.490234375,0.5302734375,0.5625,0.546875,0.48828125,0.4228515625,0.388671875,0.4072265625,0.46875,0.5400390625,0.6005859375,0.626953125,0.6123046875,0.572265625,0.5380859375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5244140625,0.5087890625,0.501953125,0.52734375,0.587890625,0.6650390625,0.740234375,0.7958984375,0.779296875,0.6708984375,0.5048828125,0.34765625,0.26171875,0.2587890625,0.2802734375,0.3115234375,0.35546875,0.408203125,0.458984375,0.5009765625,0.5302734375,0.5546875,0.5712890625,0.580078125,0.5849609375,0.59375,0.6103515625,0.634765625,0.6455078125,0.59375,0.4912109375,0.3857421875,0.326171875,0.333984375,0.39453125,0.45703125,0.48046875,0.4638671875,0.4306640625,0.4140625,0.4375,0.5,0.5703125,0.6259765625,0.646484375,0.6240234375,0.5771484375,0.5390625,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.4453125,0.509765625,0.568359375,0.5966796875,0.587890625,0.55859375,0.5302734375,0.5087890625,0.515625,0.5576171875,0.6240234375,0.6904296875,0.7314453125,0.740234375,0.7392578125,0.734375,0.7177734375,0.6904296875,0.65625,0.6259765625,0.6044921875,0.5751953125,0.5087890625,0.4248046875,0.3583984375,0.333984375,0.3525390625,0.39453125,0.4287109375,0.4189453125,0.36328125,0.2900390625,0.234375,0.224609375,0.2587890625,0.3203125,0.4384765625,0.587890625,0.71484375,0.7802734375,0.779296875,0.740234375,0.685546875,0.611328125,0.5498046875,0.5380859375,0.5849609375,0.6640625,0.740234375,0.8076171875,0.841796875,0.814453125,0.7236328125,0.60546875,0.5107421875,0.46875,0.4306640625,0.357421875,0.275390625,0.228515625,0.23828125,0.29296875,0.3642578125,0.431640625,0.470703125,0.4609375,0.40234375,0.326171875,0.271484375,0.2587890625,0.2578125,0.2568359375,0.26953125,0.306640625,0.361328125,0.419921875,0.46875,0.515625,0.5595703125,0.5830078125,0.5712890625,0.5341796875,0.494140625,0.46875,0.4443359375,0.404296875,0.3671875,0.35546875,0.3779296875,0.4228515625,0.46875,0.51953125,0.5791015625,0.62109375,0.62109375,0.5791015625,0.51953125,0.46875,0.4287109375,0.41015625,0.4228515625,0.4580078125,0.4951171875,0.5107421875,0.5,0.4814453125,0.46484375,0.44140625,0.4052734375,0.357421875,0.3056640625,0.2587890625,0.2294921875,0.263671875,0.35546875,0.4609375,0.5283203125,0.52734375,0.46875,0.4111328125,0.4072265625,0.4609375,0.5380859375,0.591796875,0.587890625,0.5302734375,0.451171875,0.3544921875,0.2666015625,0.2177734375,0.2138671875,0.2373046875,0.2587890625,0.283203125,0.330078125,0.39453125,0.4580078125,0.50390625,0.5263671875,0.5302734375,0.51953125,0.4716796875,0.3916015625,0.30859375,0.2529296875,0.2392578125,0.2587890625,0.2900390625,0.3330078125,0.375,0.3994140625,0.400390625,0.3837890625,0.3642578125,0.3369140625,0.2841796875,0.2236328125,0.1845703125,0.18359375,0.21484375,0.2587890625,0.3017578125,0.333984375,0.35546875,0.373046875,0.39453125,0.4267578125,0.46875,0.515625,0.56640625,0.6162109375,0.6572265625,0.6884765625,0.71484375,0.740234375,0.763671875,0.767578125,0.7294921875,0.6455078125,0.541015625,0.4501953125,0.39453125,0.3623046875,0.3857421875,0.474609375,0.5966796875,0.7021484375,0.7509765625,0.740234375,0.7080078125,0.6611328125,0.61328125,0.5849609375,0.5859375,0.6083984375,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.4384765625,0.521484375,0.599609375,0.6572265625,0.6923828125,0.7158203125,0.740234375,0.76953125,0.7978515625,0.794921875,0.7431640625,0.6494140625,0.548828125,0.46875,0.41015625,0.4033203125,0.4501953125,0.5185546875,0.5654296875,0.55859375,0.5,0.4326171875,0.390625,0.3916015625,0.4306640625,0.48046875,0.5078125,0.5,0.4853515625,0.490234375,0.513671875,0.541015625,0.556640625,0.5517578125,0.5302734375,0.490234375,0.4091796875,0.3134765625,0.2509765625,0.2470703125,0.294921875,0.3642578125,0.4287109375,0.4580078125,0.4443359375,0.40234375,0.3642578125,0.359375,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.6572265625,0.6611328125,0.646484375,0.6240234375,0.609375,0.61328125,0.634765625,0.669921875,0.7275390625,0.7783203125,0.7900390625,0.75,0.6787109375,0.6044921875,0.544921875,0.5341796875,0.57421875,0.634765625,0.6748046875,0.6640625,0.6044921875,0.521484375,0.4111328125,0.314453125,0.2783203125,0.314453125,0.392578125,0.46875,0.5517578125,0.6630859375,0.759765625,0.794921875,0.7587890625,0.681640625,0.6044921875,0.5263671875,0.43359375,0.3525390625,0.3115234375,0.314453125,0.3408203125,0.3642578125,0.384765625,0.41015625,0.427734375,0.427734375,0.41015625,0.384765625,0.3642578125,0.3583984375,0.4033203125,0.4833984375,0.4150390625,0.4619140625,0.4921875,0.48046875,0.4287109375,0.3681640625,0.3173828125,0.2900390625,0.29296875,0.314453125,0.330078125,0.3251953125,0.30859375,0.2744140625,0.24609375,0.251953125,0.30078125,0.3740234375,0.4482421875,0.5185546875,0.580078125,0.61328125,0.6103515625,0.5859375,0.5673828125,0.5703125,0.58203125,0.5947265625,0.6044921875,0.6044921875,0.5947265625,0.58203125,0.5703125,0.5498046875,0.498046875,0.4384765625,0.4072265625,0.423828125,0.48046875,0.55078125,0.6240234375,0.69140625,0.7275390625,0.720703125,0.6806640625,0.6396484375,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3779296875,0.34375,0.2880859375,0.244140625,0.236328125,0.2685546875,0.3251953125,0.39453125,0.4814453125,0.5546875,0.5771484375,0.544921875,0.484375,0.4287109375,0.3828125,0.3623046875,0.388671875,0.4560546875,0.5390625,0.599609375,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.671875,0.7001953125,0.740234375,0.7607421875,0.744140625,0.69140625,0.6220703125,0.55078125,0.4921875,0.470703125,0.4970703125,0.552734375,0.6015625,0.6220703125,0.623046875,0.5927734375,0.541015625,0.49609375,0.482421875,0.5048828125,0.55078125,0.5927734375,0.5966796875,0.564453125,0.521484375,0.4990234375,0.5166015625,0.5703125,0.6162109375,0.6025390625,0.529296875,0.435546875,0.37109375,0.37109375,0.4287109375,0.501953125,0.5712890625,0.6162109375,0.623046875,0.6015625,0.5771484375,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5625,0.533203125,0.5029296875,0.5,0.5361328125,0.6015625,0.673828125,0.7275390625,0.708984375,0.6064453125,0.462890625,0.3408203125,0.2939453125,0.3251953125,0.3798828125,0.4404296875,0.4970703125,0.53515625,0.5537109375,0.5615234375,0.5703125,0.580078125,0.587890625,0.59375,0.5986328125,0.6044921875,0.6123046875,0.6220703125,0.6181640625,0.5625,0.47265625,0.3916015625,0.3583984375,0.3837890625,0.4482421875,0.5087890625,0.525390625,0.4970703125,0.4501953125,0.421875,0.4384765625,0.5,0.5712890625,0.6318359375,0.6611328125,0.6494140625,0.611328125,0.578125,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.51171875,0.5771484375,0.6240234375,0.634765625,0.6142578125,0.5859375,0.5703125,0.5625,0.5673828125,0.5888671875,0.6201171875,0.6513671875,0.669921875,0.673828125,0.677734375,0.6923828125,0.703125,0.6923828125,0.6552734375,0.603515625,0.55078125,0.490234375,0.4052734375,0.3271484375,0.294921875,0.3212890625,0.3837890625,0.4482421875,0.49609375,0.490234375,0.4287109375,0.3447265625,0.283203125,0.27734375,0.3251953125,0.40234375,0.5244140625,0.6591796875,0.7509765625,0.771484375,0.7333984375,0.673828125,0.603515625,0.517578125,0.4521484375,0.4482421875,0.5068359375,0.5947265625,0.673828125,0.7392578125,0.767578125,0.734375,0.6435546875,0.5341796875,0.455078125,0.4287109375,0.408203125,0.3525390625,0.28515625,0.24609375,0.2548828125,0.3076171875,0.376953125,0.4462890625,0.4921875,0.494140625,0.4501953125,0.384765625,0.3369140625,0.3251953125,0.3193359375,0.296875,0.2734375,0.275390625,0.3095703125,0.3671875,0.4287109375,0.49609375,0.5703125,0.619140625,0.615234375,0.5595703125,0.4873046875,0.4287109375,0.37109375,0.2978515625,0.2431640625,0.23828125,0.2880859375,0.3623046875,0.4287109375,0.4970703125,0.578125,0.634765625,0.634765625,0.578125,0.4970703125,0.4287109375,0.3779296875,0.37109375,0.4140625,0.4794921875,0.5322265625,0.5390625,0.5,0.4541015625,0.431640625,0.4287109375,0.4306640625,0.4189453125,0.3818359375,0.3251953125,0.2783203125,0.2880859375,0.3525390625,0.4365234375,0.4921875,0.48828125,0.4287109375,0.3720703125,0.37890625,0.4501953125,0.548828125,0.6201171875,0.626953125,0.5703125,0.4873046875,0.3759765625,0.26953125,0.2138671875,0.22265625,0.271484375,0.3251953125,0.380859375,0.4482421875,0.51171875,0.5546875,0.5712890625,0.5712890625,0.5703125,0.5625,0.52734375,0.46484375,0.3955078125,0.34375,0.3212890625,0.3251953125,0.34375,0.3876953125,0.4384765625,0.4697265625,0.4638671875,0.4267578125,0.376953125,0.318359375,0.2392578125,0.171875,0.154296875,0.1923828125,0.259765625,0.3251953125,0.37890625,0.4013671875,0.3896484375,0.365234375,0.353515625,0.375,0.4287109375,0.4931640625,0.5615234375,0.619140625,0.6533203125,0.6640625,0.666015625,0.673828125,0.6865234375,0.7021484375,0.7001953125,0.662109375,0.5927734375,0.5146484375,0.4482421875,0.39453125,0.3837890625,0.4296875,0.5205078125,0.6142578125,0.669921875,0.673828125,0.66015625,0.640625,0.619140625,0.60546875,0.6044921875,0.611328125,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.4521484375,0.53515625,0.6064453125,0.650390625,0.6640625,0.666015625,0.673828125,0.6875,0.70703125,0.7080078125,0.669921875,0.59375,0.505859375,0.4287109375,0.37109375,0.369140625,0.4248046875,0.50390625,0.5595703125,0.5576171875,0.5,0.4365234375,0.4140625,0.4384765625,0.490234375,0.5341796875,0.5390625,0.5,0.453125,0.4306640625,0.4443359375,0.4892578125,0.541015625,0.5712890625,0.5703125,0.5458984375,0.47265625,0.3740234375,0.2978515625,0.275390625,0.310546875,0.376953125,0.4404296875,0.4658203125,0.44921875,0.4111328125,0.384765625,0.396484375,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.6298828125,0.6318359375,0.6259765625,0.6171875,0.611328125,0.61328125,0.6220703125,0.6396484375,0.6806640625,0.720703125,0.7275390625,0.69140625,0.6240234375,0.55078125,0.4912109375,0.48046875,0.5205078125,0.5810546875,0.6220703125,0.611328125,0.55078125,0.46875,0.359375,0.265625,0.2333984375,0.2724609375,0.3525390625,0.4287109375,0.51171875,0.6201171875,0.71484375,0.7470703125,0.70703125,0.6279296875,0.55078125,0.470703125,0.3671875,0.27734375,0.240234375,0.263671875,0.322265625,0.376953125,0.43359375,0.5009765625,0.5478515625,0.5478515625,0.5009765625,0.43359375,0.376953125,0.3408203125,0.359375,0.4306640625,0.44140625,0.4873046875,0.515625,0.4990234375,0.439453125,0.37109375,0.318359375,0.302734375,0.3271484375,0.375,0.412109375,0.419921875,0.41015625,0.375,0.3369140625,0.326171875,0.3564453125,0.41796875,0.4892578125,0.560546875,0.62109375,0.6484375,0.6357421875,0.59765625,0.56640625,0.5595703125,0.5615234375,0.5634765625,0.564453125,0.564453125,0.5634765625,0.5615234375,0.5595703125,0.546875,0.498046875,0.4326171875,0.3896484375,0.3935546875,0.4404296875,0.509765625,0.5810546875,0.6416015625,0.6689453125,0.6552734375,0.615234375,0.5791015625,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.421875,0.380859375,0.326171875,0.2939453125,0.302734375,0.3525390625,0.419921875,0.498046875,0.5908203125,0.6591796875,0.6640625,0.603515625,0.515625,0.439453125,0.3759765625,0.3408203125,0.35546875,0.41796875,0.498046875,0.5546875,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5869140625,0.626953125,0.677734375,0.7060546875,0.69140625,0.638671875,0.5693359375,0.4990234375,0.4462890625,0.431640625,0.4609375,0.5146484375,0.5576171875,0.5693359375,0.5595703125,0.5146484375,0.4501953125,0.404296875,0.4033203125,0.4443359375,0.509765625,0.5673828125,0.5830078125,0.5546875,0.5087890625,0.482421875,0.5,0.5595703125,0.6142578125,0.609375,0.54296875,0.451171875,0.3857421875,0.3828125,0.439453125,0.5126953125,0.5791015625,0.619140625,0.6201171875,0.59375,0.56640625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5498046875,0.5107421875,0.4619140625,0.4365234375,0.4541015625,0.5087890625,0.5791015625,0.6357421875,0.62890625,0.5556640625,0.4541015625,0.3779296875,0.3671875,0.419921875,0.4892578125,0.5556640625,0.59765625,0.60546875,0.5859375,0.5634765625,0.5595703125,0.560546875,0.5625,0.5634765625,0.564453125,0.56640625,0.5673828125,0.5693359375,0.55859375,0.5087890625,0.4375,0.3857421875,0.3798828125,0.421875,0.4892578125,0.5498046875,0.5615234375,0.5234375,0.4658203125,0.427734375,0.439453125,0.5,0.5703125,0.6298828125,0.6572265625,0.642578125,0.6025390625,0.568359375,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.5595703125,0.6201171875,0.650390625,0.6396484375,0.6025390625,0.5693359375,0.5595703125,0.55859375,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.578125,0.5791015625,0.5869140625,0.6181640625,0.6533203125,0.6640625,0.6357421875,0.5771484375,0.509765625,0.4326171875,0.33984375,0.2705078125,0.2646484375,0.32421875,0.412109375,0.4892578125,0.5458984375,0.5478515625,0.4931640625,0.416015625,0.361328125,0.36328125,0.419921875,0.5009765625,0.6123046875,0.7138671875,0.755859375,0.7255859375,0.6533203125,0.5791015625,0.5009765625,0.408203125,0.341796875,0.3408203125,0.40625,0.5,0.5791015625,0.646484375,0.6826171875,0.666015625,0.599609375,0.5146484375,0.4541015625,0.439453125,0.427734375,0.3837890625,0.328125,0.2958984375,0.3076171875,0.3603515625,0.4296875,0.4990234375,0.55078125,0.5615234375,0.5283203125,0.47265625,0.4296875,0.419921875,0.41015625,0.3720703125,0.32421875,0.2998046875,0.3173828125,0.37109375,0.439453125,0.517578125,0.6083984375,0.671875,0.671875,0.6064453125,0.515625,0.439453125,0.36328125,0.2724609375,0.2080078125,0.20703125,0.271484375,0.3623046875,0.439453125,0.517578125,0.609375,0.6748046875,0.6748046875,0.609375,0.517578125,0.439453125,0.3828125,0.3779296875,0.4296875,0.50390625,0.556640625,0.5546875,0.5,0.4404296875,0.421875,0.443359375,0.4814453125,0.5009765625,0.48046875,0.419921875,0.3623046875,0.35546875,0.400390625,0.46484375,0.5087890625,0.4990234375,0.439453125,0.3828125,0.38671875,0.453125,0.5458984375,0.6123046875,0.6162109375,0.5595703125,0.4765625,0.3671875,0.2724609375,0.2373046875,0.271484375,0.3466796875,0.419921875,0.4892578125,0.556640625,0.6005859375,0.6083984375,0.5888671875,0.5654296875,0.5595703125,0.5556640625,0.5380859375,0.505859375,0.4677734375,0.4375,0.421875,0.419921875,0.4306640625,0.4736328125,0.5263671875,0.5576171875,0.5458984375,0.49609375,0.4296875,0.353515625,0.26171875,0.1943359375,0.19140625,0.2529296875,0.3427734375,0.419921875,0.478515625,0.4912109375,0.45703125,0.40234375,0.3681640625,0.380859375,0.439453125,0.5107421875,0.578125,0.62109375,0.626953125,0.6064453125,0.583984375,0.5791015625,0.5888671875,0.619140625,0.65234375,0.6572265625,0.623046875,0.5595703125,0.4892578125,0.423828125,0.384765625,0.392578125,0.4462890625,0.5185546875,0.5693359375,0.5791015625,0.5771484375,0.57421875,0.5703125,0.5673828125,0.56640625,0.5673828125,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.5029296875,0.572265625,0.6181640625,0.6259765625,0.6064453125,0.583984375,0.5791015625,0.587890625,0.61328125,0.6357421875,0.62890625,0.5830078125,0.5126953125,0.439453125,0.380859375,0.3779296875,0.431640625,0.5078125,0.5615234375,0.5576171875,0.5,0.439453125,0.4267578125,0.4638671875,0.5234375,0.564453125,0.5556640625,0.5,0.4345703125,0.392578125,0.39453125,0.4404296875,0.50390625,0.5498046875,0.5595703125,0.544921875,0.486328125,0.4033203125,0.33984375,0.3251953125,0.3623046875,0.4296875,0.4912109375,0.509765625,0.484375,0.4404296875,0.4130859375,0.4296875,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5703125,0.5712890625,0.5703125,0.568359375,0.5673828125,0.568359375,0.5693359375,0.5791015625,0.615234375,0.6552734375,0.6689453125,0.6416015625,0.5810546875,0.509765625,0.44921875,0.439453125,0.4794921875,0.5400390625,0.580078125,0.5693359375,0.509765625,0.427734375,0.3251953125,0.2431640625,0.224609375,0.2763671875,0.361328125,0.439453125,0.521484375,0.6240234375,0.7060546875,0.724609375,0.6728515625,0.587890625,0.509765625,0.4287109375,0.326171875,0.244140625,0.224609375,0.2734375,0.35546875,0.4296875,0.505859375,0.595703125,0.6591796875,0.6591796875,0.595703125,0.505859375,0.4296875,0.375,0.375,0.431640625,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.4990234375,0.57421875,0.626953125,0.625,0.5693359375,0.5029296875,0.4521484375,0.4384765625,0.4658203125,0.5146484375,0.5517578125,0.5595703125,0.546875,0.498046875,0.4326171875,0.3896484375,0.3935546875,0.4404296875,0.509765625,0.5771484375,0.62109375,0.6181640625,0.5673828125,0.49609375,0.443359375,0.4296875,0.4287109375,0.4296875,0.4326171875,0.4365234375,0.439453125,0.4404296875,0.439453125,0.4296875,0.3935546875,0.3525390625,0.3369140625,0.361328125,0.419921875,0.4892578125,0.556640625,0.6015625,0.603515625,0.560546875,0.4970703125,0.4501953125,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.5693359375,0.5283203125,0.4765625,0.447265625,0.4599609375,0.5107421875,0.5791015625,0.6572265625,0.7490234375,0.814453125,0.814453125,0.7490234375,0.6572265625,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.431640625,0.4755859375,0.533203125,0.5673828125,0.5576171875,0.5078125,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.4228515625,0.3896484375,0.349609375,0.3349609375,0.3603515625,0.4189453125,0.4892578125,0.5478515625,0.5517578125,0.498046875,0.421875,0.3681640625,0.37109375,0.4296875,0.4921875,0.5185546875,0.5078125,0.4814453125,0.4697265625,0.49609375,0.5595703125,0.6259765625,0.6630859375,0.6484375,0.5859375,0.505859375,0.451171875,0.439453125,0.44140625,0.4404296875,0.4375,0.4326171875,0.4267578125,0.421875,0.419921875,0.4091796875,0.3701171875,0.32421875,0.30078125,0.3193359375,0.3720703125,0.439453125,0.4990234375,0.5234375,0.509765625,0.4833984375,0.4716796875,0.498046875,0.5595703125,0.6240234375,0.6572265625,0.6376953125,0.5703125,0.4873046875,0.4306640625,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.568359375,0.578125,0.5380859375,0.4765625,0.4345703125,0.443359375,0.5,0.564453125,0.6064453125,0.6044921875,0.55859375,0.4951171875,0.44921875,0.439453125,0.4443359375,0.462890625,0.494140625,0.5302734375,0.560546875,0.576171875,0.5791015625,0.5673828125,0.5146484375,0.44140625,0.38671875,0.3798828125,0.421875,0.4892578125,0.55859375,0.60546875,0.609375,0.56640625,0.5009765625,0.4521484375,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.5693359375,0.5888671875,0.564453125,0.5244140625,0.5,0.51953125,0.5791015625,0.654296875,0.728515625,0.7626953125,0.7255859375,0.6298828125,0.5205078125,0.439453125,0.3623046875,0.26953125,0.205078125,0.205078125,0.26953125,0.3623046875,0.439453125,0.5107421875,0.5771484375,0.6181640625,0.62109375,0.595703125,0.568359375,0.5595703125,0.5478515625,0.505859375,0.455078125,0.427734375,0.4443359375,0.4990234375,0.5693359375,0.638671875,0.6904296875,0.701171875,0.66796875,0.6123046875,0.5693359375,0.5595703125,0.5498046875,0.5078125,0.4541015625,0.423828125,0.4375,0.4892578125,0.5595703125,0.638671875,0.73046875,0.794921875,0.7939453125,0.7275390625,0.6357421875,0.5595703125,0.4833984375,0.3935546875,0.330078125,0.330078125,0.3935546875,0.4833984375,0.5595703125,0.6357421875,0.7275390625,0.7939453125,0.794921875,0.73046875,0.638671875,0.5595703125,0.498046875,0.48046875,0.5078125,0.5546875,0.583984375,0.568359375,0.509765625,0.4521484375,0.4482421875,0.498046875,0.5703125,0.62109375,0.6162109375,0.5595703125,0.501953125,0.494140625,0.5390625,0.6044921875,0.6484375,0.638671875,0.5791015625,0.515625,0.4833984375,0.4853515625,0.5029296875,0.5078125,0.48046875,0.419921875,0.3466796875,0.2734375,0.2392578125,0.275390625,0.3701171875,0.478515625,0.5595703125,0.6240234375,0.6591796875,0.642578125,0.5771484375,0.4931640625,0.4345703125,0.419921875,0.421875,0.4404296875,0.4755859375,0.5185546875,0.5546875,0.5751953125,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.490234375,0.3984375,0.3349609375,0.337890625,0.4072265625,0.5009765625,0.5791015625,0.63671875,0.6455078125,0.6025390625,0.5400390625,0.4990234375,0.509765625,0.5693359375,0.6357421875,0.669921875,0.6513671875,0.5830078125,0.4990234375,0.44140625,0.4296875,0.443359375,0.494140625,0.5634765625,0.611328125,0.61328125,0.568359375,0.5,0.427734375,0.3662109375,0.3349609375,0.34375,0.3798828125,0.412109375,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.4287109375,0.4287109375,0.4306640625,0.43359375,0.4375,0.439453125,0.439453125,0.43359375,0.4091796875,0.388671875,0.3955078125,0.439453125,0.5078125,0.5791015625,0.6435546875,0.67578125,0.654296875,0.583984375,0.4990234375,0.44140625,0.4296875,0.4443359375,0.5048828125,0.5888671875,0.65625,0.6728515625,0.6357421875,0.5693359375,0.5078125,0.486328125,0.5087890625,0.548828125,0.57421875,0.5576171875,0.5,0.443359375,0.4345703125,0.4755859375,0.53515625,0.572265625,0.5595703125,0.5,0.4287109375,0.369140625,0.341796875,0.3564453125,0.396484375,0.4306640625,0.439453125,0.43359375,0.4091796875,0.38671875,0.392578125,0.43359375,0.5,0.5693359375,0.6240234375,0.6240234375,0.5673828125,0.490234375,0.4365234375,0.4404296875,0.5,0.5673828125,0.611328125,0.6083984375,0.5576171875,0.4853515625,0.43359375,0.419921875,0.41796875,0.416015625,0.4140625,0.4140625,0.416015625,0.41796875,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.4306640625,0.421875,0.466796875,0.5322265625,0.5771484375,0.568359375,0.509765625,0.431640625,0.345703125,0.2919921875,0.306640625,0.3837890625,0.4814453125,0.5595703125,0.634765625,0.71875,0.7724609375,0.7607421875,0.685546875,0.587890625,0.509765625,0.4326171875,0.3466796875,0.2939453125,0.3095703125,0.3876953125,0.48828125,0.5693359375,0.6494140625,0.7431640625,0.8095703125,0.8095703125,0.7431640625,0.6494140625,0.5693359375,0.5078125,0.48828125,0.513671875,0.5361328125,0.6025390625,0.654296875,0.6611328125,0.6220703125,0.572265625,0.53515625,0.521484375,0.5341796875,0.55859375,0.57421875,0.5703125,0.5498046875,0.498046875,0.4384765625,0.4072265625,0.423828125,0.48046875,0.55078125,0.6181640625,0.6552734375,0.6376953125,0.56640625,0.4716796875,0.4013671875,0.376953125,0.3701171875,0.375,0.3916015625,0.4140625,0.431640625,0.4365234375,0.4287109375,0.4111328125,0.3701171875,0.326171875,0.3095703125,0.3330078125,0.38671875,0.4482421875,0.5068359375,0.5498046875,0.556640625,0.525390625,0.4755859375,0.4375,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.6650390625,0.62890625,0.5830078125,0.5576171875,0.5693359375,0.61328125,0.673828125,0.7412109375,0.822265625,0.87890625,0.87890625,0.822265625,0.7412109375,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.3466796875,0.40234375,0.4736328125,0.5224609375,0.5263671875,0.4873046875,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.37890625,0.353515625,0.3173828125,0.3017578125,0.3232421875,0.3779296875,0.4482421875,0.505859375,0.5078125,0.4521484375,0.373046875,0.3173828125,0.3193359375,0.376953125,0.44140625,0.4755859375,0.478515625,0.46875,0.4716796875,0.505859375,0.5703125,0.634765625,0.6640625,0.638671875,0.56640625,0.4833984375,0.4326171875,0.4287109375,0.4384765625,0.439453125,0.42578125,0.3984375,0.3662109375,0.33984375,0.3251953125,0.310546875,0.2861328125,0.26953125,0.279296875,0.3193359375,0.3759765625,0.4287109375,0.4736328125,0.4921875,0.4873046875,0.4765625,0.4814453125,0.513671875,0.5703125,0.623046875,0.6318359375,0.5810546875,0.486328125,0.3876953125,0.330078125,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.6025390625,0.611328125,0.5732421875,0.51171875,0.46484375,0.4599609375,0.5,0.5458984375,0.568359375,0.5546875,0.509765625,0.4580078125,0.427734375,0.4287109375,0.4443359375,0.482421875,0.5380859375,0.5986328125,0.6455078125,0.6689453125,0.673828125,0.658203125,0.5888671875,0.4853515625,0.3955078125,0.3583984375,0.3837890625,0.4482421875,0.5185546875,0.5751953125,0.591796875,0.560546875,0.5009765625,0.44921875,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.60546875,0.62890625,0.6220703125,0.6025390625,0.595703125,0.619140625,0.673828125,0.736328125,0.787109375,0.7890625,0.724609375,0.61328125,0.5029296875,0.4287109375,0.3603515625,0.2802734375,0.2236328125,0.2236328125,0.2802734375,0.3603515625,0.4287109375,0.4931640625,0.5615234375,0.6123046875,0.6279296875,0.611328125,0.5849609375,0.5703125,0.55078125,0.5078125,0.4638671875,0.4521484375,0.484375,0.548828125,0.6220703125,0.6904296875,0.736328125,0.73828125,0.6943359375,0.62890625,0.5810546875,0.5703125,0.5595703125,0.5185546875,0.46484375,0.4345703125,0.4482421875,0.5,0.5703125,0.646484375,0.728515625,0.7802734375,0.771484375,0.708984375,0.6298828125,0.5703125,0.513671875,0.4462890625,0.3994140625,0.3994140625,0.4462890625,0.513671875,0.5703125,0.6298828125,0.708984375,0.771484375,0.7802734375,0.728515625,0.646484375,0.5703125,0.5087890625,0.4892578125,0.517578125,0.5693359375,0.6064453125,0.6015625,0.55078125,0.5,0.4931640625,0.5322265625,0.5888671875,0.6279296875,0.62109375,0.5703125,0.5224609375,0.5322265625,0.59765625,0.6806640625,0.736328125,0.732421875,0.673828125,0.6025390625,0.537109375,0.484375,0.4443359375,0.4111328125,0.373046875,0.3251953125,0.2734375,0.23046875,0.2294921875,0.2900390625,0.3935546875,0.498046875,0.5703125,0.625,0.646484375,0.611328125,0.525390625,0.4228515625,0.349609375,0.3251953125,0.3232421875,0.3583984375,0.43359375,0.5302734375,0.615234375,0.6640625,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.544921875,0.462890625,0.4150390625,0.43359375,0.509765625,0.6025390625,0.673828125,0.7216796875,0.71875,0.6650390625,0.5947265625,0.55078125,0.5615234375,0.6220703125,0.6845703125,0.701171875,0.65234375,0.552734375,0.4462890625,0.3828125,0.376953125,0.400390625,0.46484375,0.546875,0.60546875,0.611328125,0.568359375,0.5,0.42578125,0.3525390625,0.2998046875,0.2841796875,0.298828125,0.3193359375,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.3681640625,0.3671875,0.376953125,0.39453125,0.4140625,0.4267578125,0.4287109375,0.42578125,0.419921875,0.4287109375,0.4677734375,0.533203125,0.6083984375,0.673828125,0.724609375,0.7275390625,0.6650390625,0.556640625,0.4462890625,0.3828125,0.376953125,0.4033203125,0.482421875,0.591796875,0.6826171875,0.7158203125,0.6875,0.6220703125,0.556640625,0.5185546875,0.515625,0.53515625,0.552734375,0.5419921875,0.5,0.4599609375,0.46484375,0.5087890625,0.560546875,0.5849609375,0.5625,0.5,0.427734375,0.3671875,0.337890625,0.349609375,0.3876953125,0.4208984375,0.4287109375,0.4267578125,0.419921875,0.4248046875,0.4541015625,0.5068359375,0.5673828125,0.6220703125,0.658203125,0.6396484375,0.568359375,0.4833984375,0.431640625,0.439453125,0.5,0.56640625,0.6044921875,0.5859375,0.5146484375,0.419921875,0.349609375,0.3251953125,0.314453125,0.30078125,0.291015625,0.291015625,0.30078125,0.314453125,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.390625,0.392578125,0.455078125,0.5439453125,0.6064453125,0.6083984375,0.55078125,0.474609375,0.39453125,0.34765625,0.361328125,0.4287109375,0.509765625,0.5703125,0.6279296875,0.6982421875,0.7490234375,0.7490234375,0.6953125,0.6181640625,0.55078125,0.4833984375,0.4052734375,0.3564453125,0.3701171875,0.4453125,0.5419921875,0.6220703125,0.701171875,0.7958984375,0.8623046875,0.8623046875,0.7958984375,0.701171875,0.6220703125,0.55859375,0.533203125,0.546875,0.5576171875,0.5927734375,0.6298828125,0.646484375,0.634765625,0.6181640625,0.6064453125,0.599609375,0.5908203125,0.576171875,0.5556640625,0.5302734375,0.49609375,0.4443359375,0.40234375,0.4033203125,0.4521484375,0.529296875,0.6044921875,0.6728515625,0.7109375,0.6904296875,0.607421875,0.4951171875,0.4052734375,0.3642578125,0.3447265625,0.353515625,0.3916015625,0.44140625,0.4794921875,0.48828125,0.46875,0.435546875,0.380859375,0.3251953125,0.2978515625,0.30859375,0.3486328125,0.39453125,0.4404296875,0.482421875,0.5078125,0.5078125,0.4912109375,0.4736328125,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.7333984375,0.70703125,0.673828125,0.654296875,0.6630859375,0.6962890625,0.740234375,0.7900390625,0.849609375,0.892578125,0.892578125,0.849609375,0.7900390625,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.2958984375,0.3671875,0.4521484375,0.5166015625,0.53515625,0.51171875,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.380859375,0.361328125,0.3203125,0.2861328125,0.287109375,0.3271484375,0.39453125,0.453125,0.4609375,0.4140625,0.3447265625,0.2978515625,0.3046875,0.3642578125,0.427734375,0.458984375,0.455078125,0.4384765625,0.435546875,0.4658203125,0.5302734375,0.5947265625,0.6240234375,0.6044921875,0.546875,0.484375,0.455078125,0.46875,0.4931640625,0.5029296875,0.48046875,0.4248046875,0.353515625,0.29296875,0.2587890625,0.2353515625,0.23046875,0.2587890625,0.3173828125,0.3876953125,0.4423828125,0.46875,0.482421875,0.4775390625,0.4609375,0.44921875,0.45703125,0.4873046875,0.5302734375,0.564453125,0.548828125,0.4775390625,0.375,0.2861328125,0.24609375,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6435546875,0.6533203125,0.6240234375,0.568359375,0.5146484375,0.490234375,0.5,0.513671875,0.5087890625,0.4853515625,0.4580078125,0.4423828125,0.447265625,0.46875,0.5009765625,0.5537109375,0.619140625,0.6787109375,0.7197265625,0.7373046875,0.740234375,0.7216796875,0.638671875,0.5078125,0.3857421875,0.322265625,0.3330078125,0.39453125,0.4697265625,0.546875,0.595703125,0.5966796875,0.5546875,0.5029296875,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.6455078125,0.6689453125,0.673828125,0.6708984375,0.67578125,0.69921875,0.740234375,0.7841796875,0.810546875,0.7919921875,0.720703125,0.6181640625,0.525390625,0.46875,0.4189453125,0.359375,0.3173828125,0.3173828125,0.359375,0.4189453125,0.46875,0.5185546875,0.57421875,0.6162109375,0.6240234375,0.5986328125,0.560546875,0.5302734375,0.4970703125,0.4482421875,0.4140625,0.421875,0.478515625,0.5595703125,0.634765625,0.7021484375,0.7421875,0.7314453125,0.673828125,0.5966796875,0.5419921875,0.5302734375,0.51953125,0.478515625,0.4248046875,0.39453125,0.4072265625,0.4599609375,0.5302734375,0.6025390625,0.666015625,0.693359375,0.6708984375,0.6142578125,0.55859375,0.5302734375,0.5087890625,0.484375,0.4658203125,0.4658203125,0.484375,0.5087890625,0.5302734375,0.55859375,0.6142578125,0.6708984375,0.693359375,0.666015625,0.6025390625,0.5302734375,0.4677734375,0.451171875,0.48828125,0.5576171875,0.619140625,0.63671875,0.6044921875,0.5654296875,0.548828125,0.5576171875,0.576171875,0.5849609375,0.5693359375,0.5302734375,0.5009765625,0.53515625,0.626953125,0.7314453125,0.798828125,0.798828125,0.740234375,0.662109375,0.5615234375,0.455078125,0.3662109375,0.3095703125,0.2783203125,0.2587890625,0.240234375,0.2333984375,0.2568359375,0.31640625,0.3994140625,0.4765625,0.5302734375,0.5712890625,0.5869140625,0.5546875,0.474609375,0.3759765625,0.296875,0.2587890625,0.244140625,0.283203125,0.3857421875,0.5244140625,0.6513671875,0.7255859375,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.5615234375,0.4951171875,0.4716796875,0.5107421875,0.595703125,0.68359375,0.740234375,0.771484375,0.75,0.681640625,0.6044921875,0.560546875,0.57421875,0.634765625,0.6943359375,0.69921875,0.6318359375,0.5185546875,0.41015625,0.3544921875,0.3642578125,0.4033203125,0.48046875,0.568359375,0.6240234375,0.62109375,0.5693359375,0.5,0.423828125,0.3427734375,0.275390625,0.2421875,0.2421875,0.2548828125,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.3408203125,0.333984375,0.3525390625,0.3916015625,0.4345703125,0.462890625,0.46875,0.46875,0.4755859375,0.501953125,0.5546875,0.6240234375,0.689453125,0.740234375,0.771484375,0.744140625,0.6484375,0.5185546875,0.40625,0.353515625,0.3642578125,0.40625,0.5,0.619140625,0.708984375,0.7373046875,0.7021484375,0.634765625,0.564453125,0.5068359375,0.4775390625,0.48046875,0.5,0.5107421875,0.5,0.4912109375,0.5185546875,0.568359375,0.607421875,0.6083984375,0.56640625,0.5,0.4287109375,0.373046875,0.3525390625,0.375,0.421875,0.4599609375,0.46875,0.470703125,0.4794921875,0.501953125,0.5380859375,0.5791015625,0.6123046875,0.634765625,0.640625,0.595703125,0.515625,0.44140625,0.41015625,0.435546875,0.5,0.5673828125,0.60546875,0.5849609375,0.501953125,0.390625,0.2998046875,0.2587890625,0.2294921875,0.1953125,0.1708984375,0.1708984375,0.1953125,0.2294921875,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.33984375,0.3544921875,0.44140625,0.5576171875,0.64453125,0.6591796875,0.6044921875,0.5302734375,0.4580078125,0.4140625,0.416015625,0.45703125,0.5029296875,0.5302734375,0.556640625,0.60546875,0.6591796875,0.6904296875,0.6845703125,0.6494140625,0.6044921875,0.55078125,0.48046875,0.4248046875,0.421875,0.4755859375,0.55859375,0.634765625,0.71484375,0.80859375,0.8759765625,0.8759765625,0.80859375,0.71484375,0.634765625,0.572265625,0.544921875,0.5546875,0.5458984375,0.541015625,0.5576171875,0.5830078125,0.6044921875,0.6259765625,0.650390625,0.6572265625,0.6328125,0.580078125,0.51953125,0.46875,0.4189453125,0.3642578125,0.33984375,0.3720703125,0.4560546875,0.5546875,0.634765625,0.705078125,0.7548828125,0.748046875,0.673828125,0.55859375,0.4541015625,0.39453125,0.359375,0.369140625,0.4248046875,0.4990234375,0.5546875,0.564453125,0.5302734375,0.478515625,0.4091796875,0.3447265625,0.30859375,0.310546875,0.3359375,0.3642578125,0.3935546875,0.4326171875,0.474609375,0.5078125,0.5244140625,0.529296875,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.736328125,0.720703125,0.701171875,0.6904296875,0.6953125,0.71484375,0.740234375,0.76953125,0.8037109375,0.828125,0.828125,0.8037109375,0.76953125,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3134765625,0.39453125,0.482421875,0.546875,0.568359375,0.5556640625,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.427734375,0.416015625,0.36328125,0.306640625,0.279296875,0.3017578125,0.3642578125,0.4248046875,0.4384765625,0.4052734375,0.3525390625,0.3193359375,0.333984375,0.39453125,0.4560546875,0.4755859375,0.4521484375,0.4111328125,0.3876953125,0.4072265625,0.46875,0.5341796875,0.5673828125,0.560546875,0.52734375,0.4951171875,0.494140625,0.5302734375,0.57421875,0.6005859375,0.58203125,0.5107421875,0.408203125,0.3154296875,0.2587890625,0.2236328125,0.234375,0.30078125,0.3994140625,0.490234375,0.5361328125,0.5302734375,0.505859375,0.4697265625,0.4326171875,0.4140625,0.4189453125,0.4423828125,0.46875,0.4833984375,0.451171875,0.375,0.2890625,0.2314453125,0.2236328125,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.66015625,0.673828125,0.6630859375,0.6240234375,0.5703125,0.5244140625,0.5,0.4755859375,0.4384765625,0.408203125,0.4052734375,0.4345703125,0.482421875,0.5302734375,0.5791015625,0.6376953125,0.6923828125,0.7294921875,0.7421875,0.7412109375,0.740234375,0.7216796875,0.6337890625,0.4970703125,0.3671875,0.2958984375,0.302734375,0.3642578125,0.4443359375,0.54296875,0.626953125,0.6591796875,0.634765625,0.580078125,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.6591796875,0.67578125,0.6845703125,0.6904296875,0.69921875,0.7158203125,0.740234375,0.7646484375,0.7734375,0.7509765625,0.6953125,0.6240234375,0.564453125,0.5302734375,0.5009765625,0.4658203125,0.44140625,0.44140625,0.4658203125,0.5009765625,0.5302734375,0.560546875,0.5986328125,0.6240234375,0.6162109375,0.57421875,0.5185546875,0.46875,0.41796875,0.359375,0.328125,0.3525390625,0.4296875,0.525390625,0.6044921875,0.6708984375,0.70703125,0.6904296875,0.6240234375,0.5400390625,0.482421875,0.46875,0.458984375,0.41796875,0.3642578125,0.333984375,0.3466796875,0.3994140625,0.46875,0.5361328125,0.578125,0.5771484375,0.5380859375,0.48828125,0.4609375,0.46875,0.490234375,0.5146484375,0.533203125,0.533203125,0.5146484375,0.490234375,0.46875,0.4609375,0.48828125,0.5380859375,0.5771484375,0.578125,0.5361328125,0.46875,0.4072265625,0.3896484375,0.43359375,0.5185546875,0.6044921875,0.646484375,0.634765625,0.609375,0.5849609375,0.5625,0.541015625,0.51953125,0.4951171875,0.46875,0.4599609375,0.5146484375,0.6240234375,0.7373046875,0.8037109375,0.7998046875,0.740234375,0.65625,0.5341796875,0.3994140625,0.294921875,0.244140625,0.2421875,0.2587890625,0.2783203125,0.302734375,0.3330078125,0.3701171875,0.4072265625,0.44140625,0.46875,0.49609375,0.5166015625,0.5078125,0.4609375,0.3857421875,0.3115234375,0.2587890625,0.2255859375,0.2509765625,0.3505859375,0.4970703125,0.6376953125,0.72265625,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.5341796875,0.4833984375,0.48046875,0.53515625,0.6240234375,0.701171875,0.740234375,0.7529296875,0.7138671875,0.634765625,0.5576171875,0.521484375,0.5419921875,0.6044921875,0.6630859375,0.6640625,0.5966796875,0.4912109375,0.3994140625,0.365234375,0.39453125,0.451171875,0.5380859375,0.6240234375,0.6630859375,0.638671875,0.5732421875,0.5,0.423828125,0.3427734375,0.275390625,0.2421875,0.2421875,0.2548828125,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.353515625,0.3369140625,0.3583984375,0.4140625,0.4775390625,0.5205078125,0.5302734375,0.53125,0.541015625,0.568359375,0.61328125,0.6650390625,0.7099609375,0.740234375,0.7509765625,0.7021484375,0.5966796875,0.474609375,0.3857421875,0.3623046875,0.39453125,0.453125,0.5537109375,0.662109375,0.7294921875,0.7294921875,0.67578125,0.6044921875,0.529296875,0.453125,0.40234375,0.3974609375,0.4306640625,0.4736328125,0.5,0.5283203125,0.5830078125,0.640625,0.6630859375,0.6357421875,0.572265625,0.5,0.4306640625,0.3818359375,0.375,0.4140625,0.4736328125,0.51953125,0.5302734375,0.5341796875,0.5546875,0.5849609375,0.61328125,0.6259765625,0.62109375,0.6044921875,0.57421875,0.505859375,0.4248046875,0.375,0.37890625,0.4296875,0.5,0.5703125,0.619140625,0.61328125,0.5380859375,0.4228515625,0.318359375,0.2587890625,0.208984375,0.1494140625,0.1064453125,0.1064453125,0.1494140625,0.208984375,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.310546875,0.3330078125,0.43359375,0.5654296875,0.666015625,0.6884765625,0.634765625,0.564453125,0.5029296875,0.4658203125,0.4609375,0.4736328125,0.4814453125,0.46875,0.4580078125,0.4794921875,0.533203125,0.595703125,0.642578125,0.654296875,0.634765625,0.5986328125,0.5341796875,0.46875,0.44140625,0.4677734375,0.5322265625,0.6044921875,0.6845703125,0.7783203125,0.8447265625,0.8447265625,0.7783203125,0.6845703125,0.6044921875,0.5419921875,0.5185546875,0.53515625,0.501953125,0.4658203125,0.466796875,0.501953125,0.55078125,0.6064453125,0.6640625,0.6923828125,0.6640625,0.587890625,0.4990234375,0.4287109375,0.3642578125,0.30078125,0.279296875,0.3251953125,0.427734375,0.5390625,0.6220703125,0.6962890625,0.7626953125,0.783203125,0.732421875,0.62890625,0.521484375,0.4482421875,0.3994140625,0.4052734375,0.466796875,0.55078125,0.6123046875,0.6181640625,0.5703125,0.5048828125,0.4296875,0.3681640625,0.3388671875,0.34375,0.36328125,0.376953125,0.3916015625,0.4228515625,0.4677734375,0.5146484375,0.5498046875,0.5673828125,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.671875,0.666015625,0.658203125,0.6533203125,0.6552734375,0.6630859375,0.673828125,0.6845703125,0.6982421875,0.7080078125,0.7080078125,0.6982421875,0.6845703125,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.392578125,0.47265625,0.546875,0.58984375,0.5966796875,0.5830078125,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.49609375,0.490234375,0.4326171875,0.357421875,0.3095703125,0.3173828125,0.376953125,0.4384765625,0.4580078125,0.43359375,0.3916015625,0.3671875,0.38671875,0.4482421875,0.5068359375,0.515625,0.4716796875,0.4052734375,0.361328125,0.3701171875,0.4287109375,0.4931640625,0.52734375,0.5263671875,0.5078125,0.4970703125,0.5166015625,0.5703125,0.6328125,0.68359375,0.685546875,0.62109375,0.509765625,0.3994140625,0.3251953125,0.2783203125,0.29296875,0.3740234375,0.486328125,0.5771484375,0.60546875,0.5703125,0.515625,0.455078125,0.40625,0.38671875,0.39453125,0.4150390625,0.4287109375,0.427734375,0.3876953125,0.3203125,0.2626953125,0.2431640625,0.26953125,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.6357421875,0.658203125,0.6708984375,0.65625,0.611328125,0.5537109375,0.5,0.443359375,0.37890625,0.3388671875,0.353515625,0.4189453125,0.501953125,0.5703125,0.6318359375,0.689453125,0.7236328125,0.7255859375,0.7021484375,0.6796875,0.673828125,0.65625,0.5791015625,0.458984375,0.3505859375,0.2978515625,0.314453125,0.376953125,0.4599609375,0.5712890625,0.673828125,0.7197265625,0.6982421875,0.634765625,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.6318359375,0.6396484375,0.6455078125,0.650390625,0.6552734375,0.6630859375,0.673828125,0.6826171875,0.68359375,0.669921875,0.642578125,0.6103515625,0.583984375,0.5703125,0.55859375,0.544921875,0.53515625,0.53515625,0.544921875,0.55859375,0.5703125,0.5849609375,0.611328125,0.6279296875,0.6123046875,0.5615234375,0.4931640625,0.4287109375,0.3623046875,0.2900390625,0.2529296875,0.28125,0.3671875,0.4697265625,0.55078125,0.6181640625,0.6552734375,0.6416015625,0.5791015625,0.498046875,0.44140625,0.4287109375,0.4189453125,0.376953125,0.32421875,0.2939453125,0.306640625,0.359375,0.4287109375,0.4912109375,0.5146484375,0.490234375,0.4375,0.3935546875,0.3896484375,0.4287109375,0.4853515625,0.552734375,0.599609375,0.599609375,0.552734375,0.4853515625,0.4287109375,0.3896484375,0.3935546875,0.4375,0.490234375,0.5146484375,0.4912109375,0.4287109375,0.365234375,0.341796875,0.3798828125,0.46484375,0.5595703125,0.6171875,0.6220703125,0.6083984375,0.583984375,0.546875,0.50390625,0.466796875,0.4423828125,0.4287109375,0.4345703125,0.498046875,0.6044921875,0.7041015625,0.7529296875,0.736328125,0.673828125,0.5888671875,0.4638671875,0.3349609375,0.251953125,0.2373046875,0.2744140625,0.3251953125,0.3759765625,0.419921875,0.4443359375,0.4462890625,0.4326171875,0.423828125,0.4287109375,0.4453125,0.4755859375,0.5,0.4951171875,0.4521484375,0.3896484375,0.3251953125,0.2744140625,0.271484375,0.337890625,0.455078125,0.5791015625,0.6572265625,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.482421875,0.439453125,0.4453125,0.50390625,0.5859375,0.650390625,0.673828125,0.6708984375,0.6220703125,0.54296875,0.4755859375,0.4541015625,0.4853515625,0.55078125,0.6103515625,0.6142578125,0.55859375,0.4755859375,0.41015625,0.400390625,0.4482421875,0.5185546875,0.611328125,0.6875,0.7060546875,0.658203125,0.576171875,0.5,0.42578125,0.3525390625,0.2998046875,0.2841796875,0.298828125,0.3193359375,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.390625,0.361328125,0.376953125,0.435546875,0.5078125,0.55859375,0.5703125,0.5712890625,0.5771484375,0.5927734375,0.6162109375,0.640625,0.6611328125,0.673828125,0.669921875,0.6142578125,0.5205078125,0.4296875,0.3837890625,0.39453125,0.4482421875,0.51953125,0.619140625,0.70703125,0.73828125,0.7021484375,0.626953125,0.55078125,0.47265625,0.384765625,0.322265625,0.3173828125,0.3681640625,0.44140625,0.5,0.55859375,0.6376953125,0.701171875,0.7099609375,0.658203125,0.576171875,0.5,0.431640625,0.3876953125,0.3896484375,0.439453125,0.5078125,0.55859375,0.5703125,0.5771484375,0.6044921875,0.6376953125,0.654296875,0.640625,0.6015625,0.55078125,0.490234375,0.4052734375,0.3310546875,0.30859375,0.34765625,0.423828125,0.5,0.57421875,0.640625,0.6611328125,0.6103515625,0.5068359375,0.3994140625,0.3251953125,0.2578125,0.1767578125,0.1201171875,0.1201171875,0.1767578125,0.2578125,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.3232421875,0.341796875,0.4365234375,0.5625,0.6572265625,0.67578125,0.6220703125,0.5546875,0.5087890625,0.490234375,0.4912109375,0.4921875,0.47265625,0.4287109375,0.3857421875,0.3779296875,0.4189453125,0.49609375,0.5751953125,0.6201171875,0.6220703125,0.599609375,0.5419921875,0.470703125,0.4267578125,0.431640625,0.4814453125,0.55078125,0.630859375,0.724609375,0.7919921875,0.7919921875,0.724609375,0.630859375,0.55078125,0.490234375,0.4736328125,0.501953125,0.4443359375,0.3994140625,0.400390625,0.4443359375,0.509765625,0.583984375,0.666015625,0.7158203125,0.6982421875,0.6181640625,0.5185546875,0.439453125,0.3642578125,0.287109375,0.25,0.283203125,0.3779296875,0.486328125,0.5693359375,0.646484375,0.73046875,0.7783203125,0.755859375,0.671875,0.5693359375,0.4892578125,0.4326171875,0.4306640625,0.4853515625,0.5634765625,0.6181640625,0.6162109375,0.5595703125,0.48828125,0.419921875,0.376953125,0.3720703125,0.3955078125,0.421875,0.4296875,0.4345703125,0.451171875,0.48046875,0.513671875,0.5419921875,0.556640625,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5791015625,0.578125,0.5771484375,0.576171875,0.576171875,0.5771484375,0.5791015625,0.5810546875,0.5830078125,0.5849609375,0.5849609375,0.5830078125,0.5810546875,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.4912109375,0.560546875,0.60546875,0.6142578125,0.5927734375,0.5673828125,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5458984375,0.548828125,0.4951171875,0.4189453125,0.3662109375,0.37109375,0.4296875,0.4912109375,0.5087890625,0.482421875,0.4375,0.41015625,0.4287109375,0.4892578125,0.5478515625,0.552734375,0.501953125,0.427734375,0.3759765625,0.380859375,0.439453125,0.5029296875,0.5283203125,0.5166015625,0.48828125,0.474609375,0.498046875,0.5595703125,0.6337890625,0.708984375,0.7431640625,0.7060546875,0.609375,0.5009765625,0.419921875,0.3642578125,0.3701171875,0.439453125,0.5341796875,0.60546875,0.61328125,0.5595703125,0.490234375,0.423828125,0.3837890625,0.3798828125,0.4052734375,0.431640625,0.439453125,0.4306640625,0.3896484375,0.3330078125,0.296875,0.3046875,0.3525390625,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5791015625,0.611328125,0.6474609375,0.6572265625,0.626953125,0.568359375,0.5,0.4248046875,0.3408203125,0.2900390625,0.3046875,0.3818359375,0.48046875,0.5595703125,0.6279296875,0.681640625,0.69921875,0.6748046875,0.626953125,0.5888671875,0.5791015625,0.5654296875,0.505859375,0.4189453125,0.349609375,0.3291015625,0.36328125,0.4296875,0.5126953125,0.62109375,0.7158203125,0.7490234375,0.7119140625,0.634765625,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5712890625,0.572265625,0.5732421875,0.5751953125,0.576171875,0.5771484375,0.5791015625,0.5810546875,0.580078125,0.5771484375,0.572265625,0.56640625,0.5615234375,0.5595703125,0.5576171875,0.5556640625,0.5537109375,0.5537109375,0.5556640625,0.5576171875,0.5595703125,0.568359375,0.595703125,0.62109375,0.6181640625,0.5771484375,0.5107421875,0.439453125,0.36328125,0.2783203125,0.2275390625,0.24609375,0.3271484375,0.4287109375,0.509765625,0.5771484375,0.62109375,0.619140625,0.5703125,0.501953125,0.451171875,0.439453125,0.4296875,0.3876953125,0.3349609375,0.3046875,0.3173828125,0.3701171875,0.439453125,0.5,0.5126953125,0.474609375,0.416015625,0.375,0.3828125,0.439453125,0.515625,0.60546875,0.6689453125,0.6689453125,0.60546875,0.515625,0.439453125,0.3828125,0.375,0.416015625,0.474609375,0.5126953125,0.5,0.439453125,0.373046875,0.337890625,0.3544921875,0.419921875,0.501953125,0.5576171875,0.5693359375,0.564453125,0.548828125,0.5205078125,0.48828125,0.4599609375,0.4443359375,0.439453125,0.451171875,0.5087890625,0.5927734375,0.6611328125,0.6796875,0.6455078125,0.5791015625,0.49609375,0.384765625,0.28515625,0.244140625,0.2744140625,0.3466796875,0.419921875,0.486328125,0.5380859375,0.5537109375,0.529296875,0.4833984375,0.447265625,0.439453125,0.4501953125,0.490234375,0.5380859375,0.5615234375,0.54296875,0.48828125,0.419921875,0.35546875,0.3232421875,0.345703125,0.41796875,0.505859375,0.5654296875,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.44140625,0.396484375,0.3974609375,0.4453125,0.5146484375,0.56640625,0.5791015625,0.5693359375,0.5205078125,0.451171875,0.40234375,0.3984375,0.44140625,0.509765625,0.5693359375,0.578125,0.53515625,0.4697265625,0.4248046875,0.431640625,0.4892578125,0.568359375,0.662109375,0.73046875,0.734375,0.6708984375,0.5791015625,0.5,0.427734375,0.3662109375,0.3349609375,0.34375,0.3798828125,0.412109375,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.4228515625,0.3798828125,0.3828125,0.4306640625,0.4990234375,0.5478515625,0.5595703125,0.5595703125,0.560546875,0.564453125,0.568359375,0.5732421875,0.5771484375,0.5791015625,0.5693359375,0.5185546875,0.4462890625,0.392578125,0.384765625,0.423828125,0.4892578125,0.568359375,0.6630859375,0.734375,0.740234375,0.6796875,0.5888671875,0.509765625,0.4296875,0.3369140625,0.2705078125,0.2685546875,0.3330078125,0.4228515625,0.5,0.576171875,0.66796875,0.7333984375,0.7353515625,0.6708984375,0.5791015625,0.5,0.4306640625,0.3857421875,0.3857421875,0.4326171875,0.4990234375,0.5478515625,0.5595703125,0.5673828125,0.6015625,0.6416015625,0.6572265625,0.6328125,0.5771484375,0.509765625,0.4326171875,0.33984375,0.271484375,0.267578125,0.3291015625,0.4208984375,0.5,0.5771484375,0.66015625,0.7080078125,0.6865234375,0.6025390625,0.5,0.419921875,0.341796875,0.25,0.1845703125,0.1845703125,0.25,0.341796875,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.373046875,0.3798828125,0.451171875,0.5478515625,0.619140625,0.6259765625,0.5693359375,0.505859375,0.4775390625,0.486328125,0.51171875,0.5234375,0.4990234375,0.439453125,0.3759765625,0.3427734375,0.3603515625,0.4248046875,0.50390625,0.55859375,0.5693359375,0.556640625,0.505859375,0.439453125,0.3935546875,0.39453125,0.4404296875,0.509765625,0.5888671875,0.68359375,0.75,0.75,0.68359375,0.5888671875,0.509765625,0.44921875,0.4375,0.4755859375,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.35546875,0.349609375,0.380859375,0.44140625,0.509765625,0.5869140625,0.6845703125,0.76171875,0.7763671875,0.7236328125,0.6376953125,0.5595703125,0.4765625,0.369140625,0.2763671875,0.2431640625,0.2802734375,0.3564453125,0.4296875,0.5078125,0.6083984375,0.6904296875,0.712890625,0.6669921875,0.5849609375,0.509765625,0.44921875,0.4296875,0.4521484375,0.4921875,0.515625,0.498046875,0.439453125,0.3759765625,0.3427734375,0.3603515625,0.4248046875,0.50390625,0.55859375,0.5693359375,0.564453125,0.5458984375,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.4189453125,0.419921875,0.4228515625,0.4267578125,0.4296875,0.4306640625,0.4296875,0.427734375,0.42578125,0.4228515625,0.4208984375,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.431640625,0.43359375,0.4365234375,0.4384765625,0.439453125,0.439453125,0.439453125,0.43359375,0.4091796875,0.38671875,0.392578125,0.43359375,0.5,0.5693359375,0.6328125,0.66796875,0.6533203125,0.5908203125,0.5107421875,0.4541015625,0.439453125,0.4296875,0.396484375,0.359375,0.3486328125,0.37890625,0.439453125,0.509765625,0.5693359375,0.5859375,0.55859375,0.5146484375,0.4892578125,0.5078125,0.5693359375,0.6279296875,0.630859375,0.5751953125,0.4951171875,0.4365234375,0.4345703125,0.4892578125,0.548828125,0.568359375,0.548828125,0.5146484375,0.49609375,0.5185546875,0.5791015625,0.6337890625,0.625,0.5517578125,0.4521484375,0.3798828125,0.373046875,0.4296875,0.5126953125,0.62109375,0.7158203125,0.7490234375,0.7119140625,0.634765625,0.5595703125,0.498046875,0.474609375,0.48828125,0.5166015625,0.5283203125,0.5029296875,0.439453125,0.373046875,0.3349609375,0.3486328125,0.41015625,0.490234375,0.546875,0.5595703125,0.5498046875,0.51171875,0.4638671875,0.439453125,0.45703125,0.5107421875,0.5791015625,0.64453125,0.6787109375,0.66015625,0.59375,0.5107421875,0.453125,0.439453125,0.439453125,0.439453125,0.4384765625,0.4365234375,0.43359375,0.431640625,0.4296875,0.439453125,0.48828125,0.5576171875,0.6064453125,0.6103515625,0.5673828125,0.5,0.4189453125,0.318359375,0.23828125,0.220703125,0.271484375,0.3544921875,0.4296875,0.4970703125,0.548828125,0.5654296875,0.5390625,0.490234375,0.4501953125,0.439453125,0.431640625,0.40625,0.384765625,0.3935546875,0.4384765625,0.5078125,0.5791015625,0.6533203125,0.7265625,0.7568359375,0.716796875,0.6181640625,0.509765625,0.4296875,0.3662109375,0.333984375,0.353515625,0.4208984375,0.505859375,0.564453125,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.439453125,0.439453125,0.4384765625,0.4365234375,0.43359375,0.431640625,0.4296875,0.4404296875,0.49609375,0.578125,0.64453125,0.6640625,0.6318359375,0.5693359375,0.4912109375,0.3935546875,0.3154296875,0.298828125,0.349609375,0.43359375,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.560546875,0.5185546875,0.4638671875,0.4296875,0.439453125,0.490234375,0.5595703125,0.619140625,0.6328125,0.5966796875,0.5419921875,0.505859375,0.5185546875,0.5791015625,0.658203125,0.748046875,0.8076171875,0.80078125,0.73046875,0.63671875,0.5595703125,0.501953125,0.4921875,0.5302734375,0.587890625,0.626953125,0.6162109375,0.5595703125,0.490234375,0.42578125,0.3857421875,0.3837890625,0.408203125,0.4326171875,0.439453125,0.4423828125,0.4580078125,0.486328125,0.5185546875,0.544921875,0.55859375,0.5595703125,0.564453125,0.58984375,0.61328125,0.6103515625,0.5693359375,0.501953125,0.4296875,0.353515625,0.275390625,0.2392578125,0.2744140625,0.369140625,0.478515625,0.5595703125,0.6279296875,0.6796875,0.6943359375,0.6650390625,0.6123046875,0.5703125,0.5595703125,0.5673828125,0.607421875,0.6591796875,0.689453125,0.677734375,0.626953125,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.4228515625,0.390625,0.3525390625,0.337890625,0.3623046875,0.419921875,0.4892578125,0.5478515625,0.5576171875,0.5166015625,0.45703125,0.41796875,0.4296875,0.4892578125,0.5693359375,0.662109375,0.728515625,0.73046875,0.666015625,0.576171875,0.5,0.4345703125,0.3935546875,0.3974609375,0.4462890625,0.515625,0.56640625,0.5791015625,0.5888671875,0.6220703125,0.6591796875,0.669921875,0.6396484375,0.5791015625,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.439453125,0.439453125,0.4384765625,0.4365234375,0.43359375,0.431640625,0.4296875,0.419921875,0.3837890625,0.34375,0.330078125,0.357421875,0.41796875,0.4892578125,0.5693359375,0.6650390625,0.7353515625,0.7392578125,0.677734375,0.5869140625,0.509765625,0.4306640625,0.3369140625,0.2685546875,0.2646484375,0.328125,0.419921875,0.5,0.5791015625,0.673828125,0.7412109375,0.7431640625,0.6787109375,0.5869140625,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.431640625,0.33984375,0.2734375,0.271484375,0.333984375,0.423828125,0.5,0.5771484375,0.677734375,0.7607421875,0.7822265625,0.736328125,0.6552734375,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.65625,0.74609375,0.8076171875,0.8046875,0.7373046875,0.6455078125,0.5693359375,0.5087890625,0.4814453125,0.4873046875,0.5068359375,0.51171875,0.4814453125,0.419921875,0.365234375,0.3740234375,0.44921875,0.5498046875,0.625,0.6337890625,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5693359375,0.6630859375,0.73046875,0.73046875,0.6630859375,0.5693359375,0.4892578125,0.4296875,0.419921875,0.4619140625,0.353515625,0.38671875,0.439453125,0.498046875,0.55078125,0.611328125,0.6923828125,0.759765625,0.7734375,0.7265625,0.646484375,0.5703125,0.48828125,0.3828125,0.2890625,0.2470703125,0.2666015625,0.322265625,0.376953125,0.439453125,0.533203125,0.626953125,0.677734375,0.6669921875,0.6142578125,0.55078125,0.49609375,0.4658203125,0.46484375,0.48046875,0.4892578125,0.47265625,0.4287109375,0.3857421875,0.3779296875,0.4189453125,0.49609375,0.5751953125,0.6201171875,0.6220703125,0.6064453125,0.568359375,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.318359375,0.3232421875,0.33984375,0.3623046875,0.3798828125,0.384765625,0.376953125,0.3662109375,0.3525390625,0.3388671875,0.3291015625,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.388671875,0.40234375,0.416015625,0.4248046875,0.4287109375,0.4296875,0.4287109375,0.4267578125,0.419921875,0.4248046875,0.4541015625,0.5068359375,0.5673828125,0.6220703125,0.66796875,0.6884765625,0.662109375,0.59375,0.51171875,0.4501953125,0.4287109375,0.4130859375,0.384765625,0.3642578125,0.375,0.421875,0.4873046875,0.55078125,0.6025390625,0.6142578125,0.587890625,0.5498046875,0.533203125,0.55859375,0.6220703125,0.6806640625,0.681640625,0.6181640625,0.5205078125,0.4375,0.412109375,0.4482421875,0.494140625,0.5234375,0.537109375,0.548828125,0.5732421875,0.615234375,0.673828125,0.7158203125,0.68359375,0.5751953125,0.4404296875,0.341796875,0.3232421875,0.376953125,0.4599609375,0.5712890625,0.673828125,0.7197265625,0.6982421875,0.634765625,0.5703125,0.5166015625,0.4970703125,0.5078125,0.5263671875,0.52734375,0.4931640625,0.4287109375,0.3623046875,0.3271484375,0.345703125,0.4130859375,0.498046875,0.556640625,0.5703125,0.5634765625,0.541015625,0.5185546875,0.51953125,0.5537109375,0.611328125,0.673828125,0.7275390625,0.7421875,0.69921875,0.6083984375,0.5087890625,0.443359375,0.4287109375,0.4296875,0.4287109375,0.4248046875,0.416015625,0.40234375,0.388671875,0.376953125,0.3798828125,0.4287109375,0.5078125,0.5751953125,0.5966796875,0.5654296875,0.5,0.419921875,0.3232421875,0.244140625,0.220703125,0.2568359375,0.3203125,0.376953125,0.4296875,0.4794921875,0.5078125,0.50390625,0.4755859375,0.4453125,0.4287109375,0.416015625,0.40234375,0.4091796875,0.4521484375,0.5263671875,0.6064453125,0.673828125,0.7333984375,0.771484375,0.7548828125,0.6728515625,0.55078125,0.4423828125,0.376953125,0.3330078125,0.326171875,0.375,0.4697265625,0.576171875,0.6494140625,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.4296875,0.4287109375,0.4248046875,0.416015625,0.40234375,0.388671875,0.376953125,0.3798828125,0.431640625,0.5224609375,0.61328125,0.666015625,0.6640625,0.6220703125,0.5615234375,0.48046875,0.4091796875,0.38671875,0.419921875,0.486328125,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.62109375,0.580078125,0.517578125,0.46875,0.462890625,0.5029296875,0.5703125,0.6318359375,0.6552734375,0.638671875,0.60546875,0.587890625,0.611328125,0.673828125,0.748046875,0.8173828125,0.845703125,0.8095703125,0.7236328125,0.6318359375,0.5703125,0.52734375,0.51953125,0.548828125,0.591796875,0.6201171875,0.6123046875,0.5703125,0.517578125,0.462890625,0.421875,0.40625,0.4130859375,0.4248046875,0.4287109375,0.43359375,0.45703125,0.49609375,0.5380859375,0.5673828125,0.5771484375,0.5703125,0.5654296875,0.576171875,0.5849609375,0.568359375,0.51953125,0.4501953125,0.376953125,0.3037109375,0.2392578125,0.22265625,0.2783203125,0.3857421875,0.49609375,0.5703125,0.630859375,0.681640625,0.701171875,0.6796875,0.6318359375,0.5888671875,0.5703125,0.568359375,0.5966796875,0.640625,0.6708984375,0.6669921875,0.6279296875,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.380859375,0.361328125,0.3330078125,0.3212890625,0.3408203125,0.3876953125,0.4482421875,0.4970703125,0.5009765625,0.458984375,0.40234375,0.3701171875,0.38671875,0.4482421875,0.5263671875,0.6142578125,0.6767578125,0.681640625,0.630859375,0.5576171875,0.5,0.4521484375,0.4306640625,0.4521484375,0.5146484375,0.59375,0.65234375,0.673828125,0.689453125,0.7177734375,0.73828125,0.7275390625,0.6806640625,0.615234375,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.4296875,0.4287109375,0.4248046875,0.416015625,0.40234375,0.388671875,0.376953125,0.359375,0.318359375,0.2783203125,0.271484375,0.3076171875,0.375,0.4482421875,0.5283203125,0.62890625,0.7109375,0.734375,0.6923828125,0.6181640625,0.55078125,0.48046875,0.3876953125,0.3115234375,0.29296875,0.3408203125,0.4228515625,0.5,0.5791015625,0.673828125,0.744140625,0.7529296875,0.7001953125,0.6201171875,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.4833984375,0.40234375,0.341796875,0.33203125,0.3759765625,0.4423828125,0.5,0.5615234375,0.6552734375,0.75,0.7998046875,0.7890625,0.736328125,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.7392578125,0.806640625,0.8447265625,0.8271484375,0.759765625,0.6806640625,0.6220703125,0.57421875,0.5361328125,0.5068359375,0.4755859375,0.4365234375,0.384765625,0.3251953125,0.2822265625,0.3154296875,0.427734375,0.5712890625,0.68359375,0.716796875,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.52734375,0.6220703125,0.6884765625,0.6884765625,0.6220703125,0.52734375,0.4482421875,0.3876953125,0.376953125,0.4248046875,0.408203125,0.48046875,0.541015625,0.58203125,0.6044921875,0.630859375,0.677734375,0.7177734375,0.720703125,0.6767578125,0.603515625,0.5302734375,0.453125,0.3701171875,0.3056640625,0.2841796875,0.3037109375,0.33984375,0.3642578125,0.39453125,0.4638671875,0.5546875,0.6298828125,0.6611328125,0.6455078125,0.6044921875,0.5595703125,0.521484375,0.4970703125,0.48828125,0.48828125,0.484375,0.46875,0.4580078125,0.4794921875,0.533203125,0.595703125,0.642578125,0.654296875,0.634765625,0.6044921875,0.5546875,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.2392578125,0.248046875,0.2861328125,0.3369140625,0.375,0.3837890625,0.3642578125,0.3359375,0.3037109375,0.275390625,0.2587890625,0.2548828125,0.2578125,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.392578125,0.423828125,0.4521484375,0.46875,0.47265625,0.470703125,0.46875,0.470703125,0.4794921875,0.501953125,0.5380859375,0.5791015625,0.6123046875,0.634765625,0.6533203125,0.662109375,0.6484375,0.607421875,0.5517578125,0.5009765625,0.46875,0.4404296875,0.4111328125,0.40234375,0.4306640625,0.4892578125,0.5537109375,0.6044921875,0.6396484375,0.634765625,0.5966796875,0.5546875,0.541015625,0.5703125,0.634765625,0.6962890625,0.708984375,0.654296875,0.5517578125,0.4482421875,0.3916015625,0.39453125,0.4150390625,0.4443359375,0.4912109375,0.5546875,0.626953125,0.6904296875,0.740234375,0.765625,0.7109375,0.58203125,0.43359375,0.3291015625,0.3095703125,0.3642578125,0.4443359375,0.54296875,0.626953125,0.6591796875,0.634765625,0.580078125,0.5302734375,0.494140625,0.4951171875,0.52734375,0.560546875,0.5673828125,0.5341796875,0.46875,0.400390625,0.35546875,0.3564453125,0.40234375,0.4697265625,0.5185546875,0.5302734375,0.5283203125,0.52734375,0.541015625,0.5771484375,0.6328125,0.69140625,0.740234375,0.7783203125,0.7783203125,0.7255859375,0.6357421875,0.541015625,0.4814453125,0.46875,0.470703125,0.47265625,0.46875,0.4521484375,0.423828125,0.392578125,0.3642578125,0.3515625,0.390625,0.46875,0.546875,0.5830078125,0.5625,0.5,0.423828125,0.34375,0.2861328125,0.2734375,0.2998046875,0.3388671875,0.3642578125,0.388671875,0.4306640625,0.4775390625,0.5078125,0.5126953125,0.4951171875,0.46875,0.443359375,0.4306640625,0.4521484375,0.5166015625,0.6044921875,0.685546875,0.740234375,0.7783203125,0.7763671875,0.71484375,0.6044921875,0.4833984375,0.3974609375,0.3642578125,0.3505859375,0.3671875,0.427734375,0.5244140625,0.626953125,0.703125,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.470703125,0.47265625,0.46875,0.4521484375,0.423828125,0.392578125,0.3642578125,0.34765625,0.3720703125,0.44140625,0.5322265625,0.609375,0.6435546875,0.634765625,0.609375,0.5654296875,0.521484375,0.501953125,0.5185546875,0.55859375,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.6484375,0.61328125,0.541015625,0.4716796875,0.44140625,0.4658203125,0.5302734375,0.5947265625,0.630859375,0.6376953125,0.6328125,0.638671875,0.67578125,0.740234375,0.8076171875,0.845703125,0.826171875,0.748046875,0.64453125,0.5634765625,0.5302734375,0.513671875,0.5107421875,0.521484375,0.5380859375,0.548828125,0.5458984375,0.5302734375,0.509765625,0.4892578125,0.4716796875,0.4638671875,0.4638671875,0.4677734375,0.46875,0.474609375,0.4970703125,0.5302734375,0.5576171875,0.56640625,0.5537109375,0.5302734375,0.5107421875,0.5126953125,0.5244140625,0.521484375,0.4912109375,0.43359375,0.3642578125,0.2919921875,0.2333984375,0.2236328125,0.2783203125,0.376953125,0.4716796875,0.5302734375,0.5771484375,0.6259765625,0.654296875,0.646484375,0.607421875,0.5615234375,0.5302734375,0.5107421875,0.517578125,0.546875,0.5771484375,0.587890625,0.5703125,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.3837890625,0.380859375,0.3583984375,0.3359375,0.33203125,0.353515625,0.39453125,0.4287109375,0.419921875,0.375,0.3251953125,0.3046875,0.3310546875,0.39453125,0.4697265625,0.5458984375,0.5966796875,0.6015625,0.568359375,0.525390625,0.5,0.4833984375,0.4833984375,0.513671875,0.57421875,0.646484375,0.7060546875,0.740234375,0.7685546875,0.7978515625,0.806640625,0.7783203125,0.720703125,0.6552734375,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.470703125,0.47265625,0.46875,0.4521484375,0.423828125,0.392578125,0.3642578125,0.3291015625,0.271484375,0.220703125,0.208984375,0.2490234375,0.3203125,0.39453125,0.4755859375,0.580078125,0.673828125,0.7177734375,0.703125,0.6533203125,0.6044921875,0.5478515625,0.4609375,0.375,0.3359375,0.3603515625,0.42578125,0.5,0.578125,0.669921875,0.740234375,0.7568359375,0.71875,0.65625,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.5556640625,0.498046875,0.4521484375,0.435546875,0.4501953125,0.4775390625,0.5,0.5302734375,0.599609375,0.6904296875,0.7646484375,0.7958984375,0.78125,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.7841796875,0.8154296875,0.814453125,0.775390625,0.71484375,0.662109375,0.634765625,0.6142578125,0.5810546875,0.52734375,0.455078125,0.376953125,0.3095703125,0.2587890625,0.232421875,0.2841796875,0.4169921875,0.58203125,0.71484375,0.7666015625,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.474609375,0.568359375,0.634765625,0.634765625,0.568359375,0.474609375,0.39453125,0.33203125,0.31640625,0.3642578125,0.5107421875,0.5986328125,0.6455078125,0.6513671875,0.634765625,0.623046875,0.6298828125,0.6435546875,0.6376953125,0.6015625,0.5400390625,0.46875,0.400390625,0.349609375,0.333984375,0.3525390625,0.3857421875,0.404296875,0.39453125,0.384765625,0.416015625,0.4853515625,0.568359375,0.6318359375,0.65234375,0.634765625,0.6044921875,0.5615234375,0.5185546875,0.494140625,0.494140625,0.509765625,0.5302734375,0.556640625,0.60546875,0.6591796875,0.6904296875,0.6845703125,0.6494140625,0.6044921875,0.55859375,0.509765625,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.224609375,0.234375,0.2900390625,0.36328125,0.4189453125,0.4287109375,0.39453125,0.3466796875,0.2978515625,0.2587890625,0.2421875,0.24609375,0.255859375,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.44140625,0.4912109375,0.5302734375,0.546875,0.54296875,0.533203125,0.5302734375,0.5341796875,0.5546875,0.5849609375,0.61328125,0.6259765625,0.62109375,0.6044921875,0.5908203125,0.59375,0.607421875,0.615234375,0.6044921875,0.5732421875,0.5302734375,0.484375,0.44921875,0.4443359375,0.48046875,0.5419921875,0.6005859375,0.634765625,0.650390625,0.6240234375,0.568359375,0.5185546875,0.505859375,0.5390625,0.6044921875,0.671875,0.7060546875,0.6796875,0.59375,0.482421875,0.3984375,0.3642578125,0.3505859375,0.3671875,0.427734375,0.5244140625,0.626953125,0.703125,0.740234375,0.748046875,0.68359375,0.5576171875,0.4248046875,0.3408203125,0.3359375,0.39453125,0.4697265625,0.546875,0.595703125,0.5966796875,0.5546875,0.5029296875,0.46875,0.455078125,0.484375,0.546875,0.6044921875,0.6240234375,0.5947265625,0.5302734375,0.458984375,0.3984375,0.3720703125,0.38671875,0.4267578125,0.4609375,0.46875,0.4716796875,0.4892578125,0.5302734375,0.5908203125,0.65625,0.7080078125,0.740234375,0.7607421875,0.7548828125,0.712890625,0.6455078125,0.5791015625,0.5380859375,0.5302734375,0.533203125,0.54296875,0.546875,0.5302734375,0.4912109375,0.44140625,0.39453125,0.3623046875,0.3837890625,0.4521484375,0.5302734375,0.57421875,0.560546875,0.5,0.4296875,0.3759765625,0.353515625,0.36328125,0.390625,0.4052734375,0.39453125,0.3857421875,0.4140625,0.474609375,0.5380859375,0.57421875,0.568359375,0.5302734375,0.4873046875,0.4638671875,0.482421875,0.546875,0.6318359375,0.703125,0.740234375,0.7548828125,0.7216796875,0.634765625,0.5244140625,0.4306640625,0.3876953125,0.39453125,0.4150390625,0.4443359375,0.4912109375,0.5546875,0.626953125,0.6904296875,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.533203125,0.54296875,0.546875,0.5302734375,0.4912109375,0.44140625,0.39453125,0.3525390625,0.333984375,0.3583984375,0.4248046875,0.5087890625,0.5751953125,0.6044921875,0.6201171875,0.6220703125,0.61328125,0.6015625,0.599609375,0.611328125,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.6357421875,0.6103515625,0.53515625,0.4501953125,0.3994140625,0.4091796875,0.46875,0.53515625,0.5791015625,0.599609375,0.6103515625,0.6298828125,0.673828125,0.740234375,0.80078125,0.8095703125,0.748046875,0.6376953125,0.52734375,0.466796875,0.46875,0.4853515625,0.48828125,0.4775390625,0.4609375,0.4501953125,0.453125,0.46875,0.4892578125,0.509765625,0.52734375,0.53515625,0.53515625,0.53125,0.5302734375,0.53515625,0.5537109375,0.57421875,0.5771484375,0.5556640625,0.5146484375,0.46875,0.43359375,0.4326171875,0.4609375,0.4912109375,0.4951171875,0.4599609375,0.39453125,0.322265625,0.263671875,0.248046875,0.287109375,0.361328125,0.431640625,0.46875,0.5009765625,0.546875,0.5849609375,0.59375,0.5654296875,0.5166015625,0.46875,0.4287109375,0.4111328125,0.421875,0.4521484375,0.4814453125,0.48828125,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.4345703125,0.4482421875,0.4306640625,0.3916015625,0.3564453125,0.345703125,0.3642578125,0.3798828125,0.357421875,0.30859375,0.267578125,0.2607421875,0.2978515625,0.3642578125,0.4345703125,0.4921875,0.521484375,0.5185546875,0.4990234375,0.48828125,0.5,0.517578125,0.5341796875,0.5576171875,0.59375,0.6416015625,0.693359375,0.740234375,0.78515625,0.8212890625,0.826171875,0.7900390625,0.7275390625,0.6689453125,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.533203125,0.54296875,0.546875,0.5302734375,0.4912109375,0.44140625,0.39453125,0.33984375,0.2607421875,0.1923828125,0.1728515625,0.2138671875,0.2890625,0.3642578125,0.443359375,0.544921875,0.6376953125,0.6904296875,0.6923828125,0.6640625,0.634765625,0.595703125,0.5185546875,0.4306640625,0.375,0.3779296875,0.4296875,0.5,0.576171875,0.66015625,0.7236328125,0.740234375,0.7119140625,0.6669921875,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.6083984375,0.583984375,0.5634765625,0.546875,0.5322265625,0.517578125,0.5,0.490234375,0.521484375,0.5908203125,0.673828125,0.736328125,0.7578125,0.740234375,0.7109375,0.67578125,0.6513671875,0.6513671875,0.67578125,0.7109375,0.740234375,0.759765625,0.751953125,0.7119140625,0.6572265625,0.611328125,0.5927734375,0.6044921875,0.619140625,0.60546875,0.5517578125,0.4638671875,0.3671875,0.294921875,0.2587890625,0.248046875,0.302734375,0.4248046875,0.57421875,0.6962890625,0.7509765625,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.443359375,0.5380859375,0.6044921875,0.6044921875,0.5380859375,0.443359375,0.3642578125,0.2978515625,0.267578125,0.30078125,0.625,0.69921875,0.7099609375,0.6728515625,0.6220703125,0.5771484375,0.55859375,0.5595703125,0.560546875,0.5419921875,0.49609375,0.4287109375,0.3671875,0.3466796875,0.375,0.431640625,0.48046875,0.4873046875,0.4482421875,0.4033203125,0.3935546875,0.4306640625,0.5029296875,0.5771484375,0.62109375,0.6220703125,0.603515625,0.5595703125,0.5087890625,0.4775390625,0.4833984375,0.5205078125,0.5703125,0.6279296875,0.6982421875,0.7490234375,0.7490234375,0.6953125,0.6181640625,0.55078125,0.4951171875,0.4580078125,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.27734375,0.283203125,0.3447265625,0.4287109375,0.490234375,0.49609375,0.4482421875,0.3857421875,0.3251953125,0.287109375,0.2802734375,0.298828125,0.3203125,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.5107421875,0.5703125,0.6083984375,0.615234375,0.5966796875,0.576171875,0.5703125,0.5771484375,0.6044921875,0.6376953125,0.654296875,0.640625,0.6015625,0.55078125,0.5107421875,0.51171875,0.5517578125,0.6044921875,0.634765625,0.6220703125,0.5703125,0.509765625,0.4658203125,0.4580078125,0.4931640625,0.552734375,0.6015625,0.6220703125,0.6201171875,0.5771484375,0.509765625,0.45703125,0.4462890625,0.484375,0.55078125,0.6240234375,0.6845703125,0.697265625,0.642578125,0.541015625,0.4404296875,0.376953125,0.3330078125,0.326171875,0.375,0.4697265625,0.576171875,0.6494140625,0.673828125,0.66796875,0.6064453125,0.5048828125,0.41015625,0.3662109375,0.384765625,0.4482421875,0.5185546875,0.5751953125,0.591796875,0.560546875,0.5009765625,0.44921875,0.4287109375,0.4326171875,0.4833984375,0.56640625,0.638671875,0.6640625,0.634765625,0.5703125,0.4970703125,0.427734375,0.3828125,0.3759765625,0.3974609375,0.421875,0.4287109375,0.43359375,0.45703125,0.50390625,0.5634765625,0.6201171875,0.6572265625,0.673828125,0.6806640625,0.67578125,0.6552734375,0.623046875,0.5927734375,0.57421875,0.5703125,0.576171875,0.5966796875,0.615234375,0.6083984375,0.5703125,0.5107421875,0.4482421875,0.3994140625,0.40234375,0.4560546875,0.5263671875,0.5703125,0.5595703125,0.5,0.435546875,0.40625,0.419921875,0.4580078125,0.490234375,0.48828125,0.4482421875,0.4091796875,0.4228515625,0.486328125,0.56640625,0.6201171875,0.6201171875,0.5703125,0.51171875,0.47265625,0.4765625,0.525390625,0.5966796875,0.65234375,0.673828125,0.6708984375,0.6220703125,0.53515625,0.4501953125,0.4013671875,0.4052734375,0.4482421875,0.494140625,0.5234375,0.537109375,0.548828125,0.5732421875,0.615234375,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.576171875,0.5966796875,0.615234375,0.6083984375,0.5703125,0.5107421875,0.4482421875,0.3837890625,0.3212890625,0.294921875,0.3271484375,0.4052734375,0.490234375,0.55078125,0.6005859375,0.640625,0.658203125,0.650390625,0.630859375,0.6171875,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.59765625,0.5859375,0.5166015625,0.4287109375,0.369140625,0.37109375,0.4287109375,0.494140625,0.53515625,0.548828125,0.552734375,0.5673828125,0.607421875,0.673828125,0.73046875,0.7236328125,0.64453125,0.52734375,0.4296875,0.3955078125,0.4287109375,0.4716796875,0.4794921875,0.4501953125,0.4072265625,0.37890625,0.38671875,0.4287109375,0.4814453125,0.5361328125,0.5771484375,0.5927734375,0.5859375,0.57421875,0.5703125,0.5751953125,0.59375,0.6083984375,0.5966796875,0.5537109375,0.4921875,0.4287109375,0.3798828125,0.37890625,0.4248046875,0.486328125,0.5234375,0.5087890625,0.4482421875,0.3759765625,0.3154296875,0.2900390625,0.3115234375,0.3623046875,0.4091796875,0.4287109375,0.447265625,0.4912109375,0.5380859375,0.560546875,0.541015625,0.490234375,0.4287109375,0.37109375,0.33203125,0.328125,0.3583984375,0.40234375,0.4306640625,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.5048828125,0.5341796875,0.5224609375,0.4736328125,0.4140625,0.376953125,0.376953125,0.3779296875,0.34375,0.2919921875,0.2568359375,0.2626953125,0.30859375,0.376953125,0.4423828125,0.48046875,0.4833984375,0.4638671875,0.4462890625,0.45703125,0.5,0.544921875,0.5673828125,0.5703125,0.568359375,0.580078125,0.6171875,0.673828125,0.7333984375,0.7783203125,0.78515625,0.75,0.69140625,0.6416015625,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.576171875,0.5966796875,0.615234375,0.6083984375,0.5703125,0.5107421875,0.4482421875,0.376953125,0.28125,0.201171875,0.177734375,0.220703125,0.30078125,0.376953125,0.4541015625,0.5419921875,0.6181640625,0.65625,0.6552734375,0.6357421875,0.6220703125,0.5986328125,0.5341796875,0.4521484375,0.3935546875,0.3876953125,0.4306640625,0.5,0.5732421875,0.646484375,0.6953125,0.701171875,0.673828125,0.638671875,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.6162109375,0.623046875,0.6318359375,0.6259765625,0.5966796875,0.55078125,0.5,0.455078125,0.4453125,0.482421875,0.5546875,0.62890625,0.671875,0.673828125,0.662109375,0.6484375,0.638671875,0.638671875,0.6484375,0.662109375,0.673828125,0.673828125,0.63671875,0.5732421875,0.5146484375,0.4892578125,0.505859375,0.55078125,0.5966796875,0.61328125,0.580078125,0.5029296875,0.4130859375,0.34765625,0.3251953125,0.3251953125,0.3662109375,0.44921875,0.5498046875,0.6328125,0.673828125,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.45703125,0.55078125,0.6181640625,0.6181640625,0.55078125,0.45703125,0.376953125,0.306640625,0.25390625,0.2568359375,0.70703125,0.74609375,0.71484375,0.6416015625,0.5693359375,0.509765625,0.4853515625,0.498046875,0.5224609375,0.53125,0.5029296875,0.439453125,0.380859375,0.3740234375,0.4228515625,0.4951171875,0.546875,0.544921875,0.4892578125,0.4248046875,0.3857421875,0.392578125,0.443359375,0.51171875,0.5595703125,0.5693359375,0.5576171875,0.515625,0.4619140625,0.431640625,0.443359375,0.4931640625,0.5595703125,0.634765625,0.71875,0.7724609375,0.7607421875,0.685546875,0.587890625,0.509765625,0.44921875,0.427734375,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.36328125,0.361328125,0.416015625,0.4931640625,0.5478515625,0.5458984375,0.4892578125,0.419921875,0.3603515625,0.33203125,0.3427734375,0.37890625,0.412109375,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.5595703125,0.619140625,0.6474609375,0.63671875,0.599609375,0.5673828125,0.5595703125,0.5673828125,0.6015625,0.6416015625,0.6572265625,0.6328125,0.5771484375,0.509765625,0.4541015625,0.4501953125,0.5009765625,0.5732421875,0.6220703125,0.6171875,0.5595703125,0.4912109375,0.4404296875,0.4287109375,0.4599609375,0.5146484375,0.5576171875,0.5693359375,0.5595703125,0.51171875,0.4453125,0.3984375,0.3974609375,0.44140625,0.509765625,0.5869140625,0.6689453125,0.7158203125,0.693359375,0.609375,0.5078125,0.4296875,0.3662109375,0.333984375,0.353515625,0.4208984375,0.505859375,0.564453125,0.5791015625,0.568359375,0.517578125,0.4443359375,0.3896484375,0.3818359375,0.421875,0.4892578125,0.55859375,0.60546875,0.609375,0.56640625,0.5009765625,0.4521484375,0.439453125,0.451171875,0.505859375,0.5859375,0.6484375,0.6630859375,0.6259765625,0.5595703125,0.486328125,0.419921875,0.3798828125,0.37890625,0.4052734375,0.4326171875,0.439453125,0.4423828125,0.458984375,0.48828125,0.5244140625,0.556640625,0.57421875,0.5791015625,0.580078125,0.5791015625,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.5595703125,0.5673828125,0.599609375,0.63671875,0.6474609375,0.619140625,0.5595703125,0.4892578125,0.431640625,0.4228515625,0.4658203125,0.5283203125,0.5693359375,0.5595703125,0.5,0.439453125,0.4248046875,0.4609375,0.517578125,0.5556640625,0.5458984375,0.4892578125,0.4345703125,0.43359375,0.48828125,0.5654296875,0.619140625,0.6162109375,0.5595703125,0.4912109375,0.44140625,0.431640625,0.4658203125,0.5234375,0.5673828125,0.5791015625,0.5693359375,0.51953125,0.44921875,0.3955078125,0.3876953125,0.42578125,0.4892578125,0.548828125,0.568359375,0.548828125,0.5146484375,0.49609375,0.5185546875,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.5673828125,0.599609375,0.63671875,0.6474609375,0.619140625,0.5595703125,0.4892578125,0.412109375,0.32421875,0.2646484375,0.2705078125,0.33984375,0.4326171875,0.509765625,0.5771484375,0.6337890625,0.658203125,0.64453125,0.607421875,0.576171875,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.56640625,0.5673828125,0.5107421875,0.4326171875,0.3779296875,0.380859375,0.439453125,0.5029296875,0.5302734375,0.521484375,0.498046875,0.48828125,0.5166015625,0.5791015625,0.63671875,0.6318359375,0.5634765625,0.466796875,0.3955078125,0.38671875,0.439453125,0.4970703125,0.5068359375,0.46875,0.4111328125,0.3720703125,0.3828125,0.439453125,0.5087890625,0.5732421875,0.61328125,0.615234375,0.5908203125,0.56640625,0.5595703125,0.56640625,0.5927734375,0.6181640625,0.6162109375,0.576171875,0.5107421875,0.439453125,0.3828125,0.37890625,0.4306640625,0.50390625,0.5537109375,0.548828125,0.4892578125,0.41796875,0.359375,0.3330078125,0.349609375,0.392578125,0.4296875,0.439453125,0.451171875,0.4931640625,0.5458984375,0.57421875,0.560546875,0.5078125,0.439453125,0.3720703125,0.3212890625,0.3095703125,0.33984375,0.3916015625,0.431640625,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.5556640625,0.5986328125,0.59765625,0.55078125,0.486328125,0.439453125,0.4296875,0.421875,0.380859375,0.328125,0.296875,0.30859375,0.3603515625,0.4296875,0.4912109375,0.5126953125,0.490234375,0.4501953125,0.4248046875,0.44140625,0.5,0.55859375,0.5771484375,0.5556640625,0.517578125,0.498046875,0.5185546875,0.5791015625,0.6474609375,0.6982421875,0.7099609375,0.6787109375,0.6240234375,0.5810546875,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5673828125,0.599609375,0.63671875,0.6474609375,0.619140625,0.5595703125,0.4892578125,0.41015625,0.3095703125,0.23046875,0.2138671875,0.265625,0.3515625,0.4296875,0.5029296875,0.5732421875,0.619140625,0.6259765625,0.603515625,0.5771484375,0.5693359375,0.5556640625,0.5048828125,0.435546875,0.3876953125,0.3857421875,0.4306640625,0.5,0.5712890625,0.6328125,0.6630859375,0.65234375,0.61328125,0.5791015625,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.5751953125,0.60546875,0.640625,0.65234375,0.625,0.5673828125,0.5,0.435546875,0.3955078125,0.40234375,0.453125,0.521484375,0.5693359375,0.5791015625,0.5771484375,0.5751953125,0.5732421875,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.5693359375,0.5224609375,0.4560546875,0.408203125,0.404296875,0.4443359375,0.509765625,0.57421875,0.6142578125,0.6083984375,0.5556640625,0.4853515625,0.4326171875,0.419921875,0.421875,0.44140625,0.4775390625,0.521484375,0.5576171875,0.5771484375,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.509765625,0.603515625,0.669921875,0.669921875,0.603515625,0.509765625,0.4296875,0.353515625,0.2783203125,0.2451171875,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.75390625,0.720703125,0.6279296875,0.5205078125,0.439453125,0.384765625,0.392578125,0.4638671875,0.560546875,0.630859375,0.6357421875,0.5791015625,0.5166015625,0.4931640625,0.5107421875,0.546875,0.5673828125,0.5478515625,0.4892578125,0.421875,0.36328125,0.3349609375,0.345703125,0.380859375,0.412109375,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.4990234375,0.5986328125,0.677734375,0.6953125,0.646484375,0.564453125,0.4892578125,0.4345703125,0.43359375,0.48828125,0.5654296875,0.619140625,0.6162109375,0.5595703125,0.5,0.4814453125,0.5068359375,0.5478515625,0.5712890625,0.55078125,0.4892578125,0.421875,0.3798828125,0.38671875,0.44140625,0.5146484375,0.5673828125,0.5791015625,0.568359375,0.5185546875,0.451171875,0.4033203125,0.400390625,0.443359375,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4501953125,0.4970703125,0.560546875,0.603515625,0.6015625,0.556640625,0.4892578125,0.4296875,0.4111328125,0.435546875,0.478515625,0.5048828125,0.48828125,0.4296875,0.3623046875,0.310546875,0.294921875,0.3203125,0.369140625,0.4091796875,0.419921875,0.4140625,0.384765625,0.353515625,0.3466796875,0.3779296875,0.439453125,0.509765625,0.5888671875,0.689453125,0.7685546875,0.78515625,0.7333984375,0.6474609375,0.5693359375,0.49609375,0.42578125,0.3798828125,0.373046875,0.3955078125,0.421875,0.4296875,0.4228515625,0.390625,0.353515625,0.3408203125,0.3681640625,0.4287109375,0.5,0.5712890625,0.6328125,0.6640625,0.6552734375,0.619140625,0.5869140625,0.5791015625,0.5849609375,0.60546875,0.62109375,0.607421875,0.5595703125,0.490234375,0.419921875,0.3564453125,0.322265625,0.33984375,0.404296875,0.4873046875,0.544921875,0.5595703125,0.5576171875,0.5419921875,0.5107421875,0.4736328125,0.44140625,0.4228515625,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.451171875,0.4404296875,0.478515625,0.5361328125,0.572265625,0.5595703125,0.5,0.439453125,0.4248046875,0.4609375,0.517578125,0.5556640625,0.5458984375,0.4892578125,0.431640625,0.4150390625,0.439453125,0.48046875,0.5029296875,0.4814453125,0.419921875,0.3505859375,0.2998046875,0.2900390625,0.32421875,0.3798828125,0.4208984375,0.4296875,0.419921875,0.3876953125,0.3515625,0.341796875,0.3720703125,0.4306640625,0.5,0.5546875,0.5576171875,0.5068359375,0.4326171875,0.380859375,0.3837890625,0.439453125,0.5087890625,0.5751953125,0.615234375,0.619140625,0.59375,0.5673828125,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.4521484375,0.5087890625,0.5908203125,0.6572265625,0.67578125,0.642578125,0.5791015625,0.5087890625,0.439453125,0.3916015625,0.3779296875,0.3935546875,0.4140625,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.57421875,0.615234375,0.611328125,0.5625,0.4931640625,0.4423828125,0.4296875,0.419921875,0.3876953125,0.353515625,0.345703125,0.376953125,0.439453125,0.509765625,0.5693359375,0.5888671875,0.564453125,0.5244140625,0.5,0.51953125,0.5791015625,0.634765625,0.62890625,0.5595703125,0.46484375,0.3935546875,0.3857421875,0.439453125,0.5,0.5244140625,0.5146484375,0.4931640625,0.486328125,0.515625,0.5791015625,0.6396484375,0.65234375,0.6142578125,0.5556640625,0.5146484375,0.5224609375,0.5791015625,0.642578125,0.673828125,0.65234375,0.58203125,0.4951171875,0.4345703125,0.419921875,0.431640625,0.4892578125,0.5732421875,0.640625,0.66015625,0.6259765625,0.5595703125,0.498046875,0.48046875,0.5078125,0.5546875,0.583984375,0.568359375,0.509765625,0.4423828125,0.3984375,0.3984375,0.44140625,0.5048828125,0.5498046875,0.5595703125,0.5673828125,0.6083984375,0.6611328125,0.6923828125,0.6806640625,0.62890625,0.5595703125,0.4892578125,0.4375,0.4248046875,0.45703125,0.513671875,0.5576171875,0.5693359375,0.5712890625,0.572265625,0.5732421875,0.5751953125,0.576171875,0.5771484375,0.5791015625,0.5771484375,0.5615234375,0.53125,0.4931640625,0.4609375,0.443359375,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5615234375,0.6259765625,0.66015625,0.654296875,0.62109375,0.5888671875,0.5791015625,0.568359375,0.5263671875,0.4736328125,0.4443359375,0.458984375,0.5107421875,0.5791015625,0.6357421875,0.6357421875,0.5771484375,0.49609375,0.439453125,0.44140625,0.5,0.5576171875,0.5595703125,0.50390625,0.4248046875,0.369140625,0.37109375,0.4296875,0.4990234375,0.548828125,0.5595703125,0.525390625,0.4697265625,0.4287109375,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.43359375,0.349609375,0.298828125,0.3154296875,0.3935546875,0.4912109375,0.5693359375,0.6328125,0.6650390625,0.6455078125,0.578125,0.4931640625,0.4345703125,0.419921875,0.41015625,0.376953125,0.33984375,0.3291015625,0.359375,0.419921875,0.4892578125,0.5556640625,0.5986328125,0.595703125,0.5478515625,0.48046875,0.4306640625,0.419921875,0.412109375,0.3798828125,0.34375,0.3349609375,0.3662109375,0.427734375,0.5,0.5673828125,0.611328125,0.6083984375,0.5576171875,0.4853515625,0.43359375,0.419921875,0.4296875,0.48046875,0.55078125,0.603515625,0.609375,0.5673828125,0.5,0.427734375,0.3671875,0.33984375,0.353515625,0.3935546875,0.4296875,0.439453125,0.4404296875,0.439453125,0.4365234375,0.4326171875,0.4296875,0.4287109375,0.4296875,0.4228515625,0.3896484375,0.349609375,0.3349609375,0.3603515625,0.4189453125,0.4892578125,0.5615234375,0.6240234375,0.6572265625,0.6484375,0.6123046875,0.5791015625,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.431640625,0.4326171875,0.4345703125,0.435546875,0.4365234375,0.4384765625,0.439453125,0.4345703125,0.412109375,0.390625,0.39453125,0.435546875,0.5,0.5693359375,0.6455078125,0.7353515625,0.798828125,0.798828125,0.7353515625,0.6455078125,0.5693359375,0.4892578125,0.380859375,0.283203125,0.7431640625,0.7021484375,0.60546875,0.501953125,0.4287109375,0.384765625,0.4111328125,0.5078125,0.62890625,0.7158203125,0.728515625,0.673828125,0.60546875,0.5556640625,0.529296875,0.521484375,0.515625,0.4931640625,0.4482421875,0.3955078125,0.34375,0.306640625,0.2958984375,0.306640625,0.3212890625,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.3955078125,0.484375,0.5615234375,0.5888671875,0.5615234375,0.5029296875,0.4482421875,0.4091796875,0.4228515625,0.486328125,0.56640625,0.6201171875,0.6201171875,0.5703125,0.517578125,0.5,0.5146484375,0.5380859375,0.5439453125,0.51171875,0.4482421875,0.3837890625,0.3583984375,0.3955078125,0.4853515625,0.5888671875,0.658203125,0.673828125,0.662109375,0.611328125,0.5380859375,0.48046875,0.46484375,0.494140625,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4375,0.4755859375,0.525390625,0.556640625,0.5498046875,0.5068359375,0.4482421875,0.3935546875,0.3701171875,0.380859375,0.4091796875,0.4296875,0.419921875,0.376953125,0.3251953125,0.275390625,0.2470703125,0.25,0.2783203125,0.3095703125,0.3251953125,0.33203125,0.33203125,0.337890625,0.3671875,0.421875,0.4873046875,0.55078125,0.6220703125,0.7177734375,0.7978515625,0.8212890625,0.7783203125,0.6982421875,0.6220703125,0.544921875,0.45703125,0.380859375,0.3427734375,0.34375,0.36328125,0.376953125,0.3798828125,0.361328125,0.3369140625,0.333984375,0.3671875,0.4287109375,0.5,0.5732421875,0.646484375,0.69921875,0.71484375,0.7001953125,0.6796875,0.673828125,0.6728515625,0.66015625,0.6201171875,0.5498046875,0.462890625,0.3837890625,0.3251953125,0.2802734375,0.2666015625,0.3037109375,0.3857421875,0.48046875,0.546875,0.5703125,0.57421875,0.552734375,0.5,0.4306640625,0.3681640625,0.3330078125,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.5,0.4912109375,0.521484375,0.564453125,0.5849609375,0.5615234375,0.5,0.435546875,0.40625,0.419921875,0.4580078125,0.490234375,0.48828125,0.4482421875,0.4052734375,0.39453125,0.412109375,0.431640625,0.4287109375,0.3916015625,0.3251953125,0.2587890625,0.21875,0.224609375,0.2724609375,0.3359375,0.3759765625,0.376953125,0.36328125,0.3408203125,0.328125,0.3427734375,0.3876953125,0.4453125,0.5,0.5400390625,0.5390625,0.4951171875,0.43359375,0.388671875,0.3876953125,0.4287109375,0.4833984375,0.5439453125,0.5927734375,0.6123046875,0.6044921875,0.583984375,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.44140625,0.5009765625,0.59375,0.6796875,0.724609375,0.716796875,0.673828125,0.615234375,0.5361328125,0.44921875,0.37890625,0.3388671875,0.326171875,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.5986328125,0.6201171875,0.5986328125,0.53515625,0.45703125,0.3984375,0.376953125,0.3623046875,0.3408203125,0.33203125,0.3564453125,0.4140625,0.486328125,0.55078125,0.60546875,0.62890625,0.6220703125,0.6025390625,0.595703125,0.619140625,0.673828125,0.720703125,0.7060546875,0.625,0.5126953125,0.421875,0.3935546875,0.4287109375,0.474609375,0.4990234375,0.509765625,0.5224609375,0.552734375,0.60546875,0.673828125,0.736328125,0.7587890625,0.734375,0.6826171875,0.638671875,0.6337890625,0.673828125,0.7158203125,0.7177734375,0.6572265625,0.5478515625,0.4306640625,0.3505859375,0.3251953125,0.3310546875,0.39453125,0.5009765625,0.6005859375,0.6494140625,0.6328125,0.5703125,0.5087890625,0.4892578125,0.517578125,0.5693359375,0.6064453125,0.6015625,0.55078125,0.4931640625,0.45703125,0.45703125,0.4931640625,0.541015625,0.5712890625,0.5703125,0.5703125,0.6044921875,0.6552734375,0.6904296875,0.6845703125,0.638671875,0.5703125,0.5,0.4482421875,0.4384765625,0.4775390625,0.544921875,0.6005859375,0.6220703125,0.6318359375,0.6396484375,0.6455078125,0.650390625,0.6552734375,0.6630859375,0.673828125,0.677734375,0.6552734375,0.603515625,0.5341796875,0.4716796875,0.4365234375,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.5244140625,0.6103515625,0.681640625,0.71484375,0.7099609375,0.6884765625,0.673828125,0.654296875,0.611328125,0.5634765625,0.5419921875,0.5615234375,0.6123046875,0.673828125,0.71875,0.701171875,0.6201171875,0.517578125,0.4462890625,0.4423828125,0.5,0.556640625,0.552734375,0.4853515625,0.3916015625,0.32421875,0.3203125,0.376953125,0.4443359375,0.484375,0.478515625,0.4296875,0.3671875,0.3271484375,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.486328125,0.419921875,0.38671875,0.4091796875,0.48046875,0.5615234375,0.6220703125,0.666015625,0.6728515625,0.6240234375,0.529296875,0.4228515625,0.349609375,0.3251953125,0.3095703125,0.28125,0.2607421875,0.271484375,0.318359375,0.3837890625,0.4482421875,0.5048828125,0.5341796875,0.5185546875,0.4609375,0.3876953125,0.3369140625,0.3251953125,0.3193359375,0.298828125,0.2841796875,0.2998046875,0.3525390625,0.42578125,0.5,0.56640625,0.6044921875,0.5859375,0.5146484375,0.419921875,0.349609375,0.3251953125,0.3291015625,0.384765625,0.4755859375,0.5556640625,0.5888671875,0.5634765625,0.5,0.4267578125,0.359375,0.3232421875,0.330078125,0.3701171875,0.41015625,0.4287109375,0.4365234375,0.431640625,0.4140625,0.3916015625,0.375,0.3701171875,0.376953125,0.37890625,0.353515625,0.3173828125,0.3017578125,0.3232421875,0.3779296875,0.4482421875,0.5234375,0.6025390625,0.662109375,0.6826171875,0.666015625,0.6376953125,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.38671875,0.39453125,0.400390625,0.4052734375,0.4111328125,0.4189453125,0.4287109375,0.4365234375,0.4375,0.4443359375,0.4697265625,0.5146484375,0.5693359375,0.6220703125,0.6787109375,0.7451171875,0.79296875,0.79296875,0.7451171875,0.6787109375,0.6220703125,0.556640625,0.4482421875,0.330078125,0.708984375,0.6826171875,0.6064453125,0.5244140625,0.46875,0.44140625,0.482421875,0.587890625,0.708984375,0.7900390625,0.796875,0.740234375,0.6650390625,0.5810546875,0.5048828125,0.4521484375,0.4248046875,0.4111328125,0.39453125,0.373046875,0.3427734375,0.30859375,0.28125,0.2646484375,0.259765625,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.30859375,0.369140625,0.421875,0.447265625,0.439453125,0.416015625,0.39453125,0.3857421875,0.4140625,0.474609375,0.5380859375,0.57421875,0.568359375,0.5302734375,0.4921875,0.484375,0.4990234375,0.513671875,0.50390625,0.4609375,0.39453125,0.3330078125,0.322265625,0.3857421875,0.5078125,0.638671875,0.7216796875,0.740234375,0.73046875,0.6875,0.6240234375,0.568359375,0.546875,0.5634765625,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4736328125,0.4912109375,0.5078125,0.5078125,0.482421875,0.4404296875,0.39453125,0.3525390625,0.326171875,0.3251953125,0.3447265625,0.3681640625,0.376953125,0.3642578125,0.33984375,0.2978515625,0.2509765625,0.2197265625,0.2158203125,0.2333984375,0.2587890625,0.2861328125,0.3212890625,0.369140625,0.4306640625,0.49609375,0.5556640625,0.6044921875,0.6591796875,0.73828125,0.806640625,0.826171875,0.78515625,0.7099609375,0.634765625,0.5556640625,0.4541015625,0.361328125,0.30859375,0.306640625,0.3349609375,0.3642578125,0.3828125,0.376953125,0.3583984375,0.3525390625,0.376953125,0.4306640625,0.5,0.5751953125,0.65625,0.7236328125,0.7568359375,0.7568359375,0.744140625,0.740234375,0.7314453125,0.6845703125,0.5908203125,0.4716796875,0.361328125,0.2890625,0.2587890625,0.2431640625,0.2470703125,0.2841796875,0.3525390625,0.431640625,0.4951171875,0.5302734375,0.548828125,0.53515625,0.48046875,0.3974609375,0.3173828125,0.2685546875,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.568359375,0.5634765625,0.5849609375,0.607421875,0.6044921875,0.5654296875,0.5,0.4296875,0.3759765625,0.353515625,0.36328125,0.390625,0.4052734375,0.39453125,0.3828125,0.39453125,0.4140625,0.416015625,0.38671875,0.3291015625,0.2587890625,0.1953125,0.1708984375,0.201171875,0.2705078125,0.341796875,0.376953125,0.3642578125,0.3388671875,0.3251953125,0.3359375,0.375,0.4287109375,0.474609375,0.5,0.5146484375,0.513671875,0.49609375,0.47265625,0.455078125,0.4541015625,0.46875,0.4931640625,0.529296875,0.56640625,0.5849609375,0.580078125,0.556640625,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.478515625,0.5224609375,0.5966796875,0.67578125,0.7333984375,0.751953125,0.740234375,0.7099609375,0.6376953125,0.52734375,0.408203125,0.314453125,0.267578125,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.62109375,0.62109375,0.5908203125,0.5302734375,0.45703125,0.3984375,0.3642578125,0.337890625,0.3212890625,0.3359375,0.3916015625,0.4736328125,0.55078125,0.6044921875,0.6455078125,0.6689453125,0.673828125,0.6708984375,0.67578125,0.69921875,0.740234375,0.775390625,0.7646484375,0.6982421875,0.599609375,0.5087890625,0.462890625,0.46875,0.484375,0.4892578125,0.4990234375,0.533203125,0.5927734375,0.6669921875,0.740234375,0.8076171875,0.8486328125,0.84765625,0.8095703125,0.759765625,0.7314453125,0.740234375,0.7509765625,0.7216796875,0.6376953125,0.513671875,0.38671875,0.298828125,0.2587890625,0.25,0.3046875,0.4140625,0.52734375,0.59375,0.58984375,0.5302734375,0.4677734375,0.451171875,0.48828125,0.5576171875,0.619140625,0.63671875,0.6044921875,0.5625,0.53515625,0.5302734375,0.541015625,0.552734375,0.55078125,0.5302734375,0.5146484375,0.5361328125,0.5849609375,0.626953125,0.6328125,0.595703125,0.5302734375,0.458984375,0.404296875,0.39453125,0.44140625,0.5234375,0.5966796875,0.634765625,0.6591796875,0.67578125,0.6845703125,0.6904296875,0.69921875,0.7158203125,0.740234375,0.759765625,0.74609375,0.6904296875,0.607421875,0.52734375,0.4794921875,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.4755859375,0.5859375,0.6953125,0.767578125,0.787109375,0.767578125,0.740234375,0.7080078125,0.662109375,0.6240234375,0.6162109375,0.6435546875,0.6923828125,0.740234375,0.7685546875,0.73046875,0.6318359375,0.5185546875,0.4443359375,0.44140625,0.5,0.556640625,0.55078125,0.48046875,0.3837890625,0.3134765625,0.3076171875,0.3642578125,0.427734375,0.4521484375,0.421875,0.3525390625,0.28125,0.24609375,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.55859375,0.5185546875,0.501953125,0.521484375,0.5654296875,0.609375,0.634765625,0.6484375,0.6318359375,0.5712890625,0.474609375,0.3720703125,0.2958984375,0.2587890625,0.23046875,0.201171875,0.1923828125,0.220703125,0.2783203125,0.34375,0.39453125,0.435546875,0.4521484375,0.4306640625,0.375,0.3115234375,0.2685546875,0.2587890625,0.2548828125,0.2421875,0.2421875,0.275390625,0.3427734375,0.423828125,0.5,0.5673828125,0.60546875,0.5849609375,0.501953125,0.390625,0.2998046875,0.2587890625,0.2490234375,0.30078125,0.40234375,0.5078125,0.568359375,0.5595703125,0.5,0.42578125,0.353515625,0.314453125,0.3251953125,0.376953125,0.4345703125,0.46875,0.48828125,0.4794921875,0.44140625,0.3916015625,0.353515625,0.3447265625,0.3642578125,0.380859375,0.361328125,0.3203125,0.2861328125,0.287109375,0.3271484375,0.39453125,0.4736328125,0.5703125,0.6572265625,0.701171875,0.697265625,0.6650390625,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.388671875,0.4052734375,0.4140625,0.4189453125,0.427734375,0.4443359375,0.46875,0.49609375,0.5244140625,0.5517578125,0.5771484375,0.59765625,0.6162109375,0.634765625,0.65625,0.6806640625,0.6982421875,0.6982421875,0.6806640625,0.65625,0.634765625,0.6005859375,0.51171875,0.39453125,0.666015625,0.662109375,0.6181640625,0.564453125,0.5302734375,0.51953125,0.5673828125,0.662109375,0.759765625,0.8125,0.8017578125,0.740234375,0.6591796875,0.5498046875,0.4384765625,0.361328125,0.3349609375,0.3447265625,0.3642578125,0.3798828125,0.380859375,0.361328125,0.3251953125,0.2880859375,0.263671875,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.2841796875,0.3056640625,0.3193359375,0.328125,0.3359375,0.3466796875,0.3642578125,0.388671875,0.4306640625,0.4775390625,0.5078125,0.5126953125,0.4951171875,0.46875,0.451171875,0.4609375,0.4853515625,0.5,0.482421875,0.4326171875,0.3642578125,0.302734375,0.2958984375,0.3671875,0.4970703125,0.6337890625,0.7216796875,0.740234375,0.734375,0.7060546875,0.6630859375,0.6240234375,0.60546875,0.611328125,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.529296875,0.5244140625,0.5078125,0.474609375,0.4326171875,0.3935546875,0.3642578125,0.3369140625,0.3095703125,0.2978515625,0.30859375,0.3388671875,0.3720703125,0.39453125,0.4033203125,0.3740234375,0.3134765625,0.2509765625,0.21484375,0.220703125,0.2587890625,0.30859375,0.3720703125,0.4443359375,0.513671875,0.568359375,0.6064453125,0.634765625,0.669921875,0.7275390625,0.7783203125,0.7900390625,0.75,0.6787109375,0.6044921875,0.5234375,0.4189453125,0.3251953125,0.28125,0.2958984375,0.345703125,0.39453125,0.4306640625,0.435546875,0.4140625,0.3916015625,0.39453125,0.43359375,0.5,0.5751953125,0.65625,0.7236328125,0.7568359375,0.7568359375,0.744140625,0.740234375,0.7265625,0.6572265625,0.53515625,0.400390625,0.2958984375,0.251953125,0.2587890625,0.2763671875,0.2890625,0.3056640625,0.333984375,0.375,0.4228515625,0.46875,0.5087890625,0.515625,0.4775390625,0.40234375,0.322265625,0.2705078125,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.6162109375,0.6220703125,0.640625,0.646484375,0.6220703125,0.568359375,0.5,0.423828125,0.34375,0.2861328125,0.2734375,0.2998046875,0.3388671875,0.3642578125,0.3896484375,0.4326171875,0.4658203125,0.4609375,0.41015625,0.333984375,0.2587890625,0.1982421875,0.189453125,0.240234375,0.3251953125,0.400390625,0.42578125,0.39453125,0.35546875,0.345703125,0.375,0.4306640625,0.484375,0.5087890625,0.5,0.484375,0.4853515625,0.5029296875,0.5263671875,0.5439453125,0.544921875,0.5302734375,0.5166015625,0.521484375,0.5380859375,0.5498046875,0.5419921875,0.51171875,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.5322265625,0.546875,0.5791015625,0.626953125,0.677734375,0.716796875,0.740234375,0.7470703125,0.703125,0.5986328125,0.4638671875,0.341796875,0.2724609375,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.6171875,0.6005859375,0.5771484375,0.541015625,0.4931640625,0.44140625,0.39453125,0.3525390625,0.3330078125,0.3583984375,0.4306640625,0.5224609375,0.59765625,0.634765625,0.6591796875,0.67578125,0.6845703125,0.6904296875,0.69921875,0.7158203125,0.740234375,0.763671875,0.7685546875,0.740234375,0.681640625,0.611328125,0.556640625,0.5302734375,0.505859375,0.4765625,0.4658203125,0.5,0.57421875,0.6630859375,0.740234375,0.8125,0.8759765625,0.9033203125,0.880859375,0.82421875,0.7685546875,0.740234375,0.716796875,0.6708984375,0.59375,0.494140625,0.392578125,0.3115234375,0.2587890625,0.2294921875,0.263671875,0.35546875,0.4609375,0.5283203125,0.52734375,0.46875,0.4072265625,0.3896484375,0.43359375,0.5185546875,0.6044921875,0.646484375,0.634765625,0.611328125,0.5986328125,0.5908203125,0.5771484375,0.5517578125,0.513671875,0.46875,0.4345703125,0.443359375,0.48828125,0.5380859375,0.55859375,0.5322265625,0.46875,0.396484375,0.333984375,0.3173828125,0.3642578125,0.4560546875,0.5478515625,0.6044921875,0.6455078125,0.6689453125,0.673828125,0.6708984375,0.67578125,0.69921875,0.740234375,0.779296875,0.787109375,0.748046875,0.673828125,0.5927734375,0.541015625,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.44921875,0.5732421875,0.7041015625,0.7919921875,0.814453125,0.78515625,0.740234375,0.6923828125,0.6435546875,0.6162109375,0.6240234375,0.662109375,0.7080078125,0.740234375,0.75,0.6982421875,0.5966796875,0.4912109375,0.4306640625,0.439453125,0.5,0.556640625,0.5546875,0.4912109375,0.40234375,0.3388671875,0.3369140625,0.39453125,0.455078125,0.4638671875,0.4140625,0.328125,0.2529296875,0.2275390625,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.611328125,0.599609375,0.6015625,0.61328125,0.6220703125,0.6201171875,0.6044921875,0.583984375,0.5546875,0.5078125,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.2138671875,0.177734375,0.1728515625,0.208984375,0.271484375,0.330078125,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.2548828125,0.2421875,0.2421875,0.275390625,0.3427734375,0.423828125,0.5,0.5703125,0.619140625,0.61328125,0.5380859375,0.4228515625,0.318359375,0.2587890625,0.23046875,0.2685546875,0.3671875,0.48046875,0.5546875,0.5576171875,0.5,0.423828125,0.3486328125,0.30859375,0.328125,0.396484375,0.474609375,0.5302734375,0.564453125,0.5546875,0.4990234375,0.4248046875,0.369140625,0.359375,0.39453125,0.427734375,0.416015625,0.36328125,0.306640625,0.279296875,0.3017578125,0.3642578125,0.4453125,0.5537109375,0.654296875,0.70703125,0.6982421875,0.6533203125,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.435546875,0.458984375,0.4638671875,0.4609375,0.4658203125,0.4892578125,0.5302734375,0.578125,0.6318359375,0.6708984375,0.6796875,0.6591796875,0.6279296875,0.6044921875,0.583984375,0.55859375,0.541015625,0.541015625,0.55859375,0.583984375,0.6044921875,0.6083984375,0.5546875,0.4580078125,0.6318359375,0.642578125,0.619140625,0.5869140625,0.5703125,0.572265625,0.619140625,0.693359375,0.755859375,0.7734375,0.7392578125,0.673828125,0.58984375,0.4716796875,0.3544921875,0.28515625,0.28125,0.32421875,0.376953125,0.42578125,0.45703125,0.4541015625,0.4189453125,0.3701171875,0.333984375,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.330078125,0.314453125,0.2900390625,0.27734375,0.2900390625,0.328125,0.376953125,0.4296875,0.4794921875,0.5078125,0.50390625,0.4755859375,0.4453125,0.4287109375,0.427734375,0.455078125,0.4951171875,0.5166015625,0.4990234375,0.447265625,0.376953125,0.314453125,0.2978515625,0.3505859375,0.458984375,0.5791015625,0.65625,0.673828125,0.6708984375,0.658203125,0.638671875,0.62109375,0.611328125,0.61328125,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.5673828125,0.5498046875,0.5146484375,0.4677734375,0.4228515625,0.3916015625,0.376953125,0.361328125,0.3330078125,0.30859375,0.310546875,0.34375,0.3955078125,0.4482421875,0.486328125,0.47265625,0.4091796875,0.3291015625,0.275390625,0.2763671875,0.3251953125,0.390625,0.4658203125,0.53515625,0.5830078125,0.60546875,0.61328125,0.6220703125,0.6396484375,0.6806640625,0.720703125,0.7275390625,0.69140625,0.6240234375,0.55078125,0.470703125,0.3701171875,0.2880859375,0.2646484375,0.306640625,0.380859375,0.4482421875,0.4990234375,0.5078125,0.4775390625,0.4345703125,0.4140625,0.4375,0.5,0.5732421875,0.646484375,0.69921875,0.71484375,0.7001953125,0.6796875,0.673828125,0.658203125,0.5859375,0.470703125,0.357421875,0.2890625,0.2841796875,0.3251953125,0.369140625,0.3828125,0.3701171875,0.349609375,0.3466796875,0.3740234375,0.4287109375,0.486328125,0.5185546875,0.5068359375,0.453125,0.384765625,0.3369140625,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.619140625,0.6376953125,0.662109375,0.6650390625,0.6318359375,0.5703125,0.5,0.419921875,0.3232421875,0.244140625,0.220703125,0.2568359375,0.3203125,0.376953125,0.435546875,0.5087890625,0.5595703125,0.5546875,0.4921875,0.4033203125,0.3251953125,0.267578125,0.265625,0.3251953125,0.4140625,0.4833984375,0.4951171875,0.4482421875,0.396484375,0.3876953125,0.42578125,0.4873046875,0.5341796875,0.5390625,0.5,0.458984375,0.4599609375,0.50390625,0.5654296875,0.6103515625,0.611328125,0.5703125,0.525390625,0.5068359375,0.51171875,0.5224609375,0.517578125,0.4853515625,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.5654296875,0.5478515625,0.533203125,0.5390625,0.5712890625,0.62109375,0.673828125,0.71484375,0.7099609375,0.6416015625,0.5283203125,0.4130859375,0.3408203125,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.576171875,0.5537109375,0.5517578125,0.552734375,0.541015625,0.5048828125,0.4482421875,0.390625,0.361328125,0.380859375,0.4482421875,0.5341796875,0.5986328125,0.6220703125,0.6318359375,0.6396484375,0.6455078125,0.650390625,0.6552734375,0.6630859375,0.673828125,0.6884765625,0.712890625,0.7294921875,0.7197265625,0.6796875,0.623046875,0.5703125,0.5126953125,0.4462890625,0.40625,0.4248046875,0.5,0.59375,0.673828125,0.75,0.83203125,0.8837890625,0.875,0.8115234375,0.7333984375,0.673828125,0.6240234375,0.580078125,0.5390625,0.4951171875,0.443359375,0.38671875,0.3251953125,0.2783203125,0.2880859375,0.3525390625,0.4365234375,0.4921875,0.48828125,0.4287109375,0.365234375,0.341796875,0.3798828125,0.46484375,0.5595703125,0.6171875,0.6220703125,0.615234375,0.6201171875,0.62109375,0.6005859375,0.5537109375,0.4921875,0.4287109375,0.37890625,0.3759765625,0.41796875,0.474609375,0.5068359375,0.490234375,0.4287109375,0.353515625,0.2802734375,0.2490234375,0.28515625,0.376953125,0.478515625,0.55078125,0.60546875,0.62890625,0.6220703125,0.6025390625,0.595703125,0.619140625,0.673828125,0.73046875,0.7626953125,0.7509765625,0.6982421875,0.62890625,0.5810546875,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.462890625,0.5869140625,0.7119140625,0.78515625,0.787109375,0.736328125,0.673828125,0.6123046875,0.5615234375,0.5419921875,0.5634765625,0.611328125,0.654296875,0.673828125,0.669921875,0.6142578125,0.5234375,0.443359375,0.41015625,0.435546875,0.5,0.55859375,0.5625,0.5107421875,0.4365234375,0.384765625,0.3896484375,0.4482421875,0.505859375,0.5078125,0.4482421875,0.359375,0.2900390625,0.2783203125,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.6171875,0.630859375,0.650390625,0.658203125,0.640625,0.6005859375,0.55078125,0.5048828125,0.4755859375,0.4619140625,0.4501953125,0.42578125,0.3837890625,0.3251953125,0.265625,0.220703125,0.2138671875,0.2490234375,0.3076171875,0.357421875,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.3193359375,0.298828125,0.2841796875,0.2998046875,0.3525390625,0.42578125,0.5,0.57421875,0.640625,0.6611328125,0.6103515625,0.5068359375,0.3994140625,0.3251953125,0.2802734375,0.2978515625,0.37890625,0.4814453125,0.552734375,0.556640625,0.5,0.4228515625,0.34375,0.2998046875,0.3232421875,0.4033203125,0.4990234375,0.5703125,0.6181640625,0.6123046875,0.55078125,0.466796875,0.4052734375,0.3994140625,0.4482421875,0.49609375,0.490234375,0.4326171875,0.357421875,0.3095703125,0.3173828125,0.376953125,0.4599609375,0.5693359375,0.6669921875,0.7080078125,0.6826171875,0.6171875,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.501953125,0.525390625,0.5185546875,0.4990234375,0.4921875,0.515625,0.5703125,0.63671875,0.708984375,0.75390625,0.744140625,0.6845703125,0.609375,0.55078125,0.494140625,0.427734375,0.3798828125,0.3798828125,0.427734375,0.494140625,0.55078125,0.5888671875,0.5712890625,0.50390625,0.6220703125,0.6240234375,0.5966796875,0.568359375,0.5595703125,0.568359375,0.611328125,0.6689453125,0.705078125,0.697265625,0.6484375,0.5791015625,0.49609375,0.3857421875,0.2890625,0.25,0.283203125,0.3564453125,0.4296875,0.49609375,0.544921875,0.5556640625,0.5234375,0.470703125,0.4296875,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.412109375,0.375,0.326171875,0.2998046875,0.3134765625,0.36328125,0.4296875,0.4970703125,0.548828125,0.5654296875,0.5390625,0.490234375,0.4501953125,0.439453125,0.4482421875,0.4873046875,0.5380859375,0.56640625,0.5517578125,0.5,0.4296875,0.36328125,0.3291015625,0.349609375,0.4189453125,0.505859375,0.5654296875,0.5791015625,0.5791015625,0.576171875,0.5732421875,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.556640625,0.5419921875,0.513671875,0.48046875,0.451171875,0.4345703125,0.4296875,0.419921875,0.38671875,0.3486328125,0.3359375,0.36328125,0.421875,0.4892578125,0.544921875,0.5458984375,0.490234375,0.4130859375,0.359375,0.3623046875,0.419921875,0.4912109375,0.5595703125,0.6044921875,0.6142578125,0.595703125,0.57421875,0.5693359375,0.5791015625,0.615234375,0.6552734375,0.6689453125,0.6416015625,0.5810546875,0.509765625,0.4296875,0.333984375,0.263671875,0.259765625,0.3212890625,0.412109375,0.4892578125,0.5478515625,0.55859375,0.5205078125,0.462890625,0.4267578125,0.439453125,0.5,0.5712890625,0.6328125,0.6640625,0.6552734375,0.619140625,0.5869140625,0.5791015625,0.56640625,0.5068359375,0.419921875,0.349609375,0.326171875,0.357421875,0.419921875,0.4765625,0.48828125,0.453125,0.400390625,0.3671875,0.380859375,0.439453125,0.5078125,0.556640625,0.564453125,0.529296875,0.47265625,0.4296875,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.576171875,0.6083984375,0.6455078125,0.658203125,0.630859375,0.5703125,0.5,0.4189453125,0.318359375,0.23828125,0.220703125,0.271484375,0.3544921875,0.4296875,0.505859375,0.5966796875,0.66015625,0.6591796875,0.5927734375,0.4990234375,0.419921875,0.361328125,0.3583984375,0.4130859375,0.4912109375,0.546875,0.5458984375,0.4892578125,0.4306640625,0.4208984375,0.4609375,0.5224609375,0.564453125,0.5556640625,0.5,0.4443359375,0.44140625,0.4921875,0.56640625,0.6181640625,0.615234375,0.5595703125,0.5,0.4755859375,0.4892578125,0.515625,0.52734375,0.5009765625,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5498046875,0.5126953125,0.466796875,0.4423828125,0.4599609375,0.5126953125,0.5791015625,0.6416015625,0.6728515625,0.6494140625,0.5791015625,0.4921875,0.4326171875,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.5107421875,0.4921875,0.513671875,0.55078125,0.5712890625,0.5498046875,0.4892578125,0.4228515625,0.380859375,0.3837890625,0.4345703125,0.5048828125,0.5556640625,0.5693359375,0.5712890625,0.572265625,0.5732421875,0.5751953125,0.576171875,0.5771484375,0.5791015625,0.58984375,0.62890625,0.6748046875,0.6982421875,0.6796875,0.626953125,0.5595703125,0.4833984375,0.3935546875,0.33203125,0.3359375,0.4052734375,0.4990234375,0.5791015625,0.658203125,0.7509765625,0.814453125,0.8134765625,0.7470703125,0.6552734375,0.5791015625,0.5185546875,0.490234375,0.494140625,0.5107421875,0.5126953125,0.482421875,0.419921875,0.3623046875,0.35546875,0.400390625,0.46484375,0.5087890625,0.4990234375,0.439453125,0.373046875,0.337890625,0.3544921875,0.419921875,0.501953125,0.5576171875,0.5693359375,0.57421875,0.5986328125,0.62109375,0.6171875,0.576171875,0.5107421875,0.439453125,0.3818359375,0.3720703125,0.412109375,0.47265625,0.51171875,0.5,0.439453125,0.3623046875,0.27734375,0.2275390625,0.24609375,0.328125,0.4296875,0.509765625,0.5693359375,0.5888671875,0.564453125,0.5244140625,0.5,0.51953125,0.5791015625,0.646484375,0.6953125,0.7041015625,0.6689453125,0.6123046875,0.5693359375,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.5126953125,0.6240234375,0.72265625,0.76171875,0.728515625,0.654296875,0.5791015625,0.5107421875,0.458984375,0.4443359375,0.4736328125,0.5263671875,0.568359375,0.5791015625,0.5693359375,0.5185546875,0.4482421875,0.3955078125,0.3896484375,0.431640625,0.5,0.55859375,0.568359375,0.5263671875,0.462890625,0.4208984375,0.4296875,0.4892578125,0.5478515625,0.55078125,0.4970703125,0.41796875,0.3623046875,0.36328125,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.576171875,0.607421875,0.64453125,0.658203125,0.6337890625,0.5771484375,0.509765625,0.4501953125,0.4306640625,0.4501953125,0.484375,0.5029296875,0.48046875,0.419921875,0.3515625,0.30078125,0.2890625,0.3203125,0.375,0.41796875,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.412109375,0.3798828125,0.34375,0.3349609375,0.3662109375,0.427734375,0.5,0.5771484375,0.66015625,0.7080078125,0.6865234375,0.6025390625,0.5,0.419921875,0.36328125,0.36328125,0.421875,0.5029296875,0.5595703125,0.5576171875,0.5,0.421875,0.3359375,0.283203125,0.2998046875,0.3798828125,0.4794921875,0.5595703125,0.6162109375,0.6181640625,0.5634765625,0.4853515625,0.4306640625,0.4326171875,0.4892578125,0.5458984375,0.548828125,0.4951171875,0.4189453125,0.3662109375,0.37109375,0.4296875,0.5107421875,0.6142578125,0.697265625,0.7177734375,0.6689453125,0.5859375,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5498046875,0.568359375,0.544921875,0.50390625,0.48046875,0.4990234375,0.5595703125,0.6357421875,0.720703125,0.7734375,0.759765625,0.68359375,0.5869140625,0.509765625,0.43359375,0.34375,0.2802734375,0.2802734375,0.34375,0.43359375,0.509765625,0.5654296875,0.5712890625,0.5263671875,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.6630859375,0.5966796875,0.513671875,0.4541015625,0.439453125,0.4482421875,0.4873046875,0.5380859375,0.56640625,0.5517578125,0.5,0.4296875,0.3525390625,0.2744140625,0.2373046875,0.271484375,0.3662109375,0.4765625,0.5595703125,0.62890625,0.681640625,0.6943359375,0.6640625,0.611328125,0.5693359375,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.568359375,0.5263671875,0.4736328125,0.4443359375,0.458984375,0.5107421875,0.5791015625,0.6474609375,0.6982421875,0.7119140625,0.681640625,0.6298828125,0.5888671875,0.5791015625,0.5888671875,0.626953125,0.6748046875,0.69921875,0.681640625,0.6279296875,0.5595703125,0.4873046875,0.4189453125,0.373046875,0.365234375,0.38671875,0.412109375,0.419921875,0.4208984375,0.421875,0.4208984375,0.4189453125,0.41796875,0.41796875,0.419921875,0.421875,0.423828125,0.42578125,0.42578125,0.423828125,0.421875,0.419921875,0.421875,0.4375,0.46875,0.5087890625,0.5439453125,0.5634765625,0.5693359375,0.5595703125,0.5126953125,0.4462890625,0.3984375,0.39453125,0.4345703125,0.5,0.55859375,0.5771484375,0.5556640625,0.517578125,0.498046875,0.5185546875,0.5791015625,0.64453125,0.677734375,0.6591796875,0.5908203125,0.5048828125,0.4443359375,0.4296875,0.439453125,0.4873046875,0.5537109375,0.6005859375,0.6015625,0.5576171875,0.4892578125,0.41015625,0.3154296875,0.2490234375,0.2490234375,0.3154296875,0.41015625,0.4892578125,0.5498046875,0.5634765625,0.5283203125,0.4716796875,0.43359375,0.4423828125,0.5,0.564453125,0.6044921875,0.6005859375,0.552734375,0.486328125,0.439453125,0.4296875,0.4248046875,0.400390625,0.3779296875,0.3818359375,0.4228515625,0.48828125,0.5595703125,0.6181640625,0.6279296875,0.58984375,0.533203125,0.49609375,0.5087890625,0.5693359375,0.6396484375,0.693359375,0.7080078125,0.6806640625,0.6298828125,0.5888671875,0.5791015625,0.576171875,0.55859375,0.5283203125,0.4912109375,0.4599609375,0.443359375,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.4326171875,0.4853515625,0.5556640625,0.6083984375,0.6142578125,0.57421875,0.509765625,0.4345703125,0.349609375,0.296875,0.3115234375,0.3896484375,0.48828125,0.5693359375,0.6494140625,0.7431640625,0.8095703125,0.8095703125,0.7431640625,0.6494140625,0.5693359375,0.5078125,0.4892578125,0.5146484375,0.55859375,0.5859375,0.5693359375,0.509765625,0.451171875,0.4404296875,0.4794921875,0.5390625,0.578125,0.568359375,0.509765625,0.44921875,0.427734375,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.3642578125,0.37109375,0.44140625,0.5380859375,0.6083984375,0.6142578125,0.5595703125,0.48828125,0.4228515625,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.4296875,0.38671875,0.3310546875,0.2978515625,0.30859375,0.3603515625,0.4296875,0.5029296875,0.5732421875,0.6201171875,0.62890625,0.609375,0.5859375,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.3818359375,0.376953125,0.42578125,0.498046875,0.548828125,0.544921875,0.4892578125,0.421875,0.365234375,0.3408203125,0.3544921875,0.3916015625,0.4228515625,0.4296875,0.427734375,0.42578125,0.423828125,0.423828125,0.42578125,0.427734375,0.4296875,0.44140625,0.4853515625,0.5419921875,0.57421875,0.5615234375,0.509765625,0.439453125,0.3603515625,0.2685546875,0.2041015625,0.205078125,0.271484375,0.36328125,0.439453125,0.515625,0.6025390625,0.662109375,0.65625,0.5888671875,0.49609375,0.419921875,0.3662109375,0.3759765625,0.44921875,0.5498046875,0.623046875,0.6328125,0.5791015625,0.521484375,0.5087890625,0.54296875,0.595703125,0.6298828125,0.6171875,0.5595703125,0.490234375,0.42578125,0.3857421875,0.3837890625,0.408203125,0.4326171875,0.439453125,0.4521484375,0.5087890625,0.5888671875,0.650390625,0.6640625,0.6259765625,0.5595703125,0.5,0.490234375,0.5322265625,0.595703125,0.638671875,0.62890625,0.5693359375,0.48828125,0.3876953125,0.3076171875,0.291015625,0.341796875,0.4248046875,0.5,0.5546875,0.5576171875,0.5068359375,0.4326171875,0.380859375,0.3837890625,0.439453125,0.505859375,0.5546875,0.56640625,0.537109375,0.486328125,0.447265625,0.439453125,0.4345703125,0.412109375,0.390625,0.39453125,0.435546875,0.5,0.5693359375,0.6416015625,0.71484375,0.7470703125,0.7099609375,0.615234375,0.5087890625,0.4296875,0.36328125,0.314453125,0.302734375,0.3330078125,0.3837890625,0.421875,0.4296875,0.419921875,0.384765625,0.345703125,0.3330078125,0.3603515625,0.419921875,0.4892578125,0.5478515625,0.560546875,0.5244140625,0.4697265625,0.4345703125,0.44921875,0.509765625,0.5703125,0.5869140625,0.55859375,0.5107421875,0.4814453125,0.498046875,0.5595703125,0.6259765625,0.6630859375,0.6484375,0.5859375,0.505859375,0.451171875,0.439453125,0.44140625,0.4423828125,0.4423828125,0.4423828125,0.4404296875,0.4404296875,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.568359375,0.5185546875,0.44921875,0.3994140625,0.39453125,0.4345703125,0.5,0.5771484375,0.6748046875,0.7529296875,0.76953125,0.7197265625,0.6357421875,0.5595703125,0.5,0.4833984375,0.509765625,0.5546875,0.580078125,0.560546875,0.5,0.41796875,0.3154296875,0.232421875,0.2119140625,0.2607421875,0.34375,0.419921875,0.4794921875,0.4970703125,0.47265625,0.4306640625,0.408203125,0.427734375,0.4892578125,0.55078125,0.5712890625,0.548828125,0.509765625,0.4873046875,0.5078125,0.5693359375,0.6474609375,0.7314453125,0.7802734375,0.759765625,0.6748046875,0.5712890625,0.4892578125,0.41015625,0.3193359375,0.2587890625,0.2646484375,0.3359375,0.4306640625,0.509765625,0.5654296875,0.5654296875,0.5078125,0.4267578125,0.369140625,0.37109375,0.4296875,0.5107421875,0.6142578125,0.697265625,0.7177734375,0.6689453125,0.5859375,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.568359375,0.578125,0.5390625,0.71484375,0.6279296875,0.5263671875,0.453125,0.4287109375,0.427734375,0.455078125,0.4951171875,0.5166015625,0.4990234375,0.447265625,0.376953125,0.3017578125,0.2314453125,0.2080078125,0.2587890625,0.3681640625,0.4853515625,0.5703125,0.6396484375,0.6923828125,0.705078125,0.6748046875,0.6220703125,0.580078125,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.654296875,0.611328125,0.5634765625,0.5419921875,0.5615234375,0.6123046875,0.673828125,0.7333984375,0.7783203125,0.7890625,0.763671875,0.7177734375,0.681640625,0.673828125,0.6796875,0.7021484375,0.7255859375,0.7236328125,0.689453125,0.6318359375,0.5703125,0.5029296875,0.4228515625,0.3486328125,0.3056640625,0.298828125,0.3125,0.3251953125,0.333984375,0.3359375,0.330078125,0.3212890625,0.3154296875,0.3173828125,0.3251953125,0.3369140625,0.3505859375,0.3603515625,0.3603515625,0.3505859375,0.3369140625,0.3251953125,0.3212890625,0.34375,0.3994140625,0.4775390625,0.5537109375,0.603515625,0.6220703125,0.6220703125,0.5849609375,0.521484375,0.4638671875,0.4375,0.4541015625,0.5,0.544921875,0.5673828125,0.5703125,0.568359375,0.580078125,0.6171875,0.673828125,0.7275390625,0.7421875,0.6953125,0.595703125,0.482421875,0.4033203125,0.376953125,0.37890625,0.421875,0.4892578125,0.5419921875,0.552734375,0.5146484375,0.4482421875,0.3681640625,0.2744140625,0.20703125,0.20703125,0.2744140625,0.3681640625,0.4482421875,0.51171875,0.541015625,0.52734375,0.4892578125,0.45703125,0.458984375,0.5,0.544921875,0.5615234375,0.53515625,0.4775390625,0.4140625,0.376953125,0.376953125,0.3837890625,0.37890625,0.3779296875,0.3984375,0.4453125,0.5068359375,0.5703125,0.62109375,0.6298828125,0.599609375,0.5576171875,0.5361328125,0.5595703125,0.6220703125,0.6923828125,0.7509765625,0.7763671875,0.759765625,0.7177734375,0.6826171875,0.673828125,0.66796875,0.6376953125,0.5830078125,0.5185546875,0.46484375,0.4345703125,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.34765625,0.4130859375,0.5029296875,0.580078125,0.61328125,0.5966796875,0.55078125,0.4931640625,0.4228515625,0.3759765625,0.3857421875,0.4521484375,0.54296875,0.6220703125,0.701171875,0.7958984375,0.8623046875,0.8623046875,0.7958984375,0.701171875,0.6220703125,0.55859375,0.533203125,0.5498046875,0.587890625,0.6142578125,0.6025390625,0.55078125,0.5,0.4912109375,0.525390625,0.5771484375,0.611328125,0.6025390625,0.55078125,0.4951171875,0.4580078125,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.2802734375,0.30078125,0.3896484375,0.505859375,0.5947265625,0.615234375,0.5703125,0.5068359375,0.4453125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.41796875,0.3701171875,0.3046875,0.2607421875,0.2626953125,0.30859375,0.376953125,0.4541015625,0.5419921875,0.6220703125,0.669921875,0.6826171875,0.6767578125,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.376953125,0.3642578125,0.39453125,0.447265625,0.4873046875,0.48828125,0.4482421875,0.3984375,0.3583984375,0.3408203125,0.3486328125,0.3681640625,0.3818359375,0.376953125,0.3662109375,0.3525390625,0.3427734375,0.3427734375,0.3525390625,0.3662109375,0.376953125,0.3984375,0.4541015625,0.521484375,0.560546875,0.55078125,0.4990234375,0.4287109375,0.3525390625,0.2705078125,0.21875,0.2275390625,0.2900390625,0.369140625,0.4287109375,0.4833984375,0.537109375,0.5615234375,0.5341796875,0.4638671875,0.384765625,0.3251953125,0.291015625,0.326171875,0.431640625,0.5673828125,0.6728515625,0.7080078125,0.673828125,0.62890625,0.6083984375,0.6142578125,0.6298828125,0.634765625,0.615234375,0.5703125,0.517578125,0.462890625,0.421875,0.40625,0.4130859375,0.4248046875,0.4287109375,0.4423828125,0.5009765625,0.5859375,0.6533203125,0.671875,0.63671875,0.5703125,0.51171875,0.5068359375,0.55859375,0.6328125,0.6845703125,0.6806640625,0.6220703125,0.5419921875,0.4453125,0.3662109375,0.3427734375,0.37890625,0.4423828125,0.5,0.5400390625,0.5390625,0.4951171875,0.43359375,0.388671875,0.3876953125,0.4287109375,0.4775390625,0.5087890625,0.509765625,0.484375,0.4482421875,0.42578125,0.4287109375,0.4365234375,0.4375,0.4443359375,0.4697265625,0.5146484375,0.5693359375,0.6220703125,0.6728515625,0.7099609375,0.703125,0.6376953125,0.5361328125,0.439453125,0.376953125,0.3291015625,0.2978515625,0.2958984375,0.322265625,0.3583984375,0.3798828125,0.376953125,0.3603515625,0.3251953125,0.2939453125,0.291015625,0.3251953125,0.384765625,0.4482421875,0.5,0.515625,0.4970703125,0.4677734375,0.4580078125,0.4873046875,0.55078125,0.611328125,0.6240234375,0.5888671875,0.533203125,0.4970703125,0.509765625,0.5703125,0.634765625,0.6640625,0.638671875,0.56640625,0.4833984375,0.4326171875,0.4287109375,0.439453125,0.4462890625,0.4482421875,0.4443359375,0.4365234375,0.4306640625,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.662109375,0.611328125,0.53515625,0.466796875,0.4375,0.4541015625,0.5,0.5595703125,0.640625,0.7119140625,0.734375,0.701171875,0.634765625,0.5703125,0.5185546875,0.5068359375,0.533203125,0.5712890625,0.587890625,0.5625,0.5,0.4169921875,0.3076171875,0.2099609375,0.1689453125,0.1943359375,0.259765625,0.3251953125,0.3779296875,0.396484375,0.380859375,0.357421875,0.3525390625,0.3837890625,0.4482421875,0.51171875,0.5439453125,0.5419921875,0.52734375,0.5263671875,0.5576171875,0.6220703125,0.697265625,0.7705078125,0.7978515625,0.751953125,0.646484375,0.53125,0.4482421875,0.3720703125,0.296875,0.2607421875,0.2919921875,0.3798828125,0.4794921875,0.55078125,0.5966796875,0.5791015625,0.498046875,0.3955078125,0.32421875,0.3203125,0.376953125,0.4599609375,0.5693359375,0.6669921875,0.7080078125,0.6826171875,0.6171875,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.6025390625,0.611328125,0.5771484375,0.7646484375,0.685546875,0.5859375,0.5078125,0.46875,0.451171875,0.4609375,0.4853515625,0.5,0.482421875,0.4326171875,0.3642578125,0.2880859375,0.2138671875,0.1845703125,0.228515625,0.33203125,0.4462890625,0.5302734375,0.599609375,0.65234375,0.6650390625,0.634765625,0.5810546875,0.5400390625,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.7080078125,0.662109375,0.6240234375,0.6162109375,0.6435546875,0.6923828125,0.740234375,0.7841796875,0.8173828125,0.826171875,0.806640625,0.7724609375,0.74609375,0.740234375,0.7412109375,0.7421875,0.7294921875,0.6923828125,0.6376953125,0.5791015625,0.5302734375,0.4755859375,0.39453125,0.3056640625,0.2421875,0.220703125,0.2333984375,0.2587890625,0.28125,0.28515625,0.2705078125,0.248046875,0.2333984375,0.2373046875,0.2587890625,0.2880859375,0.3232421875,0.34765625,0.34765625,0.3232421875,0.2880859375,0.2587890625,0.23828125,0.2490234375,0.30859375,0.408203125,0.5166015625,0.5966796875,0.634765625,0.6552734375,0.646484375,0.607421875,0.5517578125,0.505859375,0.48828125,0.5,0.517578125,0.5341796875,0.5576171875,0.59375,0.6416015625,0.693359375,0.740234375,0.779296875,0.7822265625,0.7255859375,0.619140625,0.49609375,0.404296875,0.3642578125,0.3486328125,0.375,0.4306640625,0.48046875,0.4931640625,0.4599609375,0.39453125,0.314453125,0.220703125,0.154296875,0.154296875,0.220703125,0.314453125,0.39453125,0.4638671875,0.5185546875,0.541015625,0.5302734375,0.50390625,0.48828125,0.5,0.5107421875,0.4931640625,0.447265625,0.3916015625,0.3525390625,0.34375,0.3642578125,0.3876953125,0.400390625,0.408203125,0.421875,0.447265625,0.4853515625,0.5302734375,0.56640625,0.5703125,0.548828125,0.52734375,0.5302734375,0.5693359375,0.634765625,0.70703125,0.7724609375,0.8095703125,0.806640625,0.7763671875,0.748046875,0.740234375,0.7333984375,0.701171875,0.640625,0.568359375,0.5087890625,0.4755859375,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.294921875,0.3671875,0.4638671875,0.5517578125,0.60546875,0.619140625,0.6044921875,0.5771484375,0.525390625,0.474609375,0.4609375,0.4951171875,0.5615234375,0.634765625,0.71484375,0.80859375,0.8759765625,0.8759765625,0.80859375,0.71484375,0.634765625,0.5703125,0.541015625,0.5546875,0.5966796875,0.634765625,0.6396484375,0.6044921875,0.56640625,0.5595703125,0.5849609375,0.6240234375,0.6494140625,0.642578125,0.6044921875,0.55859375,0.509765625,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.2275390625,0.25390625,0.33984375,0.44921875,0.53515625,0.5615234375,0.5302734375,0.484375,0.443359375,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.45703125,0.40234375,0.3251953125,0.267578125,0.2568359375,0.296875,0.3642578125,0.4423828125,0.541015625,0.6376953125,0.70703125,0.7373046875,0.7412109375,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.42578125,0.39453125,0.3837890625,0.3916015625,0.4052734375,0.408203125,0.39453125,0.37890625,0.376953125,0.3857421875,0.3974609375,0.3994140625,0.3876953125,0.3642578125,0.3349609375,0.2998046875,0.275390625,0.275390625,0.2998046875,0.3349609375,0.3642578125,0.40234375,0.4755859375,0.5576171875,0.6044921875,0.5947265625,0.5400390625,0.46875,0.396484375,0.3330078125,0.3056640625,0.328125,0.384765625,0.4404296875,0.46875,0.4853515625,0.484375,0.455078125,0.3994140625,0.3349609375,0.28515625,0.2587890625,0.25390625,0.3095703125,0.427734375,0.5712890625,0.689453125,0.7451171875,0.740234375,0.7197265625,0.69140625,0.654296875,0.615234375,0.5791015625,0.55078125,0.5302734375,0.509765625,0.4892578125,0.4716796875,0.4638671875,0.4638671875,0.4677734375,0.46875,0.48046875,0.529296875,0.5966796875,0.642578125,0.6435546875,0.5986328125,0.5302734375,0.47265625,0.474609375,0.5380859375,0.626953125,0.6904296875,0.6923828125,0.634765625,0.5595703125,0.4794921875,0.421875,0.408203125,0.435546875,0.474609375,0.5,0.5146484375,0.513671875,0.49609375,0.47265625,0.455078125,0.4541015625,0.46875,0.484375,0.482421875,0.4658203125,0.447265625,0.4375,0.4462890625,0.46875,0.49609375,0.5244140625,0.5517578125,0.5771484375,0.59765625,0.6162109375,0.634765625,0.6494140625,0.6416015625,0.5986328125,0.52734375,0.44921875,0.3916015625,0.3642578125,0.349609375,0.3505859375,0.3671875,0.3857421875,0.3955078125,0.38671875,0.3642578125,0.3330078125,0.291015625,0.2587890625,0.2587890625,0.2939453125,0.345703125,0.39453125,0.43359375,0.4501953125,0.4521484375,0.4580078125,0.484375,0.5361328125,0.6044921875,0.6630859375,0.6640625,0.607421875,0.52734375,0.4697265625,0.4716796875,0.5302734375,0.5947265625,0.6240234375,0.6044921875,0.546875,0.484375,0.455078125,0.46875,0.4951171875,0.513671875,0.5185546875,0.5078125,0.48828125,0.47265625,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.7314453125,0.69140625,0.6240234375,0.5517578125,0.501953125,0.486328125,0.5,0.525390625,0.5693359375,0.61328125,0.6318359375,0.6162109375,0.576171875,0.5302734375,0.4951171875,0.5,0.5380859375,0.580078125,0.59375,0.5634765625,0.5,0.41796875,0.3095703125,0.208984375,0.15625,0.1650390625,0.2109375,0.2587890625,0.2958984375,0.3037109375,0.2890625,0.275390625,0.28515625,0.328125,0.39453125,0.4599609375,0.5,0.513671875,0.5166015625,0.529296875,0.5693359375,0.634765625,0.708984375,0.7744140625,0.787109375,0.7236328125,0.603515625,0.4794921875,0.39453125,0.3232421875,0.26953125,0.26953125,0.3369140625,0.4453125,0.5458984375,0.6044921875,0.6328125,0.595703125,0.4970703125,0.3837890625,0.3095703125,0.306640625,0.3642578125,0.4453125,0.5537109375,0.654296875,0.70703125,0.6982421875,0.6533203125,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.642578125,0.6494140625,0.6240234375,0.779296875,0.7314453125,0.65625,0.58203125,0.5302734375,0.4921875,0.484375,0.5,0.513671875,0.50390625,0.4609375,0.39453125,0.31640625,0.2314453125,0.181640625,0.201171875,0.2841796875,0.3876953125,0.46875,0.5390625,0.591796875,0.6044921875,0.57421875,0.5205078125,0.4794921875,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.6923828125,0.6435546875,0.6162109375,0.6240234375,0.662109375,0.7080078125,0.740234375,0.765625,0.78515625,0.7900390625,0.7783203125,0.7587890625,0.744140625,0.740234375,0.7373046875,0.7197265625,0.6787109375,0.619140625,0.5537109375,0.5009765625,0.46875,0.4326171875,0.361328125,0.275390625,0.2119140625,0.193359375,0.2158203125,0.2587890625,0.296875,0.3037109375,0.2783203125,0.240234375,0.21484375,0.220703125,0.2587890625,0.3095703125,0.369140625,0.4111328125,0.4111328125,0.369140625,0.3095703125,0.2587890625,0.216796875,0.19921875,0.234375,0.3251953125,0.4443359375,0.5458984375,0.6044921875,0.6484375,0.6806640625,0.6796875,0.640625,0.580078125,0.5263671875,0.5,0.4833984375,0.4833984375,0.513671875,0.57421875,0.646484375,0.7060546875,0.740234375,0.763671875,0.767578125,0.7294921875,0.6455078125,0.541015625,0.4501953125,0.39453125,0.359375,0.3642578125,0.40234375,0.4443359375,0.4580078125,0.4287109375,0.3642578125,0.2841796875,0.1904296875,0.123046875,0.123046875,0.1904296875,0.2841796875,0.3642578125,0.439453125,0.51953125,0.5771484375,0.5908203125,0.5634765625,0.5244140625,0.5,0.47265625,0.4189453125,0.3583984375,0.3193359375,0.318359375,0.3505859375,0.39453125,0.4365234375,0.4638671875,0.46875,0.4580078125,0.4462890625,0.4482421875,0.46875,0.48828125,0.482421875,0.4638671875,0.4580078125,0.4814453125,0.53515625,0.6044921875,0.677734375,0.74609375,0.7900390625,0.794921875,0.7724609375,0.7470703125,0.740234375,0.7353515625,0.7099609375,0.6630859375,0.607421875,0.560546875,0.53515625,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3095703125,0.376953125,0.455078125,0.52734375,0.5810546875,0.6142578125,0.634765625,0.642578125,0.611328125,0.5546875,0.5078125,0.5,0.5380859375,0.6044921875,0.6845703125,0.7783203125,0.8447265625,0.8447265625,0.7783203125,0.6845703125,0.6044921875,0.5390625,0.505859375,0.5185546875,0.568359375,0.6240234375,0.650390625,0.634765625,0.61328125,0.609375,0.6240234375,0.646484375,0.6611328125,0.6572265625,0.634765625,0.6044921875,0.5546875,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.2421875,0.263671875,0.3251953125,0.4033203125,0.46484375,0.486328125,0.46875,0.4453125,0.4326171875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5166015625,0.458984375,0.375,0.30859375,0.2919921875,0.328125,0.39453125,0.47265625,0.56640625,0.6572265625,0.7177734375,0.7421875,0.7421875,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.498046875,0.447265625,0.3916015625,0.3505859375,0.3369140625,0.345703125,0.3642578125,0.3896484375,0.43359375,0.4775390625,0.4970703125,0.48046875,0.4404296875,0.39453125,0.34375,0.2841796875,0.2421875,0.2421875,0.2841796875,0.34375,0.39453125,0.451171875,0.54296875,0.634765625,0.681640625,0.6650390625,0.6025390625,0.5302734375,0.462890625,0.4208984375,0.421875,0.4609375,0.5107421875,0.5380859375,0.5302734375,0.5029296875,0.4443359375,0.3662109375,0.294921875,0.251953125,0.244140625,0.2587890625,0.2861328125,0.34765625,0.4443359375,0.5546875,0.6513671875,0.712890625,0.740234375,0.75,0.7197265625,0.6484375,0.560546875,0.4892578125,0.4599609375,0.46875,0.4892578125,0.509765625,0.52734375,0.53515625,0.53515625,0.53125,0.5302734375,0.5380859375,0.572265625,0.6123046875,0.626953125,0.6005859375,0.5400390625,0.46875,0.412109375,0.41796875,0.48828125,0.5849609375,0.6552734375,0.6611328125,0.6044921875,0.53515625,0.48046875,0.4580078125,0.46875,0.4951171875,0.5107421875,0.5,0.484375,0.4853515625,0.5029296875,0.5263671875,0.5439453125,0.544921875,0.5302734375,0.5048828125,0.46484375,0.427734375,0.416015625,0.439453125,0.4833984375,0.5302734375,0.578125,0.6318359375,0.6708984375,0.6796875,0.6591796875,0.6279296875,0.6044921875,0.5791015625,0.5283203125,0.4638671875,0.408203125,0.37890625,0.3779296875,0.39453125,0.4189453125,0.458984375,0.4970703125,0.5078125,0.4853515625,0.44140625,0.39453125,0.345703125,0.2939453125,0.2587890625,0.2587890625,0.291015625,0.3330078125,0.3642578125,0.3857421875,0.396484375,0.408203125,0.4384765625,0.4921875,0.5625,0.634765625,0.6904296875,0.681640625,0.6044921875,0.5,0.4228515625,0.4130859375,0.46875,0.5341796875,0.5673828125,0.560546875,0.52734375,0.4951171875,0.494140625,0.5302734375,0.57421875,0.607421875,0.615234375,0.5966796875,0.5625,0.5361328125,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.7373046875,0.71875,0.6796875,0.6240234375,0.56640625,0.5234375,0.5,0.484375,0.4814453125,0.4912109375,0.501953125,0.5048828125,0.4931640625,0.46875,0.4541015625,0.48046875,0.53515625,0.5849609375,0.5986328125,0.564453125,0.5,0.4208984375,0.3232421875,0.2373046875,0.1923828125,0.197265625,0.228515625,0.2587890625,0.27734375,0.267578125,0.2421875,0.228515625,0.24609375,0.2958984375,0.3642578125,0.4296875,0.4697265625,0.482421875,0.4853515625,0.4990234375,0.5390625,0.6044921875,0.6787109375,0.744140625,0.7568359375,0.693359375,0.572265625,0.44921875,0.3642578125,0.296875,0.26171875,0.2900390625,0.3798828125,0.4990234375,0.5927734375,0.634765625,0.6455078125,0.59375,0.4912109375,0.3857421875,0.326171875,0.333984375,0.39453125,0.4736328125,0.5703125,0.6572265625,0.701171875,0.697265625,0.6650390625,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.6572265625,0.6611328125,0.646484375,0.7451171875,0.7392578125,0.697265625,0.6337890625,0.5703125,0.517578125,0.4990234375,0.5146484375,0.5380859375,0.5439453125,0.51171875,0.4482421875,0.3671875,0.271484375,0.2001953125,0.1953125,0.2578125,0.349609375,0.4287109375,0.4990234375,0.55078125,0.564453125,0.5341796875,0.48046875,0.439453125,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6123046875,0.5615234375,0.5419921875,0.5634765625,0.611328125,0.654296875,0.673828125,0.68359375,0.69140625,0.693359375,0.6884765625,0.6806640625,0.6748046875,0.673828125,0.6689453125,0.6455078125,0.5986328125,0.5380859375,0.482421875,0.4443359375,0.4287109375,0.408203125,0.3525390625,0.28125,0.232421875,0.228515625,0.2666015625,0.3251953125,0.376953125,0.3857421875,0.3515625,0.2998046875,0.265625,0.2744140625,0.3251953125,0.3935546875,0.474609375,0.53125,0.53125,0.474609375,0.3935546875,0.3251953125,0.2626953125,0.2099609375,0.203125,0.2626953125,0.3701171875,0.4775390625,0.55078125,0.6171875,0.6845703125,0.72265625,0.705078125,0.6376953125,0.55859375,0.5,0.4521484375,0.4306640625,0.4521484375,0.5146484375,0.59375,0.65234375,0.673828125,0.6865234375,0.7021484375,0.7001953125,0.662109375,0.5927734375,0.5146484375,0.4482421875,0.396484375,0.384765625,0.4111328125,0.44921875,0.4658203125,0.4404296875,0.376953125,0.2978515625,0.203125,0.13671875,0.13671875,0.203125,0.2978515625,0.376953125,0.45703125,0.5537109375,0.6328125,0.65625,0.6201171875,0.556640625,0.5,0.4404296875,0.361328125,0.2939453125,0.2763671875,0.314453125,0.3818359375,0.4482421875,0.505859375,0.5419921875,0.5419921875,0.505859375,0.4580078125,0.427734375,0.4287109375,0.431640625,0.4130859375,0.388671875,0.3857421875,0.4189453125,0.48046875,0.55078125,0.6240234375,0.69140625,0.7314453125,0.7333984375,0.70703125,0.6806640625,0.673828125,0.6708984375,0.658203125,0.6357421875,0.6083984375,0.5849609375,0.572265625,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.384765625,0.4365234375,0.4755859375,0.5068359375,0.5361328125,0.57421875,0.6220703125,0.6591796875,0.646484375,0.5869140625,0.5166015625,0.4755859375,0.490234375,0.55078125,0.630859375,0.724609375,0.7919921875,0.7919921875,0.724609375,0.630859375,0.55078125,0.484375,0.4462890625,0.45703125,0.509765625,0.5771484375,0.6201171875,0.6220703125,0.61328125,0.611328125,0.6171875,0.6259765625,0.6318359375,0.6298828125,0.6220703125,0.6064453125,0.568359375,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.3193359375,0.330078125,0.359375,0.3955078125,0.423828125,0.435546875,0.4287109375,0.421875,0.431640625,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5576171875,0.5009765625,0.419921875,0.357421875,0.34375,0.380859375,0.4482421875,0.5224609375,0.6025390625,0.666015625,0.6953125,0.6923828125,0.677734375,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.548828125,0.4873046875,0.4052734375,0.3369140625,0.310546875,0.3310546875,0.376953125,0.4375,0.5185546875,0.58984375,0.6123046875,0.5791015625,0.5126953125,0.4482421875,0.3798828125,0.298828125,0.2421875,0.2421875,0.298828125,0.3798828125,0.4482421875,0.5205078125,0.6220703125,0.7138671875,0.75,0.71875,0.6455078125,0.5703125,0.5078125,0.484375,0.5087890625,0.5615234375,0.60546875,0.609375,0.5703125,0.5078125,0.4111328125,0.3095703125,0.244140625,0.2373046875,0.2744140625,0.3251953125,0.3759765625,0.42578125,0.4755859375,0.5234375,0.5732421875,0.623046875,0.673828125,0.7099609375,0.6884765625,0.60546875,0.4970703125,0.4140625,0.392578125,0.4287109375,0.4814453125,0.5361328125,0.5771484375,0.5927734375,0.5859375,0.57421875,0.5703125,0.5771484375,0.6015625,0.623046875,0.6162109375,0.5712890625,0.501953125,0.4287109375,0.3720703125,0.3759765625,0.443359375,0.5361328125,0.6044921875,0.6083984375,0.55078125,0.4873046875,0.4580078125,0.4716796875,0.509765625,0.5419921875,0.5400390625,0.5,0.458984375,0.4599609375,0.50390625,0.5654296875,0.6103515625,0.611328125,0.5703125,0.51171875,0.439453125,0.3837890625,0.3798828125,0.4287109375,0.5029296875,0.5703125,0.63671875,0.708984375,0.75390625,0.744140625,0.6845703125,0.609375,0.55078125,0.4921875,0.4130859375,0.341796875,0.314453125,0.3388671875,0.3935546875,0.4482421875,0.505859375,0.5791015625,0.6337890625,0.638671875,0.5888671875,0.5146484375,0.4482421875,0.384765625,0.3251953125,0.291015625,0.2939453125,0.3251953125,0.3603515625,0.376953125,0.3828125,0.37890625,0.3818359375,0.4111328125,0.4716796875,0.5478515625,0.6220703125,0.6767578125,0.6640625,0.5810546875,0.4697265625,0.38671875,0.3740234375,0.4287109375,0.4931640625,0.52734375,0.5263671875,0.5078125,0.4970703125,0.5166015625,0.5703125,0.6298828125,0.6748046875,0.685546875,0.66015625,0.6142578125,0.578125,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6767578125,0.6845703125,0.6845703125,0.66015625,0.611328125,0.552734375,0.5,0.4501953125,0.41015625,0.392578125,0.3994140625,0.419921875,0.43359375,0.4287109375,0.4306640625,0.4736328125,0.5400390625,0.59375,0.6044921875,0.56640625,0.5,0.423828125,0.3447265625,0.28515625,0.2646484375,0.28125,0.3095703125,0.3251953125,0.3271484375,0.298828125,0.2587890625,0.23828125,0.2548828125,0.3076171875,0.376953125,0.44140625,0.47265625,0.4716796875,0.45703125,0.455078125,0.4873046875,0.55078125,0.626953125,0.7001953125,0.7275390625,0.681640625,0.576171875,0.4609375,0.376953125,0.3115234375,0.283203125,0.31640625,0.4072265625,0.5166015625,0.595703125,0.6220703125,0.6181640625,0.5625,0.47265625,0.3916015625,0.3583984375,0.3837890625,0.4482421875,0.5234375,0.6025390625,0.662109375,0.6826171875,0.666015625,0.6376953125,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.6298828125,0.6318359375,0.6259765625,0.677734375,0.701171875,0.6826171875,0.6279296875,0.5595703125,0.4990234375,0.4814453125,0.5068359375,0.5478515625,0.5712890625,0.55078125,0.4892578125,0.408203125,0.30859375,0.23046875,0.2177734375,0.2734375,0.361328125,0.439453125,0.509765625,0.5615234375,0.5751953125,0.544921875,0.4912109375,0.44921875,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5107421875,0.458984375,0.4443359375,0.4736328125,0.5263671875,0.568359375,0.5791015625,0.5810546875,0.58203125,0.58203125,0.58203125,0.580078125,0.5791015625,0.5791015625,0.576171875,0.560546875,0.5302734375,0.494140625,0.462890625,0.4443359375,0.439453125,0.427734375,0.3837890625,0.326171875,0.2919921875,0.3017578125,0.3515625,0.419921875,0.478515625,0.48828125,0.44921875,0.3896484375,0.3505859375,0.361328125,0.419921875,0.498046875,0.58984375,0.654296875,0.654296875,0.58984375,0.498046875,0.419921875,0.34375,0.2626953125,0.2177734375,0.2412109375,0.3271484375,0.4296875,0.509765625,0.5869140625,0.6767578125,0.73828125,0.7353515625,0.66796875,0.576171875,0.5,0.4345703125,0.3935546875,0.3974609375,0.4462890625,0.515625,0.56640625,0.5791015625,0.5888671875,0.619140625,0.65234375,0.6572265625,0.623046875,0.5595703125,0.4892578125,0.4296875,0.4130859375,0.4404296875,0.484375,0.509765625,0.4912109375,0.4296875,0.349609375,0.255859375,0.189453125,0.189453125,0.255859375,0.349609375,0.4296875,0.5107421875,0.611328125,0.69140625,0.7080078125,0.6572265625,0.57421875,0.5,0.4228515625,0.3310546875,0.263671875,0.2607421875,0.322265625,0.412109375,0.4892578125,0.556640625,0.6005859375,0.6005859375,0.5576171875,0.494140625,0.44921875,0.439453125,0.4326171875,0.4013671875,0.36328125,0.3505859375,0.3779296875,0.4384765625,0.509765625,0.5810546875,0.6416015625,0.6708984375,0.6591796875,0.62109375,0.587890625,0.5791015625,0.5791015625,0.576171875,0.572265625,0.56640625,0.5625,0.5595703125,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.4814453125,0.51171875,0.5068359375,0.4873046875,0.4814453125,0.5087890625,0.5693359375,0.6240234375,0.625,0.5712890625,0.49609375,0.4453125,0.4501953125,0.509765625,0.5888671875,0.68359375,0.75,0.75,0.68359375,0.5888671875,0.509765625,0.44140625,0.3974609375,0.3984375,0.4453125,0.51171875,0.5595703125,0.5693359375,0.568359375,0.5673828125,0.568359375,0.5703125,0.5712890625,0.5703125,0.5693359375,0.564453125,0.5458984375,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.4189453125,0.4208984375,0.4267578125,0.4326171875,0.4384765625,0.4404296875,0.439453125,0.4404296875,0.4541015625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.5478515625,0.4970703125,0.4287109375,0.3798828125,0.3779296875,0.421875,0.4892578125,0.5615234375,0.625,0.658203125,0.6513671875,0.6181640625,0.5869140625,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.544921875,0.48828125,0.408203125,0.345703125,0.3310546875,0.3662109375,0.4296875,0.5078125,0.60546875,0.68359375,0.7001953125,0.6494140625,0.5654296875,0.4892578125,0.412109375,0.3193359375,0.2548828125,0.2548828125,0.3193359375,0.412109375,0.4892578125,0.5693359375,0.6708984375,0.7529296875,0.771484375,0.7216796875,0.63671875,0.5595703125,0.4990234375,0.486328125,0.5244140625,0.5830078125,0.6240234375,0.6162109375,0.5595703125,0.48046875,0.373046875,0.2783203125,0.2421875,0.2744140625,0.3466796875,0.419921875,0.48046875,0.509765625,0.5078125,0.4912109375,0.4892578125,0.5185546875,0.5791015625,0.6328125,0.6259765625,0.556640625,0.4619140625,0.392578125,0.3857421875,0.439453125,0.5087890625,0.5732421875,0.61328125,0.615234375,0.5908203125,0.56640625,0.5595703125,0.56640625,0.59375,0.6201171875,0.619140625,0.5791015625,0.5126953125,0.439453125,0.3818359375,0.37890625,0.4345703125,0.5146484375,0.5703125,0.5673828125,0.509765625,0.44921875,0.435546875,0.470703125,0.52734375,0.5654296875,0.556640625,0.5,0.4443359375,0.44140625,0.4921875,0.56640625,0.6181640625,0.615234375,0.5595703125,0.4833984375,0.392578125,0.3271484375,0.3271484375,0.390625,0.4814453125,0.5595703125,0.6357421875,0.720703125,0.7734375,0.759765625,0.68359375,0.5869140625,0.509765625,0.4326171875,0.3408203125,0.2724609375,0.267578125,0.326171875,0.4140625,0.4892578125,0.5654296875,0.65625,0.7216796875,0.7216796875,0.658203125,0.5673828125,0.4892578125,0.419921875,0.3603515625,0.3330078125,0.345703125,0.384765625,0.419921875,0.4296875,0.4248046875,0.4013671875,0.37890625,0.384765625,0.427734375,0.49609375,0.5693359375,0.6259765625,0.62109375,0.5517578125,0.45703125,0.3876953125,0.3828125,0.439453125,0.5029296875,0.5283203125,0.5166015625,0.48828125,0.474609375,0.498046875,0.5595703125,0.6279296875,0.6787109375,0.69140625,0.662109375,0.609375,0.5693359375,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.5869140625,0.6171875,0.650390625,0.658203125,0.6279296875,0.568359375,0.5,0.431640625,0.3759765625,0.3505859375,0.3642578125,0.40234375,0.43359375,0.439453125,0.44921875,0.4970703125,0.5634765625,0.6103515625,0.6123046875,0.5673828125,0.5,0.427734375,0.3642578125,0.33203125,0.3408203125,0.376953125,0.41015625,0.419921875,0.412109375,0.3720703125,0.3212890625,0.29296875,0.3076171875,0.3603515625,0.4296875,0.4912109375,0.51171875,0.4892578125,0.4501953125,0.427734375,0.4482421875,0.509765625,0.5869140625,0.671875,0.720703125,0.69921875,0.615234375,0.51171875,0.4296875,0.36328125,0.326171875,0.3427734375,0.41015625,0.494140625,0.5546875,0.5693359375,0.55859375,0.5087890625,0.4375,0.3857421875,0.3798828125,0.421875,0.4892578125,0.5615234375,0.6240234375,0.6572265625,0.6484375,0.6123046875,0.5791015625,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5703125,0.5712890625,0.5703125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5302734375,0.5625,0.5537109375,0.505859375,0.439453125,0.384765625,0.3837890625,0.4384765625,0.515625,0.5693359375,0.56640625,0.509765625,0.4326171875,0.34765625,0.294921875,0.3095703125,0.384765625,0.4814453125,0.5595703125,0.6259765625,0.67578125,0.689453125,0.6630859375,0.6142578125,0.5771484375,0.5693359375,0.5771484375,0.6015625,0.62109375,0.6123046875,0.5673828125,0.5,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.4345703125,0.4521484375,0.4833984375,0.517578125,0.544921875,0.55859375,0.5595703125,0.5478515625,0.5048828125,0.451171875,0.421875,0.435546875,0.4892578125,0.5595703125,0.6201171875,0.6337890625,0.5986328125,0.5419921875,0.5029296875,0.5126953125,0.5693359375,0.6455078125,0.734375,0.7978515625,0.7958984375,0.7294921875,0.63671875,0.5595703125,0.48046875,0.3818359375,0.3056640625,0.29296875,0.3466796875,0.4326171875,0.509765625,0.5869140625,0.6796875,0.744140625,0.744140625,0.6796875,0.5869140625,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.4423828125,0.490234375,0.5546875,0.599609375,0.5986328125,0.5546875,0.4892578125,0.4345703125,0.43359375,0.490234375,0.5693359375,0.625,0.6240234375,0.5693359375,0.4931640625,0.4033203125,0.3408203125,0.3427734375,0.4091796875,0.5009765625,0.5791015625,0.6552734375,0.73828125,0.787109375,0.7666015625,0.68359375,0.5810546875,0.5,0.419921875,0.3271484375,0.2626953125,0.265625,0.333984375,0.4296875,0.509765625,0.5810546875,0.6396484375,0.666015625,0.6494140625,0.6064453125,0.5693359375,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5556640625,0.59765625,0.59375,0.544921875,0.4775390625,0.4296875,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.6162109375,0.611328125,0.5419921875,0.447265625,0.3779296875,0.373046875,0.4296875,0.4912109375,0.5087890625,0.482421875,0.4375,0.41015625,0.4287109375,0.4892578125,0.5693359375,0.666015625,0.7373046875,0.7431640625,0.6806640625,0.5888671875,0.509765625,0.4384765625,0.376953125,0.3486328125,0.3603515625,0.3984375,0.431640625,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4423828125,0.4580078125,0.486328125,0.5185546875,0.544921875,0.55859375,0.5595703125,0.5576171875,0.5556640625,0.5537109375,0.5537109375,0.5556640625,0.5576171875,0.5595703125,0.55859375,0.544921875,0.5185546875,0.486328125,0.4580078125,0.4423828125,0.439453125,0.431640625,0.3974609375,0.357421875,0.341796875,0.3662109375,0.421875,0.4892578125,0.5546875,0.595703125,0.5947265625,0.548828125,0.484375,0.439453125,0.4296875,0.4345703125,0.451171875,0.48046875,0.513671875,0.5419921875,0.556640625,0.5595703125,0.556640625,0.54296875,0.517578125,0.4873046875,0.4599609375,0.4443359375,0.439453125,0.431640625,0.4052734375,0.3828125,0.3896484375,0.435546875,0.505859375,0.5791015625,0.6572265625,0.7421875,0.7919921875,0.7724609375,0.6904296875,0.5888671875,0.509765625,0.4306640625,0.3359375,0.2646484375,0.2587890625,0.3193359375,0.41015625,0.4892578125,0.5673828125,0.6513671875,0.69921875,0.6796875,0.59765625,0.498046875,0.419921875,0.36328125,0.357421875,0.4033203125,0.4677734375,0.509765625,0.4990234375,0.439453125,0.36328125,0.2880859375,0.255859375,0.2939453125,0.390625,0.4990234375,0.5791015625,0.6318359375,0.6220703125,0.546875,0.4462890625,0.373046875,0.365234375,0.419921875,0.482421875,0.5126953125,0.5107421875,0.494140625,0.490234375,0.5185546875,0.5791015625,0.642578125,0.673828125,0.65234375,0.58203125,0.4951171875,0.4345703125,0.419921875,0.431640625,0.490234375,0.5771484375,0.6474609375,0.6689453125,0.6357421875,0.5693359375,0.5078125,0.4892578125,0.5146484375,0.55859375,0.5859375,0.5693359375,0.509765625,0.451171875,0.4384765625,0.474609375,0.529296875,0.564453125,0.5498046875,0.4892578125,0.427734375,0.408203125,0.4306640625,0.47265625,0.4970703125,0.4794921875,0.419921875,0.341796875,0.25,0.185546875,0.1875,0.255859375,0.349609375,0.4296875,0.5107421875,0.6142578125,0.697265625,0.7177734375,0.6689453125,0.5859375,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.568359375,0.662109375,0.7314453125,0.7373046875,0.6767578125,0.5869140625,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.5546875,0.4970703125,0.4150390625,0.349609375,0.33203125,0.3662109375,0.4296875,0.490234375,0.517578125,0.51171875,0.4921875,0.4873046875,0.517578125,0.5791015625,0.634765625,0.6279296875,0.556640625,0.4580078125,0.3857421875,0.3759765625,0.4296875,0.49609375,0.5458984375,0.5576171875,0.5263671875,0.4736328125,0.4306640625,0.419921875,0.41796875,0.41796875,0.4189453125,0.4208984375,0.421875,0.4208984375,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.421875,0.3671875,0.3447265625,0.361328125,0.400390625,0.4326171875,0.439453125,0.44921875,0.4970703125,0.5634765625,0.6103515625,0.6123046875,0.5673828125,0.5,0.431640625,0.38671875,0.388671875,0.435546875,0.501953125,0.5498046875,0.5595703125,0.56640625,0.5986328125,0.6376953125,0.654296875,0.6318359375,0.5771484375,0.509765625,0.4443359375,0.4033203125,0.40625,0.453125,0.51953125,0.568359375,0.5791015625,0.5693359375,0.5283203125,0.4755859375,0.443359375,0.4541015625,0.5029296875,0.5693359375,0.625,0.626953125,0.57421875,0.4990234375,0.4482421875,0.4521484375,0.509765625,0.5888671875,0.6865234375,0.7626953125,0.7763671875,0.7216796875,0.6357421875,0.5595703125,0.4873046875,0.4189453125,0.373046875,0.365234375,0.38671875,0.412109375,0.419921875,0.4130859375,0.3828125,0.3466796875,0.3369140625,0.3671875,0.427734375,0.5,0.5673828125,0.6103515625,0.60546875,0.5546875,0.4833984375,0.431640625,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.431640625,0.43359375,0.435546875,0.451171875,0.4912109375,0.5009765625,0.4755859375,0.4287109375,0.390625,0.404296875,0.4677734375,0.5478515625,0.6015625,0.6005859375,0.55078125,0.4853515625,0.4130859375,0.3671875,0.376953125,0.4365234375,0.51171875,0.5703125,0.619140625,0.6572265625,0.669921875,0.658203125,0.6328125,0.6171875,0.6220703125,0.6328125,0.640625,0.6259765625,0.5791015625,0.5068359375,0.43359375,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.3935546875,0.4306640625,0.4833984375,0.5341796875,0.5673828125,0.5771484375,0.5703125,0.5498046875,0.5009765625,0.4453125,0.4189453125,0.4404296875,0.4990234375,0.5703125,0.6337890625,0.6630859375,0.6494140625,0.611328125,0.5791015625,0.5810546875,0.6220703125,0.6787109375,0.7451171875,0.7890625,0.779296875,0.71875,0.6376953125,0.5703125,0.5009765625,0.4189453125,0.357421875,0.3525390625,0.4052734375,0.4833984375,0.55078125,0.619140625,0.7001953125,0.7568359375,0.7568359375,0.7001953125,0.619140625,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.396484375,0.4423828125,0.4970703125,0.533203125,0.5322265625,0.4970703125,0.4482421875,0.4091796875,0.4228515625,0.490234375,0.5791015625,0.646484375,0.66015625,0.6220703125,0.564453125,0.498046875,0.4541015625,0.4638671875,0.5244140625,0.60546875,0.673828125,0.7392578125,0.8046875,0.830078125,0.7890625,0.69140625,0.58203125,0.5,0.4208984375,0.3330078125,0.2783203125,0.2919921875,0.3701171875,0.470703125,0.55078125,0.623046875,0.68359375,0.708984375,0.6875,0.63671875,0.58984375,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.5029296875,0.52734375,0.50390625,0.4404296875,0.3701171875,0.3271484375,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.625,0.6123046875,0.529296875,0.41796875,0.3349609375,0.322265625,0.376953125,0.4384765625,0.4580078125,0.43359375,0.3916015625,0.3671875,0.38671875,0.4482421875,0.5302734375,0.63671875,0.7265625,0.75390625,0.7099609375,0.62890625,0.55078125,0.478515625,0.4111328125,0.37109375,0.369140625,0.39453125,0.421875,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.43359375,0.45703125,0.49609375,0.5380859375,0.5673828125,0.5771484375,0.5703125,0.55859375,0.544921875,0.53515625,0.53515625,0.544921875,0.55859375,0.5703125,0.5771484375,0.5673828125,0.5380859375,0.49609375,0.45703125,0.43359375,0.4287109375,0.421875,0.39453125,0.361328125,0.3447265625,0.3583984375,0.3974609375,0.4482421875,0.494140625,0.5166015625,0.5029296875,0.4580078125,0.40625,0.3759765625,0.376953125,0.3916015625,0.4228515625,0.4677734375,0.5146484375,0.5498046875,0.5673828125,0.5703125,0.568359375,0.556640625,0.533203125,0.5,0.466796875,0.4423828125,0.4287109375,0.4150390625,0.39453125,0.39453125,0.4326171875,0.5087890625,0.5966796875,0.673828125,0.7490234375,0.822265625,0.853515625,0.8173828125,0.724609375,0.6240234375,0.55078125,0.4794921875,0.3798828125,0.2919921875,0.2607421875,0.296875,0.3720703125,0.4482421875,0.521484375,0.5888671875,0.61328125,0.572265625,0.4814453125,0.3876953125,0.3251953125,0.2880859375,0.3056640625,0.3720703125,0.4521484375,0.5,0.4892578125,0.4287109375,0.357421875,0.3056640625,0.30859375,0.3818359375,0.5,0.6083984375,0.673828125,0.7060546875,0.666015625,0.5517578125,0.412109375,0.30859375,0.28125,0.3251953125,0.38671875,0.443359375,0.4951171875,0.5390625,0.580078125,0.6240234375,0.673828125,0.7158203125,0.7177734375,0.6572265625,0.5478515625,0.4306640625,0.3505859375,0.3251953125,0.33203125,0.40234375,0.5205078125,0.6328125,0.693359375,0.68359375,0.6220703125,0.55859375,0.533203125,0.5498046875,0.587890625,0.6142578125,0.6025390625,0.55078125,0.4990234375,0.4833984375,0.501953125,0.53125,0.541015625,0.51171875,0.4482421875,0.3837890625,0.3525390625,0.357421875,0.380859375,0.396484375,0.3779296875,0.3251953125,0.2568359375,0.1767578125,0.1240234375,0.1328125,0.203125,0.2978515625,0.376953125,0.4599609375,0.5693359375,0.6669921875,0.7080078125,0.6826171875,0.6171875,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.5185546875,0.611328125,0.69140625,0.71875,0.6845703125,0.6171875,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.5986328125,0.5322265625,0.4375,0.35546875,0.318359375,0.33203125,0.376953125,0.4248046875,0.462890625,0.4921875,0.5234375,0.5625,0.6142578125,0.673828125,0.71875,0.6982421875,0.60546875,0.4794921875,0.3779296875,0.3427734375,0.376953125,0.4267578125,0.4638671875,0.4697265625,0.4384765625,0.3876953125,0.34375,0.3251953125,0.3173828125,0.3154296875,0.3212890625,0.330078125,0.3359375,0.333984375,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.3994140625,0.3662109375,0.359375,0.380859375,0.4130859375,0.4326171875,0.4287109375,0.4306640625,0.4736328125,0.5400390625,0.59375,0.6044921875,0.56640625,0.5,0.4326171875,0.39453125,0.4052734375,0.458984375,0.525390625,0.568359375,0.5703125,0.56640625,0.5859375,0.6181640625,0.6396484375,0.6328125,0.599609375,0.55078125,0.5048828125,0.482421875,0.5,0.5537109375,0.619140625,0.6630859375,0.673828125,0.6650390625,0.62890625,0.580078125,0.544921875,0.5419921875,0.5732421875,0.6220703125,0.6611328125,0.654296875,0.6025390625,0.5361328125,0.4931640625,0.5,0.55078125,0.6201171875,0.7021484375,0.763671875,0.7685546875,0.7158203125,0.6376953125,0.5703125,0.5029296875,0.4228515625,0.3486328125,0.3056640625,0.298828125,0.3125,0.3251953125,0.330078125,0.31640625,0.3037109375,0.3154296875,0.359375,0.4267578125,0.5,0.5654296875,0.5966796875,0.5712890625,0.4951171875,0.40234375,0.33984375,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.388671875,0.40234375,0.412109375,0.380859375,0.427734375,0.466796875,0.4814453125,0.46875,0.4599609375,0.4892578125,0.5498046875,0.6123046875,0.6484375,0.642578125,0.6044921875,0.5556640625,0.5029296875,0.4638671875,0.455078125,0.4755859375,0.5068359375,0.5302734375,0.546875,0.55859375,0.5654296875,0.57421875,0.5888671875,0.609375,0.634765625,0.6572265625,0.654296875,0.61328125,0.5380859375,0.4541015625,0.392578125,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.3974609375,0.4521484375,0.513671875,0.5576171875,0.5703125,0.5556640625,0.5302734375,0.494140625,0.43359375,0.375,0.35546875,0.388671875,0.4560546875,0.5302734375,0.599609375,0.6533203125,0.67578125,0.666015625,0.638671875,0.6240234375,0.634765625,0.6572265625,0.6845703125,0.6982421875,0.681640625,0.6357421875,0.5791015625,0.5302734375,0.4814453125,0.4306640625,0.4052734375,0.4248046875,0.484375,0.552734375,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.7568359375,0.71484375,0.6552734375,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.392578125,0.4267578125,0.453125,0.4580078125,0.44140625,0.416015625,0.39453125,0.3837890625,0.41015625,0.474609375,0.5546875,0.619140625,0.6455078125,0.634765625,0.6123046875,0.5849609375,0.5712890625,0.587890625,0.6337890625,0.6904296875,0.740234375,0.7880859375,0.833984375,0.8427734375,0.7900390625,0.689453125,0.5810546875,0.5,0.421875,0.3408203125,0.2978515625,0.3251953125,0.416015625,0.5224609375,0.6044921875,0.6767578125,0.7353515625,0.7509765625,0.7119140625,0.6376953125,0.5673828125,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.431640625,0.4326171875,0.3916015625,0.3251953125,0.2666015625,0.2431640625,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.5859375,0.576171875,0.4990234375,0.39453125,0.3173828125,0.30859375,0.3642578125,0.4248046875,0.4384765625,0.4052734375,0.3525390625,0.3193359375,0.333984375,0.39453125,0.4794921875,0.5986328125,0.7119140625,0.767578125,0.748046875,0.6796875,0.6044921875,0.53125,0.462890625,0.4189453125,0.4140625,0.4375,0.4619140625,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.474609375,0.4970703125,0.5302734375,0.5576171875,0.56640625,0.5537109375,0.5302734375,0.5009765625,0.4658203125,0.44140625,0.44140625,0.4658203125,0.5009765625,0.5302734375,0.5537109375,0.56640625,0.5576171875,0.5302734375,0.4970703125,0.474609375,0.46875,0.46484375,0.4443359375,0.4140625,0.3857421875,0.373046875,0.3779296875,0.39453125,0.408203125,0.4033203125,0.3798828125,0.353515625,0.3369140625,0.341796875,0.3642578125,0.3935546875,0.4326171875,0.474609375,0.5078125,0.5244140625,0.529296875,0.5302734375,0.5322265625,0.5400390625,0.5458984375,0.541015625,0.5224609375,0.49609375,0.46875,0.439453125,0.412109375,0.4140625,0.4658203125,0.5595703125,0.66015625,0.740234375,0.8134765625,0.875,0.892578125,0.8447265625,0.7529296875,0.662109375,0.6044921875,0.5458984375,0.4453125,0.3369140625,0.26953125,0.26953125,0.3232421875,0.39453125,0.4638671875,0.5107421875,0.5078125,0.44921875,0.3623046875,0.2900390625,0.2587890625,0.255859375,0.30859375,0.4052734375,0.5,0.546875,0.53125,0.46875,0.4033203125,0.3720703125,0.4052734375,0.5,0.6171875,0.705078125,0.740234375,0.7412109375,0.669921875,0.5322265625,0.3779296875,0.2646484375,0.228515625,0.2587890625,0.3115234375,0.392578125,0.494140625,0.59375,0.6708984375,0.716796875,0.740234375,0.7509765625,0.7216796875,0.6376953125,0.513671875,0.38671875,0.298828125,0.2587890625,0.251953125,0.3203125,0.4521484375,0.59375,0.68359375,0.6923828125,0.634765625,0.5703125,0.541015625,0.5546875,0.5966796875,0.634765625,0.6396484375,0.6044921875,0.5654296875,0.548828125,0.546875,0.541015625,0.5146484375,0.462890625,0.39453125,0.328125,0.28515625,0.275390625,0.2890625,0.3037109375,0.2958984375,0.2587890625,0.20703125,0.1455078125,0.1064453125,0.123046875,0.1943359375,0.28515625,0.3642578125,0.4453125,0.5537109375,0.654296875,0.70703125,0.6982421875,0.6533203125,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.44921875,0.53515625,0.6240234375,0.6796875,0.6845703125,0.650390625,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.6005859375,0.537109375,0.4580078125,0.3896484375,0.3515625,0.3486328125,0.3642578125,0.384765625,0.41796875,0.4716796875,0.5439453125,0.6220703125,0.689453125,0.740234375,0.7724609375,0.7490234375,0.6591796875,0.533203125,0.4189453125,0.3603515625,0.3642578125,0.3837890625,0.400390625,0.3994140625,0.375,0.3330078125,0.2900390625,0.2587890625,0.2373046875,0.2333984375,0.248046875,0.2705078125,0.28515625,0.28125,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.3818359375,0.3916015625,0.4248046875,0.4638671875,0.4892578125,0.490234375,0.46875,0.4541015625,0.48046875,0.53515625,0.5849609375,0.5986328125,0.564453125,0.5,0.4345703125,0.400390625,0.4140625,0.4638671875,0.5185546875,0.544921875,0.5302734375,0.5087890625,0.509765625,0.53515625,0.57421875,0.607421875,0.6171875,0.6044921875,0.5888671875,0.591796875,0.619140625,0.662109375,0.70703125,0.734375,0.740234375,0.7353515625,0.7109375,0.673828125,0.6376953125,0.6181640625,0.619140625,0.634765625,0.646484375,0.6298828125,0.5927734375,0.5576171875,0.5458984375,0.5634765625,0.6044921875,0.6533203125,0.7041015625,0.7294921875,0.708984375,0.650390625,0.58203125,0.5302734375,0.4755859375,0.39453125,0.3056640625,0.2421875,0.220703125,0.2333984375,0.2587890625,0.2802734375,0.287109375,0.2919921875,0.314453125,0.361328125,0.427734375,0.5,0.5634765625,0.5869140625,0.546875,0.4521484375,0.345703125,0.2744140625,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.3935546875,0.427734375,0.4521484375,0.3310546875,0.3779296875,0.4453125,0.501953125,0.5302734375,0.5546875,0.5966796875,0.642578125,0.673828125,0.6787109375,0.6611328125,0.634765625,0.6083984375,0.580078125,0.5517578125,0.52734375,0.5068359375,0.4873046875,0.46875,0.447265625,0.423828125,0.4169921875,0.44140625,0.494140625,0.5546875,0.6044921875,0.6416015625,0.6376953125,0.5849609375,0.501953125,0.4248046875,0.38671875,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.4462890625,0.5146484375,0.57421875,0.59375,0.568359375,0.517578125,0.46875,0.4150390625,0.33984375,0.2783203125,0.267578125,0.314453125,0.3935546875,0.46875,0.544921875,0.625,0.6826171875,0.6953125,0.6689453125,0.6298828125,0.6044921875,0.5869140625,0.5712890625,0.5576171875,0.541015625,0.5205078125,0.4951171875,0.46875,0.443359375,0.4287109375,0.44140625,0.4853515625,0.546875,0.6015625,0.634765625,0.6640625,0.69921875,0.7236328125,0.7236328125,0.69921875,0.6640625,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.435546875,0.453125,0.44140625,0.40625,0.369140625,0.3525390625,0.3642578125,0.3857421875,0.41796875,0.4609375,0.5078125,0.55078125,0.5830078125,0.6044921875,0.6220703125,0.6376953125,0.6513671875,0.66796875,0.689453125,0.7138671875,0.740234375,0.7705078125,0.8017578125,0.806640625,0.76171875,0.67578125,0.578125,0.5,0.4228515625,0.345703125,0.30859375,0.3447265625,0.44140625,0.5517578125,0.634765625,0.70703125,0.765625,0.775390625,0.720703125,0.6220703125,0.52734375,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.380859375,0.361328125,0.30859375,0.2509765625,0.2158203125,0.220703125,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.52734375,0.529296875,0.4716796875,0.3916015625,0.3349609375,0.3359375,0.39453125,0.453125,0.4609375,0.4140625,0.3447265625,0.2978515625,0.3046875,0.3642578125,0.4501953125,0.5771484375,0.7041015625,0.775390625,0.76953125,0.7080078125,0.634765625,0.5625,0.498046875,0.4609375,0.4638671875,0.4931640625,0.5224609375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.53515625,0.5537109375,0.57421875,0.5771484375,0.5556640625,0.5146484375,0.46875,0.4189453125,0.359375,0.3173828125,0.3173828125,0.359375,0.4189453125,0.46875,0.5146484375,0.5556640625,0.5771484375,0.57421875,0.5537109375,0.53515625,0.5302734375,0.5283203125,0.51953125,0.4970703125,0.4609375,0.419921875,0.38671875,0.3642578125,0.33984375,0.3037109375,0.2734375,0.26953125,0.298828125,0.3466796875,0.39453125,0.4404296875,0.482421875,0.5078125,0.5078125,0.4912109375,0.4736328125,0.46875,0.4765625,0.5107421875,0.5576171875,0.5927734375,0.5986328125,0.572265625,0.5302734375,0.48046875,0.431640625,0.416015625,0.4609375,0.5546875,0.6591796875,0.740234375,0.8115234375,0.8662109375,0.8759765625,0.828125,0.7470703125,0.6728515625,0.634765625,0.5927734375,0.4990234375,0.3798828125,0.2900390625,0.26171875,0.296875,0.3642578125,0.4287109375,0.45703125,0.4326171875,0.3671875,0.2939453125,0.2529296875,0.2587890625,0.2939453125,0.3818359375,0.4990234375,0.59375,0.626953125,0.595703125,0.5302734375,0.4677734375,0.4521484375,0.5,0.59375,0.6904296875,0.7431640625,0.740234375,0.70703125,0.619140625,0.48828125,0.3583984375,0.26953125,0.2421875,0.2587890625,0.298828125,0.38671875,0.513671875,0.6376953125,0.7216796875,0.7509765625,0.740234375,0.716796875,0.6708984375,0.59375,0.494140625,0.392578125,0.3115234375,0.2587890625,0.232421875,0.283203125,0.4052734375,0.546875,0.64453125,0.66015625,0.6044921875,0.5390625,0.505859375,0.5185546875,0.568359375,0.6240234375,0.650390625,0.634765625,0.61328125,0.6025390625,0.5908203125,0.560546875,0.5068359375,0.4365234375,0.3642578125,0.2958984375,0.24609375,0.228515625,0.2421875,0.267578125,0.27734375,0.2587890625,0.2265625,0.181640625,0.154296875,0.1708984375,0.2333984375,0.3173828125,0.39453125,0.4736328125,0.5703125,0.6572265625,0.701171875,0.697265625,0.6650390625,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.3994140625,0.466796875,0.5517578125,0.6240234375,0.66015625,0.658203125,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.55859375,0.5107421875,0.4697265625,0.44140625,0.4248046875,0.4111328125,0.39453125,0.3798828125,0.3935546875,0.447265625,0.53515625,0.6318359375,0.7041015625,0.740234375,0.7607421875,0.7490234375,0.6904296875,0.595703125,0.49609375,0.4248046875,0.39453125,0.37890625,0.375,0.375,0.3662109375,0.341796875,0.3037109375,0.2587890625,0.220703125,0.21484375,0.240234375,0.2783203125,0.3037109375,0.296875,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.2587890625,0.2607421875,0.26953125,0.2900390625,0.31640625,0.3427734375,0.3642578125,0.392578125,0.453125,0.52734375,0.58203125,0.5966796875,0.572265625,0.5302734375,0.4951171875,0.5,0.5380859375,0.580078125,0.59375,0.5634765625,0.5,0.435546875,0.4052734375,0.4189453125,0.4609375,0.4990234375,0.50390625,0.46875,0.4267578125,0.40234375,0.4169921875,0.4716796875,0.5458984375,0.6064453125,0.634765625,0.65625,0.6826171875,0.708984375,0.7294921875,0.73828125,0.740234375,0.740234375,0.7392578125,0.734375,0.7177734375,0.6904296875,0.65625,0.6259765625,0.6044921875,0.5830078125,0.5576171875,0.541015625,0.5458984375,0.572265625,0.6064453125,0.634765625,0.66015625,0.6748046875,0.662109375,0.619140625,0.556640625,0.501953125,0.46875,0.4326171875,0.361328125,0.275390625,0.2119140625,0.193359375,0.2158203125,0.2587890625,0.298828125,0.3193359375,0.328125,0.341796875,0.375,0.4306640625,0.5,0.5634765625,0.5869140625,0.546875,0.4521484375,0.345703125,0.2744140625,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.4443359375,0.50390625,0.546875,0.3017578125,0.3388671875,0.4208984375,0.5087890625,0.5703125,0.6220703125,0.671875,0.7001953125,0.697265625,0.6689453125,0.6376953125,0.6220703125,0.6142578125,0.61328125,0.60546875,0.5810546875,0.5361328125,0.4814453125,0.4287109375,0.3740234375,0.3154296875,0.2880859375,0.3154296875,0.392578125,0.4814453125,0.55078125,0.6015625,0.6044921875,0.5546875,0.4794921875,0.419921875,0.4091796875,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.515625,0.59375,0.646484375,0.6416015625,0.580078125,0.498046875,0.4287109375,0.359375,0.2724609375,0.2080078125,0.2041015625,0.2626953125,0.3505859375,0.4287109375,0.5087890625,0.60546875,0.6845703125,0.7080078125,0.671875,0.607421875,0.55078125,0.5,0.4541015625,0.4248046875,0.4189453125,0.427734375,0.4345703125,0.4287109375,0.421875,0.431640625,0.46484375,0.515625,0.568359375,0.60546875,0.6220703125,0.6328125,0.646484375,0.65625,0.65625,0.646484375,0.6328125,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.4990234375,0.505859375,0.462890625,0.396484375,0.3447265625,0.337890625,0.376953125,0.423828125,0.4521484375,0.462890625,0.4658203125,0.4755859375,0.5048828125,0.55078125,0.6025390625,0.6484375,0.6767578125,0.68359375,0.6748046875,0.66796875,0.673828125,0.689453125,0.7177734375,0.734375,0.7138671875,0.654296875,0.5751953125,0.5,0.4228515625,0.34375,0.3037109375,0.3359375,0.4296875,0.5390625,0.6220703125,0.6953125,0.759765625,0.7763671875,0.720703125,0.61328125,0.5029296875,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.3779296875,0.34375,0.2880859375,0.244140625,0.236328125,0.2685546875,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.4892578125,0.501953125,0.4658203125,0.41015625,0.375,0.3876953125,0.4482421875,0.505859375,0.5078125,0.4521484375,0.373046875,0.3173828125,0.3193359375,0.376953125,0.462890625,0.5869140625,0.7080078125,0.7724609375,0.759765625,0.6953125,0.6220703125,0.55078125,0.4921875,0.466796875,0.484375,0.525390625,0.5615234375,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5751953125,0.59375,0.6083984375,0.5966796875,0.5537109375,0.4921875,0.4287109375,0.3603515625,0.2802734375,0.2236328125,0.2236328125,0.2802734375,0.3603515625,0.4287109375,0.4921875,0.5537109375,0.5966796875,0.6083984375,0.59375,0.5751953125,0.5703125,0.572265625,0.5791015625,0.57421875,0.544921875,0.4921875,0.431640625,0.376953125,0.3212890625,0.2568359375,0.216796875,0.2314453125,0.296875,0.3798828125,0.4482421875,0.5068359375,0.5498046875,0.556640625,0.525390625,0.4755859375,0.4375,0.4287109375,0.4404296875,0.4931640625,0.5703125,0.6337890625,0.654296875,0.6259765625,0.5703125,0.5029296875,0.4287109375,0.38671875,0.41015625,0.4921875,0.5927734375,0.673828125,0.7431640625,0.7958984375,0.8046875,0.765625,0.6982421875,0.642578125,0.6220703125,0.595703125,0.5166015625,0.4072265625,0.31640625,0.283203125,0.3115234375,0.376953125,0.4384765625,0.455078125,0.4189453125,0.353515625,0.2978515625,0.287109375,0.3251953125,0.390625,0.4990234375,0.6171875,0.6904296875,0.693359375,0.6416015625,0.5703125,0.509765625,0.4990234375,0.546875,0.626953125,0.693359375,0.7109375,0.673828125,0.6142578125,0.5283203125,0.43359375,0.359375,0.3212890625,0.31640625,0.3251953125,0.3505859375,0.4306640625,0.5478515625,0.6572265625,0.7177734375,0.7158203125,0.673828125,0.6240234375,0.580078125,0.5390625,0.4951171875,0.443359375,0.38671875,0.3251953125,0.28125,0.3056640625,0.3974609375,0.513671875,0.5966796875,0.607421875,0.55078125,0.484375,0.4462890625,0.45703125,0.509765625,0.5771484375,0.6201171875,0.6220703125,0.6162109375,0.6201171875,0.6171875,0.587890625,0.52734375,0.451171875,0.376953125,0.3076171875,0.2548828125,0.23828125,0.2587890625,0.298828125,0.3271484375,0.3251953125,0.30859375,0.2744140625,0.24609375,0.251953125,0.30078125,0.3740234375,0.4482421875,0.5234375,0.6025390625,0.662109375,0.6826171875,0.666015625,0.6376953125,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.39453125,0.4375,0.501953125,0.56640625,0.611328125,0.6279296875,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.49609375,0.46875,0.4716796875,0.4921875,0.505859375,0.4912109375,0.4482421875,0.40234375,0.3857421875,0.4189453125,0.49609375,0.5859375,0.6513671875,0.673828125,0.685546875,0.6953125,0.6845703125,0.642578125,0.5751953125,0.50390625,0.4482421875,0.404296875,0.3876953125,0.396484375,0.412109375,0.4111328125,0.380859375,0.3251953125,0.2744140625,0.265625,0.2998046875,0.3515625,0.3857421875,0.376953125,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.3193359375,0.296875,0.26953125,0.26171875,0.283203125,0.326171875,0.376953125,0.439453125,0.5361328125,0.634765625,0.689453125,0.68359375,0.6318359375,0.5703125,0.5185546875,0.5068359375,0.533203125,0.5712890625,0.587890625,0.5625,0.5,0.4365234375,0.4111328125,0.427734375,0.4658203125,0.4921875,0.48046875,0.4287109375,0.3671875,0.3154296875,0.3095703125,0.3642578125,0.462890625,0.5595703125,0.6220703125,0.6728515625,0.7158203125,0.7373046875,0.7294921875,0.7021484375,0.6796875,0.673828125,0.677734375,0.6923828125,0.703125,0.6923828125,0.6552734375,0.603515625,0.55078125,0.501953125,0.466796875,0.4658203125,0.501953125,0.556640625,0.6025390625,0.6220703125,0.62890625,0.619140625,0.5859375,0.53515625,0.482421875,0.4453125,0.4287109375,0.408203125,0.3525390625,0.28125,0.232421875,0.228515625,0.2666015625,0.3251953125,0.37890625,0.4033203125,0.400390625,0.3896484375,0.396484375,0.4345703125,0.5,0.5654296875,0.5966796875,0.5712890625,0.4951171875,0.40234375,0.33984375,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.515625,0.5966796875,0.6533203125,0.2822265625,0.3017578125,0.3818359375,0.4814453125,0.5595703125,0.6259765625,0.6787109375,0.6943359375,0.6689453125,0.6201171875,0.580078125,0.5693359375,0.57421875,0.5966796875,0.619140625,0.6142578125,0.57421875,0.5087890625,0.439453125,0.365234375,0.283203125,0.2333984375,0.2509765625,0.3310546875,0.4306640625,0.509765625,0.5673828125,0.5771484375,0.5341796875,0.470703125,0.4267578125,0.43359375,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.56640625,0.65234375,0.7060546875,0.693359375,0.6171875,0.5185546875,0.439453125,0.361328125,0.2685546875,0.2021484375,0.201171875,0.2666015625,0.3603515625,0.439453125,0.5205078125,0.62109375,0.701171875,0.7177734375,0.66796875,0.583984375,0.509765625,0.44140625,0.3837890625,0.357421875,0.3681640625,0.4033203125,0.43359375,0.439453125,0.4404296875,0.4541015625,0.4814453125,0.515625,0.546875,0.564453125,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5751953125,0.5732421875,0.5712890625,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.546875,0.55078125,0.5,0.4248046875,0.3720703125,0.3740234375,0.4296875,0.48828125,0.5087890625,0.48828125,0.451171875,0.4306640625,0.4501953125,0.509765625,0.5771484375,0.634765625,0.662109375,0.650390625,0.615234375,0.5859375,0.5791015625,0.5888671875,0.6220703125,0.658203125,0.6669921875,0.634765625,0.5712890625,0.5,0.421875,0.3359375,0.2841796875,0.302734375,0.3857421875,0.48828125,0.5693359375,0.6455078125,0.7236328125,0.759765625,0.724609375,0.6298828125,0.5205078125,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.421875,0.380859375,0.326171875,0.2939453125,0.302734375,0.3525390625,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.5009765625,0.517578125,0.48828125,0.4404296875,0.412109375,0.4287109375,0.4892578125,0.5478515625,0.5517578125,0.498046875,0.421875,0.3681640625,0.37109375,0.4296875,0.5126953125,0.6240234375,0.7216796875,0.7587890625,0.72265625,0.6455078125,0.5693359375,0.4990234375,0.4453125,0.4296875,0.4580078125,0.5087890625,0.5498046875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.56640625,0.5927734375,0.6181640625,0.6162109375,0.576171875,0.5107421875,0.439453125,0.3623046875,0.26953125,0.205078125,0.205078125,0.26953125,0.3623046875,0.439453125,0.5107421875,0.576171875,0.6162109375,0.6181640625,0.5927734375,0.56640625,0.5595703125,0.5654296875,0.58984375,0.6123046875,0.6064453125,0.5654296875,0.4990234375,0.4296875,0.3544921875,0.271484375,0.2197265625,0.2353515625,0.3125,0.41015625,0.4892578125,0.556640625,0.6015625,0.603515625,0.560546875,0.4970703125,0.4501953125,0.439453125,0.4521484375,0.5078125,0.5859375,0.6474609375,0.6611328125,0.625,0.5595703125,0.4814453125,0.3916015625,0.3291015625,0.333984375,0.4033203125,0.4990234375,0.5791015625,0.6494140625,0.701171875,0.7138671875,0.681640625,0.625,0.5810546875,0.5693359375,0.5546875,0.494140625,0.41015625,0.3427734375,0.326171875,0.36328125,0.4296875,0.490234375,0.5009765625,0.4609375,0.3994140625,0.3564453125,0.36328125,0.419921875,0.5,0.6083984375,0.705078125,0.7431640625,0.7109375,0.6357421875,0.5595703125,0.4990234375,0.4892578125,0.53125,0.595703125,0.6416015625,0.6357421875,0.5791015625,0.5087890625,0.4384765625,0.388671875,0.375,0.390625,0.412109375,0.419921875,0.4345703125,0.4951171875,0.58203125,0.65234375,0.673828125,0.642578125,0.5791015625,0.5185546875,0.490234375,0.494140625,0.5107421875,0.5126953125,0.482421875,0.419921875,0.36328125,0.365234375,0.42578125,0.5087890625,0.568359375,0.5673828125,0.509765625,0.44140625,0.3974609375,0.3984375,0.4453125,0.51171875,0.5595703125,0.5693359375,0.57421875,0.59765625,0.6201171875,0.6142578125,0.5712890625,0.5029296875,0.4296875,0.3603515625,0.3076171875,0.29296875,0.3212890625,0.3720703125,0.412109375,0.419921875,0.41015625,0.375,0.3369140625,0.326171875,0.3564453125,0.41796875,0.4892578125,0.5615234375,0.6240234375,0.6572265625,0.6484375,0.6123046875,0.5791015625,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.4345703125,0.4541015625,0.486328125,0.5234375,0.552734375,0.568359375,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.4501953125,0.4365234375,0.4697265625,0.5234375,0.55859375,0.546875,0.4892578125,0.4248046875,0.384765625,0.390625,0.443359375,0.513671875,0.56640625,0.5791015625,0.587890625,0.6181640625,0.6494140625,0.654296875,0.6201171875,0.55859375,0.4892578125,0.4306640625,0.4130859375,0.4375,0.4775390625,0.5,0.48046875,0.419921875,0.361328125,0.3505859375,0.3896484375,0.44921875,0.48828125,0.478515625,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.41015625,0.3720703125,0.3232421875,0.296875,0.3115234375,0.36328125,0.4296875,0.5087890625,0.615234375,0.708984375,0.744140625,0.708984375,0.6337890625,0.5595703125,0.5,0.4833984375,0.509765625,0.5546875,0.580078125,0.560546875,0.5,0.4384765625,0.4189453125,0.4443359375,0.4892578125,0.515625,0.4990234375,0.439453125,0.365234375,0.2900390625,0.2548828125,0.2900390625,0.3837890625,0.490234375,0.5693359375,0.6357421875,0.6875,0.7021484375,0.67578125,0.626953125,0.5888671875,0.5791015625,0.5869140625,0.6181640625,0.6533203125,0.6640625,0.6357421875,0.5771484375,0.509765625,0.4443359375,0.400390625,0.3994140625,0.4443359375,0.5087890625,0.556640625,0.5693359375,0.568359375,0.5546875,0.52734375,0.4931640625,0.462890625,0.4443359375,0.439453125,0.427734375,0.3837890625,0.326171875,0.2919921875,0.3017578125,0.3515625,0.419921875,0.4794921875,0.4990234375,0.4765625,0.4375,0.416015625,0.4375,0.5,0.5673828125,0.6103515625,0.60546875,0.5546875,0.4833984375,0.431640625,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.5673828125,0.6591796875,0.724609375,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.232421875,0.2119140625,0.2607421875,0.34375,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.453125,0.5107421875,0.59375,0.66015625,0.6787109375,0.64453125,0.5791015625,0.5,0.3994140625,0.318359375,0.2998046875,0.349609375,0.43359375,0.509765625,0.568359375,0.578125,0.5390625,0.4794921875,0.4404296875,0.451171875,0.509765625,0.578125,0.634765625,0.6572265625,0.640625,0.599609375,0.56640625,0.5595703125,0.5498046875,0.5029296875,0.439453125,0.39453125,0.3955078125,0.44140625,0.509765625,0.58984375,0.689453125,0.767578125,0.78125,0.728515625,0.64453125,0.5693359375,0.4931640625,0.40234375,0.3359375,0.333984375,0.39453125,0.4833984375,0.5595703125,0.634765625,0.720703125,0.775390625,0.763671875,0.6884765625,0.58984375,0.509765625,0.4404296875,0.39453125,0.3935546875,0.439453125,0.505859375,0.556640625,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5517578125,0.5732421875,0.552734375,0.515625,0.49609375,0.517578125,0.5791015625,0.6376953125,0.640625,0.5859375,0.5078125,0.4521484375,0.453125,0.509765625,0.576171875,0.6181640625,0.615234375,0.564453125,0.494140625,0.443359375,0.4296875,0.439453125,0.4892578125,0.55859375,0.6103515625,0.6162109375,0.5751953125,0.509765625,0.4296875,0.328125,0.244140625,0.220703125,0.265625,0.345703125,0.419921875,0.5,0.6083984375,0.705078125,0.7431640625,0.7109375,0.6357421875,0.5595703125,0.490234375,0.44140625,0.43359375,0.4697265625,0.52734375,0.5703125,0.5791015625,0.5673828125,0.521484375,0.4638671875,0.4287109375,0.4384765625,0.490234375,0.5595703125,0.6259765625,0.6630859375,0.6484375,0.5859375,0.505859375,0.451171875,0.439453125,0.4345703125,0.412109375,0.3916015625,0.3984375,0.4404296875,0.5078125,0.5791015625,0.6357421875,0.6376953125,0.5830078125,0.505859375,0.451171875,0.453125,0.509765625,0.5693359375,0.587890625,0.5634765625,0.5205078125,0.494140625,0.5107421875,0.5693359375,0.6416015625,0.71484375,0.74609375,0.70703125,0.6103515625,0.5009765625,0.419921875,0.3515625,0.3017578125,0.2900390625,0.3203125,0.3720703125,0.412109375,0.419921875,0.41796875,0.41796875,0.4189453125,0.4208984375,0.421875,0.4208984375,0.419921875,0.431640625,0.4892578125,0.5732421875,0.640625,0.66015625,0.6259765625,0.5595703125,0.4794921875,0.38671875,0.322265625,0.3251953125,0.3935546875,0.4892578125,0.5693359375,0.6357421875,0.6728515625,0.6572265625,0.5927734375,0.509765625,0.453125,0.439453125,0.453125,0.51171875,0.595703125,0.6630859375,0.681640625,0.6455078125,0.5791015625,0.498046875,0.396484375,0.3154296875,0.2978515625,0.3486328125,0.4326171875,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5771484375,0.6025390625,0.625,0.619140625,0.576171875,0.509765625,0.439453125,0.36328125,0.2724609375,0.2080078125,0.20703125,0.271484375,0.3623046875,0.439453125,0.5078125,0.55859375,0.572265625,0.5419921875,0.490234375,0.44921875,0.439453125,0.43359375,0.4091796875,0.388671875,0.3955078125,0.439453125,0.5078125,0.5791015625,0.63671875,0.6455078125,0.6015625,0.537109375,0.4931640625,0.5009765625,0.5595703125,0.6337890625,0.7080078125,0.740234375,0.703125,0.607421875,0.4990234375,0.419921875,0.36328125,0.3564453125,0.400390625,0.46484375,0.5068359375,0.498046875,0.439453125,0.3740234375,0.3369140625,0.3486328125,0.4091796875,0.48828125,0.544921875,0.5595703125,0.5673828125,0.5908203125,0.611328125,0.6025390625,0.5576171875,0.490234375,0.419921875,0.3662109375,0.3740234375,0.4443359375,0.5400390625,0.609375,0.6142578125,0.5595703125,0.5,0.4833984375,0.51171875,0.5576171875,0.5859375,0.5693359375,0.509765625,0.439453125,0.3779296875,0.3466796875,0.353515625,0.384765625,0.4140625,0.419921875,0.431640625,0.490234375,0.578125,0.650390625,0.673828125,0.6435546875,0.5791015625,0.5107421875,0.4580078125,0.4423828125,0.466796875,0.5146484375,0.5517578125,0.5595703125,0.5458984375,0.49609375,0.4287109375,0.3837890625,0.384765625,0.4306640625,0.5,0.5673828125,0.611328125,0.6083984375,0.5576171875,0.4853515625,0.43359375,0.419921875,0.421875,0.439453125,0.4736328125,0.5146484375,0.548828125,0.5673828125,0.5693359375,0.564453125,0.5478515625,0.5185546875,0.4853515625,0.45703125,0.4423828125,0.439453125,0.4501953125,0.49609375,0.55859375,0.6005859375,0.5986328125,0.5546875,0.4892578125,0.4326171875,0.421875,0.4609375,0.5185546875,0.556640625,0.546875,0.4892578125,0.421875,0.365234375,0.3408203125,0.3544921875,0.3916015625,0.4228515625,0.4296875,0.439453125,0.484375,0.548828125,0.5947265625,0.595703125,0.5546875,0.4892578125,0.4345703125,0.4365234375,0.4951171875,0.5751953125,0.630859375,0.6279296875,0.5693359375,0.5087890625,0.49609375,0.533203125,0.58984375,0.6279296875,0.6181640625,0.5595703125,0.4912109375,0.44140625,0.431640625,0.4658203125,0.5234375,0.5673828125,0.5791015625,0.5703125,0.52734375,0.4697265625,0.43359375,0.44140625,0.490234375,0.5595703125,0.6357421875,0.712890625,0.7490234375,0.7119140625,0.6142578125,0.5029296875,0.419921875,0.3623046875,0.3603515625,0.4189453125,0.5009765625,0.55859375,0.5576171875,0.5,0.44140625,0.4375,0.4912109375,0.5673828125,0.62109375,0.6181640625,0.5595703125,0.4765625,0.3662109375,0.271484375,0.2373046875,0.2744140625,0.3525390625,0.4296875,0.4990234375,0.55078125,0.5615234375,0.5283203125,0.47265625,0.4296875,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.439453125,0.3798828125,0.3505859375,0.359375,0.3935546875,0.423828125,0.4296875,0.431640625,0.4482421875,0.4814453125,0.521484375,0.556640625,0.5751953125,0.5791015625,0.5693359375,0.5283203125,0.4755859375,0.443359375,0.4541015625,0.5029296875,0.5693359375,0.625,0.6259765625,0.572265625,0.49609375,0.4423828125,0.4443359375,0.5,0.5673828125,0.6259765625,0.6533203125,0.640625,0.6025390625,0.5693359375,0.5595703125,0.546875,0.4990234375,0.435546875,0.392578125,0.396484375,0.4423828125,0.509765625,0.5869140625,0.6796875,0.744140625,0.2099609375,0.1689453125,0.1943359375,0.259765625,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.443359375,0.5087890625,0.6083984375,0.69921875,0.7421875,0.7275390625,0.673828125,0.6025390625,0.5068359375,0.4228515625,0.390625,0.419921875,0.4853515625,0.55078125,0.6025390625,0.611328125,0.5771484375,0.525390625,0.4912109375,0.5,0.55078125,0.609375,0.6513671875,0.6591796875,0.6337890625,0.59375,0.568359375,0.5703125,0.5693359375,0.533203125,0.4775390625,0.4375,0.439453125,0.4833984375,0.55078125,0.6298828125,0.720703125,0.787109375,0.796875,0.75,0.6796875,0.6220703125,0.5634765625,0.490234375,0.431640625,0.41796875,0.4541015625,0.5146484375,0.5703125,0.62890625,0.7060546875,0.7646484375,0.7685546875,0.712890625,0.62890625,0.55078125,0.4814453125,0.431640625,0.4267578125,0.470703125,0.5419921875,0.599609375,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.5126953125,0.55078125,0.5615234375,0.5595703125,0.5703125,0.6083984375,0.673828125,0.7314453125,0.7333984375,0.673828125,0.5849609375,0.515625,0.50390625,0.55078125,0.6083984375,0.6376953125,0.6181640625,0.55078125,0.46484375,0.400390625,0.376953125,0.3798828125,0.4287109375,0.51171875,0.587890625,0.623046875,0.60546875,0.55078125,0.4794921875,0.376953125,0.27734375,0.22265625,0.2275390625,0.2724609375,0.3251953125,0.390625,0.4990234375,0.6171875,0.6904296875,0.693359375,0.6416015625,0.5703125,0.50390625,0.470703125,0.48828125,0.5498046875,0.6240234375,0.6708984375,0.673828125,0.6513671875,0.5888671875,0.5107421875,0.45703125,0.455078125,0.5009765625,0.5703125,0.634765625,0.6640625,0.638671875,0.56640625,0.4833984375,0.4326171875,0.4287109375,0.4365234375,0.4375,0.4482421875,0.482421875,0.541015625,0.609375,0.673828125,0.7216796875,0.7158203125,0.654296875,0.5703125,0.5087890625,0.5029296875,0.55078125,0.60546875,0.62890625,0.6181640625,0.58984375,0.5693359375,0.5791015625,0.6220703125,0.6728515625,0.7099609375,0.69921875,0.625,0.509765625,0.3994140625,0.3251953125,0.267578125,0.228515625,0.224609375,0.2548828125,0.298828125,0.3271484375,0.3251953125,0.3173828125,0.3154296875,0.3212890625,0.330078125,0.3359375,0.333984375,0.3251953125,0.3310546875,0.39453125,0.5009765625,0.6005859375,0.6494140625,0.6328125,0.5703125,0.4912109375,0.4033203125,0.3486328125,0.3623046875,0.4404296875,0.541015625,0.6220703125,0.6865234375,0.7158203125,0.6865234375,0.60546875,0.5087890625,0.443359375,0.4287109375,0.4443359375,0.515625,0.6240234375,0.71875,0.759765625,0.7373046875,0.673828125,0.591796875,0.4892578125,0.4033203125,0.375,0.4130859375,0.484375,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.634765625,0.6484375,0.6455078125,0.611328125,0.55078125,0.484375,0.4287109375,0.37109375,0.2978515625,0.2431640625,0.23828125,0.2880859375,0.3623046875,0.4287109375,0.48828125,0.533203125,0.544921875,0.5185546875,0.4736328125,0.4375,0.4287109375,0.42578125,0.419921875,0.4287109375,0.4677734375,0.533203125,0.6083984375,0.673828125,0.7216796875,0.71875,0.6611328125,0.58203125,0.5244140625,0.521484375,0.5703125,0.630859375,0.67578125,0.6708984375,0.6015625,0.4921875,0.3896484375,0.3251953125,0.287109375,0.2978515625,0.357421875,0.4326171875,0.4814453125,0.4794921875,0.4287109375,0.37109375,0.337890625,0.349609375,0.408203125,0.4873046875,0.5478515625,0.5703125,0.5810546875,0.5888671875,0.57421875,0.52734375,0.455078125,0.3828125,0.3251953125,0.2900390625,0.318359375,0.4091796875,0.521484375,0.6025390625,0.6171875,0.5703125,0.5185546875,0.5068359375,0.537109375,0.583984375,0.6142578125,0.6025390625,0.55078125,0.4873046875,0.421875,0.3671875,0.337890625,0.33203125,0.33203125,0.3251953125,0.33203125,0.40234375,0.5234375,0.646484375,0.7197265625,0.7236328125,0.673828125,0.6123046875,0.5615234375,0.53515625,0.5380859375,0.55859375,0.57421875,0.5703125,0.5478515625,0.490234375,0.4189453125,0.375,0.3798828125,0.4296875,0.5,0.56640625,0.6044921875,0.5859375,0.5146484375,0.419921875,0.349609375,0.3251953125,0.32421875,0.3583984375,0.4296875,0.517578125,0.5888671875,0.623046875,0.6220703125,0.607421875,0.576171875,0.53125,0.484375,0.44921875,0.431640625,0.4287109375,0.4365234375,0.46875,0.5107421875,0.537109375,0.5322265625,0.4970703125,0.4482421875,0.4052734375,0.3974609375,0.4267578125,0.4697265625,0.498046875,0.490234375,0.4482421875,0.3984375,0.3583984375,0.3408203125,0.3486328125,0.3681640625,0.3818359375,0.376953125,0.3759765625,0.40625,0.4580078125,0.5029296875,0.5166015625,0.494140625,0.4482421875,0.412109375,0.4375,0.5205078125,0.6181640625,0.681640625,0.6806640625,0.6220703125,0.5595703125,0.5361328125,0.5576171875,0.599609375,0.6298828125,0.62109375,0.5703125,0.51171875,0.47265625,0.4765625,0.525390625,0.5966796875,0.65234375,0.673828125,0.6708984375,0.6240234375,0.5498046875,0.48828125,0.470703125,0.50390625,0.5703125,0.64453125,0.708984375,0.720703125,0.65625,0.53515625,0.4111328125,0.3251953125,0.26953125,0.2802734375,0.359375,0.4658203125,0.544921875,0.5556640625,0.5,0.44140625,0.439453125,0.4951171875,0.57421875,0.6298828125,0.6279296875,0.5703125,0.4853515625,0.3681640625,0.2587890625,0.2080078125,0.2314453125,0.3017578125,0.376953125,0.4462890625,0.4921875,0.494140625,0.4501953125,0.384765625,0.3369140625,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.4892578125,0.4287109375,0.38671875,0.37109375,0.3759765625,0.3828125,0.376953125,0.3740234375,0.40234375,0.466796875,0.548828125,0.623046875,0.6650390625,0.673828125,0.6650390625,0.62890625,0.580078125,0.544921875,0.5419921875,0.5732421875,0.6220703125,0.6611328125,0.654296875,0.5986328125,0.5224609375,0.466796875,0.4599609375,0.5,0.5517578125,0.6044921875,0.63671875,0.638671875,0.6142578125,0.5859375,0.5703125,0.55078125,0.505859375,0.453125,0.4267578125,0.4423828125,0.490234375,0.55078125,0.619140625,0.7001953125,0.7568359375,0.208984375,0.15625,0.1650390625,0.2109375,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.4814453125,0.541015625,0.6357421875,0.7255859375,0.7783203125,0.7783203125,0.740234375,0.6865234375,0.6103515625,0.5380859375,0.501953125,0.5146484375,0.5576171875,0.6044921875,0.642578125,0.6494140625,0.6240234375,0.5849609375,0.5595703125,0.56640625,0.6044921875,0.6435546875,0.65234375,0.6240234375,0.57421875,0.5283203125,0.5126953125,0.5302734375,0.546875,0.5341796875,0.501953125,0.48046875,0.490234375,0.537109375,0.6044921875,0.677734375,0.7451171875,0.779296875,0.7646484375,0.71484375,0.6630859375,0.634765625,0.611328125,0.57421875,0.533203125,0.5048828125,0.4990234375,0.51171875,0.5302734375,0.5595703125,0.625,0.6982421875,0.740234375,0.7294921875,0.6748046875,0.6044921875,0.5322265625,0.4677734375,0.44140625,0.46875,0.5341796875,0.5986328125,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.4619140625,0.5146484375,0.5517578125,0.5830078125,0.619140625,0.671875,0.740234375,0.80078125,0.8095703125,0.7587890625,0.673828125,0.5986328125,0.5732421875,0.6044921875,0.646484375,0.666015625,0.640625,0.568359375,0.4765625,0.4013671875,0.3642578125,0.3505859375,0.38671875,0.46875,0.5634765625,0.6279296875,0.6396484375,0.6044921875,0.5498046875,0.4638671875,0.3642578125,0.2841796875,0.244140625,0.2421875,0.2587890625,0.2939453125,0.3818359375,0.4990234375,0.59375,0.626953125,0.595703125,0.5302734375,0.46875,0.45703125,0.5107421875,0.607421875,0.703125,0.7509765625,0.740234375,0.69921875,0.61328125,0.5078125,0.4326171875,0.4189453125,0.4609375,0.5302734375,0.5947265625,0.6240234375,0.6044921875,0.546875,0.484375,0.455078125,0.46875,0.4951171875,0.5205078125,0.5517578125,0.59375,0.642578125,0.693359375,0.740234375,0.7744140625,0.7646484375,0.708984375,0.6357421875,0.580078125,0.5703125,0.6044921875,0.646484375,0.6728515625,0.673828125,0.654296875,0.630859375,0.6220703125,0.634765625,0.6513671875,0.6455078125,0.5986328125,0.5107421875,0.404296875,0.314453125,0.2587890625,0.21875,0.201171875,0.2119140625,0.2421875,0.271484375,0.2783203125,0.2587890625,0.2373046875,0.2333984375,0.248046875,0.2705078125,0.28515625,0.28125,0.2587890625,0.25,0.3046875,0.4140625,0.52734375,0.59375,0.58984375,0.5302734375,0.4521484375,0.37109375,0.328125,0.35546875,0.4462890625,0.552734375,0.634765625,0.701171875,0.7333984375,0.708984375,0.6357421875,0.544921875,0.4833984375,0.46875,0.4853515625,0.5595703125,0.673828125,0.775390625,0.8232421875,0.8037109375,0.740234375,0.6611328125,0.5654296875,0.48828125,0.4638671875,0.4951171875,0.5537109375,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.6591796875,0.669921875,0.6513671875,0.6044921875,0.544921875,0.4951171875,0.46875,0.4443359375,0.404296875,0.3671875,0.35546875,0.3779296875,0.4228515625,0.46875,0.513671875,0.546875,0.5546875,0.53515625,0.501953125,0.4755859375,0.46875,0.46875,0.4755859375,0.501953125,0.5546875,0.6240234375,0.689453125,0.740234375,0.7734375,0.75390625,0.681640625,0.587890625,0.515625,0.4970703125,0.5302734375,0.5703125,0.58203125,0.5439453125,0.4609375,0.36328125,0.2900390625,0.2587890625,0.251953125,0.2900390625,0.3671875,0.44921875,0.501953125,0.505859375,0.46875,0.4228515625,0.3818359375,0.3671875,0.3916015625,0.443359375,0.49609375,0.5302734375,0.5517578125,0.548828125,0.5078125,0.4326171875,0.349609375,0.287109375,0.2587890625,0.2529296875,0.298828125,0.3896484375,0.48828125,0.5546875,0.5654296875,0.5302734375,0.494140625,0.49609375,0.5380859375,0.5966796875,0.638671875,0.640625,0.6044921875,0.5556640625,0.49609375,0.4306640625,0.369140625,0.3212890625,0.2861328125,0.2587890625,0.2509765625,0.31640625,0.4521484375,0.6103515625,0.728515625,0.76953125,0.740234375,0.6943359375,0.6513671875,0.6162109375,0.5908203125,0.572265625,0.5537109375,0.5302734375,0.4931640625,0.4287109375,0.36328125,0.3369140625,0.3623046875,0.4267578125,0.5,0.5673828125,0.60546875,0.5849609375,0.501953125,0.390625,0.2998046875,0.2587890625,0.24609375,0.287109375,0.3857421875,0.5078125,0.6064453125,0.6484375,0.634765625,0.60546875,0.56640625,0.5244140625,0.4912109375,0.474609375,0.4697265625,0.46875,0.4697265625,0.4716796875,0.4697265625,0.4580078125,0.4375,0.4150390625,0.39453125,0.37890625,0.3759765625,0.38671875,0.40234375,0.4130859375,0.41015625,0.39453125,0.37890625,0.376953125,0.3857421875,0.3974609375,0.3994140625,0.3876953125,0.3642578125,0.341796875,0.3369140625,0.353515625,0.3798828125,0.4033203125,0.408203125,0.39453125,0.3916015625,0.4482421875,0.5517578125,0.654296875,0.708984375,0.6962890625,0.634765625,0.5693359375,0.5302734375,0.52734375,0.548828125,0.5703125,0.56640625,0.5302734375,0.4873046875,0.4638671875,0.482421875,0.546875,0.6318359375,0.703125,0.740234375,0.7509765625,0.703125,0.607421875,0.5107421875,0.45703125,0.46875,0.5302734375,0.603515625,0.6640625,0.6708984375,0.599609375,0.4716796875,0.3447265625,0.2587890625,0.205078125,0.2236328125,0.3173828125,0.44140625,0.53515625,0.5537109375,0.5,0.4404296875,0.43359375,0.48046875,0.548828125,0.595703125,0.5888671875,0.5302734375,0.4462890625,0.33203125,0.228515625,0.1845703125,0.2138671875,0.2880859375,0.3642578125,0.431640625,0.470703125,0.4609375,0.40234375,0.326171875,0.271484375,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.55859375,0.51171875,0.46875,0.435546875,0.4111328125,0.388671875,0.3642578125,0.3466796875,0.373046875,0.4521484375,0.5634765625,0.6669921875,0.7275390625,0.740234375,0.7353515625,0.7109375,0.673828125,0.6376953125,0.6181640625,0.619140625,0.634765625,0.6474609375,0.6337890625,0.5927734375,0.541015625,0.5,0.4873046875,0.5,0.5224609375,0.5556640625,0.5849609375,0.5966796875,0.583984375,0.5576171875,0.5302734375,0.5,0.462890625,0.44140625,0.453125,0.4970703125,0.5546875,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.2373046875,0.1923828125,0.197265625,0.228515625,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.5380859375,0.5791015625,0.6455078125,0.712890625,0.7548828125,0.7607421875,0.740234375,0.7080078125,0.6611328125,0.61328125,0.5849609375,0.5859375,0.6083984375,0.634765625,0.6572265625,0.6611328125,0.646484375,0.6240234375,0.609375,0.61328125,0.634765625,0.650390625,0.623046875,0.5576171875,0.4833984375,0.4345703125,0.4326171875,0.46875,0.5068359375,0.5185546875,0.5107421875,0.5048828125,0.521484375,0.5673828125,0.634765625,0.701171875,0.7392578125,0.7314453125,0.685546875,0.6279296875,0.5966796875,0.6044921875,0.6220703125,0.630859375,0.6181640625,0.5830078125,0.53515625,0.4931640625,0.46875,0.46484375,0.5126953125,0.599609375,0.681640625,0.7197265625,0.6982421875,0.634765625,0.55859375,0.4755859375,0.421875,0.4248046875,0.48046875,0.55078125,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.4326171875,0.4892578125,0.533203125,0.5712890625,0.615234375,0.671875,0.740234375,0.8037109375,0.828125,0.7978515625,0.728515625,0.6572265625,0.6220703125,0.634765625,0.6611328125,0.677734375,0.6630859375,0.607421875,0.525390625,0.4482421875,0.39453125,0.359375,0.37109375,0.435546875,0.5302734375,0.6123046875,0.6484375,0.634765625,0.603515625,0.548828125,0.474609375,0.39453125,0.326171875,0.2822265625,0.2587890625,0.255859375,0.30859375,0.4052734375,0.5,0.546875,0.53125,0.46875,0.412109375,0.4189453125,0.5,0.62109375,0.7265625,0.767578125,0.740234375,0.6796875,0.572265625,0.44921875,0.3671875,0.353515625,0.3994140625,0.46875,0.5341796875,0.5673828125,0.560546875,0.52734375,0.4951171875,0.494140625,0.5302734375,0.5751953125,0.6181640625,0.654296875,0.6796875,0.697265625,0.7158203125,0.740234375,0.759765625,0.7509765625,0.712890625,0.662109375,0.6240234375,0.615234375,0.634765625,0.662109375,0.689453125,0.701171875,0.6904296875,0.66015625,0.626953125,0.6044921875,0.58203125,0.541015625,0.48046875,0.408203125,0.33984375,0.2900390625,0.2587890625,0.2392578125,0.2470703125,0.275390625,0.3056640625,0.3173828125,0.2998046875,0.2587890625,0.220703125,0.21484375,0.240234375,0.2783203125,0.3037109375,0.296875,0.2587890625,0.2294921875,0.263671875,0.35546875,0.4609375,0.5283203125,0.52734375,0.46875,0.392578125,0.314453125,0.2783203125,0.314453125,0.4111328125,0.521484375,0.6044921875,0.6728515625,0.7158203125,0.712890625,0.662109375,0.5927734375,0.5419921875,0.5302734375,0.544921875,0.6123046875,0.7119140625,0.7978515625,0.83203125,0.8046875,0.740234375,0.6640625,0.583984375,0.52734375,0.5185546875,0.5537109375,0.6015625,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.64453125,0.6572265625,0.634765625,0.587890625,0.541015625,0.51953125,0.5302734375,0.544921875,0.54296875,0.52734375,0.5078125,0.4990234375,0.5068359375,0.5302734375,0.5556640625,0.5751953125,0.580078125,0.568359375,0.548828125,0.533203125,0.5302734375,0.53125,0.541015625,0.568359375,0.61328125,0.6650390625,0.7099609375,0.740234375,0.755859375,0.7265625,0.6513671875,0.5576171875,0.482421875,0.453125,0.46875,0.4873046875,0.4697265625,0.4140625,0.3388671875,0.2763671875,0.2490234375,0.2587890625,0.287109375,0.349609375,0.4326171875,0.5078125,0.548828125,0.5517578125,0.5302734375,0.49609375,0.443359375,0.3916015625,0.3671875,0.3818359375,0.4228515625,0.46875,0.505859375,0.501953125,0.44921875,0.3671875,0.2900390625,0.251953125,0.2587890625,0.2861328125,0.3408203125,0.4111328125,0.4697265625,0.4970703125,0.4921875,0.46875,0.451171875,0.466796875,0.5185546875,0.5849609375,0.63671875,0.6533203125,0.634765625,0.6064453125,0.568359375,0.513671875,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.2294921875,0.2705078125,0.388671875,0.546875,0.6826171875,0.748046875,0.740234375,0.71484375,0.6884765625,0.6572265625,0.6162109375,0.56640625,0.515625,0.46875,0.416015625,0.3447265625,0.2900390625,0.2861328125,0.33984375,0.4228515625,0.5,0.5703125,0.619140625,0.61328125,0.5380859375,0.4228515625,0.318359375,0.2587890625,0.2294921875,0.2646484375,0.3671875,0.4970703125,0.599609375,0.634765625,0.6044921875,0.55859375,0.5166015625,0.4912109375,0.4912109375,0.5078125,0.525390625,0.5302734375,0.5234375,0.4921875,0.44140625,0.3896484375,0.35546875,0.349609375,0.3642578125,0.3798828125,0.3828125,0.3720703125,0.3564453125,0.345703125,0.3486328125,0.3642578125,0.3896484375,0.43359375,0.4775390625,0.4970703125,0.48046875,0.4404296875,0.39453125,0.3466796875,0.298828125,0.26953125,0.2734375,0.3037109375,0.33984375,0.3642578125,0.3984375,0.482421875,0.59375,0.6796875,0.7060546875,0.671875,0.6044921875,0.53515625,0.4814453125,0.4580078125,0.4638671875,0.482421875,0.48828125,0.46875,0.443359375,0.4306640625,0.4521484375,0.5166015625,0.6044921875,0.685546875,0.740234375,0.767578125,0.7265625,0.62109375,0.5,0.4189453125,0.412109375,0.46875,0.5439453125,0.6123046875,0.6328125,0.5771484375,0.462890625,0.34375,0.2587890625,0.205078125,0.2236328125,0.3173828125,0.44140625,0.53515625,0.5537109375,0.5,0.439453125,0.4248046875,0.4580078125,0.5107421875,0.5439453125,0.529296875,0.46875,0.3876953125,0.2841796875,0.201171875,0.181640625,0.2314453125,0.31640625,0.39453125,0.4609375,0.4970703125,0.48046875,0.4140625,0.330078125,0.2724609375,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.6103515625,0.587890625,0.5634765625,0.5302734375,0.4873046875,0.4404296875,0.39453125,0.3583984375,0.3671875,0.435546875,0.546875,0.6572265625,0.7255859375,0.740234375,0.7392578125,0.734375,0.7177734375,0.6904296875,0.65625,0.6259765625,0.6044921875,0.5859375,0.5703125,0.5576171875,0.5458984375,0.533203125,0.517578125,0.5,0.486328125,0.4951171875,0.5185546875,0.5380859375,0.537109375,0.51171875,0.46875,0.4248046875,0.396484375,0.40625,0.4580078125,0.533203125,0.599609375,0.634765625,0.6640625,0.69921875,0.7236328125,0.28515625,0.2646484375,0.28125,0.3095703125,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.57421875,0.5927734375,0.623046875,0.6552734375,0.67578125,0.6806640625,0.673828125,0.66015625,0.640625,0.619140625,0.60546875,0.6044921875,0.611328125,0.6220703125,0.6298828125,0.6318359375,0.6259765625,0.6171875,0.611328125,0.61328125,0.6220703125,0.619140625,0.5673828125,0.48046875,0.3994140625,0.359375,0.375,0.4287109375,0.4833984375,0.509765625,0.5107421875,0.5048828125,0.515625,0.5556640625,0.6220703125,0.6826171875,0.697265625,0.65625,0.5859375,0.5263671875,0.513671875,0.55078125,0.60546875,0.6572265625,0.6767578125,0.64453125,0.5703125,0.48828125,0.4287109375,0.3935546875,0.421875,0.5087890625,0.611328125,0.6796875,0.6796875,0.6220703125,0.5419921875,0.4453125,0.3701171875,0.3564453125,0.4052734375,0.4833984375,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.4443359375,0.490234375,0.5166015625,0.5341796875,0.5595703125,0.6064453125,0.673828125,0.740234375,0.7802734375,0.7744140625,0.7265625,0.6630859375,0.623046875,0.6220703125,0.63671875,0.658203125,0.6669921875,0.642578125,0.5849609375,0.5126953125,0.4482421875,0.3935546875,0.3759765625,0.4111328125,0.4873046875,0.5703125,0.619140625,0.6220703125,0.611328125,0.59765625,0.568359375,0.515625,0.4482421875,0.380859375,0.3251953125,0.2880859375,0.3056640625,0.3720703125,0.4521484375,0.5,0.4892578125,0.4287109375,0.373046875,0.38671875,0.4736328125,0.59375,0.6904296875,0.7177734375,0.673828125,0.59765625,0.4814453125,0.3623046875,0.2939453125,0.2978515625,0.3564453125,0.4287109375,0.4931640625,0.52734375,0.5263671875,0.5078125,0.4970703125,0.5166015625,0.5703125,0.630859375,0.681640625,0.708984375,0.7060546875,0.6845703125,0.6689453125,0.673828125,0.6806640625,0.67578125,0.6591796875,0.63671875,0.619140625,0.6142578125,0.6220703125,0.6376953125,0.666015625,0.6904296875,0.6884765625,0.6552734375,0.603515625,0.55078125,0.498046875,0.439453125,0.38671875,0.353515625,0.3388671875,0.333984375,0.3251953125,0.32421875,0.3525390625,0.3955078125,0.4267578125,0.4228515625,0.3837890625,0.3251953125,0.2744140625,0.265625,0.2998046875,0.3515625,0.3857421875,0.376953125,0.3251953125,0.2783203125,0.2880859375,0.3525390625,0.4365234375,0.4921875,0.48828125,0.4287109375,0.3525390625,0.2724609375,0.2333984375,0.265625,0.359375,0.46875,0.55078125,0.62109375,0.67578125,0.693359375,0.66796875,0.619140625,0.5791015625,0.5703125,0.58203125,0.63671875,0.712890625,0.7705078125,0.7802734375,0.7412109375,0.673828125,0.6005859375,0.5361328125,0.50390625,0.515625,0.5595703125,0.6025390625,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.6044921875,0.6220703125,0.599609375,0.556640625,0.5244140625,0.5283203125,0.5703125,0.6181640625,0.6494140625,0.6513671875,0.625,0.5888671875,0.5673828125,0.5703125,0.580078125,0.587890625,0.58984375,0.5849609375,0.5771484375,0.5712890625,0.5703125,0.5712890625,0.5771484375,0.5927734375,0.6162109375,0.640625,0.6611328125,0.673828125,0.6767578125,0.6484375,0.587890625,0.5146484375,0.4541015625,0.42578125,0.4287109375,0.4296875,0.39453125,0.3359375,0.2822265625,0.26171875,0.2802734375,0.3251953125,0.3828125,0.455078125,0.52734375,0.57421875,0.5888671875,0.5810546875,0.5703125,0.5478515625,0.4873046875,0.408203125,0.349609375,0.337890625,0.37109375,0.4287109375,0.4794921875,0.4814453125,0.4326171875,0.357421875,0.2978515625,0.287109375,0.3251953125,0.37890625,0.4345703125,0.4755859375,0.4853515625,0.46875,0.443359375,0.4287109375,0.4248046875,0.4462890625,0.4951171875,0.5556640625,0.6044921875,0.6259765625,0.6220703125,0.61328125,0.60546875,0.5830078125,0.53515625,0.4658203125,0.390625,0.3251953125,0.275390625,0.279296875,0.3525390625,0.4755859375,0.5966796875,0.6669921875,0.673828125,0.666015625,0.6640625,0.6533203125,0.619140625,0.5615234375,0.4931640625,0.4287109375,0.361328125,0.283203125,0.234375,0.248046875,0.3232421875,0.419921875,0.5,0.57421875,0.640625,0.6611328125,0.6103515625,0.5068359375,0.3994140625,0.3251953125,0.279296875,0.2978515625,0.3828125,0.494140625,0.5791015625,0.5966796875,0.55078125,0.4921875,0.44921875,0.4423828125,0.4736328125,0.5234375,0.5615234375,0.5703125,0.55859375,0.505859375,0.4248046875,0.3515625,0.318359375,0.33203125,0.376953125,0.419921875,0.427734375,0.3984375,0.35546875,0.3271484375,0.3349609375,0.376953125,0.4375,0.5185546875,0.58984375,0.6123046875,0.5791015625,0.5126953125,0.4482421875,0.3798828125,0.296875,0.2314453125,0.216796875,0.2568359375,0.3212890625,0.376953125,0.4404296875,0.541015625,0.642578125,0.697265625,0.6845703125,0.6240234375,0.55078125,0.48046875,0.4189453125,0.3857421875,0.388671875,0.4130859375,0.431640625,0.4287109375,0.416015625,0.40234375,0.4091796875,0.4521484375,0.5263671875,0.6064453125,0.673828125,0.7177734375,0.6904296875,0.59375,0.4736328125,0.38671875,0.373046875,0.4287109375,0.505859375,0.587890625,0.6318359375,0.6044921875,0.5146484375,0.408203125,0.3251953125,0.26953125,0.2802734375,0.359375,0.4658203125,0.544921875,0.5556640625,0.5,0.4384765625,0.4189453125,0.443359375,0.4853515625,0.509765625,0.490234375,0.4287109375,0.349609375,0.2578125,0.1953125,0.2001953125,0.271484375,0.3671875,0.4482421875,0.5146484375,0.552734375,0.5380859375,0.4755859375,0.39453125,0.3388671875,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6162109375,0.623046875,0.6279296875,0.6123046875,0.5703125,0.509765625,0.4482421875,0.3935546875,0.3759765625,0.4150390625,0.5009765625,0.5966796875,0.6591796875,0.673828125,0.677734375,0.6923828125,0.703125,0.6923828125,0.6552734375,0.603515625,0.55078125,0.5078125,0.4931640625,0.5107421875,0.5400390625,0.556640625,0.54296875,0.5,0.45703125,0.4462890625,0.466796875,0.49609375,0.5068359375,0.4833984375,0.4287109375,0.3720703125,0.3447265625,0.369140625,0.44140625,0.5322265625,0.5986328125,0.6220703125,0.6328125,0.646484375,0.65625,0.33203125,0.3408203125,0.376953125,0.41015625,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.5791015625,0.580078125,0.5791015625,0.5771484375,0.57421875,0.5703125,0.5673828125,0.56640625,0.5673828125,0.5693359375,0.5703125,0.5712890625,0.5703125,0.568359375,0.5673828125,0.568359375,0.5693359375,0.55859375,0.5029296875,0.421875,0.357421875,0.33984375,0.375,0.439453125,0.5009765625,0.5263671875,0.5146484375,0.4892578125,0.478515625,0.505859375,0.5693359375,0.6279296875,0.6337890625,0.58203125,0.5078125,0.453125,0.4541015625,0.509765625,0.583984375,0.6650390625,0.712890625,0.6943359375,0.615234375,0.517578125,0.439453125,0.3857421875,0.3935546875,0.462890625,0.556640625,0.623046875,0.626953125,0.5693359375,0.48828125,0.3876953125,0.3095703125,0.2939453125,0.3466796875,0.4326171875,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.4931640625,0.521484375,0.5146484375,0.494140625,0.4873046875,0.515625,0.5791015625,0.6484375,0.69921875,0.708984375,0.6748046875,0.619140625,0.578125,0.5693359375,0.5791015625,0.611328125,0.6455078125,0.6533203125,0.6220703125,0.5595703125,0.4892578125,0.423828125,0.3828125,0.388671875,0.4404296875,0.509765625,0.5595703125,0.5693359375,0.5732421875,0.59375,0.611328125,0.6015625,0.556640625,0.4892578125,0.419921875,0.36328125,0.357421875,0.4033203125,0.4677734375,0.509765625,0.5,0.439453125,0.3828125,0.388671875,0.4580078125,0.5546875,0.626953125,0.6337890625,0.5791015625,0.498046875,0.3876953125,0.2900390625,0.2529296875,0.287109375,0.36328125,0.439453125,0.5029296875,0.5283203125,0.5166015625,0.48828125,0.474609375,0.498046875,0.5595703125,0.6279296875,0.6806640625,0.6962890625,0.671875,0.6240234375,0.5869140625,0.5791015625,0.580078125,0.5791015625,0.576171875,0.572265625,0.5693359375,0.568359375,0.5693359375,0.5791015625,0.6123046875,0.650390625,0.6630859375,0.6357421875,0.5771484375,0.509765625,0.44140625,0.380859375,0.349609375,0.35546875,0.38671875,0.4140625,0.419921875,0.427734375,0.4677734375,0.51953125,0.5498046875,0.5380859375,0.4873046875,0.419921875,0.361328125,0.3505859375,0.3896484375,0.44921875,0.48828125,0.478515625,0.419921875,0.3623046875,0.35546875,0.400390625,0.46484375,0.5087890625,0.4990234375,0.439453125,0.361328125,0.2763671875,0.224609375,0.2431640625,0.3251953125,0.427734375,0.509765625,0.580078125,0.638671875,0.6630859375,0.646484375,0.603515625,0.568359375,0.5595703125,0.5693359375,0.6142578125,0.671875,0.70703125,0.6982421875,0.6484375,0.5791015625,0.5087890625,0.4541015625,0.4375,0.46484375,0.5166015625,0.5576171875,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.5693359375,0.5869140625,0.5595703125,0.5146484375,0.486328125,0.5009765625,0.5595703125,0.6259765625,0.6748046875,0.685546875,0.65625,0.60546875,0.5673828125,0.5595703125,0.560546875,0.5625,0.5625,0.5615234375,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.564453125,0.568359375,0.5732421875,0.5771484375,0.5791015625,0.5771484375,0.560546875,0.5283203125,0.490234375,0.4580078125,0.44140625,0.439453125,0.431640625,0.390625,0.3349609375,0.30078125,0.3076171875,0.353515625,0.419921875,0.490234375,0.5576171875,0.6025390625,0.611328125,0.5908203125,0.5673828125,0.5595703125,0.544921875,0.48828125,0.4091796875,0.3486328125,0.3369140625,0.3740234375,0.439453125,0.498046875,0.5068359375,0.46484375,0.400390625,0.3564453125,0.36328125,0.419921875,0.4873046875,0.5400390625,0.55859375,0.5361328125,0.4892578125,0.4501953125,0.439453125,0.44140625,0.45703125,0.486328125,0.5224609375,0.5517578125,0.5673828125,0.5693359375,0.57421875,0.595703125,0.6142578125,0.6044921875,0.5595703125,0.4912109375,0.419921875,0.35546875,0.3251953125,0.3486328125,0.4208984375,0.5087890625,0.5673828125,0.5791015625,0.583984375,0.6064453125,0.626953125,0.62109375,0.578125,0.5107421875,0.439453125,0.36328125,0.27734375,0.224609375,0.2392578125,0.318359375,0.4189453125,0.5,0.5771484375,0.66015625,0.7080078125,0.6865234375,0.6025390625,0.5,0.419921875,0.36328125,0.3642578125,0.4228515625,0.505859375,0.5654296875,0.5654296875,0.509765625,0.4423828125,0.3974609375,0.3955078125,0.4384765625,0.501953125,0.548828125,0.5595703125,0.546875,0.4912109375,0.4111328125,0.3486328125,0.33203125,0.3662109375,0.4296875,0.486328125,0.4970703125,0.458984375,0.400390625,0.3623046875,0.373046875,0.4296875,0.5078125,0.60546875,0.68359375,0.7001953125,0.6494140625,0.5654296875,0.4892578125,0.41015625,0.3125,0.2353515625,0.2197265625,0.271484375,0.3544921875,0.4296875,0.5078125,0.609375,0.693359375,0.7158203125,0.6689453125,0.5869140625,0.509765625,0.4384765625,0.3779296875,0.3505859375,0.36328125,0.4013671875,0.4326171875,0.439453125,0.431640625,0.40625,0.384765625,0.3935546875,0.4384765625,0.5078125,0.5791015625,0.6337890625,0.626953125,0.5546875,0.4580078125,0.388671875,0.3828125,0.439453125,0.5185546875,0.6103515625,0.6728515625,0.66796875,0.5966796875,0.5,0.419921875,0.3623046875,0.3603515625,0.4189453125,0.5009765625,0.55859375,0.5576171875,0.5,0.4384765625,0.419921875,0.447265625,0.4921875,0.5185546875,0.5009765625,0.439453125,0.361328125,0.2734375,0.2177734375,0.23046875,0.30859375,0.408203125,0.4892578125,0.5576171875,0.6015625,0.599609375,0.55078125,0.4814453125,0.431640625,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.5751953125,0.60546875,0.6396484375,0.6484375,0.619140625,0.5595703125,0.4892578125,0.423828125,0.3828125,0.390625,0.443359375,0.515625,0.5673828125,0.5791015625,0.5869140625,0.6181640625,0.6533203125,0.6640625,0.6357421875,0.5771484375,0.509765625,0.4521484375,0.4404296875,0.4765625,0.5322265625,0.568359375,0.556640625,0.5,0.44140625,0.4248046875,0.451171875,0.494140625,0.5185546875,0.5,0.439453125,0.3740234375,0.337890625,0.3525390625,0.416015625,0.4970703125,0.5546875,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.40234375,0.453125,0.521484375,0.5693359375,0.5791015625,0.57421875,0.5546875,0.51953125,0.4794921875,0.4443359375,0.4248046875,0.419921875,0.41796875,0.4189453125,0.421875,0.4267578125,0.4326171875,0.4375,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.435546875,0.431640625,0.4296875,0.427734375,0.4267578125,0.42578125,0.423828125,0.4228515625,0.421875,0.419921875,0.412109375,0.3876953125,0.3681640625,0.3759765625,0.421875,0.4892578125,0.5595703125,0.61328125,0.6064453125,0.537109375,0.4423828125,0.373046875,0.3662109375,0.419921875,0.478515625,0.5,0.4814453125,0.447265625,0.4296875,0.4501953125,0.509765625,0.5869140625,0.6865234375,0.7666015625,0.7861328125,0.7373046875,0.6552734375,0.5791015625,0.517578125,0.490234375,0.498046875,0.5205078125,0.5283203125,0.5009765625,0.439453125,0.36328125,0.279296875,0.2294921875,0.24609375,0.32421875,0.421875,0.5,0.564453125,0.607421875,0.6064453125,0.5615234375,0.498046875,0.4501953125,0.439453125,0.439453125,0.4384765625,0.4345703125,0.4306640625,0.42578125,0.421875,0.419921875,0.412109375,0.3896484375,0.37109375,0.3828125,0.4296875,0.4990234375,0.5693359375,0.623046875,0.6162109375,0.5478515625,0.455078125,0.388671875,0.3837890625,0.439453125,0.5078125,0.556640625,0.5654296875,0.533203125,0.478515625,0.4384765625,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4326171875,0.490234375,0.5751953125,0.6435546875,0.6640625,0.6318359375,0.5693359375,0.5126953125,0.5048828125,0.544921875,0.6044921875,0.642578125,0.6298828125,0.5693359375,0.505859375,0.4765625,0.482421875,0.5048828125,0.5146484375,0.4892578125,0.4296875,0.3564453125,0.283203125,0.248046875,0.2822265625,0.375,0.48046875,0.5595703125,0.61328125,0.607421875,0.541015625,0.4482421875,0.380859375,0.3759765625,0.4296875,0.49609375,0.5478515625,0.5615234375,0.533203125,0.4814453125,0.4404296875,0.4296875,0.4287109375,0.427734375,0.4287109375,0.4306640625,0.431640625,0.4306640625,0.4296875,0.439453125,0.4892578125,0.55859375,0.6103515625,0.6162109375,0.5751953125,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.5771484375,0.6181640625,0.6708984375,0.7021484375,0.6904296875,0.638671875,0.5693359375,0.5087890625,0.498046875,0.5380859375,0.599609375,0.642578125,0.6357421875,0.5791015625,0.5224609375,0.5146484375,0.5556640625,0.6142578125,0.65234375,0.6396484375,0.5791015625,0.498046875,0.3935546875,0.30859375,0.28515625,0.3310546875,0.4130859375,0.4892578125,0.556640625,0.6005859375,0.6005859375,0.5576171875,0.494140625,0.44921875,0.439453125,0.4501953125,0.4892578125,0.5361328125,0.55859375,0.5400390625,0.4873046875,0.419921875,0.353515625,0.306640625,0.2978515625,0.33203125,0.3876953125,0.4296875,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5654296875,0.5654296875,0.505859375,0.4228515625,0.3642578125,0.36328125,0.419921875,0.48828125,0.5419921875,0.55859375,0.5322265625,0.4814453125,0.4404296875,0.4296875,0.427734375,0.42578125,0.4228515625,0.4208984375,0.419921875,0.419921875,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.431640625,0.447265625,0.4765625,0.5126953125,0.5419921875,0.5576171875,0.5595703125,0.5478515625,0.505859375,0.453125,0.4248046875,0.4384765625,0.4912109375,0.5595703125,0.625,0.6611328125,0.6474609375,0.5859375,0.5078125,0.4521484375,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.6201171875,0.634765625,0.6015625,0.5478515625,0.51171875,0.5224609375,0.5791015625,0.6455078125,0.6953125,0.7080078125,0.6796875,0.62890625,0.5888671875,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.431640625,0.490234375,0.578125,0.650390625,0.673828125,0.6435546875,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.4326171875,0.4912109375,0.576171875,0.6435546875,0.6611328125,0.6259765625,0.5595703125,0.478515625,0.37890625,0.3017578125,0.287109375,0.33984375,0.4248046875,0.5,0.5771484375,0.6748046875,0.7529296875,0.76953125,0.7197265625,0.6357421875,0.5595703125,0.4990234375,0.48046875,0.5048828125,0.5478515625,0.57421875,0.5576171875,0.5,0.431640625,0.373046875,0.34375,0.3515625,0.384765625,0.4140625,0.419921875,0.4111328125,0.3857421875,0.36328125,0.3701171875,0.416015625,0.486328125,0.5595703125,0.619140625,0.6298828125,0.58984375,0.529296875,0.4892578125,0.5,0.5595703125,0.6376953125,0.724609375,0.7783203125,0.76171875,0.681640625,0.5810546875,0.5,0.421875,0.3359375,0.2841796875,0.302734375,0.3857421875,0.48828125,0.5693359375,0.6474609375,0.7314453125,0.7802734375,0.759765625,0.6748046875,0.5712890625,0.4892578125,0.421875,0.37890625,0.3818359375,0.431640625,0.5,0.5498046875,0.5595703125,0.544921875,0.486328125,0.4033203125,0.33984375,0.3251953125,0.3623046875,0.4296875,0.4931640625,0.521484375,0.5126953125,0.4873046875,0.4755859375,0.5,0.5595703125,0.6357421875,0.728515625,0.796875,0.8017578125,0.7392578125,0.6484375,0.5693359375,0.5078125,0.4873046875,0.51171875,0.5556640625,0.5830078125,0.5673828125,0.509765625,0.4541015625,0.44921875,0.4990234375,0.5703125,0.619140625,0.615234375,0.5595703125,0.4814453125,0.384765625,0.3095703125,0.294921875,0.34765625,0.4326171875,0.509765625,0.5791015625,0.6376953125,0.6650390625,0.6533203125,0.6171875,0.5859375,0.5791015625,0.5771484375,0.560546875,0.5263671875,0.484375,0.447265625,0.42578125,0.419921875,0.4296875,0.4765625,0.54296875,0.5908203125,0.5947265625,0.5546875,0.4892578125,0.421875,0.3642578125,0.33984375,0.3544921875,0.39453125,0.4296875,0.439453125,0.453125,0.50390625,0.5732421875,0.6220703125,0.623046875,0.578125,0.509765625,0.44921875,0.4375,0.4755859375,0.533203125,0.5712890625,0.5595703125,0.5,0.4404296875,0.4365234375,0.48828125,0.564453125,0.6181640625,0.6162109375,0.5595703125,0.4873046875,0.4189453125,0.373046875,0.365234375,0.38671875,0.412109375,0.419921875,0.4208984375,0.421875,0.4208984375,0.482421875,0.5546875,0.62890625,0.671875,0.673828125,0.65625,0.61328125,0.541015625,0.4580078125,0.3857421875,0.3427734375,0.3251953125,0.31640625,0.3154296875,0.3291015625,0.3564453125,0.388671875,0.4150390625,0.4287109375,0.439453125,0.4462890625,0.4443359375,0.4306640625,0.41015625,0.3896484375,0.376953125,0.3671875,0.359375,0.353515625,0.3486328125,0.34375,0.3359375,0.3251953125,0.314453125,0.306640625,0.3212890625,0.369140625,0.4404296875,0.513671875,0.5703125,0.6064453125,0.5849609375,0.501953125,0.3935546875,0.310546875,0.2890625,0.3251953125,0.373046875,0.408203125,0.4306640625,0.4462890625,0.46875,0.50390625,0.55078125,0.6123046875,0.7001953125,0.7822265625,0.8193359375,0.796875,0.7373046875,0.673828125,0.6162109375,0.578125,0.5576171875,0.544921875,0.5244140625,0.4853515625,0.4287109375,0.3642578125,0.2978515625,0.2646484375,0.287109375,0.3583984375,0.439453125,0.5,0.5478515625,0.576171875,0.5703125,0.529296875,0.4755859375,0.4375,0.4287109375,0.427734375,0.421875,0.40625,0.3828125,0.3583984375,0.337890625,0.3251953125,0.3154296875,0.314453125,0.33984375,0.4013671875,0.484375,0.5634765625,0.6220703125,0.658203125,0.63671875,0.5576171875,0.458984375,0.388671875,0.380859375,0.4287109375,0.486328125,0.5185546875,0.5107421875,0.466796875,0.4111328125,0.376953125,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.33984375,0.4052734375,0.5087890625,0.609375,0.666015625,0.6640625,0.6220703125,0.58203125,0.5869140625,0.630859375,0.6826171875,0.70703125,0.6845703125,0.6220703125,0.5537109375,0.5009765625,0.470703125,0.4580078125,0.4482421875,0.4228515625,0.376953125,0.3251953125,0.28125,0.27734375,0.328125,0.4189453125,0.5087890625,0.5703125,0.6083984375,0.591796875,0.5205078125,0.4267578125,0.35546875,0.3388671875,0.376953125,0.4287109375,0.4716796875,0.4892578125,0.4716796875,0.431640625,0.39453125,0.376953125,0.369140625,0.3671875,0.373046875,0.3818359375,0.3876953125,0.3857421875,0.376953125,0.3798828125,0.4287109375,0.51171875,0.587890625,0.623046875,0.60546875,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.62109375,0.6552734375,0.70703125,0.7421875,0.736328125,0.6904296875,0.6220703125,0.560546875,0.5439453125,0.580078125,0.6455078125,0.701171875,0.7119140625,0.673828125,0.6337890625,0.638671875,0.6826171875,0.734375,0.7587890625,0.736328125,0.673828125,0.58984375,0.474609375,0.365234375,0.3095703125,0.32421875,0.3837890625,0.4482421875,0.505859375,0.5419921875,0.5419921875,0.505859375,0.4580078125,0.427734375,0.4287109375,0.443359375,0.46875,0.4853515625,0.4755859375,0.4345703125,0.37890625,0.3251953125,0.2783203125,0.25390625,0.267578125,0.31640625,0.376953125,0.419921875,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.5966796875,0.5791015625,0.494140625,0.3828125,0.2978515625,0.279296875,0.3251953125,0.3876953125,0.4453125,0.4755859375,0.4677734375,0.431640625,0.39453125,0.376953125,0.3662109375,0.3525390625,0.3388671875,0.3291015625,0.3251953125,0.3251953125,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.373046875,0.39453125,0.443359375,0.50390625,0.552734375,0.57421875,0.5703125,0.5517578125,0.5078125,0.4609375,0.4384765625,0.4580078125,0.5087890625,0.5703125,0.6259765625,0.654296875,0.6337890625,0.5703125,0.4931640625,0.4404296875,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.634765625,0.6708984375,0.6689453125,0.64453125,0.623046875,0.6318359375,0.673828125,0.72265625,0.759765625,0.76953125,0.748046875,0.7099609375,0.6806640625,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.33203125,0.40234375,0.5234375,0.646484375,0.7197265625,0.7236328125,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.3408203125,0.4130859375,0.5205078125,0.615234375,0.6572265625,0.6337890625,0.5703125,0.4912109375,0.4013671875,0.333984375,0.32421875,0.37109375,0.44140625,0.5,0.5595703125,0.640625,0.7119140625,0.734375,0.701171875,0.634765625,0.5703125,0.515625,0.4921875,0.5029296875,0.5322265625,0.552734375,0.5419921875,0.5,0.447265625,0.39453125,0.3544921875,0.3349609375,0.33203125,0.3330078125,0.3251953125,0.3115234375,0.2919921875,0.291015625,0.3291015625,0.4052734375,0.4931640625,0.5703125,0.6298828125,0.640625,0.6005859375,0.5400390625,0.5,0.509765625,0.5703125,0.6484375,0.7333984375,0.7841796875,0.765625,0.68359375,0.5810546875,0.5,0.4228515625,0.34375,0.3037109375,0.3359375,0.4296875,0.5390625,0.6220703125,0.697265625,0.7705078125,0.7978515625,0.751953125,0.646484375,0.53125,0.4482421875,0.3828125,0.3505859375,0.3720703125,0.439453125,0.5185546875,0.5673828125,0.5703125,0.5458984375,0.47265625,0.3740234375,0.2978515625,0.275390625,0.310546875,0.376953125,0.4443359375,0.490234375,0.5087890625,0.5078125,0.5068359375,0.5263671875,0.5703125,0.630859375,0.7158203125,0.7900390625,0.8125,0.7734375,0.697265625,0.6220703125,0.5576171875,0.5263671875,0.53515625,0.568359375,0.5966796875,0.5927734375,0.55078125,0.5087890625,0.50390625,0.5361328125,0.5849609375,0.6171875,0.6123046875,0.5703125,0.51171875,0.4365234375,0.376953125,0.3671875,0.4130859375,0.4853515625,0.55078125,0.6123046875,0.666015625,0.697265625,0.6982421875,0.6826171875,0.6689453125,0.673828125,0.6767578125,0.6484375,0.580078125,0.48828125,0.4013671875,0.345703125,0.3251953125,0.3251953125,0.3623046875,0.42578125,0.484375,0.509765625,0.4931640625,0.4482421875,0.396484375,0.3505859375,0.3291015625,0.341796875,0.376953125,0.412109375,0.4287109375,0.4521484375,0.515625,0.5986328125,0.6572265625,0.6630859375,0.619140625,0.55078125,0.490234375,0.4736328125,0.501953125,0.548828125,0.5771484375,0.560546875,0.5,0.439453125,0.431640625,0.4794921875,0.5546875,0.6123046875,0.6181640625,0.5703125,0.5029296875,0.4228515625,0.3486328125,0.3056640625,0.298828125,0.3125,0.3251953125,0.333984375,0.3359375,0.330078125,0.5908203125,0.673828125,0.736328125,0.7578125,0.740234375,0.70703125,0.64453125,0.5517578125,0.447265625,0.3544921875,0.2919921875,0.2587890625,0.234375,0.2255859375,0.248046875,0.3037109375,0.375,0.4345703125,0.46875,0.49609375,0.517578125,0.5185546875,0.4912109375,0.443359375,0.3955078125,0.3642578125,0.33984375,0.3232421875,0.314453125,0.30859375,0.2998046875,0.283203125,0.2587890625,0.2373046875,0.2392578125,0.28125,0.35546875,0.439453125,0.5009765625,0.5302734375,0.5390625,0.509765625,0.4384765625,0.3505859375,0.279296875,0.2490234375,0.2587890625,0.283203125,0.3271484375,0.39453125,0.4697265625,0.5361328125,0.5810546875,0.6044921875,0.6328125,0.689453125,0.7568359375,0.8037109375,0.8115234375,0.783203125,0.740234375,0.6962890625,0.65625,0.62109375,0.587890625,0.552734375,0.513671875,0.46875,0.4228515625,0.3828125,0.3671875,0.3857421875,0.4296875,0.4736328125,0.5,0.517578125,0.52734375,0.5244140625,0.5078125,0.4873046875,0.47265625,0.46875,0.4677734375,0.4580078125,0.4306640625,0.3857421875,0.333984375,0.2890625,0.2587890625,0.2392578125,0.2548828125,0.3193359375,0.421875,0.529296875,0.6044921875,0.634765625,0.6435546875,0.6103515625,0.54296875,0.47265625,0.4296875,0.431640625,0.46875,0.5068359375,0.51171875,0.4775390625,0.4189453125,0.3671875,0.3466796875,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2705078125,0.3271484375,0.4248046875,0.5322265625,0.61328125,0.64453125,0.634765625,0.626953125,0.654296875,0.7041015625,0.7421875,0.7431640625,0.7021484375,0.634765625,0.5615234375,0.4873046875,0.427734375,0.39453125,0.3837890625,0.37890625,0.3642578125,0.3466796875,0.341796875,0.361328125,0.4052734375,0.4599609375,0.5048828125,0.5302734375,0.5419921875,0.5244140625,0.4765625,0.4169921875,0.369140625,0.3525390625,0.3642578125,0.3857421875,0.4150390625,0.4384765625,0.44140625,0.4228515625,0.392578125,0.3642578125,0.341796875,0.337890625,0.3525390625,0.375,0.3896484375,0.3857421875,0.3642578125,0.3505859375,0.38671875,0.46875,0.5634765625,0.6279296875,0.6396484375,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.619140625,0.6416015625,0.6904296875,0.7314453125,0.73828125,0.701171875,0.634765625,0.5703125,0.5419921875,0.56640625,0.6318359375,0.705078125,0.74609375,0.740234375,0.7314453125,0.759765625,0.8095703125,0.84765625,0.8486328125,0.8076171875,0.740234375,0.65625,0.53515625,0.4111328125,0.3310546875,0.3154296875,0.3486328125,0.39453125,0.4365234375,0.4638671875,0.46875,0.4580078125,0.4462890625,0.4482421875,0.46875,0.4921875,0.4970703125,0.4697265625,0.4111328125,0.3408203125,0.2861328125,0.2587890625,0.2451171875,0.2568359375,0.30078125,0.3642578125,0.4248046875,0.4619140625,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.634765625,0.599609375,0.4970703125,0.3671875,0.2646484375,0.2294921875,0.2587890625,0.3095703125,0.3701171875,0.421875,0.44140625,0.4267578125,0.3935546875,0.3642578125,0.3359375,0.3037109375,0.275390625,0.2587890625,0.2548828125,0.2578125,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.345703125,0.3623046875,0.4140625,0.48046875,0.5322265625,0.5478515625,0.5302734375,0.498046875,0.4521484375,0.4140625,0.4052734375,0.43359375,0.482421875,0.5302734375,0.572265625,0.5986328125,0.5927734375,0.5576171875,0.5107421875,0.4765625,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.6015625,0.6689453125,0.71484375,0.732421875,0.7294921875,0.7265625,0.740234375,0.7587890625,0.7724609375,0.775390625,0.767578125,0.75390625,0.7431640625,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.2509765625,0.31640625,0.4521484375,0.6103515625,0.728515625,0.76953125,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.275390625,0.349609375,0.4638671875,0.5654296875,0.61328125,0.59375,0.5302734375,0.45703125,0.3896484375,0.35546875,0.3701171875,0.419921875,0.4716796875,0.5,0.525390625,0.5693359375,0.61328125,0.6318359375,0.6162109375,0.576171875,0.5302734375,0.4873046875,0.4619140625,0.4609375,0.48046875,0.50390625,0.5126953125,0.5,0.4794921875,0.451171875,0.4140625,0.369140625,0.3251953125,0.287109375,0.2587890625,0.2294921875,0.201171875,0.2041015625,0.255859375,0.349609375,0.4501953125,0.5302734375,0.58984375,0.6005859375,0.560546875,0.5,0.458984375,0.4697265625,0.5302734375,0.609375,0.69921875,0.7587890625,0.7509765625,0.677734375,0.580078125,0.5,0.4228515625,0.345703125,0.30859375,0.3447265625,0.44140625,0.5517578125,0.634765625,0.708984375,0.7744140625,0.787109375,0.7236328125,0.603515625,0.4794921875,0.39453125,0.3310546875,0.310546875,0.34765625,0.4248046875,0.50390625,0.5419921875,0.5302734375,0.490234375,0.4091796875,0.3134765625,0.2509765625,0.2470703125,0.294921875,0.3642578125,0.4345703125,0.49609375,0.533203125,0.5380859375,0.525390625,0.517578125,0.5302734375,0.560546875,0.62890625,0.708984375,0.759765625,0.755859375,0.705078125,0.634765625,0.5673828125,0.5224609375,0.5166015625,0.546875,0.58984375,0.6142578125,0.6044921875,0.5869140625,0.5751953125,0.5693359375,0.5654296875,0.5595703125,0.5478515625,0.5302734375,0.5068359375,0.4755859375,0.455078125,0.4638671875,0.5029296875,0.5556640625,0.6044921875,0.6484375,0.6826171875,0.701171875,0.70703125,0.7080078125,0.7177734375,0.740234375,0.7578125,0.734375,0.6513671875,0.5244140625,0.392578125,0.2998046875,0.2587890625,0.2392578125,0.2470703125,0.287109375,0.341796875,0.3876953125,0.40625,0.39453125,0.3740234375,0.353515625,0.34765625,0.3642578125,0.3994140625,0.439453125,0.46875,0.5078125,0.5849609375,0.673828125,0.728515625,0.7265625,0.6748046875,0.6044921875,0.5419921875,0.5185546875,0.53515625,0.568359375,0.5849609375,0.5615234375,0.5,0.4365234375,0.4140625,0.44140625,0.4990234375,0.55078125,0.5634765625,0.5302734375,0.4755859375,0.39453125,0.3056640625,0.2421875,0.220703125,0.2333984375,0.2587890625,0.28125,0.28515625,0.2705078125,0.6904296875,0.7646484375,0.7958984375,0.78125,0.740234375,0.69140625,0.6259765625,0.5439453125,0.455078125,0.373046875,0.3076171875,0.2587890625,0.21484375,0.1884765625,0.20703125,0.2783203125,0.380859375,0.4736328125,0.5302734375,0.5771484375,0.6201171875,0.6318359375,0.5966796875,0.5234375,0.4482421875,0.39453125,0.353515625,0.330078125,0.3251953125,0.328125,0.3232421875,0.2998046875,0.2587890625,0.22265625,0.2255859375,0.2783203125,0.361328125,0.4384765625,0.4765625,0.46875,0.4482421875,0.419921875,0.3837890625,0.3447265625,0.3076171875,0.279296875,0.2587890625,0.251953125,0.294921875,0.3896484375,0.5048828125,0.599609375,0.6416015625,0.634765625,0.623046875,0.63671875,0.6767578125,0.7236328125,0.755859375,0.7607421875,0.740234375,0.712890625,0.68359375,0.6513671875,0.6181640625,0.5859375,0.556640625,0.5302734375,0.505859375,0.494140625,0.4970703125,0.5078125,0.517578125,0.5146484375,0.5,0.4814453125,0.4716796875,0.474609375,0.4912109375,0.51171875,0.5263671875,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4443359375,0.375,0.3095703125,0.2587890625,0.2255859375,0.2451171875,0.328125,0.447265625,0.5546875,0.6083984375,0.6044921875,0.5810546875,0.54296875,0.5029296875,0.4794921875,0.482421875,0.5029296875,0.5302734375,0.5458984375,0.5224609375,0.4638671875,0.3974609375,0.35546875,0.357421875,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2646484375,0.294921875,0.3583984375,0.44140625,0.5224609375,0.578125,0.6044921875,0.6328125,0.6884765625,0.7451171875,0.767578125,0.740234375,0.6767578125,0.6044921875,0.52734375,0.4384765625,0.3642578125,0.3310546875,0.3408203125,0.37109375,0.39453125,0.4169921875,0.451171875,0.4853515625,0.5048828125,0.50390625,0.48828125,0.46875,0.451171875,0.439453125,0.43359375,0.4296875,0.423828125,0.412109375,0.39453125,0.3818359375,0.39453125,0.4248046875,0.4521484375,0.4580078125,0.435546875,0.39453125,0.3564453125,0.349609375,0.375,0.4140625,0.439453125,0.4326171875,0.39453125,0.359375,0.37109375,0.435546875,0.5302734375,0.6123046875,0.6484375,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.5703125,0.5791015625,0.6240234375,0.673828125,0.6943359375,0.66796875,0.6044921875,0.53515625,0.48828125,0.4912109375,0.5498046875,0.63671875,0.708984375,0.740234375,0.7685546875,0.82421875,0.880859375,0.9033203125,0.8759765625,0.8125,0.740234375,0.658203125,0.544921875,0.427734375,0.34765625,0.322265625,0.3369140625,0.3642578125,0.3876953125,0.400390625,0.408203125,0.421875,0.447265625,0.4853515625,0.5302734375,0.5654296875,0.5546875,0.48828125,0.3896484375,0.298828125,0.2529296875,0.2587890625,0.283203125,0.330078125,0.39453125,0.4580078125,0.50390625,0.5263671875,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6484375,0.6064453125,0.5078125,0.3857421875,0.287109375,0.24609375,0.2587890625,0.2939453125,0.3564453125,0.4248046875,0.46875,0.470703125,0.439453125,0.39453125,0.3466796875,0.2978515625,0.2587890625,0.2421875,0.24609375,0.255859375,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.3583984375,0.3603515625,0.40234375,0.4609375,0.5029296875,0.5048828125,0.46875,0.421875,0.373046875,0.3447265625,0.3525390625,0.3916015625,0.4375,0.46875,0.49609375,0.5224609375,0.541015625,0.5458984375,0.5400390625,0.5322265625,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.5478515625,0.64453125,0.732421875,0.78125,0.78515625,0.76171875,0.740234375,0.7216796875,0.7080078125,0.7041015625,0.7119140625,0.7265625,0.7373046875,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.2294921875,0.2705078125,0.388671875,0.546875,0.6826171875,0.748046875,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.2734375,0.3408203125,0.44140625,0.52734375,0.560546875,0.5341796875,0.46875,0.40234375,0.365234375,0.373046875,0.4189453125,0.4755859375,0.5068359375,0.5,0.484375,0.4814453125,0.4912109375,0.501953125,0.5048828125,0.4931640625,0.46875,0.44140625,0.4150390625,0.40234375,0.4140625,0.443359375,0.4765625,0.5,0.5185546875,0.529296875,0.513671875,0.4609375,0.384765625,0.3115234375,0.2587890625,0.2099609375,0.16015625,0.1455078125,0.189453125,0.2841796875,0.388671875,0.46875,0.529296875,0.5400390625,0.5,0.4384765625,0.3984375,0.4091796875,0.46875,0.5498046875,0.6474609375,0.720703125,0.728515625,0.6689453125,0.578125,0.5,0.421875,0.3408203125,0.2978515625,0.3251953125,0.416015625,0.5224609375,0.6044921875,0.6787109375,0.744140625,0.7568359375,0.693359375,0.572265625,0.44921875,0.3642578125,0.302734375,0.2900390625,0.333984375,0.4111328125,0.4794921875,0.5009765625,0.46875,0.4130859375,0.3291015625,0.2509765625,0.2197265625,0.25,0.3203125,0.39453125,0.46875,0.541015625,0.5849609375,0.5830078125,0.5419921875,0.49609375,0.46875,0.4638671875,0.5078125,0.587890625,0.662109375,0.693359375,0.6689453125,0.6044921875,0.533203125,0.4736328125,0.4521484375,0.482421875,0.546875,0.60546875,0.634765625,0.646484375,0.6298828125,0.58203125,0.5224609375,0.474609375,0.45703125,0.46875,0.4873046875,0.5068359375,0.52734375,0.5517578125,0.580078125,0.6083984375,0.634765625,0.6572265625,0.662109375,0.6572265625,0.654296875,0.6669921875,0.697265625,0.740234375,0.779296875,0.7802734375,0.71484375,0.587890625,0.4384765625,0.3203125,0.2587890625,0.21484375,0.18359375,0.1845703125,0.2236328125,0.2841796875,0.3369140625,0.3642578125,0.3798828125,0.3876953125,0.39453125,0.4111328125,0.4423828125,0.484375,0.5302734375,0.5859375,0.673828125,0.7587890625,0.7978515625,0.7744140625,0.708984375,0.634765625,0.572265625,0.544921875,0.5546875,0.580078125,0.58984375,0.5625,0.5,0.4326171875,0.3916015625,0.3916015625,0.4248046875,0.466796875,0.4853515625,0.46875,0.4326171875,0.361328125,0.275390625,0.2119140625,0.193359375,0.2158203125,0.2587890625,0.296875,0.3037109375,0.2783203125,0.75,0.7998046875,0.7890625,0.736328125,0.673828125,0.6142578125,0.5625,0.51953125,0.4794921875,0.4365234375,0.384765625,0.3251953125,0.2626953125,0.2119140625,0.2099609375,0.2744140625,0.3857421875,0.49609375,0.5703125,0.6357421875,0.701171875,0.73046875,0.6982421875,0.6142578125,0.5185546875,0.4482421875,0.3935546875,0.3701171875,0.376953125,0.396484375,0.4033203125,0.3798828125,0.3251953125,0.275390625,0.2724609375,0.322265625,0.3974609375,0.45703125,0.4677734375,0.4287109375,0.3837890625,0.3642578125,0.369140625,0.384765625,0.390625,0.3701171875,0.3251953125,0.2900390625,0.318359375,0.4130859375,0.5341796875,0.62890625,0.6572265625,0.6220703125,0.5751953125,0.5498046875,0.5595703125,0.599609375,0.646484375,0.6748046875,0.673828125,0.662109375,0.6484375,0.630859375,0.6123046875,0.5947265625,0.5810546875,0.5703125,0.5654296875,0.5791015625,0.599609375,0.6064453125,0.5888671875,0.548828125,0.5,0.451171875,0.4228515625,0.4287109375,0.4697265625,0.5234375,0.5615234375,0.5703125,0.5732421875,0.5791015625,0.5703125,0.53125,0.4658203125,0.390625,0.3251953125,0.2783203125,0.2900390625,0.3671875,0.474609375,0.5615234375,0.5869140625,0.55078125,0.5009765625,0.4599609375,0.4462890625,0.46875,0.5126953125,0.552734375,0.5703125,0.568359375,0.525390625,0.455078125,0.392578125,0.3681640625,0.392578125,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.32421875,0.3212890625,0.333984375,0.3720703125,0.431640625,0.49609375,0.55078125,0.6103515625,0.689453125,0.7529296875,0.76171875,0.7099609375,0.6279296875,0.55078125,0.4716796875,0.376953125,0.302734375,0.2841796875,0.32421875,0.390625,0.4482421875,0.50390625,0.568359375,0.6123046875,0.6064453125,0.5556640625,0.486328125,0.4287109375,0.38671875,0.3818359375,0.4140625,0.462890625,0.4951171875,0.490234375,0.4482421875,0.4072265625,0.4052734375,0.44140625,0.4892578125,0.515625,0.5,0.4482421875,0.396484375,0.3876953125,0.421875,0.4736328125,0.5078125,0.4990234375,0.4482421875,0.3935546875,0.3759765625,0.4111328125,0.4873046875,0.5703125,0.619140625,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.501953125,0.498046875,0.5400390625,0.5966796875,0.62890625,0.6123046875,0.55078125,0.4775390625,0.41015625,0.3857421875,0.4267578125,0.517578125,0.611328125,0.673828125,0.7333984375,0.8115234375,0.875,0.8837890625,0.83203125,0.75,0.673828125,0.595703125,0.5009765625,0.4140625,0.361328125,0.3505859375,0.3642578125,0.376953125,0.3837890625,0.37890625,0.3779296875,0.3984375,0.4453125,0.5068359375,0.5703125,0.6171875,0.6025390625,0.521484375,0.4091796875,0.318359375,0.2900390625,0.3251953125,0.380859375,0.4482421875,0.51171875,0.5546875,0.5712890625,0.5712890625,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.623046875,0.5888671875,0.517578125,0.4296875,0.3583984375,0.32421875,0.3251953125,0.3466796875,0.4052734375,0.48046875,0.5341796875,0.5419921875,0.505859375,0.4482421875,0.3857421875,0.3251953125,0.287109375,0.2802734375,0.298828125,0.3203125,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.396484375,0.384765625,0.4150390625,0.4619140625,0.4921875,0.48046875,0.4287109375,0.3681640625,0.3173828125,0.2978515625,0.3193359375,0.3671875,0.41015625,0.4287109375,0.4423828125,0.466796875,0.5,0.533203125,0.556640625,0.568359375,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.51171875,0.623046875,0.7294921875,0.78515625,0.7763671875,0.7275390625,0.673828125,0.6240234375,0.5869140625,0.5771484375,0.5986328125,0.63671875,0.666015625,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.275390625,0.279296875,0.3525390625,0.4755859375,0.5966796875,0.6669921875,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.337890625,0.392578125,0.46875,0.5263671875,0.5361328125,0.49609375,0.4287109375,0.3681640625,0.353515625,0.39453125,0.46484375,0.5244140625,0.537109375,0.5,0.4501953125,0.41015625,0.392578125,0.3994140625,0.419921875,0.43359375,0.4287109375,0.4130859375,0.384765625,0.3603515625,0.3623046875,0.39453125,0.447265625,0.5,0.5537109375,0.60546875,0.6220703125,0.580078125,0.4921875,0.396484375,0.3251953125,0.2587890625,0.1845703125,0.142578125,0.166015625,0.248046875,0.3486328125,0.4287109375,0.4892578125,0.5,0.458984375,0.3984375,0.3583984375,0.369140625,0.4287109375,0.5107421875,0.61328125,0.6953125,0.7138671875,0.6630859375,0.5771484375,0.5,0.4208984375,0.3330078125,0.2783203125,0.2919921875,0.3701171875,0.470703125,0.55078125,0.626953125,0.7001953125,0.7275390625,0.681640625,0.576171875,0.4609375,0.376953125,0.3173828125,0.306640625,0.3505859375,0.4208984375,0.474609375,0.4775390625,0.4287109375,0.359375,0.275390625,0.21484375,0.2158203125,0.2783203125,0.369140625,0.4482421875,0.5244140625,0.6044921875,0.6513671875,0.6376953125,0.5703125,0.4892578125,0.4287109375,0.392578125,0.4111328125,0.482421875,0.5673828125,0.619140625,0.611328125,0.55078125,0.4755859375,0.40234375,0.3671875,0.39453125,0.47265625,0.560546875,0.6220703125,0.66015625,0.6435546875,0.572265625,0.478515625,0.4072265625,0.390625,0.4287109375,0.4814453125,0.5361328125,0.5810546875,0.60546875,0.61328125,0.6142578125,0.6220703125,0.6240234375,0.6025390625,0.5703125,0.5537109375,0.5693359375,0.6142578125,0.673828125,0.7333984375,0.771484375,0.7509765625,0.6591796875,0.5244140625,0.40234375,0.3251953125,0.259765625,0.1923828125,0.154296875,0.171875,0.2392578125,0.318359375,0.376953125,0.4228515625,0.4482421875,0.4541015625,0.4580078125,0.474609375,0.5126953125,0.5703125,0.640625,0.7333984375,0.8095703125,0.828125,0.7802734375,0.69921875,0.6220703125,0.55859375,0.533203125,0.546875,0.5751953125,0.587890625,0.5625,0.5,0.4296875,0.375,0.353515625,0.369140625,0.4052734375,0.4306640625,0.4287109375,0.408203125,0.3525390625,0.28125,0.232421875,0.228515625,0.2666015625,0.3251953125,0.376953125,0.3857421875,0.3515625,0.7607421875,0.7822265625,0.736328125,0.6552734375,0.5791015625,0.517578125,0.4873046875,0.4912109375,0.5078125,0.51171875,0.4814453125,0.419921875,0.3447265625,0.2705078125,0.236328125,0.2734375,0.369140625,0.478515625,0.5595703125,0.6357421875,0.71875,0.7685546875,0.75,0.669921875,0.5693359375,0.4892578125,0.4296875,0.41015625,0.4345703125,0.474609375,0.4990234375,0.4794921875,0.419921875,0.361328125,0.3525390625,0.3955078125,0.458984375,0.5029296875,0.49609375,0.439453125,0.3818359375,0.369140625,0.4033203125,0.4560546875,0.490234375,0.4775390625,0.419921875,0.3662109375,0.3740234375,0.4462890625,0.54296875,0.615234375,0.623046875,0.5693359375,0.5029296875,0.455078125,0.4462890625,0.478515625,0.53125,0.5712890625,0.5791015625,0.5771484375,0.5751953125,0.5712890625,0.5673828125,0.5634765625,0.5615234375,0.5595703125,0.5654296875,0.5966796875,0.634765625,0.6484375,0.623046875,0.5673828125,0.5,0.4345703125,0.3916015625,0.392578125,0.4375,0.5009765625,0.548828125,0.5595703125,0.5654296875,0.58984375,0.6103515625,0.603515625,0.5595703125,0.4912109375,0.419921875,0.36328125,0.3623046875,0.4208984375,0.5029296875,0.5625,0.564453125,0.509765625,0.4443359375,0.3994140625,0.396484375,0.4375,0.5,0.546875,0.5595703125,0.5498046875,0.501953125,0.4345703125,0.3857421875,0.3818359375,0.4228515625,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.412109375,0.3837890625,0.3525390625,0.34765625,0.3798828125,0.4404296875,0.509765625,0.5859375,0.677734375,0.744140625,0.7451171875,0.6806640625,0.5888671875,0.509765625,0.4296875,0.3349609375,0.2666015625,0.2626953125,0.32421875,0.4130859375,0.4892578125,0.564453125,0.6484375,0.7001953125,0.6875,0.6123046875,0.5166015625,0.439453125,0.3837890625,0.3798828125,0.4287109375,0.5,0.5498046875,0.544921875,0.4892578125,0.4326171875,0.423828125,0.462890625,0.521484375,0.5595703125,0.5478515625,0.4892578125,0.4306640625,0.4208984375,0.4599609375,0.51953125,0.55859375,0.5478515625,0.4892578125,0.423828125,0.3828125,0.388671875,0.4404296875,0.509765625,0.5595703125,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.451171875,0.44140625,0.482421875,0.5419921875,0.5810546875,0.5693359375,0.509765625,0.431640625,0.34765625,0.2998046875,0.3193359375,0.4013671875,0.5009765625,0.5791015625,0.6552734375,0.7470703125,0.8134765625,0.814453125,0.7509765625,0.658203125,0.5791015625,0.505859375,0.4345703125,0.38671875,0.376953125,0.396484375,0.421875,0.4296875,0.4248046875,0.400390625,0.3779296875,0.3818359375,0.4228515625,0.48828125,0.5595703125,0.6142578125,0.609375,0.5400390625,0.4443359375,0.3740234375,0.3662109375,0.419921875,0.4892578125,0.556640625,0.6005859375,0.6083984375,0.5888671875,0.5654296875,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5673828125,0.548828125,0.5146484375,0.4736328125,0.439453125,0.421875,0.419921875,0.4326171875,0.4833984375,0.55078125,0.5986328125,0.599609375,0.556640625,0.4892578125,0.419921875,0.3603515625,0.33203125,0.3427734375,0.37890625,0.412109375,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.4296875,0.4130859375,0.44140625,0.4873046875,0.515625,0.4990234375,0.439453125,0.37109375,0.3193359375,0.3046875,0.333984375,0.38671875,0.4287109375,0.439453125,0.4443359375,0.4599609375,0.4873046875,0.517578125,0.54296875,0.556640625,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.5224609375,0.6318359375,0.7265625,0.76171875,0.7275390625,0.65234375,0.5791015625,0.5126953125,0.462890625,0.4501953125,0.4794921875,0.5302734375,0.5693359375,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.35546875,0.3251953125,0.3486328125,0.4208984375,0.5087890625,0.5673828125,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.4306640625,0.474609375,0.5322265625,0.5673828125,0.55859375,0.5087890625,0.439453125,0.380859375,0.375,0.4267578125,0.501953125,0.5556640625,0.5546875,0.5,0.431640625,0.3759765625,0.3505859375,0.3642578125,0.40234375,0.43359375,0.439453125,0.4296875,0.396484375,0.3583984375,0.345703125,0.373046875,0.431640625,0.5,0.57421875,0.6552734375,0.7021484375,0.681640625,0.599609375,0.4990234375,0.419921875,0.341796875,0.251953125,0.189453125,0.1943359375,0.2646484375,0.359375,0.439453125,0.5,0.509765625,0.4697265625,0.4091796875,0.369140625,0.3798828125,0.439453125,0.5205078125,0.6220703125,0.7021484375,0.7177734375,0.6650390625,0.578125,0.5,0.419921875,0.3271484375,0.2626953125,0.265625,0.333984375,0.4296875,0.509765625,0.5869140625,0.671875,0.720703125,0.69921875,0.615234375,0.51171875,0.4296875,0.3701171875,0.359375,0.400390625,0.462890625,0.505859375,0.498046875,0.439453125,0.3623046875,0.2763671875,0.220703125,0.2333984375,0.3095703125,0.4091796875,0.4892578125,0.5673828125,0.6533203125,0.70703125,0.6923828125,0.615234375,0.517578125,0.439453125,0.384765625,0.384765625,0.44140625,0.51953125,0.572265625,0.568359375,0.509765625,0.431640625,0.3466796875,0.2958984375,0.3134765625,0.392578125,0.4912109375,0.5693359375,0.623046875,0.6181640625,0.55078125,0.4580078125,0.3916015625,0.3857421875,0.439453125,0.5087890625,0.57421875,0.6142578125,0.619140625,0.5966796875,0.57421875,0.5693359375,0.5615234375,0.5234375,0.4736328125,0.4453125,0.4599609375,0.5107421875,0.5791015625,0.6533203125,0.7255859375,0.755859375,0.7138671875,0.6123046875,0.5009765625,0.419921875,0.3427734375,0.2529296875,0.19140625,0.1943359375,0.26171875,0.353515625,0.4296875,0.4892578125,0.5146484375,0.50390625,0.4794921875,0.470703125,0.498046875,0.5595703125,0.6376953125,0.7314453125,0.80078125,0.8037109375,0.740234375,0.6484375,0.5693359375,0.5078125,0.48828125,0.513671875,0.5556640625,0.580078125,0.560546875,0.5,0.4287109375,0.3701171875,0.3447265625,0.359375,0.3994140625,0.4326171875,0.439453125,0.427734375,0.3837890625,0.326171875,0.2919921875,0.3017578125,0.3515625,0.419921875,0.478515625,0.48828125,0.44921875,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.7099609375,0.689453125,0.6083984375,0.5078125,0.4296875,0.3759765625,0.3828125,0.451171875,0.5439453125,0.6103515625,0.615234375,0.5595703125,0.478515625,0.3720703125,0.2802734375,0.2490234375,0.287109375,0.3642578125,0.439453125,0.51953125,0.6201171875,0.7001953125,0.71875,0.6689453125,0.5859375,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5205078125,0.505859375,0.5400390625,0.5927734375,0.6279296875,0.6162109375,0.5595703125,0.5029296875,0.4931640625,0.5341796875,0.5947265625,0.634765625,0.6259765625,0.5693359375,0.509765625,0.484375,0.4951171875,0.51953125,0.5283203125,0.5009765625,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.431640625,0.435546875,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.44921875,0.49609375,0.5595703125,0.6044921875,0.603515625,0.5576171875,0.4892578125,0.4189453125,0.3603515625,0.3359375,0.3525390625,0.3955078125,0.4306640625,0.439453125,0.4521484375,0.5087890625,0.5908203125,0.6572265625,0.67578125,0.642578125,0.5791015625,0.5205078125,0.5029296875,0.52734375,0.5673828125,0.58984375,0.5693359375,0.509765625,0.439453125,0.3798828125,0.3505859375,0.359375,0.3935546875,0.423828125,0.4296875,0.419921875,0.3876953125,0.353515625,0.345703125,0.376953125,0.439453125,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.568359375,0.5185546875,0.44921875,0.3994140625,0.39453125,0.4345703125,0.5,0.576171875,0.66796875,0.7353515625,0.73828125,0.6767578125,0.5869140625,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5693359375,0.671875,0.7578125,0.78125,0.736328125,0.6552734375,0.5791015625,0.5185546875,0.49609375,0.5146484375,0.548828125,0.568359375,0.548828125,0.4892578125,0.43359375,0.42578125,0.46875,0.53125,0.5712890625,0.5595703125,0.5,0.439453125,0.4296875,0.470703125,0.533203125,0.576171875,0.5673828125,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.431640625,0.4814453125,0.55078125,0.599609375,0.6015625,0.5576171875,0.4892578125,0.4296875,0.4189453125,0.458984375,0.51953125,0.5595703125,0.5498046875,0.4892578125,0.408203125,0.306640625,0.2255859375,0.2080078125,0.2587890625,0.34375,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.36328125,0.3291015625,0.34765625,0.416015625,0.5,0.5576171875,0.5693359375,0.5546875,0.4970703125,0.4150390625,0.349609375,0.33203125,0.3662109375,0.4296875,0.4892578125,0.5146484375,0.50390625,0.4794921875,0.470703125,0.498046875,0.5595703125,0.625,0.6611328125,0.6474609375,0.5859375,0.5078125,0.4521484375,0.439453125,0.439453125,0.439453125,0.4384765625,0.4365234375,0.43359375,0.431640625,0.4296875,0.431640625,0.4501953125,0.484375,0.525390625,0.5595703125,0.5771484375,0.5791015625,0.5859375,0.6171875,0.6533203125,0.6650390625,0.6376953125,0.5791015625,0.509765625,0.4423828125,0.3984375,0.3984375,0.44140625,0.5048828125,0.5498046875,0.5595703125,0.56640625,0.599609375,0.640625,0.6572265625,0.634765625,0.578125,0.509765625,0.4521484375,0.44921875,0.5009765625,0.57421875,0.6240234375,0.6181640625,0.5595703125,0.490234375,0.4384765625,0.4267578125,0.45703125,0.5107421875,0.55078125,0.5595703125,0.5546875,0.5361328125,0.505859375,0.4716796875,0.4443359375,0.4306640625,0.4296875,0.4248046875,0.3994140625,0.375,0.37890625,0.419921875,0.486328125,0.5595703125,0.6357421875,0.71484375,0.75390625,0.720703125,0.6279296875,0.5205078125,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.4443359375,0.5048828125,0.5908203125,0.6591796875,0.677734375,0.64453125,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.587890625,0.6279296875,0.681640625,0.7119140625,0.7001953125,0.6484375,0.5791015625,0.517578125,0.4970703125,0.51953125,0.5595703125,0.58203125,0.5615234375,0.5,0.431640625,0.38671875,0.388671875,0.435546875,0.501953125,0.5498046875,0.5595703125,0.546875,0.4970703125,0.4306640625,0.3837890625,0.3818359375,0.4248046875,0.4892578125,0.568359375,0.6689453125,0.7529296875,0.775390625,0.7294921875,0.646484375,0.5693359375,0.490234375,0.396484375,0.330078125,0.3291015625,0.392578125,0.4833984375,0.5595703125,0.6162109375,0.626953125,0.587890625,0.5302734375,0.4921875,0.501953125,0.5595703125,0.6337890625,0.716796875,0.7666015625,0.7509765625,0.673828125,0.5771484375,0.5,0.4228515625,0.330078125,0.26171875,0.2578125,0.3193359375,0.41015625,0.4892578125,0.5703125,0.6728515625,0.7548828125,0.7744140625,0.7255859375,0.6435546875,0.5693359375,0.5126953125,0.5029296875,0.5419921875,0.5986328125,0.6337890625,0.6201171875,0.5595703125,0.478515625,0.3779296875,0.30078125,0.287109375,0.3427734375,0.4306640625,0.509765625,0.5908203125,0.6923828125,0.7734375,0.791015625,0.740234375,0.6552734375,0.5791015625,0.51953125,0.501953125,0.5263671875,0.568359375,0.5908203125,0.5712890625,0.509765625,0.427734375,0.32421875,0.2392578125,0.21875,0.267578125,0.3515625,0.4296875,0.4931640625,0.5244140625,0.51953125,0.5,0.4931640625,0.51953125,0.5791015625,0.642578125,0.67578125,0.65625,0.587890625,0.50390625,0.4443359375,0.4296875,0.4189453125,0.37890625,0.330078125,0.3046875,0.3203125,0.373046875,0.439453125,0.5185546875,0.6240234375,0.7158203125,0.748046875,0.7109375,0.6337890625,0.5595703125,0.4814453125,0.3916015625,0.3291015625,0.333984375,0.4033203125,0.4990234375,0.5791015625,0.6357421875,0.6279296875,0.5546875,0.4541015625,0.380859375,0.373046875,0.4296875,0.509765625,0.603515625,0.671875,0.673828125,0.609375,0.517578125,0.439453125,0.3828125,0.380859375,0.435546875,0.513671875,0.568359375,0.56640625,0.509765625,0.4423828125,0.396484375,0.392578125,0.435546875,0.4990234375,0.546875,0.5595703125,0.5517578125,0.5146484375,0.466796875,0.4423828125,0.4580078125,0.5107421875,0.5791015625,0.63671875,0.6435546875,0.5986328125,0.6650390625,0.6240234375,0.533203125,0.439453125,0.376953125,0.3408203125,0.3623046875,0.44140625,0.5400390625,0.6103515625,0.6181640625,0.5703125,0.4990234375,0.4013671875,0.3125,0.275390625,0.30078125,0.3642578125,0.4287109375,0.5,0.595703125,0.6796875,0.7119140625,0.6826171875,0.6162109375,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.6181640625,0.5908203125,0.59375,0.6142578125,0.6279296875,0.61328125,0.5703125,0.5283203125,0.52734375,0.5673828125,0.6240234375,0.6640625,0.6630859375,0.6220703125,0.576171875,0.55078125,0.544921875,0.541015625,0.5244140625,0.486328125,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.3896484375,0.41015625,0.4306640625,0.4443359375,0.4462890625,0.439453125,0.4287109375,0.4296875,0.4658203125,0.521484375,0.5615234375,0.5595703125,0.515625,0.4482421875,0.3779296875,0.3232421875,0.3056640625,0.3310546875,0.3798828125,0.419921875,0.4287109375,0.44140625,0.5009765625,0.59375,0.6796875,0.724609375,0.716796875,0.673828125,0.6298828125,0.61328125,0.6220703125,0.6376953125,0.63671875,0.6064453125,0.55078125,0.4892578125,0.4287109375,0.38671875,0.37109375,0.3759765625,0.3828125,0.376953125,0.3623046875,0.3408203125,0.33203125,0.3564453125,0.4140625,0.486328125,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.662109375,0.611328125,0.53515625,0.466796875,0.4375,0.4541015625,0.5,0.55859375,0.6376953125,0.705078125,0.72265625,0.6845703125,0.6171875,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.521484375,0.62890625,0.736328125,0.7958984375,0.7890625,0.736328125,0.673828125,0.615234375,0.5732421875,0.548828125,0.537109375,0.5234375,0.494140625,0.4482421875,0.4091796875,0.419921875,0.4755859375,0.541015625,0.5771484375,0.560546875,0.5,0.439453125,0.4287109375,0.47265625,0.54296875,0.5966796875,0.599609375,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.3388671875,0.39453125,0.4755859375,0.5380859375,0.552734375,0.5146484375,0.4482421875,0.3876953125,0.376953125,0.41796875,0.478515625,0.5185546875,0.5078125,0.4482421875,0.3662109375,0.263671875,0.177734375,0.1494140625,0.1875,0.2587890625,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.314453125,0.2978515625,0.3466796875,0.4462890625,0.552734375,0.6162109375,0.6220703125,0.5986328125,0.5322265625,0.4375,0.35546875,0.318359375,0.33203125,0.376953125,0.4228515625,0.4482421875,0.4541015625,0.4580078125,0.474609375,0.5126953125,0.5703125,0.6259765625,0.654296875,0.6337890625,0.5703125,0.4931640625,0.4404296875,0.4287109375,0.4296875,0.4287109375,0.4248046875,0.416015625,0.40234375,0.388671875,0.376953125,0.3759765625,0.41015625,0.4814453125,0.5693359375,0.640625,0.6748046875,0.673828125,0.6689453125,0.6826171875,0.6982421875,0.697265625,0.666015625,0.6123046875,0.55078125,0.4931640625,0.45703125,0.45703125,0.4931640625,0.541015625,0.5712890625,0.5703125,0.568359375,0.59375,0.6337890625,0.6591796875,0.6513671875,0.609375,0.55078125,0.501953125,0.5009765625,0.5478515625,0.6083984375,0.6455078125,0.630859375,0.5703125,0.501953125,0.455078125,0.4501953125,0.484375,0.5361328125,0.5703125,0.5703125,0.5537109375,0.5166015625,0.4638671875,0.4130859375,0.3798828125,0.3701171875,0.376953125,0.3818359375,0.37109375,0.3623046875,0.37890625,0.427734375,0.4970703125,0.5703125,0.6455078125,0.7158203125,0.7431640625,0.7021484375,0.60546875,0.501953125,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.4033203125,0.482421875,0.595703125,0.6953125,0.7421875,0.7275390625,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.6728515625,0.70703125,0.7587890625,0.7939453125,0.7880859375,0.7421875,0.673828125,0.609375,0.578125,0.5791015625,0.59375,0.5947265625,0.5634765625,0.5,0.4326171875,0.39453125,0.4052734375,0.458984375,0.525390625,0.568359375,0.5703125,0.5498046875,0.498046875,0.4306640625,0.380859375,0.37109375,0.3994140625,0.4482421875,0.51171875,0.611328125,0.712890625,0.767578125,0.755859375,0.6943359375,0.6220703125,0.5439453125,0.455078125,0.392578125,0.3876953125,0.439453125,0.51171875,0.5703125,0.6123046875,0.6201171875,0.591796875,0.548828125,0.51953125,0.52734375,0.5703125,0.625,0.68359375,0.71484375,0.6962890625,0.6328125,0.5576171875,0.5,0.4384765625,0.353515625,0.279296875,0.2568359375,0.296875,0.3720703125,0.4482421875,0.5283203125,0.6318359375,0.7216796875,0.7587890625,0.7353515625,0.6767578125,0.6220703125,0.5810546875,0.5791015625,0.611328125,0.6494140625,0.6630859375,0.6337890625,0.5703125,0.490234375,0.3935546875,0.322265625,0.3173828125,0.3798828125,0.4716796875,0.55078125,0.6328125,0.7353515625,0.8212890625,0.849609375,0.8115234375,0.740234375,0.673828125,0.62109375,0.6025390625,0.6181640625,0.6416015625,0.646484375,0.615234375,0.55078125,0.4677734375,0.3525390625,0.2470703125,0.201171875,0.228515625,0.3017578125,0.376953125,0.447265625,0.505859375,0.546875,0.5732421875,0.595703125,0.626953125,0.673828125,0.7177734375,0.724609375,0.67578125,0.580078125,0.474609375,0.4013671875,0.376953125,0.361328125,0.330078125,0.3017578125,0.298828125,0.3271484375,0.376953125,0.4287109375,0.490234375,0.580078125,0.6669921875,0.708984375,0.6904296875,0.6337890625,0.5703125,0.5029296875,0.4287109375,0.38671875,0.41015625,0.4921875,0.5927734375,0.673828125,0.7265625,0.701171875,0.5947265625,0.4560546875,0.349609375,0.32421875,0.376953125,0.45703125,0.55078125,0.6220703125,0.630859375,0.578125,0.4970703125,0.4287109375,0.380859375,0.38671875,0.4482421875,0.5322265625,0.59375,0.599609375,0.55078125,0.490234375,0.4423828125,0.4267578125,0.453125,0.505859375,0.55078125,0.5703125,0.57421875,0.55859375,0.5380859375,0.53515625,0.5615234375,0.6123046875,0.673828125,0.720703125,0.7109375,0.646484375,0.61328125,0.5546875,0.4677734375,0.3955078125,0.3642578125,0.35546875,0.388671875,0.4560546875,0.5263671875,0.5693359375,0.5673828125,0.5302734375,0.478515625,0.4111328125,0.35546875,0.33984375,0.3681640625,0.419921875,0.46875,0.5224609375,0.5986328125,0.6708984375,0.70703125,0.6953125,0.65234375,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.693359375,0.646484375,0.6044921875,0.576171875,0.5595703125,0.546875,0.5302734375,0.5166015625,0.5263671875,0.560546875,0.6044921875,0.638671875,0.6484375,0.634765625,0.619140625,0.611328125,0.6044921875,0.587890625,0.556640625,0.5146484375,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.3955078125,0.443359375,0.4912109375,0.5185546875,0.517578125,0.49609375,0.46875,0.4521484375,0.46484375,0.4970703125,0.5185546875,0.5087890625,0.4619140625,0.39453125,0.326171875,0.283203125,0.2861328125,0.3369140625,0.40625,0.45703125,0.46875,0.478515625,0.5224609375,0.5966796875,0.67578125,0.7333984375,0.751953125,0.740234375,0.724609375,0.720703125,0.720703125,0.7119140625,0.6875,0.6494140625,0.6044921875,0.55859375,0.51171875,0.46875,0.435546875,0.4111328125,0.388671875,0.3642578125,0.337890625,0.3212890625,0.3359375,0.3916015625,0.4736328125,0.55078125,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.7314453125,0.69140625,0.6240234375,0.5517578125,0.501953125,0.486328125,0.5,0.5263671875,0.580078125,0.640625,0.6796875,0.6806640625,0.6484375,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.453125,0.5546875,0.673828125,0.7646484375,0.7998046875,0.7822265625,0.740234375,0.6904296875,0.626953125,0.5546875,0.4912109375,0.4443359375,0.4150390625,0.39453125,0.388671875,0.4287109375,0.501953125,0.568359375,0.5927734375,0.564453125,0.5,0.4384765625,0.4248046875,0.46875,0.546875,0.615234375,0.63671875,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2724609375,0.330078125,0.4140625,0.48046875,0.4970703125,0.4609375,0.39453125,0.3349609375,0.32421875,0.3642578125,0.4248046875,0.46484375,0.4541015625,0.39453125,0.3154296875,0.2197265625,0.142578125,0.1181640625,0.1494140625,0.2080078125,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.3046875,0.2998046875,0.3671875,0.48046875,0.5888671875,0.64453125,0.634765625,0.6005859375,0.537109375,0.4580078125,0.3896484375,0.3515625,0.3486328125,0.3642578125,0.3798828125,0.3876953125,0.39453125,0.4111328125,0.4423828125,0.484375,0.5302734375,0.572265625,0.5986328125,0.5927734375,0.5576171875,0.5107421875,0.4765625,0.46875,0.470703125,0.47265625,0.46875,0.4521484375,0.423828125,0.392578125,0.3642578125,0.3505859375,0.392578125,0.4912109375,0.61328125,0.7119140625,0.7529296875,0.740234375,0.7177734375,0.7080078125,0.70703125,0.701171875,0.6826171875,0.6484375,0.6044921875,0.5625,0.53515625,0.5302734375,0.541015625,0.552734375,0.55078125,0.5302734375,0.5126953125,0.5283203125,0.57421875,0.6240234375,0.65234375,0.6435546875,0.6044921875,0.568359375,0.568359375,0.5966796875,0.6259765625,0.6298828125,0.5947265625,0.5302734375,0.4638671875,0.4267578125,0.4326171875,0.474609375,0.5234375,0.5458984375,0.5302734375,0.4970703125,0.4423828125,0.3798828125,0.3369140625,0.32421875,0.3388671875,0.3642578125,0.3837890625,0.380859375,0.3701171875,0.3720703125,0.40234375,0.4599609375,0.5302734375,0.6044921875,0.67578125,0.708984375,0.6826171875,0.6064453125,0.5244140625,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.404296875,0.49609375,0.619140625,0.7255859375,0.7822265625,0.779296875,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.724609375,0.7470703125,0.794921875,0.8369140625,0.8427734375,0.806640625,0.740234375,0.6748046875,0.634765625,0.62109375,0.6181640625,0.6044921875,0.564453125,0.5,0.4345703125,0.400390625,0.4140625,0.4638671875,0.5185546875,0.544921875,0.5302734375,0.498046875,0.451171875,0.40234375,0.3701171875,0.3623046875,0.375,0.39453125,0.4287109375,0.5126953125,0.6240234375,0.7099609375,0.736328125,0.7021484375,0.634765625,0.560546875,0.484375,0.4326171875,0.427734375,0.4609375,0.50390625,0.5302734375,0.5458984375,0.548828125,0.5380859375,0.521484375,0.5107421875,0.513671875,0.5302734375,0.5498046875,0.5712890625,0.58203125,0.57421875,0.5498046875,0.521484375,0.5,0.46875,0.400390625,0.3203125,0.26953125,0.2734375,0.32421875,0.39453125,0.47265625,0.5654296875,0.646484375,0.6875,0.6845703125,0.658203125,0.634765625,0.6240234375,0.638671875,0.666015625,0.67578125,0.6533203125,0.599609375,0.5302734375,0.4521484375,0.3671875,0.31640625,0.3369140625,0.419921875,0.5234375,0.6044921875,0.68359375,0.779296875,0.8564453125,0.880859375,0.849609375,0.791015625,0.740234375,0.703125,0.6953125,0.7099609375,0.7236328125,0.7138671875,0.6708984375,0.6044921875,0.51953125,0.3955078125,0.275390625,0.2119140625,0.224609375,0.2900390625,0.3642578125,0.439453125,0.52734375,0.6103515625,0.6708984375,0.705078125,0.72265625,0.740234375,0.75390625,0.7373046875,0.67578125,0.580078125,0.4775390625,0.4013671875,0.3642578125,0.337890625,0.3203125,0.3251953125,0.3564453125,0.40234375,0.4443359375,0.46875,0.4951171875,0.54296875,0.59375,0.62109375,0.6123046875,0.5751953125,0.5302734375,0.48046875,0.431640625,0.416015625,0.4609375,0.5546875,0.6591796875,0.740234375,0.791015625,0.755859375,0.6318359375,0.4716796875,0.34765625,0.3134765625,0.3642578125,0.4423828125,0.5341796875,0.6044921875,0.62109375,0.5830078125,0.5205078125,0.46875,0.4345703125,0.4443359375,0.5,0.57421875,0.6298828125,0.6396484375,0.6044921875,0.5546875,0.4970703125,0.453125,0.44140625,0.462890625,0.5,0.5302734375,0.5537109375,0.572265625,0.5908203125,0.6162109375,0.6513671875,0.6943359375,0.740234375,0.76953125,0.7353515625,0.6435546875,0.568359375,0.501953125,0.4287109375,0.388671875,0.39453125,0.41796875,0.4560546875,0.49609375,0.51953125,0.5166015625,0.49609375,0.46875,0.44140625,0.4140625,0.4033203125,0.4189453125,0.45703125,0.4990234375,0.5302734375,0.5615234375,0.609375,0.6572265625,0.6845703125,0.68359375,0.662109375,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.705078125,0.642578125,0.5625,0.494140625,0.45703125,0.453125,0.46875,0.48828125,0.5078125,0.52734375,0.546875,0.56640625,0.5859375,0.6044921875,0.625,0.6455078125,0.6513671875,0.634765625,0.599609375,0.5595703125,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.4482421875,0.5234375,0.5966796875,0.6318359375,0.6201171875,0.5771484375,0.5302734375,0.4921875,0.48046875,0.48828125,0.494140625,0.4775390625,0.431640625,0.3642578125,0.2978515625,0.265625,0.2900390625,0.36328125,0.4541015625,0.515625,0.5302734375,0.5322265625,0.546875,0.5791015625,0.626953125,0.677734375,0.716796875,0.740234375,0.759765625,0.7763671875,0.775390625,0.7509765625,0.708984375,0.666015625,0.634765625,0.6103515625,0.587890625,0.5634765625,0.5302734375,0.4873046875,0.4404296875,0.39453125,0.3525390625,0.3330078125,0.3583984375,0.4306640625,0.5224609375,0.59765625,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.7373046875,0.71875,0.6796875,0.6240234375,0.56640625,0.5234375,0.5,0.48828125,0.505859375,0.5517578125,0.607421875,0.646484375,0.6552734375,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.40234375,0.482421875,0.5908203125,0.6904296875,0.75,0.7607421875,0.740234375,0.703125,0.626953125,0.5244140625,0.427734375,0.3671875,0.3505859375,0.3642578125,0.3955078125,0.4677734375,0.5546875,0.61328125,0.6162109375,0.568359375,0.5,0.4365234375,0.416015625,0.4521484375,0.5302734375,0.6083984375,0.6474609375,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.271484375,0.326171875,0.40234375,0.4609375,0.470703125,0.431640625,0.3642578125,0.3046875,0.2939453125,0.333984375,0.39453125,0.4345703125,0.423828125,0.3642578125,0.2880859375,0.2080078125,0.1513671875,0.142578125,0.177734375,0.2255859375,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.3359375,0.3349609375,0.40234375,0.5078125,0.599609375,0.6337890625,0.6044921875,0.55859375,0.5107421875,0.4697265625,0.44140625,0.4248046875,0.4111328125,0.39453125,0.3740234375,0.353515625,0.34765625,0.3642578125,0.3994140625,0.439453125,0.46875,0.49609375,0.5224609375,0.541015625,0.5458984375,0.5400390625,0.5322265625,0.5302734375,0.533203125,0.54296875,0.546875,0.5302734375,0.4912109375,0.44140625,0.39453125,0.3642578125,0.3994140625,0.501953125,0.6318359375,0.734375,0.76953125,0.740234375,0.697265625,0.6669921875,0.654296875,0.6572265625,0.662109375,0.6572265625,0.634765625,0.611328125,0.5986328125,0.5908203125,0.5771484375,0.5517578125,0.513671875,0.46875,0.4326171875,0.4345703125,0.4833984375,0.5576171875,0.623046875,0.650390625,0.634765625,0.615234375,0.6181640625,0.62890625,0.626953125,0.5966796875,0.5390625,0.46875,0.4052734375,0.3798828125,0.400390625,0.44921875,0.4951171875,0.5029296875,0.46875,0.4169921875,0.3486328125,0.2900390625,0.26953125,0.294921875,0.345703125,0.39453125,0.4306640625,0.4306640625,0.40234375,0.373046875,0.369140625,0.404296875,0.46875,0.5439453125,0.619140625,0.666015625,0.662109375,0.6181640625,0.564453125,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.4501953125,0.541015625,0.6455078125,0.7294921875,0.767578125,0.763671875,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.7060546875,0.71484375,0.759765625,0.8095703125,0.830078125,0.8037109375,0.740234375,0.6748046875,0.634765625,0.62109375,0.6181640625,0.6044921875,0.564453125,0.5,0.435546875,0.4052734375,0.4189453125,0.4609375,0.4990234375,0.50390625,0.46875,0.4248046875,0.390625,0.373046875,0.3720703125,0.37890625,0.37890625,0.3642578125,0.361328125,0.41796875,0.521484375,0.6240234375,0.6787109375,0.666015625,0.6044921875,0.5341796875,0.4765625,0.447265625,0.44921875,0.4697265625,0.48046875,0.46875,0.453125,0.4501953125,0.4609375,0.4775390625,0.48828125,0.4853515625,0.46875,0.44921875,0.427734375,0.4169921875,0.4248046875,0.44921875,0.4775390625,0.5,0.5048828125,0.4609375,0.3798828125,0.306640625,0.275390625,0.2998046875,0.3642578125,0.4365234375,0.5078125,0.560546875,0.5849609375,0.5888671875,0.5908203125,0.6044921875,0.6298828125,0.6689453125,0.6953125,0.6826171875,0.625,0.544921875,0.46875,0.3935546875,0.3193359375,0.2900390625,0.3330078125,0.4375,0.5517578125,0.634765625,0.7109375,0.791015625,0.84765625,0.8564453125,0.8212890625,0.7734375,0.740234375,0.7216796875,0.7314453125,0.7568359375,0.7705078125,0.7529296875,0.703125,0.634765625,0.5498046875,0.4267578125,0.3056640625,0.2421875,0.2548828125,0.3203125,0.39453125,0.474609375,0.580078125,0.6845703125,0.75390625,0.7744140625,0.7607421875,0.740234375,0.7197265625,0.6904296875,0.6435546875,0.5791015625,0.5078125,0.4443359375,0.39453125,0.3564453125,0.3505859375,0.38671875,0.44921875,0.509765625,0.5390625,0.5302734375,0.513671875,0.5078125,0.5107421875,0.513671875,0.5087890625,0.4931640625,0.46875,0.439453125,0.412109375,0.4140625,0.4658203125,0.5595703125,0.66015625,0.740234375,0.7919921875,0.7607421875,0.6435546875,0.4912109375,0.3740234375,0.3427734375,0.39453125,0.470703125,0.5556640625,0.6181640625,0.634765625,0.6064453125,0.5625,0.5302734375,0.5107421875,0.51953125,0.5576171875,0.607421875,0.6455078125,0.654296875,0.634765625,0.599609375,0.533203125,0.4580078125,0.40625,0.396484375,0.4248046875,0.46875,0.515625,0.56640625,0.6162109375,0.6572265625,0.6884765625,0.71484375,0.740234375,0.7490234375,0.6943359375,0.5849609375,0.541015625,0.4755859375,0.419921875,0.4091796875,0.4482421875,0.498046875,0.5390625,0.552734375,0.5302734375,0.486328125,0.4462890625,0.4287109375,0.4208984375,0.423828125,0.4462890625,0.4833984375,0.5244140625,0.5556640625,0.5703125,0.5830078125,0.6025390625,0.6240234375,0.6376953125,0.6396484375,0.6318359375,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.650390625,0.583984375,0.4892578125,0.4072265625,0.3701171875,0.3837890625,0.4287109375,0.474609375,0.4970703125,0.4951171875,0.484375,0.4833984375,0.505859375,0.55078125,0.6025390625,0.6484375,0.669921875,0.6572265625,0.6220703125,0.5869140625,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.5185546875,0.6142578125,0.6982421875,0.73046875,0.701171875,0.6357421875,0.5703125,0.515625,0.4892578125,0.48828125,0.494140625,0.4833984375,0.443359375,0.376953125,0.3125,0.283203125,0.3125,0.3935546875,0.490234375,0.5556640625,0.5703125,0.5654296875,0.5478515625,0.533203125,0.5390625,0.5712890625,0.62109375,0.673828125,0.7236328125,0.759765625,0.765625,0.7353515625,0.68359375,0.6396484375,0.6220703125,0.6162109375,0.623046875,0.6279296875,0.6123046875,0.5703125,0.509765625,0.4482421875,0.390625,0.361328125,0.380859375,0.4482421875,0.5341796875,0.5986328125,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6767578125,0.6845703125,0.6845703125,0.66015625,0.611328125,0.552734375,0.5,0.4541015625,0.4375,0.4638671875,0.521484375,0.5849609375,0.6220703125,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3955078125,0.4453125,0.521484375,0.599609375,0.6552734375,0.677734375,0.673828125,0.6494140625,0.576171875,0.4697265625,0.375,0.326171875,0.3330078125,0.376953125,0.439453125,0.533203125,0.6240234375,0.6650390625,0.640625,0.5732421875,0.5,0.43359375,0.40234375,0.423828125,0.4912109375,0.5703125,0.619140625,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.3369140625,0.384765625,0.4501953125,0.494140625,0.4921875,0.4462890625,0.376953125,0.3173828125,0.306640625,0.3466796875,0.4072265625,0.4482421875,0.4375,0.376953125,0.3046875,0.240234375,0.2080078125,0.2197265625,0.263671875,0.306640625,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.388671875,0.384765625,0.4404296875,0.5234375,0.5888671875,0.5986328125,0.55078125,0.49609375,0.46875,0.4716796875,0.4921875,0.505859375,0.4912109375,0.4482421875,0.396484375,0.3505859375,0.3291015625,0.341796875,0.376953125,0.412109375,0.4287109375,0.4423828125,0.466796875,0.5,0.533203125,0.556640625,0.568359375,0.5703125,0.576171875,0.5966796875,0.615234375,0.6083984375,0.5703125,0.5107421875,0.4482421875,0.40234375,0.419921875,0.5048828125,0.6162109375,0.701171875,0.7197265625,0.673828125,0.6142578125,0.5693359375,0.5537109375,0.5703125,0.6025390625,0.6240234375,0.6220703125,0.615234375,0.6201171875,0.62109375,0.6005859375,0.5537109375,0.4921875,0.4287109375,0.375,0.359375,0.3994140625,0.48046875,0.5673828125,0.619140625,0.6220703125,0.6171875,0.6279296875,0.63671875,0.6201171875,0.5712890625,0.501953125,0.4287109375,0.3681640625,0.3505859375,0.3837890625,0.439453125,0.4814453125,0.478515625,0.4287109375,0.361328125,0.283203125,0.23046875,0.2353515625,0.296875,0.37890625,0.4482421875,0.4970703125,0.498046875,0.451171875,0.390625,0.353515625,0.3681640625,0.4287109375,0.50390625,0.5791015625,0.6318359375,0.642578125,0.619140625,0.5869140625,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.5146484375,0.5927734375,0.662109375,0.7001953125,0.7021484375,0.6865234375,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.6240234375,0.6201171875,0.6630859375,0.71875,0.7509765625,0.734375,0.673828125,0.609375,0.578125,0.5791015625,0.59375,0.5947265625,0.5634765625,0.5,0.4365234375,0.4111328125,0.427734375,0.4658203125,0.4921875,0.48046875,0.4287109375,0.375,0.353515625,0.369140625,0.40234375,0.427734375,0.419921875,0.376953125,0.341796875,0.3671875,0.4501953125,0.5478515625,0.611328125,0.609375,0.55078125,0.4853515625,0.4482421875,0.4453125,0.46484375,0.4814453125,0.4716796875,0.4287109375,0.38671875,0.37890625,0.4072265625,0.4501953125,0.4794921875,0.4716796875,0.4287109375,0.3740234375,0.3154296875,0.2841796875,0.302734375,0.3662109375,0.44140625,0.5,0.5361328125,0.5166015625,0.4453125,0.361328125,0.3095703125,0.3173828125,0.376953125,0.4443359375,0.48828125,0.501953125,0.49609375,0.4912109375,0.5078125,0.55078125,0.607421875,0.671875,0.7080078125,0.6845703125,0.60546875,0.5087890625,0.4287109375,0.353515625,0.283203125,0.259765625,0.310546875,0.419921875,0.537109375,0.6220703125,0.6943359375,0.7587890625,0.791015625,0.779296875,0.7353515625,0.6923828125,0.673828125,0.671875,0.7001953125,0.740234375,0.7607421875,0.744140625,0.69140625,0.6220703125,0.5380859375,0.4228515625,0.3173828125,0.271484375,0.298828125,0.3720703125,0.4482421875,0.5302734375,0.6396484375,0.7412109375,0.7919921875,0.779296875,0.7275390625,0.673828125,0.626953125,0.59765625,0.583984375,0.572265625,0.5478515625,0.505859375,0.4482421875,0.3984375,0.3974609375,0.451171875,0.53125,0.5947265625,0.6083984375,0.5703125,0.5185546875,0.470703125,0.4375,0.42578125,0.4306640625,0.435546875,0.4287109375,0.4150390625,0.39453125,0.39453125,0.4326171875,0.5087890625,0.5966796875,0.673828125,0.7275390625,0.7109375,0.62109375,0.5,0.41015625,0.3935546875,0.4482421875,0.521484375,0.5947265625,0.6435546875,0.6494140625,0.6220703125,0.5869140625,0.5703125,0.5625,0.5673828125,0.5849609375,0.607421875,0.6240234375,0.62890625,0.6220703125,0.5986328125,0.5322265625,0.44140625,0.369140625,0.3447265625,0.3720703125,0.4287109375,0.4931640625,0.5615234375,0.619140625,0.6533203125,0.6640625,0.666015625,0.673828125,0.66796875,0.6044921875,0.498046875,0.53125,0.46875,0.42578125,0.43359375,0.4892578125,0.5546875,0.599609375,0.6025390625,0.5615234375,0.4990234375,0.4521484375,0.439453125,0.4404296875,0.453125,0.478515625,0.509765625,0.5380859375,0.5546875,0.5595703125,0.5615234375,0.564453125,0.568359375,0.5712890625,0.572265625,0.5712890625,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.564453125,0.5068359375,0.4248046875,0.359375,0.341796875,0.3759765625,0.439453125,0.498046875,0.5166015625,0.494140625,0.455078125,0.4326171875,0.451171875,0.509765625,0.5771484375,0.634765625,0.6591796875,0.64453125,0.6044921875,0.5693359375,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5693359375,0.669921875,0.75,0.7685546875,0.71875,0.6357421875,0.5595703125,0.498046875,0.47265625,0.484375,0.509765625,0.5205078125,0.4931640625,0.4296875,0.36328125,0.326171875,0.341796875,0.40625,0.4892578125,0.5458984375,0.5595703125,0.5498046875,0.5126953125,0.466796875,0.4423828125,0.4599609375,0.5126953125,0.5791015625,0.6455078125,0.6953125,0.70703125,0.6767578125,0.623046875,0.5810546875,0.5693359375,0.5751953125,0.60546875,0.6396484375,0.6484375,0.619140625,0.5595703125,0.4892578125,0.4228515625,0.380859375,0.3837890625,0.4345703125,0.5048828125,0.5556640625,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5869140625,0.6171875,0.650390625,0.658203125,0.6279296875,0.568359375,0.5,0.4345703125,0.39453125,0.3984375,0.4462890625,0.5126953125,0.5595703125,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.435546875,0.455078125,0.490234375,0.5302734375,0.5615234375,0.5771484375,0.5791015625,0.564453125,0.505859375,0.4208984375,0.353515625,0.333984375,0.3662109375,0.4296875,0.5078125,0.6083984375,0.689453125,0.7099609375,0.6611328125,0.5771484375,0.5,0.431640625,0.388671875,0.392578125,0.44140625,0.5107421875,0.5595703125,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.4296875,0.47265625,0.5283203125,0.5615234375,0.55078125,0.4990234375,0.4296875,0.3701171875,0.359375,0.3994140625,0.4599609375,0.5,0.4892578125,0.4296875,0.359375,0.3046875,0.2880859375,0.3154296875,0.3662109375,0.408203125,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.4296875,0.4208984375,0.4638671875,0.529296875,0.57421875,0.5673828125,0.509765625,0.4501953125,0.4365234375,0.4697265625,0.5234375,0.55859375,0.546875,0.4892578125,0.421875,0.3642578125,0.33984375,0.3544921875,0.39453125,0.4296875,0.439453125,0.4443359375,0.4599609375,0.4873046875,0.517578125,0.54296875,0.556640625,0.5595703125,0.5673828125,0.599609375,0.63671875,0.6474609375,0.619140625,0.5595703125,0.4892578125,0.43359375,0.43359375,0.4931640625,0.576171875,0.634765625,0.6357421875,0.5791015625,0.5107421875,0.4599609375,0.4453125,0.4736328125,0.5234375,0.5615234375,0.5693359375,0.57421875,0.5986328125,0.62109375,0.6171875,0.576171875,0.5107421875,0.439453125,0.375,0.33984375,0.357421875,0.421875,0.5029296875,0.55859375,0.5693359375,0.57421875,0.599609375,0.6240234375,0.6201171875,0.5791015625,0.5126953125,0.439453125,0.3798828125,0.3681640625,0.4072265625,0.466796875,0.5078125,0.498046875,0.439453125,0.36328125,0.27734375,0.22265625,0.236328125,0.3125,0.41015625,0.4892578125,0.546875,0.5498046875,0.498046875,0.4248046875,0.375,0.380859375,0.439453125,0.5126953125,0.580078125,0.6220703125,0.6240234375,0.5966796875,0.568359375,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5595703125,0.623046875,0.6572265625,0.65234375,0.619140625,0.5888671875,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.521484375,0.51171875,0.5517578125,0.6123046875,0.6513671875,0.6396484375,0.5791015625,0.517578125,0.4970703125,0.51953125,0.5595703125,0.58203125,0.5615234375,0.5,0.4384765625,0.4189453125,0.4443359375,0.4892578125,0.515625,0.4990234375,0.439453125,0.380859375,0.3681640625,0.404296875,0.4599609375,0.4970703125,0.486328125,0.4296875,0.375,0.3759765625,0.4345703125,0.515625,0.5712890625,0.568359375,0.509765625,0.447265625,0.4267578125,0.4482421875,0.4892578125,0.5146484375,0.498046875,0.439453125,0.3828125,0.3720703125,0.4111328125,0.46875,0.5068359375,0.4970703125,0.439453125,0.365234375,0.2822265625,0.232421875,0.248046875,0.3251953125,0.421875,0.5,0.5546875,0.5546875,0.498046875,0.419921875,0.3671875,0.37109375,0.4296875,0.4921875,0.5146484375,0.494140625,0.4560546875,0.43359375,0.451171875,0.509765625,0.583984375,0.66796875,0.7177734375,0.701171875,0.62109375,0.5205078125,0.439453125,0.36328125,0.2841796875,0.2470703125,0.28125,0.376953125,0.486328125,0.5693359375,0.6396484375,0.6943359375,0.7109375,0.68359375,0.6328125,0.5908203125,0.5791015625,0.5869140625,0.626953125,0.677734375,0.7060546875,0.69140625,0.638671875,0.5693359375,0.4873046875,0.3837890625,0.2998046875,0.2783203125,0.3271484375,0.412109375,0.4892578125,0.5712890625,0.673828125,0.7578125,0.7802734375,0.734375,0.6533203125,0.5791015625,0.5205078125,0.5,0.51953125,0.5546875,0.572265625,0.5498046875,0.4892578125,0.4326171875,0.4296875,0.4833984375,0.560546875,0.615234375,0.6142578125,0.5595703125,0.490234375,0.4267578125,0.388671875,0.38671875,0.41015625,0.4345703125,0.439453125,0.431640625,0.4052734375,0.3828125,0.3896484375,0.435546875,0.505859375,0.5791015625,0.63671875,0.63671875,0.576171875,0.4921875,0.431640625,0.431640625,0.4892578125,0.5615234375,0.623046875,0.6533203125,0.6416015625,0.603515625,0.5693359375,0.5595703125,0.55859375,0.5595703125,0.5625,0.56640625,0.5693359375,0.5703125,0.5693359375,0.5546875,0.4970703125,0.416015625,0.3525390625,0.337890625,0.3740234375,0.439453125,0.5107421875,0.578125,0.62109375,0.626953125,0.6064453125,0.583984375,0.5791015625,0.5673828125,0.509765625,0.42578125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.5263671875,0.47265625,0.4375,0.4501953125,0.509765625,0.5791015625,0.638671875,0.6669921875,0.65625,0.6201171875,0.5869140625,0.5791015625,0.5751953125,0.5546875,0.5185546875,0.4755859375,0.4404296875,0.421875,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.4345703125,0.4111328125,0.388671875,0.39453125,0.4384765625,0.5068359375,0.5791015625,0.6376953125,0.640625,0.5849609375,0.5048828125,0.4462890625,0.4443359375,0.5,0.564453125,0.6083984375,0.609375,0.5654296875,0.5,0.4521484375,0.439453125,0.4296875,0.396484375,0.359375,0.3486328125,0.37890625,0.439453125,0.509765625,0.5849609375,0.6669921875,0.712890625,0.6904296875,0.6083984375,0.5078125,0.4296875,0.3759765625,0.3857421875,0.4580078125,0.556640625,0.6279296875,0.634765625,0.5791015625,0.5078125,0.4384765625,0.390625,0.37890625,0.3955078125,0.4150390625,0.419921875,0.408203125,0.3662109375,0.3134765625,0.28515625,0.298828125,0.3515625,0.419921875,0.48828125,0.5400390625,0.5546875,0.525390625,0.47265625,0.4306640625,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.421875,0.423828125,0.42578125,0.42578125,0.423828125,0.421875,0.419921875,0.4189453125,0.4208984375,0.4267578125,0.4326171875,0.4384765625,0.4404296875,0.439453125,0.44921875,0.4970703125,0.564453125,0.61328125,0.6171875,0.576171875,0.509765625,0.439453125,0.3779296875,0.3466796875,0.353515625,0.384765625,0.4140625,0.419921875,0.421875,0.439453125,0.4736328125,0.5146484375,0.548828125,0.5673828125,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.4248046875,0.4013671875,0.37890625,0.384765625,0.427734375,0.49609375,0.5693359375,0.646484375,0.73046875,0.779296875,0.759765625,0.677734375,0.5771484375,0.5,0.4306640625,0.3701171875,0.3388671875,0.345703125,0.37890625,0.41015625,0.419921875,0.4248046875,0.4443359375,0.4765625,0.513671875,0.54296875,0.5576171875,0.5595703125,0.5673828125,0.607421875,0.6591796875,0.689453125,0.677734375,0.626953125,0.5595703125,0.5009765625,0.490234375,0.53125,0.591796875,0.6337890625,0.6259765625,0.5693359375,0.501953125,0.4501953125,0.43359375,0.4599609375,0.5087890625,0.548828125,0.5595703125,0.5693359375,0.60546875,0.646484375,0.662109375,0.6376953125,0.5791015625,0.509765625,0.4501953125,0.4365234375,0.4697265625,0.5234375,0.55859375,0.546875,0.4892578125,0.4326171875,0.421875,0.4609375,0.5185546875,0.556640625,0.546875,0.4892578125,0.4248046875,0.3828125,0.3857421875,0.43359375,0.5,0.5478515625,0.5595703125,0.556640625,0.5419921875,0.515625,0.4833984375,0.45703125,0.4423828125,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.44921875,0.427734375,0.4482421875,0.4853515625,0.5068359375,0.48828125,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.453125,0.509765625,0.5927734375,0.6572265625,0.6728515625,0.6357421875,0.5693359375,0.5087890625,0.4970703125,0.53515625,0.59375,0.630859375,0.619140625,0.5595703125,0.478515625,0.376953125,0.296875,0.28125,0.333984375,0.4208984375,0.5,0.5615234375,0.5830078125,0.5615234375,0.5224609375,0.5,0.51953125,0.5791015625,0.64453125,0.6787109375,0.66015625,0.59375,0.5107421875,0.453125,0.439453125,0.431640625,0.3984375,0.3603515625,0.3486328125,0.376953125,0.4384765625,0.509765625,0.5771484375,0.619140625,0.6123046875,0.5576171875,0.484375,0.431640625,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5869140625,0.6123046875,0.6337890625,0.6259765625,0.580078125,0.51171875,0.439453125,0.380859375,0.37109375,0.4091796875,0.4658203125,0.5029296875,0.490234375,0.4296875,0.37109375,0.369140625,0.4267578125,0.5078125,0.5654296875,0.5654296875,0.509765625,0.4521484375,0.44921875,0.5009765625,0.57421875,0.6240234375,0.6181640625,0.5595703125,0.5,0.490234375,0.5322265625,0.595703125,0.638671875,0.62890625,0.5693359375,0.5078125,0.4873046875,0.509765625,0.548828125,0.5712890625,0.55078125,0.4892578125,0.431640625,0.4306640625,0.490234375,0.5732421875,0.6337890625,0.6357421875,0.5791015625,0.5205078125,0.5107421875,0.5498046875,0.609375,0.6484375,0.6376953125,0.5791015625,0.4990234375,0.396484375,0.3125,0.291015625,0.3388671875,0.421875,0.5,0.5615234375,0.58203125,0.560546875,0.51953125,0.494140625,0.5107421875,0.5693359375,0.6240234375,0.623046875,0.564453125,0.4833984375,0.427734375,0.4306640625,0.4892578125,0.5703125,0.6708984375,0.7509765625,0.767578125,0.7177734375,0.6337890625,0.5595703125,0.48046875,0.375,0.2822265625,0.248046875,0.283203125,0.3564453125,0.4296875,0.49609375,0.5439453125,0.552734375,0.5205078125,0.4677734375,0.427734375,0.419921875,0.4306640625,0.47265625,0.525390625,0.5546875,0.5400390625,0.48828125,0.419921875,0.34375,0.2626953125,0.2177734375,0.2412109375,0.3271484375,0.4296875,0.509765625,0.5849609375,0.6650390625,0.708984375,0.6845703125,0.599609375,0.498046875,0.419921875,0.365234375,0.3671875,0.4267578125,0.5087890625,0.56640625,0.56640625,0.509765625,0.44921875,0.427734375,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.35546875,0.322265625,0.3408203125,0.408203125,0.4912109375,0.5478515625,0.5595703125,0.544921875,0.48828125,0.4091796875,0.3486328125,0.3369140625,0.3740234375,0.439453125,0.5,0.5166015625,0.490234375,0.4443359375,0.416015625,0.431640625,0.4892578125,0.5546875,0.599609375,0.6025390625,0.5615234375,0.4990234375,0.4521484375,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.4130859375,0.3896484375,0.3701171875,0.37890625,0.42578125,0.49609375,0.5693359375,0.6357421875,0.669921875,0.6513671875,0.5830078125,0.4990234375,0.44140625,0.4296875,0.4248046875,0.4033203125,0.384765625,0.51171875,0.4873046875,0.4755859375,0.498046875,0.55078125,0.61328125,0.673828125,0.7119140625,0.71875,0.7001953125,0.6787109375,0.673828125,0.6640625,0.615234375,0.5302734375,0.43359375,0.3583984375,0.3232421875,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.4345703125,0.4306640625,0.43359375,0.462890625,0.5234375,0.599609375,0.673828125,0.732421875,0.7333984375,0.669921875,0.572265625,0.4892578125,0.4638671875,0.5,0.548828125,0.583984375,0.5849609375,0.548828125,0.4931640625,0.4482421875,0.4287109375,0.4130859375,0.384765625,0.3642578125,0.375,0.421875,0.4873046875,0.55078125,0.6142578125,0.6669921875,0.677734375,0.626953125,0.533203125,0.439453125,0.376953125,0.3427734375,0.3779296875,0.4794921875,0.60546875,0.6982421875,0.71875,0.673828125,0.607421875,0.5263671875,0.4443359375,0.3828125,0.349609375,0.3349609375,0.3251953125,0.306640625,0.263671875,0.2158203125,0.1943359375,0.2138671875,0.2646484375,0.3251953125,0.38671875,0.4375,0.45703125,0.435546875,0.3876953125,0.3447265625,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.3369140625,0.3505859375,0.3603515625,0.3603515625,0.3505859375,0.3369140625,0.3251953125,0.3193359375,0.330078125,0.359375,0.3955078125,0.423828125,0.435546875,0.4287109375,0.4306640625,0.4736328125,0.5439453125,0.6064453125,0.630859375,0.6064453125,0.55078125,0.4873046875,0.421875,0.3671875,0.337890625,0.33203125,0.33203125,0.3251953125,0.32421875,0.3583984375,0.4296875,0.517578125,0.5888671875,0.623046875,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3828125,0.37890625,0.3818359375,0.4111328125,0.4716796875,0.5478515625,0.6220703125,0.6953125,0.7626953125,0.787109375,0.74609375,0.6552734375,0.5615234375,0.5,0.4443359375,0.3798828125,0.32421875,0.294921875,0.296875,0.3125,0.3251953125,0.3427734375,0.3857421875,0.4501953125,0.5146484375,0.5595703125,0.576171875,0.5703125,0.568359375,0.5966796875,0.640625,0.6708984375,0.6669921875,0.6279296875,0.5703125,0.5185546875,0.509765625,0.5478515625,0.609375,0.6572265625,0.6611328125,0.6220703125,0.5693359375,0.51953125,0.4912109375,0.4951171875,0.5234375,0.5537109375,0.5703125,0.587890625,0.62890625,0.6728515625,0.689453125,0.666015625,0.6123046875,0.55078125,0.49609375,0.46875,0.4716796875,0.4921875,0.505859375,0.4912109375,0.4482421875,0.4052734375,0.3974609375,0.4267578125,0.4697265625,0.498046875,0.490234375,0.4482421875,0.4013671875,0.37890625,0.396484375,0.4501953125,0.515625,0.560546875,0.5703125,0.56640625,0.5498046875,0.5185546875,0.48046875,0.44921875,0.4326171875,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.494140625,0.4580078125,0.4462890625,0.447265625,0.4453125,0.4228515625,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.443359375,0.5087890625,0.60546875,0.6865234375,0.7158203125,0.6865234375,0.6220703125,0.560546875,0.5439453125,0.572265625,0.619140625,0.6484375,0.630859375,0.5703125,0.48828125,0.3857421875,0.3037109375,0.28515625,0.3359375,0.421875,0.5,0.564453125,0.6025390625,0.609375,0.5986328125,0.595703125,0.6201171875,0.673828125,0.7275390625,0.7421875,0.69921875,0.6083984375,0.5087890625,0.443359375,0.4287109375,0.421875,0.39453125,0.369140625,0.37109375,0.4111328125,0.478515625,0.55078125,0.615234375,0.640625,0.603515625,0.513671875,0.41015625,0.3408203125,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.6865234375,0.7001953125,0.693359375,0.650390625,0.576171875,0.49609375,0.4287109375,0.3779296875,0.369140625,0.3994140625,0.44140625,0.462890625,0.439453125,0.376953125,0.3203125,0.32421875,0.3955078125,0.498046875,0.5791015625,0.5966796875,0.55078125,0.501953125,0.5009765625,0.5478515625,0.6083984375,0.6455078125,0.630859375,0.5703125,0.51171875,0.5068359375,0.55859375,0.6328125,0.6845703125,0.6806640625,0.6220703125,0.5576171875,0.5263671875,0.52734375,0.5419921875,0.5439453125,0.51171875,0.4482421875,0.3916015625,0.40234375,0.4853515625,0.6015625,0.693359375,0.7177734375,0.673828125,0.6220703125,0.61328125,0.6474609375,0.69921875,0.7333984375,0.724609375,0.673828125,0.599609375,0.4921875,0.388671875,0.337890625,0.3583984375,0.4248046875,0.5,0.5654296875,0.6025390625,0.60546875,0.5859375,0.5693359375,0.5791015625,0.6220703125,0.6572265625,0.6318359375,0.548828125,0.451171875,0.3876953125,0.3896484375,0.4482421875,0.52734375,0.6240234375,0.703125,0.7265625,0.6904296875,0.626953125,0.5703125,0.5087890625,0.4189453125,0.328125,0.27734375,0.28125,0.3251953125,0.376953125,0.423828125,0.44921875,0.439453125,0.3994140625,0.3525390625,0.32421875,0.3251953125,0.3447265625,0.3876953125,0.435546875,0.45703125,0.4375,0.38671875,0.3251953125,0.2626953125,0.2099609375,0.203125,0.2626953125,0.3701171875,0.4775390625,0.55078125,0.6123046875,0.66015625,0.6591796875,0.5947265625,0.4892578125,0.388671875,0.3251953125,0.2900390625,0.3154296875,0.40234375,0.509765625,0.5859375,0.5986328125,0.55078125,0.4951171875,0.4580078125,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.2734375,0.263671875,0.314453125,0.41015625,0.5078125,0.5654296875,0.5703125,0.5478515625,0.4873046875,0.408203125,0.349609375,0.337890625,0.37109375,0.4287109375,0.482421875,0.5,0.4775390625,0.4345703125,0.40234375,0.40625,0.4482421875,0.498046875,0.5390625,0.552734375,0.5302734375,0.486328125,0.4462890625,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.322265625,0.31640625,0.3291015625,0.376953125,0.45703125,0.544921875,0.6220703125,0.6845703125,0.701171875,0.65234375,0.552734375,0.4462890625,0.3828125,0.376953125,0.3857421875,0.3935546875,0.416015625,0.4912109375,0.5078125,0.529296875,0.5615234375,0.6044921875,0.65234375,0.701171875,0.740234375,0.7568359375,0.7529296875,0.7431640625,0.740234375,0.7255859375,0.6513671875,0.5244140625,0.3857421875,0.283203125,0.244140625,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.4912109375,0.501953125,0.513671875,0.5439453125,0.59765625,0.66796875,0.740234375,0.8017578125,0.8134765625,0.7587890625,0.6572265625,0.5537109375,0.4970703125,0.5,0.5205078125,0.546875,0.5625,0.5576171875,0.5322265625,0.498046875,0.46875,0.4404296875,0.4111328125,0.40234375,0.4306640625,0.4892578125,0.5537109375,0.6044921875,0.6455078125,0.6611328125,0.6298828125,0.5546875,0.4638671875,0.39453125,0.3642578125,0.3603515625,0.4189453125,0.533203125,0.6591796875,0.7490234375,0.7724609375,0.740234375,0.6884765625,0.6123046875,0.5166015625,0.4189453125,0.3408203125,0.2890625,0.2587890625,0.2265625,0.181640625,0.142578125,0.134765625,0.1630859375,0.2109375,0.2587890625,0.306640625,0.35546875,0.3828125,0.375,0.3369140625,0.291015625,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.2880859375,0.3232421875,0.34765625,0.34765625,0.3232421875,0.2880859375,0.2587890625,0.2421875,0.263671875,0.3251953125,0.4033203125,0.46484375,0.486328125,0.46875,0.453125,0.4765625,0.53515625,0.6015625,0.6435546875,0.6416015625,0.6044921875,0.5556640625,0.49609375,0.4306640625,0.369140625,0.3212890625,0.2861328125,0.2587890625,0.24609375,0.287109375,0.3857421875,0.5078125,0.6064453125,0.6484375,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.3857421875,0.396484375,0.408203125,0.4384765625,0.4921875,0.5625,0.634765625,0.7041015625,0.7509765625,0.748046875,0.6904296875,0.603515625,0.53125,0.5,0.4716796875,0.4130859375,0.3369140625,0.26953125,0.2353515625,0.236328125,0.2587890625,0.294921875,0.3623046875,0.447265625,0.5185546875,0.5546875,0.552734375,0.5302734375,0.5107421875,0.517578125,0.546875,0.5771484375,0.587890625,0.5703125,0.5302734375,0.4912109375,0.4814453125,0.5107421875,0.5654296875,0.619140625,0.64453125,0.634765625,0.6103515625,0.568359375,0.521484375,0.4912109375,0.486328125,0.50390625,0.5302734375,0.5634765625,0.6181640625,0.673828125,0.701171875,0.6904296875,0.650390625,0.6044921875,0.55859375,0.5107421875,0.4697265625,0.44140625,0.4248046875,0.4111328125,0.39453125,0.37890625,0.3759765625,0.38671875,0.40234375,0.4130859375,0.41015625,0.39453125,0.37890625,0.3818359375,0.408203125,0.4521484375,0.4970703125,0.5244140625,0.5302734375,0.5283203125,0.521484375,0.5078125,0.4912109375,0.4775390625,0.470703125,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.5576171875,0.505859375,0.4580078125,0.421875,0.3984375,0.3818359375,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.4833984375,0.544921875,0.6357421875,0.708984375,0.7333984375,0.701171875,0.634765625,0.572265625,0.548828125,0.56640625,0.5986328125,0.615234375,0.591796875,0.5302734375,0.44921875,0.3515625,0.2783203125,0.2705078125,0.330078125,0.4208984375,0.5,0.568359375,0.6240234375,0.6572265625,0.6708984375,0.6796875,0.7001953125,0.740234375,0.7783203125,0.7783203125,0.7255859375,0.6357421875,0.541015625,0.4814453125,0.46875,0.4619140625,0.4375,0.4140625,0.4189453125,0.462890625,0.53125,0.6044921875,0.666015625,0.6767578125,0.61328125,0.4912109375,0.3603515625,0.27734375,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.765625,0.7783203125,0.7568359375,0.693359375,0.6044921875,0.5234375,0.46875,0.4326171875,0.4287109375,0.4501953125,0.4716796875,0.46875,0.4296875,0.3642578125,0.306640625,0.3095703125,0.3837890625,0.4970703125,0.595703125,0.6328125,0.6044921875,0.568359375,0.568359375,0.5966796875,0.6259765625,0.6298828125,0.5947265625,0.5302734375,0.47265625,0.474609375,0.5380859375,0.626953125,0.6904296875,0.6923828125,0.634765625,0.5693359375,0.529296875,0.5166015625,0.513671875,0.5,0.4599609375,0.39453125,0.3388671875,0.3544921875,0.4521484375,0.59375,0.7158203125,0.7666015625,0.740234375,0.7021484375,0.6953125,0.720703125,0.7587890625,0.7841796875,0.7783203125,0.740234375,0.6806640625,0.576171875,0.4609375,0.3857421875,0.3798828125,0.4287109375,0.5,0.5693359375,0.6279296875,0.6572265625,0.654296875,0.634765625,0.623046875,0.634765625,0.6376953125,0.5810546875,0.4775390625,0.375,0.3203125,0.3330078125,0.39453125,0.4697265625,0.5498046875,0.607421875,0.62109375,0.59375,0.5546875,0.5302734375,0.5048828125,0.4599609375,0.4052734375,0.361328125,0.341796875,0.3466796875,0.3642578125,0.3759765625,0.3623046875,0.322265625,0.275390625,0.2431640625,0.23828125,0.2587890625,0.291015625,0.3369140625,0.375,0.3828125,0.35546875,0.306640625,0.2587890625,0.216796875,0.19921875,0.234375,0.3251953125,0.4443359375,0.5458984375,0.6044921875,0.6435546875,0.6455078125,0.5908203125,0.48828125,0.3740234375,0.2919921875,0.2587890625,0.2548828125,0.3095703125,0.4169921875,0.53515625,0.6181640625,0.6376953125,0.6044921875,0.55859375,0.509765625,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.224609375,0.240234375,0.3115234375,0.4140625,0.5029296875,0.54296875,0.5302734375,0.49609375,0.443359375,0.3916015625,0.3671875,0.3818359375,0.4228515625,0.46875,0.5087890625,0.521484375,0.5,0.4521484375,0.4052734375,0.3837890625,0.39453125,0.41796875,0.4560546875,0.49609375,0.51953125,0.5166015625,0.49609375,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.2578125,0.26171875,0.2919921875,0.361328125,0.4580078125,0.556640625,0.634765625,0.6943359375,0.69921875,0.6318359375,0.5185546875,0.41015625,0.3544921875,0.3642578125,0.392578125,0.4306640625,0.4853515625,0.474609375,0.5244140625,0.5703125,0.6064453125,0.634765625,0.6630859375,0.6953125,0.7236328125,0.740234375,0.744140625,0.7412109375,0.740234375,0.72265625,0.6376953125,0.4970703125,0.3505859375,0.2509765625,0.2255859375,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.5693359375,0.5859375,0.587890625,0.59375,0.6201171875,0.671875,0.740234375,0.806640625,0.8408203125,0.814453125,0.728515625,0.6181640625,0.533203125,0.5,0.48828125,0.50390625,0.541015625,0.576171875,0.5888671875,0.5703125,0.5302734375,0.484375,0.44921875,0.4443359375,0.48046875,0.5419921875,0.6005859375,0.634765625,0.65234375,0.6318359375,0.568359375,0.4853515625,0.416015625,0.384765625,0.39453125,0.4248046875,0.49609375,0.595703125,0.6904296875,0.7490234375,0.7607421875,0.740234375,0.7099609375,0.658203125,0.580078125,0.482421875,0.38671875,0.310546875,0.2587890625,0.2109375,0.1630859375,0.134765625,0.142578125,0.181640625,0.2265625,0.2587890625,0.291015625,0.3369140625,0.375,0.3828125,0.35546875,0.306640625,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.5947265625,0.5029296875,0.3798828125,0.2734375,0.216796875,0.2197265625,0.2587890625,0.3095703125,0.369140625,0.4111328125,0.4111328125,0.369140625,0.3095703125,0.2587890625,0.2275390625,0.25390625,0.33984375,0.44921875,0.53515625,0.5615234375,0.5302734375,0.4921875,0.4873046875,0.521484375,0.580078125,0.6318359375,0.65234375,0.634765625,0.6064453125,0.568359375,0.513671875,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.2294921875,0.2646484375,0.3671875,0.4970703125,0.599609375,0.634765625,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.43359375,0.4501953125,0.4521484375,0.4580078125,0.484375,0.5361328125,0.6044921875,0.6689453125,0.6982421875,0.673828125,0.607421875,0.5341796875,0.4931640625,0.5,0.505859375,0.4638671875,0.3798828125,0.2900390625,0.23046875,0.22265625,0.2587890625,0.314453125,0.3994140625,0.48828125,0.5439453125,0.548828125,0.5146484375,0.46875,0.4287109375,0.4111328125,0.421875,0.4521484375,0.4814453125,0.48828125,0.46875,0.4443359375,0.4296875,0.44140625,0.48046875,0.5341796875,0.5791015625,0.6044921875,0.61328125,0.5849609375,0.5244140625,0.4609375,0.4248046875,0.4306640625,0.46875,0.5205078125,0.58984375,0.654296875,0.6904296875,0.6884765625,0.6630859375,0.634765625,0.6005859375,0.537109375,0.4580078125,0.3896484375,0.3515625,0.3486328125,0.3642578125,0.3798828125,0.3828125,0.3720703125,0.3564453125,0.345703125,0.3486328125,0.3642578125,0.384765625,0.4111328125,0.4384765625,0.4580078125,0.4677734375,0.4697265625,0.46875,0.470703125,0.4775390625,0.4912109375,0.5078125,0.521484375,0.5283203125,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.6005859375,0.5419921875,0.46875,0.408203125,0.3779296875,0.3779296875,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.5419921875,0.5927734375,0.662109375,0.712890625,0.7158203125,0.6728515625,0.6044921875,0.5419921875,0.5146484375,0.5244140625,0.5498046875,0.5595703125,0.5322265625,0.46875,0.3896484375,0.2998046875,0.240234375,0.248046875,0.3212890625,0.4189453125,0.5,0.5712890625,0.6376953125,0.6845703125,0.70703125,0.7119140625,0.71875,0.740234375,0.7607421875,0.7548828125,0.712890625,0.6455078125,0.5791015625,0.5380859375,0.5302734375,0.5224609375,0.4931640625,0.4638671875,0.4609375,0.498046875,0.5625,0.634765625,0.6962890625,0.703125,0.6318359375,0.501953125,0.365234375,0.27734375,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.783203125,0.8056640625,0.787109375,0.7236328125,0.6376953125,0.56640625,0.5302734375,0.5107421875,0.5166015625,0.53515625,0.541015625,0.517578125,0.4638671875,0.39453125,0.333984375,0.326171875,0.3857421875,0.4912109375,0.59375,0.6455078125,0.634765625,0.615234375,0.6181640625,0.62890625,0.626953125,0.5966796875,0.5390625,0.46875,0.412109375,0.41796875,0.48828125,0.5849609375,0.6552734375,0.6611328125,0.6044921875,0.5390625,0.4990234375,0.4853515625,0.482421875,0.4697265625,0.4296875,0.3642578125,0.306640625,0.3154296875,0.4052734375,0.546875,0.6787109375,0.7470703125,0.740234375,0.7177734375,0.7138671875,0.728515625,0.7509765625,0.765625,0.76171875,0.740234375,0.69921875,0.6083984375,0.4970703125,0.4140625,0.3935546875,0.431640625,0.5,0.57421875,0.650390625,0.701171875,0.70703125,0.673828125,0.630859375,0.6044921875,0.5703125,0.486328125,0.375,0.2890625,0.2626953125,0.296875,0.3642578125,0.43359375,0.48828125,0.5107421875,0.5,0.4736328125,0.4580078125,0.46875,0.48828125,0.50390625,0.5048828125,0.4853515625,0.451171875,0.4169921875,0.39453125,0.3662109375,0.3095703125,0.2421875,0.1953125,0.1875,0.2158203125,0.2587890625,0.306640625,0.35546875,0.3828125,0.375,0.3369140625,0.291015625,0.2587890625,0.23828125,0.2490234375,0.30859375,0.408203125,0.5166015625,0.5966796875,0.634765625,0.6494140625,0.6123046875,0.5185546875,0.400390625,0.2998046875,0.2529296875,0.2587890625,0.2900390625,0.3642578125,0.4716796875,0.57421875,0.6396484375,0.654296875,0.634765625,0.6044921875,0.5546875,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.244140625,0.27734375,0.3525390625,0.4384765625,0.4970703125,0.5048828125,0.46875,0.4228515625,0.3818359375,0.3671875,0.3916015625,0.443359375,0.49609375,0.5302734375,0.5546875,0.564453125,0.546875,0.5,0.439453125,0.3896484375,0.3642578125,0.35546875,0.388671875,0.4560546875,0.5263671875,0.5693359375,0.5673828125,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.2568359375,0.2568359375,0.28125,0.341796875,0.4326171875,0.5263671875,0.6044921875,0.6630859375,0.6640625,0.5966796875,0.4912109375,0.3994140625,0.365234375,0.39453125,0.443359375,0.5029296875,0.568359375,0.4716796875,0.52734375,0.576171875,0.607421875,0.6220703125,0.6328125,0.646484375,0.66015625,0.669921875,0.673828125,0.673828125,0.673828125,0.6572265625,0.5791015625,0.455078125,0.337890625,0.271484375,0.2744140625,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.6220703125,0.6376953125,0.619140625,0.58984375,0.580078125,0.609375,0.673828125,0.74609375,0.806640625,0.8193359375,0.7646484375,0.6630859375,0.5634765625,0.5,0.4599609375,0.466796875,0.51953125,0.5849609375,0.6279296875,0.62109375,0.5703125,0.509765625,0.4658203125,0.4580078125,0.4931640625,0.552734375,0.6015625,0.6220703125,0.62109375,0.5771484375,0.5029296875,0.4306640625,0.3935546875,0.4033203125,0.4482421875,0.50390625,0.5751953125,0.642578125,0.6845703125,0.6953125,0.685546875,0.673828125,0.6640625,0.6494140625,0.6162109375,0.5546875,0.47265625,0.3916015625,0.3251953125,0.2646484375,0.2138671875,0.1943359375,0.2158203125,0.263671875,0.306640625,0.3251953125,0.3447265625,0.3876953125,0.435546875,0.45703125,0.4375,0.38671875,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.595703125,0.5166015625,0.4033203125,0.3037109375,0.2568359375,0.271484375,0.3251953125,0.3935546875,0.474609375,0.53125,0.53125,0.474609375,0.3935546875,0.3251953125,0.2802734375,0.30078125,0.3896484375,0.505859375,0.5947265625,0.615234375,0.5703125,0.5126953125,0.48046875,0.48828125,0.5322265625,0.587890625,0.6220703125,0.6220703125,0.61328125,0.60546875,0.5830078125,0.53515625,0.4658203125,0.390625,0.3251953125,0.279296875,0.2978515625,0.3828125,0.494140625,0.5791015625,0.5966796875,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.5,0.515625,0.4970703125,0.4677734375,0.4580078125,0.4873046875,0.55078125,0.6123046875,0.62890625,0.5927734375,0.52734375,0.4716796875,0.4609375,0.5,0.5361328125,0.5166015625,0.4423828125,0.3486328125,0.283203125,0.27734375,0.3251953125,0.396484375,0.4892578125,0.5693359375,0.5966796875,0.5625,0.4951171875,0.4287109375,0.37109375,0.33203125,0.328125,0.3583984375,0.40234375,0.4306640625,0.4287109375,0.4150390625,0.392578125,0.3798828125,0.39453125,0.439453125,0.4970703125,0.55078125,0.58984375,0.576171875,0.5126953125,0.4326171875,0.37890625,0.37890625,0.4287109375,0.494140625,0.5693359375,0.630859375,0.66015625,0.6552734375,0.6357421875,0.6220703125,0.5986328125,0.5322265625,0.4375,0.35546875,0.318359375,0.33203125,0.376953125,0.419921875,0.427734375,0.3984375,0.35546875,0.3271484375,0.3349609375,0.376953125,0.427734375,0.4716796875,0.4921875,0.484375,0.4580078125,0.4345703125,0.4287109375,0.4326171875,0.44921875,0.48046875,0.5185546875,0.5498046875,0.56640625,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.6005859375,0.5419921875,0.4638671875,0.400390625,0.37890625,0.400390625,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.5791015625,0.619140625,0.66796875,0.693359375,0.67578125,0.62109375,0.55078125,0.48828125,0.462890625,0.4755859375,0.50390625,0.517578125,0.4912109375,0.4287109375,0.3505859375,0.265625,0.21484375,0.2333984375,0.3154296875,0.41796875,0.5,0.572265625,0.6396484375,0.68359375,0.6953125,0.6826171875,0.6689453125,0.673828125,0.6806640625,0.67578125,0.6552734375,0.623046875,0.5927734375,0.57421875,0.5703125,0.5615234375,0.525390625,0.484375,0.466796875,0.4921875,0.55078125,0.6220703125,0.6845703125,0.701171875,0.6484375,0.5400390625,0.419921875,0.3427734375,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.732421875,0.7705078125,0.7666015625,0.7177734375,0.646484375,0.5908203125,0.5703125,0.5673828125,0.5859375,0.6103515625,0.61328125,0.580078125,0.5185546875,0.4482421875,0.3837890625,0.3583984375,0.3916015625,0.47265625,0.5625,0.6181640625,0.6220703125,0.6171875,0.6279296875,0.63671875,0.6201171875,0.5712890625,0.501953125,0.4287109375,0.3720703125,0.3759765625,0.443359375,0.5361328125,0.6044921875,0.6083984375,0.55078125,0.4873046875,0.455078125,0.45703125,0.4716796875,0.47265625,0.44140625,0.376953125,0.3154296875,0.3056640625,0.3662109375,0.478515625,0.5966796875,0.6669921875,0.673828125,0.6650390625,0.6630859375,0.6689453125,0.677734375,0.68359375,0.681640625,0.673828125,0.6494140625,0.5791015625,0.484375,0.4130859375,0.39453125,0.4326171875,0.5,0.5771484375,0.666015625,0.728515625,0.7333984375,0.6826171875,0.609375,0.55078125,0.4873046875,0.3876953125,0.2861328125,0.2314453125,0.2431640625,0.3046875,0.376953125,0.44140625,0.470703125,0.45703125,0.4189453125,0.38671875,0.388671875,0.4287109375,0.486328125,0.5556640625,0.6064453125,0.6123046875,0.568359375,0.50390625,0.4482421875,0.38671875,0.298828125,0.216796875,0.1796875,0.2021484375,0.26171875,0.3251953125,0.38671875,0.4375,0.45703125,0.435546875,0.3876953125,0.3447265625,0.3251953125,0.3212890625,0.34375,0.3994140625,0.4775390625,0.5537109375,0.603515625,0.6220703125,0.6181640625,0.5595703125,0.4580078125,0.353515625,0.2890625,0.2841796875,0.3251953125,0.3837890625,0.462890625,0.5458984375,0.607421875,0.6328125,0.6318359375,0.6220703125,0.6064453125,0.568359375,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.326171875,0.3671875,0.43359375,0.4912109375,0.5107421875,0.484375,0.4287109375,0.37109375,0.337890625,0.349609375,0.408203125,0.4873046875,0.5478515625,0.5703125,0.5830078125,0.5966796875,0.59375,0.5595703125,0.5,0.4326171875,0.376953125,0.3408203125,0.3623046875,0.44140625,0.5400390625,0.6103515625,0.6181640625,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.3212890625,0.306640625,0.3037109375,0.3330078125,0.396484375,0.4765625,0.55078125,0.6103515625,0.6142578125,0.55859375,0.4755859375,0.41015625,0.400390625,0.4482421875,0.51171875,0.5771484375,0.6318359375,0.4814453125,0.517578125,0.5478515625,0.564453125,0.5693359375,0.5712890625,0.5732421875,0.576171875,0.578125,0.5791015625,0.5791015625,0.5791015625,0.5654296875,0.505859375,0.41796875,0.345703125,0.3232421875,0.35546875,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6181640625,0.6298828125,0.59375,0.5390625,0.5048828125,0.5185546875,0.5791015625,0.65625,0.7392578125,0.78515625,0.7626953125,0.6796875,0.578125,0.5,0.4443359375,0.4423828125,0.4951171875,0.5693359375,0.62109375,0.6162109375,0.5595703125,0.4912109375,0.4404296875,0.4287109375,0.4599609375,0.5146484375,0.5576171875,0.5693359375,0.5595703125,0.51171875,0.443359375,0.392578125,0.3857421875,0.4248046875,0.4892578125,0.55859375,0.6201171875,0.654296875,0.6494140625,0.6181640625,0.587890625,0.5791015625,0.583984375,0.603515625,0.6201171875,0.6083984375,0.560546875,0.4912109375,0.419921875,0.3515625,0.298828125,0.28515625,0.3134765625,0.3662109375,0.408203125,0.419921875,0.4306640625,0.47265625,0.525390625,0.5546875,0.5400390625,0.48828125,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5546875,0.494140625,0.408203125,0.33984375,0.3212890625,0.3544921875,0.419921875,0.498046875,0.58984375,0.654296875,0.654296875,0.58984375,0.498046875,0.419921875,0.3642578125,0.37109375,0.44140625,0.5380859375,0.6083984375,0.6142578125,0.5595703125,0.4912109375,0.4423828125,0.43359375,0.4658203125,0.5205078125,0.560546875,0.5693359375,0.57421875,0.595703125,0.6142578125,0.6044921875,0.5595703125,0.4912109375,0.419921875,0.36328125,0.3642578125,0.4228515625,0.505859375,0.5654296875,0.5654296875,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5478515625,0.560546875,0.5244140625,0.4697265625,0.4345703125,0.44921875,0.509765625,0.5693359375,0.5810546875,0.541015625,0.4794921875,0.4365234375,0.443359375,0.5,0.5546875,0.5537109375,0.4970703125,0.4169921875,0.361328125,0.36328125,0.419921875,0.498046875,0.5927734375,0.662109375,0.6669921875,0.6064453125,0.517578125,0.439453125,0.3720703125,0.3212890625,0.3095703125,0.33984375,0.3916015625,0.431640625,0.439453125,0.4306640625,0.3974609375,0.3623046875,0.3525390625,0.3818359375,0.44140625,0.509765625,0.564453125,0.5654296875,0.5107421875,0.43359375,0.3798828125,0.3828125,0.439453125,0.5107421875,0.5791015625,0.6220703125,0.626953125,0.603515625,0.5771484375,0.5693359375,0.5546875,0.4970703125,0.4150390625,0.349609375,0.33203125,0.3662109375,0.4296875,0.486328125,0.4970703125,0.458984375,0.400390625,0.3623046875,0.373046875,0.4296875,0.49609375,0.5478515625,0.5625,0.5361328125,0.4873046875,0.44921875,0.439453125,0.4423828125,0.45703125,0.4833984375,0.515625,0.5419921875,0.556640625,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.556640625,0.505859375,0.4365234375,0.3876953125,0.3837890625,0.4248046875,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.568359375,0.603515625,0.646484375,0.6630859375,0.638671875,0.580078125,0.509765625,0.4482421875,0.4287109375,0.453125,0.49609375,0.5205078125,0.5009765625,0.439453125,0.361328125,0.2744140625,0.220703125,0.2373046875,0.3173828125,0.41796875,0.5,0.5712890625,0.6318359375,0.662109375,0.65234375,0.6162109375,0.5859375,0.5791015625,0.580078125,0.5791015625,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.5595703125,0.5498046875,0.5087890625,0.4580078125,0.4296875,0.4453125,0.4990234375,0.5693359375,0.6357421875,0.669921875,0.6494140625,0.580078125,0.4931640625,0.43359375,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6474609375,0.697265625,0.70703125,0.6728515625,0.615234375,0.5712890625,0.5595703125,0.56640625,0.59765625,0.6357421875,0.6484375,0.62109375,0.560546875,0.4892578125,0.421875,0.3798828125,0.3857421875,0.4375,0.5087890625,0.55859375,0.5693359375,0.57421875,0.599609375,0.6240234375,0.6201171875,0.5791015625,0.5126953125,0.439453125,0.3818359375,0.37890625,0.4345703125,0.5146484375,0.5703125,0.5673828125,0.509765625,0.4482421875,0.427734375,0.4501953125,0.4892578125,0.51171875,0.4912109375,0.4296875,0.36328125,0.330078125,0.3515625,0.421875,0.5087890625,0.5673828125,0.5791015625,0.578125,0.5771484375,0.578125,0.580078125,0.5810546875,0.5810546875,0.5791015625,0.5654296875,0.513671875,0.44140625,0.390625,0.3876953125,0.431640625,0.5,0.5791015625,0.6728515625,0.7392578125,0.740234375,0.67578125,0.5859375,0.509765625,0.4306640625,0.330078125,0.24609375,0.2236328125,0.26953125,0.3525390625,0.4296875,0.490234375,0.50390625,0.46875,0.412109375,0.373046875,0.3828125,0.439453125,0.5166015625,0.6123046875,0.6875,0.7001953125,0.6484375,0.564453125,0.4892578125,0.412109375,0.3125,0.232421875,0.212890625,0.26171875,0.34375,0.419921875,0.48828125,0.5400390625,0.5546875,0.525390625,0.47265625,0.4306640625,0.419921875,0.421875,0.4375,0.46875,0.5087890625,0.5439453125,0.5634765625,0.5693359375,0.5576171875,0.5009765625,0.4169921875,0.34765625,0.326171875,0.357421875,0.419921875,0.490234375,0.5595703125,0.6064453125,0.6171875,0.599609375,0.5771484375,0.5693359375,0.564453125,0.5458984375,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.4287109375,0.470703125,0.5263671875,0.5625,0.5546875,0.5068359375,0.439453125,0.3740234375,0.3369140625,0.3486328125,0.4091796875,0.48828125,0.544921875,0.5595703125,0.5673828125,0.5927734375,0.615234375,0.609375,0.56640625,0.5,0.4296875,0.3759765625,0.3828125,0.451171875,0.5439453125,0.6103515625,0.615234375,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.412109375,0.380859375,0.34765625,0.3408203125,0.3740234375,0.4375,0.509765625,0.5693359375,0.578125,0.53515625,0.4697265625,0.4248046875,0.431640625,0.4892578125,0.5595703125,0.62109375,0.65234375,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.513671875,0.4755859375,0.443359375,0.4248046875,0.419921875,0.41796875,0.4169921875,0.41796875,0.4208984375,0.423828125,0.427734375,0.4296875,0.4248046875,0.4033203125,0.384765625,0.39453125,0.439453125,0.5078125,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.478515625,0.4931640625,0.458984375,0.40625,0.37109375,0.3828125,0.439453125,0.517578125,0.6171875,0.697265625,0.716796875,0.66796875,0.5859375,0.509765625,0.44921875,0.4296875,0.4521484375,0.4921875,0.515625,0.498046875,0.439453125,0.3720703125,0.3193359375,0.30078125,0.32421875,0.3701171875,0.4091796875,0.419921875,0.4140625,0.384765625,0.3515625,0.34375,0.373046875,0.431640625,0.5,0.564453125,0.6044921875,0.599609375,0.5498046875,0.48046875,0.4306640625,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.4912109375,0.4384765625,0.4248046875,0.453125,0.505859375,0.5478515625,0.5595703125,0.5703125,0.6123046875,0.6650390625,0.6943359375,0.6796875,0.6279296875,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6572265625,0.7490234375,0.8134765625,0.8115234375,0.7431640625,0.6494140625,0.5693359375,0.505859375,0.4775390625,0.484375,0.5048828125,0.51171875,0.4833984375,0.419921875,0.349609375,0.296875,0.2822265625,0.3115234375,0.365234375,0.408203125,0.419921875,0.4345703125,0.49609375,0.583984375,0.6552734375,0.6767578125,0.6435546875,0.5791015625,0.5185546875,0.498046875,0.517578125,0.5556640625,0.5771484375,0.55859375,0.5,0.423828125,0.333984375,0.271484375,0.2734375,0.33984375,0.431640625,0.509765625,0.5673828125,0.57421875,0.529296875,0.4638671875,0.4208984375,0.4296875,0.4892578125,0.5498046875,0.5615234375,0.5234375,0.4658203125,0.427734375,0.439453125,0.5,0.560546875,0.5791015625,0.5517578125,0.5068359375,0.48046875,0.498046875,0.5595703125,0.638671875,0.732421875,0.7978515625,0.796875,0.73046875,0.6376953125,0.5595703125,0.4912109375,0.4423828125,0.4345703125,0.4697265625,0.5263671875,0.5693359375,0.5791015625,0.5673828125,0.5146484375,0.44140625,0.38671875,0.3798828125,0.421875,0.4892578125,0.55078125,0.5703125,0.5458984375,0.5029296875,0.478515625,0.498046875,0.5595703125,0.6259765625,0.6640625,0.650390625,0.5888671875,0.5087890625,0.4521484375,0.439453125,0.43359375,0.4091796875,0.388671875,0.3955078125,0.439453125,0.5078125,0.5791015625,0.63671875,0.6455078125,0.6025390625,0.5400390625,0.4990234375,0.509765625,0.5693359375,0.638671875,0.6884765625,0.6982421875,0.6650390625,0.609375,0.568359375,0.5595703125,0.55859375,0.544921875,0.5185546875,0.486328125,0.4580078125,0.4423828125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5791015625,0.6357421875,0.66015625,0.6435546875,0.6025390625,0.568359375,0.5595703125,0.556640625,0.5400390625,0.5107421875,0.474609375,0.4423828125,0.4248046875,0.419921875,0.41796875,0.41796875,0.4189453125,0.4208984375,0.421875,0.4208984375,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.453125,0.4501953125,0.50390625,0.580078125,0.6328125,0.6279296875,0.5693359375,0.48828125,0.3876953125,0.3076171875,0.291015625,0.341796875,0.4248046875,0.5,0.564453125,0.6044921875,0.6005859375,0.552734375,0.486328125,0.439453125,0.4296875,0.4306640625,0.431640625,0.4306640625,0.4287109375,0.427734375,0.4287109375,0.4296875,0.421875,0.3818359375,0.3291015625,0.296875,0.3056640625,0.353515625,0.419921875,0.490234375,0.55859375,0.60546875,0.6171875,0.6025390625,0.5830078125,0.5791015625,0.5673828125,0.5087890625,0.421875,0.3515625,0.330078125,0.36328125,0.4296875,0.5,0.5537109375,0.5693359375,0.541015625,0.490234375,0.44921875,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4326171875,0.4892578125,0.5712890625,0.63671875,0.6552734375,0.623046875,0.5595703125,0.5009765625,0.486328125,0.5146484375,0.5595703125,0.5869140625,0.5693359375,0.509765625,0.4521484375,0.4482421875,0.4990234375,0.57421875,0.626953125,0.625,0.5693359375,0.4990234375,0.4296875,0.3828125,0.37109375,0.3896484375,0.412109375,0.419921875,0.421875,0.423828125,0.427734375,0.431640625,0.435546875,0.4375,0.439453125,0.4326171875,0.3994140625,0.3583984375,0.341796875,0.3642578125,0.4208984375,0.4892578125,0.568359375,0.662109375,0.7314453125,0.7373046875,0.6767578125,0.5869140625,0.509765625,0.4326171875,0.3466796875,0.2939453125,0.3095703125,0.3876953125,0.48828125,0.5693359375,0.6298828125,0.6435546875,0.6083984375,0.5517578125,0.5126953125,0.5224609375,0.5791015625,0.6533203125,0.732421875,0.775390625,0.751953125,0.66796875,0.5673828125,0.4892578125,0.4150390625,0.3349609375,0.2890625,0.310546875,0.3916015625,0.4912109375,0.5693359375,0.6357421875,0.6865234375,0.701171875,0.6728515625,0.62109375,0.580078125,0.5693359375,0.564453125,0.5478515625,0.517578125,0.4814453125,0.451171875,0.4345703125,0.4296875,0.421875,0.3994140625,0.3818359375,0.392578125,0.439453125,0.5087890625,0.5791015625,0.6416015625,0.671875,0.6474609375,0.5751953125,0.4892578125,0.431640625,0.419921875,0.4248046875,0.4443359375,0.4765625,0.513671875,0.54296875,0.5576171875,0.5595703125,0.5673828125,0.6083984375,0.6611328125,0.6923828125,0.6806640625,0.62890625,0.5595703125,0.486328125,0.419921875,0.37890625,0.375,0.3994140625,0.4248046875,0.4296875,0.44140625,0.4990234375,0.5830078125,0.6513671875,0.669921875,0.6357421875,0.5693359375,0.505859375,0.4765625,0.482421875,0.5048828125,0.5146484375,0.4892578125,0.4296875,0.3671875,0.3349609375,0.35546875,0.423828125,0.5087890625,0.56640625,0.5791015625,0.5673828125,0.515625,0.443359375,0.390625,0.3828125,0.423828125,0.4892578125,0.5478515625,0.5576171875,0.5166015625,0.45703125,0.41796875,0.4296875,0.4892578125,0.55859375,0.6044921875,0.60546875,0.5087890625,0.4384765625,0.37890625,0.3408203125,0.3251953125,0.3154296875,0.3076171875,0.3095703125,0.3232421875,0.3447265625,0.3642578125,0.376953125,0.3857421875,0.3935546875,0.416015625,0.4638671875,0.533203125,0.6083984375,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.380859375,0.408203125,0.4052734375,0.384765625,0.37109375,0.3857421875,0.4287109375,0.490234375,0.578125,0.66015625,0.697265625,0.6748046875,0.615234375,0.55078125,0.49609375,0.4658203125,0.46484375,0.48046875,0.4892578125,0.47265625,0.4287109375,0.3759765625,0.3193359375,0.279296875,0.26953125,0.2861328125,0.310546875,0.3251953125,0.3330078125,0.33203125,0.3349609375,0.3544921875,0.39453125,0.447265625,0.5,0.544921875,0.5615234375,0.5322265625,0.4638671875,0.3876953125,0.3369140625,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.5087890625,0.4580078125,0.4384765625,0.4609375,0.5078125,0.5517578125,0.5703125,0.5888671875,0.6318359375,0.6796875,0.701171875,0.681640625,0.630859375,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.7421875,0.822265625,0.875,0.8662109375,0.7958984375,0.701171875,0.6220703125,0.5546875,0.5087890625,0.482421875,0.46484375,0.439453125,0.392578125,0.3251953125,0.2548828125,0.1962890625,0.1748046875,0.201171875,0.255859375,0.3056640625,0.3251953125,0.3525390625,0.4375,0.5634765625,0.6767578125,0.7353515625,0.7265625,0.673828125,0.6171875,0.580078125,0.568359375,0.5703125,0.5673828125,0.544921875,0.5,0.4423828125,0.3759765625,0.33203125,0.341796875,0.40234375,0.4833984375,0.55078125,0.5986328125,0.5888671875,0.5234375,0.4404296875,0.384765625,0.388671875,0.4482421875,0.5087890625,0.525390625,0.4970703125,0.4501953125,0.421875,0.4384765625,0.5,0.560546875,0.580078125,0.5556640625,0.513671875,0.4892578125,0.5087890625,0.5703125,0.6484375,0.736328125,0.794921875,0.791015625,0.7265625,0.6396484375,0.5703125,0.5126953125,0.48046875,0.4921875,0.5458984375,0.6142578125,0.662109375,0.673828125,0.658203125,0.5888671875,0.4853515625,0.3955078125,0.3583984375,0.3837890625,0.4482421875,0.5107421875,0.5361328125,0.5234375,0.4951171875,0.4814453125,0.5078125,0.5703125,0.63671875,0.671875,0.6533203125,0.5859375,0.5009765625,0.4423828125,0.4287109375,0.42578125,0.419921875,0.4287109375,0.4677734375,0.533203125,0.6083984375,0.673828125,0.7216796875,0.71875,0.6650390625,0.5947265625,0.55078125,0.5615234375,0.6220703125,0.6884765625,0.728515625,0.72265625,0.6748046875,0.611328125,0.5712890625,0.5703125,0.5771484375,0.5673828125,0.5380859375,0.49609375,0.45703125,0.43359375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.611328125,0.658203125,0.673828125,0.6533203125,0.611328125,0.578125,0.5703125,0.5654296875,0.5419921875,0.4951171875,0.435546875,0.37890625,0.341796875,0.3251953125,0.3173828125,0.3154296875,0.3212890625,0.330078125,0.3359375,0.333984375,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.5029296875,0.5087890625,0.56640625,0.6416015625,0.689453125,0.681640625,0.6220703125,0.5419921875,0.4453125,0.3662109375,0.3427734375,0.37890625,0.4423828125,0.5,0.544921875,0.5615234375,0.53515625,0.4775390625,0.4140625,0.376953125,0.376953125,0.3857421875,0.3876953125,0.3818359375,0.373046875,0.3671875,0.369140625,0.376953125,0.37890625,0.3505859375,0.3037109375,0.263671875,0.25390625,0.2783203125,0.3251953125,0.3818359375,0.455078125,0.5341796875,0.6005859375,0.642578125,0.662109375,0.673828125,0.6669921875,0.5966796875,0.478515625,0.3662109375,0.3056640625,0.3154296875,0.376953125,0.4482421875,0.5068359375,0.5322265625,0.5146484375,0.4736328125,0.4375,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.3388671875,0.3974609375,0.490234375,0.576171875,0.62109375,0.6142578125,0.5703125,0.5283203125,0.5244140625,0.556640625,0.599609375,0.6220703125,0.6044921875,0.55078125,0.5,0.4931640625,0.5361328125,0.6025390625,0.654296875,0.6611328125,0.6220703125,0.5634765625,0.484375,0.4013671875,0.33984375,0.314453125,0.3154296875,0.3251953125,0.3369140625,0.3505859375,0.3681640625,0.38671875,0.404296875,0.41796875,0.4287109375,0.4306640625,0.4052734375,0.365234375,0.33984375,0.34765625,0.3896484375,0.4482421875,0.5185546875,0.611328125,0.69140625,0.71875,0.6845703125,0.6171875,0.55078125,0.4833984375,0.4052734375,0.3564453125,0.3701171875,0.4453125,0.5419921875,0.6220703125,0.685546875,0.71484375,0.701171875,0.6630859375,0.630859375,0.6328125,0.673828125,0.724609375,0.7646484375,0.76171875,0.7021484375,0.6044921875,0.509765625,0.4482421875,0.3955078125,0.349609375,0.3408203125,0.38671875,0.47265625,0.560546875,0.6220703125,0.6728515625,0.7158203125,0.7333984375,0.7158203125,0.67578125,0.638671875,0.6220703125,0.607421875,0.576171875,0.52734375,0.4716796875,0.4228515625,0.3916015625,0.376953125,0.3671875,0.3662109375,0.3916015625,0.453125,0.5361328125,0.615234375,0.673828125,0.7138671875,0.7021484375,0.626953125,0.5087890625,0.39453125,0.3310546875,0.3251953125,0.3427734375,0.3857421875,0.4501953125,0.5146484375,0.5595703125,0.576171875,0.5703125,0.5703125,0.6044921875,0.6552734375,0.6904296875,0.6845703125,0.638671875,0.5703125,0.4970703125,0.427734375,0.37890625,0.3623046875,0.37109375,0.3818359375,0.376953125,0.3828125,0.4462890625,0.552734375,0.65234375,0.701171875,0.6845703125,0.6220703125,0.5537109375,0.5009765625,0.470703125,0.4580078125,0.4482421875,0.4228515625,0.376953125,0.3349609375,0.3330078125,0.3896484375,0.490234375,0.59375,0.6591796875,0.673828125,0.6591796875,0.5966796875,0.5009765625,0.4150390625,0.3759765625,0.3935546875,0.4482421875,0.4970703125,0.5009765625,0.458984375,0.40234375,0.3701171875,0.38671875,0.4482421875,0.517578125,0.5673828125,0.572265625,0.4853515625,0.408203125,0.3388671875,0.2900390625,0.2587890625,0.232421875,0.2099609375,0.208984375,0.2373046875,0.28515625,0.33203125,0.3642578125,0.392578125,0.4306640625,0.4853515625,0.5546875,0.626953125,0.6904296875,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.3056640625,0.3525390625,0.39453125,0.4228515625,0.439453125,0.4521484375,0.46875,0.4970703125,0.5537109375,0.62109375,0.66796875,0.67578125,0.6484375,0.6044921875,0.5595703125,0.521484375,0.4970703125,0.48828125,0.48828125,0.484375,0.46875,0.4423828125,0.3876953125,0.3173828125,0.2587890625,0.23046875,0.2353515625,0.2587890625,0.287109375,0.3251953125,0.369140625,0.4140625,0.451171875,0.4794921875,0.5,0.5126953125,0.4970703125,0.447265625,0.375,0.3076171875,0.267578125,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.482421875,0.43359375,0.4052734375,0.4140625,0.4521484375,0.498046875,0.5302734375,0.5615234375,0.607421875,0.646484375,0.654296875,0.6259765625,0.5771484375,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.7919921875,0.853515625,0.892578125,0.8759765625,0.8046875,0.7138671875,0.634765625,0.56640625,0.509765625,0.4658203125,0.427734375,0.3837890625,0.3271484375,0.2587890625,0.185546875,0.1181640625,0.0849609375,0.1044921875,0.162109375,0.2236328125,0.2587890625,0.3017578125,0.40625,0.5517578125,0.6875,0.7666015625,0.7763671875,0.740234375,0.693359375,0.6416015625,0.59375,0.5576171875,0.5341796875,0.517578125,0.5,0.4775390625,0.4501953125,0.435546875,0.4521484375,0.498046875,0.5556640625,0.6044921875,0.6337890625,0.599609375,0.5078125,0.40234375,0.3349609375,0.3359375,0.39453125,0.45703125,0.48046875,0.4638671875,0.4306640625,0.4140625,0.4375,0.5,0.5595703125,0.57421875,0.541015625,0.48828125,0.455078125,0.4697265625,0.5302734375,0.60546875,0.6845703125,0.7314453125,0.720703125,0.6591796875,0.583984375,0.5302734375,0.490234375,0.4833984375,0.521484375,0.5966796875,0.6767578125,0.728515625,0.740234375,0.7216796875,0.638671875,0.5078125,0.3857421875,0.322265625,0.3330078125,0.39453125,0.45703125,0.484375,0.474609375,0.44921875,0.439453125,0.466796875,0.5302734375,0.5986328125,0.6435546875,0.642578125,0.5966796875,0.529296875,0.48046875,0.46875,0.46875,0.4755859375,0.501953125,0.5546875,0.6240234375,0.689453125,0.740234375,0.771484375,0.75,0.681640625,0.6044921875,0.560546875,0.57421875,0.634765625,0.6982421875,0.72265625,0.693359375,0.6240234375,0.5517578125,0.5166015625,0.5302734375,0.5537109375,0.56640625,0.5576171875,0.5302734375,0.4970703125,0.474609375,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6474609375,0.6708984375,0.6630859375,0.6240234375,0.5732421875,0.5380859375,0.5302734375,0.52734375,0.509765625,0.46875,0.408203125,0.3427734375,0.291015625,0.2587890625,0.2373046875,0.2333984375,0.248046875,0.2705078125,0.28515625,0.28125,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5712890625,0.5830078125,0.6357421875,0.6923828125,0.7197265625,0.697265625,0.634765625,0.5595703125,0.4794921875,0.421875,0.408203125,0.435546875,0.474609375,0.5,0.5107421875,0.4931640625,0.447265625,0.3916015625,0.3525390625,0.34375,0.3642578125,0.3857421875,0.3896484375,0.375,0.3525390625,0.337890625,0.341796875,0.3642578125,0.384765625,0.3798828125,0.34765625,0.30078125,0.2607421875,0.2470703125,0.2587890625,0.28515625,0.341796875,0.4326171875,0.541015625,0.6396484375,0.7060546875,0.740234375,0.7470703125,0.6787109375,0.546875,0.4052734375,0.3154296875,0.306640625,0.3642578125,0.4365234375,0.5009765625,0.5380859375,0.53515625,0.505859375,0.4765625,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.267578125,0.3115234375,0.38671875,0.4658203125,0.5224609375,0.5419921875,0.5302734375,0.51953125,0.541015625,0.587890625,0.634765625,0.6572265625,0.64453125,0.6044921875,0.5634765625,0.5458984375,0.5576171875,0.5927734375,0.6298828125,0.646484375,0.634765625,0.6044921875,0.529296875,0.421875,0.3193359375,0.2548828125,0.2392578125,0.2587890625,0.2861328125,0.3154296875,0.34765625,0.380859375,0.4130859375,0.4423828125,0.46875,0.486328125,0.470703125,0.4248046875,0.375,0.3466796875,0.35546875,0.39453125,0.44921875,0.53515625,0.6240234375,0.6796875,0.6845703125,0.650390625,0.6044921875,0.55078125,0.48046875,0.4248046875,0.421875,0.4755859375,0.55859375,0.634765625,0.7041015625,0.7587890625,0.78125,0.7705078125,0.744140625,0.7294921875,0.740234375,0.7529296875,0.736328125,0.6767578125,0.5849609375,0.490234375,0.423828125,0.39453125,0.37890625,0.3828125,0.4189453125,0.482421875,0.5546875,0.6083984375,0.634765625,0.6572265625,0.6865234375,0.708984375,0.712890625,0.693359375,0.6630859375,0.634765625,0.6064453125,0.5703125,0.5244140625,0.474609375,0.4287109375,0.392578125,0.3642578125,0.3447265625,0.359375,0.4248046875,0.52734375,0.634765625,0.708984375,0.740234375,0.7431640625,0.68359375,0.560546875,0.4140625,0.296875,0.2470703125,0.2587890625,0.294921875,0.3623046875,0.447265625,0.5185546875,0.5546875,0.552734375,0.5302734375,0.5146484375,0.5361328125,0.5849609375,0.626953125,0.6328125,0.595703125,0.5302734375,0.4599609375,0.40234375,0.3720703125,0.3701171875,0.380859375,0.3837890625,0.3642578125,0.3544921875,0.41015625,0.5185546875,0.6318359375,0.69921875,0.6943359375,0.634765625,0.5615234375,0.4873046875,0.427734375,0.39453125,0.3837890625,0.37890625,0.3642578125,0.3544921875,0.3857421875,0.466796875,0.57421875,0.671875,0.728515625,0.740234375,0.7255859375,0.6572265625,0.546875,0.435546875,0.3671875,0.3583984375,0.39453125,0.4287109375,0.419921875,0.375,0.3251953125,0.3046875,0.3310546875,0.39453125,0.466796875,0.53125,0.5576171875,0.4580078125,0.4052734375,0.353515625,0.3046875,0.2587890625,0.2119140625,0.1689453125,0.15625,0.1923828125,0.2646484375,0.3408203125,0.39453125,0.443359375,0.5029296875,0.568359375,0.6298828125,0.677734375,0.712890625,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.2939453125,0.3564453125,0.4365234375,0.5048828125,0.5419921875,0.5458984375,0.5302734375,0.517578125,0.5322265625,0.5712890625,0.6181640625,0.6513671875,0.6552734375,0.634765625,0.6044921875,0.5615234375,0.5185546875,0.494140625,0.494140625,0.509765625,0.5302734375,0.5361328125,0.490234375,0.3994140625,0.30078125,0.234375,0.2236328125,0.2587890625,0.3115234375,0.384765625,0.4609375,0.513671875,0.529296875,0.5185546875,0.5,0.4755859375,0.4326171875,0.375,0.3193359375,0.2802734375,0.26171875,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.4375,0.3916015625,0.3525390625,0.3447265625,0.373046875,0.421875,0.46875,0.5166015625,0.5654296875,0.59375,0.5849609375,0.546875,0.5009765625,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.7724609375,0.8173828125,0.8447265625,0.828125,0.765625,0.681640625,0.6044921875,0.537109375,0.484375,0.447265625,0.416015625,0.3798828125,0.3271484375,0.2587890625,0.1826171875,0.1044921875,0.056640625,0.068359375,0.1298828125,0.205078125,0.2587890625,0.318359375,0.4248046875,0.560546875,0.6796875,0.748046875,0.7607421875,0.740234375,0.7060546875,0.646484375,0.57421875,0.513671875,0.4833984375,0.4833984375,0.5,0.517578125,0.5322265625,0.546875,0.5634765625,0.583984375,0.6083984375,0.634765625,0.64453125,0.5888671875,0.48046875,0.3671875,0.2998046875,0.3046875,0.3642578125,0.4267578125,0.4541015625,0.4443359375,0.4189453125,0.4091796875,0.4365234375,0.5,0.55859375,0.5654296875,0.5185546875,0.4501953125,0.4033203125,0.41015625,0.46875,0.54296875,0.6103515625,0.6435546875,0.6240234375,0.5654296875,0.5048828125,0.46875,0.4501953125,0.4638671875,0.5185546875,0.6015625,0.681640625,0.73046875,0.740234375,0.7216796875,0.6337890625,0.4970703125,0.3671875,0.2958984375,0.302734375,0.3642578125,0.4267578125,0.4501953125,0.4326171875,0.400390625,0.3837890625,0.4072265625,0.46875,0.5400390625,0.6005859375,0.626953125,0.6123046875,0.572265625,0.5380859375,0.5302734375,0.53125,0.541015625,0.568359375,0.61328125,0.6650390625,0.7099609375,0.740234375,0.7529296875,0.7138671875,0.634765625,0.5576171875,0.521484375,0.5419921875,0.6044921875,0.6650390625,0.6748046875,0.6240234375,0.5380859375,0.462890625,0.4384765625,0.46875,0.5146484375,0.5556640625,0.5771484375,0.57421875,0.5537109375,0.53515625,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.470703125,0.4716796875,0.4580078125,0.421875,0.3662109375,0.3076171875,0.2587890625,0.220703125,0.21484375,0.240234375,0.2783203125,0.3037109375,0.296875,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6181640625,0.6376953125,0.6787109375,0.712890625,0.7119140625,0.671875,0.6044921875,0.53515625,0.48046875,0.4580078125,0.46875,0.4951171875,0.5107421875,0.5,0.47265625,0.4189453125,0.3583984375,0.3193359375,0.318359375,0.3505859375,0.39453125,0.4326171875,0.439453125,0.4140625,0.375,0.349609375,0.3564453125,0.39453125,0.4375,0.4658203125,0.4580078125,0.4111328125,0.34375,0.287109375,0.2587890625,0.2451171875,0.263671875,0.333984375,0.44921875,0.5791015625,0.6826171875,0.740234375,0.7666015625,0.7158203125,0.59375,0.4521484375,0.3544921875,0.3388671875,0.39453125,0.4677734375,0.5361328125,0.580078125,0.5849609375,0.5615234375,0.537109375,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2607421875,0.275390625,0.30859375,0.3564453125,0.40625,0.4462890625,0.46875,0.4951171875,0.544921875,0.6044921875,0.6513671875,0.669921875,0.6591796875,0.634765625,0.6064453125,0.572265625,0.5458984375,0.541015625,0.5576171875,0.5830078125,0.6044921875,0.6083984375,0.5546875,0.447265625,0.328125,0.2451171875,0.2255859375,0.2587890625,0.302734375,0.3427734375,0.3779296875,0.4111328125,0.4462890625,0.4853515625,0.5302734375,0.56640625,0.564453125,0.515625,0.44140625,0.3759765625,0.3486328125,0.3642578125,0.3994140625,0.466796875,0.5517578125,0.6240234375,0.66015625,0.658203125,0.634765625,0.5986328125,0.5341796875,0.46875,0.44140625,0.4677734375,0.5322265625,0.6044921875,0.6796875,0.759765625,0.8173828125,0.8310546875,0.8046875,0.765625,0.740234375,0.7099609375,0.6396484375,0.5380859375,0.4384765625,0.3720703125,0.3515625,0.3642578125,0.390625,0.4443359375,0.5166015625,0.580078125,0.6162109375,0.6201171875,0.6044921875,0.5927734375,0.60546875,0.6357421875,0.662109375,0.66796875,0.646484375,0.6044921875,0.5615234375,0.529296875,0.5078125,0.4912109375,0.4697265625,0.4375,0.39453125,0.361328125,0.380859375,0.4638671875,0.58203125,0.689453125,0.744140625,0.740234375,0.7041015625,0.60546875,0.4609375,0.322265625,0.2373046875,0.2236328125,0.2587890625,0.314453125,0.3994140625,0.48828125,0.5439453125,0.548828125,0.5146484375,0.46875,0.4345703125,0.443359375,0.48828125,0.5380859375,0.55859375,0.5322265625,0.46875,0.404296875,0.369140625,0.373046875,0.40234375,0.4306640625,0.4306640625,0.39453125,0.365234375,0.3994140625,0.4912109375,0.5966796875,0.6640625,0.6630859375,0.6044921875,0.52734375,0.4384765625,0.3642578125,0.3310546875,0.3408203125,0.37109375,0.39453125,0.4208984375,0.4765625,0.5576171875,0.640625,0.7041015625,0.734375,0.740234375,0.7275390625,0.6669921875,0.5634765625,0.4521484375,0.373046875,0.3466796875,0.3642578125,0.3798828125,0.357421875,0.30859375,0.267578125,0.2607421875,0.2978515625,0.3642578125,0.4404296875,0.5234375,0.5771484375,0.4423828125,0.4345703125,0.4189453125,0.3818359375,0.3251953125,0.2607421875,0.1943359375,0.1650390625,0.197265625,0.28125,0.376953125,0.4482421875,0.51171875,0.5771484375,0.6318359375,0.6611328125,0.6669921875,0.6669921875,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.3486328125,0.4150390625,0.509765625,0.591796875,0.62890625,0.615234375,0.5703125,0.5234375,0.498046875,0.5078125,0.5478515625,0.5947265625,0.623046875,0.6220703125,0.603515625,0.5595703125,0.5087890625,0.4775390625,0.4833984375,0.5205078125,0.5703125,0.60546875,0.5771484375,0.486328125,0.3740234375,0.29296875,0.2783203125,0.3251953125,0.396484375,0.4921875,0.580078125,0.6220703125,0.60546875,0.5537109375,0.5,0.4462890625,0.3876953125,0.3388671875,0.314453125,0.314453125,0.322265625,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.41015625,0.3671875,0.3193359375,0.2978515625,0.3173828125,0.3681640625,0.4287109375,0.490234375,0.541015625,0.560546875,0.5380859375,0.4912109375,0.447265625,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.6904296875,0.724609375,0.7529296875,0.7470703125,0.6982421875,0.625,0.55078125,0.486328125,0.4482421875,0.4375,0.439453125,0.4287109375,0.390625,0.3251953125,0.2470703125,0.1591796875,0.1005859375,0.1044921875,0.169921875,0.255859375,0.3251953125,0.39453125,0.48828125,0.5849609375,0.6552734375,0.6845703125,0.68359375,0.673828125,0.65234375,0.59375,0.5146484375,0.4521484375,0.4306640625,0.4521484375,0.5,0.55078125,0.5966796875,0.6259765625,0.6318359375,0.623046875,0.6162109375,0.6220703125,0.6162109375,0.552734375,0.4462890625,0.3466796875,0.2978515625,0.314453125,0.376953125,0.4404296875,0.4658203125,0.4521484375,0.423828125,0.4111328125,0.4365234375,0.5,0.5576171875,0.5595703125,0.50390625,0.4248046875,0.369140625,0.37109375,0.4287109375,0.5,0.55859375,0.580078125,0.5537109375,0.498046875,0.44921875,0.4287109375,0.4248046875,0.4462890625,0.4990234375,0.568359375,0.630859375,0.666015625,0.673828125,0.65625,0.5791015625,0.458984375,0.3505859375,0.2978515625,0.314453125,0.376953125,0.4384765625,0.455078125,0.4267578125,0.3798828125,0.3505859375,0.3681640625,0.4287109375,0.501953125,0.5712890625,0.6162109375,0.623046875,0.6015625,0.5771484375,0.5703125,0.5712890625,0.5771484375,0.5927734375,0.6162109375,0.640625,0.6611328125,0.673828125,0.6708984375,0.6220703125,0.54296875,0.4755859375,0.4541015625,0.4853515625,0.55078125,0.609375,0.611328125,0.5517578125,0.462890625,0.3935546875,0.3818359375,0.4287109375,0.4921875,0.5537109375,0.5966796875,0.6083984375,0.59375,0.5751953125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.435546875,0.4580078125,0.48046875,0.4794921875,0.4453125,0.3876953125,0.3251953125,0.2744140625,0.265625,0.2998046875,0.3515625,0.3857421875,0.376953125,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.6201171875,0.6455078125,0.681640625,0.697265625,0.67578125,0.62109375,0.55078125,0.4873046875,0.4580078125,0.4716796875,0.509765625,0.5419921875,0.5400390625,0.5,0.4404296875,0.361328125,0.2939453125,0.2763671875,0.314453125,0.3818359375,0.4482421875,0.4990234375,0.5078125,0.4736328125,0.421875,0.3876953125,0.396484375,0.4482421875,0.51171875,0.5712890625,0.59375,0.556640625,0.474609375,0.38671875,0.3251953125,0.275390625,0.2451171875,0.267578125,0.3544921875,0.4814453125,0.5986328125,0.673828125,0.7177734375,0.693359375,0.6015625,0.4853515625,0.40234375,0.3916015625,0.4482421875,0.5205078125,0.587890625,0.6279296875,0.6298828125,0.6044921875,0.5771484375,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.3212890625,0.3037109375,0.2890625,0.294921875,0.3271484375,0.376953125,0.4287109375,0.484375,0.55078125,0.611328125,0.6455078125,0.6484375,0.634765625,0.6220703125,0.6025390625,0.556640625,0.501953125,0.4658203125,0.466796875,0.501953125,0.55078125,0.5869140625,0.5615234375,0.474609375,0.3671875,0.2900390625,0.2783203125,0.3251953125,0.3828125,0.4208984375,0.44140625,0.4541015625,0.474609375,0.513671875,0.5703125,0.6240234375,0.6396484375,0.599609375,0.5185546875,0.431640625,0.3798828125,0.376953125,0.39453125,0.4375,0.501953125,0.56640625,0.611328125,0.6279296875,0.6220703125,0.599609375,0.5419921875,0.470703125,0.4267578125,0.431640625,0.4814453125,0.55078125,0.630859375,0.7275390625,0.806640625,0.830078125,0.7939453125,0.73046875,0.673828125,0.609375,0.5068359375,0.3935546875,0.3154296875,0.296875,0.3271484375,0.376953125,0.4384765625,0.5263671875,0.6123046875,0.658203125,0.6494140625,0.603515625,0.55078125,0.509765625,0.5087890625,0.544921875,0.5927734375,0.619140625,0.603515625,0.55078125,0.498046875,0.4755859375,0.4873046875,0.51171875,0.5234375,0.5009765625,0.4482421875,0.400390625,0.4130859375,0.4892578125,0.5966796875,0.68359375,0.708984375,0.673828125,0.607421875,0.4921875,0.359375,0.2626953125,0.234375,0.2666015625,0.3251953125,0.396484375,0.4892578125,0.5693359375,0.5966796875,0.5625,0.4951171875,0.4287109375,0.37890625,0.3759765625,0.41796875,0.474609375,0.5068359375,0.490234375,0.4287109375,0.3681640625,0.353515625,0.390625,0.451171875,0.498046875,0.4970703125,0.4482421875,0.400390625,0.41015625,0.4755859375,0.55859375,0.6142578125,0.6103515625,0.55078125,0.4716796875,0.376953125,0.302734375,0.2841796875,0.32421875,0.390625,0.4482421875,0.5029296875,0.5673828125,0.626953125,0.6650390625,0.677734375,0.6748046875,0.673828125,0.6650390625,0.623046875,0.548828125,0.466796875,0.40234375,0.3740234375,0.376953125,0.3779296875,0.34375,0.2919921875,0.2568359375,0.2626953125,0.30859375,0.376953125,0.45703125,0.5537109375,0.62890625,0.447265625,0.482421875,0.501953125,0.48046875,0.419921875,0.34375,0.259765625,0.2109375,0.228515625,0.3095703125,0.41015625,0.4892578125,0.5595703125,0.62109375,0.65234375,0.6455078125,0.6142578125,0.5849609375,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4345703125,0.4921875,0.57421875,0.6396484375,0.6572265625,0.623046875,0.5595703125,0.4931640625,0.4453125,0.4365234375,0.46875,0.521484375,0.5615234375,0.5693359375,0.5576171875,0.515625,0.4619140625,0.431640625,0.443359375,0.4931640625,0.5595703125,0.61328125,0.60546875,0.5341796875,0.439453125,0.3701171875,0.3642578125,0.419921875,0.4990234375,0.599609375,0.681640625,0.7021484375,0.6552734375,0.57421875,0.5,0.4306640625,0.37109375,0.3408203125,0.3486328125,0.3818359375,0.412109375,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.4287109375,0.38671875,0.333984375,0.3046875,0.3193359375,0.37109375,0.439453125,0.5078125,0.560546875,0.57421875,0.5458984375,0.4931640625,0.451171875,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5888671875,0.6240234375,0.662109375,0.6728515625,0.642578125,0.5810546875,0.509765625,0.447265625,0.42578125,0.4462890625,0.4833984375,0.5029296875,0.4814453125,0.419921875,0.33984375,0.2470703125,0.181640625,0.1826171875,0.2490234375,0.341796875,0.419921875,0.4921875,0.5634765625,0.61328125,0.6259765625,0.609375,0.5869140625,0.5791015625,0.56640625,0.515625,0.4462890625,0.3974609375,0.3935546875,0.4345703125,0.5,0.5673828125,0.625,0.65234375,0.640625,0.60546875,0.5751953125,0.5693359375,0.5576171875,0.5,0.416015625,0.34765625,0.3291015625,0.36328125,0.4296875,0.4912109375,0.5107421875,0.4853515625,0.443359375,0.4189453125,0.4384765625,0.5,0.5576171875,0.5615234375,0.5078125,0.431640625,0.3779296875,0.380859375,0.439453125,0.509765625,0.5634765625,0.5771484375,0.5478515625,0.494140625,0.451171875,0.439453125,0.44140625,0.45703125,0.48828125,0.525390625,0.5576171875,0.576171875,0.5791015625,0.5654296875,0.505859375,0.4189453125,0.349609375,0.3291015625,0.36328125,0.4296875,0.490234375,0.501953125,0.4638671875,0.4052734375,0.3681640625,0.3798828125,0.439453125,0.5126953125,0.5791015625,0.619140625,0.6201171875,0.59375,0.56640625,0.5595703125,0.5595703125,0.560546875,0.564453125,0.568359375,0.5732421875,0.5771484375,0.5791015625,0.5693359375,0.5205078125,0.451171875,0.40234375,0.3984375,0.44140625,0.509765625,0.568359375,0.5712890625,0.5166015625,0.4384765625,0.3818359375,0.3828125,0.439453125,0.5107421875,0.576171875,0.6162109375,0.6181640625,0.5927734375,0.56640625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.44921875,0.4873046875,0.53515625,0.5595703125,0.5419921875,0.48828125,0.419921875,0.361328125,0.3505859375,0.3896484375,0.44921875,0.48828125,0.478515625,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.576171875,0.609375,0.6494140625,0.6640625,0.638671875,0.580078125,0.509765625,0.44921875,0.435546875,0.470703125,0.52734375,0.5654296875,0.556640625,0.5,0.4228515625,0.3310546875,0.263671875,0.2607421875,0.322265625,0.412109375,0.4892578125,0.5478515625,0.55859375,0.51953125,0.4599609375,0.4208984375,0.4306640625,0.4892578125,0.5654296875,0.6484375,0.6962890625,0.677734375,0.5966796875,0.498046875,0.419921875,0.34765625,0.275390625,0.2470703125,0.2880859375,0.3876953125,0.498046875,0.5791015625,0.6357421875,0.6337890625,0.5732421875,0.490234375,0.4306640625,0.431640625,0.4892578125,0.560546875,0.6220703125,0.650390625,0.638671875,0.6005859375,0.5673828125,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.4111328125,0.373046875,0.3271484375,0.3037109375,0.3203125,0.373046875,0.439453125,0.509765625,0.576171875,0.619140625,0.625,0.6025390625,0.5771484375,0.5693359375,0.556640625,0.5087890625,0.4443359375,0.3994140625,0.400390625,0.4443359375,0.509765625,0.564453125,0.5625,0.5029296875,0.4208984375,0.3623046875,0.36328125,0.419921875,0.4814453125,0.5087890625,0.5009765625,0.478515625,0.470703125,0.498046875,0.5595703125,0.6240234375,0.6591796875,0.6416015625,0.5771484375,0.49609375,0.4404296875,0.4296875,0.4345703125,0.4541015625,0.486328125,0.5234375,0.552734375,0.568359375,0.5693359375,0.556640625,0.505859375,0.439453125,0.3935546875,0.39453125,0.4404296875,0.509765625,0.5908203125,0.69140625,0.7705078125,0.7880859375,0.7373046875,0.654296875,0.5791015625,0.5,0.3916015625,0.294921875,0.255859375,0.28515625,0.357421875,0.4296875,0.5078125,0.607421875,0.6884765625,0.7099609375,0.6640625,0.583984375,0.509765625,0.453125,0.443359375,0.4833984375,0.5419921875,0.5791015625,0.568359375,0.509765625,0.4501953125,0.4375,0.47265625,0.5263671875,0.5615234375,0.548828125,0.4892578125,0.4326171875,0.4326171875,0.490234375,0.572265625,0.6318359375,0.6337890625,0.5791015625,0.4990234375,0.3896484375,0.2890625,0.24609375,0.2744140625,0.345703125,0.419921875,0.498046875,0.5927734375,0.662109375,0.6669921875,0.6064453125,0.517578125,0.439453125,0.3818359375,0.3720703125,0.412109375,0.47265625,0.51171875,0.5,0.439453125,0.380859375,0.375,0.4248046875,0.498046875,0.5498046875,0.546875,0.4892578125,0.431640625,0.4248046875,0.4697265625,0.53515625,0.578125,0.5693359375,0.509765625,0.4296875,0.3349609375,0.2666015625,0.2626953125,0.32421875,0.4130859375,0.4892578125,0.55859375,0.619140625,0.6513671875,0.646484375,0.615234375,0.5869140625,0.5791015625,0.5751953125,0.556640625,0.521484375,0.4814453125,0.4482421875,0.431640625,0.4296875,0.421875,0.380859375,0.328125,0.296875,0.30859375,0.3603515625,0.4296875,0.5107421875,0.611328125,0.689453125,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.49609375,0.578125,0.63671875,0.6357421875,0.5791015625,0.4990234375,0.3984375,0.31640625,0.296875,0.3466796875,0.431640625,0.509765625,0.5771484375,0.619140625,0.6123046875,0.5576171875,0.484375,0.431640625,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.55859375,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.578125,0.5791015625,0.5859375,0.6103515625,0.6328125,0.626953125,0.58203125,0.5126953125,0.439453125,0.369140625,0.3134765625,0.294921875,0.3193359375,0.3681640625,0.408203125,0.419921875,0.412109375,0.3720703125,0.3203125,0.2900390625,0.3017578125,0.3515625,0.419921875,0.4814453125,0.51171875,0.5068359375,0.4873046875,0.4814453125,0.5087890625,0.5693359375,0.64453125,0.7275390625,0.779296875,0.763671875,0.6865234375,0.5888671875,0.509765625,0.443359375,0.4013671875,0.4052734375,0.4541015625,0.521484375,0.5693359375,0.5791015625,0.5771484375,0.57421875,0.5703125,0.5673828125,0.56640625,0.5673828125,0.5693359375,0.560546875,0.5185546875,0.4638671875,0.4296875,0.439453125,0.490234375,0.5595703125,0.62890625,0.6826171875,0.697265625,0.66796875,0.6142578125,0.5712890625,0.5595703125,0.5576171875,0.556640625,0.556640625,0.556640625,0.55859375,0.55859375,0.5595703125,0.5556640625,0.5390625,0.5087890625,0.474609375,0.4453125,0.4306640625,0.4296875,0.4423828125,0.4931640625,0.5595703125,0.60546875,0.6044921875,0.55859375,0.4892578125,0.431640625,0.4306640625,0.48828125,0.5703125,0.6279296875,0.626953125,0.5693359375,0.490234375,0.3984375,0.3349609375,0.337890625,0.4072265625,0.5009765625,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.412109375,0.380859375,0.345703125,0.3349609375,0.36328125,0.421875,0.4892578125,0.5546875,0.5947265625,0.5908203125,0.54296875,0.4765625,0.4296875,0.419921875,0.4150390625,0.39453125,0.3779296875,0.3876953125,0.4326171875,0.5,0.5693359375,0.6240234375,0.6240234375,0.56640625,0.486328125,0.4306640625,0.4326171875,0.4892578125,0.5498046875,0.5712890625,0.5517578125,0.5166015625,0.4970703125,0.5185546875,0.5791015625,0.646484375,0.6943359375,0.7021484375,0.666015625,0.609375,0.568359375,0.5595703125,0.5576171875,0.5439453125,0.515625,0.4833984375,0.455078125,0.44140625,0.439453125,0.4345703125,0.4091796875,0.3857421875,0.388671875,0.4296875,0.4970703125,0.5693359375,0.62890625,0.638671875,0.595703125,0.5322265625,0.490234375,0.5,0.5595703125,0.6259765625,0.662109375,0.6455078125,0.5791015625,0.494140625,0.4345703125,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.4111328125,0.3779296875,0.33984375,0.328125,0.357421875,0.41796875,0.4892578125,0.55078125,0.5712890625,0.548828125,0.509765625,0.4873046875,0.5078125,0.5693359375,0.6357421875,0.6728515625,0.6572265625,0.5927734375,0.509765625,0.453125,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.419921875,0.4208984375,0.421875,0.4228515625,0.4228515625,0.421875,0.419921875,0.421875,0.4375,0.46875,0.5087890625,0.5439453125,0.5634765625,0.5693359375,0.5810546875,0.6240234375,0.6787109375,0.7099609375,0.6982421875,0.6474609375,0.5791015625,0.5205078125,0.509765625,0.548828125,0.60546875,0.642578125,0.6298828125,0.5693359375,0.49609375,0.4267578125,0.380859375,0.373046875,0.392578125,0.4150390625,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.451171875,0.4404296875,0.478515625,0.5361328125,0.572265625,0.5595703125,0.5,0.419921875,0.32421875,0.2548828125,0.2529296875,0.3173828125,0.41015625,0.4892578125,0.5498046875,0.5615234375,0.5234375,0.4658203125,0.427734375,0.439453125,0.5,0.580078125,0.6806640625,0.7607421875,0.7783203125,0.7275390625,0.64453125,0.5693359375,0.4892578125,0.380859375,0.283203125,0.2451171875,0.2783203125,0.353515625,0.4296875,0.4912109375,0.51171875,0.4892578125,0.4501953125,0.427734375,0.4482421875,0.509765625,0.5771484375,0.619140625,0.6123046875,0.5576171875,0.484375,0.431640625,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.5693359375,0.5302734375,0.4794921875,0.4501953125,0.462890625,0.5126953125,0.5791015625,0.642578125,0.67578125,0.6572265625,0.5908203125,0.5087890625,0.4521484375,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5517578125,0.57421875,0.5537109375,0.515625,0.4931640625,0.5107421875,0.5693359375,0.623046875,0.6162109375,0.5478515625,0.455078125,0.388671875,0.3837890625,0.439453125,0.5107421875,0.5791015625,0.6220703125,0.626953125,0.603515625,0.5771484375,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.5849609375,0.6650390625,0.708984375,0.6845703125,0.599609375,0.498046875,0.419921875,0.3466796875,0.271484375,0.2373046875,0.2724609375,0.3671875,0.4765625,0.5595703125,0.63671875,0.7216796875,0.771484375,0.7529296875,0.6708984375,0.5693359375,0.4892578125,0.431640625,0.421875,0.4619140625,0.5224609375,0.5615234375,0.5498046875,0.4892578125,0.4296875,0.4208984375,0.4638671875,0.529296875,0.57421875,0.5673828125,0.509765625,0.44921875,0.4306640625,0.4541015625,0.4951171875,0.5185546875,0.5,0.439453125,0.3642578125,0.2861328125,0.24609375,0.27734375,0.369140625,0.4765625,0.5595703125,0.638671875,0.7333984375,0.7998046875,0.7998046875,0.7333984375,0.638671875,0.5595703125,0.4990234375,0.486328125,0.5244140625,0.5830078125,0.6240234375,0.6162109375,0.5595703125,0.5009765625,0.486328125,0.5146484375,0.5595703125,0.5869140625,0.5693359375,0.509765625,0.451171875,0.4384765625,0.474609375,0.529296875,0.564453125,0.5498046875,0.4892578125,0.41015625,0.3193359375,0.2578125,0.26171875,0.330078125,0.4228515625,0.5,0.564453125,0.6083984375,0.609375,0.5654296875,0.5,0.4521484375,0.439453125,0.44140625,0.45703125,0.486328125,0.5224609375,0.5517578125,0.5673828125,0.5693359375,0.55859375,0.517578125,0.4658203125,0.4375,0.451171875,0.5029296875,0.5693359375,0.64453125,0.7275390625,0.7783203125,0.5244140625,0.6318359375,0.708984375,0.720703125,0.673828125,0.6005859375,0.5,0.4072265625,0.37109375,0.40234375,0.4755859375,0.55078125,0.615234375,0.640625,0.603515625,0.513671875,0.41015625,0.3408203125,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.5625,0.5673828125,0.5888671875,0.6201171875,0.6513671875,0.669921875,0.673828125,0.677734375,0.689453125,0.6884765625,0.654296875,0.5869140625,0.5048828125,0.4287109375,0.35546875,0.2841796875,0.240234375,0.2392578125,0.271484375,0.3076171875,0.3251953125,0.3271484375,0.298828125,0.2548828125,0.224609375,0.228515625,0.267578125,0.3251953125,0.384765625,0.4365234375,0.4755859375,0.5068359375,0.5361328125,0.57421875,0.6220703125,0.677734375,0.7421875,0.7822265625,0.767578125,0.7021484375,0.619140625,0.55078125,0.49609375,0.4716796875,0.4951171875,0.55859375,0.62890625,0.671875,0.673828125,0.66015625,0.640625,0.619140625,0.60546875,0.6044921875,0.611328125,0.6220703125,0.62109375,0.580078125,0.517578125,0.46875,0.462890625,0.5029296875,0.5703125,0.6416015625,0.69921875,0.720703125,0.6943359375,0.6396484375,0.58984375,0.5703125,0.5595703125,0.552734375,0.55078125,0.5546875,0.5625,0.568359375,0.5703125,0.564453125,0.5341796875,0.484375,0.4287109375,0.3876953125,0.3720703125,0.376953125,0.3994140625,0.45703125,0.5283203125,0.572265625,0.5673828125,0.517578125,0.4482421875,0.3916015625,0.40234375,0.4814453125,0.587890625,0.6669921875,0.677734375,0.6220703125,0.544921875,0.462890625,0.4150390625,0.43359375,0.509765625,0.6025390625,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.3212890625,0.306640625,0.2958984375,0.306640625,0.34375,0.3955078125,0.4482421875,0.4931640625,0.509765625,0.484375,0.42578125,0.3623046875,0.3251953125,0.3251953125,0.3359375,0.349609375,0.3798828125,0.431640625,0.4990234375,0.56640625,0.6220703125,0.6591796875,0.6396484375,0.564453125,0.470703125,0.4052734375,0.3994140625,0.4482421875,0.50390625,0.541015625,0.556640625,0.564453125,0.580078125,0.6171875,0.673828125,0.7294921875,0.755859375,0.736328125,0.6787109375,0.611328125,0.5712890625,0.5703125,0.5751953125,0.5595703125,0.5224609375,0.4765625,0.439453125,0.423828125,0.4287109375,0.43359375,0.4228515625,0.4140625,0.4306640625,0.4794921875,0.548828125,0.6220703125,0.6806640625,0.6845703125,0.6328125,0.55859375,0.5068359375,0.51171875,0.5703125,0.6357421875,0.6640625,0.630859375,0.5400390625,0.4306640625,0.3515625,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.318359375,0.2919921875,0.265625,0.267578125,0.3076171875,0.375,0.4482421875,0.51171875,0.5439453125,0.5419921875,0.52734375,0.5263671875,0.5576171875,0.6220703125,0.6865234375,0.7158203125,0.6865234375,0.60546875,0.5087890625,0.443359375,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.3271484375,0.3330078125,0.3408203125,0.345703125,0.34375,0.3359375,0.3251953125,0.3212890625,0.34375,0.3994140625,0.4775390625,0.5537109375,0.603515625,0.6220703125,0.6416015625,0.69140625,0.75,0.78515625,0.7783203125,0.7333984375,0.673828125,0.6220703125,0.61328125,0.6435546875,0.6865234375,0.70703125,0.6845703125,0.6220703125,0.546875,0.4638671875,0.392578125,0.3486328125,0.3349609375,0.3330078125,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.5,0.4912109375,0.521484375,0.564453125,0.5849609375,0.5615234375,0.5,0.4189453125,0.318359375,0.240234375,0.2265625,0.28125,0.369140625,0.4482421875,0.5087890625,0.525390625,0.4970703125,0.4501953125,0.421875,0.4384765625,0.5,0.5791015625,0.67578125,0.7548828125,0.7783203125,0.7421875,0.6787109375,0.6220703125,0.556640625,0.4482421875,0.330078125,0.2568359375,0.25390625,0.306640625,0.376953125,0.44140625,0.47265625,0.4716796875,0.45703125,0.455078125,0.4873046875,0.55078125,0.615234375,0.640625,0.603515625,0.513671875,0.41015625,0.3408203125,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.666015625,0.63671875,0.5986328125,0.5771484375,0.5869140625,0.6240234375,0.673828125,0.716796875,0.724609375,0.6796875,0.59375,0.5009765625,0.44140625,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.5146484375,0.55859375,0.572265625,0.56640625,0.5615234375,0.578125,0.6220703125,0.658203125,0.63671875,0.5576171875,0.458984375,0.388671875,0.380859375,0.4287109375,0.494140625,0.5693359375,0.630859375,0.66015625,0.6552734375,0.6357421875,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.6123046875,0.66015625,0.6591796875,0.5947265625,0.4892578125,0.388671875,0.3251953125,0.271484375,0.22265625,0.2138671875,0.26953125,0.3759765625,0.4873046875,0.5703125,0.6455078125,0.71875,0.75,0.7138671875,0.6220703125,0.5205078125,0.4482421875,0.3984375,0.39453125,0.4375,0.4931640625,0.525390625,0.5087890625,0.4482421875,0.388671875,0.384765625,0.4404296875,0.5234375,0.5888671875,0.5986328125,0.55078125,0.4970703125,0.4736328125,0.48046875,0.5,0.5068359375,0.4833984375,0.4287109375,0.3623046875,0.29296875,0.259765625,0.29296875,0.3828125,0.48828125,0.5703125,0.6494140625,0.744140625,0.810546875,0.810546875,0.744140625,0.6494140625,0.5703125,0.5078125,0.484375,0.5087890625,0.5615234375,0.60546875,0.609375,0.5703125,0.5283203125,0.5244140625,0.556640625,0.599609375,0.6220703125,0.6044921875,0.55078125,0.4990234375,0.4833984375,0.501953125,0.53125,0.541015625,0.51171875,0.4482421875,0.3720703125,0.296875,0.2568359375,0.279296875,0.353515625,0.4384765625,0.5,0.548828125,0.583984375,0.5849609375,0.548828125,0.4931640625,0.4482421875,0.4287109375,0.4248046875,0.4462890625,0.4951171875,0.5556640625,0.6044921875,0.6259765625,0.6220703125,0.6044921875,0.5673828125,0.52734375,0.509765625,0.52734375,0.5703125,0.6220703125,0.6787109375,0.7421875,0.7783203125,0.5517578125,0.6708984375,0.75390625,0.7734375,0.740234375,0.6826171875,0.591796875,0.4990234375,0.4521484375,0.4697265625,0.53125,0.6044921875,0.666015625,0.6767578125,0.61328125,0.4912109375,0.3603515625,0.27734375,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.5087890625,0.515625,0.5576171875,0.6240234375,0.6904296875,0.7314453125,0.740234375,0.744140625,0.7529296875,0.7451171875,0.7041015625,0.630859375,0.544921875,0.46875,0.390625,0.2978515625,0.2177734375,0.181640625,0.1923828125,0.228515625,0.2587890625,0.2783203125,0.271484375,0.2421875,0.2119140625,0.201171875,0.21875,0.2587890625,0.3095703125,0.376953125,0.455078125,0.52734375,0.5810546875,0.6142578125,0.634765625,0.6591796875,0.6953125,0.7255859375,0.7294921875,0.7001953125,0.65234375,0.6044921875,0.5673828125,0.56640625,0.607421875,0.673828125,0.732421875,0.755859375,0.740234375,0.7080078125,0.6611328125,0.61328125,0.5849609375,0.5859375,0.6083984375,0.634765625,0.6484375,0.61328125,0.541015625,0.4716796875,0.44140625,0.4658203125,0.5302734375,0.603515625,0.6708984375,0.7041015625,0.6845703125,0.626953125,0.5654296875,0.5302734375,0.50390625,0.4853515625,0.48046875,0.4912109375,0.5107421875,0.5263671875,0.5302734375,0.5224609375,0.4873046875,0.4306640625,0.375,0.3427734375,0.341796875,0.3642578125,0.400390625,0.46484375,0.5302734375,0.5576171875,0.53125,0.466796875,0.39453125,0.33984375,0.3583984375,0.4521484375,0.5771484375,0.6708984375,0.689453125,0.634765625,0.5615234375,0.4951171875,0.4716796875,0.5107421875,0.595703125,0.68359375,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.259765625,0.2646484375,0.28125,0.30859375,0.3427734375,0.373046875,0.39453125,0.40625,0.3876953125,0.341796875,0.287109375,0.2470703125,0.2392578125,0.2587890625,0.291015625,0.3447265625,0.4189453125,0.4990234375,0.5673828125,0.611328125,0.634765625,0.6416015625,0.599609375,0.515625,0.4248046875,0.365234375,0.3583984375,0.39453125,0.4404296875,0.4892578125,0.541015625,0.59375,0.6455078125,0.6943359375,0.740234375,0.775390625,0.767578125,0.7099609375,0.6240234375,0.5478515625,0.515625,0.5302734375,0.55078125,0.546875,0.5185546875,0.48046875,0.4521484375,0.4482421875,0.46875,0.48828125,0.486328125,0.474609375,0.4775390625,0.5078125,0.5654296875,0.634765625,0.6923828125,0.6904296875,0.626953125,0.5380859375,0.474609375,0.47265625,0.5302734375,0.5966796875,0.6318359375,0.6044921875,0.513671875,0.39453125,0.30078125,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.251953125,0.2265625,0.2041015625,0.208984375,0.2529296875,0.3212890625,0.39453125,0.4599609375,0.5,0.513671875,0.5166015625,0.529296875,0.5693359375,0.634765625,0.701171875,0.7333984375,0.708984375,0.6357421875,0.544921875,0.4833984375,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.2626953125,0.2783203125,0.2978515625,0.30859375,0.3037109375,0.2841796875,0.2587890625,0.23828125,0.2490234375,0.30859375,0.408203125,0.5166015625,0.5966796875,0.634765625,0.6689453125,0.7275390625,0.7900390625,0.826171875,0.8212890625,0.78515625,0.740234375,0.703125,0.69921875,0.720703125,0.7421875,0.7392578125,0.701171875,0.634765625,0.560546875,0.4775390625,0.3994140625,0.341796875,0.306640625,0.283203125,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.568359375,0.5634765625,0.5849609375,0.607421875,0.6044921875,0.5654296875,0.5,0.4169921875,0.310546875,0.220703125,0.1923828125,0.2353515625,0.3173828125,0.39453125,0.45703125,0.48046875,0.4638671875,0.4306640625,0.4140625,0.4375,0.5,0.5751953125,0.6552734375,0.712890625,0.7255859375,0.69921875,0.66015625,0.634765625,0.6005859375,0.51171875,0.39453125,0.30078125,0.267578125,0.2978515625,0.3642578125,0.4296875,0.4697265625,0.482421875,0.4853515625,0.4990234375,0.5390625,0.6044921875,0.666015625,0.6767578125,0.61328125,0.4912109375,0.3603515625,0.27734375,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.7373046875,0.7265625,0.7119140625,0.7041015625,0.7080078125,0.7216796875,0.740234375,0.751953125,0.7333984375,0.67578125,0.5966796875,0.5224609375,0.478515625,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.466796875,0.5380859375,0.5908203125,0.6162109375,0.619140625,0.62109375,0.634765625,0.6435546875,0.6103515625,0.54296875,0.47265625,0.4296875,0.431640625,0.46875,0.5205078125,0.58984375,0.654296875,0.6904296875,0.6884765625,0.6630859375,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.6435546875,0.6455078125,0.5908203125,0.48828125,0.3740234375,0.2919921875,0.2587890625,0.2373046875,0.2138671875,0.2177734375,0.2666015625,0.3544921875,0.451171875,0.5302734375,0.6025390625,0.6650390625,0.681640625,0.634765625,0.54296875,0.451171875,0.39453125,0.3603515625,0.369140625,0.4140625,0.4638671875,0.484375,0.4580078125,0.39453125,0.3359375,0.3349609375,0.40234375,0.5078125,0.599609375,0.6337890625,0.6044921875,0.5634765625,0.5400390625,0.53515625,0.5380859375,0.533203125,0.509765625,0.46875,0.4169921875,0.3486328125,0.30078125,0.3056640625,0.3662109375,0.4521484375,0.5302734375,0.609375,0.7041015625,0.7705078125,0.7705078125,0.7041015625,0.609375,0.5302734375,0.462890625,0.4208984375,0.421875,0.4609375,0.5107421875,0.5380859375,0.5302734375,0.51953125,0.541015625,0.587890625,0.634765625,0.6572265625,0.64453125,0.6044921875,0.5654296875,0.548828125,0.546875,0.541015625,0.5146484375,0.462890625,0.39453125,0.32421875,0.2734375,0.26953125,0.3203125,0.400390625,0.46875,0.5,0.5205078125,0.546875,0.5625,0.5576171875,0.5322265625,0.498046875,0.46875,0.451171875,0.466796875,0.5185546875,0.5849609375,0.63671875,0.6533203125,0.634765625,0.6064453125,0.576171875,0.5576171875,0.560546875,0.583984375,0.61328125,0.634765625,0.66015625,0.69921875,0.7255859375,0.5771484375,0.6796875,0.744140625,0.759765625,0.740234375,0.7021484375,0.6279296875,0.546875,0.5,0.5087890625,0.564453125,0.634765625,0.6962890625,0.703125,0.6318359375,0.501953125,0.365234375,0.27734375,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.431640625,0.4306640625,0.4833984375,0.57421875,0.66796875,0.7275390625,0.740234375,0.7451171875,0.76171875,0.767578125,0.7421875,0.6826171875,0.6044921875,0.5302734375,0.447265625,0.3359375,0.228515625,0.16796875,0.1689453125,0.2109375,0.2587890625,0.2998046875,0.3173828125,0.3056640625,0.275390625,0.2470703125,0.2392578125,0.2587890625,0.294921875,0.3671875,0.4638671875,0.5517578125,0.60546875,0.619140625,0.6044921875,0.5908203125,0.595703125,0.619140625,0.6455078125,0.662109375,0.6572265625,0.634765625,0.6181640625,0.6376953125,0.6904296875,0.748046875,0.783203125,0.7783203125,0.740234375,0.6865234375,0.6103515625,0.5380859375,0.501953125,0.5146484375,0.5576171875,0.6044921875,0.6357421875,0.6103515625,0.53515625,0.4501953125,0.3994140625,0.4091796875,0.46875,0.544921875,0.6240234375,0.6708984375,0.66015625,0.59765625,0.5234375,0.46875,0.4248046875,0.3916015625,0.3837890625,0.40234375,0.4365234375,0.462890625,0.46875,0.4609375,0.42578125,0.375,0.3359375,0.328125,0.3515625,0.39453125,0.4482421875,0.5185546875,0.57421875,0.5771484375,0.5234375,0.4404296875,0.3642578125,0.3095703125,0.328125,0.421875,0.546875,0.640625,0.6591796875,0.6044921875,0.5341796875,0.4833984375,0.48046875,0.53515625,0.6240234375,0.701171875,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.263671875,0.2880859375,0.3251953125,0.361328125,0.380859375,0.3798828125,0.3642578125,0.3369140625,0.2841796875,0.2236328125,0.1845703125,0.18359375,0.21484375,0.2587890625,0.3134765625,0.3994140625,0.5,0.580078125,0.619140625,0.62109375,0.6044921875,0.5771484375,0.5185546875,0.44140625,0.375,0.33984375,0.341796875,0.3642578125,0.39453125,0.4443359375,0.513671875,0.5908203125,0.66015625,0.708984375,0.740234375,0.7529296875,0.712890625,0.6240234375,0.521484375,0.4501953125,0.4345703125,0.46875,0.5087890625,0.5224609375,0.5107421875,0.48828125,0.4765625,0.490234375,0.5302734375,0.5654296875,0.56640625,0.5380859375,0.5078125,0.50390625,0.5390625,0.6044921875,0.6611328125,0.6552734375,0.5849609375,0.48828125,0.41796875,0.412109375,0.46875,0.5400390625,0.59375,0.59375,0.52734375,0.41796875,0.318359375,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.2509765625,0.22265625,0.1923828125,0.189453125,0.2265625,0.2919921875,0.3642578125,0.4296875,0.4697265625,0.482421875,0.4853515625,0.4990234375,0.5390625,0.6044921875,0.6728515625,0.7158203125,0.712890625,0.662109375,0.5927734375,0.5419921875,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.265625,0.2919921875,0.3251953125,0.3447265625,0.3359375,0.302734375,0.2587890625,0.216796875,0.19921875,0.234375,0.3251953125,0.4443359375,0.5458984375,0.6044921875,0.6552734375,0.720703125,0.7783203125,0.806640625,0.7978515625,0.7685546875,0.740234375,0.7216796875,0.7275390625,0.7451171875,0.7509765625,0.7275390625,0.673828125,0.6044921875,0.533203125,0.46484375,0.408203125,0.3662109375,0.3349609375,0.30078125,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6162109375,0.6220703125,0.640625,0.646484375,0.6220703125,0.568359375,0.5,0.4169921875,0.3056640625,0.208984375,0.1728515625,0.2099609375,0.287109375,0.3642578125,0.4267578125,0.4541015625,0.4443359375,0.4189453125,0.4091796875,0.4365234375,0.5,0.5693359375,0.623046875,0.6455078125,0.6357421875,0.6083984375,0.59375,0.6044921875,0.6083984375,0.5546875,0.4580078125,0.3642578125,0.31640625,0.33203125,0.39453125,0.4599609375,0.5,0.513671875,0.5166015625,0.529296875,0.5693359375,0.634765625,0.6962890625,0.703125,0.6318359375,0.501953125,0.365234375,0.27734375,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.7431640625,0.75390625,0.767578125,0.775390625,0.7724609375,0.7587890625,0.740234375,0.716796875,0.677734375,0.626953125,0.5791015625,0.546875,0.5322265625,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.4423828125,0.53515625,0.6162109375,0.6572265625,0.6533203125,0.626953125,0.6044921875,0.5810546875,0.54296875,0.5029296875,0.4794921875,0.482421875,0.5029296875,0.5302734375,0.5634765625,0.6181640625,0.673828125,0.701171875,0.6904296875,0.650390625,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.6494140625,0.6123046875,0.5185546875,0.400390625,0.2998046875,0.2529296875,0.2587890625,0.2724609375,0.26953125,0.2666015625,0.2841796875,0.330078125,0.3974609375,0.46875,0.5400390625,0.5947265625,0.6044921875,0.5576171875,0.4755859375,0.40234375,0.3642578125,0.3486328125,0.37109375,0.4189453125,0.4609375,0.466796875,0.4296875,0.3642578125,0.3046875,0.2998046875,0.3671875,0.48046875,0.5888671875,0.64453125,0.634765625,0.6103515625,0.59375,0.5849609375,0.580078125,0.5712890625,0.5546875,0.5302734375,0.4931640625,0.4248046875,0.3525390625,0.3173828125,0.3369140625,0.3974609375,0.46875,0.548828125,0.642578125,0.7099609375,0.7099609375,0.642578125,0.548828125,0.46875,0.396484375,0.3330078125,0.3056640625,0.328125,0.384765625,0.4404296875,0.46875,0.4951171875,0.544921875,0.6044921875,0.6513671875,0.669921875,0.6591796875,0.634765625,0.61328125,0.6025390625,0.5908203125,0.560546875,0.5068359375,0.4365234375,0.3642578125,0.2998046875,0.275390625,0.306640625,0.3798828125,0.4609375,0.5048828125,0.5,0.48828125,0.50390625,0.541015625,0.576171875,0.5888671875,0.5703125,0.5302734375,0.494140625,0.49609375,0.5380859375,0.5966796875,0.638671875,0.640625,0.6044921875,0.5634765625,0.541015625,0.546875,0.57421875,0.6044921875,0.6171875,0.6044921875,0.59375,0.6083984375,0.6357421875,0.59765625,0.6591796875,0.6845703125,0.68359375,0.673828125,0.65234375,0.5966796875,0.529296875,0.490234375,0.5,0.5517578125,0.6220703125,0.6845703125,0.701171875,0.6484375,0.5400390625,0.419921875,0.3427734375,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.375,0.359375,0.4033203125,0.4931640625,0.59375,0.6591796875,0.673828125,0.6806640625,0.7099609375,0.740234375,0.7431640625,0.70703125,0.642578125,0.5703125,0.486328125,0.3681640625,0.2548828125,0.1943359375,0.205078125,0.26171875,0.3251953125,0.3837890625,0.4228515625,0.4267578125,0.3955078125,0.3525390625,0.32421875,0.3251953125,0.34765625,0.4130859375,0.5029296875,0.580078125,0.61328125,0.5966796875,0.55078125,0.5048828125,0.482421875,0.49609375,0.541015625,0.5927734375,0.623046875,0.6220703125,0.62109375,0.6552734375,0.7109375,0.7548828125,0.7626953125,0.73046875,0.673828125,0.6025390625,0.5068359375,0.4228515625,0.390625,0.419921875,0.4853515625,0.55078125,0.59765625,0.5859375,0.5166015625,0.4287109375,0.369140625,0.37109375,0.4287109375,0.5068359375,0.595703125,0.654296875,0.650390625,0.5849609375,0.4990234375,0.4287109375,0.369140625,0.32421875,0.3134765625,0.3388671875,0.384765625,0.4208984375,0.4287109375,0.4208984375,0.3876953125,0.345703125,0.3251953125,0.3408203125,0.3876953125,0.4482421875,0.515625,0.59375,0.642578125,0.62890625,0.5537109375,0.45703125,0.376953125,0.3212890625,0.33203125,0.4111328125,0.517578125,0.5966796875,0.607421875,0.55078125,0.482421875,0.439453125,0.4453125,0.50390625,0.5859375,0.650390625,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.333984375,0.3701171875,0.4189453125,0.4541015625,0.45703125,0.42578125,0.376953125,0.318359375,0.2392578125,0.171875,0.154296875,0.1923828125,0.259765625,0.3251953125,0.3974609375,0.5,0.599609375,0.654296875,0.6494140625,0.6044921875,0.55078125,0.49609375,0.431640625,0.3759765625,0.3466796875,0.34765625,0.3642578125,0.376953125,0.392578125,0.4306640625,0.490234375,0.560546875,0.6201171875,0.658203125,0.673828125,0.6689453125,0.611328125,0.5126953125,0.41796875,0.3671875,0.3759765625,0.4287109375,0.4833984375,0.509765625,0.5068359375,0.4921875,0.4892578125,0.515625,0.5703125,0.619140625,0.6201171875,0.57421875,0.5126953125,0.4755859375,0.490234375,0.55078125,0.6083984375,0.6044921875,0.5361328125,0.443359375,0.3759765625,0.3720703125,0.4287109375,0.5048828125,0.580078125,0.6162109375,0.5849609375,0.4970703125,0.3974609375,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.31640625,0.28125,0.2392578125,0.22265625,0.248046875,0.306640625,0.376953125,0.44140625,0.47265625,0.4716796875,0.45703125,0.455078125,0.4873046875,0.55078125,0.62109375,0.67578125,0.693359375,0.66796875,0.619140625,0.5791015625,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.333984375,0.3701171875,0.416015625,0.44140625,0.4296875,0.3857421875,0.3251953125,0.2626953125,0.2099609375,0.203125,0.2626953125,0.3701171875,0.4775390625,0.55078125,0.615234375,0.6806640625,0.7275390625,0.73828125,0.7177734375,0.689453125,0.673828125,0.669921875,0.689453125,0.7138671875,0.716796875,0.68359375,0.6220703125,0.55078125,0.484375,0.4404296875,0.4228515625,0.4189453125,0.4111328125,0.380859375,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.619140625,0.6376953125,0.662109375,0.6650390625,0.6318359375,0.5703125,0.5,0.4169921875,0.3076171875,0.2138671875,0.181640625,0.220703125,0.30078125,0.376953125,0.4404296875,0.4658203125,0.4521484375,0.423828125,0.4111328125,0.4365234375,0.5,0.5634765625,0.5927734375,0.5791015625,0.541015625,0.5087890625,0.5107421875,0.55078125,0.5888671875,0.5712890625,0.50390625,0.4248046875,0.376953125,0.3876953125,0.4482421875,0.51171875,0.5439453125,0.5419921875,0.52734375,0.5263671875,0.5576171875,0.6220703125,0.6845703125,0.701171875,0.6484375,0.5400390625,0.419921875,0.3427734375,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6806640625,0.7099609375,0.748046875,0.76953125,0.759765625,0.72265625,0.673828125,0.62109375,0.5712890625,0.5390625,0.533203125,0.5478515625,0.5654296875,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.4580078125,0.5615234375,0.6513671875,0.6884765625,0.6640625,0.6064453125,0.55078125,0.5009765625,0.4599609375,0.4462890625,0.46875,0.5126953125,0.552734375,0.5703125,0.587890625,0.62890625,0.6728515625,0.689453125,0.666015625,0.6123046875,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.6181640625,0.5595703125,0.4580078125,0.353515625,0.2890625,0.2841796875,0.3251953125,0.3671875,0.3759765625,0.3544921875,0.330078125,0.328125,0.3642578125,0.4287109375,0.4990234375,0.55078125,0.560546875,0.521484375,0.4541015625,0.3984375,0.376953125,0.376953125,0.4111328125,0.462890625,0.498046875,0.4921875,0.4453125,0.376953125,0.314453125,0.2978515625,0.3466796875,0.4462890625,0.552734375,0.6162109375,0.6220703125,0.6123046875,0.6044921875,0.5986328125,0.59375,0.587890625,0.580078125,0.5703125,0.546875,0.48046875,0.3935546875,0.330078125,0.3193359375,0.361328125,0.4287109375,0.5087890625,0.6025390625,0.669921875,0.669921875,0.6025390625,0.5087890625,0.4287109375,0.3525390625,0.2705078125,0.21875,0.2275390625,0.2900390625,0.369140625,0.4287109375,0.484375,0.55078125,0.611328125,0.6455078125,0.6484375,0.634765625,0.6220703125,0.6162109375,0.6201171875,0.6171875,0.587890625,0.52734375,0.451171875,0.376953125,0.3173828125,0.3095703125,0.361328125,0.4453125,0.5166015625,0.5361328125,0.5,0.4599609375,0.466796875,0.51953125,0.5849609375,0.6279296875,0.62109375,0.5703125,0.5185546875,0.5068359375,0.537109375,0.583984375,0.6142578125,0.6025390625,0.55078125,0.4990234375,0.4833984375,0.509765625,0.5576171875,0.59375,0.591796875,0.55078125,0.5107421875,0.5087890625,0.541015625,0.6162109375,0.6279296875,0.609375,0.5869140625,0.5791015625,0.5673828125,0.5234375,0.4677734375,0.4345703125,0.447265625,0.4990234375,0.5693359375,0.6357421875,0.669921875,0.6494140625,0.580078125,0.4931640625,0.43359375,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.375,0.3408203125,0.3583984375,0.4248046875,0.5087890625,0.56640625,0.5791015625,0.5888671875,0.6279296875,0.6767578125,0.7021484375,0.6845703125,0.6298828125,0.5595703125,0.4765625,0.3662109375,0.26953125,0.2333984375,0.2685546875,0.3447265625,0.419921875,0.4873046875,0.5380859375,0.5498046875,0.51953125,0.4677734375,0.427734375,0.419921875,0.4326171875,0.4853515625,0.5556640625,0.6083984375,0.6142578125,0.57421875,0.509765625,0.4443359375,0.4033203125,0.404296875,0.4501953125,0.5146484375,0.5595703125,0.5693359375,0.5771484375,0.6181640625,0.6728515625,0.705078125,0.6962890625,0.646484375,0.5791015625,0.5,0.3994140625,0.318359375,0.2998046875,0.349609375,0.43359375,0.509765625,0.56640625,0.5673828125,0.5107421875,0.4326171875,0.3779296875,0.380859375,0.439453125,0.51953125,0.6123046875,0.677734375,0.6767578125,0.6103515625,0.517578125,0.439453125,0.37109375,0.3203125,0.3076171875,0.3369140625,0.3896484375,0.4296875,0.439453125,0.4306640625,0.396484375,0.35546875,0.3388671875,0.36328125,0.419921875,0.4892578125,0.56640625,0.65234375,0.705078125,0.689453125,0.611328125,0.5107421875,0.4296875,0.3720703125,0.37109375,0.4287109375,0.5107421875,0.568359375,0.5673828125,0.509765625,0.44140625,0.396484375,0.3974609375,0.4453125,0.5146484375,0.56640625,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.4296875,0.470703125,0.5234375,0.5556640625,0.544921875,0.49609375,0.4296875,0.353515625,0.26171875,0.1943359375,0.19140625,0.2529296875,0.3427734375,0.419921875,0.4990234375,0.6015625,0.685546875,0.7080078125,0.6630859375,0.583984375,0.509765625,0.4404296875,0.3798828125,0.3486328125,0.35546875,0.3896484375,0.4208984375,0.4296875,0.4345703125,0.453125,0.4853515625,0.5234375,0.5556640625,0.57421875,0.5791015625,0.568359375,0.51171875,0.4287109375,0.361328125,0.341796875,0.375,0.439453125,0.5009765625,0.5263671875,0.513671875,0.4853515625,0.47265625,0.498046875,0.5595703125,0.6162109375,0.6201171875,0.568359375,0.4951171875,0.4453125,0.4501953125,0.509765625,0.5673828125,0.5703125,0.5146484375,0.4345703125,0.37890625,0.3818359375,0.439453125,0.5185546875,0.609375,0.6708984375,0.6640625,0.59375,0.498046875,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.41015625,0.369140625,0.318359375,0.291015625,0.3056640625,0.359375,0.4296875,0.4912109375,0.51171875,0.4892578125,0.4501953125,0.427734375,0.4482421875,0.509765625,0.580078125,0.638671875,0.6630859375,0.646484375,0.603515625,0.568359375,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.4296875,0.470703125,0.5224609375,0.5517578125,0.5390625,0.48828125,0.419921875,0.34375,0.2626953125,0.2177734375,0.2412109375,0.3271484375,0.4296875,0.509765625,0.5791015625,0.6396484375,0.669921875,0.6591796875,0.6220703125,0.5888671875,0.5791015625,0.5859375,0.6181640625,0.6552734375,0.66796875,0.640625,0.5810546875,0.509765625,0.447265625,0.4248046875,0.443359375,0.4794921875,0.5,0.48046875,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.576171875,0.6083984375,0.6455078125,0.658203125,0.630859375,0.5703125,0.5,0.41796875,0.3154296875,0.2333984375,0.21484375,0.265625,0.3515625,0.4296875,0.4912109375,0.5107421875,0.4853515625,0.443359375,0.4189453125,0.4384765625,0.5,0.5595703125,0.57421875,0.5380859375,0.4814453125,0.443359375,0.453125,0.509765625,0.5654296875,0.5712890625,0.5263671875,0.4619140625,0.419921875,0.4296875,0.4892578125,0.55078125,0.5712890625,0.548828125,0.509765625,0.4873046875,0.5078125,0.5693359375,0.6357421875,0.669921875,0.6494140625,0.580078125,0.4931640625,0.43359375,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5888671875,0.62890625,0.6796875,0.7080078125,0.6953125,0.6455078125,0.5791015625,0.5126953125,0.4599609375,0.4423828125,0.466796875,0.5126953125,0.5498046875,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.5107421875,0.6123046875,0.6943359375,0.71484375,0.666015625,0.583984375,0.509765625,0.4443359375,0.3994140625,0.396484375,0.4375,0.5,0.546875,0.5595703125,0.5693359375,0.60546875,0.646484375,0.662109375,0.6376953125,0.5791015625,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.5576171875,0.5009765625,0.4169921875,0.34765625,0.326171875,0.357421875,0.419921875,0.4765625,0.4873046875,0.451171875,0.3974609375,0.3642578125,0.37890625,0.439453125,0.509765625,0.5615234375,0.57421875,0.5419921875,0.4853515625,0.44140625,0.4296875,0.4384765625,0.478515625,0.53125,0.5625,0.55078125,0.4990234375,0.4296875,0.36328125,0.3291015625,0.34765625,0.416015625,0.5,0.5576171875,0.5693359375,0.5673828125,0.56640625,0.564453125,0.5634765625,0.5625,0.560546875,0.5595703125,0.544921875,0.4873046875,0.4072265625,0.345703125,0.333984375,0.3720703125,0.439453125,0.51953125,0.61328125,0.6806640625,0.6806640625,0.61328125,0.51953125,0.439453125,0.3603515625,0.2685546875,0.2041015625,0.205078125,0.271484375,0.36328125,0.439453125,0.509765625,0.576171875,0.619140625,0.625,0.6025390625,0.5771484375,0.5693359375,0.57421875,0.59765625,0.6201171875,0.6142578125,0.5712890625,0.5029296875,0.4296875,0.37109375,0.3671875,0.419921875,0.498046875,0.5546875,0.5546875,0.5,0.4443359375,0.4423828125,0.4951171875,0.5693359375,0.62109375,0.6162109375,0.5595703125,0.5,0.4833984375,0.51171875,0.5576171875,0.5859375,0.5693359375,0.509765625,0.451171875,0.439453125,0.4775390625,0.5361328125,0.5751953125,0.56640625,0.509765625,0.453125,0.443359375,0.4814453125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.6484375,0.5859375,0.505859375,0.451171875,0.439453125,0.431640625,0.390625,0.3349609375,0.30078125,0.3076171875,0.353515625,0.419921875,0.490234375,0.5595703125,0.607421875,0.62109375,0.60546875,0.5849609375,0.5791015625,0.5888671875,0.6298828125,0.681640625,0.7119140625,0.6982421875,0.6474609375,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.4296875,0.46875,0.51953125,0.548828125,0.5361328125,0.486328125,0.419921875,0.34765625,0.275390625,0.2470703125,0.2880859375,0.3876953125,0.498046875,0.5791015625,0.6474609375,0.7001953125,0.7138671875,0.685546875,0.6328125,0.5908203125,0.5791015625,0.5859375,0.6181640625,0.6552734375,0.66796875,0.640625,0.5810546875,0.509765625,0.4384765625,0.376953125,0.3486328125,0.3603515625,0.3984375,0.431640625,0.439453125,0.44921875,0.490234375,0.5419921875,0.572265625,0.55859375,0.5078125,0.439453125,0.36328125,0.279296875,0.2294921875,0.24609375,0.32421875,0.421875,0.5,0.5576171875,0.5732421875,0.5458984375,0.501953125,0.4775390625,0.498046875,0.5595703125,0.638671875,0.7333984375,0.7998046875,0.7998046875,0.7333984375,0.638671875,0.5595703125,0.4892578125,0.4375,0.4248046875,0.45703125,0.513671875,0.5576171875,0.5693359375,0.55859375,0.5087890625,0.4375,0.3857421875,0.3798828125,0.421875,0.4892578125,0.5703125,0.6728515625,0.7548828125,0.7744140625,0.7255859375,0.6435546875,0.5693359375,0.51171875,0.49609375,0.5234375,0.56640625,0.5908203125,0.5712890625,0.509765625,0.4375,0.3759765625,0.34375,0.3505859375,0.3837890625,0.4130859375,0.419921875,0.421875,0.4384765625,0.47265625,0.5146484375,0.5517578125,0.5732421875,0.5791015625,0.5908203125,0.6328125,0.68359375,0.7109375,0.6943359375,0.6396484375,0.5693359375,0.490234375,0.3974609375,0.333984375,0.3349609375,0.4013671875,0.4931640625,0.5693359375,0.64453125,0.7275390625,0.779296875,0.763671875,0.6865234375,0.5888671875,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.564453125,0.5478515625,0.517578125,0.4814453125,0.451171875,0.4345703125,0.4296875,0.421875,0.3955078125,0.373046875,0.3798828125,0.42578125,0.49609375,0.5693359375,0.6259765625,0.619140625,0.5478515625,0.451171875,0.3798828125,0.373046875,0.4296875,0.4912109375,0.5126953125,0.4921875,0.453125,0.4306640625,0.44921875,0.509765625,0.5693359375,0.5888671875,0.564453125,0.5244140625,0.5,0.51953125,0.5791015625,0.65625,0.74609375,0.806640625,0.8017578125,0.732421875,0.6376953125,0.5595703125,0.4912109375,0.4384765625,0.4248046875,0.453125,0.505859375,0.5478515625,0.5595703125,0.5517578125,0.5146484375,0.4658203125,0.4384765625,0.4521484375,0.5029296875,0.5693359375,0.6240234375,0.6240234375,0.56640625,0.486328125,0.4306640625,0.4326171875,0.4892578125,0.556640625,0.6005859375,0.6005859375,0.5576171875,0.494140625,0.44921875,0.439453125,0.4443359375,0.4609375,0.4892578125,0.5205078125,0.5458984375,0.55859375,0.5595703125,0.568359375,0.609375,0.666015625,0.7021484375,0.6943359375,0.646484375,0.5791015625,0.5,0.3994140625,0.318359375,0.2998046875,0.349609375,0.43359375,0.509765625,0.5751953125,0.6142578125,0.6064453125,0.552734375,0.48046875,0.4296875,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.431640625,0.4306640625,0.490234375,0.5732421875,0.6337890625,0.6357421875,0.5791015625,0.5078125,0.4384765625,0.390625,0.37890625,0.3955078125,0.4150390625,0.419921875,0.4296875,0.48046875,0.55078125,0.603515625,0.609375,0.5673828125,0.5,0.421875,0.3388671875,0.291015625,0.3125,0.396484375,0.4990234375,0.5791015625,0.6357421875,0.6376953125,0.58203125,0.501953125,0.4453125,0.4443359375,0.5,0.556640625,0.56640625,0.5283203125,0.470703125,0.4326171875,0.4423828125,0.5,0.556640625,0.5654296875,0.52734375,0.470703125,0.435546875,0.44921875,0.509765625,0.568359375,0.5712890625,0.515625,0.4345703125,0.3759765625,0.375,0.4296875,0.5,0.568359375,0.6142578125,0.6240234375,0.6064453125,0.5849609375,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.4189453125,0.4208984375,0.4267578125,0.4326171875,0.4384765625,0.4404296875,0.439453125,0.447265625,0.4833984375,0.529296875,0.5537109375,0.5380859375,0.486328125,0.419921875,0.353515625,0.3046875,0.2958984375,0.3291015625,0.384765625,0.427734375,0.439453125,0.4345703125,0.4091796875,0.3857421875,0.388671875,0.4296875,0.4970703125,0.5693359375,0.646484375,0.73046875,0.7783203125,0.755859375,0.671875,0.5693359375,0.4892578125,0.419921875,0.359375,0.3291015625,0.33984375,0.376953125,0.41015625,0.419921875,0.4326171875,0.482421875,0.548828125,0.595703125,0.5966796875,0.5546875,0.4892578125,0.4248046875,0.384765625,0.388671875,0.4365234375,0.5029296875,0.5498046875,0.5595703125,0.5546875,0.5390625,0.5107421875,0.478515625,0.4501953125,0.4345703125,0.4296875,0.421875,0.3994140625,0.3818359375,0.392578125,0.439453125,0.5087890625,0.5791015625,0.6357421875,0.6435546875,0.6005859375,0.5380859375,0.4951171875,0.5029296875,0.5595703125,0.6259765625,0.67578125,0.689453125,0.6630859375,0.6142578125,0.5771484375,0.5693359375,0.580078125,0.62109375,0.671875,0.697265625,0.681640625,0.6279296875,0.5595703125,0.4873046875,0.4189453125,0.373046875,0.365234375,0.38671875,0.412109375,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.43359375,0.4091796875,0.388671875,0.3955078125,0.439453125,0.5078125,0.5791015625,0.6572265625,0.75,0.81640625,0.8173828125,0.751953125,0.6591796875,0.5791015625,0.5,0.408203125,0.34375,0.3447265625,0.4111328125,0.5029296875,0.5791015625,0.6416015625,0.6728515625,0.6494140625,0.5791015625,0.4921875,0.4326171875,0.419921875,0.4326171875,0.490234375,0.5751953125,0.6435546875,0.6640625,0.6318359375,0.5693359375,0.5107421875,0.494140625,0.5205078125,0.5634765625,0.587890625,0.5693359375,0.509765625,0.44921875,0.4287109375,0.44921875,0.4853515625,0.5048828125,0.4814453125,0.419921875,0.361328125,0.357421875,0.41015625,0.48828125,0.5439453125,0.544921875,0.4892578125,0.43359375,0.4267578125,0.470703125,0.5341796875,0.5771484375,0.5673828125,0.509765625,0.4501953125,0.4375,0.4736328125,0.638671875,0.56640625,0.4833984375,0.4326171875,0.4287109375,0.4296875,0.39453125,0.3359375,0.2822265625,0.26171875,0.2802734375,0.3251953125,0.3837890625,0.462890625,0.5498046875,0.6201171875,0.66015625,0.6728515625,0.673828125,0.681640625,0.7177734375,0.763671875,0.7890625,0.7783203125,0.7333984375,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.3330078125,0.3623046875,0.400390625,0.421875,0.412109375,0.375,0.3251953125,0.275390625,0.2451171875,0.267578125,0.3544921875,0.4814453125,0.5986328125,0.673828125,0.734375,0.78515625,0.8046875,0.783203125,0.7353515625,0.6923828125,0.673828125,0.669921875,0.689453125,0.7138671875,0.716796875,0.68359375,0.6220703125,0.55078125,0.478515625,0.4111328125,0.37109375,0.369140625,0.39453125,0.421875,0.4287109375,0.4375,0.4736328125,0.5185546875,0.544921875,0.533203125,0.48828125,0.4287109375,0.3642578125,0.2978515625,0.2646484375,0.287109375,0.3583984375,0.439453125,0.5,0.541015625,0.544921875,0.5166015625,0.4833984375,0.474609375,0.505859375,0.5703125,0.6494140625,0.744140625,0.810546875,0.810546875,0.744140625,0.6494140625,0.5703125,0.5,0.4482421875,0.4384765625,0.4775390625,0.544921875,0.6005859375,0.6220703125,0.6181640625,0.5625,0.47265625,0.3916015625,0.3583984375,0.3837890625,0.4482421875,0.5283203125,0.6318359375,0.7216796875,0.7587890625,0.7353515625,0.6767578125,0.6220703125,0.580078125,0.576171875,0.6044921875,0.6376953125,0.646484375,0.615234375,0.55078125,0.4775390625,0.404296875,0.34765625,0.3232421875,0.32421875,0.3310546875,0.3251953125,0.322265625,0.3505859375,0.4189453125,0.5107421875,0.59765625,0.6533203125,0.673828125,0.6923828125,0.7353515625,0.779296875,0.791015625,0.7587890625,0.6943359375,0.6220703125,0.544921875,0.462890625,0.4111328125,0.419921875,0.4833984375,0.5625,0.6220703125,0.677734375,0.7421875,0.7822265625,0.767578125,0.7021484375,0.619140625,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.607421875,0.576171875,0.52734375,0.4716796875,0.4228515625,0.3916015625,0.376953125,0.36328125,0.34375,0.3427734375,0.380859375,0.45703125,0.544921875,0.6220703125,0.67578125,0.6572265625,0.5625,0.4365234375,0.341796875,0.3232421875,0.376953125,0.4423828125,0.48046875,0.4873046875,0.4765625,0.4736328125,0.4970703125,0.55078125,0.60546875,0.62890625,0.6220703125,0.6025390625,0.595703125,0.619140625,0.673828125,0.7392578125,0.806640625,0.8408203125,0.8134765625,0.7333984375,0.640625,0.5703125,0.5087890625,0.4580078125,0.4384765625,0.4609375,0.5078125,0.5517578125,0.5703125,0.57421875,0.55859375,0.5341796875,0.521484375,0.53515625,0.572265625,0.6220703125,0.6591796875,0.6396484375,0.564453125,0.470703125,0.4052734375,0.3994140625,0.4482421875,0.505859375,0.5419921875,0.5419921875,0.505859375,0.4580078125,0.427734375,0.4287109375,0.443359375,0.474609375,0.515625,0.552734375,0.5751953125,0.578125,0.5703125,0.5712890625,0.611328125,0.6787109375,0.736328125,0.755859375,0.7294921875,0.673828125,0.6025390625,0.5068359375,0.4228515625,0.390625,0.419921875,0.4853515625,0.55078125,0.6044921875,0.615234375,0.5693359375,0.478515625,0.384765625,0.3291015625,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.3916015625,0.40234375,0.4853515625,0.6015625,0.693359375,0.7177734375,0.673828125,0.607421875,0.5263671875,0.4443359375,0.3828125,0.349609375,0.3349609375,0.3251953125,0.3291015625,0.384765625,0.4755859375,0.5556640625,0.5888671875,0.5634765625,0.5,0.4248046875,0.3583984375,0.337890625,0.388671875,0.4921875,0.599609375,0.673828125,0.7216796875,0.7158203125,0.650390625,0.556640625,0.482421875,0.462890625,0.5,0.5419921875,0.5498046875,0.521484375,0.4775390625,0.44921875,0.45703125,0.5,0.5400390625,0.5419921875,0.509765625,0.4716796875,0.4580078125,0.4873046875,0.55078125,0.609375,0.611328125,0.5478515625,0.4501953125,0.3671875,0.341796875,0.376953125,0.43359375,0.5068359375,0.58203125,0.638671875,0.6669921875,0.673828125,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.3193359375,0.330078125,0.359375,0.3955078125,0.423828125,0.435546875,0.4287109375,0.423828125,0.4326171875,0.4462890625,0.4443359375,0.419921875,0.3759765625,0.3251953125,0.27734375,0.24609375,0.251953125,0.296875,0.359375,0.4091796875,0.4287109375,0.43359375,0.4228515625,0.4140625,0.4306640625,0.4794921875,0.548828125,0.6220703125,0.6962890625,0.7626953125,0.783203125,0.732421875,0.62890625,0.521484375,0.4482421875,0.3837890625,0.318359375,0.271484375,0.2607421875,0.28125,0.3095703125,0.3251953125,0.345703125,0.3974609375,0.46484375,0.5146484375,0.5244140625,0.49609375,0.4482421875,0.40234375,0.3857421875,0.412109375,0.4697265625,0.533203125,0.5703125,0.5703125,0.556640625,0.5322265625,0.4951171875,0.4521484375,0.4150390625,0.390625,0.376953125,0.3671875,0.3662109375,0.3916015625,0.453125,0.5361328125,0.615234375,0.673828125,0.7138671875,0.708984375,0.6572265625,0.5869140625,0.53515625,0.5302734375,0.5703125,0.619140625,0.6572265625,0.669921875,0.658203125,0.6328125,0.6171875,0.6220703125,0.638671875,0.67578125,0.7119140625,0.7197265625,0.689453125,0.6328125,0.5703125,0.5029296875,0.4228515625,0.3486328125,0.3056640625,0.298828125,0.3125,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.42578125,0.419921875,0.4287109375,0.4677734375,0.533203125,0.6083984375,0.673828125,0.7431640625,0.8291015625,0.89453125,0.8984375,0.83984375,0.751953125,0.673828125,0.5966796875,0.5146484375,0.462890625,0.4716796875,0.53515625,0.6142578125,0.673828125,0.71484375,0.7099609375,0.6416015625,0.5283203125,0.4130859375,0.3408203125,0.3251953125,0.33984375,0.4052734375,0.5087890625,0.609375,0.666015625,0.6640625,0.6220703125,0.5791015625,0.5693359375,0.58984375,0.6181640625,0.62890625,0.60546875,0.55078125,0.49609375,0.4658203125,0.45703125,0.4541015625,0.4365234375,0.392578125,0.3251953125,0.265625,0.2578125,0.3095703125,0.3935546875,0.46484375,0.484375,0.4482421875,0.4091796875,0.419921875,0.4794921875,0.5546875,0.6044921875,0.6015625,0.55078125,0.4970703125,0.4755859375,0.4912109375,0.6044921875,0.546875,0.484375,0.455078125,0.46875,0.4873046875,0.4697265625,0.4140625,0.3388671875,0.2763671875,0.2490234375,0.2587890625,0.2890625,0.361328125,0.4716796875,0.5908203125,0.6845703125,0.7314453125,0.740234375,0.74609375,0.7724609375,0.806640625,0.826171875,0.8173828125,0.7841796875,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.26171875,0.2724609375,0.287109375,0.294921875,0.291015625,0.27734375,0.2587890625,0.2451171875,0.263671875,0.333984375,0.44921875,0.5791015625,0.6826171875,0.740234375,0.7880859375,0.8359375,0.8642578125,0.8564453125,0.8173828125,0.7724609375,0.740234375,0.7216796875,0.7275390625,0.7451171875,0.7509765625,0.7275390625,0.673828125,0.6044921875,0.53125,0.462890625,0.4189453125,0.4140625,0.4375,0.4619140625,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.4228515625,0.3828125,0.3671875,0.3857421875,0.4296875,0.4736328125,0.5,0.5087890625,0.484375,0.44140625,0.4111328125,0.4169921875,0.4619140625,0.5302734375,0.609375,0.7041015625,0.7705078125,0.7705078125,0.7041015625,0.609375,0.5302734375,0.458984375,0.404296875,0.39453125,0.44140625,0.5234375,0.5966796875,0.634765625,0.6455078125,0.59375,0.4912109375,0.3857421875,0.326171875,0.333984375,0.39453125,0.47265625,0.5654296875,0.646484375,0.6875,0.6845703125,0.658203125,0.634765625,0.6259765625,0.650390625,0.693359375,0.7236328125,0.7177734375,0.6728515625,0.6044921875,0.5302734375,0.451171875,0.380859375,0.3310546875,0.3017578125,0.2822265625,0.2587890625,0.2412109375,0.2646484375,0.34765625,0.474609375,0.6064453125,0.69921875,0.740234375,0.7734375,0.8212890625,0.8564453125,0.84765625,0.791015625,0.7109375,0.634765625,0.5625,0.4990234375,0.4716796875,0.494140625,0.55078125,0.6064453125,0.634765625,0.6591796875,0.6953125,0.7255859375,0.7294921875,0.7001953125,0.65234375,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.6064453125,0.5703125,0.5244140625,0.474609375,0.4287109375,0.392578125,0.3642578125,0.3349609375,0.306640625,0.30859375,0.361328125,0.4541015625,0.5556640625,0.634765625,0.6884765625,0.666015625,0.5654296875,0.43359375,0.3330078125,0.310546875,0.3642578125,0.43359375,0.48828125,0.521484375,0.53515625,0.5439453125,0.564453125,0.6044921875,0.6455078125,0.6689453125,0.673828125,0.6708984375,0.67578125,0.69921875,0.740234375,0.78515625,0.8193359375,0.814453125,0.7587890625,0.669921875,0.5849609375,0.5302734375,0.482421875,0.43359375,0.4052734375,0.4140625,0.4521484375,0.498046875,0.5302734375,0.5556640625,0.576171875,0.5908203125,0.599609375,0.6064453125,0.6181640625,0.634765625,0.6416015625,0.599609375,0.515625,0.4248046875,0.365234375,0.3583984375,0.39453125,0.4365234375,0.4638671875,0.46875,0.4580078125,0.4462890625,0.4482421875,0.46875,0.5,0.5419921875,0.580078125,0.595703125,0.5849609375,0.5576171875,0.5302734375,0.515625,0.5478515625,0.6240234375,0.7099609375,0.767578125,0.775390625,0.740234375,0.6865234375,0.6103515625,0.5380859375,0.501953125,0.5146484375,0.5576171875,0.6044921875,0.63671875,0.61328125,0.5244140625,0.40234375,0.296875,0.248046875,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.3388671875,0.3544921875,0.4521484375,0.59375,0.7158203125,0.7666015625,0.740234375,0.6884765625,0.6123046875,0.5166015625,0.4189453125,0.3408203125,0.2890625,0.2587890625,0.2490234375,0.30078125,0.40234375,0.5078125,0.568359375,0.5595703125,0.5,0.4287109375,0.3798828125,0.3857421875,0.4609375,0.576171875,0.6806640625,0.740234375,0.7763671875,0.7685546875,0.708984375,0.619140625,0.53515625,0.4931640625,0.5,0.515625,0.5185546875,0.5078125,0.4912109375,0.48046875,0.4833984375,0.5,0.5107421875,0.4951171875,0.46875,0.4580078125,0.48046875,0.53515625,0.6044921875,0.666015625,0.6787109375,0.6240234375,0.521484375,0.41796875,0.361328125,0.3642578125,0.3916015625,0.451171875,0.5380859375,0.6298828125,0.69921875,0.734375,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.2421875,0.263671875,0.3251953125,0.4033203125,0.46484375,0.486328125,0.46875,0.44140625,0.4072265625,0.3701171875,0.3330078125,0.302734375,0.2783203125,0.2587890625,0.2421875,0.23828125,0.26171875,0.314453125,0.3798828125,0.435546875,0.46875,0.48828125,0.486328125,0.474609375,0.4775390625,0.5078125,0.5654296875,0.634765625,0.705078125,0.7548828125,0.748046875,0.673828125,0.55859375,0.4541015625,0.39453125,0.34375,0.2783203125,0.220703125,0.1923828125,0.201171875,0.23046875,0.2587890625,0.2900390625,0.3369140625,0.38671875,0.4189453125,0.42578125,0.4130859375,0.39453125,0.3828125,0.400390625,0.447265625,0.501953125,0.5419921875,0.5498046875,0.5302734375,0.50390625,0.4794921875,0.4580078125,0.4365234375,0.4140625,0.3896484375,0.3642578125,0.3447265625,0.359375,0.4248046875,0.52734375,0.634765625,0.708984375,0.740234375,0.7509765625,0.728515625,0.6708984375,0.599609375,0.5419921875,0.5185546875,0.5302734375,0.546875,0.55859375,0.5654296875,0.57421875,0.5888671875,0.609375,0.634765625,0.6640625,0.697265625,0.712890625,0.6923828125,0.6416015625,0.580078125,0.5302734375,0.4755859375,0.39453125,0.3056640625,0.2421875,0.220703125,0.2333984375,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.46875,0.4755859375,0.501953125,0.5546875,0.6240234375,0.689453125,0.740234375,0.7939453125,0.869140625,0.9306640625,0.9423828125,0.89453125,0.81640625,0.740234375,0.66796875,0.6044921875,0.5771484375,0.599609375,0.65625,0.7119140625,0.740234375,0.7470703125,0.703125,0.5986328125,0.4638671875,0.341796875,0.2724609375,0.2587890625,0.2705078125,0.3271484375,0.4248046875,0.5322265625,0.61328125,0.64453125,0.634765625,0.6220703125,0.630859375,0.654296875,0.673828125,0.6728515625,0.646484375,0.6044921875,0.5625,0.529296875,0.4970703125,0.455078125,0.3984375,0.330078125,0.2587890625,0.1953125,0.169921875,0.201171875,0.275390625,0.35546875,0.3994140625,0.39453125,0.38671875,0.4248046875,0.501953125,0.5849609375,0.6376953125,0.6416015625,0.6044921875,0.560546875,0.525390625,0.5078125,0.560546875,0.52734375,0.4951171875,0.494140625,0.5302734375,0.5703125,0.58203125,0.5439453125,0.4609375,0.36328125,0.2900390625,0.2587890625,0.251953125,0.2958984375,0.400390625,0.53515625,0.6572265625,0.7265625,0.740234375,0.744140625,0.7587890625,0.7783203125,0.7900390625,0.78515625,0.765625,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.255859375,0.2451171875,0.2314453125,0.2236328125,0.2265625,0.240234375,0.2587890625,0.28515625,0.341796875,0.4326171875,0.541015625,0.6396484375,0.7060546875,0.740234375,0.7724609375,0.8173828125,0.8564453125,0.8642578125,0.8359375,0.7880859375,0.740234375,0.703125,0.69921875,0.720703125,0.7421875,0.7392578125,0.701171875,0.634765625,0.5625,0.498046875,0.4609375,0.4638671875,0.4931640625,0.5224609375,0.5302734375,0.533203125,0.548828125,0.568359375,0.580078125,0.5751953125,0.5556640625,0.5302734375,0.505859375,0.494140625,0.4970703125,0.5078125,0.517578125,0.5146484375,0.5,0.470703125,0.4111328125,0.34765625,0.3173828125,0.337890625,0.3974609375,0.46875,0.548828125,0.642578125,0.7099609375,0.7099609375,0.642578125,0.548828125,0.46875,0.396484375,0.333984375,0.3173828125,0.3642578125,0.4560546875,0.5478515625,0.6044921875,0.6328125,0.595703125,0.4970703125,0.3837890625,0.3095703125,0.306640625,0.3642578125,0.4365234375,0.5078125,0.560546875,0.5849609375,0.5888671875,0.5908203125,0.6044921875,0.6337890625,0.693359375,0.7568359375,0.787109375,0.7666015625,0.70703125,0.634765625,0.5625,0.4912109375,0.427734375,0.3779296875,0.3388671875,0.3017578125,0.2587890625,0.2197265625,0.21875,0.2841796875,0.4111328125,0.560546875,0.6787109375,0.740234375,0.791015625,0.849609375,0.880859375,0.8564453125,0.779296875,0.68359375,0.6044921875,0.537109375,0.49609375,0.4970703125,0.53515625,0.5849609375,0.61328125,0.6044921875,0.5908203125,0.595703125,0.619140625,0.6455078125,0.662109375,0.6572265625,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.5615234375,0.529296875,0.5078125,0.4912109375,0.4697265625,0.4375,0.39453125,0.345703125,0.2958984375,0.28125,0.3251953125,0.4189453125,0.5234375,0.6044921875,0.6591796875,0.64453125,0.5576171875,0.44140625,0.3544921875,0.33984375,0.39453125,0.4658203125,0.5322265625,0.580078125,0.6015625,0.6064453125,0.61328125,0.634765625,0.6591796875,0.67578125,0.6845703125,0.6904296875,0.69921875,0.7158203125,0.740234375,0.7626953125,0.7646484375,0.728515625,0.6572265625,0.572265625,0.5048828125,0.46875,0.4375,0.3916015625,0.3525390625,0.3447265625,0.373046875,0.421875,0.46875,0.51953125,0.580078125,0.6328125,0.6572265625,0.650390625,0.6259765625,0.6044921875,0.5771484375,0.5185546875,0.44140625,0.375,0.33984375,0.341796875,0.3642578125,0.3876953125,0.400390625,0.408203125,0.421875,0.447265625,0.4853515625,0.5302734375,0.5791015625,0.630859375,0.6591796875,0.6435546875,0.587890625,0.5205078125,0.46875,0.4345703125,0.4501953125,0.521484375,0.6240234375,0.712890625,0.7529296875,0.740234375,0.7080078125,0.6611328125,0.61328125,0.5849609375,0.5859375,0.6083984375,0.634765625,0.6455078125,0.5927734375,0.48046875,0.3505859375,0.2548828125,0.2275390625,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.306640625,0.3154296875,0.4052734375,0.546875,0.6787109375,0.7470703125,0.740234375,0.7099609375,0.658203125,0.580078125,0.482421875,0.38671875,0.310546875,0.2587890625,0.23046875,0.2685546875,0.3671875,0.48046875,0.5546875,0.5576171875,0.5,0.431640625,0.3935546875,0.4140625,0.4970703125,0.6083984375,0.69921875,0.740234375,0.7626953125,0.763671875,0.7294921875,0.662109375,0.5859375,0.52734375,0.5,0.4833984375,0.48046875,0.4912109375,0.5078125,0.5185546875,0.515625,0.5,0.474609375,0.435546875,0.408203125,0.421875,0.4794921875,0.5595703125,0.634765625,0.7021484375,0.736328125,0.7099609375,0.6240234375,0.5126953125,0.4287109375,0.39453125,0.3837890625,0.412109375,0.4853515625,0.5849609375,0.6767578125,0.7294921875,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.2275390625,0.25390625,0.33984375,0.44921875,0.53515625,0.5615234375,0.5302734375,0.4765625,0.3994140625,0.31640625,0.2568359375,0.2333984375,0.240234375,0.2587890625,0.27734375,0.2978515625,0.328125,0.3720703125,0.4267578125,0.482421875,0.5302734375,0.5654296875,0.56640625,0.5380859375,0.5078125,0.50390625,0.5390625,0.6044921875,0.6728515625,0.7109375,0.6904296875,0.607421875,0.4951171875,0.4052734375,0.3642578125,0.330078125,0.271484375,0.208984375,0.1728515625,0.177734375,0.2138671875,0.2587890625,0.302734375,0.337890625,0.35546875,0.3564453125,0.349609375,0.349609375,0.3642578125,0.3916015625,0.4443359375,0.5048828125,0.5439453125,0.544921875,0.513671875,0.46875,0.4296875,0.4140625,0.4228515625,0.44140625,0.4501953125,0.43359375,0.39453125,0.361328125,0.380859375,0.4638671875,0.58203125,0.689453125,0.744140625,0.740234375,0.7177734375,0.6826171875,0.6328125,0.5771484375,0.52734375,0.4912109375,0.46875,0.447265625,0.423828125,0.4169921875,0.44140625,0.494140625,0.5546875,0.6044921875,0.6494140625,0.681640625,0.6787109375,0.6357421875,0.56640625,0.50390625,0.46875,0.4326171875,0.361328125,0.275390625,0.2119140625,0.193359375,0.2158203125,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.53125,0.541015625,0.568359375,0.61328125,0.6650390625,0.7099609375,0.740234375,0.775390625,0.8369140625,0.89453125,0.9140625,0.880859375,0.8134765625,0.740234375,0.6728515625,0.6318359375,0.6328125,0.6708984375,0.720703125,0.7490234375,0.740234375,0.7099609375,0.6376953125,0.52734375,0.408203125,0.314453125,0.267578125,0.2587890625,0.2646484375,0.294921875,0.3583984375,0.44140625,0.5224609375,0.578125,0.6044921875,0.626953125,0.66015625,0.6904296875,0.701171875,0.689453125,0.662109375,0.634765625,0.6103515625,0.5869140625,0.5517578125,0.494140625,0.4169921875,0.333984375,0.2587890625,0.189453125,0.138671875,0.134765625,0.1845703125,0.2646484375,0.3330078125,0.3642578125,0.392578125,0.4541015625,0.5380859375,0.61328125,0.654296875,0.6572265625,0.634765625,0.603515625,0.556640625,0.5078125,0.5263671875,0.5078125,0.4970703125,0.5166015625,0.5703125,0.630859375,0.67578125,0.6708984375,0.6015625,0.4921875,0.3896484375,0.3251953125,0.2841796875,0.2890625,0.357421875,0.470703125,0.5859375,0.658203125,0.673828125,0.6748046875,0.6806640625,0.6884765625,0.693359375,0.69140625,0.68359375,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.318359375,0.2890625,0.2509765625,0.2294921875,0.2392578125,0.2763671875,0.3251953125,0.3818359375,0.455078125,0.5341796875,0.6005859375,0.642578125,0.662109375,0.673828125,0.6923828125,0.7353515625,0.783203125,0.8046875,0.78515625,0.734375,0.673828125,0.6220703125,0.61328125,0.6435546875,0.6865234375,0.70703125,0.6845703125,0.6220703125,0.55078125,0.4921875,0.466796875,0.484375,0.525390625,0.5615234375,0.5703125,0.5712890625,0.5771484375,0.5849609375,0.58984375,0.587890625,0.580078125,0.5703125,0.5654296875,0.5791015625,0.599609375,0.6064453125,0.5888671875,0.548828125,0.5,0.4384765625,0.3505859375,0.2724609375,0.2451171875,0.2802734375,0.353515625,0.4287109375,0.5087890625,0.6025390625,0.669921875,0.669921875,0.6025390625,0.5087890625,0.4287109375,0.353515625,0.2802734375,0.2490234375,0.28515625,0.376953125,0.478515625,0.55078125,0.5966796875,0.5791015625,0.498046875,0.3955078125,0.32421875,0.3203125,0.376953125,0.4443359375,0.48828125,0.501953125,0.49609375,0.4912109375,0.5078125,0.55078125,0.6123046875,0.7001953125,0.7783203125,0.8056640625,0.7705078125,0.697265625,0.6220703125,0.5537109375,0.5009765625,0.466796875,0.4453125,0.4208984375,0.3818359375,0.3251953125,0.265625,0.2275390625,0.248046875,0.33984375,0.474609375,0.5966796875,0.673828125,0.740234375,0.8115234375,0.849609375,0.8212890625,0.7353515625,0.6328125,0.55078125,0.48828125,0.4658203125,0.490234375,0.5419921875,0.5859375,0.5908203125,0.55078125,0.5048828125,0.482421875,0.49609375,0.541015625,0.5927734375,0.623046875,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.498046875,0.4755859375,0.4873046875,0.51171875,0.5234375,0.5009765625,0.4482421875,0.380859375,0.306640625,0.2646484375,0.2880859375,0.3701171875,0.470703125,0.55078125,0.6083984375,0.6064453125,0.5439453125,0.455078125,0.392578125,0.390625,0.4482421875,0.5205078125,0.587890625,0.6318359375,0.6435546875,0.630859375,0.6171875,0.6220703125,0.6318359375,0.6396484375,0.6455078125,0.650390625,0.6552734375,0.6630859375,0.673828125,0.6796875,0.6630859375,0.6181640625,0.5537109375,0.4892578125,0.4462890625,0.4287109375,0.41015625,0.3671875,0.3193359375,0.2978515625,0.3173828125,0.3681640625,0.4287109375,0.4990234375,0.587890625,0.6640625,0.6923828125,0.6640625,0.6064453125,0.55078125,0.49609375,0.431640625,0.3759765625,0.3466796875,0.34765625,0.3642578125,0.376953125,0.3837890625,0.37890625,0.3779296875,0.3984375,0.4453125,0.5068359375,0.5703125,0.634765625,0.6982421875,0.7236328125,0.6865234375,0.59765625,0.5,0.4287109375,0.3759765625,0.3671875,0.41796875,0.5126953125,0.611328125,0.6689453125,0.673828125,0.66015625,0.640625,0.619140625,0.60546875,0.6044921875,0.611328125,0.6220703125,0.6162109375,0.552734375,0.4423828125,0.333984375,0.271484375,0.2744140625,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.3154296875,0.3056640625,0.3662109375,0.478515625,0.5966796875,0.6669921875,0.673828125,0.6640625,0.6494140625,0.6162109375,0.5546875,0.47265625,0.3916015625,0.3251953125,0.2802734375,0.2978515625,0.37890625,0.4814453125,0.552734375,0.556640625,0.5,0.4326171875,0.39453125,0.4130859375,0.484375,0.5791015625,0.6494140625,0.673828125,0.6865234375,0.7021484375,0.7041015625,0.6748046875,0.619140625,0.5546875,0.5,0.45703125,0.44921875,0.4775390625,0.521484375,0.5498046875,0.5419921875,0.5,0.4423828125,0.37890625,0.3427734375,0.3662109375,0.4453125,0.5419921875,0.6220703125,0.6943359375,0.755859375,0.767578125,0.712890625,0.611328125,0.51171875,0.4482421875,0.4033203125,0.3935546875,0.4345703125,0.515625,0.6044921875,0.6611328125,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.2802734375,0.30078125,0.3896484375,0.505859375,0.5947265625,0.615234375,0.5703125,0.498046875,0.3935546875,0.2900390625,0.2294921875,0.23046875,0.2734375,0.3251953125,0.3720703125,0.4033203125,0.421875,0.4384765625,0.466796875,0.51171875,0.5703125,0.619140625,0.6201171875,0.57421875,0.5126953125,0.4755859375,0.490234375,0.55078125,0.6181640625,0.6552734375,0.6376953125,0.56640625,0.4716796875,0.4013671875,0.376953125,0.357421875,0.3076171875,0.2490234375,0.2138671875,0.220703125,0.265625,0.3251953125,0.3798828125,0.4013671875,0.3857421875,0.3515625,0.3271484375,0.3349609375,0.376953125,0.4365234375,0.515625,0.58203125,0.6005859375,0.5625,0.494140625,0.4287109375,0.3779296875,0.37109375,0.41015625,0.466796875,0.505859375,0.4990234375,0.4482421875,0.400390625,0.4130859375,0.4892578125,0.5966796875,0.68359375,0.708984375,0.673828125,0.625,0.587890625,0.5615234375,0.5400390625,0.5146484375,0.4775390625,0.4287109375,0.3740234375,0.3154296875,0.2880859375,0.3154296875,0.392578125,0.4814453125,0.55078125,0.609375,0.6455078125,0.6376953125,0.5830078125,0.5087890625,0.4501953125,0.4287109375,0.408203125,0.3525390625,0.28125,0.232421875,0.228515625,0.2666015625,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.5712890625,0.5771484375,0.5927734375,0.6162109375,0.640625,0.6611328125,0.673828125,0.693359375,0.7431640625,0.7978515625,0.82421875,0.802734375,0.744140625,0.673828125,0.6103515625,0.587890625,0.6123046875,0.6640625,0.708984375,0.712890625,0.673828125,0.615234375,0.5361328125,0.44921875,0.37890625,0.3388671875,0.326171875,0.3251953125,0.32421875,0.3212890625,0.333984375,0.3720703125,0.431640625,0.49609375,0.55078125,0.603515625,0.6552734375,0.6884765625,0.6904296875,0.666015625,0.6376953125,0.6220703125,0.6142578125,0.61328125,0.5986328125,0.5546875,0.4833984375,0.400390625,0.3251953125,0.25,0.173828125,0.134765625,0.1572265625,0.2314453125,0.31640625,0.376953125,0.43359375,0.5068359375,0.5791015625,0.6259765625,0.640625,0.6328125,0.6220703125,0.6015625,0.5498046875,0.482421875,0.5166015625,0.48828125,0.474609375,0.498046875,0.5595703125,0.6337890625,0.7080078125,0.740234375,0.703125,0.607421875,0.4990234375,0.419921875,0.357421875,0.326171875,0.349609375,0.419921875,0.5068359375,0.56640625,0.5791015625,0.5791015625,0.580078125,0.58203125,0.58203125,0.58203125,0.5810546875,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.41015625,0.3701171875,0.3193359375,0.291015625,0.3037109375,0.353515625,0.419921875,0.490234375,0.55859375,0.60546875,0.6171875,0.6025390625,0.5830078125,0.5791015625,0.5908203125,0.6328125,0.685546875,0.7138671875,0.7001953125,0.6474609375,0.5791015625,0.5205078125,0.509765625,0.548828125,0.60546875,0.642578125,0.6298828125,0.5693359375,0.4990234375,0.4453125,0.4296875,0.4580078125,0.5087890625,0.5498046875,0.5595703125,0.5595703125,0.560546875,0.5615234375,0.5625,0.5625,0.560546875,0.5595703125,0.5654296875,0.5966796875,0.634765625,0.6484375,0.623046875,0.5673828125,0.5,0.421875,0.322265625,0.2431640625,0.2255859375,0.27734375,0.3623046875,0.439453125,0.51953125,0.61328125,0.6806640625,0.6806640625,0.61328125,0.51953125,0.439453125,0.3623046875,0.27734375,0.2275390625,0.24609375,0.328125,0.4296875,0.509765625,0.5654296875,0.5654296875,0.5078125,0.4267578125,0.369140625,0.37109375,0.4296875,0.4921875,0.5146484375,0.494140625,0.4560546875,0.43359375,0.451171875,0.509765625,0.5869140625,0.6865234375,0.765625,0.783203125,0.732421875,0.6474609375,0.5693359375,0.505859375,0.4755859375,0.4814453125,0.501953125,0.5087890625,0.4814453125,0.419921875,0.345703125,0.2734375,0.2431640625,0.28515625,0.38671875,0.498046875,0.5791015625,0.6552734375,0.740234375,0.791015625,0.7734375,0.6923828125,0.5908203125,0.509765625,0.44921875,0.4365234375,0.474609375,0.533203125,0.57421875,0.56640625,0.509765625,0.4443359375,0.4033203125,0.404296875,0.4501953125,0.5146484375,0.5595703125,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.4501953125,0.4375,0.47265625,0.5263671875,0.5615234375,0.548828125,0.4892578125,0.412109375,0.3212890625,0.259765625,0.263671875,0.333984375,0.4296875,0.509765625,0.568359375,0.5771484375,0.5322265625,0.466796875,0.421875,0.4306640625,0.4892578125,0.560546875,0.6220703125,0.65234375,0.6416015625,0.6064453125,0.576171875,0.5693359375,0.5712890625,0.572265625,0.5732421875,0.5751953125,0.576171875,0.5771484375,0.5791015625,0.578125,0.5634765625,0.533203125,0.4970703125,0.4638671875,0.4443359375,0.439453125,0.4287109375,0.38671875,0.333984375,0.3046875,0.3193359375,0.37109375,0.439453125,0.5185546875,0.6181640625,0.6982421875,0.7158203125,0.666015625,0.583984375,0.509765625,0.4404296875,0.3798828125,0.3486328125,0.35546875,0.3896484375,0.4208984375,0.4296875,0.4248046875,0.400390625,0.3779296875,0.3818359375,0.4228515625,0.48828125,0.5595703125,0.634765625,0.7119140625,0.75,0.71875,0.626953125,0.5205078125,0.439453125,0.375,0.341796875,0.361328125,0.4287109375,0.51171875,0.568359375,0.5791015625,0.5771484375,0.57421875,0.5703125,0.5673828125,0.56640625,0.5673828125,0.5693359375,0.5576171875,0.5,0.4150390625,0.3447265625,0.3232421875,0.35546875,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.36328125,0.330078125,0.3515625,0.421875,0.5087890625,0.5673828125,0.5791015625,0.583984375,0.603515625,0.6201171875,0.6083984375,0.560546875,0.4912109375,0.419921875,0.36328125,0.36328125,0.421875,0.5029296875,0.5595703125,0.5576171875,0.5,0.431640625,0.3876953125,0.390625,0.44140625,0.513671875,0.5654296875,0.5791015625,0.5888671875,0.6201171875,0.6533203125,0.66015625,0.62890625,0.568359375,0.5,0.4423828125,0.4326171875,0.470703125,0.5283203125,0.56640625,0.556640625,0.5,0.4248046875,0.341796875,0.291015625,0.3076171875,0.3876953125,0.48828125,0.5693359375,0.646484375,0.7294921875,0.775390625,0.7529296875,0.6689453125,0.568359375,0.4892578125,0.4248046875,0.3857421875,0.3935546875,0.4462890625,0.5166015625,0.5673828125,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.3642578125,0.37109375,0.44140625,0.5380859375,0.6083984375,0.6142578125,0.5595703125,0.478515625,0.3701171875,0.275390625,0.2392578125,0.2734375,0.3466796875,0.419921875,0.4794921875,0.505859375,0.498046875,0.4755859375,0.46875,0.4970703125,0.5595703125,0.6162109375,0.6201171875,0.568359375,0.4951171875,0.4453125,0.4501953125,0.509765625,0.5771484375,0.62109375,0.6181640625,0.5673828125,0.49609375,0.443359375,0.4296875,0.41796875,0.375,0.3203125,0.2890625,0.30078125,0.3515625,0.419921875,0.478515625,0.4912109375,0.455078125,0.3994140625,0.3623046875,0.373046875,0.4296875,0.505859375,0.5986328125,0.6650390625,0.6689453125,0.6064453125,0.517578125,0.439453125,0.3828125,0.3779296875,0.4287109375,0.5009765625,0.55078125,0.546875,0.4892578125,0.4326171875,0.4326171875,0.490234375,0.572265625,0.6318359375,0.6337890625,0.5791015625,0.5185546875,0.4921875,0.4990234375,0.51953125,0.52734375,0.5,0.439453125,0.365234375,0.283203125,0.2333984375,0.2509765625,0.3310546875,0.4306640625,0.509765625,0.576171875,0.6201171875,0.6181640625,0.5712890625,0.5029296875,0.453125,0.439453125,0.427734375,0.3837890625,0.326171875,0.2919921875,0.3017578125,0.3515625,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5595703125,0.560546875,0.564453125,0.568359375,0.5732421875,0.5771484375,0.5791015625,0.5908203125,0.6337890625,0.6875,0.716796875,0.7021484375,0.6494140625,0.5791015625,0.5185546875,0.505859375,0.5439453125,0.603515625,0.64453125,0.6357421875,0.5791015625,0.5087890625,0.439453125,0.3916015625,0.3779296875,0.3935546875,0.4140625,0.419921875,0.412109375,0.3837890625,0.3525390625,0.34765625,0.3798828125,0.4404296875,0.509765625,0.5771484375,0.6357421875,0.6630859375,0.650390625,0.6123046875,0.5791015625,0.5693359375,0.57421875,0.5966796875,0.6162109375,0.607421875,0.5625,0.4931640625,0.419921875,0.3408203125,0.25,0.1875,0.19140625,0.259765625,0.3525390625,0.4296875,0.5,0.5673828125,0.6123046875,0.62109375,0.6015625,0.5771484375,0.5693359375,0.556640625,0.5068359375,0.4404296875,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.5341796875,0.439453125,0.3701171875,0.3642578125,0.419921875,0.5009765625,0.6103515625,0.70703125,0.74609375,0.71484375,0.6416015625,0.5693359375,0.4990234375,0.4296875,0.3828125,0.37109375,0.3896484375,0.412109375,0.419921875,0.421875,0.423828125,0.42578125,0.42578125,0.423828125,0.421875,0.419921875,0.421875,0.4384765625,0.47265625,0.5146484375,0.5517578125,0.5732421875,0.5791015625,0.5703125,0.5283203125,0.47265625,0.4365234375,0.4443359375,0.4921875,0.5595703125,0.6240234375,0.6591796875,0.642578125,0.5771484375,0.4931640625,0.4345703125,0.419921875,0.427734375,0.4677734375,0.5205078125,0.552734375,0.5439453125,0.49609375,0.4296875,0.373046875,0.365234375,0.4072265625,0.4677734375,0.5087890625,0.498046875,0.439453125,0.37109375,0.318359375,0.302734375,0.3271484375,0.375,0.412109375,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.451171875,0.4990234375,0.5634765625,0.6064453125,0.6044921875,0.55859375,0.4892578125,0.412109375,0.330078125,0.2841796875,0.30859375,0.3955078125,0.4990234375,0.5791015625,0.65625,0.7451171875,0.8046875,0.798828125,0.7294921875,0.6357421875,0.5595703125,0.4814453125,0.384765625,0.3095703125,0.294921875,0.34765625,0.4326171875,0.509765625,0.5693359375,0.587890625,0.5634765625,0.5205078125,0.494140625,0.5107421875,0.5693359375,0.6240234375,0.623046875,0.564453125,0.4833984375,0.427734375,0.4306640625,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.5,0.419921875,0.365234375,0.373046875,0.4462890625,0.546875,0.6220703125,0.6318359375,0.5791015625,0.4990234375,0.3896484375,0.2900390625,0.2490234375,0.2802734375,0.353515625,0.4296875,0.5107421875,0.6142578125,0.697265625,0.7177734375,0.6689453125,0.5859375,0.509765625,0.451171875,0.44140625,0.482421875,0.5419921875,0.5810546875,0.5693359375,0.509765625,0.4375,0.3740234375,0.3408203125,0.34765625,0.380859375,0.412109375,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.43359375,0.42578125,0.46875,0.53125,0.5712890625,0.5595703125,0.5,0.419921875,0.3251953125,0.2578125,0.255859375,0.3203125,0.412109375,0.4892578125,0.5478515625,0.5595703125,0.521484375,0.462890625,0.423828125,0.4326171875,0.4892578125,0.5546875,0.5986328125,0.599609375,0.5546875,0.490234375,0.4423828125,0.4296875,0.427734375,0.42578125,0.423828125,0.423828125,0.42578125,0.427734375,0.4296875,0.4345703125,0.4541015625,0.48828125,0.5263671875,0.55859375,0.576171875,0.5791015625,0.5693359375,0.52734375,0.4716796875,0.4375,0.4453125,0.4931640625,0.5595703125,0.634765625,0.71875,0.7724609375,0.7607421875,0.685546875,0.587890625,0.509765625,0.443359375,0.4013671875,0.4052734375,0.4541015625,0.521484375,0.5693359375,0.5791015625,0.564453125,0.505859375,0.4208984375,0.353515625,0.333984375,0.3662109375,0.4296875,0.509765625,0.6181640625,0.716796875,0.7568359375,0.7265625,0.6533203125,0.5791015625,0.5078125,0.4384765625,0.3935546875,0.384765625,0.40625,0.431640625,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.435546875,0.431640625,0.4296875,0.421875,0.396484375,0.376953125,0.38671875,0.4345703125,0.505859375,0.5791015625,0.658203125,0.7490234375,0.8115234375,0.8076171875,0.7392578125,0.646484375,0.5693359375,0.4990234375,0.4306640625,0.384765625,0.375,0.392578125,0.4140625,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.5185546875,0.4990234375,0.521484375,0.5615234375,0.5859375,0.568359375,0.509765625,0.44140625,0.3828125,0.353515625,0.3623046875,0.39453125,0.423828125,0.4296875,0.439453125,0.48828125,0.5576171875,0.6064453125,0.6103515625,0.5673828125,0.5,0.439453125,0.4296875,0.470703125,0.533203125,0.576171875,0.5673828125,0.509765625,0.4296875,0.3291015625,0.248046875,0.2275390625,0.2744140625,0.35546875,0.4296875,0.5068359375,0.6044921875,0.6806640625,0.697265625,0.646484375,0.564453125,0.4892578125,0.421875,0.36328125,0.3359375,0.3486328125,0.38671875,0.419921875,0.4296875,0.4443359375,0.501953125,0.5830078125,0.646484375,0.6611328125,0.625,0.5595703125,0.498046875,0.4716796875,0.48046875,0.50390625,0.51171875,0.4833984375,0.419921875,0.34375,0.271484375,0.2431640625,0.2861328125,0.3876953125,0.4990234375,0.5791015625,0.6318359375,0.6220703125,0.5478515625,0.44921875,0.37890625,0.373046875,0.4296875,0.4912109375,0.5126953125,0.4921875,0.453125,0.4306640625,0.44921875,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5615234375,0.5234375,0.4736328125,0.4453125,0.4599609375,0.5107421875,0.5791015625,0.63671875,0.6435546875,0.5986328125,0.5341796875,0.490234375,0.5,0.5595703125,0.638671875,0.732421875,0.7978515625,0.796875,0.73046875,0.6376953125,0.5595703125,0.4990234375,0.4794921875,0.501953125,0.5419921875,0.5654296875,0.5478515625,0.4892578125,0.431640625,0.416015625,0.4443359375,0.490234375,0.5166015625,0.4990234375,0.439453125,0.384765625,0.390625,0.4609375,0.5576171875,0.6279296875,0.634765625,0.5791015625,0.5,0.3994140625,0.318359375,0.2998046875,0.349609375,0.43359375,0.509765625,0.5791015625,0.638671875,0.6669921875,0.65625,0.6201171875,0.5869140625,0.5791015625,0.568359375,0.5244140625,0.466796875,0.431640625,0.4404296875,0.490234375,0.5595703125,0.6259765625,0.6611328125,0.64453125,0.5791015625,0.4970703125,0.44140625,0.4296875,0.431640625,0.43359375,0.435546875,0.435546875,0.43359375,0.431640625,0.4296875,0.4384765625,0.478515625,0.53125,0.5625,0.55078125,0.4990234375,0.4296875,0.369140625,0.35546875,0.390625,0.447265625,0.486328125,0.4765625,0.419921875,0.3564453125,0.3232421875,0.341796875,0.408203125,0.490234375,0.546875,0.5595703125,0.548828125,0.501953125,0.4384765625,0.3955078125,0.3974609375,0.4423828125,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.453125,0.509765625,0.5927734375,0.6572265625,0.6728515625,0.6357421875,0.5693359375,0.490234375,0.3984375,0.3349609375,0.337890625,0.4072265625,0.5009765625,0.5791015625,0.6435546875,0.6767578125,0.6552734375,0.583984375,0.49609375,0.4345703125,0.419921875,0.41015625,0.376953125,0.3408203125,0.486328125,0.3740234375,0.29296875,0.2783203125,0.3251953125,0.3994140625,0.509765625,0.625,0.69921875,0.7099609375,0.6728515625,0.6220703125,0.5634765625,0.484375,0.4013671875,0.33984375,0.314453125,0.3154296875,0.3251953125,0.3369140625,0.3505859375,0.3603515625,0.3603515625,0.3505859375,0.3369140625,0.3251953125,0.322265625,0.3505859375,0.4189453125,0.5107421875,0.59765625,0.6533203125,0.673828125,0.6728515625,0.6318359375,0.5654296875,0.5078125,0.48828125,0.5146484375,0.5703125,0.625,0.646484375,0.611328125,0.525390625,0.4228515625,0.349609375,0.3251953125,0.32421875,0.3525390625,0.3994140625,0.439453125,0.44921875,0.423828125,0.376953125,0.337890625,0.341796875,0.3896484375,0.451171875,0.4892578125,0.48046875,0.4287109375,0.3681640625,0.3173828125,0.2900390625,0.29296875,0.314453125,0.330078125,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.439453125,0.4833984375,0.541015625,0.576171875,0.5673828125,0.517578125,0.4482421875,0.375,0.314453125,0.3056640625,0.369140625,0.484375,0.5986328125,0.673828125,0.7373046875,0.7998046875,0.826171875,0.7939453125,0.7158203125,0.630859375,0.5703125,0.51171875,0.4365234375,0.376953125,0.3671875,0.4130859375,0.4853515625,0.55078125,0.60546875,0.62890625,0.6181640625,0.58984375,0.5693359375,0.5791015625,0.6220703125,0.6572265625,0.6318359375,0.548828125,0.451171875,0.3876953125,0.3896484375,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.28125,0.30859375,0.412109375,0.5517578125,0.666015625,0.7060546875,0.673828125,0.607421875,0.4921875,0.36328125,0.2763671875,0.26171875,0.3076171875,0.376953125,0.4599609375,0.5693359375,0.6669921875,0.7080078125,0.6826171875,0.6171875,0.55078125,0.501953125,0.498046875,0.5400390625,0.5966796875,0.62890625,0.6123046875,0.55078125,0.4765625,0.396484375,0.3330078125,0.3037109375,0.306640625,0.3212890625,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.4091796875,0.419921875,0.4755859375,0.541015625,0.5771484375,0.560546875,0.5,0.419921875,0.3251953125,0.2548828125,0.24609375,0.298828125,0.37890625,0.4482421875,0.5,0.515625,0.4892578125,0.44140625,0.4052734375,0.4072265625,0.4482421875,0.4970703125,0.5322265625,0.533203125,0.4970703125,0.4423828125,0.396484375,0.376953125,0.3662109375,0.3525390625,0.3427734375,0.3427734375,0.3525390625,0.3662109375,0.376953125,0.39453125,0.4375,0.505859375,0.580078125,0.6376953125,0.66796875,0.673828125,0.6640625,0.6220703125,0.560546875,0.51171875,0.498046875,0.5224609375,0.5703125,0.6279296875,0.6982421875,0.7490234375,0.7490234375,0.6953125,0.6181640625,0.55078125,0.49609375,0.4716796875,0.4951171875,0.55859375,0.62890625,0.671875,0.673828125,0.6494140625,0.576171875,0.4697265625,0.375,0.326171875,0.3330078125,0.376953125,0.4423828125,0.55078125,0.6728515625,0.7548828125,0.771484375,0.7333984375,0.673828125,0.6064453125,0.5263671875,0.4521484375,0.4091796875,0.40234375,0.416015625,0.4287109375,0.439453125,0.4462890625,0.4443359375,0.4306640625,0.41015625,0.3896484375,0.376953125,0.3642578125,0.3505859375,0.361328125,0.4140625,0.5009765625,0.595703125,0.673828125,0.7490234375,0.8251953125,0.8642578125,0.841796875,0.767578125,0.6826171875,0.6220703125,0.5654296875,0.4921875,0.4169921875,0.3603515625,0.33203125,0.3251953125,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.6181640625,0.587890625,0.5869140625,0.6025390625,0.611328125,0.5947265625,0.55078125,0.4990234375,0.4462890625,0.40625,0.3857421875,0.3837890625,0.384765625,0.376953125,0.3798828125,0.4287109375,0.5078125,0.5751953125,0.5966796875,0.5654296875,0.5,0.439453125,0.4287109375,0.47265625,0.54296875,0.5966796875,0.599609375,0.55078125,0.48046875,0.384765625,0.296875,0.2548828125,0.271484375,0.3232421875,0.376953125,0.435546875,0.5107421875,0.57421875,0.5927734375,0.5615234375,0.5029296875,0.4482421875,0.3955078125,0.34375,0.310546875,0.30859375,0.3330078125,0.361328125,0.376953125,0.400390625,0.466796875,0.5576171875,0.6298828125,0.654296875,0.626953125,0.5703125,0.5146484375,0.4814453125,0.4697265625,0.4609375,0.439453125,0.392578125,0.3251953125,0.2568359375,0.216796875,0.2431640625,0.34375,0.484375,0.60546875,0.673828125,0.7060546875,0.666015625,0.5556640625,0.42578125,0.3349609375,0.3212890625,0.376953125,0.4423828125,0.48046875,0.4873046875,0.4765625,0.4736328125,0.4970703125,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.6240234375,0.6025390625,0.5703125,0.5537109375,0.5693359375,0.6142578125,0.673828125,0.720703125,0.7109375,0.646484375,0.5625,0.5068359375,0.5107421875,0.5703125,0.6484375,0.736328125,0.794921875,0.791015625,0.7265625,0.6396484375,0.5703125,0.5146484375,0.484375,0.484375,0.4990234375,0.5078125,0.4921875,0.4482421875,0.40625,0.40234375,0.4345703125,0.4775390625,0.4990234375,0.482421875,0.4287109375,0.3837890625,0.404296875,0.4931640625,0.609375,0.6982421875,0.71875,0.673828125,0.6025390625,0.5068359375,0.4228515625,0.390625,0.419921875,0.4853515625,0.55078125,0.61328125,0.673828125,0.7119140625,0.71875,0.7001953125,0.6787109375,0.673828125,0.6611328125,0.6064453125,0.5302734375,0.47265625,0.462890625,0.5029296875,0.5703125,0.6337890625,0.6572265625,0.619140625,0.5341796875,0.439453125,0.3818359375,0.376953125,0.388671875,0.40234375,0.412109375,0.412109375,0.40234375,0.388671875,0.376953125,0.376953125,0.4111328125,0.462890625,0.498046875,0.4921875,0.4453125,0.376953125,0.3134765625,0.2841796875,0.2978515625,0.3359375,0.3681640625,0.3662109375,0.3251953125,0.2822265625,0.2744140625,0.3193359375,0.4052734375,0.498046875,0.5576171875,0.5703125,0.5615234375,0.5234375,0.4736328125,0.4423828125,0.44921875,0.4921875,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.443359375,0.5087890625,0.60546875,0.6865234375,0.7158203125,0.6865234375,0.6220703125,0.544921875,0.462890625,0.4150390625,0.43359375,0.509765625,0.6025390625,0.673828125,0.7265625,0.7353515625,0.6767578125,0.5634765625,0.4375,0.3525390625,0.3251953125,0.3095703125,0.28125,0.2646484375,0.3994140625,0.30078125,0.234375,0.2236328125,0.2587890625,0.314453125,0.404296875,0.5107421875,0.5986328125,0.6455078125,0.6513671875,0.634765625,0.6044921875,0.529296875,0.421875,0.3193359375,0.2548828125,0.2392578125,0.2587890625,0.2880859375,0.3232421875,0.34765625,0.34765625,0.3232421875,0.2880859375,0.2587890625,0.2412109375,0.2646484375,0.34765625,0.474609375,0.6064453125,0.69921875,0.740234375,0.7548828125,0.7216796875,0.646484375,0.560546875,0.501953125,0.494140625,0.5302734375,0.5712890625,0.5869140625,0.5546875,0.474609375,0.3759765625,0.296875,0.2587890625,0.23828125,0.2431640625,0.275390625,0.322265625,0.3623046875,0.3759765625,0.3642578125,0.3544921875,0.3798828125,0.43359375,0.48828125,0.517578125,0.5078125,0.46875,0.423828125,0.380859375,0.3447265625,0.3193359375,0.3017578125,0.283203125,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.4775390625,0.509765625,0.546875,0.5576171875,0.52734375,0.4658203125,0.39453125,0.326171875,0.2900390625,0.3193359375,0.421875,0.5615234375,0.677734375,0.740234375,0.7822265625,0.80078125,0.7763671875,0.708984375,0.625,0.5595703125,0.5302734375,0.5068359375,0.4755859375,0.455078125,0.4638671875,0.5029296875,0.5556640625,0.6044921875,0.646484375,0.6728515625,0.673828125,0.654296875,0.630859375,0.6220703125,0.634765625,0.6376953125,0.5810546875,0.4775390625,0.375,0.3203125,0.3330078125,0.39453125,0.4677734375,0.529296875,0.546875,0.5,0.4072265625,0.31640625,0.2587890625,0.228515625,0.2646484375,0.3779296875,0.5322265625,0.669921875,0.7412109375,0.740234375,0.703125,0.6015625,0.4609375,0.3388671875,0.2822265625,0.30078125,0.3642578125,0.4453125,0.5537109375,0.654296875,0.70703125,0.6982421875,0.6533203125,0.6044921875,0.5703125,0.5791015625,0.6240234375,0.673828125,0.6943359375,0.66796875,0.6044921875,0.5263671875,0.4326171875,0.341796875,0.28125,0.2568359375,0.2568359375,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.388671875,0.4287109375,0.501953125,0.568359375,0.5927734375,0.564453125,0.5,0.4208984375,0.3291015625,0.2587890625,0.2421875,0.2802734375,0.3427734375,0.39453125,0.435546875,0.4580078125,0.4521484375,0.4248046875,0.39453125,0.3818359375,0.39453125,0.416015625,0.44140625,0.4580078125,0.453125,0.4267578125,0.392578125,0.3642578125,0.3349609375,0.2998046875,0.275390625,0.275390625,0.2998046875,0.3349609375,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.640625,0.705078125,0.7353515625,0.740234375,0.732421875,0.6962890625,0.634765625,0.5712890625,0.5283203125,0.5166015625,0.5302734375,0.556640625,0.60546875,0.6591796875,0.6904296875,0.6845703125,0.6494140625,0.6044921875,0.5673828125,0.56640625,0.607421875,0.673828125,0.732421875,0.755859375,0.740234375,0.703125,0.626953125,0.5244140625,0.427734375,0.3671875,0.3505859375,0.3642578125,0.3974609375,0.4833984375,0.6044921875,0.71484375,0.7763671875,0.7783203125,0.740234375,0.685546875,0.6044921875,0.5166015625,0.4521484375,0.4306640625,0.443359375,0.46875,0.49609375,0.517578125,0.5185546875,0.4912109375,0.443359375,0.3955078125,0.3642578125,0.3369140625,0.322265625,0.34765625,0.427734375,0.544921875,0.658203125,0.740234375,0.8095703125,0.8603515625,0.8642578125,0.814453125,0.734375,0.666015625,0.634765625,0.607421875,0.5478515625,0.4609375,0.369140625,0.2998046875,0.2646484375,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.6953125,0.6572265625,0.6328125,0.6240234375,0.6240234375,0.6201171875,0.6044921875,0.583984375,0.556640625,0.5185546875,0.474609375,0.4296875,0.392578125,0.3642578125,0.3515625,0.390625,0.46875,0.546875,0.5830078125,0.5625,0.5,0.4384765625,0.4248046875,0.46875,0.546875,0.615234375,0.63671875,0.6044921875,0.552734375,0.478515625,0.40234375,0.3505859375,0.333984375,0.3447265625,0.3642578125,0.3857421875,0.4140625,0.4384765625,0.447265625,0.435546875,0.4150390625,0.39453125,0.3720703125,0.3388671875,0.30859375,0.2978515625,0.3095703125,0.3369140625,0.3642578125,0.3994140625,0.4658203125,0.541015625,0.5927734375,0.6025390625,0.57421875,0.5302734375,0.4892578125,0.46484375,0.44921875,0.427734375,0.3876953125,0.3291015625,0.2587890625,0.197265625,0.1923828125,0.2724609375,0.421875,0.5869140625,0.7001953125,0.740234375,0.740234375,0.666015625,0.5322265625,0.39453125,0.3095703125,0.3056640625,0.3642578125,0.43359375,0.48828125,0.521484375,0.53515625,0.5439453125,0.564453125,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.6572265625,0.662109375,0.6572265625,0.654296875,0.6669921875,0.697265625,0.740234375,0.76953125,0.7353515625,0.6435546875,0.5380859375,0.470703125,0.4716796875,0.5302734375,0.60546875,0.6845703125,0.7314453125,0.720703125,0.6591796875,0.583984375,0.5302734375,0.4853515625,0.4462890625,0.421875,0.4140625,0.4140625,0.41015625,0.39453125,0.3837890625,0.4052734375,0.4521484375,0.5,0.521484375,0.5087890625,0.46875,0.4375,0.4638671875,0.5498046875,0.6591796875,0.7451171875,0.771484375,0.740234375,0.6865234375,0.6103515625,0.5380859375,0.501953125,0.5146484375,0.5576171875,0.6044921875,0.65234375,0.701171875,0.740234375,0.7568359375,0.7529296875,0.7431640625,0.740234375,0.7255859375,0.658203125,0.5576171875,0.4716796875,0.4384765625,0.46484375,0.5302734375,0.591796875,0.609375,0.5654296875,0.48046875,0.39453125,0.3525390625,0.3642578125,0.3935546875,0.427734375,0.4521484375,0.4521484375,0.427734375,0.3935546875,0.3642578125,0.3486328125,0.37109375,0.4189453125,0.4609375,0.466796875,0.4296875,0.3642578125,0.294921875,0.240234375,0.2177734375,0.228515625,0.2548828125,0.26953125,0.2587890625,0.2470703125,0.265625,0.3232421875,0.40234375,0.4765625,0.5205078125,0.5302734375,0.525390625,0.5078125,0.4912109375,0.4912109375,0.5166015625,0.55859375,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.4833984375,0.544921875,0.6357421875,0.708984375,0.7333984375,0.701171875,0.634765625,0.5615234375,0.4951171875,0.4716796875,0.5107421875,0.595703125,0.68359375,0.740234375,0.7763671875,0.7666015625,0.6875,0.5517578125,0.40625,0.3017578125,0.2587890625,0.228515625,0.197265625,0.1923828125,0.3173828125,0.2587890625,0.23046875,0.2353515625,0.2587890625,0.2900390625,0.33984375,0.408203125,0.48046875,0.541015625,0.58203125,0.6044921875,0.6083984375,0.5546875,0.447265625,0.328125,0.2451171875,0.2255859375,0.2587890625,0.3095703125,0.369140625,0.4111328125,0.4111328125,0.369140625,0.3095703125,0.2587890625,0.2197265625,0.21875,0.2841796875,0.4111328125,0.560546875,0.6787109375,0.740234375,0.7744140625,0.7587890625,0.6875,0.5849609375,0.49609375,0.4560546875,0.46875,0.49609375,0.5166015625,0.5078125,0.4609375,0.3857421875,0.3115234375,0.2587890625,0.2158203125,0.1875,0.1953125,0.2421875,0.3095703125,0.3662109375,0.39453125,0.419921875,0.46484375,0.5185546875,0.5576171875,0.5693359375,0.5546875,0.5302734375,0.50390625,0.478515625,0.447265625,0.4052734375,0.3564453125,0.3056640625,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.5361328125,0.5576171875,0.57421875,0.560546875,0.509765625,0.4375,0.3642578125,0.2998046875,0.27734375,0.328125,0.447265625,0.5888671875,0.6953125,0.740234375,0.7568359375,0.732421875,0.662109375,0.5712890625,0.4951171875,0.4609375,0.46875,0.4873046875,0.5068359375,0.52734375,0.5517578125,0.580078125,0.6083984375,0.634765625,0.662109375,0.689453125,0.701171875,0.6904296875,0.66015625,0.626953125,0.6044921875,0.5703125,0.486328125,0.375,0.2890625,0.2626953125,0.296875,0.3642578125,0.4345703125,0.490234375,0.5,0.4521484375,0.37109375,0.296875,0.2587890625,0.2421875,0.26953125,0.3583984375,0.48828125,0.619140625,0.70703125,0.740234375,0.740234375,0.6708984375,0.5439453125,0.4140625,0.3359375,0.3349609375,0.39453125,0.4736328125,0.5703125,0.6572265625,0.701171875,0.697265625,0.6650390625,0.634765625,0.619140625,0.6416015625,0.6904296875,0.7314453125,0.73828125,0.701171875,0.634765625,0.556640625,0.4580078125,0.361328125,0.2919921875,0.26171875,0.2578125,0.2587890625,0.2587890625,0.2607421875,0.26953125,0.2900390625,0.31640625,0.3427734375,0.3642578125,0.3955078125,0.4677734375,0.5546875,0.61328125,0.6162109375,0.568359375,0.5,0.4228515625,0.3388671875,0.275390625,0.2587890625,0.287109375,0.33203125,0.3642578125,0.392578125,0.4228515625,0.44140625,0.4384765625,0.4150390625,0.3857421875,0.3642578125,0.3525390625,0.369140625,0.40625,0.44140625,0.453125,0.435546875,0.39453125,0.34375,0.2841796875,0.2421875,0.2421875,0.2841796875,0.34375,0.39453125,0.4462890625,0.521484375,0.607421875,0.6796875,0.72265625,0.73828125,0.740234375,0.736328125,0.71484375,0.66796875,0.6044921875,0.541015625,0.494140625,0.46875,0.4580078125,0.4794921875,0.533203125,0.595703125,0.642578125,0.654296875,0.634765625,0.6181640625,0.6376953125,0.6904296875,0.748046875,0.783203125,0.7783203125,0.740234375,0.6904296875,0.626953125,0.5546875,0.4912109375,0.4443359375,0.4150390625,0.39453125,0.3876953125,0.4306640625,0.5244140625,0.634765625,0.7216796875,0.7548828125,0.740234375,0.703125,0.6318359375,0.546875,0.482421875,0.4638671875,0.4873046875,0.5302734375,0.5771484375,0.6201171875,0.6318359375,0.5966796875,0.5234375,0.4482421875,0.39453125,0.3486328125,0.3154296875,0.3310546875,0.4111328125,0.53515625,0.65625,0.740234375,0.8037109375,0.8291015625,0.7978515625,0.7236328125,0.6435546875,0.599609375,0.6044921875,0.615234375,0.5869140625,0.513671875,0.4140625,0.322265625,0.26953125,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.708984375,0.666015625,0.6240234375,0.599609375,0.5986328125,0.615234375,0.634765625,0.654296875,0.6650390625,0.6484375,0.5966796875,0.5205078125,0.4462890625,0.39453125,0.3623046875,0.3837890625,0.4521484375,0.5302734375,0.57421875,0.560546875,0.5,0.4365234375,0.416015625,0.4521484375,0.5302734375,0.6083984375,0.6474609375,0.634765625,0.6064453125,0.5693359375,0.5244140625,0.48046875,0.4423828125,0.4150390625,0.39453125,0.373046875,0.34375,0.3193359375,0.3115234375,0.322265625,0.34375,0.3642578125,0.376953125,0.3681640625,0.3447265625,0.3251953125,0.326171875,0.3525390625,0.39453125,0.4443359375,0.501953125,0.5458984375,0.5576171875,0.5361328125,0.4990234375,0.46875,0.4482421875,0.4453125,0.447265625,0.4326171875,0.392578125,0.330078125,0.2587890625,0.203125,0.2197265625,0.328125,0.494140625,0.6513671875,0.7373046875,0.740234375,0.7041015625,0.6064453125,0.4716796875,0.3583984375,0.30859375,0.330078125,0.39453125,0.4658203125,0.5322265625,0.580078125,0.6015625,0.6064453125,0.61328125,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.6484375,0.6826171875,0.701171875,0.70703125,0.7080078125,0.7177734375,0.740234375,0.7490234375,0.6943359375,0.5849609375,0.4716796875,0.4052734375,0.4091796875,0.46875,0.54296875,0.6103515625,0.6435546875,0.6240234375,0.5654296875,0.5048828125,0.46875,0.4384765625,0.3955078125,0.3525390625,0.328125,0.328125,0.3447265625,0.3642578125,0.3896484375,0.439453125,0.5,0.546875,0.564453125,0.5546875,0.5302734375,0.5126953125,0.5341796875,0.595703125,0.673828125,0.7353515625,0.7568359375,0.740234375,0.7080078125,0.6611328125,0.61328125,0.5849609375,0.5859375,0.6083984375,0.634765625,0.6630859375,0.6953125,0.7236328125,0.740234375,0.744140625,0.7412109375,0.740234375,0.7236328125,0.6494140625,0.53515625,0.43359375,0.3857421875,0.4052734375,0.46875,0.53125,0.5478515625,0.5107421875,0.44140625,0.3798828125,0.3623046875,0.39453125,0.4443359375,0.50390625,0.546875,0.546875,0.50390625,0.4443359375,0.39453125,0.3603515625,0.369140625,0.4140625,0.4638671875,0.484375,0.4580078125,0.39453125,0.3193359375,0.2392578125,0.181640625,0.16796875,0.1943359375,0.2333984375,0.2587890625,0.2822265625,0.3212890625,0.3720703125,0.419921875,0.4521484375,0.466796875,0.46875,0.4697265625,0.474609375,0.4912109375,0.5244140625,0.56640625,0.60546875,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5419921875,0.5927734375,0.662109375,0.712890625,0.7158203125,0.6728515625,0.6044921875,0.5341796875,0.4833984375,0.48046875,0.53515625,0.6240234375,0.701171875,0.740234375,0.7607421875,0.748046875,0.6796875,0.560546875,0.4248046875,0.318359375,0.2587890625,0.2109375,0.1650390625,0.15625,0.279296875,0.26953125,0.2861328125,0.310546875,0.3251953125,0.333984375,0.3388671875,0.353515625,0.38671875,0.439453125,0.498046875,0.55078125,0.5869140625,0.5615234375,0.474609375,0.3671875,0.2900390625,0.2783203125,0.3251953125,0.3935546875,0.474609375,0.53125,0.53125,0.474609375,0.3935546875,0.3251953125,0.265625,0.2275390625,0.248046875,0.33984375,0.474609375,0.5966796875,0.673828125,0.7255859375,0.7353515625,0.6845703125,0.5888671875,0.4912109375,0.43359375,0.4287109375,0.4453125,0.4755859375,0.5,0.4951171875,0.4521484375,0.3896484375,0.3251953125,0.26171875,0.2021484375,0.1796875,0.216796875,0.298828125,0.38671875,0.4482421875,0.501953125,0.5595703125,0.6044921875,0.619140625,0.6064453125,0.583984375,0.5703125,0.5625,0.5615234375,0.55078125,0.5166015625,0.4580078125,0.3896484375,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.5751953125,0.59375,0.6044921875,0.583984375,0.52734375,0.451171875,0.376953125,0.3134765625,0.2900390625,0.3359375,0.439453125,0.5615234375,0.646484375,0.673828125,0.6708984375,0.619140625,0.5283203125,0.4375,0.384765625,0.38671875,0.4287109375,0.4814453125,0.5361328125,0.5810546875,0.60546875,0.61328125,0.6142578125,0.6220703125,0.6376953125,0.666015625,0.6904296875,0.6884765625,0.6552734375,0.603515625,0.55078125,0.4873046875,0.3876953125,0.2861328125,0.2314453125,0.2431640625,0.3046875,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.31640625,0.3212890625,0.359375,0.43359375,0.5283203125,0.6142578125,0.673828125,0.7080078125,0.67578125,0.58203125,0.4697265625,0.39453125,0.390625,0.4482421875,0.5234375,0.6025390625,0.662109375,0.6826171875,0.666015625,0.6376953125,0.6220703125,0.62109375,0.6552734375,0.70703125,0.7421875,0.736328125,0.6904296875,0.6220703125,0.544921875,0.45703125,0.376953125,0.3291015625,0.31640625,0.322265625,0.3251953125,0.3193359375,0.296875,0.26953125,0.26171875,0.283203125,0.326171875,0.376953125,0.439453125,0.533203125,0.6240234375,0.6650390625,0.640625,0.5732421875,0.5,0.42578125,0.3525390625,0.3037109375,0.2978515625,0.3251953125,0.3603515625,0.376953125,0.39453125,0.431640625,0.4716796875,0.4892578125,0.4716796875,0.4287109375,0.376953125,0.337890625,0.3447265625,0.396484375,0.462890625,0.505859375,0.4990234375,0.4482421875,0.3798828125,0.298828125,0.2421875,0.2421875,0.298828125,0.3798828125,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.6806640625,0.6845703125,0.6767578125,0.673828125,0.6748046875,0.6748046875,0.658203125,0.615234375,0.55078125,0.484375,0.4287109375,0.3857421875,0.3779296875,0.4189453125,0.49609375,0.5751953125,0.6201171875,0.6220703125,0.62109375,0.6552734375,0.7109375,0.7548828125,0.7626953125,0.73046875,0.673828125,0.615234375,0.5732421875,0.548828125,0.537109375,0.5234375,0.494140625,0.4482421875,0.4052734375,0.4013671875,0.4501953125,0.53515625,0.6220703125,0.6708984375,0.673828125,0.65234375,0.5966796875,0.525390625,0.4765625,0.47265625,0.51171875,0.5703125,0.6357421875,0.701171875,0.73046875,0.6982421875,0.6142578125,0.5185546875,0.4482421875,0.3837890625,0.32421875,0.3095703125,0.365234375,0.474609375,0.58984375,0.673828125,0.7333984375,0.7412109375,0.689453125,0.60546875,0.5341796875,0.5146484375,0.55078125,0.595703125,0.60546875,0.564453125,0.4833984375,0.39453125,0.337890625,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.6552734375,0.611328125,0.560546875,0.529296875,0.53515625,0.572265625,0.6220703125,0.67578125,0.7275390625,0.744140625,0.7021484375,0.6142578125,0.5185546875,0.4482421875,0.3994140625,0.40234375,0.4560546875,0.5263671875,0.5703125,0.5595703125,0.5,0.43359375,0.40234375,0.423828125,0.4912109375,0.5703125,0.619140625,0.6220703125,0.6142578125,0.615234375,0.61328125,0.5927734375,0.552734375,0.5,0.4482421875,0.3896484375,0.314453125,0.2509765625,0.232421875,0.263671875,0.322265625,0.376953125,0.419921875,0.4296875,0.4091796875,0.380859375,0.3701171875,0.3935546875,0.4482421875,0.5087890625,0.556640625,0.572265625,0.5458984375,0.4931640625,0.4482421875,0.4287109375,0.4267578125,0.4482421875,0.4765625,0.484375,0.455078125,0.396484375,0.3251953125,0.271484375,0.2900390625,0.392578125,0.5361328125,0.658203125,0.705078125,0.673828125,0.6083984375,0.501953125,0.388671875,0.3203125,0.3212890625,0.3759765625,0.4482421875,0.5205078125,0.587890625,0.6318359375,0.6435546875,0.630859375,0.6171875,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.6123046875,0.666015625,0.697265625,0.6982421875,0.6826171875,0.6689453125,0.673828125,0.66796875,0.6044921875,0.498046875,0.3984375,0.349609375,0.3662109375,0.4287109375,0.5,0.55859375,0.580078125,0.5537109375,0.498046875,0.44921875,0.4287109375,0.41015625,0.3671875,0.3154296875,0.28515625,0.2900390625,0.3271484375,0.376953125,0.4326171875,0.5,0.5595703125,0.59375,0.5966796875,0.5830078125,0.5703125,0.5634765625,0.5751953125,0.603515625,0.6396484375,0.6689453125,0.6796875,0.673828125,0.66015625,0.640625,0.619140625,0.60546875,0.6044921875,0.611328125,0.6220703125,0.6328125,0.646484375,0.66015625,0.669921875,0.673828125,0.673828125,0.673828125,0.658203125,0.5859375,0.478515625,0.3837890625,0.341796875,0.365234375,0.4287109375,0.490234375,0.509765625,0.4814453125,0.4296875,0.392578125,0.3974609375,0.4482421875,0.515625,0.5966796875,0.6533203125,0.6533203125,0.5966796875,0.515625,0.4482421875,0.3984375,0.39453125,0.4375,0.4931640625,0.525390625,0.5087890625,0.4482421875,0.3681640625,0.271484375,0.1923828125,0.1689453125,0.205078125,0.2685546875,0.3251953125,0.3779296875,0.427734375,0.4599609375,0.4658203125,0.451171875,0.43359375,0.4287109375,0.431640625,0.44921875,0.484375,0.53125,0.576171875,0.607421875,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.5791015625,0.619140625,0.66796875,0.693359375,0.67578125,0.62109375,0.55078125,0.482421875,0.439453125,0.4453125,0.50390625,0.5859375,0.650390625,0.673828125,0.68359375,0.6845703125,0.6552734375,0.5849609375,0.48828125,0.39453125,0.3251953125,0.259765625,0.1943359375,0.1689453125,0.30078125,0.32421875,0.3701171875,0.4091796875,0.419921875,0.4140625,0.38671875,0.35546875,0.349609375,0.380859375,0.44140625,0.509765625,0.564453125,0.5625,0.5029296875,0.4208984375,0.3623046875,0.36328125,0.419921875,0.498046875,0.58984375,0.654296875,0.654296875,0.58984375,0.498046875,0.419921875,0.345703125,0.2734375,0.2431640625,0.28515625,0.38671875,0.498046875,0.5791015625,0.6435546875,0.6767578125,0.658203125,0.5908203125,0.5078125,0.451171875,0.439453125,0.4501953125,0.490234375,0.5380859375,0.5615234375,0.54296875,0.48828125,0.419921875,0.34375,0.26171875,0.212890625,0.232421875,0.3125,0.412109375,0.4892578125,0.5576171875,0.6171875,0.646484375,0.63671875,0.6015625,0.568359375,0.5595703125,0.564453125,0.5869140625,0.607421875,0.6005859375,0.55859375,0.4912109375,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.56640625,0.591796875,0.6171875,0.61328125,0.5703125,0.5029296875,0.4296875,0.36328125,0.328125,0.3466796875,0.416015625,0.5029296875,0.564453125,0.5791015625,0.568359375,0.5126953125,0.4306640625,0.3642578125,0.3447265625,0.376953125,0.439453125,0.5087890625,0.57421875,0.6142578125,0.619140625,0.5966796875,0.57421875,0.5693359375,0.5791015625,0.6123046875,0.650390625,0.6630859375,0.6357421875,0.5771484375,0.509765625,0.4306640625,0.330078125,0.24609375,0.2236328125,0.26953125,0.3525390625,0.4296875,0.5,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.412109375,0.390625,0.375,0.388671875,0.4384765625,0.5087890625,0.5791015625,0.6337890625,0.630859375,0.5703125,0.4873046875,0.4296875,0.431640625,0.4892578125,0.5615234375,0.6240234375,0.6572265625,0.6484375,0.6123046875,0.5791015625,0.5693359375,0.5771484375,0.6181640625,0.6708984375,0.7021484375,0.6904296875,0.638671875,0.5693359375,0.49609375,0.42578125,0.37890625,0.3701171875,0.3896484375,0.4130859375,0.419921875,0.41015625,0.3720703125,0.3232421875,0.296875,0.3115234375,0.36328125,0.4296875,0.5078125,0.6083984375,0.689453125,0.7099609375,0.6611328125,0.5771484375,0.5,0.427734375,0.3662109375,0.3359375,0.3466796875,0.3857421875,0.419921875,0.4296875,0.4404296875,0.4814453125,0.533203125,0.5615234375,0.5478515625,0.49609375,0.4296875,0.3740234375,0.3720703125,0.4248046875,0.5,0.55078125,0.546875,0.4892578125,0.412109375,0.3193359375,0.2548828125,0.2548828125,0.3193359375,0.412109375,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.6484375,0.6171875,0.5869140625,0.5791015625,0.5859375,0.6083984375,0.6279296875,0.6201171875,0.576171875,0.509765625,0.439453125,0.3759765625,0.3427734375,0.3603515625,0.4248046875,0.50390625,0.55859375,0.5693359375,0.5771484375,0.6181640625,0.6728515625,0.705078125,0.6962890625,0.646484375,0.5791015625,0.5185546875,0.49609375,0.5146484375,0.548828125,0.568359375,0.548828125,0.4892578125,0.42578125,0.3876953125,0.3955078125,0.44921875,0.51953125,0.5693359375,0.5791015625,0.5673828125,0.5234375,0.4658203125,0.431640625,0.44140625,0.4912109375,0.5595703125,0.6357421875,0.71875,0.7685546875,0.75,0.669921875,0.5693359375,0.4892578125,0.4130859375,0.3310546875,0.28515625,0.30859375,0.3935546875,0.498046875,0.5791015625,0.6376953125,0.6416015625,0.5888671875,0.5107421875,0.455078125,0.4541015625,0.509765625,0.57421875,0.61328125,0.60546875,0.552734375,0.482421875,0.431640625,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.568359375,0.525390625,0.47265625,0.44140625,0.453125,0.5029296875,0.5693359375,0.6435546875,0.724609375,0.771484375,0.7509765625,0.669921875,0.5693359375,0.4892578125,0.431640625,0.4228515625,0.4658203125,0.5283203125,0.5693359375,0.5595703125,0.5,0.431640625,0.388671875,0.392578125,0.44140625,0.5107421875,0.5595703125,0.5693359375,0.5751953125,0.6044921875,0.63671875,0.6455078125,0.6162109375,0.5576171875,0.4892578125,0.412109375,0.3154296875,0.23828125,0.22265625,0.2724609375,0.35546875,0.4296875,0.48828125,0.5048828125,0.478515625,0.435546875,0.4111328125,0.4296875,0.4892578125,0.556640625,0.6025390625,0.6064453125,0.5634765625,0.5,0.4521484375,0.439453125,0.447265625,0.4853515625,0.5341796875,0.560546875,0.5439453125,0.490234375,0.419921875,0.36328125,0.3701171875,0.443359375,0.544921875,0.62109375,0.6318359375,0.5791015625,0.5009765625,0.3984375,0.3115234375,0.287109375,0.3310546875,0.412109375,0.4892578125,0.560546875,0.6220703125,0.65234375,0.6416015625,0.6064453125,0.576171875,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.5791015625,0.6376953125,0.6650390625,0.6533203125,0.6171875,0.5859375,0.5791015625,0.5673828125,0.509765625,0.42578125,0.3583984375,0.3388671875,0.373046875,0.439453125,0.509765625,0.5634765625,0.5771484375,0.5478515625,0.494140625,0.451171875,0.439453125,0.4287109375,0.3857421875,0.3330078125,0.3017578125,0.3134765625,0.36328125,0.4296875,0.5,0.56640625,0.609375,0.615234375,0.5927734375,0.5673828125,0.5595703125,0.55859375,0.560546875,0.56640625,0.572265625,0.578125,0.580078125,0.5791015625,0.5771484375,0.57421875,0.5703125,0.5673828125,0.56640625,0.5673828125,0.5693359375,0.5712890625,0.5732421875,0.576171875,0.578125,0.5791015625,0.5791015625,0.5791015625,0.56640625,0.5078125,0.4228515625,0.35546875,0.337890625,0.373046875,0.439453125,0.5009765625,0.5185546875,0.4912109375,0.4443359375,0.4150390625,0.4306640625,0.4892578125,0.5673828125,0.6591796875,0.724609375,0.724609375,0.6591796875,0.5673828125,0.4892578125,0.431640625,0.421875,0.4619140625,0.5224609375,0.5615234375,0.5498046875,0.4892578125,0.408203125,0.3076171875,0.228515625,0.2109375,0.26171875,0.3447265625,0.419921875,0.486328125,0.5390625,0.556640625,0.5322265625,0.486328125,0.44921875,0.439453125,0.4423828125,0.45703125,0.4853515625,0.5185546875,0.5478515625,0.564453125,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.568359375,0.603515625,0.646484375,0.6630859375,0.638671875,0.580078125,0.509765625,0.44140625,0.396484375,0.3974609375,0.4453125,0.5146484375,0.56640625,0.5791015625,0.5869140625,0.609375,0.6259765625,0.61328125,0.5634765625,0.4921875,0.419921875,0.34375,0.2607421875,0.2119140625,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.568359375,0.5185546875,0.44921875,0.3994140625,0.39453125,0.4345703125,0.5,0.5576171875,0.5732421875,0.5458984375,0.501953125,0.4775390625,0.498046875,0.5595703125,0.6396484375,0.734375,0.8046875,0.8095703125,0.7470703125,0.6572265625,0.5791015625,0.498046875,0.390625,0.294921875,0.2587890625,0.29296875,0.3671875,0.439453125,0.5087890625,0.5751953125,0.615234375,0.619140625,0.59375,0.5673828125,0.5595703125,0.5673828125,0.6083984375,0.6640625,0.6982421875,0.69140625,0.6455078125,0.5791015625,0.5009765625,0.40234375,0.3212890625,0.302734375,0.3505859375,0.43359375,0.509765625,0.576171875,0.6201171875,0.6181640625,0.5712890625,0.5029296875,0.453125,0.439453125,0.451171875,0.505859375,0.587890625,0.654296875,0.6748046875,0.642578125,0.5791015625,0.5087890625,0.439453125,0.3916015625,0.3779296875,0.3935546875,0.4140625,0.419921875,0.43359375,0.4931640625,0.5810546875,0.6533203125,0.67578125,0.6435546875,0.5791015625,0.5078125,0.4375,0.3896484375,0.37890625,0.3984375,0.421875,0.4296875,0.42578125,0.4052734375,0.3876953125,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.642578125,0.67578125,0.65625,0.587890625,0.50390625,0.4443359375,0.4296875,0.439453125,0.4892578125,0.55859375,0.6103515625,0.6162109375,0.5751953125,0.509765625,0.4326171875,0.3466796875,0.2939453125,0.3095703125,0.3876953125,0.48828125,0.5693359375,0.6396484375,0.6923828125,0.70703125,0.677734375,0.6240234375,0.5810546875,0.5693359375,0.5546875,0.494140625,0.41015625,0.3427734375,0.326171875,0.36328125,0.4296875,0.4912109375,0.51171875,0.4892578125,0.4501953125,0.427734375,0.4482421875,0.509765625,0.5771484375,0.62109375,0.619140625,0.5703125,0.501953125,0.451171875,0.439453125,0.44921875,0.490234375,0.5419921875,0.572265625,0.55859375,0.5078125,0.439453125,0.375,0.3388671875,0.353515625,0.416015625,0.494140625,0.548828125,0.5595703125,0.5478515625,0.5048828125,0.451171875,0.421875,0.435546875,0.4892578125,0.5595703125,0.63671875,0.7216796875,0.7734375,0.755859375,0.6767578125,0.5771484375,0.5,0.4345703125,0.39453125,0.3984375,0.4462890625,0.5126953125,0.5595703125,0.5693359375,0.5771484375,0.6181640625,0.6708984375,0.7021484375,0.6904296875,0.638671875,0.5693359375,0.5068359375,0.484375,0.5048828125,0.54296875,0.5654296875,0.5478515625,0.4892578125,0.4130859375,0.3212890625,0.2548828125,0.25390625,0.318359375,0.41015625,0.4892578125,0.5576171875,0.6015625,0.6005859375,0.5537109375,0.4873046875,0.439453125,0.4296875,0.4443359375,0.5009765625,0.5810546875,0.6435546875,0.658203125,0.623046875,0.5595703125,0.4892578125,0.4228515625,0.37890625,0.37109375,0.390625,0.4130859375,0.419921875,0.4296875,0.470703125,0.5234375,0.5556640625,0.544921875,0.49609375,0.4296875,0.3740234375,0.37109375,0.4228515625,0.49609375,0.5478515625,0.544921875,0.4892578125,0.421875,0.3642578125,0.3369140625,0.3486328125,0.3837890625,0.4130859375,0.419921875,0.408203125,0.3662109375,0.3134765625,0.28515625,0.298828125,0.3515625,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.4794921875,0.4970703125,0.47265625,0.4306640625,0.408203125,0.427734375,0.4892578125,0.5615234375,0.623046875,0.6552734375,0.6484375,0.615234375,0.5859375,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.41015625,0.369140625,0.318359375,0.291015625,0.3056640625,0.359375,0.4296875,0.5107421875,0.6142578125,0.697265625,0.7177734375,0.6689453125,0.5859375,0.509765625,0.451171875,0.4404296875,0.478515625,0.5361328125,0.572265625,0.5595703125,0.5,0.427734375,0.3642578125,0.33203125,0.3408203125,0.376953125,0.41015625,0.419921875,0.4326171875,0.482421875,0.548828125,0.595703125,0.5966796875,0.5546875,0.4892578125,0.4150390625,0.3310546875,0.28125,0.2978515625,0.3779296875,0.478515625,0.5595703125,0.6181640625,0.6240234375,0.57421875,0.5009765625,0.44921875,0.4521484375,0.509765625,0.5791015625,0.638671875,0.6669921875,0.65625,0.6201171875,0.5869140625,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.505859375,0.478515625,0.4892578125,0.5146484375,0.5263671875,0.5009765625,0.439453125,0.36328125,0.27734375,0.224609375,0.2392578125,0.318359375,0.4189453125,0.5,0.568359375,0.61328125,0.611328125,0.5634765625,0.494140625,0.443359375,0.4296875,0.419921875,0.3876953125,0.353515625,0.345703125,0.376953125,0.439453125,0.509765625,0.5751953125,0.6162109375,0.6083984375,0.5556640625,0.4833984375,0.431640625,0.419921875,0.4130859375,0.390625,0.37109375,0.37890625,0.4228515625,0.4892578125,0.5595703125,0.6259765625,0.6748046875,0.685546875,0.65625,0.60546875,0.5673828125,0.5595703125,0.5517578125,0.513671875,0.46484375,0.4384765625,0.455078125,0.5087890625,0.5791015625,0.6455078125,0.681640625,0.6630859375,0.595703125,0.51171875,0.453125,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.44140625,0.4423828125,0.4423828125,0.4423828125,0.4404296875,0.4404296875,0.439453125,0.439453125,0.4384765625,0.4375,0.4365234375,0.4365234375,0.4384765625,0.439453125,0.4345703125,0.412109375,0.3916015625,0.3984375,0.4404296875,0.5078125,0.5791015625,0.6357421875,0.6357421875,0.5771484375,0.49609375,0.439453125,0.44140625,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4296875,0.470703125,0.533203125,0.576171875,0.5673828125,0.509765625,0.43359375,0.3505859375,0.302734375,0.3212890625,0.40234375,0.5009765625,0.5791015625,0.6455078125,0.693359375,0.7021484375,0.669921875,0.6171875,0.5771484375,0.5693359375,0.5673828125,0.55078125,0.5185546875,0.48046875,0.4482421875,0.431640625,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.4306640625,0.4814453125,0.5546875,0.609375,0.6171875,0.5771484375,0.509765625,0.4375,0.3740234375,0.3408203125,0.34765625,0.380859375,0.412109375,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.4794921875,0.37890625,0.298828125,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.662109375,0.611328125,0.53515625,0.466796875,0.4375,0.4541015625,0.5,0.541015625,0.544921875,0.5166015625,0.4833984375,0.474609375,0.505859375,0.5703125,0.650390625,0.7509765625,0.8330078125,0.8564453125,0.814453125,0.740234375,0.673828125,0.6005859375,0.4970703125,0.392578125,0.3330078125,0.3330078125,0.376953125,0.4287109375,0.4833984375,0.5439453125,0.5927734375,0.6123046875,0.6044921875,0.583984375,0.5703125,0.5693359375,0.6044921875,0.6630859375,0.716796875,0.7373046875,0.71875,0.673828125,0.6123046875,0.5244140625,0.4423828125,0.4052734375,0.427734375,0.4873046875,0.55078125,0.609375,0.6455078125,0.6376953125,0.5830078125,0.5087890625,0.4501953125,0.4287109375,0.431640625,0.4833984375,0.57421875,0.6640625,0.7177734375,0.7158203125,0.673828125,0.615234375,0.5361328125,0.44921875,0.37890625,0.3388671875,0.326171875,0.3251953125,0.341796875,0.419921875,0.5439453125,0.6611328125,0.7275390625,0.724609375,0.673828125,0.60546875,0.5185546875,0.43359375,0.376953125,0.3583984375,0.365234375,0.376953125,0.3876953125,0.4013671875,0.4306640625,0.4833984375,0.55078125,0.6181640625,0.673828125,0.7177734375,0.724609375,0.67578125,0.580078125,0.474609375,0.4013671875,0.376953125,0.3798828125,0.4287109375,0.51171875,0.587890625,0.623046875,0.60546875,0.55078125,0.4833984375,0.4052734375,0.3564453125,0.3701171875,0.4453125,0.5419921875,0.6220703125,0.693359375,0.7509765625,0.7724609375,0.74609375,0.69140625,0.6416015625,0.6220703125,0.595703125,0.5166015625,0.4072265625,0.31640625,0.283203125,0.3115234375,0.376953125,0.44140625,0.47265625,0.4716796875,0.45703125,0.455078125,0.4873046875,0.55078125,0.6181640625,0.6552734375,0.6416015625,0.5791015625,0.498046875,0.44140625,0.4287109375,0.4375,0.4736328125,0.5185546875,0.544921875,0.533203125,0.48828125,0.4287109375,0.3740234375,0.3525390625,0.3798828125,0.4482421875,0.5234375,0.568359375,0.5703125,0.5498046875,0.5009765625,0.4453125,0.4189453125,0.4404296875,0.4990234375,0.5703125,0.6455078125,0.71875,0.75390625,0.7265625,0.6484375,0.560546875,0.5,0.4541015625,0.4375,0.4638671875,0.521484375,0.5849609375,0.6220703125,0.6220703125,0.62109375,0.6552734375,0.70703125,0.7421875,0.736328125,0.6904296875,0.6220703125,0.5546875,0.5107421875,0.4970703125,0.5029296875,0.5078125,0.4912109375,0.4482421875,0.388671875,0.3095703125,0.24609375,0.2373046875,0.2890625,0.37109375,0.4482421875,0.5146484375,0.552734375,0.5419921875,0.4892578125,0.421875,0.37890625,0.376953125,0.3994140625,0.4599609375,0.54296875,0.6103515625,0.63671875,0.6162109375,0.5703125,0.5146484375,0.4482421875,0.3837890625,0.3408203125,0.32421875,0.32421875,0.3251953125,0.333984375,0.3701171875,0.4189453125,0.4541015625,0.45703125,0.42578125,0.376953125,0.3369140625,0.337890625,0.3818359375,0.443359375,0.4873046875,0.48828125,0.4482421875,0.396484375,0.3505859375,0.322265625,0.3154296875,0.32421875,0.3310546875,0.3251953125,0.306640625,0.263671875,0.2158203125,0.1943359375,0.2138671875,0.2646484375,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3779296875,0.396484375,0.380859375,0.357421875,0.3525390625,0.3837890625,0.4482421875,0.521484375,0.5947265625,0.6513671875,0.67578125,0.6748046875,0.66796875,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.31640625,0.28125,0.2392578125,0.22265625,0.248046875,0.306640625,0.376953125,0.4599609375,0.5693359375,0.6669921875,0.7080078125,0.6826171875,0.6171875,0.55078125,0.5,0.4912109375,0.521484375,0.564453125,0.5849609375,0.5615234375,0.5,0.423828125,0.3447265625,0.28515625,0.2646484375,0.28125,0.3095703125,0.3251953125,0.345703125,0.3974609375,0.46484375,0.5146484375,0.5244140625,0.49609375,0.4482421875,0.3916015625,0.3271484375,0.291015625,0.314453125,0.3935546875,0.490234375,0.5703125,0.630859375,0.6455078125,0.6083984375,0.5478515625,0.5009765625,0.501953125,0.55078125,0.61328125,0.673828125,0.7119140625,0.71875,0.7001953125,0.6787109375,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.5556640625,0.515625,0.5048828125,0.5107421875,0.509765625,0.4833984375,0.4287109375,0.361328125,0.283203125,0.234375,0.248046875,0.3232421875,0.419921875,0.5,0.568359375,0.611328125,0.60546875,0.546875,0.46484375,0.400390625,0.376953125,0.3623046875,0.3408203125,0.33203125,0.3564453125,0.4140625,0.486328125,0.55078125,0.60546875,0.623046875,0.583984375,0.498046875,0.40234375,0.33984375,0.3251953125,0.32421875,0.32421875,0.3408203125,0.3837890625,0.4482421875,0.5146484375,0.5703125,0.6181640625,0.6494140625,0.6513671875,0.625,0.5888671875,0.5673828125,0.5703125,0.572265625,0.55078125,0.5224609375,0.5146484375,0.5439453125,0.6025390625,0.673828125,0.7373046875,0.759765625,0.71875,0.6240234375,0.515625,0.4443359375,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.439453125,0.4462890625,0.4482421875,0.4443359375,0.4365234375,0.4306640625,0.4287109375,0.427734375,0.421875,0.4140625,0.4091796875,0.4111328125,0.4189453125,0.4287109375,0.4365234375,0.4375,0.4482421875,0.482421875,0.541015625,0.609375,0.673828125,0.71875,0.701171875,0.6201171875,0.517578125,0.4462890625,0.4423828125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.47265625,0.54296875,0.5966796875,0.599609375,0.55078125,0.4873046875,0.427734375,0.4052734375,0.4423828125,0.5244140625,0.6123046875,0.673828125,0.720703125,0.7451171875,0.7353515625,0.6953125,0.6484375,0.6201171875,0.6220703125,0.625,0.5966796875,0.5361328125,0.462890625,0.40234375,0.3740234375,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3310546875,0.392578125,0.494140625,0.5888671875,0.6328125,0.6142578125,0.55078125,0.4765625,0.396484375,0.3330078125,0.3037109375,0.306640625,0.3212890625,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.4990234375,0.4033203125,0.3193359375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7314453125,0.69140625,0.6240234375,0.5517578125,0.501953125,0.486328125,0.5,0.5087890625,0.484375,0.44140625,0.4111328125,0.4169921875,0.4619140625,0.5302734375,0.6103515625,0.71484375,0.8095703125,0.853515625,0.8388671875,0.7890625,0.740234375,0.6875,0.6103515625,0.52734375,0.466796875,0.443359375,0.451171875,0.46875,0.4931640625,0.529296875,0.56640625,0.5849609375,0.580078125,0.556640625,0.5302734375,0.51171875,0.529296875,0.5849609375,0.66015625,0.72265625,0.75,0.740234375,0.7119140625,0.6552734375,0.587890625,0.541015625,0.533203125,0.5615234375,0.6044921875,0.6494140625,0.681640625,0.6787109375,0.6357421875,0.56640625,0.50390625,0.46875,0.4521484375,0.4775390625,0.546875,0.6376953125,0.7138671875,0.7490234375,0.740234375,0.7099609375,0.6376953125,0.52734375,0.408203125,0.314453125,0.267578125,0.2587890625,0.2763671875,0.361328125,0.501953125,0.6484375,0.748046875,0.7734375,0.740234375,0.68359375,0.58984375,0.4775390625,0.3857421875,0.3408203125,0.3408203125,0.3642578125,0.3955078125,0.4501953125,0.5244140625,0.6044921875,0.6728515625,0.716796875,0.740234375,0.75390625,0.7373046875,0.67578125,0.580078125,0.4775390625,0.4013671875,0.3642578125,0.3505859375,0.38671875,0.46875,0.5634765625,0.6279296875,0.6396484375,0.6044921875,0.55078125,0.48046875,0.4248046875,0.421875,0.4755859375,0.55859375,0.634765625,0.7080078125,0.7763671875,0.8095703125,0.7900390625,0.7314453125,0.6708984375,0.634765625,0.5927734375,0.4990234375,0.3798828125,0.2900390625,0.26171875,0.296875,0.3642578125,0.4296875,0.4697265625,0.482421875,0.4853515625,0.4990234375,0.5390625,0.6044921875,0.6708984375,0.70703125,0.6904296875,0.6240234375,0.5400390625,0.482421875,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.4296875,0.419921875,0.4443359375,0.4912109375,0.533203125,0.5478515625,0.5302734375,0.494140625,0.43359375,0.375,0.35546875,0.388671875,0.4560546875,0.5302734375,0.6015625,0.6611328125,0.681640625,0.6513671875,0.587890625,0.5283203125,0.5,0.48828125,0.505859375,0.5517578125,0.607421875,0.646484375,0.6552734375,0.634765625,0.619140625,0.6416015625,0.6904296875,0.7314453125,0.73828125,0.701171875,0.634765625,0.5625,0.4912109375,0.4384765625,0.4140625,0.41015625,0.408203125,0.39453125,0.3662109375,0.310546875,0.25390625,0.2314453125,0.2587890625,0.322265625,0.39453125,0.4599609375,0.4931640625,0.48046875,0.4306640625,0.375,0.3486328125,0.3642578125,0.396484375,0.4462890625,0.5029296875,0.54296875,0.5576171875,0.5478515625,0.5302734375,0.5048828125,0.4580078125,0.39453125,0.3310546875,0.2841796875,0.2626953125,0.2587890625,0.263671875,0.2880859375,0.3251953125,0.361328125,0.380859375,0.3798828125,0.3642578125,0.3486328125,0.349609375,0.3671875,0.3916015625,0.408203125,0.4091796875,0.39453125,0.376953125,0.361328125,0.34765625,0.3310546875,0.3095703125,0.28515625,0.2587890625,0.2265625,0.181640625,0.142578125,0.134765625,0.1630859375,0.2109375,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.2958984375,0.3037109375,0.2890625,0.275390625,0.28515625,0.328125,0.39453125,0.46875,0.5478515625,0.6181640625,0.66796875,0.697265625,0.716796875,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2509765625,0.22265625,0.1923828125,0.189453125,0.2265625,0.2919921875,0.3642578125,0.4453125,0.5537109375,0.654296875,0.70703125,0.6982421875,0.6533203125,0.6044921875,0.568359375,0.5634765625,0.5849609375,0.607421875,0.6044921875,0.5654296875,0.5,0.4208984375,0.3232421875,0.2373046875,0.1923828125,0.197265625,0.228515625,0.2587890625,0.2900390625,0.3369140625,0.38671875,0.4189453125,0.42578125,0.4130859375,0.39453125,0.369140625,0.330078125,0.3037109375,0.31640625,0.3740234375,0.4541015625,0.5302734375,0.5947265625,0.6298828125,0.6259765625,0.5966796875,0.568359375,0.568359375,0.6044921875,0.65234375,0.701171875,0.740234375,0.7568359375,0.7529296875,0.7431640625,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.5673828125,0.521484375,0.5048828125,0.5107421875,0.5185546875,0.5068359375,0.46875,0.416015625,0.3447265625,0.2900390625,0.2861328125,0.33984375,0.4228515625,0.5,0.5693359375,0.62109375,0.6240234375,0.568359375,0.48046875,0.4033203125,0.3642578125,0.337890625,0.3212890625,0.3359375,0.3916015625,0.4736328125,0.55078125,0.6044921875,0.640625,0.6318359375,0.5634765625,0.4521484375,0.341796875,0.2734375,0.2587890625,0.2626953125,0.2841796875,0.3310546875,0.39453125,0.4580078125,0.5048828125,0.5302734375,0.544921875,0.54296875,0.52734375,0.5078125,0.4990234375,0.5068359375,0.5302734375,0.55078125,0.5537109375,0.5517578125,0.56640625,0.6064453125,0.6689453125,0.740234375,0.8037109375,0.8232421875,0.775390625,0.673828125,0.5595703125,0.4853515625,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.4951171875,0.513671875,0.5185546875,0.5078125,0.48828125,0.47265625,0.46875,0.4658203125,0.4501953125,0.4306640625,0.4189453125,0.423828125,0.443359375,0.46875,0.4951171875,0.5205078125,0.5517578125,0.59375,0.642578125,0.693359375,0.740234375,0.7685546875,0.73046875,0.6318359375,0.5185546875,0.4443359375,0.44140625,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4384765625,0.4248046875,0.46875,0.546875,0.615234375,0.63671875,0.6044921875,0.5615234375,0.533203125,0.541015625,0.587890625,0.6552734375,0.7119140625,0.740234375,0.751953125,0.73828125,0.6982421875,0.6513671875,0.619140625,0.6142578125,0.634765625,0.650390625,0.6220703125,0.546875,0.4521484375,0.376953125,0.3486328125,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.2509765625,0.3154296875,0.44140625,0.57421875,0.658203125,0.6630859375,0.6044921875,0.5263671875,0.4326171875,0.341796875,0.28125,0.2568359375,0.2568359375,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.4765625,0.400390625,0.328125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7373046875,0.71875,0.6796875,0.6240234375,0.56640625,0.5234375,0.5,0.470703125,0.4111328125,0.34765625,0.3173828125,0.337890625,0.3974609375,0.46875,0.548828125,0.6494140625,0.7431640625,0.794921875,0.7978515625,0.76953125,0.740234375,0.7119140625,0.6787109375,0.640625,0.6044921875,0.5732421875,0.5498046875,0.5302734375,0.5166015625,0.521484375,0.5380859375,0.5498046875,0.5419921875,0.51171875,0.46875,0.4287109375,0.4169921875,0.455078125,0.5380859375,0.6357421875,0.708984375,0.740234375,0.751953125,0.73828125,0.6982421875,0.6513671875,0.619140625,0.6142578125,0.634765625,0.6640625,0.697265625,0.712890625,0.6923828125,0.6416015625,0.580078125,0.5302734375,0.48828125,0.4697265625,0.494140625,0.560546875,0.64453125,0.7099609375,0.740234375,0.7470703125,0.703125,0.5986328125,0.4638671875,0.341796875,0.2724609375,0.2587890625,0.2734375,0.34765625,0.474609375,0.61328125,0.7158203125,0.7548828125,0.740234375,0.7001953125,0.6123046875,0.4970703125,0.3974609375,0.3486328125,0.3544921875,0.39453125,0.44921875,0.53515625,0.634765625,0.71484375,0.7548828125,0.7568359375,0.740234375,0.7197265625,0.6904296875,0.6435546875,0.5791015625,0.5078125,0.4443359375,0.39453125,0.359375,0.37109375,0.435546875,0.5302734375,0.6123046875,0.6484375,0.634765625,0.5986328125,0.5341796875,0.46875,0.44140625,0.4677734375,0.5322265625,0.6044921875,0.6806640625,0.759765625,0.806640625,0.794921875,0.7333984375,0.6591796875,0.6044921875,0.5458984375,0.4453125,0.3369140625,0.26953125,0.26953125,0.3232421875,0.39453125,0.4599609375,0.5,0.513671875,0.5166015625,0.529296875,0.5693359375,0.634765625,0.7021484375,0.7421875,0.7314453125,0.673828125,0.5966796875,0.5419921875,0.5302734375,0.533203125,0.548828125,0.568359375,0.580078125,0.5751953125,0.5556640625,0.5302734375,0.5087890625,0.5087890625,0.5244140625,0.5380859375,0.5361328125,0.5107421875,0.46875,0.4150390625,0.33984375,0.2783203125,0.267578125,0.314453125,0.3935546875,0.46875,0.537109375,0.58203125,0.587890625,0.5576171875,0.5146484375,0.490234375,0.5,0.5263671875,0.580078125,0.640625,0.6796875,0.6806640625,0.6484375,0.6044921875,0.5703125,0.5791015625,0.6240234375,0.673828125,0.6943359375,0.66796875,0.6044921875,0.5263671875,0.43359375,0.3525390625,0.3115234375,0.314453125,0.3408203125,0.3642578125,0.3720703125,0.3447265625,0.294921875,0.2568359375,0.255859375,0.296875,0.3642578125,0.4287109375,0.4580078125,0.4443359375,0.40234375,0.3642578125,0.359375,0.39453125,0.4375,0.46875,0.4794921875,0.47265625,0.458984375,0.455078125,0.46875,0.482421875,0.470703125,0.427734375,0.3642578125,0.302734375,0.2666015625,0.2587890625,0.259765625,0.2646484375,0.28125,0.30859375,0.3427734375,0.373046875,0.39453125,0.4091796875,0.408203125,0.3916015625,0.3671875,0.349609375,0.3486328125,0.3642578125,0.38671875,0.4140625,0.427734375,0.4111328125,0.365234375,0.30859375,0.2587890625,0.2109375,0.1630859375,0.134765625,0.142578125,0.181640625,0.2265625,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.27734375,0.267578125,0.2421875,0.228515625,0.24609375,0.2958984375,0.3642578125,0.4365234375,0.5078125,0.5712890625,0.62109375,0.66015625,0.697265625,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.251953125,0.2265625,0.2041015625,0.208984375,0.2529296875,0.3212890625,0.39453125,0.4736328125,0.5703125,0.6572265625,0.701171875,0.697265625,0.6650390625,0.634765625,0.6162109375,0.6220703125,0.640625,0.646484375,0.6220703125,0.568359375,0.5,0.41796875,0.3095703125,0.208984375,0.15625,0.1650390625,0.2109375,0.2587890625,0.302734375,0.337890625,0.35546875,0.3564453125,0.349609375,0.349609375,0.3642578125,0.375,0.3603515625,0.3330078125,0.3232421875,0.345703125,0.3994140625,0.46875,0.5390625,0.5966796875,0.626953125,0.62890625,0.6181640625,0.615234375,0.634765625,0.6630859375,0.6953125,0.7236328125,0.740234375,0.744140625,0.7412109375,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.537109375,0.490234375,0.48046875,0.501953125,0.5341796875,0.546875,0.5302734375,0.4931640625,0.4287109375,0.36328125,0.3369140625,0.3623046875,0.4267578125,0.5,0.5732421875,0.638671875,0.6630859375,0.6240234375,0.5380859375,0.451171875,0.39453125,0.3525390625,0.3330078125,0.3583984375,0.4306640625,0.5224609375,0.59765625,0.634765625,0.65234375,0.6259765625,0.546875,0.435546875,0.33203125,0.271484375,0.2587890625,0.2666015625,0.302734375,0.3642578125,0.427734375,0.470703125,0.482421875,0.46875,0.4443359375,0.404296875,0.3671875,0.35546875,0.3779296875,0.4228515625,0.46875,0.509765625,0.5341796875,0.5498046875,0.5712890625,0.611328125,0.669921875,0.740234375,0.8046875,0.83203125,0.7978515625,0.7119140625,0.6123046875,0.544921875,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.57421875,0.607421875,0.615234375,0.5966796875,0.5625,0.5361328125,0.5302734375,0.5234375,0.4970703125,0.4638671875,0.4443359375,0.4521484375,0.4853515625,0.5302734375,0.5751953125,0.6181640625,0.654296875,0.6796875,0.697265625,0.7158203125,0.740234375,0.75,0.6982421875,0.5966796875,0.4912109375,0.4306640625,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4365234375,0.416015625,0.4521484375,0.5302734375,0.6083984375,0.6474609375,0.634765625,0.6142578125,0.619140625,0.6513671875,0.6982421875,0.73828125,0.751953125,0.740234375,0.7119140625,0.6552734375,0.587890625,0.541015625,0.533203125,0.5615234375,0.6044921875,0.6376953125,0.619140625,0.546875,0.4521484375,0.3798828125,0.361328125,0.39453125,0.44140625,0.484375,0.4970703125,0.4609375,0.388671875,0.3125,0.2587890625,0.2333984375,0.2880859375,0.4169921875,0.5654296875,0.669921875,0.689453125,0.634765625,0.556640625,0.4580078125,0.361328125,0.2919921875,0.26171875,0.2578125,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.4375,0.3896484375,0.341796875,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.6767578125,0.6845703125,0.6845703125,0.66015625,0.611328125,0.552734375,0.5,0.4384765625,0.3505859375,0.2724609375,0.2451171875,0.2802734375,0.353515625,0.4287109375,0.505859375,0.59375,0.669921875,0.7080078125,0.70703125,0.6875,0.673828125,0.66796875,0.677734375,0.6904296875,0.689453125,0.6640625,0.6201171875,0.5703125,0.525390625,0.5068359375,0.51171875,0.5224609375,0.517578125,0.4853515625,0.4287109375,0.3681640625,0.3232421875,0.328125,0.3974609375,0.5068359375,0.609375,0.673828125,0.720703125,0.7451171875,0.7353515625,0.6953125,0.6484375,0.6201171875,0.6220703125,0.638671875,0.67578125,0.7119140625,0.7197265625,0.689453125,0.6328125,0.5703125,0.505859375,0.443359375,0.41796875,0.44921875,0.52734375,0.61328125,0.673828125,0.71484375,0.7099609375,0.6416015625,0.5283203125,0.4130859375,0.3408203125,0.3251953125,0.3349609375,0.3837890625,0.46875,0.5654296875,0.640625,0.67578125,0.673828125,0.6494140625,0.5791015625,0.48046875,0.3994140625,0.3681640625,0.3916015625,0.4482421875,0.51953125,0.6220703125,0.7216796875,0.7763671875,0.771484375,0.7265625,0.673828125,0.626953125,0.59765625,0.583984375,0.572265625,0.5478515625,0.505859375,0.4482421875,0.3935546875,0.3759765625,0.4111328125,0.4873046875,0.5703125,0.619140625,0.6220703125,0.599609375,0.5419921875,0.470703125,0.4267578125,0.431640625,0.4814453125,0.55078125,0.6298828125,0.7177734375,0.7763671875,0.7724609375,0.70703125,0.62109375,0.55078125,0.4794921875,0.3798828125,0.2919921875,0.2607421875,0.296875,0.3720703125,0.4482421875,0.51171875,0.5439453125,0.5419921875,0.52734375,0.5263671875,0.5576171875,0.6220703125,0.6904296875,0.736328125,0.73828125,0.6943359375,0.62890625,0.5810546875,0.5703125,0.5712890625,0.5771484375,0.5849609375,0.58984375,0.587890625,0.580078125,0.5703125,0.5654296875,0.576171875,0.5888671875,0.5810546875,0.546875,0.490234375,0.4287109375,0.359375,0.2724609375,0.2080078125,0.2041015625,0.2626953125,0.3505859375,0.4287109375,0.4931640625,0.5244140625,0.515625,0.482421875,0.4541015625,0.4580078125,0.5,0.55859375,0.6376953125,0.705078125,0.72265625,0.6845703125,0.6171875,0.55078125,0.501953125,0.498046875,0.5400390625,0.5966796875,0.62890625,0.6123046875,0.55078125,0.470703125,0.3671875,0.27734375,0.240234375,0.263671875,0.322265625,0.376953125,0.4169921875,0.412109375,0.3681640625,0.31640625,0.2919921875,0.314453125,0.376953125,0.4404296875,0.4658203125,0.44921875,0.4111328125,0.384765625,0.396484375,0.4482421875,0.5,0.5126953125,0.482421875,0.4296875,0.388671875,0.388671875,0.4287109375,0.4765625,0.5009765625,0.4873046875,0.4384765625,0.376953125,0.3349609375,0.3251953125,0.3212890625,0.306640625,0.2958984375,0.306640625,0.34375,0.3955078125,0.4482421875,0.48828125,0.4873046875,0.443359375,0.3818359375,0.337890625,0.3369140625,0.376953125,0.4345703125,0.5009765625,0.544921875,0.53515625,0.474609375,0.3935546875,0.3251953125,0.2646484375,0.2138671875,0.1943359375,0.2158203125,0.263671875,0.306640625,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3271484375,0.298828125,0.2587890625,0.23828125,0.2548828125,0.3076171875,0.376953125,0.4453125,0.498046875,0.5322265625,0.5537109375,0.578125,0.6171875,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.318359375,0.2919921875,0.265625,0.267578125,0.3076171875,0.375,0.4482421875,0.5234375,0.6025390625,0.662109375,0.6826171875,0.666015625,0.6376953125,0.6220703125,0.619140625,0.6376953125,0.662109375,0.6650390625,0.6318359375,0.5703125,0.5,0.4169921875,0.3076171875,0.2099609375,0.1689453125,0.1943359375,0.259765625,0.3251953125,0.3798828125,0.4013671875,0.3857421875,0.3515625,0.3271484375,0.3349609375,0.376953125,0.41796875,0.419921875,0.3876953125,0.349609375,0.3359375,0.365234375,0.4287109375,0.501953125,0.5712890625,0.6201171875,0.63671875,0.6279296875,0.6171875,0.6220703125,0.6328125,0.646484375,0.66015625,0.669921875,0.673828125,0.673828125,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.4833984375,0.439453125,0.4375,0.4775390625,0.533203125,0.5693359375,0.5703125,0.5478515625,0.490234375,0.4189453125,0.375,0.3798828125,0.4296875,0.5,0.576171875,0.658203125,0.7060546875,0.6875,0.611328125,0.5185546875,0.4482421875,0.390625,0.361328125,0.380859375,0.4482421875,0.5341796875,0.5986328125,0.6220703125,0.625,0.5966796875,0.5322265625,0.4501953125,0.3759765625,0.333984375,0.3251953125,0.3349609375,0.376953125,0.4384765625,0.4873046875,0.5009765625,0.4765625,0.4287109375,0.37109375,0.2978515625,0.2431640625,0.23828125,0.2880859375,0.3623046875,0.4287109375,0.484375,0.517578125,0.529296875,0.5380859375,0.5595703125,0.6064453125,0.673828125,0.7412109375,0.7802734375,0.7705078125,0.712890625,0.63671875,0.58203125,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.6298828125,0.6748046875,0.685546875,0.66015625,0.6142578125,0.578125,0.5703125,0.5615234375,0.525390625,0.48046875,0.4541015625,0.4658203125,0.5107421875,0.5703125,0.630859375,0.681640625,0.708984375,0.7060546875,0.6845703125,0.6689453125,0.673828125,0.669921875,0.6142578125,0.5234375,0.443359375,0.41015625,0.435546875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.43359375,0.40234375,0.423828125,0.4912109375,0.5703125,0.619140625,0.6220703125,0.6201171875,0.6484375,0.6953125,0.7353515625,0.7451171875,0.720703125,0.673828125,0.6123046875,0.5244140625,0.4423828125,0.4052734375,0.427734375,0.4873046875,0.55078125,0.599609375,0.5966796875,0.5390625,0.4599609375,0.40234375,0.3994140625,0.4482421875,0.513671875,0.5791015625,0.6083984375,0.576171875,0.4921875,0.396484375,0.3251953125,0.283203125,0.3154296875,0.423828125,0.55859375,0.6572265625,0.67578125,0.6220703125,0.544921875,0.45703125,0.376953125,0.3291015625,0.31640625,0.322265625,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.416015625,0.396484375,0.375,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5869140625,0.6171875,0.650390625,0.658203125,0.6279296875,0.568359375,0.5,0.421875,0.322265625,0.2431640625,0.2255859375,0.27734375,0.3623046875,0.439453125,0.5126953125,0.5830078125,0.62890625,0.6357421875,0.61328125,0.587890625,0.5791015625,0.5869140625,0.623046875,0.6689453125,0.693359375,0.677734375,0.6259765625,0.5595703125,0.5,0.4755859375,0.4892578125,0.515625,0.52734375,0.5009765625,0.439453125,0.365234375,0.291015625,0.2587890625,0.2958984375,0.3916015625,0.5,0.5791015625,0.6455078125,0.693359375,0.7021484375,0.669921875,0.6171875,0.5771484375,0.5693359375,0.580078125,0.62109375,0.671875,0.697265625,0.681640625,0.6279296875,0.5595703125,0.482421875,0.3935546875,0.333984375,0.33984375,0.4091796875,0.5029296875,0.5791015625,0.6416015625,0.6728515625,0.6494140625,0.5791015625,0.4921875,0.4326171875,0.419921875,0.423828125,0.4443359375,0.48046875,0.5234375,0.55859375,0.5771484375,0.5791015625,0.5654296875,0.5126953125,0.4404296875,0.3876953125,0.3818359375,0.4228515625,0.4892578125,0.5693359375,0.6708984375,0.7548828125,0.7783203125,0.7333984375,0.6533203125,0.5791015625,0.5205078125,0.5,0.51953125,0.5546875,0.572265625,0.5498046875,0.4892578125,0.423828125,0.3828125,0.388671875,0.4404296875,0.509765625,0.5595703125,0.5693359375,0.556640625,0.505859375,0.439453125,0.3935546875,0.39453125,0.4404296875,0.509765625,0.5888671875,0.6826171875,0.748046875,0.7470703125,0.6806640625,0.587890625,0.509765625,0.4306640625,0.3359375,0.2646484375,0.2587890625,0.3193359375,0.41015625,0.4892578125,0.55078125,0.5712890625,0.548828125,0.509765625,0.4873046875,0.5078125,0.5693359375,0.638671875,0.6904296875,0.701171875,0.66796875,0.6123046875,0.5693359375,0.5595703125,0.5595703125,0.560546875,0.5615234375,0.5625,0.5625,0.560546875,0.5595703125,0.564453125,0.58984375,0.615234375,0.61328125,0.5751953125,0.5107421875,0.439453125,0.361328125,0.2685546875,0.2021484375,0.201171875,0.2666015625,0.3603515625,0.439453125,0.5009765625,0.521484375,0.4970703125,0.453125,0.42578125,0.44140625,0.5,0.576171875,0.66796875,0.7353515625,0.73828125,0.6767578125,0.5869140625,0.509765625,0.451171875,0.44140625,0.482421875,0.5419921875,0.5810546875,0.5693359375,0.509765625,0.4287109375,0.326171875,0.244140625,0.224609375,0.2734375,0.35546875,0.4296875,0.486328125,0.494140625,0.4541015625,0.39453125,0.3564453125,0.369140625,0.4296875,0.4912109375,0.509765625,0.484375,0.4404296875,0.4130859375,0.4296875,0.4892578125,0.546875,0.552734375,0.5029296875,0.431640625,0.380859375,0.3837890625,0.439453125,0.505859375,0.5537109375,0.5615234375,0.52734375,0.4716796875,0.4296875,0.419921875,0.412109375,0.380859375,0.345703125,0.3349609375,0.36328125,0.421875,0.4892578125,0.544921875,0.5478515625,0.49609375,0.4228515625,0.37109375,0.3740234375,0.4296875,0.505859375,0.595703125,0.658203125,0.65625,0.58984375,0.498046875,0.419921875,0.3515625,0.298828125,0.28515625,0.3134765625,0.3662109375,0.408203125,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.412109375,0.3720703125,0.3212890625,0.29296875,0.3076171875,0.3603515625,0.4296875,0.4931640625,0.5234375,0.517578125,0.4970703125,0.490234375,0.517578125,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.4111328125,0.3779296875,0.33984375,0.328125,0.357421875,0.41796875,0.4892578125,0.5615234375,0.6240234375,0.6572265625,0.6484375,0.6123046875,0.5791015625,0.5693359375,0.576171875,0.6083984375,0.6455078125,0.658203125,0.630859375,0.5703125,0.5,0.41796875,0.3154296875,0.232421875,0.2119140625,0.2607421875,0.34375,0.419921875,0.478515625,0.4912109375,0.455078125,0.3994140625,0.3623046875,0.373046875,0.4296875,0.486328125,0.49609375,0.45703125,0.400390625,0.365234375,0.37890625,0.439453125,0.5126953125,0.5791015625,0.6201171875,0.6240234375,0.599609375,0.57421875,0.5693359375,0.5712890625,0.5732421875,0.576171875,0.578125,0.5791015625,0.5791015625,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.44140625,0.3955078125,0.39453125,0.439453125,0.5029296875,0.5498046875,0.5595703125,0.5458984375,0.49609375,0.4287109375,0.3837890625,0.384765625,0.4306640625,0.5,0.5791015625,0.6708984375,0.734375,0.73046875,0.662109375,0.568359375,0.4892578125,0.4228515625,0.380859375,0.3837890625,0.4345703125,0.5048828125,0.5556640625,0.5693359375,0.5673828125,0.55078125,0.517578125,0.4775390625,0.4423828125,0.423828125,0.419921875,0.4296875,0.4716796875,0.52734375,0.5615234375,0.5537109375,0.505859375,0.439453125,0.36328125,0.2724609375,0.2080078125,0.20703125,0.271484375,0.3623046875,0.439453125,0.5009765625,0.52734375,0.5185546875,0.4951171875,0.4873046875,0.515625,0.5791015625,0.6484375,0.6982421875,0.70703125,0.671875,0.6142578125,0.5693359375,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6279296875,0.6787109375,0.69140625,0.662109375,0.609375,0.5693359375,0.5595703125,0.5498046875,0.5087890625,0.45703125,0.4267578125,0.4404296875,0.4912109375,0.5595703125,0.6279296875,0.6806640625,0.6962890625,0.671875,0.6240234375,0.5869140625,0.5791015625,0.5693359375,0.5185546875,0.4482421875,0.3955078125,0.3896484375,0.431640625,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.431640625,0.388671875,0.392578125,0.44140625,0.5107421875,0.5595703125,0.5693359375,0.5771484375,0.6171875,0.669921875,0.7021484375,0.693359375,0.6455078125,0.5791015625,0.5009765625,0.40234375,0.3212890625,0.302734375,0.3505859375,0.43359375,0.509765625,0.5673828125,0.5751953125,0.5322265625,0.466796875,0.423828125,0.431640625,0.4892578125,0.5654296875,0.6494140625,0.69921875,0.6806640625,0.599609375,0.4990234375,0.419921875,0.365234375,0.3740234375,0.447265625,0.546875,0.619140625,0.6259765625,0.5693359375,0.49609375,0.42578125,0.37890625,0.3701171875,0.3896484375,0.4130859375,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.4375,0.4345703125,0.4306640625,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4228515625,0.421875,0.4208984375,0.419921875,0.419921875,0.431640625,0.4833984375,0.5556640625,0.6083984375,0.6162109375,0.5751953125,0.509765625,0.4326171875,0.34765625,0.294921875,0.3095703125,0.384765625,0.4814453125,0.5595703125,0.6220703125,0.654296875,0.634765625,0.568359375,0.486328125,0.4306640625,0.419921875,0.4306640625,0.47265625,0.525390625,0.5546875,0.5400390625,0.48828125,0.419921875,0.365234375,0.3720703125,0.4443359375,0.541015625,0.6103515625,0.6162109375,0.5595703125,0.4765625,0.3662109375,0.271484375,0.2373046875,0.2744140625,0.3525390625,0.4296875,0.5,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.427734375,0.4677734375,0.5205078125,0.552734375,0.5439453125,0.49609375,0.4296875,0.353515625,0.26171875,0.1943359375,0.19140625,0.2529296875,0.3427734375,0.419921875,0.4912109375,0.5625,0.6103515625,0.623046875,0.6064453125,0.5849609375,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4111328125,0.3779296875,0.33984375,0.328125,0.357421875,0.41796875,0.4892578125,0.5673828125,0.6513671875,0.69921875,0.6796875,0.59765625,0.498046875,0.419921875,0.365234375,0.3671875,0.4267578125,0.5087890625,0.56640625,0.56640625,0.509765625,0.439453125,0.3779296875,0.3466796875,0.353515625,0.384765625,0.4140625,0.419921875,0.41015625,0.3798828125,0.3466796875,0.341796875,0.3759765625,0.439453125,0.509765625,0.5869140625,0.677734375,0.7392578125,0.7353515625,0.6650390625,0.5693359375,0.4892578125,0.41015625,0.318359375,0.25390625,0.2548828125,0.3212890625,0.4130859375,0.4892578125,0.544921875,0.5478515625,0.49609375,0.4228515625,0.37109375,0.3740234375,0.4296875,0.49609375,0.546875,0.560546875,0.533203125,0.484375,0.447265625,0.439453125,0.44140625,0.443359375,0.4453125,0.4453125,0.443359375,0.44140625,0.439453125,0.4501953125,0.5048828125,0.5830078125,0.6455078125,0.66015625,0.6240234375,0.5595703125,0.4814453125,0.390625,0.3271484375,0.3271484375,0.392578125,0.4833984375,0.5595703125,0.6142578125,0.615234375,0.5615234375,0.486328125,0.435546875,0.4404296875,0.5,0.578125,0.669921875,0.7314453125,0.7275390625,0.6591796875,0.56640625,0.4892578125,0.4326171875,0.4248046875,0.4658203125,0.5244140625,0.5625,0.5498046875,0.4892578125,0.412109375,0.3291015625,0.2822265625,0.3056640625,0.392578125,0.4970703125,0.5791015625,0.6396484375,0.6513671875,0.6123046875,0.5517578125,0.51171875,0.521484375,0.5791015625,0.6357421875,0.63671875,0.5810546875,0.501953125,0.4482421875,0.451171875,0.509765625,0.5712890625,0.58984375,0.5654296875,0.5234375,0.4990234375,0.517578125,0.5791015625,0.6484375,0.7001953125,0.7099609375,0.6748046875,0.6171875,0.5712890625,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5498046875,0.568359375,0.5458984375,0.5068359375,0.486328125,0.5078125,0.5693359375,0.6494140625,0.7431640625,0.8115234375,0.8134765625,0.7490234375,0.6572265625,0.5791015625,0.5107421875,0.4599609375,0.447265625,0.4765625,0.5283203125,0.5693359375,0.5791015625,0.576171875,0.55859375,0.5283203125,0.4912109375,0.4599609375,0.443359375,0.439453125,0.4423828125,0.45703125,0.4853515625,0.5185546875,0.5478515625,0.564453125,0.5693359375,0.560546875,0.5205078125,0.4677734375,0.4365234375,0.4482421875,0.5,0.5693359375,0.6259765625,0.619140625,0.5478515625,0.451171875,0.3798828125,0.373046875,0.4296875,0.5029296875,0.572265625,0.6181640625,0.6259765625,0.6064453125,0.583984375,0.5791015625,0.5693359375,0.521484375,0.4541015625,0.4052734375,0.4013671875,0.443359375,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.451171875,0.4990234375,0.5654296875,0.61328125,0.6162109375,0.57421875,0.509765625,0.4345703125,0.3525390625,0.3037109375,0.3212890625,0.400390625,0.5,0.5791015625,0.63671875,0.6435546875,0.5986328125,0.5341796875,0.490234375,0.5,0.5595703125,0.619140625,0.6318359375,0.5947265625,0.53515625,0.494140625,0.5029296875,0.5595703125,0.623046875,0.658203125,0.64453125,0.583984375,0.505859375,0.4521484375,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.443359375,0.49609375,0.5673828125,0.6181640625,0.62109375,0.5771484375,0.509765625,0.4384765625,0.376953125,0.3486328125,0.3603515625,0.3984375,0.431640625,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.5751953125,0.6640625,0.7255859375,0.72265625,0.6572265625,0.5654296875,0.4892578125,0.421875,0.3662109375,0.341796875,0.357421875,0.3974609375,0.431640625,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.5888671875,0.6298828125,0.681640625,0.7119140625,0.6982421875,0.6474609375,0.5791015625,0.5009765625,0.4072265625,0.337890625,0.3349609375,0.3984375,0.490234375,0.5693359375,0.6259765625,0.6220703125,0.5546875,0.4599609375,0.390625,0.384765625,0.439453125,0.5078125,0.556640625,0.5654296875,0.533203125,0.478515625,0.4384765625,0.4296875,0.421875,0.3837890625,0.333984375,0.306640625,0.3203125,0.37109375,0.439453125,0.5078125,0.55859375,0.572265625,0.5419921875,0.490234375,0.44921875,0.439453125,0.4296875,0.38671875,0.3310546875,0.2978515625,0.30859375,0.3603515625,0.4296875,0.5,0.552734375,0.5673828125,0.5380859375,0.484375,0.44140625,0.4296875,0.419921875,0.3876953125,0.3515625,0.341796875,0.3720703125,0.4306640625,0.5,0.5751953125,0.6650390625,0.728515625,0.728515625,0.6650390625,0.5751953125,0.5,0.431640625,0.3740234375,0.3486328125,0.361328125,0.3994140625,0.431640625,0.439453125,0.44921875,0.490234375,0.5419921875,0.572265625,0.55859375,0.5078125,0.439453125,0.36328125,0.2802734375,0.23046875,0.2490234375,0.3291015625,0.4296875,0.509765625,0.568359375,0.578125,0.5390625,0.4794921875,0.4404296875,0.451171875,0.509765625,0.5888671875,0.6884765625,0.767578125,0.78515625,0.736328125,0.654296875,0.5791015625,0.5185546875,0.490234375,0.494140625,0.5107421875,0.5126953125,0.482421875,0.419921875,0.3544921875,0.3193359375,0.3359375,0.40234375,0.4853515625,0.544921875,0.5595703125,0.5615234375,0.5634765625,0.564453125,0.564453125,0.5634765625,0.5615234375,0.5595703125,0.55859375,0.5595703125,0.5625,0.345703125,0.3408203125,0.3330078125,0.3271484375,0.3251953125,0.33984375,0.40234375,0.498046875,0.583984375,0.623046875,0.60546875,0.55078125,0.4853515625,0.4130859375,0.3671875,0.376953125,0.4365234375,0.51171875,0.5703125,0.6123046875,0.6142578125,0.5615234375,0.470703125,0.3798828125,0.328125,0.3251953125,0.3447265625,0.3876953125,0.435546875,0.45703125,0.4375,0.38671875,0.3251953125,0.28125,0.30859375,0.4052734375,0.525390625,0.6123046875,0.6259765625,0.5703125,0.4853515625,0.3681640625,0.2587890625,0.2080078125,0.2314453125,0.3017578125,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.32421875,0.3525390625,0.3994140625,0.439453125,0.44921875,0.423828125,0.376953125,0.318359375,0.2392578125,0.171875,0.154296875,0.1923828125,0.259765625,0.3251953125,0.3935546875,0.48046875,0.5693359375,0.6357421875,0.6669921875,0.673828125,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.318359375,0.2919921875,0.265625,0.267578125,0.3076171875,0.375,0.4482421875,0.521484375,0.5888671875,0.61328125,0.572265625,0.4814453125,0.3876953125,0.3251953125,0.2900390625,0.3154296875,0.40234375,0.509765625,0.5859375,0.5986328125,0.55078125,0.4873046875,0.421875,0.3671875,0.337890625,0.33203125,0.33203125,0.3251953125,0.3125,0.296875,0.298828125,0.3369140625,0.40625,0.484375,0.55078125,0.6181640625,0.6923828125,0.734375,0.7109375,0.62890625,0.5283203125,0.4482421875,0.37109375,0.2890625,0.2373046875,0.24609375,0.3095703125,0.388671875,0.4482421875,0.48828125,0.4873046875,0.443359375,0.3818359375,0.337890625,0.3369140625,0.376953125,0.4267578125,0.4638671875,0.4775390625,0.46484375,0.4404296875,0.4248046875,0.4287109375,0.4404296875,0.4541015625,0.4638671875,0.4638671875,0.4541015625,0.4404296875,0.4287109375,0.4306640625,0.4755859375,0.55078125,0.619140625,0.646484375,0.625,0.5703125,0.5029296875,0.4287109375,0.3798828125,0.3837890625,0.439453125,0.51171875,0.5703125,0.6083984375,0.5947265625,0.53515625,0.46484375,0.423828125,0.4384765625,0.5,0.5751953125,0.6513671875,0.6904296875,0.66796875,0.59375,0.5087890625,0.4482421875,0.408203125,0.4130859375,0.45703125,0.5087890625,0.533203125,0.5107421875,0.4482421875,0.373046875,0.306640625,0.2900390625,0.349609375,0.466796875,0.5888671875,0.673828125,0.734375,0.7509765625,0.71875,0.6630859375,0.6201171875,0.6240234375,0.673828125,0.720703125,0.708984375,0.6396484375,0.55078125,0.4912109375,0.4931640625,0.55078125,0.6142578125,0.6396484375,0.626953125,0.59765625,0.5849609375,0.6103515625,0.673828125,0.7421875,0.7880859375,0.7861328125,0.732421875,0.654296875,0.5927734375,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.501953125,0.525390625,0.5224609375,0.51171875,0.5185546875,0.556640625,0.6220703125,0.701171875,0.7958984375,0.8662109375,0.875,0.822265625,0.7421875,0.673828125,0.61328125,0.5693359375,0.5576171875,0.5830078125,0.62890625,0.6650390625,0.673828125,0.66796875,0.6376953125,0.5830078125,0.5185546875,0.46484375,0.4345703125,0.4287109375,0.431640625,0.44921875,0.484375,0.53125,0.576171875,0.607421875,0.6220703125,0.6220703125,0.587890625,0.5361328125,0.5009765625,0.5068359375,0.5537109375,0.6220703125,0.67578125,0.6572265625,0.5625,0.4365234375,0.341796875,0.3232421875,0.376953125,0.4521484375,0.53515625,0.6064453125,0.650390625,0.6640625,0.666015625,0.673828125,0.671875,0.62890625,0.55859375,0.4951171875,0.4716796875,0.49609375,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4384765625,0.4833984375,0.548828125,0.6025390625,0.6201171875,0.59765625,0.55078125,0.49609375,0.4375,0.41015625,0.4375,0.5146484375,0.603515625,0.673828125,0.720703125,0.7109375,0.646484375,0.5625,0.5068359375,0.5107421875,0.5703125,0.6328125,0.6552734375,0.630859375,0.5791015625,0.53515625,0.5302734375,0.5703125,0.6162109375,0.63671875,0.6142578125,0.5556640625,0.486328125,0.439453125,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.4013671875,0.4716796875,0.56640625,0.6376953125,0.6552734375,0.6181640625,0.55078125,0.478515625,0.4111328125,0.37109375,0.369140625,0.39453125,0.421875,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.5546875,0.615234375,0.6513671875,0.6376953125,0.5791015625,0.505859375,0.4482421875,0.3974609375,0.3583984375,0.3447265625,0.361328125,0.39453125,0.421875,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.681640625,0.7177734375,0.763671875,0.7890625,0.7783203125,0.7333984375,0.673828125,0.6025390625,0.509765625,0.43359375,0.4150390625,0.462890625,0.544921875,0.6220703125,0.6787109375,0.671875,0.5966796875,0.4892578125,0.404296875,0.3837890625,0.4287109375,0.486328125,0.5185546875,0.5107421875,0.466796875,0.4111328125,0.376953125,0.376953125,0.3798828125,0.3583984375,0.326171875,0.3095703125,0.32421875,0.369140625,0.4287109375,0.48828125,0.533203125,0.544921875,0.5185546875,0.4736328125,0.4375,0.4287109375,0.41796875,0.3701171875,0.3046875,0.2607421875,0.2626953125,0.30859375,0.376953125,0.4482421875,0.5068359375,0.5283203125,0.501953125,0.4462890625,0.3974609375,0.376953125,0.36328125,0.3408203125,0.328125,0.3427734375,0.3876953125,0.4453125,0.5,0.556640625,0.623046875,0.6708984375,0.6708984375,0.623046875,0.556640625,0.5,0.4482421875,0.40234375,0.376953125,0.3798828125,0.40234375,0.423828125,0.4287109375,0.4375,0.4736328125,0.5185546875,0.544921875,0.533203125,0.48828125,0.4287109375,0.36328125,0.2978515625,0.2685546875,0.30078125,0.384765625,0.48046875,0.55078125,0.6025390625,0.611328125,0.5771484375,0.525390625,0.4912109375,0.5,0.55078125,0.62109375,0.7099609375,0.787109375,0.814453125,0.787109375,0.728515625,0.673828125,0.6240234375,0.580078125,0.5390625,0.4951171875,0.443359375,0.38671875,0.3251953125,0.2705078125,0.2490234375,0.2841796875,0.37109375,0.47265625,0.5458984375,0.5703125,0.58203125,0.5947265625,0.6044921875,0.6044921875,0.5947265625,0.58203125,0.5703125,0.5625,0.5673828125,0.5849609375,0.30859375,0.2978515625,0.2783203125,0.2626953125,0.2587890625,0.2734375,0.341796875,0.4521484375,0.5634765625,0.6318359375,0.640625,0.6044921875,0.5556640625,0.5029296875,0.4638671875,0.455078125,0.4755859375,0.5068359375,0.5302734375,0.5380859375,0.50390625,0.427734375,0.3369140625,0.2666015625,0.2421875,0.2587890625,0.291015625,0.3369140625,0.375,0.3828125,0.35546875,0.306640625,0.2587890625,0.2314453125,0.2724609375,0.3779296875,0.4990234375,0.580078125,0.5869140625,0.5302734375,0.4462890625,0.33203125,0.228515625,0.1845703125,0.2138671875,0.2880859375,0.3642578125,0.4345703125,0.490234375,0.5,0.4521484375,0.37109375,0.296875,0.2587890625,0.23828125,0.2431640625,0.275390625,0.322265625,0.3623046875,0.3759765625,0.3642578125,0.3369140625,0.2841796875,0.2236328125,0.1845703125,0.18359375,0.21484375,0.2587890625,0.314453125,0.40625,0.521484375,0.6298828125,0.703125,0.7353515625,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.251953125,0.2265625,0.2041015625,0.208984375,0.2529296875,0.3212890625,0.39453125,0.4638671875,0.5107421875,0.5078125,0.44921875,0.3623046875,0.2900390625,0.2587890625,0.2548828125,0.3095703125,0.4169921875,0.53515625,0.6181640625,0.6376953125,0.6044921875,0.5556640625,0.49609375,0.4306640625,0.369140625,0.3212890625,0.2861328125,0.2587890625,0.2353515625,0.2314453125,0.26953125,0.353515625,0.4580078125,0.548828125,0.6044921875,0.6533203125,0.703125,0.7177734375,0.673828125,0.580078125,0.4755859375,0.39453125,0.322265625,0.2587890625,0.2314453125,0.25390625,0.310546875,0.3662109375,0.39453125,0.4091796875,0.408203125,0.3916015625,0.3671875,0.349609375,0.3486328125,0.3642578125,0.380859375,0.392578125,0.3994140625,0.408203125,0.4228515625,0.443359375,0.46875,0.498046875,0.533203125,0.5576171875,0.5576171875,0.533203125,0.498046875,0.46875,0.451171875,0.4658203125,0.5078125,0.5546875,0.5791015625,0.5693359375,0.5302734375,0.4833984375,0.439453125,0.416015625,0.427734375,0.46484375,0.5048828125,0.5302734375,0.5380859375,0.505859375,0.44921875,0.4033203125,0.3955078125,0.4326171875,0.5,0.5693359375,0.6201171875,0.6240234375,0.57421875,0.4931640625,0.4248046875,0.39453125,0.3857421875,0.4140625,0.4638671875,0.501953125,0.5029296875,0.4619140625,0.39453125,0.322265625,0.2705078125,0.28125,0.3720703125,0.5166015625,0.65234375,0.740234375,0.8037109375,0.830078125,0.8095703125,0.759765625,0.71484375,0.7060546875,0.740234375,0.771484375,0.74609375,0.6708984375,0.5849609375,0.53515625,0.5439453125,0.6044921875,0.66796875,0.6943359375,0.6845703125,0.66015625,0.650390625,0.6767578125,0.740234375,0.80859375,0.8505859375,0.8369140625,0.76171875,0.6572265625,0.5703125,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.4345703125,0.455078125,0.4638671875,0.4775390625,0.5107421875,0.5654296875,0.634765625,0.7138671875,0.8046875,0.8759765625,0.892578125,0.853515625,0.7919921875,0.740234375,0.6962890625,0.6630859375,0.654296875,0.673828125,0.70703125,0.7333984375,0.740234375,0.7333984375,0.701171875,0.640625,0.568359375,0.5087890625,0.4755859375,0.46875,0.4697265625,0.474609375,0.4912109375,0.5244140625,0.56640625,0.60546875,0.634765625,0.650390625,0.6279296875,0.580078125,0.5380859375,0.5322265625,0.5693359375,0.634765625,0.6884765625,0.666015625,0.5654296875,0.43359375,0.3330078125,0.310546875,0.3642578125,0.4384765625,0.521484375,0.599609375,0.6572265625,0.6923828125,0.7158203125,0.740234375,0.755859375,0.732421875,0.673828125,0.607421875,0.56640625,0.5673828125,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.474609375,0.501953125,0.546875,0.5908203125,0.6171875,0.6201171875,0.6044921875,0.5830078125,0.5595703125,0.5517578125,0.5771484375,0.6298828125,0.6904296875,0.740234375,0.76953125,0.7353515625,0.6435546875,0.5380859375,0.470703125,0.4716796875,0.5302734375,0.5966796875,0.638671875,0.6376953125,0.599609375,0.548828125,0.521484375,0.5302734375,0.546875,0.5537109375,0.54296875,0.51953125,0.4912109375,0.4736328125,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.4052734375,0.4951171875,0.607421875,0.6904296875,0.7109375,0.6728515625,0.6044921875,0.53125,0.462890625,0.4189453125,0.4140625,0.4375,0.4619140625,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.5185546875,0.5302734375,0.5244140625,0.4970703125,0.455078125,0.41796875,0.39453125,0.3779296875,0.373046875,0.3857421875,0.4140625,0.4443359375,0.46484375,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.74609375,0.7724609375,0.806640625,0.826171875,0.8173828125,0.7841796875,0.740234375,0.68359375,0.595703125,0.5107421875,0.4716796875,0.4951171875,0.5615234375,0.634765625,0.6943359375,0.7001953125,0.642578125,0.5498046875,0.4677734375,0.4384765625,0.46875,0.5068359375,0.51171875,0.4775390625,0.4189453125,0.3671875,0.3466796875,0.3642578125,0.3857421875,0.3916015625,0.3857421875,0.3837890625,0.3955078125,0.4267578125,0.46875,0.513671875,0.546875,0.5546875,0.53515625,0.501953125,0.4755859375,0.46875,0.45703125,0.40234375,0.3251953125,0.267578125,0.2568359375,0.296875,0.3642578125,0.4375,0.5048828125,0.5380859375,0.5185546875,0.4609375,0.3994140625,0.3642578125,0.3388671875,0.3251953125,0.3359375,0.375,0.4287109375,0.474609375,0.5,0.5205078125,0.5458984375,0.5634765625,0.5634765625,0.5458984375,0.5205078125,0.5,0.48046875,0.462890625,0.4521484375,0.4521484375,0.4599609375,0.466796875,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.421875,0.37890625,0.3671875,0.40234375,0.4755859375,0.55078125,0.6044921875,0.642578125,0.6494140625,0.6240234375,0.5849609375,0.5595703125,0.56640625,0.6044921875,0.654296875,0.71484375,0.767578125,0.7919921875,0.78515625,0.76171875,0.740234375,0.716796875,0.6708984375,0.59375,0.494140625,0.392578125,0.3115234375,0.2587890625,0.2177734375,0.2021484375,0.234375,0.3134765625,0.4130859375,0.4912109375,0.5302734375,0.5595703125,0.59375,0.6181640625,0.6181640625,0.59375,0.5595703125,0.5302734375,0.5107421875,0.51953125,0.5576171875,0.3447265625,0.3251953125,0.2919921875,0.265625,0.2587890625,0.271484375,0.33203125,0.435546875,0.546875,0.6259765625,0.65234375,0.634765625,0.6083984375,0.580078125,0.5517578125,0.52734375,0.5068359375,0.4873046875,0.46875,0.439453125,0.3740234375,0.2900390625,0.22265625,0.1982421875,0.216796875,0.2587890625,0.306640625,0.35546875,0.3828125,0.375,0.3369140625,0.291015625,0.2587890625,0.248046875,0.2958984375,0.3916015625,0.48828125,0.5419921875,0.5302734375,0.46875,0.3876953125,0.2841796875,0.201171875,0.181640625,0.2314453125,0.31640625,0.39453125,0.4677734375,0.529296875,0.546875,0.5,0.4072265625,0.31640625,0.2587890625,0.2158203125,0.1875,0.1953125,0.2421875,0.3095703125,0.3662109375,0.39453125,0.40625,0.3876953125,0.341796875,0.287109375,0.2470703125,0.2392578125,0.2587890625,0.2958984375,0.373046875,0.4853515625,0.6015625,0.689453125,0.732421875,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2509765625,0.22265625,0.1923828125,0.189453125,0.2265625,0.2919921875,0.3642578125,0.4287109375,0.45703125,0.4326171875,0.3671875,0.2939453125,0.2529296875,0.2587890625,0.2900390625,0.3642578125,0.4716796875,0.57421875,0.6396484375,0.654296875,0.634765625,0.6064453125,0.568359375,0.513671875,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.2197265625,0.216796875,0.2734375,0.3798828125,0.5029296875,0.5947265625,0.634765625,0.6640625,0.6923828125,0.6904296875,0.6376953125,0.544921875,0.443359375,0.3642578125,0.296875,0.255859375,0.2568359375,0.294921875,0.3447265625,0.3720703125,0.3642578125,0.3486328125,0.349609375,0.3671875,0.3916015625,0.408203125,0.4091796875,0.39453125,0.373046875,0.3486328125,0.341796875,0.3662109375,0.4189453125,0.4794921875,0.5302734375,0.580078125,0.6396484375,0.681640625,0.681640625,0.6396484375,0.580078125,0.5302734375,0.48828125,0.462890625,0.4609375,0.474609375,0.490234375,0.490234375,0.46875,0.4462890625,0.4375,0.447265625,0.4658203125,0.482421875,0.484375,0.46875,0.44140625,0.3896484375,0.33984375,0.3251953125,0.359375,0.4267578125,0.5,0.5634765625,0.5888671875,0.5576171875,0.4833984375,0.4033203125,0.3583984375,0.3642578125,0.392578125,0.4482421875,0.5048828125,0.52734375,0.5,0.4365234375,0.3642578125,0.29296875,0.244140625,0.26171875,0.361328125,0.51171875,0.6513671875,0.740234375,0.806640625,0.8427734375,0.8369140625,0.794921875,0.7470703125,0.724609375,0.740234375,0.7529296875,0.7177734375,0.646484375,0.5771484375,0.546875,0.5712890625,0.634765625,0.697265625,0.720703125,0.7041015625,0.6708984375,0.654296875,0.677734375,0.740234375,0.8095703125,0.85546875,0.8427734375,0.759765625,0.6376953125,0.529296875,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.3857421875,0.392578125,0.3974609375,0.4189453125,0.466796875,0.533203125,0.6044921875,0.681640625,0.765625,0.828125,0.8447265625,0.8173828125,0.7724609375,0.740234375,0.71484375,0.6953125,0.6904296875,0.701171875,0.720703125,0.736328125,0.740234375,0.7353515625,0.7099609375,0.6630859375,0.607421875,0.560546875,0.53515625,0.5302734375,0.525390625,0.5078125,0.4912109375,0.4912109375,0.5166015625,0.55859375,0.6044921875,0.638671875,0.6298828125,0.5849609375,0.53515625,0.5146484375,0.541015625,0.6044921875,0.6591796875,0.64453125,0.5576171875,0.44140625,0.3544921875,0.33984375,0.39453125,0.4658203125,0.5341796875,0.5908203125,0.6328125,0.6640625,0.6982421875,0.740234375,0.7783203125,0.783203125,0.748046875,0.6904296875,0.6376953125,0.6181640625,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.529296875,0.53125,0.541015625,0.560546875,0.587890625,0.6142578125,0.634765625,0.65234375,0.6630859375,0.6708984375,0.6796875,0.693359375,0.71484375,0.740234375,0.7490234375,0.6943359375,0.5849609375,0.4716796875,0.4052734375,0.4091796875,0.46875,0.5419921875,0.60546875,0.6328125,0.6103515625,0.552734375,0.498046875,0.46875,0.4521484375,0.4453125,0.4560546875,0.4794921875,0.5078125,0.525390625,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.4541015625,0.55859375,0.673828125,0.748046875,0.7548828125,0.705078125,0.634765625,0.5625,0.498046875,0.4609375,0.4638671875,0.4931640625,0.5224609375,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.4755859375,0.43359375,0.3857421875,0.3505859375,0.337890625,0.345703125,0.3642578125,0.38671875,0.419921875,0.4609375,0.4970703125,0.51953125,0.5283203125,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.744140625,0.7587890625,0.7783203125,0.7900390625,0.78515625,0.765625,0.740234375,0.701171875,0.6240234375,0.53515625,0.48046875,0.4833984375,0.5341796875,0.6044921875,0.6689453125,0.697265625,0.673828125,0.6123046875,0.5478515625,0.515625,0.5302734375,0.5458984375,0.5224609375,0.4638671875,0.3974609375,0.35546875,0.357421875,0.39453125,0.4375,0.47265625,0.4912109375,0.4970703125,0.498046875,0.5078125,0.5302734375,0.5556640625,0.5751953125,0.580078125,0.568359375,0.548828125,0.533203125,0.5302734375,0.5166015625,0.458984375,0.375,0.30859375,0.2919921875,0.328125,0.39453125,0.470703125,0.548828125,0.5966796875,0.5849609375,0.5234375,0.4482421875,0.39453125,0.35546875,0.345703125,0.375,0.4306640625,0.484375,0.5087890625,0.5,0.478515625,0.453125,0.435546875,0.435546875,0.453125,0.478515625,0.5,0.5185546875,0.5361328125,0.546875,0.546875,0.5390625,0.5322265625,0.5302734375,0.533203125,0.548828125,0.568359375,0.580078125,0.5751953125,0.5556640625,0.5302734375,0.5029296875,0.4814453125,0.48046875,0.5078125,0.5556640625,0.603515625,0.634765625,0.6572265625,0.6611328125,0.646484375,0.6240234375,0.609375,0.61328125,0.634765625,0.66015625,0.681640625,0.6953125,0.7041015625,0.7119140625,0.72265625,0.740234375,0.7509765625,0.7216796875,0.6376953125,0.513671875,0.38671875,0.298828125,0.2587890625,0.2314453125,0.2119140625,0.2197265625,0.267578125,0.3427734375,0.4169921875,0.46875,0.51953125,0.5791015625,0.62109375,0.62109375,0.5791015625,0.51953125,0.46875,0.4345703125,0.4443359375,0.5,0.44140625,0.416015625,0.3701171875,0.333984375,0.3251953125,0.333984375,0.3759765625,0.4501953125,0.5322265625,0.5966796875,0.625,0.6220703125,0.6142578125,0.61328125,0.60546875,0.5810546875,0.5361328125,0.4814453125,0.4287109375,0.3681640625,0.283203125,0.205078125,0.1728515625,0.19921875,0.26171875,0.3251953125,0.38671875,0.4375,0.45703125,0.435546875,0.3876953125,0.3447265625,0.3251953125,0.328125,0.375,0.44921875,0.5107421875,0.5283203125,0.4951171875,0.4287109375,0.349609375,0.2578125,0.1953125,0.2001953125,0.271484375,0.3671875,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.26171875,0.2021484375,0.1796875,0.216796875,0.298828125,0.38671875,0.4482421875,0.4931640625,0.509765625,0.484375,0.42578125,0.3623046875,0.3251953125,0.3251953125,0.34375,0.3935546875,0.4736328125,0.560546875,0.630859375,0.6669921875,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.31640625,0.28125,0.2392578125,0.22265625,0.248046875,0.306640625,0.376953125,0.4384765625,0.455078125,0.4189453125,0.353515625,0.2978515625,0.287109375,0.3251953125,0.3837890625,0.462890625,0.5458984375,0.607421875,0.6328125,0.6318359375,0.6220703125,0.61328125,0.60546875,0.5830078125,0.53515625,0.4658203125,0.390625,0.3251953125,0.271484375,0.2568359375,0.3037109375,0.4033203125,0.5166015625,0.595703125,0.6220703125,0.6357421875,0.6552734375,0.65625,0.6181640625,0.5419921875,0.4541015625,0.376953125,0.314453125,0.2919921875,0.31640625,0.3681640625,0.412109375,0.4169921875,0.376953125,0.3369140625,0.337890625,0.3818359375,0.443359375,0.4873046875,0.48828125,0.4482421875,0.392578125,0.3349609375,0.306640625,0.3349609375,0.4111328125,0.5,0.5703125,0.638671875,0.71875,0.775390625,0.775390625,0.71875,0.638671875,0.5703125,0.5087890625,0.4521484375,0.41796875,0.41015625,0.4228515625,0.43359375,0.4287109375,0.42578125,0.4482421875,0.484375,0.509765625,0.5087890625,0.4775390625,0.4287109375,0.37109375,0.30078125,0.25390625,0.263671875,0.330078125,0.4208984375,0.5,0.5595703125,0.5673828125,0.515625,0.4306640625,0.359375,0.3408203125,0.376953125,0.4365234375,0.515625,0.5791015625,0.587890625,0.5361328125,0.4541015625,0.376953125,0.3046875,0.24609375,0.24609375,0.32421875,0.45703125,0.5869140625,0.673828125,0.7421875,0.7880859375,0.7939453125,0.7587890625,0.70703125,0.6728515625,0.673828125,0.671875,0.6318359375,0.5693359375,0.5205078125,0.5146484375,0.5546875,0.6220703125,0.6826171875,0.69921875,0.6708984375,0.6240234375,0.595703125,0.6123046875,0.673828125,0.74609375,0.8046875,0.80859375,0.740234375,0.6201171875,0.50390625,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.3818359375,0.3681640625,0.35546875,0.3671875,0.4111328125,0.478515625,0.55078125,0.625,0.6982421875,0.7470703125,0.7529296875,0.724609375,0.6904296875,0.673828125,0.6630859375,0.6552734375,0.6533203125,0.658203125,0.666015625,0.671875,0.673828125,0.6708984375,0.658203125,0.6357421875,0.6083984375,0.5849609375,0.572265625,0.5703125,0.5615234375,0.5234375,0.4736328125,0.4423828125,0.44921875,0.4921875,0.55078125,0.6005859375,0.6044921875,0.5615234375,0.505859375,0.4736328125,0.490234375,0.55078125,0.6083984375,0.6064453125,0.5439453125,0.455078125,0.392578125,0.390625,0.4482421875,0.5146484375,0.55859375,0.576171875,0.580078125,0.587890625,0.6181640625,0.673828125,0.73046875,0.7626953125,0.7548828125,0.7109375,0.6552734375,0.62109375,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.564453125,0.541015625,0.5146484375,0.5068359375,0.52734375,0.5712890625,0.6220703125,0.6708984375,0.708984375,0.7216796875,0.708984375,0.6845703125,0.6689453125,0.673828125,0.66796875,0.6044921875,0.498046875,0.3984375,0.349609375,0.3662109375,0.4287109375,0.505859375,0.587890625,0.638671875,0.6298828125,0.5673828125,0.48828125,0.4287109375,0.3828125,0.3623046875,0.384765625,0.443359375,0.5126953125,0.5595703125,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.521484375,0.62890625,0.732421875,0.783203125,0.7626953125,0.6962890625,0.6220703125,0.55078125,0.4921875,0.466796875,0.484375,0.525390625,0.5615234375,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.4404296875,0.3583984375,0.283203125,0.2509765625,0.271484375,0.3232421875,0.376953125,0.431640625,0.4921875,0.544921875,0.57421875,0.5791015625,0.572265625,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6748046875,0.6806640625,0.6884765625,0.693359375,0.69140625,0.68359375,0.673828125,0.650390625,0.5859375,0.50390625,0.4453125,0.439453125,0.482421875,0.55078125,0.6201171875,0.6689453125,0.6787109375,0.6484375,0.6015625,0.5693359375,0.5703125,0.568359375,0.525390625,0.455078125,0.392578125,0.3681640625,0.392578125,0.4482421875,0.5087890625,0.5625,0.59375,0.595703125,0.5791015625,0.5654296875,0.5703125,0.580078125,0.587890625,0.58984375,0.5849609375,0.5771484375,0.5712890625,0.5703125,0.5576171875,0.5009765625,0.419921875,0.357421875,0.34375,0.380859375,0.4482421875,0.5263671875,0.6142578125,0.6728515625,0.6689453125,0.6044921875,0.517578125,0.4482421875,0.396484375,0.3876953125,0.42578125,0.4873046875,0.5341796875,0.5390625,0.5,0.4423828125,0.3759765625,0.328125,0.328125,0.3759765625,0.4423828125,0.5,0.55078125,0.5966796875,0.6220703125,0.619140625,0.5966796875,0.5751953125,0.5703125,0.5712890625,0.5771484375,0.5849609375,0.58984375,0.587890625,0.580078125,0.5703125,0.5595703125,0.552734375,0.5546875,0.568359375,0.5888671875,0.609375,0.6220703125,0.6298828125,0.6318359375,0.6259765625,0.6171875,0.611328125,0.61328125,0.6220703125,0.6259765625,0.6103515625,0.5859375,0.5732421875,0.5869140625,0.6240234375,0.673828125,0.7158203125,0.7177734375,0.6572265625,0.5478515625,0.4306640625,0.3505859375,0.3251953125,0.3095703125,0.2783203125,0.25390625,0.259765625,0.3017578125,0.365234375,0.4287109375,0.4970703125,0.578125,0.634765625,0.634765625,0.578125,0.4970703125,0.4287109375,0.380859375,0.38671875,0.4482421875,0.5517578125,0.5224609375,0.470703125,0.4296875,0.419921875,0.423828125,0.4423828125,0.4775390625,0.517578125,0.55078125,0.5673828125,0.5693359375,0.57421875,0.5966796875,0.619140625,0.6142578125,0.57421875,0.5087890625,0.439453125,0.36328125,0.26953125,0.2001953125,0.1943359375,0.25390625,0.3427734375,0.419921875,0.48828125,0.5400390625,0.5546875,0.525390625,0.47265625,0.4306640625,0.419921875,0.4287109375,0.4716796875,0.529296875,0.5654296875,0.5576171875,0.5087890625,0.439453125,0.361328125,0.2734375,0.2177734375,0.23046875,0.30859375,0.408203125,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.5,0.419921875,0.34375,0.26171875,0.212890625,0.232421875,0.3125,0.412109375,0.4892578125,0.5546875,0.5947265625,0.5908203125,0.54296875,0.4765625,0.4296875,0.419921875,0.4248046875,0.4453125,0.4814453125,0.5234375,0.5576171875,0.576171875,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.41015625,0.369140625,0.318359375,0.291015625,0.3056640625,0.359375,0.4296875,0.490234375,0.5009765625,0.4609375,0.3994140625,0.3564453125,0.36328125,0.419921875,0.490234375,0.5595703125,0.6064453125,0.6171875,0.599609375,0.5771484375,0.5693359375,0.57421875,0.595703125,0.6142578125,0.6044921875,0.5595703125,0.4912109375,0.419921875,0.3544921875,0.3212890625,0.33984375,0.408203125,0.494140625,0.5546875,0.5693359375,0.5771484375,0.603515625,0.6259765625,0.619140625,0.5732421875,0.5029296875,0.4296875,0.369140625,0.3564453125,0.39453125,0.4541015625,0.494140625,0.486328125,0.4296875,0.3740234375,0.37109375,0.4228515625,0.49609375,0.5478515625,0.544921875,0.4892578125,0.4150390625,0.3330078125,0.283203125,0.30078125,0.380859375,0.48046875,0.5595703125,0.63671875,0.7294921875,0.7939453125,0.7939453125,0.7294921875,0.63671875,0.5595703125,0.48828125,0.423828125,0.3857421875,0.3837890625,0.4091796875,0.4345703125,0.439453125,0.447265625,0.486328125,0.537109375,0.56640625,0.5546875,0.505859375,0.439453125,0.3642578125,0.2802734375,0.2275390625,0.2421875,0.3193359375,0.4189453125,0.5,0.55859375,0.5625,0.5087890625,0.431640625,0.375,0.375,0.4296875,0.505859375,0.59765625,0.6640625,0.6650390625,0.6015625,0.5087890625,0.4296875,0.353515625,0.27734375,0.244140625,0.283203125,0.3837890625,0.49609375,0.5791015625,0.6484375,0.7001953125,0.7119140625,0.681640625,0.6279296875,0.587890625,0.5791015625,0.5703125,0.529296875,0.4736328125,0.439453125,0.4501953125,0.5,0.5693359375,0.62890625,0.6416015625,0.603515625,0.544921875,0.5068359375,0.51953125,0.5791015625,0.6552734375,0.7314453125,0.765625,0.728515625,0.630859375,0.521484375,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.4228515625,0.392578125,0.357421875,0.3466796875,0.376953125,0.4384765625,0.509765625,0.5810546875,0.642578125,0.6728515625,0.662109375,0.6240234375,0.5888671875,0.5791015625,0.5771484375,0.576171875,0.576171875,0.5771484375,0.578125,0.5791015625,0.5791015625,0.5791015625,0.576171875,0.572265625,0.56640625,0.5625,0.5595703125,0.5595703125,0.548828125,0.501953125,0.4384765625,0.3955078125,0.3974609375,0.4423828125,0.509765625,0.5673828125,0.5771484375,0.537109375,0.4765625,0.4375,0.44921875,0.509765625,0.568359375,0.5771484375,0.5322265625,0.466796875,0.421875,0.4306640625,0.4892578125,0.5517578125,0.57421875,0.5556640625,0.51953125,0.4990234375,0.5185546875,0.5791015625,0.646484375,0.6962890625,0.705078125,0.6728515625,0.6181640625,0.5771484375,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.5498046875,0.51171875,0.462890625,0.4365234375,0.451171875,0.5029296875,0.5693359375,0.6357421875,0.685546875,0.69921875,0.6728515625,0.6240234375,0.5869140625,0.5791015625,0.5673828125,0.509765625,0.42578125,0.3583984375,0.3388671875,0.373046875,0.439453125,0.5185546875,0.611328125,0.67578125,0.673828125,0.607421875,0.5166015625,0.439453125,0.3759765625,0.3408203125,0.3544921875,0.4150390625,0.4931640625,0.546875,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.5693359375,0.671875,0.755859375,0.7783203125,0.73046875,0.646484375,0.5693359375,0.4990234375,0.4453125,0.4296875,0.4580078125,0.5087890625,0.5498046875,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.421875,0.3232421875,0.244140625,0.2255859375,0.2744140625,0.35546875,0.4296875,0.4990234375,0.5654296875,0.6064453125,0.6123046875,0.58984375,0.5654296875,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5791015625,0.580078125,0.58203125,0.58203125,0.58203125,0.5810546875,0.5791015625,0.56640625,0.5146484375,0.4453125,0.3974609375,0.396484375,0.44140625,0.509765625,0.580078125,0.6376953125,0.6611328125,0.642578125,0.6005859375,0.56640625,0.5595703125,0.5498046875,0.501953125,0.4345703125,0.3857421875,0.3818359375,0.4228515625,0.4892578125,0.55859375,0.6181640625,0.6455078125,0.6328125,0.5966796875,0.5654296875,0.5595703125,0.560546875,0.5625,0.5625,0.5615234375,0.560546875,0.5595703125,0.5595703125,0.5478515625,0.4970703125,0.4287109375,0.3798828125,0.3779296875,0.421875,0.4892578125,0.5693359375,0.662109375,0.7275390625,0.7265625,0.66015625,0.5673828125,0.4892578125,0.4306640625,0.4208984375,0.4609375,0.5224609375,0.564453125,0.5556640625,0.5,0.423828125,0.333984375,0.2705078125,0.2705078125,0.333984375,0.423828125,0.5,0.5673828125,0.625,0.650390625,0.6376953125,0.599609375,0.5673828125,0.5595703125,0.5595703125,0.560546875,0.5615234375,0.5625,0.5625,0.560546875,0.5595703125,0.5576171875,0.556640625,0.5576171875,0.5595703125,0.5634765625,0.5673828125,0.5693359375,0.5703125,0.5712890625,0.5703125,0.568359375,0.5673828125,0.568359375,0.5693359375,0.5615234375,0.5244140625,0.4755859375,0.44921875,0.462890625,0.5126953125,0.5791015625,0.642578125,0.673828125,0.65234375,0.58203125,0.4951171875,0.4345703125,0.419921875,0.4091796875,0.369140625,0.3212890625,0.2978515625,0.31640625,0.37109375,0.439453125,0.517578125,0.609375,0.6748046875,0.6748046875,0.609375,0.517578125,0.439453125,0.3828125,0.380859375,0.435546875,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.69921875,0.6728515625,0.6240234375,0.5869140625,0.5791015625,0.5771484375,0.5576171875,0.521484375,0.4775390625,0.44140625,0.421875,0.419921875,0.4345703125,0.49609375,0.583984375,0.6552734375,0.6767578125,0.6435546875,0.5791015625,0.5009765625,0.408203125,0.341796875,0.3408203125,0.40625,0.5,0.5791015625,0.6484375,0.7001953125,0.7099609375,0.6748046875,0.6171875,0.5712890625,0.5595703125,0.568359375,0.609375,0.6650390625,0.6982421875,0.6884765625,0.638671875,0.5693359375,0.48828125,0.38671875,0.3046875,0.2841796875,0.3330078125,0.4150390625,0.4892578125,0.568359375,0.669921875,0.75390625,0.7783203125,0.7353515625,0.6552734375,0.5791015625,0.5,0.3994140625,0.3173828125,0.296875,0.34375,0.4248046875,0.5,0.5673828125,0.623046875,0.6484375,0.634765625,0.5966796875,0.5654296875,0.5595703125,0.5576171875,0.5419921875,0.5126953125,0.4765625,0.447265625,0.431640625,0.4296875,0.435546875,0.455078125,0.490234375,0.5302734375,0.5615234375,0.5771484375,0.5791015625,0.568359375,0.5263671875,0.4736328125,0.4443359375,0.458984375,0.5107421875,0.5791015625,0.6376953125,0.6494140625,0.611328125,0.552734375,0.513671875,0.5224609375,0.5791015625,0.642578125,0.67578125,0.6572265625,0.5908203125,0.5087890625,0.4521484375,0.439453125,0.4521484375,0.5078125,0.5859375,0.6474609375,0.6611328125,0.625,0.5595703125,0.48828125,0.4228515625,0.3818359375,0.3779296875,0.400390625,0.4248046875,0.4296875,0.4404296875,0.49609375,0.5771484375,0.6416015625,0.6591796875,0.6240234375,0.5595703125,0.501953125,0.494140625,0.5390625,0.6044921875,0.6484375,0.638671875,0.5791015625,0.5166015625,0.4931640625,0.5107421875,0.546875,0.5673828125,0.5478515625,0.4892578125,0.412109375,0.3125,0.2333984375,0.2158203125,0.2666015625,0.3515625,0.4296875,0.5087890625,0.6015625,0.6650390625,0.6640625,0.59765625,0.505859375,0.4296875,0.3662109375,0.3310546875,0.345703125,0.408203125,0.48828125,0.544921875,0.5595703125,0.5712890625,0.615234375,0.6728515625,0.70703125,0.697265625,0.6474609375,0.5791015625,0.4990234375,0.396484375,0.3115234375,0.287109375,0.3330078125,0.4140625,0.4892578125,0.5498046875,0.5712890625,0.5517578125,0.5166015625,0.4970703125,0.5185546875,0.5791015625,0.65625,0.74609375,0.8076171875,0.8046875,0.7373046875,0.6455078125,0.5693359375,0.490234375,0.3837890625,0.2900390625,0.2548828125,0.2900390625,0.365234375,0.439453125,0.5078125,0.55859375,0.5703125,0.5390625,0.484375,0.44140625,0.4296875,0.41796875,0.3759765625,0.322265625,0.2919921875,0.3037109375,0.353515625,0.419921875,0.4775390625,0.490234375,0.4560546875,0.4033203125,0.369140625,0.3818359375,0.439453125,0.5185546875,0.6240234375,0.7158203125,0.748046875,0.7109375,0.6337890625,0.5595703125,0.4912109375,0.4423828125,0.43359375,0.4658203125,0.5205078125,0.560546875,0.5693359375,0.5556640625,0.5029296875,0.431640625,0.380859375,0.3779296875,0.421875,0.4892578125,0.5576171875,0.6005859375,0.5966796875,0.5478515625,0.478515625,0.4296875,0.419921875,0.421875,0.4228515625,0.4228515625,0.421875,0.4208984375,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.412109375,0.37890625,0.3427734375,0.33203125,0.3603515625,0.419921875,0.4892578125,0.548828125,0.5615234375,0.5263671875,0.47265625,0.4375,0.4501953125,0.509765625,0.5673828125,0.5771484375,0.537109375,0.4765625,0.4375,0.44921875,0.509765625,0.5673828125,0.568359375,0.5107421875,0.4287109375,0.37109375,0.3720703125,0.4296875,0.5,0.552734375,0.5673828125,0.5380859375,0.484375,0.44140625,0.4296875,0.427734375,0.4267578125,0.42578125,0.423828125,0.4228515625,0.421875,0.419921875,0.408203125,0.3662109375,0.3154296875,0.2880859375,0.3046875,0.359375,0.4296875,0.5,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.412109375,0.3876953125,0.3681640625,0.3759765625,0.421875,0.4892578125,0.5595703125,0.6357421875,0.7294921875,0.798828125,0.8046875,0.7451171875,0.65625,0.5791015625,0.5078125,0.439453125,0.3955078125,0.388671875,0.4091796875,0.43359375,0.439453125,0.431640625,0.3984375,0.3603515625,0.3486328125,0.376953125,0.4384765625,0.509765625,0.5869140625,0.6689453125,0.71484375,0.6904296875,0.603515625,0.5,0.419921875,0.3515625,0.30078125,0.2890625,0.3203125,0.375,0.41796875,0.4296875,0.443359375,0.494140625,0.5634765625,0.611328125,0.61328125,0.568359375,0.5,0.421875,0.3369140625,0.2880859375,0.3095703125,0.3935546875,0.498046875,0.5791015625,0.6455078125,0.681640625,0.6630859375,0.595703125,0.51171875,0.453125,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.4208984375,0.421875,0.4208984375,0.4189453125,0.41796875,0.41796875,0.419921875,0.4130859375,0.3818359375,0.345703125,0.333984375,0.361328125,0.419921875,0.4892578125,0.556640625,0.6015625,0.6025390625,0.5576171875,0.4921875,0.4423828125,0.4296875,0.419921875,0.3857421875,0.3466796875,0.3359375,0.3662109375,0.427734375,0.5,0.5673828125,0.609375,0.603515625,0.55078125,0.48046875,0.4296875,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.431640625,0.3974609375,0.357421875,0.341796875,0.3662109375,0.421875,0.4892578125,0.56640625,0.6591796875,0.7275390625,0.7314453125,0.669921875,0.578125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5673828125,0.611328125,0.6083984375,0.5576171875,0.4853515625,0.43359375,0.419921875,0.4189453125,0.419921875,0.423828125,0.4296875,0.435546875,0.439453125,0.439453125,0.439453125,0.439453125,0.4384765625,0.4365234375,0.43359375,0.431640625,0.4296875,0.427734375,0.423828125,0.4208984375,0.41796875,0.4169921875,0.41796875,0.419921875,0.412109375,0.3720703125,0.3203125,0.2900390625,0.3017578125,0.3515625,0.419921875,0.4912109375,0.5615234375,0.609375,0.6201171875,0.6005859375,0.5771484375,0.5693359375,0.5576171875,0.515625,0.4619140625,0.431640625,0.443359375,0.4931640625,0.5595703125,0.6357421875,0.7275390625,0.7939453125,0.794921875,0.73046875,0.638671875,0.5595703125,0.4970703125,0.4765625,0.498046875,0.7216796875,0.708984375,0.6845703125,0.6689453125,0.673828125,0.673828125,0.6328125,0.5498046875,0.44921875,0.3662109375,0.3251953125,0.3251953125,0.3525390625,0.4375,0.5634765625,0.6767578125,0.7353515625,0.7265625,0.673828125,0.603515625,0.517578125,0.4521484375,0.4482421875,0.5068359375,0.5947265625,0.673828125,0.7421875,0.7880859375,0.7861328125,0.732421875,0.654296875,0.5927734375,0.5703125,0.5712890625,0.611328125,0.6748046875,0.72265625,0.728515625,0.6884765625,0.6220703125,0.541015625,0.4375,0.34765625,0.310546875,0.3349609375,0.392578125,0.4482421875,0.5107421875,0.611328125,0.716796875,0.78125,0.7822265625,0.7353515625,0.673828125,0.6025390625,0.5068359375,0.4189453125,0.376953125,0.3935546875,0.4453125,0.5,0.548828125,0.5888671875,0.6064453125,0.599609375,0.5791015625,0.5654296875,0.5703125,0.57421875,0.552734375,0.50390625,0.443359375,0.39453125,0.373046875,0.376953125,0.3955078125,0.4453125,0.521484375,0.599609375,0.6552734375,0.677734375,0.673828125,0.654296875,0.611328125,0.5634765625,0.5419921875,0.5615234375,0.6123046875,0.673828125,0.7255859375,0.7412109375,0.71484375,0.6669921875,0.630859375,0.6328125,0.673828125,0.716796875,0.724609375,0.6796875,0.59375,0.5009765625,0.44140625,0.4287109375,0.4404296875,0.4931640625,0.5703125,0.6337890625,0.654296875,0.6259765625,0.5703125,0.5068359375,0.4453125,0.3984375,0.3779296875,0.37890625,0.3837890625,0.376953125,0.3798828125,0.431640625,0.5185546875,0.599609375,0.6396484375,0.6240234375,0.5703125,0.5224609375,0.5322265625,0.59765625,0.6806640625,0.736328125,0.732421875,0.673828125,0.60546875,0.5556640625,0.529296875,0.521484375,0.515625,0.4931640625,0.4482421875,0.38671875,0.298828125,0.220703125,0.193359375,0.228515625,0.3017578125,0.376953125,0.4541015625,0.5361328125,0.587890625,0.5791015625,0.515625,0.4365234375,0.376953125,0.3310546875,0.310546875,0.3369140625,0.4052734375,0.4873046875,0.548828125,0.5703125,0.5908203125,0.646484375,0.7177734375,0.7666015625,0.7705078125,0.732421875,0.673828125,0.599609375,0.4921875,0.384765625,0.3251953125,0.33203125,0.384765625,0.4482421875,0.50390625,0.541015625,0.556640625,0.564453125,0.580078125,0.6171875,0.673828125,0.7392578125,0.806640625,0.8447265625,0.8271484375,0.759765625,0.6806640625,0.6220703125,0.5595703125,0.462890625,0.3642578125,0.3095703125,0.3154296875,0.3671875,0.4287109375,0.4892578125,0.533203125,0.541015625,0.505859375,0.4462890625,0.3974609375,0.376953125,0.359375,0.3154296875,0.263671875,0.2333984375,0.2392578125,0.275390625,0.3251953125,0.3701171875,0.390625,0.384765625,0.369140625,0.3642578125,0.3837890625,0.4287109375,0.490234375,0.580078125,0.6669921875,0.708984375,0.6904296875,0.6337890625,0.5703125,0.5126953125,0.48046875,0.48828125,0.5322265625,0.587890625,0.6220703125,0.6220703125,0.59765625,0.52734375,0.4326171875,0.361328125,0.34375,0.380859375,0.4482421875,0.513671875,0.544921875,0.5234375,0.4560546875,0.376953125,0.328125,0.3251953125,0.3359375,0.34375,0.345703125,0.3408203125,0.3330078125,0.3271484375,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3203125,0.298828125,0.2802734375,0.287109375,0.3251953125,0.3857421875,0.4482421875,0.5009765625,0.5234375,0.51171875,0.4873046875,0.4755859375,0.498046875,0.55078125,0.6005859375,0.6044921875,0.5615234375,0.505859375,0.4736328125,0.490234375,0.55078125,0.607421875,0.5966796875,0.517578125,0.4111328125,0.33203125,0.3212890625,0.376953125,0.4482421875,0.5068359375,0.5283203125,0.501953125,0.4462890625,0.3974609375,0.376953125,0.3671875,0.359375,0.353515625,0.3486328125,0.34375,0.3359375,0.3251953125,0.306640625,0.263671875,0.2197265625,0.2080078125,0.240234375,0.3046875,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.314453125,0.306640625,0.3212890625,0.369140625,0.4404296875,0.513671875,0.5703125,0.630859375,0.7158203125,0.7939453125,0.826171875,0.7998046875,0.7373046875,0.673828125,0.6083984375,0.533203125,0.4677734375,0.4287109375,0.419921875,0.42578125,0.4287109375,0.421875,0.39453125,0.369140625,0.37109375,0.4111328125,0.478515625,0.55078125,0.6240234375,0.6845703125,0.693359375,0.6298828125,0.5146484375,0.400390625,0.3251953125,0.265625,0.220703125,0.2138671875,0.2490234375,0.3076171875,0.357421875,0.376953125,0.400390625,0.46484375,0.546875,0.60546875,0.611328125,0.568359375,0.5,0.423828125,0.3505859375,0.3232421875,0.369140625,0.474609375,0.58984375,0.673828125,0.7373046875,0.759765625,0.71875,0.6240234375,0.515625,0.4443359375,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.333984375,0.3359375,0.330078125,0.3212890625,0.3154296875,0.3173828125,0.3251953125,0.330078125,0.31640625,0.30078125,0.3017578125,0.3330078125,0.38671875,0.4482421875,0.5068359375,0.5498046875,0.552734375,0.5126953125,0.44921875,0.3974609375,0.376953125,0.3603515625,0.3251953125,0.2978515625,0.3037109375,0.3525390625,0.42578125,0.5,0.5634765625,0.5888671875,0.5556640625,0.4755859375,0.384765625,0.3291015625,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.421875,0.39453125,0.361328125,0.3447265625,0.3583984375,0.3974609375,0.4482421875,0.5087890625,0.59375,0.66796875,0.6904296875,0.6513671875,0.5751953125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.56640625,0.6044921875,0.5859375,0.5146484375,0.419921875,0.349609375,0.3251953125,0.318359375,0.3232421875,0.34375,0.3759765625,0.40625,0.4248046875,0.4287109375,0.4296875,0.4287109375,0.4248046875,0.416015625,0.40234375,0.388671875,0.376953125,0.3642578125,0.3447265625,0.3232421875,0.3095703125,0.3076171875,0.3154296875,0.3251953125,0.3271484375,0.298828125,0.2548828125,0.224609375,0.228515625,0.267578125,0.3251953125,0.3935546875,0.48046875,0.5654296875,0.6220703125,0.640625,0.6337890625,0.6220703125,0.603515625,0.5595703125,0.5087890625,0.4775390625,0.4833984375,0.5205078125,0.5703125,0.6298828125,0.708984375,0.771484375,0.7802734375,0.728515625,0.646484375,0.5703125,0.5048828125,0.466796875,0.4638671875,0.6708984375,0.6796875,0.693359375,0.71484375,0.740234375,0.7509765625,0.6962890625,0.57421875,0.4248046875,0.302734375,0.248046875,0.2587890625,0.3017578125,0.40625,0.5517578125,0.6875,0.7666015625,0.7763671875,0.740234375,0.685546875,0.611328125,0.5498046875,0.5380859375,0.5849609375,0.6640625,0.740234375,0.80859375,0.8505859375,0.8369140625,0.76171875,0.6572265625,0.5703125,0.5302734375,0.5166015625,0.5517578125,0.6240234375,0.693359375,0.72265625,0.6982421875,0.634765625,0.556640625,0.4638671875,0.3828125,0.341796875,0.345703125,0.3720703125,0.39453125,0.4267578125,0.509765625,0.6240234375,0.7265625,0.78125,0.7783203125,0.740234375,0.6875,0.6142578125,0.5380859375,0.4853515625,0.4697265625,0.48046875,0.5,0.5146484375,0.517578125,0.5078125,0.4970703125,0.494140625,0.505859375,0.5302734375,0.5478515625,0.5322265625,0.48046875,0.4140625,0.3623046875,0.345703125,0.3642578125,0.40234375,0.482421875,0.5908203125,0.6904296875,0.75,0.7607421875,0.740234375,0.7080078125,0.662109375,0.6240234375,0.6162109375,0.6435546875,0.6923828125,0.740234375,0.78125,0.8037109375,0.7978515625,0.7705078125,0.740234375,0.7275390625,0.740234375,0.751953125,0.7333984375,0.67578125,0.5966796875,0.5224609375,0.478515625,0.46875,0.4765625,0.5107421875,0.5576171875,0.5927734375,0.5986328125,0.572265625,0.5302734375,0.4853515625,0.447265625,0.421875,0.408203125,0.400390625,0.3876953125,0.3642578125,0.3486328125,0.3759765625,0.44140625,0.515625,0.564453125,0.56640625,0.5302734375,0.5009765625,0.53515625,0.626953125,0.7314453125,0.798828125,0.798828125,0.740234375,0.6650390625,0.5810546875,0.5048828125,0.4521484375,0.4248046875,0.4111328125,0.39453125,0.365234375,0.3056640625,0.2421875,0.2119140625,0.232421875,0.2919921875,0.3642578125,0.4365234375,0.5,0.52734375,0.5048828125,0.4482421875,0.392578125,0.3642578125,0.345703125,0.3369140625,0.3505859375,0.3916015625,0.447265625,0.498046875,0.5302734375,0.56640625,0.6376953125,0.7236328125,0.787109375,0.8056640625,0.783203125,0.740234375,0.681640625,0.580078125,0.4609375,0.369140625,0.3349609375,0.3515625,0.39453125,0.4404296875,0.4892578125,0.541015625,0.59375,0.6455078125,0.6943359375,0.740234375,0.7841796875,0.8154296875,0.814453125,0.775390625,0.71484375,0.662109375,0.634765625,0.6064453125,0.5458984375,0.4716796875,0.4169921875,0.40234375,0.4267578125,0.46875,0.5146484375,0.5498046875,0.5546875,0.5185546875,0.45703125,0.3984375,0.3642578125,0.3330078125,0.2900390625,0.248046875,0.2236328125,0.22265625,0.2392578125,0.2587890625,0.279296875,0.3076171875,0.3447265625,0.3837890625,0.419921875,0.4482421875,0.46875,0.4951171875,0.54296875,0.59375,0.62109375,0.6123046875,0.5751953125,0.5302734375,0.4921875,0.4873046875,0.521484375,0.580078125,0.6318359375,0.65234375,0.634765625,0.59375,0.50390625,0.3916015625,0.30859375,0.2880859375,0.326171875,0.39453125,0.45703125,0.4775390625,0.44140625,0.3642578125,0.28515625,0.24609375,0.2587890625,0.2841796875,0.3037109375,0.30859375,0.2978515625,0.2783203125,0.2626953125,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.255859375,0.24609375,0.2421875,0.2587890625,0.2978515625,0.3466796875,0.39453125,0.4375,0.4697265625,0.4912109375,0.5078125,0.529296875,0.5615234375,0.6044921875,0.638671875,0.6298828125,0.5849609375,0.53515625,0.5146484375,0.541015625,0.6044921875,0.6591796875,0.640625,0.546875,0.421875,0.328125,0.3095703125,0.3642578125,0.4375,0.5048828125,0.5380859375,0.5185546875,0.4609375,0.3994140625,0.3642578125,0.33984375,0.3232421875,0.314453125,0.30859375,0.2998046875,0.283203125,0.2587890625,0.2255859375,0.177734375,0.142578125,0.1513671875,0.2080078125,0.2880859375,0.3642578125,0.4345703125,0.490234375,0.4990234375,0.4521484375,0.37109375,0.296875,0.2587890625,0.2373046875,0.2392578125,0.28125,0.35546875,0.439453125,0.5009765625,0.5302734375,0.5595703125,0.625,0.708984375,0.7763671875,0.80078125,0.7822265625,0.740234375,0.689453125,0.6240234375,0.5546875,0.501953125,0.4755859375,0.46875,0.46875,0.4619140625,0.4375,0.4140625,0.4189453125,0.462890625,0.53125,0.6044921875,0.6728515625,0.708984375,0.6796875,0.5771484375,0.4375,0.3212890625,0.2587890625,0.2138671875,0.177734375,0.1728515625,0.208984375,0.271484375,0.330078125,0.3642578125,0.4033203125,0.48046875,0.568359375,0.6240234375,0.62109375,0.5693359375,0.5,0.42578125,0.3603515625,0.34765625,0.4111328125,0.53125,0.654296875,0.740234375,0.8037109375,0.8232421875,0.775390625,0.673828125,0.5595703125,0.4853515625,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.28125,0.28515625,0.2705078125,0.248046875,0.2333984375,0.2373046875,0.2587890625,0.28125,0.291015625,0.2919921875,0.2978515625,0.31640625,0.3505859375,0.39453125,0.44140625,0.486328125,0.5078125,0.4912109375,0.4462890625,0.396484375,0.3642578125,0.33203125,0.287109375,0.2587890625,0.275390625,0.3388671875,0.4228515625,0.5,0.5595703125,0.568359375,0.5078125,0.40234375,0.30078125,0.2490234375,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.46484375,0.4443359375,0.4140625,0.3857421875,0.373046875,0.3779296875,0.39453125,0.4248046875,0.4931640625,0.57421875,0.6240234375,0.6201171875,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5673828125,0.60546875,0.5849609375,0.501953125,0.390625,0.2998046875,0.2587890625,0.23828125,0.244140625,0.2861328125,0.353515625,0.419921875,0.4609375,0.46875,0.470703125,0.47265625,0.46875,0.4521484375,0.423828125,0.392578125,0.3642578125,0.33203125,0.28515625,0.2373046875,0.208984375,0.2099609375,0.232421875,0.2587890625,0.2783203125,0.271484375,0.2421875,0.2119140625,0.201171875,0.21875,0.2587890625,0.3154296875,0.4091796875,0.521484375,0.61328125,0.658203125,0.658203125,0.634765625,0.6044921875,0.5615234375,0.5185546875,0.494140625,0.494140625,0.509765625,0.5302734375,0.55859375,0.6142578125,0.6708984375,0.693359375,0.666015625,0.6025390625,0.5302734375,0.4599609375,0.4013671875,0.3720703125,0.5517578125,0.5771484375,0.6298828125,0.6904296875,0.740234375,0.7666015625,0.71484375,0.58203125,0.4169921875,0.2841796875,0.232421875,0.2587890625,0.318359375,0.4248046875,0.560546875,0.6796875,0.748046875,0.7607421875,0.740234375,0.7041015625,0.6435546875,0.5849609375,0.56640625,0.5986328125,0.6669921875,0.740234375,0.8095703125,0.85546875,0.8427734375,0.759765625,0.6376953125,0.529296875,0.46875,0.4384765625,0.462890625,0.5380859375,0.6240234375,0.6748046875,0.6650390625,0.6044921875,0.5322265625,0.4609375,0.408203125,0.3828125,0.3798828125,0.3779296875,0.3642578125,0.3583984375,0.4052734375,0.5048828125,0.6240234375,0.716796875,0.75390625,0.740234375,0.7119140625,0.673828125,0.6298828125,0.5849609375,0.5478515625,0.51953125,0.5,0.4736328125,0.4296875,0.3857421875,0.3671875,0.3828125,0.4228515625,0.46875,0.5048828125,0.5029296875,0.4609375,0.40234375,0.3603515625,0.3583984375,0.39453125,0.453125,0.5546875,0.673828125,0.7646484375,0.7998046875,0.7822265625,0.740234375,0.6923828125,0.6435546875,0.6162109375,0.6240234375,0.662109375,0.7080078125,0.740234375,0.7685546875,0.798828125,0.8173828125,0.814453125,0.791015625,0.76171875,0.740234375,0.716796875,0.677734375,0.626953125,0.5791015625,0.546875,0.5322265625,0.5302734375,0.5322265625,0.5400390625,0.5458984375,0.541015625,0.5224609375,0.49609375,0.46875,0.4482421875,0.4462890625,0.4580078125,0.46875,0.4638671875,0.4365234375,0.39453125,0.35546875,0.3466796875,0.375,0.4248046875,0.470703125,0.486328125,0.46875,0.4599609375,0.5146484375,0.6240234375,0.7373046875,0.8037109375,0.7998046875,0.740234375,0.6591796875,0.5498046875,0.4384765625,0.361328125,0.3349609375,0.3447265625,0.3642578125,0.373046875,0.3486328125,0.3056640625,0.275390625,0.28125,0.326171875,0.39453125,0.4619140625,0.5029296875,0.501953125,0.4638671875,0.4140625,0.3857421875,0.39453125,0.408203125,0.4052734375,0.3916015625,0.3837890625,0.39453125,0.42578125,0.46875,0.5234375,0.6044921875,0.693359375,0.7568359375,0.7783203125,0.765625,0.740234375,0.7021484375,0.6220703125,0.513671875,0.4140625,0.3544921875,0.34375,0.3642578125,0.39453125,0.4443359375,0.513671875,0.5908203125,0.66015625,0.708984375,0.740234375,0.759765625,0.751953125,0.7119140625,0.6572265625,0.611328125,0.5927734375,0.6044921875,0.6171875,0.607421875,0.57421875,0.53515625,0.509765625,0.5087890625,0.5302734375,0.55859375,0.587890625,0.5966796875,0.568359375,0.509765625,0.4453125,0.39453125,0.349609375,0.3115234375,0.287109375,0.2783203125,0.2783203125,0.2744140625,0.2587890625,0.2490234375,0.279296875,0.3505859375,0.4384765625,0.509765625,0.5390625,0.5302734375,0.513671875,0.5078125,0.5107421875,0.513671875,0.5087890625,0.4931640625,0.46875,0.453125,0.4765625,0.53515625,0.6015625,0.6435546875,0.6416015625,0.6044921875,0.544921875,0.4404296875,0.3251953125,0.2509765625,0.244140625,0.2939453125,0.3642578125,0.4248046875,0.4384765625,0.39453125,0.3173828125,0.2490234375,0.2275390625,0.2587890625,0.302734375,0.3359375,0.3447265625,0.3251953125,0.2919921875,0.265625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2587890625,0.2578125,0.2548828125,0.2587890625,0.275390625,0.3037109375,0.3359375,0.3642578125,0.392578125,0.4287109375,0.474609375,0.5244140625,0.5703125,0.6064453125,0.634765625,0.650390625,0.6279296875,0.580078125,0.5380859375,0.5322265625,0.5693359375,0.634765625,0.689453125,0.6708984375,0.5771484375,0.4521484375,0.3583984375,0.33984375,0.39453125,0.470703125,0.548828125,0.5966796875,0.5849609375,0.5234375,0.4482421875,0.39453125,0.353515625,0.330078125,0.3251953125,0.328125,0.3232421875,0.2998046875,0.2587890625,0.2080078125,0.1494140625,0.1181640625,0.142578125,0.2197265625,0.3154296875,0.39453125,0.4677734375,0.529296875,0.546875,0.5,0.4072265625,0.31640625,0.2587890625,0.22265625,0.2255859375,0.2783203125,0.361328125,0.4384765625,0.4765625,0.46875,0.4609375,0.4951171875,0.5712890625,0.662109375,0.732421875,0.7568359375,0.740234375,0.7099609375,0.6650390625,0.61328125,0.568359375,0.541015625,0.53125,0.5302734375,0.5224609375,0.4931640625,0.4638671875,0.4609375,0.498046875,0.5625,0.634765625,0.69921875,0.7216796875,0.6708984375,0.5517578125,0.41015625,0.3037109375,0.2587890625,0.23046875,0.201171875,0.1923828125,0.220703125,0.2783203125,0.34375,0.39453125,0.451171875,0.5380859375,0.6240234375,0.6630859375,0.638671875,0.5732421875,0.5,0.42578125,0.3603515625,0.34765625,0.4111328125,0.53125,0.654296875,0.740234375,0.8046875,0.83203125,0.7978515625,0.7119140625,0.6123046875,0.544921875,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.296875,0.3037109375,0.2783203125,0.240234375,0.21484375,0.220703125,0.2587890625,0.3017578125,0.33203125,0.3447265625,0.341796875,0.3369140625,0.341796875,0.3642578125,0.396484375,0.4462890625,0.4912109375,0.5078125,0.486328125,0.44140625,0.39453125,0.3427734375,0.2802734375,0.2421875,0.2587890625,0.3291015625,0.4208984375,0.5,0.5576171875,0.5546875,0.48046875,0.3671875,0.2685546875,0.23046875,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5283203125,0.51953125,0.4970703125,0.4609375,0.419921875,0.38671875,0.3642578125,0.3583984375,0.4033203125,0.4833984375,0.5576171875,0.5888671875,0.5634765625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5703125,0.619140625,0.61328125,0.5380859375,0.4228515625,0.318359375,0.2587890625,0.220703125,0.220703125,0.2734375,0.36328125,0.4580078125,0.517578125,0.5302734375,0.533203125,0.54296875,0.546875,0.5302734375,0.4912109375,0.44140625,0.39453125,0.3408203125,0.2646484375,0.1923828125,0.15625,0.1689453125,0.2119140625,0.2587890625,0.2998046875,0.3173828125,0.3056640625,0.275390625,0.2470703125,0.2392578125,0.2587890625,0.298828125,0.38671875,0.501953125,0.6015625,0.650390625,0.64453125,0.6044921875,0.5595703125,0.521484375,0.4970703125,0.48828125,0.48828125,0.484375,0.46875,0.4609375,0.48828125,0.5380859375,0.5771484375,0.578125,0.5361328125,0.46875,0.39453125,0.318359375,0.267578125,0.41015625,0.4375,0.5146484375,0.603515625,0.673828125,0.716796875,0.68359375,0.5712890625,0.427734375,0.3154296875,0.2822265625,0.3251953125,0.39453125,0.48828125,0.5849609375,0.6552734375,0.6845703125,0.68359375,0.673828125,0.6533203125,0.6044921875,0.548828125,0.5224609375,0.5439453125,0.6025390625,0.673828125,0.74609375,0.8046875,0.80859375,0.740234375,0.6201171875,0.50390625,0.4287109375,0.3818359375,0.3935546875,0.462890625,0.5517578125,0.611328125,0.609375,0.55078125,0.484375,0.4404296875,0.4267578125,0.4326171875,0.4375,0.4208984375,0.376953125,0.3359375,0.3408203125,0.4052734375,0.509765625,0.611328125,0.669921875,0.673828125,0.666015625,0.6669921875,0.6640625,0.64453125,0.6044921875,0.5517578125,0.5,0.439453125,0.3583984375,0.287109375,0.2646484375,0.2978515625,0.3642578125,0.4287109375,0.48046875,0.4921875,0.4619140625,0.4150390625,0.384765625,0.396484375,0.4482421875,0.521484375,0.62890625,0.736328125,0.7958984375,0.7890625,0.736328125,0.673828125,0.6123046875,0.5615234375,0.5419921875,0.5634765625,0.611328125,0.654296875,0.673828125,0.6904296875,0.7275390625,0.767578125,0.78515625,0.767578125,0.724609375,0.673828125,0.62109375,0.5712890625,0.5390625,0.533203125,0.5478515625,0.5654296875,0.5703125,0.568359375,0.556640625,0.533203125,0.5,0.466796875,0.4423828125,0.4287109375,0.427734375,0.4580078125,0.505859375,0.5419921875,0.5419921875,0.505859375,0.4482421875,0.3896484375,0.34765625,0.33984375,0.365234375,0.4052734375,0.4306640625,0.4287109375,0.4345703125,0.498046875,0.6044921875,0.7041015625,0.7529296875,0.736328125,0.673828125,0.58984375,0.4716796875,0.3544921875,0.28515625,0.28125,0.32421875,0.376953125,0.4189453125,0.4228515625,0.39453125,0.361328125,0.3525390625,0.3837890625,0.4482421875,0.5107421875,0.533203125,0.5087890625,0.45703125,0.4130859375,0.408203125,0.4482421875,0.48828125,0.4873046875,0.447265625,0.39453125,0.3642578125,0.376953125,0.4287109375,0.49609375,0.576171875,0.650390625,0.693359375,0.7001953125,0.6865234375,0.673828125,0.6552734375,0.60546875,0.529296875,0.451171875,0.39453125,0.373046875,0.376953125,0.392578125,0.4306640625,0.490234375,0.560546875,0.6201171875,0.658203125,0.673828125,0.673828125,0.63671875,0.5732421875,0.5146484375,0.4892578125,0.505859375,0.55078125,0.599609375,0.6328125,0.6396484375,0.6181640625,0.5859375,0.56640625,0.5703125,0.5859375,0.6142578125,0.634765625,0.6240234375,0.5771484375,0.51171875,0.4482421875,0.392578125,0.3623046875,0.361328125,0.376953125,0.3857421875,0.369140625,0.3251953125,0.2890625,0.310546875,0.3935546875,0.501953125,0.5849609375,0.6064453125,0.5703125,0.5185546875,0.470703125,0.4375,0.42578125,0.4306640625,0.435546875,0.4287109375,0.4306640625,0.4736328125,0.5439453125,0.6064453125,0.630859375,0.6064453125,0.55078125,0.4775390625,0.3701171875,0.2666015625,0.2158203125,0.236328125,0.302734375,0.376953125,0.4375,0.4482421875,0.404296875,0.333984375,0.2802734375,0.27734375,0.3251953125,0.3857421875,0.4296875,0.44140625,0.416015625,0.3701171875,0.333984375,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3251953125,0.3291015625,0.3388671875,0.3525390625,0.3662109375,0.376953125,0.3916015625,0.4228515625,0.4716796875,0.52734375,0.576171875,0.607421875,0.6220703125,0.6220703125,0.587890625,0.5361328125,0.5009765625,0.5068359375,0.5537109375,0.6220703125,0.677734375,0.6669921875,0.587890625,0.4814453125,0.40234375,0.3916015625,0.4482421875,0.5263671875,0.6142578125,0.6728515625,0.6689453125,0.6044921875,0.517578125,0.4482421875,0.3935546875,0.3701171875,0.376953125,0.396484375,0.4033203125,0.3798828125,0.3251953125,0.2587890625,0.1875,0.1494140625,0.177734375,0.263671875,0.3662109375,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.275390625,0.2724609375,0.322265625,0.3974609375,0.45703125,0.4677734375,0.4287109375,0.38671875,0.384765625,0.4375,0.5283203125,0.619140625,0.6708984375,0.673828125,0.6611328125,0.640625,0.6162109375,0.5927734375,0.5771484375,0.5712890625,0.5703125,0.5615234375,0.525390625,0.484375,0.466796875,0.4921875,0.55078125,0.6220703125,0.685546875,0.708984375,0.6630859375,0.5595703125,0.4375,0.3525390625,0.3251953125,0.3095703125,0.28125,0.2607421875,0.271484375,0.318359375,0.3837890625,0.4482421875,0.5185546875,0.611328125,0.6875,0.7060546875,0.658203125,0.576171875,0.5,0.423828125,0.3505859375,0.3232421875,0.369140625,0.474609375,0.58984375,0.673828125,0.7412109375,0.7802734375,0.7705078125,0.712890625,0.63671875,0.58203125,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.376953125,0.3857421875,0.3515625,0.2998046875,0.265625,0.2744140625,0.3251953125,0.384765625,0.4296875,0.4453125,0.4287109375,0.396484375,0.375,0.376953125,0.3974609375,0.44921875,0.5126953125,0.552734375,0.5498046875,0.5068359375,0.4482421875,0.37890625,0.298828125,0.24609375,0.2548828125,0.3251953125,0.419921875,0.5,0.556640625,0.552734375,0.4814453125,0.37890625,0.2978515625,0.2802734375,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.572265625,0.5791015625,0.57421875,0.544921875,0.4921875,0.431640625,0.376953125,0.3408203125,0.359375,0.4306640625,0.515625,0.5673828125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.57421875,0.640625,0.6611328125,0.6103515625,0.5068359375,0.3994140625,0.3251953125,0.271484375,0.2568359375,0.2998046875,0.390625,0.490234375,0.5556640625,0.5703125,0.576171875,0.5966796875,0.615234375,0.6083984375,0.5703125,0.5107421875,0.4482421875,0.376953125,0.28125,0.197265625,0.1650390625,0.1943359375,0.2607421875,0.3251953125,0.3837890625,0.4228515625,0.4267578125,0.3955078125,0.3525390625,0.32421875,0.3251953125,0.349609375,0.419921875,0.5185546875,0.599609375,0.630859375,0.607421875,0.55078125,0.49609375,0.4658203125,0.46484375,0.48046875,0.4892578125,0.47265625,0.4287109375,0.3896484375,0.3935546875,0.4375,0.490234375,0.5146484375,0.4912109375,0.4287109375,0.3505859375,0.2626953125,0.2001953125,0.3037109375,0.3212890625,0.400390625,0.5,0.5791015625,0.6337890625,0.625,0.5498046875,0.44921875,0.3740234375,0.365234375,0.419921875,0.4921875,0.5634765625,0.61328125,0.6259765625,0.609375,0.5869140625,0.5791015625,0.5673828125,0.5244140625,0.470703125,0.44140625,0.4560546875,0.5087890625,0.5791015625,0.6552734375,0.7314453125,0.765625,0.728515625,0.630859375,0.521484375,0.439453125,0.3828125,0.3818359375,0.4384765625,0.5166015625,0.5712890625,0.568359375,0.509765625,0.447265625,0.4248046875,0.4453125,0.4833984375,0.505859375,0.48828125,0.4296875,0.3671875,0.3359375,0.3583984375,0.4267578125,0.5107421875,0.568359375,0.5791015625,0.5849609375,0.6142578125,0.6474609375,0.6552734375,0.6259765625,0.5673828125,0.5,0.421875,0.32421875,0.24609375,0.2294921875,0.279296875,0.36328125,0.439453125,0.4990234375,0.515625,0.4873046875,0.44140625,0.4130859375,0.4296875,0.4892578125,0.5693359375,0.671875,0.7578125,0.78125,0.736328125,0.6552734375,0.5791015625,0.5107421875,0.458984375,0.4443359375,0.4736328125,0.5263671875,0.568359375,0.5791015625,0.5908203125,0.6318359375,0.6826171875,0.7109375,0.697265625,0.646484375,0.5791015625,0.5126953125,0.4599609375,0.4423828125,0.466796875,0.5126953125,0.5498046875,0.5595703125,0.556640625,0.54296875,0.517578125,0.4873046875,0.4599609375,0.4443359375,0.439453125,0.44921875,0.494140625,0.5576171875,0.6005859375,0.6005859375,0.556640625,0.4892578125,0.4208984375,0.3642578125,0.341796875,0.3583984375,0.3994140625,0.4326171875,0.439453125,0.451171875,0.5087890625,0.5927734375,0.6611328125,0.6796875,0.6455078125,0.5791015625,0.49609375,0.3857421875,0.2890625,0.25,0.283203125,0.3564453125,0.4296875,0.4873046875,0.5029296875,0.4755859375,0.4326171875,0.408203125,0.427734375,0.4892578125,0.5498046875,0.5625,0.5244140625,0.4658203125,0.4248046875,0.4326171875,0.4892578125,0.544921875,0.548828125,0.498046875,0.42578125,0.376953125,0.3818359375,0.439453125,0.51171875,0.580078125,0.6259765625,0.6337890625,0.6123046875,0.5869140625,0.5791015625,0.57421875,0.5537109375,0.5185546875,0.4794921875,0.447265625,0.431640625,0.4296875,0.4345703125,0.453125,0.4853515625,0.5234375,0.5556640625,0.57421875,0.5791015625,0.5693359375,0.5224609375,0.4560546875,0.408203125,0.404296875,0.4443359375,0.509765625,0.5771484375,0.6318359375,0.654296875,0.6376953125,0.5986328125,0.56640625,0.5595703125,0.5693359375,0.6025390625,0.6396484375,0.650390625,0.6201171875,0.5595703125,0.4892578125,0.4296875,0.4091796875,0.431640625,0.4716796875,0.49609375,0.478515625,0.419921875,0.3662109375,0.373046875,0.4423828125,0.537109375,0.6064453125,0.61328125,0.5595703125,0.490234375,0.4267578125,0.388671875,0.38671875,0.41015625,0.4345703125,0.439453125,0.44921875,0.4970703125,0.564453125,0.61328125,0.6171875,0.576171875,0.509765625,0.4296875,0.3271484375,0.2431640625,0.220703125,0.2685546875,0.3525390625,0.4296875,0.4892578125,0.5,0.458984375,0.396484375,0.353515625,0.3623046875,0.419921875,0.48828125,0.5390625,0.5517578125,0.5224609375,0.470703125,0.4296875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.419921875,0.4208984375,0.4228515625,0.42578125,0.427734375,0.4296875,0.4345703125,0.451171875,0.4814453125,0.517578125,0.5478515625,0.564453125,0.5693359375,0.560546875,0.5205078125,0.4677734375,0.4365234375,0.4482421875,0.5,0.5693359375,0.626953125,0.6279296875,0.5703125,0.48828125,0.4306640625,0.431640625,0.4892578125,0.5693359375,0.662109375,0.7275390625,0.7265625,0.66015625,0.5673828125,0.4892578125,0.4296875,0.41015625,0.4345703125,0.474609375,0.4990234375,0.4794921875,0.419921875,0.34375,0.2587890625,0.2080078125,0.2255859375,0.306640625,0.408203125,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.5,0.419921875,0.361328125,0.3525390625,0.3955078125,0.458984375,0.5029296875,0.49609375,0.439453125,0.376953125,0.3447265625,0.3642578125,0.4306640625,0.5126953125,0.568359375,0.5791015625,0.5771484375,0.5732421875,0.568359375,0.564453125,0.560546875,0.5595703125,0.5595703125,0.5498046875,0.5087890625,0.4580078125,0.4296875,0.4453125,0.4990234375,0.5693359375,0.6357421875,0.6708984375,0.65234375,0.5830078125,0.49609375,0.4345703125,0.419921875,0.41015625,0.376953125,0.33984375,0.3291015625,0.359375,0.419921875,0.4892578125,0.568359375,0.662109375,0.73046875,0.734375,0.6708984375,0.5791015625,0.5,0.421875,0.3369140625,0.2880859375,0.3095703125,0.3935546875,0.498046875,0.5791015625,0.6484375,0.6982421875,0.70703125,0.671875,0.6142578125,0.5693359375,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.478515625,0.48828125,0.44921875,0.3896484375,0.3505859375,0.361328125,0.419921875,0.48828125,0.5390625,0.5537109375,0.525390625,0.4755859375,0.4375,0.4296875,0.4423828125,0.4921875,0.5576171875,0.6025390625,0.6015625,0.556640625,0.4892578125,0.412109375,0.3203125,0.255859375,0.2578125,0.3251953125,0.419921875,0.5,0.5576171875,0.5595703125,0.5029296875,0.421875,0.36328125,0.36328125,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5654296875,0.58984375,0.6123046875,0.6064453125,0.5654296875,0.4990234375,0.4296875,0.375,0.375,0.431640625,0.5087890625,0.5625,0.55859375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5771484375,0.66015625,0.7080078125,0.6865234375,0.6025390625,0.5,0.419921875,0.3544921875,0.3203125,0.3388671875,0.4052734375,0.48828125,0.5458984375,0.5595703125,0.5673828125,0.599609375,0.63671875,0.6474609375,0.619140625,0.5595703125,0.4892578125,0.41015625,0.3095703125,0.228515625,0.2109375,0.259765625,0.34375,0.419921875,0.4873046875,0.5380859375,0.5498046875,0.51953125,0.4677734375,0.427734375,0.419921875,0.43359375,0.486328125,0.55859375,0.611328125,0.6171875,0.576171875,0.509765625,0.44921875,0.4296875,0.4521484375,0.4921875,0.515625,0.498046875,0.439453125,0.3828125,0.375,0.416015625,0.474609375,0.5126953125,0.5,0.439453125,0.3603515625,0.2666015625,0.2001953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.23828125,0.2265625,0.2802734375,0.3642578125,0.439453125,0.5,0.5263671875,0.517578125,0.49609375,0.4892578125,0.517578125,0.5791015625,0.6435546875,0.67578125,0.654296875,0.583984375,0.4990234375,0.44140625,0.4296875,0.421875,0.380859375,0.326171875,0.2939453125,0.302734375,0.3525390625,0.419921875,0.5009765625,0.611328125,0.708984375,0.74609375,0.7119140625,0.6357421875,0.5595703125,0.498046875,0.48046875,0.5078125,0.5546875,0.583984375,0.568359375,0.509765625,0.453125,0.4521484375,0.5078125,0.5859375,0.640625,0.6376953125,0.5791015625,0.505859375,0.435546875,0.3896484375,0.3828125,0.4052734375,0.431640625,0.439453125,0.453125,0.5029296875,0.5712890625,0.6181640625,0.6201171875,0.576171875,0.509765625,0.4326171875,0.345703125,0.2900390625,0.302734375,0.3798828125,0.478515625,0.5595703125,0.6181640625,0.6240234375,0.57421875,0.5009765625,0.44921875,0.4521484375,0.509765625,0.5859375,0.6689453125,0.71875,0.7001953125,0.6201171875,0.51953125,0.439453125,0.37109375,0.3203125,0.306640625,0.333984375,0.3837890625,0.421875,0.4296875,0.4384765625,0.478515625,0.533203125,0.5654296875,0.556640625,0.5078125,0.439453125,0.37109375,0.3173828125,0.2998046875,0.32421875,0.3720703125,0.41015625,0.419921875,0.4228515625,0.44140625,0.4736328125,0.5107421875,0.5419921875,0.5576171875,0.5595703125,0.5654296875,0.595703125,0.630859375,0.6416015625,0.615234375,0.5576171875,0.4892578125,0.4248046875,0.3857421875,0.3935546875,0.4462890625,0.5166015625,0.5673828125,0.5791015625,0.5849609375,0.60546875,0.62109375,0.607421875,0.5595703125,0.490234375,0.419921875,0.3466796875,0.271484375,0.2373046875,0.2724609375,0.3671875,0.4765625,0.5595703125,0.6181640625,0.62109375,0.5673828125,0.4912109375,0.4375,0.44140625,0.5,0.5595703125,0.572265625,0.53515625,0.4755859375,0.4345703125,0.443359375,0.5,0.5576171875,0.57421875,0.548828125,0.5087890625,0.486328125,0.5078125,0.5693359375,0.6357421875,0.6689453125,0.6474609375,0.5771484375,0.490234375,0.431640625,0.419921875,0.4248046875,0.4453125,0.48046875,0.51953125,0.5517578125,0.5673828125,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.576171875,0.6181640625,0.615234375,0.564453125,0.494140625,0.443359375,0.4296875,0.439453125,0.4892578125,0.55859375,0.6103515625,0.6162109375,0.5751953125,0.509765625,0.4521484375,0.4482421875,0.4990234375,0.57421875,0.626953125,0.625,0.5693359375,0.509765625,0.4853515625,0.498046875,0.5224609375,0.53125,0.5029296875,0.439453125,0.3720703125,0.333984375,0.345703125,0.4072265625,0.4873046875,0.544921875,0.5595703125,0.5693359375,0.6025390625,0.640625,0.6533203125,0.6259765625,0.5673828125,0.5,0.4248046875,0.34375,0.2958984375,0.314453125,0.3935546875,0.4912109375,0.5693359375,0.6259765625,0.6357421875,0.5966796875,0.5400390625,0.5048828125,0.5185546875,0.5791015625,0.6484375,0.7001953125,0.7119140625,0.681640625,0.6279296875,0.587890625,0.5791015625,0.5810546875,0.580078125,0.5771484375,0.572265625,0.56640625,0.5615234375,0.5595703125,0.55859375,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.578125,0.5791015625,0.576171875,0.55859375,0.5263671875,0.48828125,0.4541015625,0.4345703125,0.4296875,0.4189453125,0.3779296875,0.326171875,0.2978515625,0.3125,0.36328125,0.4296875,0.48828125,0.505859375,0.4833984375,0.4453125,0.4248046875,0.447265625,0.509765625,0.5888671875,0.6826171875,0.748046875,0.7470703125,0.6806640625,0.587890625,0.509765625,0.453125,0.4501953125,0.50390625,0.580078125,0.6328125,0.6279296875,0.5693359375,0.48828125,0.3876953125,0.3095703125,0.2939453125,0.3466796875,0.4326171875,0.509765625,0.5888671875,0.6884765625,0.767578125,0.78515625,0.736328125,0.654296875,0.5791015625,0.5224609375,0.513671875,0.552734375,0.611328125,0.6494140625,0.6376953125,0.5791015625,0.5078125,0.4384765625,0.3935546875,0.384765625,0.40625,0.431640625,0.439453125,0.44140625,0.4423828125,0.4423828125,0.4423828125,0.4404296875,0.4404296875,0.439453125,0.4296875,0.3876953125,0.33203125,0.2978515625,0.306640625,0.353515625,0.419921875,0.490234375,0.5595703125,0.6064453125,0.6171875,0.599609375,0.5771484375,0.5693359375,0.5556640625,0.5048828125,0.435546875,0.3876953125,0.3857421875,0.4306640625,0.5,0.5791015625,0.673828125,0.7412109375,0.7431640625,0.6787109375,0.5869140625,0.509765625,0.4296875,0.3291015625,0.2490234375,0.23046875,0.2802734375,0.36328125,0.439453125,0.5078125,0.55859375,0.572265625,0.5419921875,0.490234375,0.44921875,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.6201171875,0.6337890625,0.5986328125,0.5419921875,0.5029296875,0.5126953125,0.5693359375,0.6357421875,0.6865234375,0.701171875,0.6728515625,0.62109375,0.580078125,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.431640625,0.33984375,0.2734375,0.271484375,0.333984375,0.423828125,0.5,0.55859375,0.5771484375,0.5556640625,0.517578125,0.498046875,0.5185546875,0.5791015625,0.6435546875,0.6767578125,0.6552734375,0.583984375,0.49609375,0.4345703125,0.419921875,0.431640625,0.490234375,0.5771484375,0.6474609375,0.6689453125,0.6357421875,0.5693359375,0.5078125,0.486328125,0.5087890625,0.548828125,0.57421875,0.5576171875,0.5,0.443359375,0.4345703125,0.4755859375,0.53515625,0.572265625,0.5595703125,0.5,0.419921875,0.3251953125,0.2578125,0.255859375,0.3203125,0.412109375,0.4892578125,0.5693359375,0.669921875,0.75,0.7685546875,0.71875,0.6357421875,0.5595703125,0.48828125,0.419921875,0.376953125,0.3720703125,0.3955078125,0.421875,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.43359375,0.349609375,0.2998046875,0.318359375,0.3994140625,0.5,0.5791015625,0.646484375,0.6943359375,0.7021484375,0.666015625,0.609375,0.568359375,0.5595703125,0.5693359375,0.603515625,0.6416015625,0.6533203125,0.623046875,0.5615234375,0.4892578125,0.4306640625,0.4267578125,0.4794921875,0.5576171875,0.6142578125,0.6142578125,0.5595703125,0.501953125,0.4921875,0.5302734375,0.587890625,0.626953125,0.6162109375,0.5595703125,0.482421875,0.3916015625,0.3251953125,0.25,0.25,0.30078125,0.37109375,0.4287109375,0.4755859375,0.5068359375,0.525390625,0.5419921875,0.5703125,0.615234375,0.673828125,0.724609375,0.7275390625,0.6650390625,0.556640625,0.4462890625,0.3828125,0.376953125,0.3779296875,0.34375,0.2880859375,0.244140625,0.236328125,0.2685546875,0.3251953125,0.4013671875,0.517578125,0.63671875,0.705078125,0.701171875,0.642578125,0.5703125,0.5087890625,0.4892578125,0.517578125,0.5693359375,0.6064453125,0.6015625,0.55078125,0.50390625,0.515625,0.5849609375,0.673828125,0.7333984375,0.7314453125,0.673828125,0.5966796875,0.5087890625,0.4326171875,0.39453125,0.39453125,0.4150390625,0.4287109375,0.4501953125,0.5087890625,0.5830078125,0.6376953125,0.6455078125,0.609375,0.55078125,0.482421875,0.3974609375,0.3369140625,0.337890625,0.4013671875,0.4912109375,0.5703125,0.630859375,0.6455078125,0.6083984375,0.5478515625,0.5009765625,0.501953125,0.55078125,0.6162109375,0.6826171875,0.7119140625,0.6796875,0.595703125,0.5,0.4287109375,0.369140625,0.32421875,0.3095703125,0.326171875,0.3583984375,0.3798828125,0.376953125,0.376953125,0.4111328125,0.466796875,0.5107421875,0.5185546875,0.486328125,0.4287109375,0.3671875,0.3095703125,0.275390625,0.2734375,0.296875,0.3193359375,0.3251953125,0.3330078125,0.3681640625,0.4306640625,0.5,0.552734375,0.57421875,0.5703125,0.564453125,0.5712890625,0.580078125,0.57421875,0.544921875,0.4990234375,0.4482421875,0.4033203125,0.3935546875,0.4345703125,0.515625,0.6044921875,0.6611328125,0.673828125,0.6728515625,0.66015625,0.6201171875,0.5498046875,0.462890625,0.3837890625,0.3251953125,0.271484375,0.22265625,0.2138671875,0.26953125,0.3759765625,0.4873046875,0.5703125,0.6279296875,0.6298828125,0.57421875,0.4951171875,0.439453125,0.44140625,0.5,0.5625,0.5849609375,0.560546875,0.5087890625,0.46484375,0.4599609375,0.5,0.5419921875,0.552734375,0.53515625,0.515625,0.5185546875,0.556640625,0.6220703125,0.68359375,0.693359375,0.6328125,0.5205078125,0.40234375,0.33203125,0.3251953125,0.34375,0.3935546875,0.4697265625,0.5478515625,0.6044921875,0.6259765625,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.6083984375,0.6376953125,0.6181640625,0.55078125,0.46484375,0.400390625,0.376953125,0.3798828125,0.4287109375,0.51171875,0.587890625,0.623046875,0.60546875,0.55078125,0.5,0.4931640625,0.5361328125,0.6025390625,0.654296875,0.6611328125,0.6220703125,0.5771484375,0.55859375,0.5595703125,0.560546875,0.5419921875,0.49609375,0.4287109375,0.361328125,0.3193359375,0.330078125,0.3935546875,0.48046875,0.546875,0.5703125,0.5859375,0.6142578125,0.638671875,0.63671875,0.6044921875,0.5517578125,0.5,0.4453125,0.3935546875,0.373046875,0.40625,0.48046875,0.5625,0.6220703125,0.662109375,0.6640625,0.6318359375,0.59375,0.580078125,0.609375,0.673828125,0.7421875,0.7880859375,0.7939453125,0.7587890625,0.70703125,0.6728515625,0.673828125,0.6826171875,0.68359375,0.669921875,0.642578125,0.6103515625,0.583984375,0.5703125,0.5625,0.5673828125,0.5888671875,0.6201171875,0.6513671875,0.669921875,0.673828125,0.66796875,0.6376953125,0.580078125,0.505859375,0.4375,0.39453125,0.376953125,0.3603515625,0.3232421875,0.283203125,0.265625,0.283203125,0.326171875,0.376953125,0.4208984375,0.4375,0.4326171875,0.4267578125,0.4404296875,0.484375,0.55078125,0.6298828125,0.7177734375,0.7763671875,0.7724609375,0.70703125,0.62109375,0.55078125,0.5029296875,0.5087890625,0.56640625,0.6416015625,0.689453125,0.681640625,0.6220703125,0.5419921875,0.4453125,0.3701171875,0.3564453125,0.4052734375,0.4833984375,0.55078125,0.62109375,0.7099609375,0.787109375,0.814453125,0.787109375,0.728515625,0.673828125,0.6328125,0.630859375,0.6669921875,0.71484375,0.7412109375,0.7255859375,0.673828125,0.6064453125,0.5263671875,0.4521484375,0.4091796875,0.40234375,0.416015625,0.4287109375,0.439453125,0.4462890625,0.4482421875,0.4443359375,0.4365234375,0.4306640625,0.4287109375,0.419921875,0.376953125,0.31640625,0.267578125,0.25390625,0.2783203125,0.3251953125,0.3837890625,0.462890625,0.5458984375,0.607421875,0.6328125,0.6318359375,0.6220703125,0.5986328125,0.5341796875,0.4521484375,0.3935546875,0.3876953125,0.4306640625,0.5,0.5791015625,0.673828125,0.744140625,0.7529296875,0.7001953125,0.6201171875,0.55078125,0.48046875,0.384765625,0.30078125,0.2685546875,0.2978515625,0.36328125,0.4287109375,0.48828125,0.533203125,0.544921875,0.5185546875,0.4736328125,0.4375,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.6337890625,0.6630859375,0.6494140625,0.611328125,0.5791015625,0.5810546875,0.6220703125,0.6728515625,0.7158203125,0.7333984375,0.7158203125,0.67578125,0.638671875,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.4833984375,0.40234375,0.341796875,0.33203125,0.3759765625,0.4423828125,0.5,0.544921875,0.5673828125,0.5703125,0.568359375,0.580078125,0.6171875,0.673828125,0.7265625,0.7353515625,0.6767578125,0.5634765625,0.4375,0.3525390625,0.3251953125,0.33203125,0.40234375,0.5205078125,0.6328125,0.693359375,0.68359375,0.6220703125,0.556640625,0.5185546875,0.515625,0.53515625,0.552734375,0.5419921875,0.5,0.4599609375,0.46484375,0.5087890625,0.560546875,0.5849609375,0.5625,0.5,0.419921875,0.3251953125,0.2548828125,0.24609375,0.298828125,0.37890625,0.4482421875,0.5185546875,0.6142578125,0.6982421875,0.73046875,0.701171875,0.6357421875,0.5703125,0.5048828125,0.4296875,0.3681640625,0.3388671875,0.34375,0.36328125,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.4853515625,0.419921875,0.390625,0.4228515625,0.5068359375,0.6025390625,0.673828125,0.7294921875,0.755859375,0.736328125,0.6787109375,0.611328125,0.5712890625,0.5703125,0.5869140625,0.6220703125,0.6494140625,0.6435546875,0.5947265625,0.521484375,0.4482421875,0.3876953125,0.3798828125,0.431640625,0.5166015625,0.587890625,0.6064453125,0.5703125,0.52734375,0.51953125,0.548828125,0.591796875,0.6201171875,0.6123046875,0.5703125,0.5107421875,0.431640625,0.369140625,0.30859375,0.33984375,0.3935546875,0.4423828125,0.46875,0.4873046875,0.5078125,0.5380859375,0.5830078125,0.6376953125,0.6923828125,0.740234375,0.771484375,0.744140625,0.6484375,0.5185546875,0.40625,0.353515625,0.3642578125,0.380859375,0.361328125,0.30859375,0.2509765625,0.2158203125,0.220703125,0.2587890625,0.3193359375,0.4267578125,0.5498046875,0.6318359375,0.6455078125,0.599609375,0.5302734375,0.4677734375,0.451171875,0.48828125,0.5576171875,0.619140625,0.63671875,0.6044921875,0.5732421875,0.5986328125,0.673828125,0.7587890625,0.8095703125,0.80078125,0.740234375,0.66015625,0.5595703125,0.4658203125,0.4140625,0.412109375,0.439453125,0.46875,0.50390625,0.56640625,0.6357421875,0.6787109375,0.681640625,0.6494140625,0.6044921875,0.548828125,0.46484375,0.38671875,0.35546875,0.3857421875,0.455078125,0.5302734375,0.5947265625,0.6298828125,0.6259765625,0.5966796875,0.568359375,0.568359375,0.6044921875,0.65234375,0.6953125,0.70703125,0.6708984375,0.5986328125,0.5224609375,0.46875,0.4267578125,0.3955078125,0.3837890625,0.3857421875,0.3916015625,0.3857421875,0.3642578125,0.3466796875,0.3671875,0.4189453125,0.4775390625,0.51171875,0.5068359375,0.46875,0.419921875,0.361328125,0.306640625,0.26953125,0.2568359375,0.2578125,0.2587890625,0.2685546875,0.3173828125,0.3974609375,0.48046875,0.53515625,0.548828125,0.5302734375,0.50390625,0.478515625,0.4580078125,0.44140625,0.427734375,0.412109375,0.39453125,0.3837890625,0.412109375,0.4853515625,0.5849609375,0.6767578125,0.7294921875,0.740234375,0.7314453125,0.6845703125,0.5908203125,0.4716796875,0.361328125,0.2890625,0.2587890625,0.2373046875,0.2138671875,0.2177734375,0.2666015625,0.3544921875,0.451171875,0.5302734375,0.5888671875,0.595703125,0.548828125,0.48046875,0.43359375,0.4404296875,0.5,0.56640625,0.6083984375,0.607421875,0.568359375,0.5185546875,0.4912109375,0.5,0.5107421875,0.5,0.48046875,0.4775390625,0.5068359375,0.564453125,0.634765625,0.6923828125,0.68359375,0.59375,0.4521484375,0.3203125,0.251953125,0.2587890625,0.296875,0.376953125,0.4853515625,0.5849609375,0.64453125,0.6552734375,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.646484375,0.666015625,0.640625,0.568359375,0.4765625,0.4013671875,0.3642578125,0.3505859375,0.38671875,0.46875,0.5634765625,0.6279296875,0.6396484375,0.6044921875,0.5634765625,0.5458984375,0.5576171875,0.5927734375,0.6298828125,0.646484375,0.634765625,0.623046875,0.6298828125,0.6435546875,0.6376953125,0.6015625,0.5400390625,0.46875,0.3974609375,0.3369140625,0.3173828125,0.3525390625,0.4248046875,0.4931640625,0.5302734375,0.5576171875,0.583984375,0.5966796875,0.5849609375,0.5556640625,0.5224609375,0.5,0.4814453125,0.4736328125,0.4853515625,0.521484375,0.5693359375,0.6103515625,0.634765625,0.6455078125,0.630859375,0.6044921875,0.59375,0.6162109375,0.6708984375,0.740234375,0.806640625,0.8427734375,0.8369140625,0.794921875,0.7470703125,0.724609375,0.740234375,0.7646484375,0.7734375,0.7509765625,0.6953125,0.6240234375,0.564453125,0.5302734375,0.5087890625,0.515625,0.5576171875,0.6240234375,0.6904296875,0.7314453125,0.740234375,0.7353515625,0.705078125,0.640625,0.5517578125,0.4638671875,0.3984375,0.3642578125,0.3359375,0.3056640625,0.2861328125,0.2900390625,0.3125,0.341796875,0.3642578125,0.3779296875,0.3798828125,0.3828125,0.408203125,0.4609375,0.5322265625,0.6044921875,0.6806640625,0.759765625,0.806640625,0.794921875,0.7333984375,0.6591796875,0.6044921875,0.5712890625,0.5830078125,0.6357421875,0.6923828125,0.7197265625,0.697265625,0.634765625,0.55859375,0.4755859375,0.421875,0.4248046875,0.48046875,0.55078125,0.6044921875,0.654296875,0.71484375,0.767578125,0.7919921875,0.78515625,0.76171875,0.740234375,0.7275390625,0.740234375,0.7705078125,0.7978515625,0.8037109375,0.78125,0.740234375,0.685546875,0.6044921875,0.5166015625,0.4521484375,0.4306640625,0.443359375,0.46875,0.4951171875,0.513671875,0.5185546875,0.5078125,0.48828125,0.47265625,0.46875,0.4619140625,0.4248046875,0.3642578125,0.30078125,0.2568359375,0.2451171875,0.2587890625,0.2900390625,0.3642578125,0.4716796875,0.57421875,0.6396484375,0.654296875,0.634765625,0.595703125,0.5185546875,0.4306640625,0.375,0.3779296875,0.4296875,0.5,0.578125,0.669921875,0.740234375,0.7568359375,0.71875,0.65625,0.6044921875,0.55078125,0.4755859375,0.40234375,0.3671875,0.37890625,0.421875,0.46875,0.513671875,0.546875,0.5546875,0.53515625,0.501953125,0.4755859375,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.599609375,0.6533203125,0.67578125,0.666015625,0.638671875,0.6240234375,0.634765625,0.6572265625,0.6865234375,0.708984375,0.712890625,0.693359375,0.6630859375,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.5556640625,0.498046875,0.4521484375,0.435546875,0.4501953125,0.4775390625,0.5,0.517578125,0.5341796875,0.5576171875,0.59375,0.6416015625,0.693359375,0.740234375,0.7763671875,0.7666015625,0.6875,0.5517578125,0.40625,0.3017578125,0.2587890625,0.251953125,0.3203125,0.4521484375,0.59375,0.68359375,0.6923828125,0.634765625,0.564453125,0.5068359375,0.4775390625,0.48046875,0.5,0.5107421875,0.5,0.4912109375,0.5185546875,0.568359375,0.607421875,0.6083984375,0.56640625,0.5,0.4208984375,0.3291015625,0.2587890625,0.2421875,0.2802734375,0.3427734375,0.39453125,0.4482421875,0.5234375,0.5966796875,0.6318359375,0.6201171875,0.5771484375,0.5302734375,0.478515625,0.4091796875,0.3447265625,0.30859375,0.310546875,0.3359375,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.5576171875,0.5146484375,0.501953125,0.5380859375,0.6103515625,0.6865234375,0.740234375,0.775390625,0.767578125,0.7099609375,0.6240234375,0.5478515625,0.515625,0.5302734375,0.5625,0.6064453125,0.634765625,0.6181640625,0.5556640625,0.470703125,0.39453125,0.330078125,0.3056640625,0.3369140625,0.4111328125,0.4912109375,0.53515625,0.5302734375,0.513671875,0.5107421875,0.521484375,0.5380859375,0.548828125,0.5458984375,0.5302734375,0.5009765625,0.4462890625,0.388671875,0.4033203125,0.4658203125,0.51953125,0.541015625,0.5302734375,0.5126953125,0.5087890625,0.533203125,0.5849609375,0.6513671875,0.70703125,0.740234375,0.7509765625,0.7021484375,0.5966796875,0.474609375,0.3857421875,0.3623046875,0.39453125,0.431640625,0.4326171875,0.3916015625,0.3251953125,0.2666015625,0.2431640625,0.2587890625,0.2998046875,0.3857421875,0.4912109375,0.56640625,0.580078125,0.5380859375,0.46875,0.4072265625,0.3896484375,0.43359375,0.5185546875,0.6044921875,0.646484375,0.634765625,0.6220703125,0.6572265625,0.728515625,0.7978515625,0.828125,0.8037109375,0.740234375,0.6591796875,0.5546875,0.4609375,0.416015625,0.431640625,0.48046875,0.5302734375,0.580078125,0.6416015625,0.6923828125,0.712890625,0.697265625,0.6640625,0.634765625,0.595703125,0.5146484375,0.4189453125,0.3564453125,0.3515625,0.3994140625,0.46875,0.5390625,0.5966796875,0.626953125,0.62890625,0.6181640625,0.615234375,0.634765625,0.662109375,0.68359375,0.6845703125,0.6572265625,0.609375,0.5615234375,0.5302734375,0.5078125,0.498046875,0.4970703125,0.4912109375,0.47265625,0.4375,0.39453125,0.357421875,0.35546875,0.3974609375,0.4638671875,0.5224609375,0.5458984375,0.5302734375,0.498046875,0.4453125,0.3798828125,0.3203125,0.279296875,0.26171875,0.2587890625,0.2705078125,0.322265625,0.40234375,0.4775390625,0.515625,0.5087890625,0.46875,0.419921875,0.36328125,0.3173828125,0.30078125,0.314453125,0.341796875,0.3642578125,0.3916015625,0.451171875,0.5380859375,0.6298828125,0.69921875,0.734375,0.740234375,0.7265625,0.6572265625,0.53515625,0.400390625,0.2958984375,0.251953125,0.2587890625,0.2724609375,0.26953125,0.2666015625,0.2841796875,0.330078125,0.3974609375,0.46875,0.529296875,0.5439453125,0.5107421875,0.4580078125,0.4248046875,0.439453125,0.5,0.572265625,0.6357421875,0.6630859375,0.640625,0.5830078125,0.5283203125,0.5,0.4736328125,0.4306640625,0.3974609375,0.40234375,0.453125,0.529296875,0.6044921875,0.66015625,0.64453125,0.546875,0.4052734375,0.283203125,0.232421875,0.2587890625,0.3173828125,0.4189453125,0.5380859375,0.6298828125,0.6640625,0.6474609375,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.6611328125,0.677734375,0.6630859375,0.607421875,0.525390625,0.4482421875,0.39453125,0.359375,0.37109375,0.435546875,0.5302734375,0.6123046875,0.6484375,0.634765625,0.6064453125,0.572265625,0.5458984375,0.541015625,0.5576171875,0.5830078125,0.6044921875,0.630859375,0.677734375,0.7177734375,0.720703125,0.6767578125,0.603515625,0.5302734375,0.4521484375,0.3662109375,0.3056640625,0.30078125,0.3486328125,0.4169921875,0.46875,0.51171875,0.537109375,0.5380859375,0.5185546875,0.4951171875,0.486328125,0.5,0.5234375,0.560546875,0.6015625,0.6298828125,0.6357421875,0.623046875,0.6044921875,0.5791015625,0.5400390625,0.513671875,0.52734375,0.5849609375,0.6640625,0.740234375,0.8037109375,0.830078125,0.8095703125,0.759765625,0.71484375,0.7060546875,0.740234375,0.7841796875,0.810546875,0.7919921875,0.720703125,0.6181640625,0.525390625,0.46875,0.431640625,0.4306640625,0.4833984375,0.57421875,0.66796875,0.7275390625,0.740234375,0.73828125,0.72265625,0.6796875,0.607421875,0.521484375,0.4462890625,0.39453125,0.3525390625,0.3310546875,0.3369140625,0.36328125,0.3935546875,0.40625,0.39453125,0.3720703125,0.345703125,0.341796875,0.3828125,0.4638671875,0.556640625,0.634765625,0.7080078125,0.7763671875,0.8095703125,0.7900390625,0.7314453125,0.6708984375,0.634765625,0.6181640625,0.6376953125,0.6787109375,0.712890625,0.7119140625,0.671875,0.6044921875,0.5322265625,0.4677734375,0.44140625,0.46875,0.5341796875,0.5986328125,0.634765625,0.66015625,0.681640625,0.6953125,0.7041015625,0.7119140625,0.72265625,0.740234375,0.76171875,0.791015625,0.814453125,0.8173828125,0.798828125,0.7685546875,0.740234375,0.703125,0.6318359375,0.546875,0.482421875,0.4638671875,0.4873046875,0.5302734375,0.57421875,0.607421875,0.615234375,0.5966796875,0.5625,0.5361328125,0.5302734375,0.5263671875,0.50390625,0.4580078125,0.39453125,0.330078125,0.283203125,0.2587890625,0.2548828125,0.3095703125,0.4169921875,0.53515625,0.6181640625,0.6376953125,0.6044921875,0.5478515625,0.4609375,0.375,0.3359375,0.3603515625,0.42578125,0.5,0.576171875,0.66015625,0.7236328125,0.740234375,0.7119140625,0.6669921875,0.634765625,0.603515625,0.5556640625,0.5078125,0.48046875,0.4814453125,0.5029296875,0.5302734375,0.5556640625,0.5751953125,0.580078125,0.568359375,0.548828125,0.533203125,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.544921875,0.625,0.6826171875,0.6953125,0.6689453125,0.6298828125,0.6044921875,0.5927734375,0.60546875,0.6357421875,0.662109375,0.66796875,0.646484375,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.6083984375,0.583984375,0.5634765625,0.546875,0.5322265625,0.517578125,0.5,0.4833984375,0.4833984375,0.513671875,0.57421875,0.646484375,0.7060546875,0.740234375,0.7607421875,0.748046875,0.6796875,0.560546875,0.4248046875,0.318359375,0.2587890625,0.232421875,0.283203125,0.4052734375,0.546875,0.64453125,0.66015625,0.6044921875,0.529296875,0.453125,0.40234375,0.3974609375,0.4306640625,0.4736328125,0.5,0.5283203125,0.5830078125,0.640625,0.6630859375,0.6357421875,0.572265625,0.5,0.4228515625,0.3388671875,0.275390625,0.2587890625,0.287109375,0.33203125,0.3642578125,0.3955078125,0.443359375,0.4912109375,0.5185546875,0.517578125,0.49609375,0.46875,0.435546875,0.380859375,0.3251953125,0.2978515625,0.30859375,0.3486328125,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.6083984375,0.5859375,0.5849609375,0.61328125,0.6611328125,0.7080078125,0.740234375,0.7529296875,0.712890625,0.6240234375,0.521484375,0.4501953125,0.4345703125,0.46875,0.5205078125,0.5830078125,0.62109375,0.6044921875,0.5341796875,0.4423828125,0.3642578125,0.2939453125,0.2431640625,0.2392578125,0.2900390625,0.3701171875,0.4384765625,0.46875,0.4853515625,0.48828125,0.4775390625,0.4609375,0.4501953125,0.453125,0.46875,0.4775390625,0.4501953125,0.3994140625,0.5029296875,0.580078125,0.62109375,0.61328125,0.5703125,0.521484375,0.490234375,0.49609375,0.541015625,0.6044921875,0.6533203125,0.673828125,0.669921875,0.6142578125,0.5205078125,0.4296875,0.3837890625,0.39453125,0.4482421875,0.5029296875,0.52734375,0.50390625,0.4404296875,0.3701171875,0.3271484375,0.3251953125,0.34765625,0.41015625,0.48828125,0.5419921875,0.5439453125,0.498046875,0.4287109375,0.365234375,0.341796875,0.3798828125,0.46484375,0.5595703125,0.6171875,0.6220703125,0.623046875,0.6630859375,0.7265625,0.7744140625,0.7802734375,0.740234375,0.673828125,0.5927734375,0.4921875,0.41015625,0.38671875,0.4287109375,0.5029296875,0.5703125,0.6328125,0.689453125,0.7197265625,0.7119140625,0.67578125,0.638671875,0.6220703125,0.5966796875,0.5244140625,0.42578125,0.349609375,0.3271484375,0.3623046875,0.4287109375,0.501953125,0.5712890625,0.6201171875,0.63671875,0.6279296875,0.6171875,0.6220703125,0.6318359375,0.6396484375,0.6376953125,0.6240234375,0.6025390625,0.5830078125,0.5703125,0.5654296875,0.5791015625,0.595703125,0.59375,0.5625,0.5087890625,0.4482421875,0.392578125,0.3681640625,0.392578125,0.455078125,0.525390625,0.568359375,0.5703125,0.5546875,0.5166015625,0.4609375,0.400390625,0.353515625,0.330078125,0.3251953125,0.3369140625,0.384765625,0.453125,0.5068359375,0.5185546875,0.486328125,0.4287109375,0.361328125,0.2802734375,0.2197265625,0.2099609375,0.25390625,0.3203125,0.376953125,0.43359375,0.5068359375,0.58203125,0.638671875,0.6669921875,0.673828125,0.673828125,0.658203125,0.5859375,0.470703125,0.357421875,0.2890625,0.2841796875,0.3251953125,0.3671875,0.3759765625,0.3544921875,0.330078125,0.328125,0.3642578125,0.4287109375,0.490234375,0.509765625,0.4853515625,0.443359375,0.4189453125,0.4384765625,0.5,0.576171875,0.658203125,0.7099609375,0.701171875,0.6376953125,0.55859375,0.5,0.44140625,0.3681640625,0.3173828125,0.322265625,0.384765625,0.47265625,0.55078125,0.607421875,0.5966796875,0.513671875,0.3974609375,0.3056640625,0.28125,0.3251953125,0.3994140625,0.5068359375,0.6142578125,0.673828125,0.6669921875,0.6142578125,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.63671875,0.658203125,0.6669921875,0.642578125,0.5849609375,0.5126953125,0.4482421875,0.3935546875,0.3759765625,0.4111328125,0.4873046875,0.5703125,0.619140625,0.6220703125,0.6025390625,0.556640625,0.501953125,0.4658203125,0.466796875,0.501953125,0.55078125,0.611328125,0.6923828125,0.759765625,0.7734375,0.7265625,0.646484375,0.5703125,0.48828125,0.3828125,0.29296875,0.259765625,0.29296875,0.3623046875,0.4287109375,0.4833984375,0.5068359375,0.49609375,0.466796875,0.4462890625,0.45703125,0.5,0.5576171875,0.630859375,0.689453125,0.703125,0.6669921875,0.6064453125,0.55078125,0.494140625,0.4306640625,0.39453125,0.41796875,0.4970703125,0.59375,0.673828125,0.734375,0.7509765625,0.71875,0.6630859375,0.6201171875,0.6240234375,0.673828125,0.736328125,0.787109375,0.7890625,0.724609375,0.61328125,0.5029296875,0.4287109375,0.375,0.359375,0.4033203125,0.4931640625,0.59375,0.6591796875,0.673828125,0.6767578125,0.6845703125,0.6806640625,0.646484375,0.5849609375,0.5126953125,0.4482421875,0.3955078125,0.3798828125,0.40625,0.4541015625,0.490234375,0.4892578125,0.4482421875,0.392578125,0.3349609375,0.310546875,0.34765625,0.4375,0.541015625,0.6220703125,0.693359375,0.7509765625,0.7724609375,0.74609375,0.69140625,0.6416015625,0.6220703125,0.6201171875,0.6455078125,0.681640625,0.697265625,0.67578125,0.62109375,0.55078125,0.4814453125,0.431640625,0.4267578125,0.470703125,0.5419921875,0.599609375,0.6220703125,0.6259765625,0.6103515625,0.5859375,0.5732421875,0.5869140625,0.6240234375,0.673828125,0.724609375,0.767578125,0.78515625,0.767578125,0.7275390625,0.6904296875,0.673828125,0.65234375,0.5966796875,0.525390625,0.4765625,0.47265625,0.51171875,0.5703125,0.6298828125,0.6748046875,0.685546875,0.66015625,0.6142578125,0.578125,0.5703125,0.5712890625,0.5712890625,0.5546875,0.51171875,0.4482421875,0.380859375,0.3251953125,0.2900390625,0.3154296875,0.40234375,0.509765625,0.5859375,0.5986328125,0.55078125,0.48046875,0.3876953125,0.3115234375,0.29296875,0.3408203125,0.4228515625,0.5,0.5732421875,0.646484375,0.6953125,0.701171875,0.673828125,0.638671875,0.6220703125,0.609375,0.5888671875,0.568359375,0.5546875,0.552734375,0.5595703125,0.5703125,0.580078125,0.587890625,0.58984375,0.5849609375,0.5771484375,0.5712890625,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.5087890625,0.60546875,0.6845703125,0.7080078125,0.671875,0.607421875,0.55078125,0.509765625,0.5087890625,0.544921875,0.5927734375,0.619140625,0.603515625,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.6162109375,0.623046875,0.6318359375,0.6259765625,0.5966796875,0.55078125,0.5,0.4521484375,0.4306640625,0.4521484375,0.5146484375,0.59375,0.65234375,0.673828125,0.68359375,0.6845703125,0.6552734375,0.5849609375,0.48828125,0.39453125,0.3251953125,0.28125,0.3056640625,0.3974609375,0.513671875,0.5966796875,0.607421875,0.55078125,0.47265625,0.384765625,0.322265625,0.3173828125,0.3681640625,0.44140625,0.5,0.55859375,0.6376953125,0.701171875,0.7099609375,0.658203125,0.576171875,0.5,0.42578125,0.3525390625,0.3037109375,0.2978515625,0.3251953125,0.3603515625,0.376953125,0.3896484375,0.41015625,0.4306640625,0.4443359375,0.4462890625,0.439453125,0.4287109375,0.4111328125,0.3701171875,0.326171875,0.3095703125,0.3330078125,0.38671875,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.611328125,0.6044921875,0.60546875,0.619140625,0.640625,0.66015625,0.673828125,0.6689453125,0.611328125,0.5126953125,0.41796875,0.3671875,0.3759765625,0.4287109375,0.4970703125,0.578125,0.630859375,0.6220703125,0.55078125,0.45703125,0.376953125,0.3017578125,0.2255859375,0.1865234375,0.208984375,0.283203125,0.3681640625,0.4287109375,0.4716796875,0.4794921875,0.4501953125,0.4072265625,0.37890625,0.38671875,0.4287109375,0.46875,0.4638671875,0.419921875,0.57421875,0.638671875,0.65625,0.623046875,0.5595703125,0.4931640625,0.4443359375,0.4345703125,0.46875,0.5244140625,0.5673828125,0.5791015625,0.5693359375,0.5185546875,0.4462890625,0.392578125,0.384765625,0.423828125,0.4892578125,0.5556640625,0.59765625,0.59375,0.544921875,0.4775390625,0.4296875,0.419921875,0.431640625,0.4775390625,0.53515625,0.5703125,0.560546875,0.5087890625,0.439453125,0.373046875,0.337890625,0.3544921875,0.419921875,0.501953125,0.5576171875,0.5693359375,0.578125,0.619140625,0.6748046875,0.708984375,0.69921875,0.6484375,0.5791015625,0.4990234375,0.4033203125,0.333984375,0.3291015625,0.3916015625,0.4814453125,0.5595703125,0.6279296875,0.681640625,0.697265625,0.671875,0.62109375,0.580078125,0.5693359375,0.5546875,0.49609375,0.4130859375,0.349609375,0.3349609375,0.373046875,0.439453125,0.5126953125,0.5791015625,0.6201171875,0.6240234375,0.599609375,0.57421875,0.5693359375,0.5712890625,0.572265625,0.5712890625,0.568359375,0.564453125,0.5615234375,0.5595703125,0.5654296875,0.5966796875,0.6328125,0.6455078125,0.6181640625,0.55859375,0.4892578125,0.4228515625,0.3818359375,0.3857421875,0.4345703125,0.501953125,0.5498046875,0.5595703125,0.5546875,0.5361328125,0.5048828125,0.46875,0.4384765625,0.4228515625,0.419921875,0.4296875,0.47265625,0.529296875,0.564453125,0.556640625,0.5078125,0.439453125,0.3623046875,0.26953125,0.203125,0.201171875,0.2646484375,0.353515625,0.4296875,0.5,0.568359375,0.6142578125,0.6240234375,0.6064453125,0.5849609375,0.5791015625,0.56640625,0.5068359375,0.419921875,0.349609375,0.326171875,0.357421875,0.419921875,0.4765625,0.4873046875,0.451171875,0.3974609375,0.3642578125,0.37890625,0.439453125,0.5009765625,0.5185546875,0.4921875,0.447265625,0.419921875,0.4384765625,0.5,0.5791015625,0.6708984375,0.7353515625,0.7333984375,0.66796875,0.576171875,0.5,0.4228515625,0.3330078125,0.2685546875,0.2705078125,0.3369140625,0.4296875,0.509765625,0.5673828125,0.568359375,0.5087890625,0.42578125,0.365234375,0.36328125,0.419921875,0.5,0.6025390625,0.6875,0.7119140625,0.666015625,0.5849609375,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.5791015625,0.611328125,0.6455078125,0.6533203125,0.6220703125,0.5595703125,0.4892578125,0.423828125,0.3828125,0.388671875,0.4404296875,0.509765625,0.5595703125,0.5693359375,0.556640625,0.5087890625,0.4443359375,0.3994140625,0.400390625,0.4443359375,0.509765625,0.5869140625,0.6845703125,0.76171875,0.7763671875,0.7236328125,0.6376953125,0.5595703125,0.4765625,0.369140625,0.27734375,0.24609375,0.2861328125,0.3642578125,0.439453125,0.5,0.5185546875,0.494140625,0.451171875,0.4248046875,0.44140625,0.5,0.576171875,0.6669921875,0.732421875,0.7353515625,0.673828125,0.5849609375,0.509765625,0.4345703125,0.3515625,0.30078125,0.318359375,0.3974609375,0.498046875,0.5791015625,0.6396484375,0.6513671875,0.6123046875,0.5517578125,0.51171875,0.521484375,0.5791015625,0.654296875,0.728515625,0.7626953125,0.7255859375,0.6298828125,0.5205078125,0.439453125,0.375,0.3408203125,0.3583984375,0.4248046875,0.5087890625,0.56640625,0.5791015625,0.5869140625,0.6171875,0.6484375,0.6552734375,0.6220703125,0.5595703125,0.4892578125,0.4306640625,0.419921875,0.45703125,0.515625,0.5556640625,0.5458984375,0.4892578125,0.4150390625,0.3330078125,0.2841796875,0.3046875,0.38671875,0.48828125,0.5693359375,0.6396484375,0.6923828125,0.70703125,0.677734375,0.6240234375,0.5810546875,0.5693359375,0.576171875,0.609375,0.6494140625,0.6640625,0.638671875,0.580078125,0.509765625,0.4404296875,0.39453125,0.3935546875,0.439453125,0.505859375,0.556640625,0.5693359375,0.5615234375,0.5244140625,0.4755859375,0.44921875,0.462890625,0.5126953125,0.5791015625,0.646484375,0.697265625,0.7109375,0.6826171875,0.6318359375,0.5908203125,0.5791015625,0.5673828125,0.5234375,0.4658203125,0.431640625,0.44140625,0.4912109375,0.5595703125,0.6279296875,0.6787109375,0.69140625,0.662109375,0.609375,0.5693359375,0.5595703125,0.5654296875,0.5888671875,0.6083984375,0.6005859375,0.556640625,0.4892578125,0.419921875,0.365234375,0.3671875,0.4267578125,0.5087890625,0.56640625,0.56640625,0.509765625,0.4306640625,0.3369140625,0.2685546875,0.2646484375,0.328125,0.419921875,0.5,0.5712890625,0.6328125,0.6630859375,0.65234375,0.61328125,0.5791015625,0.5693359375,0.5673828125,0.5634765625,0.5595703125,0.5576171875,0.556640625,0.5576171875,0.5595703125,0.560546875,0.5625,0.5625,0.5615234375,0.560546875,0.5595703125,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.5205078125,0.62109375,0.701171875,0.7177734375,0.66796875,0.583984375,0.509765625,0.453125,0.443359375,0.4833984375,0.5419921875,0.5791015625,0.568359375,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.5751953125,0.60546875,0.640625,0.65234375,0.625,0.5673828125,0.5,0.4345703125,0.3935546875,0.3974609375,0.4462890625,0.515625,0.56640625,0.5791015625,0.5869140625,0.609375,0.6259765625,0.61328125,0.5634765625,0.4921875,0.419921875,0.36328125,0.365234375,0.42578125,0.5087890625,0.568359375,0.5673828125,0.509765625,0.4296875,0.3369140625,0.2705078125,0.2685546875,0.3330078125,0.4228515625,0.5,0.576171875,0.66796875,0.7333984375,0.7353515625,0.6708984375,0.5791015625,0.5,0.427734375,0.3662109375,0.3359375,0.3466796875,0.3857421875,0.419921875,0.4296875,0.431640625,0.435546875,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.4296875,0.3935546875,0.3525390625,0.3369140625,0.361328125,0.419921875,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.5673828125,0.56640625,0.5673828125,0.5703125,0.57421875,0.5771484375,0.5791015625,0.568359375,0.51171875,0.4287109375,0.361328125,0.341796875,0.375,0.439453125,0.517578125,0.609375,0.673828125,0.671875,0.603515625,0.509765625,0.4296875,0.3505859375,0.259765625,0.197265625,0.2021484375,0.2705078125,0.36328125,0.439453125,0.4970703125,0.5068359375,0.46875,0.4111328125,0.3720703125,0.3828125,0.439453125,0.49609375,0.5048828125,0.4638671875,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.6201171875,0.609375,0.5615234375,0.4912109375,0.419921875,0.3515625,0.3017578125,0.2900390625,0.3203125,0.3720703125,0.412109375,0.419921875,0.41015625,0.3798828125,0.3466796875,0.341796875,0.3759765625,0.439453125,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5810546875,0.625,0.681640625,0.7138671875,0.701171875,0.6494140625,0.5791015625,0.505859375,0.435546875,0.3876953125,0.376953125,0.3935546875,0.4150390625,0.419921875,0.427734375,0.4658203125,0.5166015625,0.546875,0.53515625,0.486328125,0.419921875,0.34375,0.2529296875,0.1875,0.1875,0.2509765625,0.341796875,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.4326171875,0.4052734375,0.37890625,0.3798828125,0.419921875,0.486328125,0.5595703125,0.6259765625,0.6640625,0.650390625,0.5888671875,0.5087890625,0.4521484375,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.4423828125,0.4580078125,0.486328125,0.5185546875,0.544921875,0.55859375,0.5595703125,0.5673828125,0.6083984375,0.6611328125,0.6923828125,0.6806640625,0.62890625,0.5595703125,0.48046875,0.388671875,0.326171875,0.3310546875,0.40234375,0.4990234375,0.5791015625,0.6455078125,0.6796875,0.6611328125,0.5927734375,0.5087890625,0.451171875,0.439453125,0.4345703125,0.4091796875,0.3837890625,0.3857421875,0.423828125,0.48828125,0.5595703125,0.6181640625,0.62890625,0.591796875,0.533203125,0.4931640625,0.5029296875,0.5595703125,0.615234375,0.6181640625,0.56640625,0.4921875,0.44140625,0.4443359375,0.5,0.576171875,0.66796875,0.7353515625,0.73828125,0.6767578125,0.5869140625,0.509765625,0.4306640625,0.3369140625,0.267578125,0.26171875,0.322265625,0.412109375,0.4892578125,0.5498046875,0.5712890625,0.55078125,0.513671875,0.4921875,0.5107421875,0.5693359375,0.6435546875,0.7236328125,0.76953125,0.748046875,0.6669921875,0.5673828125,0.4892578125,0.4248046875,0.3818359375,0.3837890625,0.4306640625,0.4970703125,0.546875,0.5595703125,0.5576171875,0.5419921875,0.5126953125,0.4765625,0.447265625,0.431640625,0.4296875,0.443359375,0.494140625,0.564453125,0.615234375,0.6181640625,0.576171875,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.5732421875,0.6533203125,0.69921875,0.6787109375,0.5966796875,0.498046875,0.419921875,0.3466796875,0.2734375,0.240234375,0.2783203125,0.3759765625,0.486328125,0.5693359375,0.6279296875,0.630859375,0.5751953125,0.4951171875,0.4365234375,0.4345703125,0.4892578125,0.56640625,0.6591796875,0.728515625,0.734375,0.6748046875,0.5869140625,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.478515625,0.4931640625,0.458984375,0.40625,0.37109375,0.3828125,0.439453125,0.51953125,0.626953125,0.72265625,0.7607421875,0.7275390625,0.6533203125,0.5791015625,0.5078125,0.439453125,0.39453125,0.384765625,0.4033203125,0.4248046875,0.4296875,0.439453125,0.484375,0.548828125,0.5947265625,0.595703125,0.5546875,0.4892578125,0.4326171875,0.421875,0.4609375,0.5185546875,0.556640625,0.546875,0.4892578125,0.412109375,0.3154296875,0.23828125,0.22265625,0.2724609375,0.35546875,0.4296875,0.49609375,0.5439453125,0.552734375,0.5205078125,0.4677734375,0.427734375,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.4189453125,0.3603515625,0.3349609375,0.349609375,0.3896484375,0.4228515625,0.4296875,0.41796875,0.375,0.3212890625,0.2919921875,0.306640625,0.359375,0.4296875,0.5,0.5517578125,0.56640625,0.5380859375,0.4873046875,0.4482421875,0.439453125,0.431640625,0.3916015625,0.33984375,0.3095703125,0.3212890625,0.3720703125,0.439453125,0.5078125,0.55859375,0.572265625,0.5419921875,0.490234375,0.44921875,0.439453125,0.4521484375,0.5078125,0.587890625,0.650390625,0.6669921875,0.6328125,0.5693359375,0.5107421875,0.4931640625,0.515625,0.5537109375,0.57421875,0.5517578125,0.4892578125,0.41015625,0.3193359375,0.2578125,0.26171875,0.330078125,0.4228515625,0.5,0.564453125,0.6044921875,0.599609375,0.5498046875,0.48046875,0.4306640625,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.427734375,0.4267578125,0.42578125,0.423828125,0.4228515625,0.421875,0.419921875,0.412109375,0.3876953125,0.3681640625,0.3759765625,0.421875,0.4892578125,0.5595703125,0.6337890625,0.7158203125,0.765625,0.748046875,0.66796875,0.568359375,0.4892578125,0.4306640625,0.419921875,0.45703125,0.515625,0.5556640625,0.5458984375,0.4892578125,0.421875,0.36328125,0.3349609375,0.345703125,0.380859375,0.412109375,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.427734375,0.3662109375,0.3349609375,0.34375,0.3798828125,0.412109375,0.419921875,0.4326171875,0.490234375,0.57421875,0.640625,0.658203125,0.6240234375,0.5595703125,0.5,0.4814453125,0.5068359375,0.5478515625,0.5712890625,0.55078125,0.4892578125,0.41015625,0.3173828125,0.2529296875,0.2548828125,0.32421875,0.419921875,0.5,0.5791015625,0.6728515625,0.7392578125,0.740234375,0.67578125,0.5859375,0.509765625,0.4443359375,0.4033203125,0.404296875,0.4501953125,0.5146484375,0.5595703125,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.5673828125,0.515625,0.4443359375,0.3935546875,0.388671875,0.431640625,0.5,0.568359375,0.61328125,0.61328125,0.56640625,0.5,0.451171875,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.4248046875,0.3994140625,0.375,0.37890625,0.419921875,0.486328125,0.5595703125,0.638671875,0.732421875,0.7978515625,0.796875,0.73046875,0.6376953125,0.5595703125,0.4814453125,0.3916015625,0.3291015625,0.333984375,0.4033203125,0.4990234375,0.5791015625,0.6396484375,0.65234375,0.6142578125,0.5556640625,0.5146484375,0.5224609375,0.5791015625,0.6357421875,0.6435546875,0.6005859375,0.6220703125,0.5654296875,0.48046875,0.3935546875,0.3251953125,0.267578125,0.228515625,0.224609375,0.2548828125,0.298828125,0.3271484375,0.3251953125,0.3125,0.296875,0.298828125,0.3369140625,0.40625,0.484375,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.642578125,0.6982421875,0.765625,0.8046875,0.7958984375,0.7431640625,0.673828125,0.5966796875,0.5087890625,0.4248046875,0.3681640625,0.341796875,0.333984375,0.3251953125,0.322265625,0.3447265625,0.380859375,0.40625,0.4052734375,0.3740234375,0.3251953125,0.267578125,0.1943359375,0.1396484375,0.134765625,0.1845703125,0.2587890625,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.421875,0.3974609375,0.3759765625,0.3828125,0.427734375,0.4970703125,0.5703125,0.63671875,0.671875,0.6533203125,0.5859375,0.5009765625,0.4423828125,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.43359375,0.45703125,0.49609375,0.5380859375,0.5673828125,0.5771484375,0.5703125,0.5703125,0.6044921875,0.6552734375,0.6904296875,0.6845703125,0.638671875,0.5703125,0.4931640625,0.4111328125,0.3671875,0.39453125,0.484375,0.5908203125,0.673828125,0.736328125,0.7529296875,0.7041015625,0.6044921875,0.498046875,0.4345703125,0.4287109375,0.43359375,0.4228515625,0.41015625,0.41796875,0.4521484375,0.5087890625,0.5703125,0.623046875,0.6376953125,0.611328125,0.5634765625,0.52734375,0.529296875,0.5703125,0.611328125,0.6103515625,0.5654296875,0.50390625,0.4599609375,0.458984375,0.5,0.55859375,0.6376953125,0.705078125,0.72265625,0.6845703125,0.6171875,0.55078125,0.48046875,0.3876953125,0.3076171875,0.2802734375,0.314453125,0.3818359375,0.4482421875,0.5048828125,0.541015625,0.552734375,0.5517578125,0.5537109375,0.576171875,0.6220703125,0.673828125,0.7197265625,0.728515625,0.6826171875,0.5966796875,0.5087890625,0.4482421875,0.3994140625,0.37109375,0.380859375,0.4306640625,0.498046875,0.5498046875,0.5703125,0.57421875,0.552734375,0.50390625,0.443359375,0.39453125,0.373046875,0.376953125,0.400390625,0.46484375,0.55078125,0.6181640625,0.6376953125,0.6083984375,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.5517578125,0.59765625,0.6064453125,0.560546875,0.474609375,0.38671875,0.3251953125,0.2734375,0.23046875,0.2333984375,0.302734375,0.419921875,0.5380859375,0.6220703125,0.6806640625,0.681640625,0.6181640625,0.5205078125,0.4375,0.412109375,0.4482421875,0.5087890625,0.59375,0.671875,0.7041015625,0.677734375,0.615234375,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.380859375,0.408203125,0.4052734375,0.384765625,0.37109375,0.3857421875,0.4287109375,0.4931640625,0.595703125,0.705078125,0.7744140625,0.779296875,0.734375,0.673828125,0.6083984375,0.533203125,0.4638671875,0.416015625,0.3935546875,0.3857421875,0.376953125,0.3759765625,0.40625,0.4580078125,0.5029296875,0.5166015625,0.494140625,0.4482421875,0.4052734375,0.3974609375,0.4267578125,0.4697265625,0.498046875,0.490234375,0.4482421875,0.3896484375,0.314453125,0.2509765625,0.232421875,0.263671875,0.322265625,0.376953125,0.423828125,0.44921875,0.439453125,0.3994140625,0.3525390625,0.32421875,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.3779296875,0.3232421875,0.3017578125,0.3173828125,0.353515625,0.37890625,0.376953125,0.357421875,0.3076171875,0.2529296875,0.2265625,0.248046875,0.3056640625,0.376953125,0.447265625,0.5,0.5166015625,0.4951171875,0.455078125,0.427734375,0.4287109375,0.4306640625,0.40234375,0.3583984375,0.328125,0.33203125,0.37109375,0.4287109375,0.48828125,0.533203125,0.544921875,0.5185546875,0.4736328125,0.4375,0.4287109375,0.4404296875,0.4931640625,0.57421875,0.6474609375,0.6806640625,0.6669921875,0.6220703125,0.578125,0.5615234375,0.56640625,0.572265625,0.55859375,0.5146484375,0.4482421875,0.3720703125,0.296875,0.2568359375,0.279296875,0.353515625,0.4384765625,0.5,0.544921875,0.5615234375,0.5322265625,0.4638671875,0.3876953125,0.3369140625,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.3671875,0.359375,0.353515625,0.3486328125,0.34375,0.3359375,0.3251953125,0.314453125,0.306640625,0.3212890625,0.369140625,0.4404296875,0.513671875,0.5703125,0.625,0.68359375,0.7109375,0.68359375,0.6064453125,0.517578125,0.4482421875,0.3955078125,0.3798828125,0.40625,0.4541015625,0.490234375,0.4892578125,0.4482421875,0.3955078125,0.34375,0.306640625,0.2958984375,0.306640625,0.3212890625,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.42578125,0.3525390625,0.2998046875,0.2841796875,0.298828125,0.3193359375,0.3251953125,0.33984375,0.4052734375,0.505859375,0.595703125,0.6396484375,0.6240234375,0.5703125,0.517578125,0.5,0.5146484375,0.5380859375,0.5439453125,0.51171875,0.4482421875,0.369140625,0.28125,0.2265625,0.240234375,0.318359375,0.4189453125,0.5,0.5771484375,0.666015625,0.728515625,0.7333984375,0.6826171875,0.609375,0.55078125,0.5048828125,0.482421875,0.49609375,0.541015625,0.5927734375,0.623046875,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.6591796875,0.5966796875,0.50390625,0.427734375,0.40234375,0.43359375,0.5,0.5673828125,0.611328125,0.609375,0.5595703125,0.4912109375,0.4404296875,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.3818359375,0.37109375,0.3623046875,0.37890625,0.427734375,0.4970703125,0.5703125,0.6484375,0.736328125,0.794921875,0.791015625,0.7265625,0.6396484375,0.5703125,0.5029296875,0.4287109375,0.38671875,0.41015625,0.4921875,0.5927734375,0.673828125,0.736328125,0.7587890625,0.734375,0.6826171875,0.638671875,0.6337890625,0.673828125,0.7138671875,0.708984375,0.6572265625,0.61328125,0.521484375,0.4091796875,0.3154296875,0.2587890625,0.21875,0.201171875,0.2119140625,0.2421875,0.271484375,0.2783203125,0.2587890625,0.2353515625,0.2314453125,0.26953125,0.353515625,0.4580078125,0.548828125,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.6728515625,0.7470703125,0.828125,0.8759765625,0.8662109375,0.8115234375,0.740234375,0.6630859375,0.5673828125,0.4658203125,0.380859375,0.322265625,0.2861328125,0.2587890625,0.236328125,0.2275390625,0.2373046875,0.255859375,0.2724609375,0.2734375,0.2587890625,0.234375,0.1943359375,0.15625,0.1455078125,0.16796875,0.2119140625,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.4609375,0.4267578125,0.38671875,0.3720703125,0.3984375,0.458984375,0.5302734375,0.5986328125,0.6435546875,0.642578125,0.5966796875,0.529296875,0.48046875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.474609375,0.4970703125,0.5302734375,0.5576171875,0.56640625,0.5537109375,0.5302734375,0.5146484375,0.5361328125,0.5849609375,0.626953125,0.6328125,0.595703125,0.5302734375,0.455078125,0.38671875,0.3662109375,0.421875,0.5361328125,0.6552734375,0.740234375,0.7998046875,0.8037109375,0.7373046875,0.6240234375,0.5146484375,0.4599609375,0.46875,0.490234375,0.490234375,0.474609375,0.4609375,0.462890625,0.48828125,0.5302734375,0.5712890625,0.59375,0.587890625,0.560546875,0.5302734375,0.517578125,0.5302734375,0.544921875,0.5439453125,0.5263671875,0.5029296875,0.4853515625,0.484375,0.5,0.5263671875,0.580078125,0.640625,0.6796875,0.6806640625,0.6484375,0.6044921875,0.5498046875,0.4638671875,0.375,0.3193359375,0.314453125,0.3486328125,0.39453125,0.44140625,0.4931640625,0.541015625,0.5771484375,0.6005859375,0.6171875,0.634765625,0.650390625,0.646484375,0.6103515625,0.546875,0.4755859375,0.4208984375,0.39453125,0.375,0.3623046875,0.3701171875,0.40234375,0.451171875,0.498046875,0.5302734375,0.5478515625,0.5322265625,0.48046875,0.4140625,0.3623046875,0.345703125,0.3642578125,0.4013671875,0.4765625,0.568359375,0.640625,0.666015625,0.646484375,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.5146484375,0.5107421875,0.474609375,0.4111328125,0.33984375,0.28515625,0.2587890625,0.2392578125,0.2294921875,0.2568359375,0.3330078125,0.4443359375,0.5537109375,0.634765625,0.6962890625,0.708984375,0.654296875,0.5517578125,0.4482421875,0.3916015625,0.39453125,0.423828125,0.490234375,0.57421875,0.640625,0.6650390625,0.646484375,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3056640625,0.3525390625,0.39453125,0.4228515625,0.439453125,0.4521484375,0.46875,0.5,0.5732421875,0.6708984375,0.75390625,0.7919921875,0.7802734375,0.740234375,0.6904296875,0.626953125,0.5546875,0.4853515625,0.4306640625,0.392578125,0.3642578125,0.341796875,0.3369140625,0.353515625,0.3798828125,0.4033203125,0.408203125,0.39453125,0.37890625,0.3759765625,0.38671875,0.40234375,0.4130859375,0.41015625,0.39453125,0.373046875,0.34375,0.3193359375,0.3115234375,0.322265625,0.34375,0.3642578125,0.3759765625,0.3623046875,0.322265625,0.275390625,0.2431640625,0.23828125,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.3271484375,0.287109375,0.2861328125,0.3203125,0.361328125,0.380859375,0.3642578125,0.328125,0.267578125,0.208984375,0.189453125,0.22265625,0.291015625,0.3642578125,0.4326171875,0.482421875,0.5,0.4853515625,0.4609375,0.451171875,0.46875,0.48828125,0.4814453125,0.4521484375,0.421875,0.4111328125,0.4287109375,0.46875,0.513671875,0.546875,0.5546875,0.53515625,0.501953125,0.4755859375,0.46875,0.4755859375,0.5068359375,0.5576171875,0.609375,0.6435546875,0.6494140625,0.634765625,0.62109375,0.619140625,0.6162109375,0.5908203125,0.5380859375,0.466796875,0.39453125,0.32421875,0.2734375,0.26953125,0.3203125,0.400390625,0.46875,0.5,0.5126953125,0.4970703125,0.447265625,0.375,0.3076171875,0.267578125,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.33984375,0.3232421875,0.314453125,0.30859375,0.2998046875,0.283203125,0.2587890625,0.2373046875,0.2392578125,0.28125,0.35546875,0.439453125,0.5009765625,0.5302734375,0.5517578125,0.5751953125,0.58203125,0.5576171875,0.5048828125,0.4443359375,0.39453125,0.3525390625,0.3310546875,0.3369140625,0.36328125,0.3935546875,0.40625,0.39453125,0.373046875,0.3427734375,0.30859375,0.28125,0.2646484375,0.259765625,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.423828125,0.3427734375,0.275390625,0.2421875,0.2421875,0.2548828125,0.2587890625,0.271484375,0.3310546875,0.4248046875,0.515625,0.568359375,0.5673828125,0.5302734375,0.4921875,0.484375,0.5,0.513671875,0.50390625,0.4609375,0.39453125,0.3173828125,0.2353515625,0.1923828125,0.220703125,0.310546875,0.4169921875,0.5,0.57421875,0.650390625,0.701171875,0.70703125,0.673828125,0.630859375,0.6044921875,0.5908203125,0.595703125,0.619140625,0.6455078125,0.662109375,0.6572265625,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.724609375,0.6533203125,0.546875,0.4521484375,0.412109375,0.435546875,0.5,0.568359375,0.6171875,0.6240234375,0.5849609375,0.525390625,0.4794921875,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.3837890625,0.380859375,0.3701171875,0.3720703125,0.40234375,0.4599609375,0.5302734375,0.60546875,0.6845703125,0.7314453125,0.720703125,0.6591796875,0.583984375,0.5302734375,0.48046875,0.431640625,0.416015625,0.4609375,0.5546875,0.6591796875,0.740234375,0.8076171875,0.8486328125,0.84765625,0.8095703125,0.759765625,0.7314453125,0.740234375,0.7509765625,0.728515625,0.6708984375,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.2392578125,0.2470703125,0.275390625,0.3056640625,0.3173828125,0.2998046875,0.2587890625,0.2197265625,0.216796875,0.2734375,0.3798828125,0.5029296875,0.5947265625,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.662109375,0.7529296875,0.8447265625,0.892578125,0.875,0.8134765625,0.740234375,0.6650390625,0.5810546875,0.494140625,0.416015625,0.3544921875,0.3046875,0.2587890625,0.2119140625,0.16796875,0.1455078125,0.15625,0.1943359375,0.234375,0.2587890625,0.2734375,0.2724609375,0.255859375,0.2373046875,0.2275390625,0.236328125,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.5185546875,0.4697265625,0.40234375,0.3564453125,0.35546875,0.400390625,0.46875,0.5400390625,0.6005859375,0.626953125,0.6123046875,0.572265625,0.5380859375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.53515625,0.5537109375,0.57421875,0.5771484375,0.5556640625,0.5146484375,0.46875,0.4345703125,0.443359375,0.48828125,0.5380859375,0.55859375,0.5322265625,0.46875,0.3955078125,0.3349609375,0.328125,0.3994140625,0.52734375,0.654296875,0.740234375,0.798828125,0.798828125,0.7314453125,0.626953125,0.53515625,0.5009765625,0.5302734375,0.5693359375,0.5791015625,0.5546875,0.5078125,0.4658203125,0.451171875,0.46875,0.4970703125,0.52734375,0.546875,0.5439453125,0.5205078125,0.4912109375,0.46875,0.4541015625,0.455078125,0.47265625,0.49609375,0.513671875,0.5146484375,0.5,0.48828125,0.505859375,0.5517578125,0.607421875,0.646484375,0.6552734375,0.634765625,0.599609375,0.5322265625,0.447265625,0.375,0.3388671875,0.3408203125,0.3642578125,0.3984375,0.45703125,0.5302734375,0.5908203125,0.62109375,0.62109375,0.6044921875,0.578125,0.5234375,0.4521484375,0.388671875,0.3525390625,0.3486328125,0.3642578125,0.37890625,0.37890625,0.3720703125,0.373046875,0.390625,0.4248046875,0.46875,0.5048828125,0.5029296875,0.4609375,0.40234375,0.3603515625,0.3583984375,0.39453125,0.4482421875,0.525390625,0.607421875,0.6630859375,0.677734375,0.6611328125,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.47265625,0.4189453125,0.34765625,0.2841796875,0.248046875,0.2431640625,0.2587890625,0.275390625,0.2900390625,0.31640625,0.3701171875,0.4462890625,0.529296875,0.6044921875,0.671875,0.7060546875,0.6796875,0.59375,0.482421875,0.3984375,0.3642578125,0.35546875,0.3896484375,0.466796875,0.5576171875,0.626953125,0.6513671875,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.2939453125,0.3564453125,0.4365234375,0.5048828125,0.5419921875,0.5458984375,0.5302734375,0.51953125,0.546875,0.6103515625,0.6845703125,0.7412109375,0.7578125,0.740234375,0.712890625,0.677734375,0.6298828125,0.568359375,0.5029296875,0.443359375,0.39453125,0.3466796875,0.298828125,0.26953125,0.2734375,0.3037109375,0.33984375,0.3642578125,0.3798828125,0.3828125,0.3720703125,0.3564453125,0.345703125,0.3486328125,0.3642578125,0.3857421875,0.4140625,0.4384765625,0.447265625,0.435546875,0.4150390625,0.39453125,0.3662109375,0.3095703125,0.2421875,0.1953125,0.1875,0.2158203125,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.3017578125,0.279296875,0.306640625,0.36328125,0.416015625,0.427734375,0.39453125,0.33984375,0.265625,0.2041015625,0.1923828125,0.2392578125,0.318359375,0.39453125,0.4609375,0.50390625,0.513671875,0.5,0.484375,0.4921875,0.5302734375,0.5703125,0.587890625,0.5771484375,0.546875,0.517578125,0.5107421875,0.5302734375,0.5556640625,0.5751953125,0.580078125,0.568359375,0.548828125,0.533203125,0.5302734375,0.529296875,0.52734375,0.529296875,0.541015625,0.5615234375,0.583984375,0.6044921875,0.626953125,0.6533203125,0.6572265625,0.6162109375,0.53515625,0.4423828125,0.3642578125,0.2998046875,0.275390625,0.306640625,0.3798828125,0.4609375,0.5048828125,0.5,0.4755859375,0.4326171875,0.375,0.3193359375,0.2802734375,0.26171875,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.353515625,0.330078125,0.3251953125,0.328125,0.3232421875,0.2998046875,0.2587890625,0.22265625,0.2255859375,0.2783203125,0.361328125,0.4384765625,0.4765625,0.46875,0.4521484375,0.4404296875,0.43359375,0.4248046875,0.41015625,0.3896484375,0.3642578125,0.3359375,0.3056640625,0.2861328125,0.2900390625,0.3125,0.341796875,0.3642578125,0.3798828125,0.380859375,0.361328125,0.3251953125,0.2880859375,0.263671875,0.2587890625,0.2744140625,0.345703125,0.4521484375,0.546875,0.5869140625,0.5634765625,0.5,0.423828125,0.3427734375,0.275390625,0.2421875,0.2421875,0.2548828125,0.2587890625,0.267578125,0.30859375,0.375,0.44140625,0.4833984375,0.490234375,0.46875,0.451171875,0.4609375,0.4853515625,0.5,0.482421875,0.4326171875,0.3642578125,0.287109375,0.2099609375,0.1728515625,0.208984375,0.3056640625,0.4169921875,0.5,0.5693359375,0.6279296875,0.6572265625,0.654296875,0.634765625,0.623046875,0.634765625,0.6591796875,0.6953125,0.7255859375,0.7294921875,0.7001953125,0.65234375,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.724609375,0.6533203125,0.546875,0.4521484375,0.412109375,0.435546875,0.5,0.5703125,0.6259765625,0.646484375,0.6240234375,0.5771484375,0.5390625,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.4306640625,0.4306640625,0.40234375,0.373046875,0.369140625,0.404296875,0.46875,0.54296875,0.6103515625,0.6435546875,0.6240234375,0.5654296875,0.5048828125,0.46875,0.439453125,0.412109375,0.4140625,0.4658203125,0.5595703125,0.66015625,0.740234375,0.8125,0.8759765625,0.9033203125,0.880859375,0.82421875,0.7685546875,0.740234375,0.7177734375,0.6826171875,0.6328125,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.32421875,0.3525390625,0.3955078125,0.4267578125,0.4228515625,0.3837890625,0.3251953125,0.271484375,0.2568359375,0.3037109375,0.4033203125,0.5166015625,0.595703125,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.6240234375,0.724609375,0.8173828125,0.853515625,0.822265625,0.7490234375,0.673828125,0.6044921875,0.544921875,0.5,0.4638671875,0.4287109375,0.3837890625,0.3251953125,0.2587890625,0.1845703125,0.134765625,0.1396484375,0.1943359375,0.267578125,0.3251953125,0.3740234375,0.4052734375,0.40625,0.380859375,0.3447265625,0.322265625,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.556640625,0.498046875,0.4130859375,0.345703125,0.3271484375,0.3623046875,0.4287109375,0.501953125,0.5712890625,0.6162109375,0.623046875,0.6015625,0.5771484375,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5751953125,0.59375,0.6083984375,0.5966796875,0.5537109375,0.4921875,0.4287109375,0.37890625,0.3759765625,0.41796875,0.474609375,0.5068359375,0.490234375,0.4287109375,0.3544921875,0.2900390625,0.2783203125,0.3427734375,0.4638671875,0.587890625,0.673828125,0.732421875,0.736328125,0.6806640625,0.59765625,0.5322265625,0.5224609375,0.5703125,0.625,0.646484375,0.619140625,0.55078125,0.4755859375,0.4306640625,0.4287109375,0.4462890625,0.4833984375,0.5234375,0.5400390625,0.5234375,0.48046875,0.4287109375,0.3876953125,0.388671875,0.43359375,0.4951171875,0.5390625,0.5400390625,0.5,0.4541015625,0.4375,0.4638671875,0.521484375,0.5849609375,0.6220703125,0.6220703125,0.6044921875,0.5615234375,0.4970703125,0.4326171875,0.3876953125,0.37109375,0.376953125,0.3984375,0.45703125,0.53515625,0.5986328125,0.6201171875,0.5986328125,0.55078125,0.490234375,0.40234375,0.31640625,0.2705078125,0.279296875,0.3251953125,0.376953125,0.419921875,0.427734375,0.40234375,0.369140625,0.353515625,0.375,0.4287109375,0.48046875,0.4921875,0.4619140625,0.4150390625,0.384765625,0.396484375,0.4482421875,0.5126953125,0.5849609375,0.642578125,0.6669921875,0.658203125,0.63671875,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.4384765625,0.3505859375,0.2646484375,0.21875,0.2275390625,0.2734375,0.3251953125,0.3701171875,0.3935546875,0.3994140625,0.4072265625,0.4326171875,0.4833984375,0.55078125,0.6240234375,0.6845703125,0.697265625,0.642578125,0.541015625,0.4404296875,0.376953125,0.3349609375,0.3330078125,0.3857421875,0.4765625,0.5673828125,0.619140625,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3486328125,0.4150390625,0.509765625,0.591796875,0.62890625,0.615234375,0.5703125,0.5244140625,0.505859375,0.52734375,0.580078125,0.6396484375,0.673828125,0.673828125,0.6669921875,0.6669921875,0.6611328125,0.6318359375,0.5771484375,0.51171875,0.4482421875,0.3798828125,0.296875,0.2314453125,0.216796875,0.2568359375,0.3212890625,0.376953125,0.419921875,0.427734375,0.3984375,0.35546875,0.3271484375,0.3349609375,0.376953125,0.435546875,0.5107421875,0.57421875,0.5927734375,0.5615234375,0.5029296875,0.4482421875,0.38671875,0.298828125,0.216796875,0.1796875,0.2021484375,0.26171875,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.3173828125,0.3095703125,0.357421875,0.4326171875,0.490234375,0.49609375,0.4482421875,0.3779296875,0.2919921875,0.2265625,0.22265625,0.28125,0.369140625,0.4482421875,0.51171875,0.5439453125,0.5380859375,0.5146484375,0.4990234375,0.517578125,0.5703125,0.6279296875,0.6669921875,0.6708984375,0.640625,0.5966796875,0.568359375,0.5703125,0.580078125,0.587890625,0.58984375,0.5849609375,0.5771484375,0.5712890625,0.5703125,0.5625,0.5302734375,0.48828125,0.4619140625,0.466796875,0.501953125,0.55078125,0.6064453125,0.6640625,0.6884765625,0.6513671875,0.5615234375,0.4580078125,0.376953125,0.3173828125,0.3095703125,0.361328125,0.4453125,0.5166015625,0.5361328125,0.5,0.4462890625,0.3876953125,0.3388671875,0.314453125,0.314453125,0.322265625,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.3935546875,0.3701171875,0.376953125,0.396484375,0.4033203125,0.3798828125,0.3251953125,0.275390625,0.2724609375,0.322265625,0.3974609375,0.45703125,0.4677734375,0.4287109375,0.3798828125,0.341796875,0.3291015625,0.3408203125,0.3662109375,0.3818359375,0.376953125,0.3603515625,0.3232421875,0.283203125,0.265625,0.283203125,0.326171875,0.376953125,0.42578125,0.45703125,0.4541015625,0.4189453125,0.3701171875,0.333984375,0.3251953125,0.33984375,0.40234375,0.4951171875,0.5712890625,0.5966796875,0.5654296875,0.5,0.42578125,0.3525390625,0.2998046875,0.2841796875,0.298828125,0.3193359375,0.3251953125,0.3291015625,0.34765625,0.37890625,0.41015625,0.431640625,0.4365234375,0.4287109375,0.427734375,0.455078125,0.4951171875,0.5166015625,0.5,0.447265625,0.376953125,0.30078125,0.220703125,0.181640625,0.2138671875,0.3076171875,0.4169921875,0.5,0.5654296875,0.6025390625,0.60546875,0.5859375,0.5693359375,0.5791015625,0.6220703125,0.677734375,0.7421875,0.7822265625,0.767578125,0.7021484375,0.619140625,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6591796875,0.5966796875,0.50390625,0.427734375,0.40234375,0.43359375,0.5,0.5712890625,0.6318359375,0.6611328125,0.6494140625,0.611328125,0.578125,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.4970703125,0.498046875,0.451171875,0.390625,0.353515625,0.3681640625,0.4287109375,0.5,0.55859375,0.580078125,0.5537109375,0.498046875,0.44921875,0.4287109375,0.4150390625,0.39453125,0.39453125,0.4326171875,0.5087890625,0.5966796875,0.673828125,0.75,0.83203125,0.8837890625,0.875,0.8115234375,0.7333984375,0.673828125,0.625,0.587890625,0.5615234375,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.427734375,0.4677734375,0.51953125,0.5498046875,0.5380859375,0.4873046875,0.419921875,0.3544921875,0.3212890625,0.33984375,0.408203125,0.494140625,0.5546875,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.5888671875,0.6904296875,0.7724609375,0.7919921875,0.7421875,0.6572265625,0.5791015625,0.515625,0.484375,0.4873046875,0.505859375,0.5107421875,0.4814453125,0.419921875,0.341796875,0.2509765625,0.1875,0.1875,0.2529296875,0.34375,0.419921875,0.486328125,0.53515625,0.546875,0.5166015625,0.4658203125,0.427734375,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.546875,0.490234375,0.41015625,0.3486328125,0.3349609375,0.373046875,0.439453125,0.5126953125,0.5791015625,0.619140625,0.6201171875,0.59375,0.56640625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.56640625,0.5927734375,0.6181640625,0.6162109375,0.576171875,0.5107421875,0.439453125,0.3818359375,0.3720703125,0.412109375,0.47265625,0.51171875,0.5,0.439453125,0.36328125,0.2861328125,0.25,0.287109375,0.384765625,0.49609375,0.5791015625,0.638671875,0.6484375,0.6044921875,0.5390625,0.494140625,0.501953125,0.5595703125,0.6240234375,0.66015625,0.6455078125,0.5830078125,0.5048828125,0.4501953125,0.439453125,0.451171875,0.4921875,0.54296875,0.5712890625,0.5576171875,0.5068359375,0.439453125,0.3837890625,0.380859375,0.4326171875,0.5068359375,0.5576171875,0.5546875,0.5,0.4345703125,0.39453125,0.3984375,0.4462890625,0.5126953125,0.5595703125,0.5693359375,0.564453125,0.544921875,0.5126953125,0.4755859375,0.4462890625,0.4306640625,0.4296875,0.4423828125,0.4931640625,0.5625,0.611328125,0.615234375,0.57421875,0.509765625,0.431640625,0.33203125,0.2509765625,0.2294921875,0.275390625,0.35546875,0.4296875,0.486328125,0.4970703125,0.4599609375,0.404296875,0.3681640625,0.380859375,0.439453125,0.4990234375,0.515625,0.4873046875,0.44140625,0.4130859375,0.4296875,0.4892578125,0.5595703125,0.6220703125,0.6533203125,0.6455078125,0.611328125,0.5791015625,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.421875,0.322265625,0.2412109375,0.2197265625,0.265625,0.345703125,0.419921875,0.478515625,0.498046875,0.4765625,0.44140625,0.423828125,0.447265625,0.509765625,0.5869140625,0.6689453125,0.7158203125,0.693359375,0.609375,0.5078125,0.4296875,0.3671875,0.3349609375,0.3544921875,0.4208984375,0.5029296875,0.55859375,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.4345703125,0.4921875,0.57421875,0.6396484375,0.6572265625,0.623046875,0.5595703125,0.4931640625,0.447265625,0.439453125,0.474609375,0.5302734375,0.5712890625,0.5791015625,0.5849609375,0.6142578125,0.6455078125,0.65234375,0.62109375,0.5595703125,0.4892578125,0.41015625,0.3125,0.2353515625,0.2197265625,0.271484375,0.3544921875,0.4296875,0.486328125,0.4970703125,0.458984375,0.400390625,0.3623046875,0.373046875,0.4296875,0.5068359375,0.6044921875,0.6806640625,0.697265625,0.646484375,0.564453125,0.4892578125,0.412109375,0.3125,0.232421875,0.212890625,0.26171875,0.34375,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.37109375,0.3662109375,0.4189453125,0.4951171875,0.548828125,0.5458984375,0.4892578125,0.4111328125,0.318359375,0.251953125,0.2509765625,0.31640625,0.41015625,0.4892578125,0.55078125,0.5712890625,0.5478515625,0.5068359375,0.4814453125,0.5,0.5595703125,0.626953125,0.677734375,0.689453125,0.6591796875,0.607421875,0.5673828125,0.5595703125,0.560546875,0.5625,0.5625,0.5615234375,0.560546875,0.5595703125,0.5595703125,0.548828125,0.5029296875,0.4404296875,0.3984375,0.400390625,0.4443359375,0.509765625,0.583984375,0.666015625,0.71484375,0.6943359375,0.6123046875,0.5107421875,0.4296875,0.37109375,0.3671875,0.419921875,0.498046875,0.5546875,0.5546875,0.5,0.4306640625,0.37109375,0.3408203125,0.3486328125,0.3818359375,0.412109375,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.4296875,0.41015625,0.4345703125,0.474609375,0.4990234375,0.4794921875,0.419921875,0.361328125,0.3525390625,0.3955078125,0.458984375,0.5029296875,0.49609375,0.439453125,0.373046875,0.3232421875,0.3095703125,0.3359375,0.384765625,0.421875,0.4296875,0.4189453125,0.3779296875,0.326171875,0.2978515625,0.3125,0.36328125,0.4296875,0.49609375,0.544921875,0.5556640625,0.5234375,0.470703125,0.4296875,0.419921875,0.431640625,0.4833984375,0.5546875,0.60546875,0.6103515625,0.5673828125,0.5,0.427734375,0.3662109375,0.3349609375,0.34375,0.3798828125,0.412109375,0.419921875,0.4208984375,0.423828125,0.4296875,0.435546875,0.439453125,0.4404296875,0.439453125,0.4482421875,0.4873046875,0.5380859375,0.56640625,0.5517578125,0.5,0.4296875,0.3515625,0.265625,0.21484375,0.2333984375,0.3154296875,0.41796875,0.5,0.5615234375,0.58203125,0.560546875,0.51953125,0.494140625,0.5107421875,0.5693359375,0.64453125,0.7275390625,0.779296875,0.763671875,0.6865234375,0.5888671875,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.5673828125,0.515625,0.4443359375,0.3935546875,0.388671875,0.431640625,0.5,0.5703125,0.6298828125,0.6572265625,0.642578125,0.6025390625,0.568359375,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.546875,0.5498046875,0.498046875,0.4248046875,0.375,0.380859375,0.439453125,0.509765625,0.5634765625,0.5771484375,0.5478515625,0.494140625,0.451171875,0.439453125,0.431640625,0.4052734375,0.3828125,0.3896484375,0.435546875,0.505859375,0.5791015625,0.658203125,0.7509765625,0.814453125,0.8134765625,0.7470703125,0.6552734375,0.5791015625,0.5185546875,0.4921875,0.4990234375,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.662109375,0.646484375,0.60546875,0.5693359375,0.5595703125,0.5673828125,0.6083984375,0.6640625,0.6982421875,0.69140625,0.6455078125,0.5791015625,0.5087890625,0.4384765625,0.388671875,0.375,0.390625,0.412109375,0.419921875,0.4130859375,0.3818359375,0.345703125,0.333984375,0.361328125,0.419921875,0.4892578125,0.56640625,0.65234375,0.705078125,0.689453125,0.611328125,0.5107421875,0.4296875,0.373046875,0.3798828125,0.4521484375,0.5517578125,0.625,0.6337890625,0.5791015625,0.5009765625,0.40625,0.3369140625,0.33203125,0.392578125,0.4814453125,0.5595703125,0.6279296875,0.681640625,0.69921875,0.6748046875,0.626953125,0.5888671875,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.412109375,0.3896484375,0.373046875,0.3857421875,0.435546875,0.5068359375,0.5791015625,0.64453125,0.6787109375,0.66015625,0.59375,0.5107421875,0.453125,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.4443359375,0.5048828125,0.5908203125,0.6591796875,0.677734375,0.64453125,0.5791015625,0.5205078125,0.505859375,0.5400390625,0.5927734375,0.6279296875,0.6162109375,0.5595703125,0.48046875,0.375,0.283203125,0.2509765625,0.2880859375,0.365234375,0.439453125,0.498046875,0.505859375,0.462890625,0.400390625,0.359375,0.3701171875,0.4296875,0.5029296875,0.5703125,0.61328125,0.6171875,0.591796875,0.56640625,0.5595703125,0.5693359375,0.6123046875,0.6689453125,0.7041015625,0.6953125,0.646484375,0.5791015625,0.51953125,0.5,0.5224609375,0.5615234375,0.5830078125,0.5615234375,0.5,0.4287109375,0.369140625,0.341796875,0.3564453125,0.396484375,0.4306640625,0.439453125,0.443359375,0.4599609375,0.490234375,0.5244140625,0.5537109375,0.568359375,0.5693359375,0.5751953125,0.60546875,0.6396484375,0.6484375,0.619140625,0.5595703125,0.4892578125,0.4130859375,0.3291015625,0.27734375,0.2958984375,0.376953125,0.478515625,0.5595703125,0.619140625,0.6318359375,0.5947265625,0.53515625,0.494140625,0.5029296875,0.5595703125,0.615234375,0.6181640625,0.5673828125,0.49609375,0.4462890625,0.4521484375,0.509765625,0.5751953125,0.6162109375,0.6083984375,0.5556640625,0.4833984375,0.431640625,0.419921875,0.419921875,0.4208984375,0.421875,0.4228515625,0.4228515625,0.421875,0.419921875,0.4296875,0.48046875,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.4326171875,0.3466796875,0.29296875,0.3056640625,0.3818359375,0.48046875,0.5595703125,0.6162109375,0.6181640625,0.5634765625,0.4853515625,0.4306640625,0.4326171875,0.4892578125,0.5693359375,0.671875,0.755859375,0.7783203125,0.73046875,0.646484375,0.5693359375,0.49609375,0.42578125,0.37890625,0.3701171875,0.3896484375,0.4130859375,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.5771484375,0.6005859375,0.6201171875,0.609375,0.5615234375,0.4912109375,0.419921875,0.3515625,0.3017578125,0.2900390625,0.3203125,0.3720703125,0.412109375,0.419921875,0.4296875,0.478515625,0.5478515625,0.5966796875,0.6005859375,0.5576171875,0.4892578125,0.412109375,0.3291015625,0.2822265625,0.3056640625,0.392578125,0.4970703125,0.5791015625,0.638671875,0.646484375,0.6025390625,0.5361328125,0.4912109375,0.5,0.5595703125,0.63671875,0.720703125,0.76953125,0.7490234375,0.66796875,0.5673828125,0.4892578125,0.4150390625,0.3310546875,0.28125,0.2978515625,0.3779296875,0.478515625,0.5595703125,0.638671875,0.732421875,0.798828125,0.7998046875,0.736328125,0.6455078125,0.5693359375,0.5107421875,0.494140625,0.5205078125,0.5634765625,0.587890625,0.5693359375,0.509765625,0.431640625,0.337890625,0.26953125,0.2646484375,0.3251953125,0.4140625,0.4892578125,0.544921875,0.548828125,0.498046875,0.42578125,0.376953125,0.3818359375,0.439453125,0.5068359375,0.5546875,0.5625,0.5263671875,0.470703125,0.4287109375,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.431640625,0.3994140625,0.361328125,0.3486328125,0.3740234375,0.431640625,0.5,0.5771484375,0.6748046875,0.7529296875,0.76953125,0.7197265625,0.6357421875,0.5595703125,0.5,0.4833984375,0.509765625,0.5546875,0.580078125,0.560546875,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5869140625,0.6201171875,0.65625,0.6669921875,0.638671875,0.5791015625,0.509765625,0.4521484375,0.4482421875,0.498046875,0.5703125,0.62109375,0.6162109375,0.5595703125,0.5009765625,0.4931640625,0.537109375,0.6015625,0.6455078125,0.63671875,0.5791015625,0.5107421875,0.45703125,0.4404296875,0.466796875,0.517578125,0.55859375,0.5693359375,0.5615234375,0.5234375,0.4736328125,0.4453125,0.4599609375,0.5107421875,0.5791015625,0.646484375,0.6953125,0.7041015625,0.6689453125,0.6123046875,0.5693359375,0.5595703125,0.568359375,0.6025390625,0.642578125,0.6572265625,0.6298828125,0.5703125,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5791015625,0.576171875,0.5732421875,0.5693359375,0.568359375,0.568359375,0.5693359375,0.580078125,0.62109375,0.6728515625,0.701171875,0.6865234375,0.6357421875,0.5693359375,0.4912109375,0.390625,0.30859375,0.2861328125,0.33203125,0.4140625,0.4892578125,0.5458984375,0.548828125,0.4951171875,0.4189453125,0.3662109375,0.37109375,0.4296875,0.5107421875,0.609375,0.6875,0.7021484375,0.6494140625,0.564453125,0.4892578125,0.421875,0.36328125,0.3359375,0.3486328125,0.38671875,0.419921875,0.4296875,0.423828125,0.3935546875,0.3583984375,0.3466796875,0.3740234375,0.431640625,0.5,0.564453125,0.6044921875,0.599609375,0.5498046875,0.48046875,0.4306640625,0.419921875,0.4111328125,0.3779296875,0.33984375,0.328125,0.357421875,0.41796875,0.4892578125,0.55078125,0.5703125,0.5458984375,0.5029296875,0.478515625,0.498046875,0.5595703125,0.6298828125,0.6845703125,0.7021484375,0.6767578125,0.6279296875,0.5888671875,0.5791015625,0.56640625,0.509765625,0.427734375,0.3623046875,0.34375,0.3759765625,0.439453125,0.515625,0.6025390625,0.662109375,0.65625,0.5888671875,0.49609375,0.419921875,0.3671875,0.376953125,0.4521484375,0.689453125,0.6728515625,0.62890625,0.587890625,0.5703125,0.5693359375,0.6044921875,0.6630859375,0.716796875,0.7373046875,0.71875,0.673828125,0.6142578125,0.5283203125,0.43359375,0.359375,0.3212890625,0.31640625,0.3251953125,0.330078125,0.31640625,0.30078125,0.3017578125,0.3330078125,0.38671875,0.4482421875,0.515625,0.59375,0.642578125,0.62890625,0.5537109375,0.45703125,0.376953125,0.3232421875,0.341796875,0.4404296875,0.5751953125,0.68359375,0.7158203125,0.673828125,0.6025390625,0.509765625,0.4296875,0.40234375,0.4365234375,0.50390625,0.5703125,0.6318359375,0.689453125,0.7236328125,0.7255859375,0.7021484375,0.6796875,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.3154296875,0.314453125,0.34375,0.4140625,0.5107421875,0.6044921875,0.673828125,0.7275390625,0.7421875,0.69921875,0.6083984375,0.5087890625,0.443359375,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.4033203125,0.482421875,0.595703125,0.6953125,0.7421875,0.7275390625,0.673828125,0.6181640625,0.5908203125,0.59375,0.6142578125,0.6279296875,0.61328125,0.5703125,0.5087890625,0.4189453125,0.33203125,0.2900390625,0.30859375,0.365234375,0.4287109375,0.4775390625,0.474609375,0.4208984375,0.3505859375,0.306640625,0.3173828125,0.376953125,0.451171875,0.52734375,0.583984375,0.6044921875,0.59375,0.5751953125,0.5703125,0.5810546875,0.62890625,0.6982421875,0.7509765625,0.7626953125,0.73046875,0.673828125,0.6201171875,0.595703125,0.5986328125,0.609375,0.6025390625,0.564453125,0.5,0.427734375,0.3671875,0.337890625,0.349609375,0.3876953125,0.4208984375,0.4287109375,0.4345703125,0.46484375,0.5146484375,0.5703125,0.611328125,0.626953125,0.6220703125,0.6162109375,0.623046875,0.6279296875,0.6123046875,0.5703125,0.509765625,0.4482421875,0.380859375,0.3095703125,0.271484375,0.2998046875,0.3857421875,0.4892578125,0.5703125,0.6328125,0.6552734375,0.630859375,0.5791015625,0.53515625,0.5302734375,0.5703125,0.6103515625,0.6103515625,0.5693359375,0.5166015625,0.486328125,0.4990234375,0.55078125,0.60546875,0.623046875,0.583984375,0.498046875,0.40234375,0.33984375,0.3251953125,0.3271484375,0.3330078125,0.3408203125,0.345703125,0.34375,0.3359375,0.3251953125,0.3291015625,0.384765625,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.4833984375,0.4052734375,0.3525390625,0.357421875,0.4189453125,0.5009765625,0.5703125,0.6181640625,0.6123046875,0.55078125,0.466796875,0.4052734375,0.3994140625,0.4482421875,0.521484375,0.62890625,0.732421875,0.783203125,0.7626953125,0.6962890625,0.6220703125,0.544921875,0.45703125,0.376953125,0.3291015625,0.31640625,0.322265625,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.6337890625,0.640625,0.6220703125,0.5654296875,0.48046875,0.3935546875,0.3251953125,0.267578125,0.228515625,0.224609375,0.2548828125,0.298828125,0.3271484375,0.3251953125,0.328125,0.376953125,0.4560546875,0.5234375,0.544921875,0.513671875,0.4482421875,0.373046875,0.306640625,0.2900390625,0.349609375,0.466796875,0.5888671875,0.673828125,0.73046875,0.728515625,0.666015625,0.578125,0.5146484375,0.5126953125,0.5703125,0.6435546875,0.7109375,0.7353515625,0.6943359375,0.6044921875,0.509765625,0.4482421875,0.3916015625,0.3271484375,0.291015625,0.314453125,0.3935546875,0.490234375,0.5703125,0.6484375,0.736328125,0.798828125,0.8037109375,0.7529296875,0.6796875,0.6220703125,0.5791015625,0.5693359375,0.58984375,0.6181640625,0.62890625,0.60546875,0.55078125,0.482421875,0.39453125,0.322265625,0.2998046875,0.33203125,0.392578125,0.4482421875,0.48828125,0.4873046875,0.447265625,0.39453125,0.3642578125,0.376953125,0.4287109375,0.484375,0.5107421875,0.4912109375,0.43359375,0.3671875,0.326171875,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.423828125,0.40234375,0.3798828125,0.376953125,0.40234375,0.4482421875,0.5,0.5595703125,0.640625,0.7119140625,0.734375,0.701171875,0.634765625,0.5703125,0.5185546875,0.5068359375,0.533203125,0.5712890625,0.587890625,0.5625,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.6787109375,0.7001953125,0.71875,0.7119140625,0.673828125,0.61328125,0.55078125,0.5,0.4931640625,0.5322265625,0.5888671875,0.6279296875,0.62109375,0.5703125,0.521484375,0.5244140625,0.58203125,0.6611328125,0.71875,0.7216796875,0.673828125,0.611328125,0.5537109375,0.5234375,0.53125,0.5673828125,0.6044921875,0.6220703125,0.6240234375,0.6025390625,0.5703125,0.5537109375,0.5693359375,0.6142578125,0.673828125,0.73046875,0.7626953125,0.7509765625,0.6982421875,0.62890625,0.5810546875,0.5703125,0.578125,0.611328125,0.6494140625,0.6611328125,0.6318359375,0.5712890625,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.6708984375,0.658203125,0.638671875,0.62109375,0.611328125,0.61328125,0.6220703125,0.638671875,0.67578125,0.7158203125,0.7333984375,0.7158203125,0.6728515625,0.6220703125,0.5595703125,0.4658203125,0.3720703125,0.3212890625,0.33203125,0.384765625,0.4482421875,0.49609375,0.490234375,0.4326171875,0.357421875,0.3095703125,0.3173828125,0.376953125,0.4560546875,0.546875,0.61328125,0.623046875,0.576171875,0.505859375,0.4482421875,0.3955078125,0.34375,0.310546875,0.30859375,0.3330078125,0.361328125,0.376953125,0.3828125,0.3759765625,0.3671875,0.373046875,0.40234375,0.4482421875,0.5,0.544921875,0.5615234375,0.5322265625,0.4638671875,0.3876953125,0.3369140625,0.3251953125,0.318359375,0.2919921875,0.265625,0.267578125,0.3076171875,0.375,0.4482421875,0.5107421875,0.5361328125,0.5234375,0.4951171875,0.4814453125,0.5078125,0.5703125,0.642578125,0.70703125,0.7431640625,0.740234375,0.7099609375,0.6806640625,0.673828125,0.66015625,0.6015625,0.5087890625,0.4228515625,0.3779296875,0.384765625,0.4287109375,0.4833984375,0.537109375,0.5615234375,0.5341796875,0.4638671875,0.384765625,0.3251953125,0.29296875,0.3330078125,0.447265625,0.701171875,0.673828125,0.6181640625,0.5634765625,0.5302734375,0.51171875,0.529296875,0.5849609375,0.66015625,0.72265625,0.75,0.740234375,0.70703125,0.619140625,0.48828125,0.3583984375,0.26953125,0.2421875,0.2587890625,0.28125,0.291015625,0.2919921875,0.2978515625,0.31640625,0.3505859375,0.39453125,0.4482421875,0.5185546875,0.57421875,0.5771484375,0.5234375,0.4404296875,0.3642578125,0.3095703125,0.3291015625,0.43359375,0.58203125,0.7109375,0.765625,0.740234375,0.6845703125,0.599609375,0.5107421875,0.455078125,0.4501953125,0.484375,0.5302734375,0.5791015625,0.6376953125,0.6923828125,0.7294921875,0.7421875,0.7412109375,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.23828125,0.2509765625,0.3193359375,0.4384765625,0.57421875,0.6806640625,0.740234375,0.7783203125,0.7783203125,0.7255859375,0.6357421875,0.541015625,0.4814453125,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.404296875,0.49609375,0.619140625,0.7255859375,0.7822265625,0.779296875,0.740234375,0.693359375,0.646484375,0.6044921875,0.576171875,0.5595703125,0.546875,0.5302734375,0.50390625,0.4560546875,0.4052734375,0.3779296875,0.38671875,0.423828125,0.46875,0.5009765625,0.4794921875,0.4111328125,0.333984375,0.2900390625,0.302734375,0.3642578125,0.4375,0.509765625,0.560546875,0.57421875,0.5576171875,0.5361328125,0.5302734375,0.541015625,0.5927734375,0.673828125,0.748046875,0.787109375,0.779296875,0.740234375,0.7001953125,0.6796875,0.6708984375,0.6572265625,0.6240234375,0.568359375,0.5,0.4287109375,0.373046875,0.3525390625,0.375,0.421875,0.4599609375,0.46875,0.4765625,0.51171875,0.568359375,0.6240234375,0.65625,0.6572265625,0.634765625,0.6103515625,0.587890625,0.5634765625,0.5302734375,0.4873046875,0.4404296875,0.39453125,0.34375,0.28515625,0.25390625,0.2783203125,0.35546875,0.4501953125,0.5302734375,0.5966796875,0.638671875,0.6376953125,0.599609375,0.548828125,0.521484375,0.5302734375,0.5439453125,0.5400390625,0.5263671875,0.51953125,0.5302734375,0.5615234375,0.6044921875,0.640625,0.6318359375,0.5634765625,0.4521484375,0.341796875,0.2734375,0.2587890625,0.2626953125,0.2783203125,0.2978515625,0.30859375,0.3037109375,0.2841796875,0.2587890625,0.248046875,0.296875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.552734375,0.484375,0.4248046875,0.4052734375,0.4306640625,0.4814453125,0.5302734375,0.564453125,0.5546875,0.4990234375,0.4248046875,0.369140625,0.359375,0.39453125,0.4541015625,0.55859375,0.673828125,0.748046875,0.7548828125,0.705078125,0.634765625,0.556640625,0.4580078125,0.361328125,0.2919921875,0.26171875,0.2578125,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.658203125,0.658203125,0.61328125,0.521484375,0.4091796875,0.3154296875,0.2587890625,0.21875,0.201171875,0.2119140625,0.2421875,0.271484375,0.2783203125,0.2587890625,0.24609375,0.28515625,0.3642578125,0.44140625,0.4775390625,0.45703125,0.39453125,0.322265625,0.2705078125,0.28125,0.3720703125,0.5166015625,0.65234375,0.740234375,0.794921875,0.7802734375,0.693359375,0.5771484375,0.490234375,0.474609375,0.5302734375,0.5986328125,0.646484375,0.6435546875,0.5849609375,0.498046875,0.42578125,0.39453125,0.369140625,0.330078125,0.3037109375,0.31640625,0.3740234375,0.4541015625,0.5302734375,0.6044921875,0.6806640625,0.7314453125,0.7373046875,0.7041015625,0.6611328125,0.634765625,0.6220703125,0.630859375,0.654296875,0.673828125,0.6728515625,0.646484375,0.6044921875,0.552734375,0.4833984375,0.4140625,0.369140625,0.3603515625,0.375,0.39453125,0.408203125,0.4052734375,0.3916015625,0.3837890625,0.39453125,0.42578125,0.46875,0.5048828125,0.4970703125,0.4384765625,0.3525390625,0.27734375,0.244140625,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.466796875,0.4599609375,0.4521484375,0.4521484375,0.462890625,0.48046875,0.5,0.525390625,0.5693359375,0.61328125,0.6318359375,0.6162109375,0.576171875,0.5302734375,0.4951171875,0.5,0.5380859375,0.580078125,0.59375,0.5634765625,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.7431640625,0.7529296875,0.7568359375,0.740234375,0.701171875,0.65234375,0.6044921875,0.5654296875,0.548828125,0.5576171875,0.576171875,0.5849609375,0.5693359375,0.5302734375,0.4970703125,0.515625,0.587890625,0.681640625,0.75390625,0.7734375,0.740234375,0.689453125,0.62890625,0.5771484375,0.5576171875,0.572265625,0.60546875,0.634765625,0.6572265625,0.662109375,0.6572265625,0.654296875,0.6669921875,0.697265625,0.740234375,0.779296875,0.787109375,0.748046875,0.673828125,0.5927734375,0.541015625,0.5302734375,0.5390625,0.5771484375,0.6240234375,0.646484375,0.6259765625,0.5703125,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.734375,0.7060546875,0.6630859375,0.6240234375,0.60546875,0.611328125,0.634765625,0.6630859375,0.693359375,0.712890625,0.708984375,0.6865234375,0.6572265625,0.634765625,0.6044921875,0.53515625,0.4443359375,0.369140625,0.337890625,0.353515625,0.39453125,0.427734375,0.416015625,0.36328125,0.306640625,0.279296875,0.3017578125,0.3642578125,0.4375,0.50390625,0.5380859375,0.5244140625,0.4736328125,0.421875,0.39453125,0.3720703125,0.3388671875,0.30859375,0.2978515625,0.3095703125,0.3369140625,0.3642578125,0.390625,0.4150390625,0.435546875,0.4521484375,0.466796875,0.4814453125,0.5,0.5126953125,0.4970703125,0.447265625,0.375,0.3076171875,0.267578125,0.2587890625,0.251953125,0.2265625,0.2041015625,0.208984375,0.2529296875,0.3212890625,0.39453125,0.45703125,0.484375,0.474609375,0.44921875,0.439453125,0.466796875,0.5302734375,0.6044921875,0.6826171875,0.7421875,0.767578125,0.76171875,0.7451171875,0.740234375,0.7314453125,0.6875,0.6123046875,0.533203125,0.4765625,0.45703125,0.46875,0.4853515625,0.484375,0.455078125,0.3994140625,0.3349609375,0.28515625,0.2587890625,0.2578125,0.3291015625,0.466796875,0.6904296875,0.654296875,0.58984375,0.5205078125,0.46875,0.4287109375,0.4169921875,0.455078125,0.5380859375,0.6357421875,0.708984375,0.740234375,0.7412109375,0.669921875,0.5322265625,0.3779296875,0.2646484375,0.228515625,0.2587890625,0.3017578125,0.33203125,0.3447265625,0.341796875,0.3369140625,0.341796875,0.3642578125,0.400390625,0.46484375,0.5302734375,0.5576171875,0.53125,0.466796875,0.39453125,0.3359375,0.3408203125,0.4248046875,0.5576171875,0.68359375,0.748046875,0.740234375,0.7041015625,0.63671875,0.5517578125,0.48046875,0.4443359375,0.4462890625,0.46875,0.5009765625,0.5537109375,0.619140625,0.6787109375,0.7197265625,0.7373046875,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.22265625,0.232421875,0.3115234375,0.447265625,0.5927734375,0.697265625,0.740234375,0.7607421875,0.7548828125,0.712890625,0.6455078125,0.5791015625,0.5380859375,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.4501953125,0.541015625,0.6455078125,0.7294921875,0.767578125,0.763671875,0.740234375,0.705078125,0.642578125,0.5625,0.494140625,0.45703125,0.453125,0.46875,0.4853515625,0.4912109375,0.48828125,0.4853515625,0.490234375,0.505859375,0.5302734375,0.5419921875,0.50390625,0.4248046875,0.34765625,0.310546875,0.3310546875,0.39453125,0.4658203125,0.52734375,0.5576171875,0.546875,0.509765625,0.4775390625,0.46875,0.4794921875,0.52734375,0.607421875,0.6904296875,0.74609375,0.759765625,0.740234375,0.71875,0.7119140625,0.70703125,0.6845703125,0.6376953125,0.5712890625,0.5,0.4306640625,0.3818359375,0.375,0.4140625,0.4736328125,0.51953125,0.5302734375,0.5380859375,0.5732421875,0.6240234375,0.6630859375,0.6708984375,0.6474609375,0.6044921875,0.55859375,0.51171875,0.46875,0.435546875,0.4111328125,0.388671875,0.3642578125,0.3310546875,0.2822265625,0.248046875,0.2568359375,0.3125,0.3935546875,0.46875,0.5419921875,0.60546875,0.6328125,0.6103515625,0.552734375,0.498046875,0.46875,0.451171875,0.44140625,0.4560546875,0.49609375,0.552734375,0.6025390625,0.634765625,0.65234375,0.6259765625,0.546875,0.435546875,0.33203125,0.271484375,0.2587890625,0.265625,0.2919921875,0.3251953125,0.3447265625,0.3359375,0.302734375,0.2587890625,0.2275390625,0.2548828125,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.6015625,0.546875,0.4853515625,0.44140625,0.4287109375,0.443359375,0.46875,0.48828125,0.4794921875,0.44140625,0.3916015625,0.353515625,0.3447265625,0.3642578125,0.4052734375,0.4951171875,0.607421875,0.6904296875,0.7109375,0.6728515625,0.6044921875,0.5263671875,0.4326171875,0.341796875,0.28125,0.2568359375,0.2568359375,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.64453125,0.650390625,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.2392578125,0.2470703125,0.275390625,0.3056640625,0.3173828125,0.2998046875,0.2587890625,0.2275390625,0.2490234375,0.3173828125,0.39453125,0.4384765625,0.4248046875,0.3642578125,0.29296875,0.244140625,0.26171875,0.361328125,0.51171875,0.6513671875,0.740234375,0.7939453125,0.771484375,0.6708984375,0.5380859375,0.4375,0.416015625,0.46875,0.5341796875,0.5625,0.5380859375,0.4716796875,0.3984375,0.3583984375,0.3642578125,0.375,0.3603515625,0.3330078125,0.3232421875,0.345703125,0.3994140625,0.46875,0.5390625,0.59765625,0.626953125,0.6240234375,0.6044921875,0.5927734375,0.6044921875,0.626953125,0.66015625,0.6904296875,0.701171875,0.689453125,0.662109375,0.634765625,0.60546875,0.564453125,0.513671875,0.4609375,0.4169921875,0.384765625,0.3642578125,0.345703125,0.3369140625,0.3505859375,0.3916015625,0.447265625,0.498046875,0.5302734375,0.54296875,0.5029296875,0.4140625,0.3115234375,0.240234375,0.224609375,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.5322265625,0.5390625,0.546875,0.546875,0.5361328125,0.5185546875,0.5,0.484375,0.4814453125,0.4912109375,0.501953125,0.5048828125,0.4931640625,0.46875,0.4541015625,0.48046875,0.53515625,0.5849609375,0.5986328125,0.564453125,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.7412109375,0.744140625,0.740234375,0.7236328125,0.6953125,0.6630859375,0.634765625,0.609375,0.5849609375,0.5625,0.541015625,0.51953125,0.4951171875,0.46875,0.453125,0.482421875,0.5576171875,0.6513671875,0.7265625,0.755859375,0.740234375,0.705078125,0.642578125,0.57421875,0.5302734375,0.5283203125,0.5595703125,0.6044921875,0.6484375,0.6826171875,0.701171875,0.70703125,0.7080078125,0.7177734375,0.740234375,0.759765625,0.74609375,0.6904296875,0.607421875,0.52734375,0.4794921875,0.46875,0.4794921875,0.525390625,0.5849609375,0.6240234375,0.6171875,0.568359375,0.5,0.435546875,0.412109375,0.4521484375,0.546875,0.6533203125,0.724609375,0.740234375,0.73046875,0.6875,0.6240234375,0.568359375,0.546875,0.5634765625,0.6044921875,0.646484375,0.66796875,0.662109375,0.6357421875,0.60546875,0.5927734375,0.6044921875,0.6142578125,0.5830078125,0.513671875,0.4306640625,0.3671875,0.3466796875,0.3642578125,0.380859375,0.361328125,0.3203125,0.2861328125,0.287109375,0.3271484375,0.39453125,0.4609375,0.4990234375,0.4912109375,0.4443359375,0.3876953125,0.3564453125,0.3642578125,0.376953125,0.3681640625,0.3447265625,0.3251953125,0.326171875,0.3525390625,0.39453125,0.443359375,0.5009765625,0.546875,0.5634765625,0.548828125,0.521484375,0.5,0.4755859375,0.4326171875,0.375,0.3193359375,0.2802734375,0.26171875,0.2587890625,0.2509765625,0.22265625,0.1923828125,0.189453125,0.2265625,0.2919921875,0.3642578125,0.4267578125,0.4501953125,0.4326171875,0.400390625,0.3837890625,0.4072265625,0.46875,0.544921875,0.630859375,0.7041015625,0.7451171875,0.7529296875,0.744140625,0.740234375,0.73828125,0.7236328125,0.6904296875,0.642578125,0.5927734375,0.552734375,0.5302734375,0.5029296875,0.4443359375,0.3662109375,0.294921875,0.251953125,0.244140625,0.2587890625,0.2919921875,0.3798828125,0.5107421875,0.66015625,0.630859375,0.5693359375,0.494140625,0.4287109375,0.3681640625,0.3232421875,0.328125,0.3974609375,0.5068359375,0.609375,0.673828125,0.7060546875,0.666015625,0.5517578125,0.412109375,0.30859375,0.28125,0.3251953125,0.384765625,0.4296875,0.4453125,0.4287109375,0.396484375,0.375,0.376953125,0.3994140625,0.45703125,0.5283203125,0.572265625,0.5673828125,0.517578125,0.4482421875,0.384765625,0.3662109375,0.41015625,0.5048828125,0.6064453125,0.66796875,0.673828125,0.65625,0.61328125,0.548828125,0.484375,0.439453125,0.4228515625,0.4287109375,0.4443359375,0.482421875,0.5380859375,0.5986328125,0.6455078125,0.6689453125,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.2724609375,0.263671875,0.322265625,0.435546875,0.5615234375,0.646484375,0.673828125,0.6806640625,0.67578125,0.6552734375,0.623046875,0.5927734375,0.57421875,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.5146484375,0.5927734375,0.662109375,0.7001953125,0.7021484375,0.6865234375,0.673828125,0.650390625,0.583984375,0.4892578125,0.4072265625,0.3701171875,0.3837890625,0.4287109375,0.48046875,0.5283203125,0.5615234375,0.5732421875,0.568359375,0.5634765625,0.5703125,0.5673828125,0.5185546875,0.439453125,0.3720703125,0.3505859375,0.3828125,0.4482421875,0.517578125,0.5673828125,0.576171875,0.541015625,0.4833984375,0.439453125,0.4287109375,0.4365234375,0.4716796875,0.5341796875,0.603515625,0.6552734375,0.677734375,0.673828125,0.6689453125,0.6826171875,0.6953125,0.68359375,0.6396484375,0.572265625,0.5,0.431640625,0.3876953125,0.3896484375,0.439453125,0.5078125,0.55859375,0.5703125,0.578125,0.611328125,0.6533203125,0.673828125,0.658203125,0.611328125,0.55078125,0.4892578125,0.4287109375,0.38671875,0.37109375,0.3759765625,0.3828125,0.376953125,0.3583984375,0.3154296875,0.271484375,0.259765625,0.2919921875,0.3564453125,0.4287109375,0.505859375,0.587890625,0.638671875,0.6298828125,0.5673828125,0.48828125,0.4287109375,0.3828125,0.3623046875,0.388671875,0.4560546875,0.5390625,0.599609375,0.6220703125,0.625,0.5966796875,0.5322265625,0.4501953125,0.3759765625,0.333984375,0.3251953125,0.333984375,0.3701171875,0.416015625,0.44140625,0.4296875,0.3857421875,0.3251953125,0.2744140625,0.271484375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.60546875,0.568359375,0.515625,0.46484375,0.431640625,0.421875,0.4287109375,0.4365234375,0.431640625,0.4140625,0.3916015625,0.375,0.3701171875,0.376953125,0.4013671875,0.4716796875,0.56640625,0.6376953125,0.6552734375,0.6181640625,0.55078125,0.4765625,0.396484375,0.3330078125,0.3037109375,0.306640625,0.3212890625,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.607421875,0.630859375,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.32421875,0.3525390625,0.3955078125,0.4267578125,0.4228515625,0.3837890625,0.3251953125,0.27734375,0.2802734375,0.333984375,0.404296875,0.4482421875,0.4375,0.376953125,0.3046875,0.24609375,0.24609375,0.32421875,0.45703125,0.5869140625,0.673828125,0.7275390625,0.708984375,0.6142578125,0.48828125,0.3935546875,0.375,0.4287109375,0.490234375,0.5068359375,0.470703125,0.4052734375,0.349609375,0.3388671875,0.376953125,0.41796875,0.419921875,0.3876953125,0.349609375,0.3359375,0.365234375,0.4287109375,0.494140625,0.5322265625,0.53515625,0.5146484375,0.498046875,0.5087890625,0.55078125,0.603515625,0.6552734375,0.6884765625,0.6904296875,0.666015625,0.6376953125,0.6220703125,0.61328125,0.60546875,0.5869140625,0.5478515625,0.4921875,0.4306640625,0.376953125,0.3310546875,0.310546875,0.3369140625,0.4052734375,0.4873046875,0.548828125,0.5703125,0.5654296875,0.5078125,0.41015625,0.314453125,0.263671875,0.2734375,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.5751953125,0.5966796875,0.619140625,0.6220703125,0.5966796875,0.55078125,0.5,0.4501953125,0.41015625,0.392578125,0.3994140625,0.419921875,0.43359375,0.4287109375,0.4306640625,0.4736328125,0.5400390625,0.59375,0.6044921875,0.56640625,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.673828125,0.673828125,0.669921875,0.66015625,0.646484375,0.6328125,0.6220703125,0.6083984375,0.583984375,0.546875,0.50390625,0.466796875,0.4423828125,0.4287109375,0.42578125,0.4541015625,0.5146484375,0.587890625,0.6484375,0.6767578125,0.673828125,0.65234375,0.59375,0.5185546875,0.46484375,0.45703125,0.4931640625,0.55078125,0.6123046875,0.666015625,0.697265625,0.6982421875,0.6826171875,0.6689453125,0.673828125,0.677734375,0.6552734375,0.603515625,0.5341796875,0.4716796875,0.4365234375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.609375,0.611328125,0.5673828125,0.5,0.43359375,0.40234375,0.427734375,0.50390625,0.5966796875,0.6591796875,0.673828125,0.662109375,0.611328125,0.5380859375,0.48046875,0.46484375,0.494140625,0.55078125,0.603515625,0.619140625,0.5927734375,0.544921875,0.5087890625,0.509765625,0.55078125,0.595703125,0.60546875,0.568359375,0.49609375,0.421875,0.3779296875,0.376953125,0.37890625,0.353515625,0.3173828125,0.3017578125,0.3232421875,0.3779296875,0.4482421875,0.5087890625,0.5234375,0.482421875,0.412109375,0.3525390625,0.33984375,0.376953125,0.419921875,0.4296875,0.4091796875,0.380859375,0.3701171875,0.3935546875,0.4482421875,0.515625,0.5966796875,0.6572265625,0.6669921875,0.623046875,0.556640625,0.5,0.4462890625,0.3876953125,0.3388671875,0.314453125,0.314453125,0.322265625,0.3251953125,0.31640625,0.28125,0.2392578125,0.22265625,0.248046875,0.306640625,0.376953125,0.4384765625,0.455078125,0.4267578125,0.3798828125,0.3505859375,0.3681640625,0.4287109375,0.5048828125,0.5869140625,0.654296875,0.6884765625,0.689453125,0.677734375,0.673828125,0.677734375,0.6953125,0.7099609375,0.7041015625,0.671875,0.6220703125,0.5703125,0.5078125,0.4111328125,0.3095703125,0.244140625,0.2373046875,0.2744140625,0.3251953125,0.384765625,0.470703125,0.5654296875,0.626953125,0.6220703125,0.5791015625,0.5107421875,0.439453125,0.365234375,0.291015625,0.2587890625,0.2958984375,0.3916015625,0.5,0.5791015625,0.6318359375,0.6220703125,0.546875,0.4462890625,0.373046875,0.365234375,0.419921875,0.48828125,0.5390625,0.5537109375,0.525390625,0.4755859375,0.4375,0.4296875,0.4423828125,0.4931640625,0.5595703125,0.60546875,0.6044921875,0.55859375,0.4892578125,0.421875,0.3818359375,0.3896484375,0.4443359375,0.517578125,0.568359375,0.5791015625,0.57421875,0.5546875,0.5224609375,0.4853515625,0.4560546875,0.44140625,0.439453125,0.4443359375,0.462890625,0.494140625,0.5302734375,0.560546875,0.576171875,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.35546875,0.322265625,0.34375,0.4150390625,0.5029296875,0.564453125,0.5791015625,0.580078125,0.5791015625,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.5595703125,0.623046875,0.6572265625,0.65234375,0.619140625,0.5888671875,0.5791015625,0.564453125,0.5068359375,0.4248046875,0.359375,0.341796875,0.3759765625,0.439453125,0.5087890625,0.572265625,0.6103515625,0.6123046875,0.5888671875,0.564453125,0.5595703125,0.5498046875,0.5,0.431640625,0.3818359375,0.37890625,0.421875,0.4892578125,0.55859375,0.6044921875,0.6064453125,0.5634765625,0.4990234375,0.451171875,0.439453125,0.443359375,0.4609375,0.4931640625,0.53125,0.5615234375,0.5771484375,0.5791015625,0.5859375,0.6162109375,0.65234375,0.662109375,0.6318359375,0.5712890625,0.5,0.4306640625,0.3857421875,0.3857421875,0.4326171875,0.4990234375,0.5478515625,0.5595703125,0.568359375,0.6025390625,0.6435546875,0.66015625,0.6357421875,0.5791015625,0.509765625,0.439453125,0.3798828125,0.3505859375,0.359375,0.3935546875,0.423828125,0.4296875,0.41796875,0.376953125,0.3251953125,0.2978515625,0.314453125,0.369140625,0.439453125,0.5185546875,0.611328125,0.67578125,0.673828125,0.607421875,0.5166015625,0.439453125,0.3759765625,0.3408203125,0.35546875,0.41796875,0.498046875,0.5546875,0.5693359375,0.5673828125,0.55078125,0.517578125,0.4775390625,0.4423828125,0.423828125,0.419921875,0.4296875,0.470703125,0.5224609375,0.5517578125,0.5390625,0.48828125,0.419921875,0.35546875,0.3232421875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.564453125,0.546875,0.515625,0.4814453125,0.4541015625,0.4404296875,0.439453125,0.4404296875,0.439453125,0.4365234375,0.4326171875,0.4296875,0.4287109375,0.4296875,0.443359375,0.49609375,0.5673828125,0.6181640625,0.62109375,0.5771484375,0.509765625,0.4375,0.3740234375,0.3408203125,0.34765625,0.380859375,0.412109375,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.576171875,0.6171875,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.427734375,0.4677734375,0.51953125,0.5498046875,0.5380859375,0.4873046875,0.419921875,0.3623046875,0.353515625,0.396484375,0.458984375,0.5,0.4892578125,0.4296875,0.353515625,0.27734375,0.244140625,0.283203125,0.3837890625,0.49609375,0.5791015625,0.6357421875,0.6298828125,0.55859375,0.4609375,0.3896484375,0.3828125,0.439453125,0.5,0.5107421875,0.4716796875,0.4091796875,0.3662109375,0.373046875,0.4296875,0.486328125,0.49609375,0.45703125,0.400390625,0.365234375,0.37890625,0.439453125,0.501953125,0.5224609375,0.5009765625,0.4599609375,0.4345703125,0.451171875,0.509765625,0.5771484375,0.6357421875,0.6630859375,0.650390625,0.6123046875,0.5791015625,0.5693359375,0.57421875,0.595703125,0.615234375,0.607421875,0.5654296875,0.4990234375,0.4296875,0.3662109375,0.3310546875,0.345703125,0.408203125,0.48828125,0.544921875,0.5595703125,0.5478515625,0.4912109375,0.408203125,0.3408203125,0.322265625,0.35546875,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5673828125,0.599609375,0.6376953125,0.650390625,0.625,0.5673828125,0.5,0.431640625,0.3759765625,0.3505859375,0.3642578125,0.40234375,0.43359375,0.439453125,0.44921875,0.4970703125,0.5634765625,0.6103515625,0.6123046875,0.5673828125,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.5791015625,0.5791015625,0.578125,0.576171875,0.5732421875,0.5712890625,0.5693359375,0.564453125,0.548828125,0.5205078125,0.48828125,0.4599609375,0.4443359375,0.439453125,0.44140625,0.4580078125,0.490234375,0.5283203125,0.560546875,0.5771484375,0.5791015625,0.56640625,0.515625,0.4482421875,0.400390625,0.3994140625,0.4423828125,0.509765625,0.5791015625,0.6376953125,0.6650390625,0.6533203125,0.6171875,0.5859375,0.5791015625,0.5771484375,0.5615234375,0.53125,0.4931640625,0.4609375,0.443359375,0.439453125,0.451171875,0.5,0.56640625,0.61328125,0.61328125,0.568359375,0.5,0.431640625,0.388671875,0.3935546875,0.4443359375,0.515625,0.5673828125,0.5791015625,0.568359375,0.5185546875,0.451171875,0.4033203125,0.400390625,0.443359375,0.509765625,0.568359375,0.5791015625,0.5419921875,0.4833984375,0.443359375,0.453125,0.509765625,0.57421875,0.61328125,0.6064453125,0.5556640625,0.4873046875,0.439453125,0.4296875,0.4228515625,0.3896484375,0.349609375,0.3349609375,0.3603515625,0.4189453125,0.4892578125,0.548828125,0.5537109375,0.5029296875,0.427734375,0.3740234375,0.375,0.4296875,0.48828125,0.5048828125,0.478515625,0.435546875,0.4111328125,0.4296875,0.4892578125,0.5673828125,0.6591796875,0.7255859375,0.7275390625,0.6650390625,0.5751953125,0.5,0.4306640625,0.37109375,0.3408203125,0.3486328125,0.3818359375,0.412109375,0.419921875,0.41015625,0.369140625,0.318359375,0.291015625,0.3056640625,0.359375,0.4296875,0.490234375,0.501953125,0.4638671875,0.4052734375,0.3681640625,0.3798828125,0.439453125,0.5126953125,0.58203125,0.626953125,0.6328125,0.6103515625,0.5859375,0.5791015625,0.587890625,0.6259765625,0.671875,0.6953125,0.6787109375,0.6259765625,0.5595703125,0.48046875,0.373046875,0.2783203125,0.2421875,0.2744140625,0.3466796875,0.419921875,0.490234375,0.560546875,0.6103515625,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.5888671875,0.650390625,0.6640625,0.6259765625,0.5595703125,0.4765625,0.3662109375,0.271484375,0.2373046875,0.2744140625,0.3525390625,0.4296875,0.4931640625,0.5224609375,0.5166015625,0.494140625,0.484375,0.509765625,0.5693359375,0.6357421875,0.6875,0.7021484375,0.67578125,0.626953125,0.5888671875,0.5791015625,0.5869140625,0.6201171875,0.65625,0.6669921875,0.638671875,0.5791015625,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5556640625,0.5390625,0.5078125,0.470703125,0.4404296875,0.4228515625,0.419921875,0.4326171875,0.4921875,0.5791015625,0.6494140625,0.6728515625,0.6416015625,0.5791015625,0.5087890625,0.439453125,0.392578125,0.3818359375,0.3994140625,0.421875,0.4296875,0.431640625,0.43359375,0.4365234375,0.4384765625,0.439453125,0.439453125,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.576171875,0.5576171875,0.5234375,0.4814453125,0.4453125,0.4248046875,0.419921875,0.41015625,0.376953125,0.3408203125,0.33203125,0.3642578125,0.427734375,0.5,0.5673828125,0.611328125,0.6083984375,0.5576171875,0.4853515625,0.43359375,0.419921875,0.412109375,0.390625,0.375,0.388671875,0.4384765625,0.5087890625,0.5791015625,0.642578125,0.67578125,0.65625,0.587890625,0.50390625,0.4443359375,0.4296875,0.419921875,0.38671875,0.3486328125,0.3359375,0.36328125,0.421875,0.4892578125,0.5576171875,0.615234375,0.6416015625,0.630859375,0.595703125,0.5654296875,0.5595703125,0.5576171875,0.5439453125,0.515625,0.4833984375,0.455078125,0.44140625,0.439453125,0.453125,0.5029296875,0.5712890625,0.6181640625,0.6201171875,0.576171875,0.509765625,0.439453125,0.3779296875,0.3466796875,0.353515625,0.384765625,0.4140625,0.419921875,0.4296875,0.4765625,0.54296875,0.5908203125,0.5947265625,0.5546875,0.4892578125,0.4248046875,0.3837890625,0.3876953125,0.4365234375,0.505859375,0.556640625,0.5693359375,0.5615234375,0.521484375,0.46875,0.4365234375,0.4453125,0.4931640625,0.5595703125,0.6357421875,0.724609375,0.7890625,0.7890625,0.724609375,0.6357421875,0.5595703125,0.4892578125,0.421875,0.3759765625,0.3681640625,0.3876953125,0.412109375,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.5693359375,0.6123046875,0.66796875,0.701171875,0.6904296875,0.638671875,0.5693359375,0.49609375,0.423828125,0.3759765625,0.3662109375,0.38671875,0.412109375,0.419921875,0.4248046875,0.4443359375,0.4765625,0.513671875,0.54296875,0.5576171875,0.5595703125,0.55859375,0.5595703125,0.5625,0.56640625,0.5693359375,0.5703125,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.4423828125,0.3984375,0.3984375,0.44140625,0.5048828125,0.5498046875,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5595703125,0.6201171875,0.650390625,0.6396484375,0.6025390625,0.5693359375,0.5595703125,0.568359375,0.609375,0.666015625,0.7021484375,0.6943359375,0.646484375,0.5791015625,0.5205078125,0.5078125,0.5419921875,0.5966796875,0.630859375,0.6181640625,0.5595703125,0.478515625,0.3720703125,0.2802734375,0.2490234375,0.287109375,0.3642578125,0.439453125,0.5009765625,0.52734375,0.515625,0.4892578125,0.4755859375,0.5,0.5595703125,0.6162109375,0.6240234375,0.5830078125,0.5244140625,0.486328125,0.4990234375,0.5595703125,0.6201171875,0.6337890625,0.599609375,0.544921875,0.5087890625,0.5205078125,0.5791015625,0.6357421875,0.6337890625,0.5732421875,0.490234375,0.4306640625,0.431640625,0.4892578125,0.5576171875,0.6005859375,0.5966796875,0.5478515625,0.478515625,0.4296875,0.419921875,0.435546875,0.4970703125,0.5869140625,0.658203125,0.6796875,0.6455078125,0.5791015625,0.505859375,0.4326171875,0.3828125,0.3701171875,0.388671875,0.412109375,0.419921875,0.4150390625,0.3955078125,0.37890625,0.390625,0.4384765625,0.5078125,0.5791015625,0.6435546875,0.6767578125,0.658203125,0.5908203125,0.5078125,0.451171875,0.439453125,0.453125,0.5029296875,0.5712890625,0.6181640625,0.6201171875,0.576171875,0.509765625,0.443359375,0.400390625,0.4033203125,0.451171875,0.5185546875,0.568359375,0.5791015625,0.5869140625,0.619140625,0.6552734375,0.6640625,0.6328125,0.5712890625,0.5,0.4287109375,0.3701171875,0.3447265625,0.359375,0.3994140625,0.4326171875,0.439453125,0.4375,0.43359375,0.4296875,0.4248046875,0.421875,0.419921875,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.5673828125,0.55078125,0.5185546875,0.48046875,0.4482421875,0.431640625,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.5751953125,0.6162109375,0.6083984375,0.5556640625,0.4833984375,0.431640625,0.419921875,0.4228515625,0.4404296875,0.47265625,0.5107421875,0.544921875,0.564453125,0.5693359375,0.5791015625,0.6123046875,0.650390625,0.6630859375,0.6357421875,0.5771484375,0.509765625,0.4404296875,0.37890625,0.3447265625,0.349609375,0.380859375,0.4111328125,0.419921875,0.4140625,0.384765625,0.3515625,0.34375,0.373046875,0.431640625,0.5,0.556640625,0.5673828125,0.529296875,0.4736328125,0.4375,0.4501953125,0.509765625,0.5791015625,0.638671875,0.666015625,0.6533203125,0.6142578125,0.5791015625,0.5693359375,0.556640625,0.5068359375,0.44140625,0.396484375,0.3974609375,0.4423828125,0.509765625,0.568359375,0.583984375,0.5546875,0.5078125,0.48046875,0.498046875,0.5595703125,0.6181640625,0.623046875,0.5712890625,0.4970703125,0.4462890625,0.451171875,0.509765625,0.5888671875,0.681640625,0.74609375,0.744140625,0.6748046875,0.5791015625,0.5,0.431640625,0.38671875,0.388671875,0.435546875,0.501953125,0.5498046875,0.5595703125,0.548828125,0.5087890625,0.4599609375,0.43359375,0.4501953125,0.501953125,0.5693359375,0.6259765625,0.63671875,0.599609375,0.5439453125,0.5078125,0.5205078125,0.5791015625,0.6435546875,0.6767578125,0.658203125,0.5908203125,0.5078125,0.451171875,0.439453125,0.451171875,0.494140625,0.5478515625,0.5771484375,0.5634765625,0.509765625,0.439453125,0.36328125,0.2880859375,0.255859375,0.2939453125,0.390625,0.4990234375,0.5791015625,0.6416015625,0.671875,0.6474609375,0.5859375,0.6533203125,0.671875,0.63671875,0.5703125,0.4853515625,0.3681640625,0.2587890625,0.2080078125,0.2314453125,0.3017578125,0.376953125,0.4453125,0.498046875,0.5283203125,0.541015625,0.55078125,0.576171875,0.6220703125,0.6728515625,0.7158203125,0.7373046875,0.7294921875,0.7021484375,0.6796875,0.673828125,0.6787109375,0.7001953125,0.71875,0.7119140625,0.673828125,0.61328125,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.564453125,0.5341796875,0.48046875,0.416015625,0.361328125,0.3310546875,0.3251953125,0.3408203125,0.4130859375,0.5283203125,0.6416015625,0.7099609375,0.71484375,0.673828125,0.615234375,0.5361328125,0.453125,0.3916015625,0.3662109375,0.3671875,0.376953125,0.388671875,0.40234375,0.416015625,0.4248046875,0.4287109375,0.4296875,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.6669921875,0.630859375,0.560546875,0.4736328125,0.3935546875,0.34375,0.3251953125,0.3095703125,0.28125,0.2646484375,0.28515625,0.3447265625,0.423828125,0.5,0.56640625,0.6044921875,0.5859375,0.5146484375,0.419921875,0.349609375,0.3251953125,0.31640625,0.3212890625,0.359375,0.43359375,0.5283203125,0.6142578125,0.673828125,0.7177734375,0.724609375,0.67578125,0.580078125,0.474609375,0.4013671875,0.376953125,0.361328125,0.3330078125,0.30859375,0.310546875,0.34375,0.3955078125,0.4482421875,0.4990234375,0.544921875,0.57421875,0.580078125,0.5712890625,0.564453125,0.5703125,0.5751953125,0.5595703125,0.5224609375,0.4765625,0.439453125,0.423828125,0.4287109375,0.4501953125,0.5087890625,0.5830078125,0.6376953125,0.6455078125,0.609375,0.55078125,0.4873046875,0.421875,0.3671875,0.337890625,0.33203125,0.33203125,0.3251953125,0.3251953125,0.3623046875,0.42578125,0.484375,0.509765625,0.4931640625,0.4482421875,0.400390625,0.37890625,0.400390625,0.4638671875,0.5419921875,0.6005859375,0.6220703125,0.623046875,0.5947265625,0.5478515625,0.5078125,0.498046875,0.5234375,0.5703125,0.626953125,0.693359375,0.7412109375,0.7412109375,0.693359375,0.626953125,0.5703125,0.513671875,0.4404296875,0.369140625,0.3212890625,0.306640625,0.314453125,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.5810546875,0.62890625,0.6943359375,0.73828125,0.736328125,0.6904296875,0.6220703125,0.5439453125,0.44921875,0.3623046875,0.3095703125,0.298828125,0.3125,0.3251953125,0.3427734375,0.3857421875,0.4501953125,0.5146484375,0.5595703125,0.576171875,0.5703125,0.5625,0.5673828125,0.5849609375,0.607421875,0.6240234375,0.62890625,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.4931640625,0.45703125,0.45703125,0.4931640625,0.541015625,0.5712890625,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.51171875,0.5771484375,0.6240234375,0.634765625,0.6142578125,0.5859375,0.5703125,0.5712890625,0.611328125,0.6787109375,0.736328125,0.755859375,0.7294921875,0.673828125,0.6201171875,0.59765625,0.609375,0.6337890625,0.6455078125,0.6240234375,0.5703125,0.4990234375,0.4013671875,0.3125,0.275390625,0.30078125,0.3642578125,0.4287109375,0.4853515625,0.517578125,0.5224609375,0.51171875,0.5068359375,0.525390625,0.5703125,0.609375,0.60546875,0.5615234375,0.5087890625,0.484375,0.5078125,0.5703125,0.6337890625,0.6630859375,0.6533203125,0.625,0.60546875,0.62109375,0.673828125,0.7177734375,0.693359375,0.6015625,0.4853515625,0.40234375,0.3916015625,0.4482421875,0.513671875,0.544921875,0.5234375,0.4560546875,0.376953125,0.328125,0.3251953125,0.353515625,0.4453125,0.578125,0.6962890625,0.7529296875,0.736328125,0.673828125,0.59375,0.4931640625,0.39453125,0.3291015625,0.306640625,0.3134765625,0.3251953125,0.3349609375,0.349609375,0.3828125,0.4443359375,0.5263671875,0.607421875,0.673828125,0.7255859375,0.7353515625,0.6845703125,0.5888671875,0.4912109375,0.43359375,0.4287109375,0.4501953125,0.5087890625,0.5830078125,0.6376953125,0.6455078125,0.609375,0.55078125,0.494140625,0.46484375,0.48046875,0.5380859375,0.611328125,0.662109375,0.673828125,0.6796875,0.7001953125,0.71484375,0.69921875,0.646484375,0.5732421875,0.5,0.4296875,0.375,0.353515625,0.369140625,0.4052734375,0.4306640625,0.4287109375,0.4169921875,0.396484375,0.37109375,0.3486328125,0.3330078125,0.326171875,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.625,0.5966796875,0.5361328125,0.462890625,0.40234375,0.3740234375,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.60546875,0.623046875,0.583984375,0.498046875,0.40234375,0.33984375,0.3251953125,0.3310546875,0.361328125,0.4189453125,0.4931640625,0.5615234375,0.6044921875,0.6220703125,0.6376953125,0.666015625,0.6904296875,0.6884765625,0.6552734375,0.603515625,0.55078125,0.4951171875,0.423828125,0.3564453125,0.314453125,0.3037109375,0.3134765625,0.3251953125,0.3330078125,0.33203125,0.3349609375,0.3544921875,0.39453125,0.447265625,0.5,0.5419921875,0.5498046875,0.5244140625,0.4912109375,0.4755859375,0.4970703125,0.55078125,0.6142578125,0.673828125,0.7080078125,0.705078125,0.673828125,0.638671875,0.6220703125,0.6015625,0.5498046875,0.486328125,0.4462890625,0.44921875,0.4921875,0.55078125,0.6015625,0.6064453125,0.5693359375,0.517578125,0.4892578125,0.5087890625,0.5703125,0.62890625,0.6376953125,0.59375,0.52734375,0.4833984375,0.4921875,0.55078125,0.6298828125,0.7177734375,0.7724609375,0.7587890625,0.6806640625,0.580078125,0.5,0.4326171875,0.39453125,0.4052734375,0.458984375,0.525390625,0.568359375,0.5703125,0.5537109375,0.5234375,0.4951171875,0.4912109375,0.51953125,0.5693359375,0.6220703125,0.6640625,0.671875,0.6474609375,0.61328125,0.59765625,0.619140625,0.673828125,0.7255859375,0.7353515625,0.6845703125,0.5888671875,0.4912109375,0.43359375,0.4287109375,0.44921875,0.498046875,0.5537109375,0.580078125,0.55859375,0.5,0.4287109375,0.357421875,0.3056640625,0.30859375,0.3818359375,0.4990234375,0.6083984375,0.673828125,0.7138671875,0.7021484375,0.626953125,0.5966796875,0.642578125,0.6435546875,0.5986328125,0.5302734375,0.4462890625,0.33203125,0.228515625,0.1845703125,0.2138671875,0.2880859375,0.3642578125,0.4375,0.51171875,0.5712890625,0.6044921875,0.615234375,0.6201171875,0.634765625,0.65625,0.6826171875,0.708984375,0.7294921875,0.73828125,0.740234375,0.740234375,0.7431640625,0.7529296875,0.7568359375,0.740234375,0.701171875,0.65234375,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.5234375,0.490234375,0.4306640625,0.3583984375,0.2978515625,0.265625,0.2587890625,0.2724609375,0.341796875,0.4638671875,0.5986328125,0.703125,0.7470703125,0.740234375,0.708984375,0.634765625,0.52734375,0.4248046875,0.359375,0.3447265625,0.3642578125,0.392578125,0.423828125,0.4521484375,0.46875,0.47265625,0.470703125,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.732421875,0.689453125,0.6015625,0.4853515625,0.373046875,0.2958984375,0.2587890625,0.228515625,0.197265625,0.1923828125,0.2373046875,0.3232421875,0.4208984375,0.5,0.5673828125,0.60546875,0.5849609375,0.501953125,0.390625,0.2998046875,0.2587890625,0.2421875,0.26953125,0.3583984375,0.48828125,0.619140625,0.70703125,0.740234375,0.75390625,0.7373046875,0.67578125,0.580078125,0.4775390625,0.4013671875,0.3642578125,0.3369140625,0.3095703125,0.2978515625,0.30859375,0.3388671875,0.3720703125,0.39453125,0.412109375,0.427734375,0.44140625,0.4580078125,0.478515625,0.50390625,0.5302734375,0.55078125,0.546875,0.5185546875,0.48046875,0.4521484375,0.4482421875,0.46875,0.50390625,0.56640625,0.6357421875,0.6787109375,0.681640625,0.6494140625,0.6044921875,0.5556640625,0.49609375,0.4306640625,0.369140625,0.3212890625,0.2861328125,0.2587890625,0.2392578125,0.2470703125,0.287109375,0.341796875,0.3876953125,0.40625,0.39453125,0.3779296875,0.3779296875,0.408203125,0.46875,0.5419921875,0.6005859375,0.634765625,0.6552734375,0.6513671875,0.6181640625,0.5712890625,0.5322265625,0.517578125,0.5302734375,0.55078125,0.576171875,0.59375,0.59375,0.576171875,0.55078125,0.5302734375,0.5009765625,0.439453125,0.35546875,0.28125,0.2392578125,0.2373046875,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.5419921875,0.5966796875,0.673828125,0.7314453125,0.7421875,0.7021484375,0.634765625,0.552734375,0.439453125,0.322265625,0.2421875,0.216796875,0.232421875,0.2587890625,0.294921875,0.3623046875,0.447265625,0.5185546875,0.5546875,0.552734375,0.5302734375,0.5107421875,0.51953125,0.5576171875,0.607421875,0.6455078125,0.654296875,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.5625,0.53515625,0.5302734375,0.541015625,0.552734375,0.55078125,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.4453125,0.509765625,0.568359375,0.5966796875,0.587890625,0.55859375,0.5302734375,0.515625,0.5478515625,0.6240234375,0.7099609375,0.767578125,0.775390625,0.740234375,0.697265625,0.6650390625,0.6435546875,0.6259765625,0.6044921875,0.572265625,0.5302734375,0.478515625,0.4111328125,0.35546875,0.33984375,0.3681640625,0.419921875,0.46875,0.51171875,0.5419921875,0.5498046875,0.5380859375,0.521484375,0.5166015625,0.5302734375,0.5380859375,0.5107421875,0.4609375,0.421875,0.4208984375,0.462890625,0.5302734375,0.5986328125,0.6494140625,0.67578125,0.6826171875,0.6845703125,0.701171875,0.740234375,0.7666015625,0.7158203125,0.59375,0.4521484375,0.3544921875,0.3388671875,0.39453125,0.45703125,0.4775390625,0.44140625,0.3642578125,0.28515625,0.24609375,0.2587890625,0.3056640625,0.4248046875,0.5908203125,0.7373046875,0.8115234375,0.802734375,0.740234375,0.6552734375,0.529296875,0.388671875,0.28125,0.232421875,0.234375,0.2587890625,0.2890625,0.3408203125,0.4189453125,0.5166015625,0.6123046875,0.6884765625,0.740234375,0.7744140625,0.7587890625,0.6875,0.5849609375,0.49609375,0.4560546875,0.46875,0.50390625,0.56640625,0.6357421875,0.6787109375,0.681640625,0.6494140625,0.6044921875,0.5634765625,0.546875,0.568359375,0.6240234375,0.6875,0.73046875,0.740234375,0.744140625,0.7568359375,0.7568359375,0.7236328125,0.65625,0.5751953125,0.5,0.4326171875,0.3916015625,0.3916015625,0.4248046875,0.466796875,0.4853515625,0.46875,0.4384765625,0.3935546875,0.341796875,0.2978515625,0.2705078125,0.259765625,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.650390625,0.6220703125,0.546875,0.4521484375,0.376953125,0.3486328125,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.640625,0.6318359375,0.5634765625,0.4521484375,0.341796875,0.2734375,0.2587890625,0.263671875,0.2939453125,0.3583984375,0.447265625,0.53515625,0.6005859375,0.634765625,0.662109375,0.689453125,0.701171875,0.6904296875,0.66015625,0.626953125,0.6044921875,0.57421875,0.5029296875,0.4033203125,0.30859375,0.25,0.23828125,0.2587890625,0.287109375,0.3251953125,0.369140625,0.4140625,0.451171875,0.4794921875,0.5,0.513671875,0.5146484375,0.5078125,0.5078125,0.525390625,0.560546875,0.6044921875,0.6533203125,0.705078125,0.740234375,0.740234375,0.7080078125,0.666015625,0.634765625,0.6025390625,0.552734375,0.5078125,0.4912109375,0.5126953125,0.5576171875,0.6044921875,0.63671875,0.619140625,0.5576171875,0.48828125,0.451171875,0.4677734375,0.5302734375,0.591796875,0.611328125,0.587890625,0.546875,0.5234375,0.54296875,0.6044921875,0.681640625,0.763671875,0.806640625,0.7783203125,0.6884765625,0.58203125,0.5,0.4345703125,0.400390625,0.4140625,0.4638671875,0.5185546875,0.544921875,0.5302734375,0.50390625,0.486328125,0.4912109375,0.521484375,0.568359375,0.6103515625,0.634765625,0.6494140625,0.6494140625,0.642578125,0.6435546875,0.6611328125,0.6962890625,0.740234375,0.7744140625,0.7587890625,0.6875,0.5849609375,0.49609375,0.4560546875,0.46875,0.5048828125,0.5654296875,0.6240234375,0.6435546875,0.6103515625,0.54296875,0.46875,0.4033203125,0.3720703125,0.4052734375,0.4990234375,0.6171875,0.705078125,0.740234375,0.7431640625,0.68359375,0.560546875,0.6123046875,0.626953125,0.6005859375,0.5400390625,0.46875,0.3876953125,0.2841796875,0.201171875,0.181640625,0.2314453125,0.31640625,0.39453125,0.4716796875,0.560546875,0.634765625,0.66796875,0.658203125,0.6279296875,0.6044921875,0.5888671875,0.591796875,0.619140625,0.662109375,0.70703125,0.734375,0.740234375,0.7412109375,0.744140625,0.740234375,0.7236328125,0.6953125,0.6630859375,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4638671875,0.4384765625,0.3916015625,0.3359375,0.2890625,0.263671875,0.2587890625,0.267578125,0.314453125,0.408203125,0.52734375,0.6376953125,0.7099609375,0.740234375,0.744140625,0.689453125,0.58203125,0.4638671875,0.380859375,0.361328125,0.39453125,0.44140625,0.4912109375,0.5302734375,0.546875,0.54296875,0.533203125,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.7353515625,0.703125,0.6298828125,0.521484375,0.40625,0.314453125,0.2587890625,0.2109375,0.1650390625,0.15625,0.208984375,0.3095703125,0.41796875,0.5,0.5703125,0.619140625,0.61328125,0.5380859375,0.4228515625,0.318359375,0.2587890625,0.228515625,0.2646484375,0.3779296875,0.5322265625,0.669921875,0.7412109375,0.740234375,0.7197265625,0.6904296875,0.6435546875,0.5791015625,0.5078125,0.4443359375,0.39453125,0.3525390625,0.326171875,0.3251953125,0.3447265625,0.3681640625,0.376953125,0.3642578125,0.341796875,0.314453125,0.30078125,0.3173828125,0.36328125,0.419921875,0.46875,0.5087890625,0.5224609375,0.5107421875,0.48828125,0.4765625,0.490234375,0.5302734375,0.580078125,0.6416015625,0.6923828125,0.712890625,0.697265625,0.6640625,0.634765625,0.6064453125,0.568359375,0.513671875,0.4443359375,0.3720703125,0.30859375,0.2587890625,0.21484375,0.18359375,0.1845703125,0.2236328125,0.2841796875,0.3369140625,0.3642578125,0.3818359375,0.3984375,0.421875,0.4580078125,0.505859375,0.5576171875,0.6044921875,0.6484375,0.67578125,0.66796875,0.62109375,0.5537109375,0.4970703125,0.46875,0.4482421875,0.4228515625,0.4052734375,0.4052734375,0.4228515625,0.4482421875,0.46875,0.4765625,0.4384765625,0.361328125,0.2783203125,0.2255859375,0.22265625,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.482421875,0.5400390625,0.6240234375,0.6904296875,0.70703125,0.6708984375,0.6044921875,0.5205078125,0.3994140625,0.275390625,0.1953125,0.1796875,0.212890625,0.2587890625,0.314453125,0.3994140625,0.48828125,0.5439453125,0.548828125,0.5146484375,0.46875,0.4345703125,0.4443359375,0.5,0.57421875,0.6298828125,0.6396484375,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.611328125,0.5986328125,0.5908203125,0.5771484375,0.5517578125,0.513671875,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.3984375,0.45703125,0.5185546875,0.5546875,0.5498046875,0.5146484375,0.46875,0.4345703125,0.4501953125,0.521484375,0.6240234375,0.712890625,0.7529296875,0.740234375,0.7119140625,0.6748046875,0.62890625,0.580078125,0.5341796875,0.4970703125,0.46875,0.44140625,0.4140625,0.4033203125,0.4189453125,0.45703125,0.4990234375,0.5302734375,0.556640625,0.580078125,0.5849609375,0.56640625,0.529296875,0.4931640625,0.46875,0.4404296875,0.384765625,0.328125,0.3056640625,0.3330078125,0.396484375,0.46875,0.5419921875,0.611328125,0.666015625,0.6953125,0.7080078125,0.7177734375,0.740234375,0.7470703125,0.6787109375,0.546875,0.4052734375,0.3154296875,0.306640625,0.3642578125,0.4248046875,0.4384765625,0.39453125,0.3173828125,0.2490234375,0.2275390625,0.2587890625,0.32421875,0.45703125,0.626953125,0.7646484375,0.8251953125,0.8046875,0.740234375,0.65234375,0.515625,0.361328125,0.2451171875,0.19921875,0.2158203125,0.2587890625,0.310546875,0.38671875,0.482421875,0.580078125,0.658203125,0.7099609375,0.740234375,0.7548828125,0.7216796875,0.646484375,0.560546875,0.501953125,0.494140625,0.5302734375,0.580078125,0.6416015625,0.6923828125,0.712890625,0.697265625,0.6640625,0.634765625,0.611328125,0.60546875,0.6240234375,0.6630859375,0.7060546875,0.734375,0.740234375,0.744140625,0.7568359375,0.7568359375,0.7236328125,0.65625,0.5751953125,0.5,0.4365234375,0.4140625,0.44140625,0.4990234375,0.55078125,0.5634765625,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.6376953125,0.619140625,0.546875,0.4521484375,0.3798828125,0.361328125,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.65234375,0.6259765625,0.546875,0.435546875,0.33203125,0.271484375,0.2587890625,0.2607421875,0.2763671875,0.3193359375,0.3916015625,0.4775390625,0.552734375,0.6044921875,0.646484375,0.6728515625,0.673828125,0.654296875,0.630859375,0.6220703125,0.634765625,0.638671875,0.580078125,0.4658203125,0.33984375,0.25,0.2265625,0.2587890625,0.3115234375,0.384765625,0.4609375,0.513671875,0.529296875,0.5185546875,0.5,0.48046875,0.4677734375,0.474609375,0.5078125,0.556640625,0.603515625,0.634765625,0.666015625,0.7080078125,0.740234375,0.740234375,0.705078125,0.6533203125,0.6044921875,0.5576171875,0.5126953125,0.4912109375,0.5078125,0.552734375,0.6025390625,0.634765625,0.646484375,0.6044921875,0.5185546875,0.43359375,0.3896484375,0.4072265625,0.46875,0.533203125,0.5634765625,0.560546875,0.5439453125,0.5400390625,0.5712890625,0.634765625,0.7119140625,0.7890625,0.826171875,0.7900390625,0.693359375,0.58203125,0.5,0.435546875,0.4052734375,0.4189453125,0.4609375,0.4990234375,0.50390625,0.46875,0.4306640625,0.4248046875,0.4609375,0.5244140625,0.5849609375,0.61328125,0.6044921875,0.5859375,0.5732421875,0.580078125,0.6123046875,0.662109375,0.708984375,0.740234375,0.7548828125,0.7216796875,0.646484375,0.560546875,0.501953125,0.494140625,0.5302734375,0.583984375,0.6591796875,0.720703125,0.7314453125,0.6845703125,0.60546875,0.5302734375,0.4677734375,0.4521484375,0.5,0.59375,0.6904296875,0.7431640625,0.740234375,0.7041015625,0.60546875,0.4609375,0.623046875,0.6162109375,0.5712890625,0.501953125,0.4287109375,0.349609375,0.2578125,0.1953125,0.2001953125,0.271484375,0.3671875,0.4482421875,0.52734375,0.6220703125,0.6962890625,0.71484375,0.6748046875,0.6083984375,0.55078125,0.5048828125,0.482421875,0.5,0.5537109375,0.619140625,0.6630859375,0.673828125,0.673828125,0.673828125,0.669921875,0.66015625,0.646484375,0.6328125,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4267578125,0.4140625,0.390625,0.36328125,0.3408203125,0.328125,0.3251953125,0.326171875,0.3388671875,0.37890625,0.44921875,0.5361328125,0.615234375,0.673828125,0.708984375,0.68359375,0.5966796875,0.4892578125,0.4130859375,0.400390625,0.4482421875,0.5107421875,0.5703125,0.6083984375,0.615234375,0.5966796875,0.576171875,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.673828125,0.6669921875,0.6357421875,0.5693359375,0.48046875,0.3935546875,0.3251953125,0.259765625,0.1943359375,0.1689453125,0.2099609375,0.3076171875,0.4169921875,0.5,0.57421875,0.640625,0.6611328125,0.6103515625,0.5068359375,0.3994140625,0.3251953125,0.28125,0.30859375,0.412109375,0.5517578125,0.666015625,0.7060546875,0.673828125,0.626953125,0.59765625,0.583984375,0.572265625,0.5478515625,0.505859375,0.4482421875,0.3935546875,0.3701171875,0.380859375,0.4091796875,0.4296875,0.419921875,0.376953125,0.3203125,0.25390625,0.2099609375,0.2197265625,0.2802734375,0.361328125,0.4287109375,0.4833984375,0.509765625,0.5068359375,0.4921875,0.4892578125,0.515625,0.5703125,0.6328125,0.689453125,0.7197265625,0.7119140625,0.67578125,0.638671875,0.6220703125,0.61328125,0.60546875,0.5830078125,0.53515625,0.4658203125,0.390625,0.3251953125,0.259765625,0.1923828125,0.154296875,0.171875,0.2392578125,0.318359375,0.376953125,0.4228515625,0.4453125,0.447265625,0.4462890625,0.4580078125,0.494140625,0.55078125,0.615234375,0.6748046875,0.697265625,0.66015625,0.578125,0.490234375,0.4287109375,0.3720703125,0.3056640625,0.2578125,0.2578125,0.3056640625,0.3720703125,0.4287109375,0.4677734375,0.45703125,0.3974609375,0.322265625,0.2724609375,0.275390625,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.44140625,0.498046875,0.5791015625,0.6416015625,0.6552734375,0.6181640625,0.55078125,0.4677734375,0.3525390625,0.2431640625,0.1875,0.2021484375,0.26171875,0.3251953125,0.396484375,0.4892578125,0.5693359375,0.5966796875,0.5625,0.4951171875,0.4287109375,0.380859375,0.38671875,0.4482421875,0.5322265625,0.59375,0.599609375,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.615234375,0.6201171875,0.62109375,0.6005859375,0.5537109375,0.4921875,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.3974609375,0.4462890625,0.505859375,0.541015625,0.533203125,0.4892578125,0.4287109375,0.3759765625,0.3671875,0.41796875,0.5126953125,0.611328125,0.6689453125,0.673828125,0.6591796875,0.6279296875,0.5791015625,0.5234375,0.474609375,0.443359375,0.4287109375,0.4208984375,0.423828125,0.4462890625,0.4833984375,0.5244140625,0.5556640625,0.5703125,0.583984375,0.6044921875,0.6123046875,0.5927734375,0.5439453125,0.4833984375,0.4287109375,0.369140625,0.2900390625,0.2275390625,0.21875,0.2705078125,0.3525390625,0.4287109375,0.5029296875,0.5791015625,0.638671875,0.6689453125,0.671875,0.66796875,0.673828125,0.6669921875,0.5966796875,0.478515625,0.3662109375,0.3056640625,0.3154296875,0.376953125,0.4375,0.4482421875,0.404296875,0.333984375,0.2802734375,0.27734375,0.3251953125,0.4033203125,0.5322265625,0.6748046875,0.7705078125,0.7890625,0.7431640625,0.673828125,0.5869140625,0.45703125,0.3203125,0.232421875,0.2197265625,0.263671875,0.3251953125,0.3916015625,0.47265625,0.5546875,0.6162109375,0.6494140625,0.6640625,0.673828125,0.6728515625,0.6318359375,0.5654296875,0.5078125,0.48828125,0.5146484375,0.5703125,0.6328125,0.689453125,0.7197265625,0.7119140625,0.67578125,0.638671875,0.6220703125,0.61328125,0.611328125,0.62109375,0.638671875,0.658203125,0.6708984375,0.673828125,0.6796875,0.7001953125,0.71484375,0.69921875,0.646484375,0.5732421875,0.5,0.439453125,0.431640625,0.4794921875,0.5546875,0.6123046875,0.6181640625,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.599609375,0.5966796875,0.5390625,0.4599609375,0.40234375,0.3994140625,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.625,0.5966796875,0.5322265625,0.4501953125,0.3759765625,0.333984375,0.3251953125,0.322265625,0.314453125,0.318359375,0.3525390625,0.4140625,0.486328125,0.55078125,0.60546875,0.62890625,0.6181640625,0.58984375,0.5693359375,0.5791015625,0.6220703125,0.65625,0.62109375,0.51953125,0.3935546875,0.30078125,0.2802734375,0.3251953125,0.396484375,0.4921875,0.580078125,0.6220703125,0.60546875,0.5537109375,0.5,0.451171875,0.4228515625,0.4326171875,0.482421875,0.5498046875,0.6015625,0.6220703125,0.638671875,0.673828125,0.705078125,0.7080078125,0.673828125,0.6142578125,0.55078125,0.4921875,0.44921875,0.4462890625,0.486328125,0.5498046875,0.6015625,0.6220703125,0.6171875,0.5595703125,0.46484375,0.3798828125,0.341796875,0.365234375,0.4287109375,0.4931640625,0.52734375,0.5302734375,0.5205078125,0.5234375,0.5576171875,0.6220703125,0.6982421875,0.7783203125,0.8173828125,0.78515625,0.69140625,0.58203125,0.5,0.4365234375,0.4111328125,0.427734375,0.4658203125,0.4921875,0.48046875,0.4287109375,0.37890625,0.37890625,0.4326171875,0.5126953125,0.576171875,0.58984375,0.55078125,0.5029296875,0.474609375,0.484375,0.5341796875,0.6015625,0.6533203125,0.673828125,0.6728515625,0.6318359375,0.5654296875,0.5078125,0.48828125,0.5146484375,0.5703125,0.6396484375,0.7265625,0.791015625,0.794921875,0.736328125,0.6484375,0.5703125,0.509765625,0.4990234375,0.546875,0.626953125,0.693359375,0.7109375,0.673828125,0.607421875,0.4921875,0.359375,0.6201171875,0.619140625,0.5791015625,0.5126953125,0.439453125,0.361328125,0.2734375,0.2177734375,0.23046875,0.30859375,0.408203125,0.4892578125,0.5693359375,0.6640625,0.732421875,0.736328125,0.6748046875,0.5859375,0.509765625,0.4443359375,0.4033203125,0.40625,0.453125,0.51953125,0.568359375,0.5791015625,0.5791015625,0.5791015625,0.578125,0.576171875,0.5732421875,0.5712890625,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.439453125,0.4365234375,0.4326171875,0.4267578125,0.4228515625,0.419921875,0.419921875,0.4140625,0.3935546875,0.3779296875,0.3916015625,0.439453125,0.5087890625,0.5791015625,0.6337890625,0.6318359375,0.572265625,0.490234375,0.4326171875,0.4326171875,0.4892578125,0.5595703125,0.619140625,0.6474609375,0.63671875,0.599609375,0.5673828125,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5849609375,0.6064453125,0.623046875,0.6103515625,0.5625,0.4912109375,0.419921875,0.34375,0.2607421875,0.2119140625,0.232421875,0.3154296875,0.41796875,0.5,0.5771484375,0.66015625,0.7080078125,0.6865234375,0.6025390625,0.5,0.419921875,0.365234375,0.373046875,0.4462890625,0.546875,0.6220703125,0.6318359375,0.5791015625,0.5205078125,0.5,0.51953125,0.5546875,0.572265625,0.5498046875,0.4892578125,0.4296875,0.4111328125,0.435546875,0.478515625,0.5048828125,0.48828125,0.4296875,0.353515625,0.2646484375,0.201171875,0.203125,0.26953125,0.3623046875,0.439453125,0.5009765625,0.5263671875,0.513671875,0.4853515625,0.47265625,0.498046875,0.5595703125,0.6279296875,0.681640625,0.697265625,0.671875,0.62109375,0.580078125,0.5693359375,0.57421875,0.595703125,0.6142578125,0.6044921875,0.5595703125,0.4912109375,0.419921875,0.3427734375,0.2529296875,0.19140625,0.1943359375,0.26171875,0.353515625,0.4296875,0.48828125,0.5068359375,0.4853515625,0.4482421875,0.427734375,0.44921875,0.509765625,0.5859375,0.66796875,0.716796875,0.697265625,0.6171875,0.517578125,0.439453125,0.36328125,0.2744140625,0.2099609375,0.2099609375,0.2744140625,0.36328125,0.439453125,0.49609375,0.5029296875,0.458984375,0.3955078125,0.3525390625,0.361328125,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.451171875,0.501953125,0.5703125,0.619140625,0.62109375,0.5771484375,0.509765625,0.427734375,0.32421875,0.23828125,0.2158203125,0.26171875,0.34375,0.419921875,0.498046875,0.5927734375,0.662109375,0.6669921875,0.6064453125,0.517578125,0.439453125,0.3828125,0.380859375,0.435546875,0.513671875,0.568359375,0.56640625,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.57421875,0.5986328125,0.62109375,0.6171875,0.576171875,0.5107421875,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.44140625,0.484375,0.5390625,0.5703125,0.55859375,0.5078125,0.439453125,0.375,0.341796875,0.361328125,0.4287109375,0.51171875,0.568359375,0.5791015625,0.57421875,0.5576171875,0.52734375,0.4921875,0.4619140625,0.4443359375,0.439453125,0.4404296875,0.453125,0.478515625,0.509765625,0.5380859375,0.5546875,0.5595703125,0.5673828125,0.59375,0.619140625,0.615234375,0.5751953125,0.5087890625,0.439453125,0.36328125,0.271484375,0.205078125,0.2041015625,0.2685546875,0.3603515625,0.439453125,0.5126953125,0.5810546875,0.6240234375,0.6298828125,0.607421875,0.583984375,0.5791015625,0.5673828125,0.5087890625,0.421875,0.3515625,0.330078125,0.36328125,0.4296875,0.4892578125,0.5,0.458984375,0.396484375,0.353515625,0.3623046875,0.419921875,0.501953125,0.6142578125,0.7158203125,0.7587890625,0.728515625,0.6552734375,0.5791015625,0.49609375,0.3837890625,0.2822265625,0.2412109375,0.271484375,0.345703125,0.419921875,0.4912109375,0.560546875,0.6083984375,0.6201171875,0.603515625,0.583984375,0.5791015625,0.5703125,0.5283203125,0.47265625,0.4365234375,0.4443359375,0.4921875,0.5595703125,0.6279296875,0.681640625,0.697265625,0.671875,0.62109375,0.580078125,0.5693359375,0.568359375,0.568359375,0.5693359375,0.5732421875,0.576171875,0.5791015625,0.5791015625,0.5869140625,0.619140625,0.6552734375,0.6640625,0.6328125,0.5712890625,0.5,0.4404296875,0.4365234375,0.48828125,0.564453125,0.6181640625,0.6162109375,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.5673828125,0.5751953125,0.5322265625,0.466796875,0.423828125,0.431640625,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5673828125,0.55078125,0.517578125,0.4775390625,0.4423828125,0.423828125,0.419921875,0.412109375,0.3818359375,0.3505859375,0.34375,0.376953125,0.439453125,0.509765625,0.5693359375,0.587890625,0.5634765625,0.5205078125,0.494140625,0.5107421875,0.5693359375,0.623046875,0.61328125,0.541015625,0.4423828125,0.37109375,0.3642578125,0.419921875,0.4990234375,0.599609375,0.681640625,0.7021484375,0.6552734375,0.57421875,0.5,0.4345703125,0.3916015625,0.3935546875,0.4404296875,0.5068359375,0.556640625,0.5693359375,0.5791015625,0.6142578125,0.6533203125,0.666015625,0.638671875,0.5791015625,0.509765625,0.4423828125,0.3974609375,0.396484375,0.44140625,0.5068359375,0.556640625,0.5693359375,0.5576171875,0.501953125,0.419921875,0.3544921875,0.337890625,0.373046875,0.439453125,0.5029296875,0.529296875,0.517578125,0.4912109375,0.48046875,0.5068359375,0.5693359375,0.6474609375,0.7333984375,0.7841796875,0.765625,0.68359375,0.5810546875,0.5,0.4384765625,0.4189453125,0.4443359375,0.4892578125,0.515625,0.4990234375,0.439453125,0.3828125,0.3798828125,0.43359375,0.5107421875,0.5654296875,0.564453125,0.509765625,0.4443359375,0.40234375,0.4033203125,0.4501953125,0.5166015625,0.56640625,0.5791015625,0.5703125,0.5283203125,0.47265625,0.4365234375,0.4443359375,0.4921875,0.5595703125,0.6376953125,0.73046875,0.796875,0.7978515625,0.732421875,0.638671875,0.5595703125,0.4990234375,0.4892578125,0.53125,0.595703125,0.6416015625,0.6357421875,0.5791015625,0.4990234375,0.3896484375,0.2890625,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.595703125,0.6630859375,0.681640625,0.6455078125,0.5791015625,0.498046875,0.39453125,0.310546875,0.2880859375,0.333984375,0.4150390625,0.4892578125,0.56640625,0.66015625,0.7314453125,0.73828125,0.677734375,0.587890625,0.509765625,0.4384765625,0.376953125,0.3466796875,0.357421875,0.392578125,0.4228515625,0.4296875,0.4287109375,0.4287109375,0.4306640625,0.43359375,0.4375,0.439453125,0.439453125,0.4423828125,0.458984375,0.48828125,0.5244140625,0.556640625,0.57421875,0.5791015625,0.580078125,0.578125,0.572265625,0.56640625,0.560546875,0.55859375,0.5595703125,0.5615234375,0.5634765625,0.5673828125,0.5712890625,0.5751953125,0.5771484375,0.5791015625,0.5673828125,0.5087890625,0.4208984375,0.3486328125,0.3251953125,0.35546875,0.419921875,0.4794921875,0.4970703125,0.47265625,0.4306640625,0.408203125,0.427734375,0.4892578125,0.55859375,0.6044921875,0.6064453125,0.5634765625,0.4990234375,0.451171875,0.439453125,0.439453125,0.4375,0.43359375,0.4306640625,0.4287109375,0.4287109375,0.4296875,0.4443359375,0.5048828125,0.5888671875,0.65625,0.6728515625,0.6357421875,0.5693359375,0.48828125,0.3876953125,0.3076171875,0.291015625,0.341796875,0.4248046875,0.5,0.5771484375,0.677734375,0.7607421875,0.7822265625,0.736328125,0.6552734375,0.5791015625,0.5166015625,0.486328125,0.48828125,0.5048828125,0.5087890625,0.48046875,0.419921875,0.365234375,0.3671875,0.4267578125,0.5087890625,0.56640625,0.56640625,0.509765625,0.453125,0.4501953125,0.50390625,0.580078125,0.6328125,0.6279296875,0.5693359375,0.4892578125,0.3955078125,0.3291015625,0.3291015625,0.3955078125,0.4892578125,0.5693359375,0.6259765625,0.6220703125,0.5546875,0.4599609375,0.390625,0.384765625,0.439453125,0.5078125,0.556640625,0.564453125,0.529296875,0.47265625,0.4296875,0.419921875,0.4326171875,0.4921875,0.5791015625,0.6494140625,0.6728515625,0.6416015625,0.5791015625,0.5029296875,0.412109375,0.34765625,0.3466796875,0.41015625,0.501953125,0.5791015625,0.6357421875,0.6376953125,0.5830078125,0.505859375,0.451171875,0.453125,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5009765625,0.408203125,0.341796875,0.3408203125,0.40625,0.5,0.5791015625,0.6396484375,0.6513671875,0.6123046875,0.5517578125,0.51171875,0.521484375,0.5791015625,0.646484375,0.6962890625,0.705078125,0.6728515625,0.6181640625,0.5771484375,0.5693359375,0.5791015625,0.6123046875,0.6484375,0.6572265625,0.6240234375,0.5615234375,0.4892578125,0.412109375,0.330078125,0.2841796875,0.30859375,0.3955078125,0.4990234375,0.5791015625,0.6572265625,0.7470703125,0.8095703125,0.8046875,0.734375,0.6396484375,0.5595703125,0.4970703125,0.4765625,0.498046875,0.5390625,0.564453125,0.5478515625,0.4892578125,0.421875,0.3662109375,0.341796875,0.357421875,0.3974609375,0.431640625,0.439453125,0.4521484375,0.5078125,0.5859375,0.6474609375,0.6611328125,0.625,0.5595703125,0.4912109375,0.4423828125,0.4345703125,0.4697265625,0.5263671875,0.5693359375,0.5791015625,0.5888671875,0.6279296875,0.6767578125,0.7021484375,0.6845703125,0.6298828125,0.5595703125,0.486328125,0.416015625,0.3701171875,0.36328125,0.3857421875,0.4111328125,0.419921875,0.4248046875,0.4443359375,0.4765625,0.513671875,0.54296875,0.5576171875,0.5595703125,0.5546875,0.5390625,0.5107421875,0.478515625,0.4501953125,0.4345703125,0.4296875,0.44140625,0.4990234375,0.583984375,0.654296875,0.67578125,0.6435546875,0.5791015625,0.5009765625,0.408203125,0.33984375,0.3349609375,0.3955078125,0.4833984375,0.5595703125,0.623046875,0.658203125,0.6435546875,0.5810546875,0.5009765625,0.4443359375,0.4296875,0.421875,0.3955078125,0.373046875,0.3798828125,0.42578125,0.49609375,0.5693359375,0.62890625,0.638671875,0.595703125,0.5322265625,0.490234375,0.5,0.5595703125,0.6357421875,0.7109375,0.7431640625,0.705078125,0.6083984375,0.5,0.419921875,0.34765625,0.275390625,0.2470703125,0.2880859375,0.3876953125,0.498046875,0.5791015625,0.6435546875,0.67578125,0.6533203125,0.5810546875,0.4931640625,0.43359375,0.419921875,0.41015625,0.3720703125,0.3232421875,0.296875,0.3115234375,0.36328125,0.4296875,0.49609375,0.5439453125,0.552734375,0.5205078125,0.4677734375,0.427734375,0.419921875,0.421875,0.423828125,0.427734375,0.431640625,0.435546875,0.4375,0.439453125,0.4521484375,0.501953125,0.568359375,0.615234375,0.6171875,0.57421875,0.509765625,0.451171875,0.431640625,0.4521484375,0.48828125,0.505859375,0.482421875,0.419921875,0.353515625,0.3173828125,0.3359375,0.4033203125,0.4873046875,0.5458984375,0.5595703125,0.548828125,0.5009765625,0.4375,0.392578125,0.3916015625,0.4345703125,0.5,0.556640625,0.5673828125,0.529296875,0.4736328125,0.4375,0.4501953125,0.509765625,0.576171875,0.619140625,0.6162109375,0.568359375,0.5,0.451171875,0.439453125,0.4423828125,0.4560546875,0.4814453125,0.51171875,0.5390625,0.5546875,0.5595703125,0.5498046875,0.5048828125,0.44140625,0.3984375,0.3984375,0.4423828125,0.509765625,0.5654296875,0.5654296875,0.5078125,0.4267578125,0.369140625,0.37109375,0.4296875,0.4921875,0.5185546875,0.5078125,0.4814453125,0.4697265625,0.49609375,0.5595703125,0.6376953125,0.72265625,0.7744140625,0.755859375,0.673828125,0.5712890625,0.4892578125,0.41796875,0.357421875,0.330078125,0.34375,0.3837890625,0.419921875,0.4296875,0.4423828125,0.490234375,0.5546875,0.599609375,0.5986328125,0.5546875,0.4892578125,0.421875,0.365234375,0.3408203125,0.3544921875,0.3916015625,0.4228515625,0.4296875,0.421875,0.396484375,0.3740234375,0.3798828125,0.4228515625,0.4892578125,0.5595703125,0.61328125,0.6064453125,0.537109375,0.4423828125,0.373046875,0.3662109375,0.419921875,0.498046875,0.599609375,0.68359375,0.7060546875,0.6591796875,0.5771484375,0.5,0.44140625,0.439453125,0.49609375,0.5771484375,0.6357421875,0.6357421875,0.5791015625,0.51953125,0.5,0.5244140625,0.564453125,0.5888671875,0.5693359375,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.421875,0.380859375,0.328125,0.296875,0.30859375,0.3603515625,0.4296875,0.5087890625,0.599609375,0.662109375,0.6572265625,0.58984375,0.49609375,0.419921875,0.36328125,0.3564453125,0.400390625,0.46484375,0.5068359375,0.498046875,0.439453125,0.365234375,0.2900390625,0.2548828125,0.6240234375,0.71875,0.759765625,0.7373046875,0.673828125,0.5908203125,0.4814453125,0.3798828125,0.3291015625,0.341796875,0.3935546875,0.4482421875,0.509765625,0.6015625,0.6875,0.7236328125,0.6953125,0.6259765625,0.55078125,0.478515625,0.4111328125,0.3671875,0.35546875,0.3681640625,0.3818359375,0.376953125,0.3681640625,0.3671875,0.376953125,0.39453125,0.4140625,0.4267578125,0.4287109375,0.43359375,0.45703125,0.50390625,0.5634765625,0.6201171875,0.6572265625,0.673828125,0.6796875,0.6689453125,0.6396484375,0.603515625,0.5751953125,0.5634765625,0.5703125,0.5810546875,0.5947265625,0.6123046875,0.630859375,0.6484375,0.662109375,0.673828125,0.6669921875,0.5966796875,0.4755859375,0.3525390625,0.279296875,0.275390625,0.3251953125,0.3779296875,0.396484375,0.380859375,0.357421875,0.3525390625,0.3837890625,0.4482421875,0.517578125,0.5673828125,0.576171875,0.541015625,0.4833984375,0.439453125,0.4287109375,0.4267578125,0.4140625,0.39453125,0.376953125,0.3671875,0.3681640625,0.376953125,0.4033203125,0.482421875,0.591796875,0.6826171875,0.7158203125,0.6875,0.6220703125,0.5419921875,0.4453125,0.3662109375,0.3427734375,0.37890625,0.4423828125,0.5,0.5615234375,0.6552734375,0.75,0.7998046875,0.7890625,0.736328125,0.673828125,0.6123046875,0.5556640625,0.50390625,0.4599609375,0.4189453125,0.375,0.3251953125,0.2900390625,0.3154296875,0.40234375,0.509765625,0.5859375,0.5986328125,0.55078125,0.5029296875,0.5087890625,0.56640625,0.6416015625,0.689453125,0.681640625,0.6220703125,0.5419921875,0.4482421875,0.380859375,0.380859375,0.4482421875,0.5419921875,0.6220703125,0.6787109375,0.671875,0.5966796875,0.4892578125,0.404296875,0.3837890625,0.4287109375,0.486328125,0.5185546875,0.5068359375,0.453125,0.384765625,0.3369140625,0.3251953125,0.3408203125,0.4130859375,0.5283203125,0.6416015625,0.7099609375,0.71484375,0.673828125,0.615234375,0.5419921875,0.4873046875,0.482421875,0.5322265625,0.6064453125,0.673828125,0.7216796875,0.7158203125,0.654296875,0.5703125,0.5087890625,0.5029296875,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.603515625,0.517578125,0.4521484375,0.4482421875,0.5068359375,0.5947265625,0.673828125,0.734375,0.7509765625,0.71875,0.6630859375,0.6201171875,0.6240234375,0.673828125,0.73046875,0.7626953125,0.7548828125,0.7109375,0.6552734375,0.62109375,0.6220703125,0.6376953125,0.666015625,0.6826171875,0.662109375,0.6025390625,0.5234375,0.4482421875,0.375,0.314453125,0.3056640625,0.369140625,0.484375,0.5986328125,0.673828125,0.740234375,0.814453125,0.8564453125,0.8330078125,0.7509765625,0.650390625,0.5703125,0.5048828125,0.466796875,0.4638671875,0.484375,0.5009765625,0.490234375,0.4482421875,0.3974609375,0.3583984375,0.3447265625,0.361328125,0.39453125,0.421875,0.4287109375,0.4404296875,0.4931640625,0.5703125,0.6337890625,0.654296875,0.6259765625,0.5703125,0.5126953125,0.48046875,0.4921875,0.5458984375,0.6142578125,0.662109375,0.673828125,0.6806640625,0.7099609375,0.740234375,0.7431640625,0.70703125,0.642578125,0.5703125,0.4931640625,0.4052734375,0.3291015625,0.291015625,0.2919921875,0.3115234375,0.3251953125,0.3427734375,0.3857421875,0.4501953125,0.5146484375,0.5595703125,0.576171875,0.5703125,0.556640625,0.5322265625,0.4951171875,0.4521484375,0.4150390625,0.390625,0.376953125,0.3828125,0.4462890625,0.556640625,0.6650390625,0.7275390625,0.724609375,0.673828125,0.6044921875,0.517578125,0.4443359375,0.421875,0.4541015625,0.5146484375,0.5703125,0.6162109375,0.63671875,0.6103515625,0.54296875,0.4599609375,0.3994140625,0.376953125,0.36328125,0.34375,0.3427734375,0.380859375,0.45703125,0.544921875,0.6220703125,0.6806640625,0.6845703125,0.6328125,0.55859375,0.5068359375,0.51171875,0.5703125,0.6416015625,0.693359375,0.6904296875,0.6171875,0.5,0.390625,0.3251953125,0.275390625,0.2451171875,0.267578125,0.3544921875,0.4814453125,0.5986328125,0.673828125,0.724609375,0.7275390625,0.6611328125,0.5439453125,0.419921875,0.341796875,0.3251953125,0.3193359375,0.296875,0.26953125,0.26171875,0.283203125,0.326171875,0.376953125,0.423828125,0.44921875,0.439453125,0.3994140625,0.3525390625,0.32421875,0.3251953125,0.3369140625,0.3505859375,0.3681640625,0.38671875,0.404296875,0.41796875,0.4287109375,0.44921875,0.5009765625,0.568359375,0.6181640625,0.6279296875,0.599609375,0.55078125,0.505859375,0.4833984375,0.4775390625,0.4697265625,0.443359375,0.3935546875,0.3251953125,0.26171875,0.2392578125,0.2802734375,0.375,0.4833984375,0.5546875,0.5703125,0.5615234375,0.5234375,0.4697265625,0.4287109375,0.4228515625,0.451171875,0.5,0.5419921875,0.5498046875,0.5244140625,0.4912109375,0.4755859375,0.4970703125,0.55078125,0.6083984375,0.6376953125,0.6220703125,0.5634765625,0.4912109375,0.4404296875,0.4287109375,0.4306640625,0.4423828125,0.4658203125,0.4990234375,0.5322265625,0.556640625,0.5703125,0.5712890625,0.541015625,0.4931640625,0.45703125,0.45703125,0.4931640625,0.55078125,0.5966796875,0.5791015625,0.498046875,0.3955078125,0.32421875,0.3203125,0.376953125,0.44140625,0.4755859375,0.478515625,0.46875,0.4716796875,0.505859375,0.5703125,0.646484375,0.7265625,0.765625,0.7333984375,0.6396484375,0.5302734375,0.4482421875,0.375,0.3076171875,0.271484375,0.2783203125,0.318359375,0.359375,0.376953125,0.396484375,0.4423828125,0.4970703125,0.533203125,0.5322265625,0.4970703125,0.4482421875,0.3984375,0.3583984375,0.3408203125,0.3486328125,0.3681640625,0.3818359375,0.376953125,0.3642578125,0.3505859375,0.353515625,0.3876953125,0.4482421875,0.5146484375,0.5703125,0.6064453125,0.5849609375,0.501953125,0.3935546875,0.310546875,0.2890625,0.3251953125,0.3896484375,0.4892578125,0.5908203125,0.6455078125,0.6328125,0.572265625,0.5,0.4423828125,0.4462890625,0.517578125,0.6201171875,0.701171875,0.71875,0.673828125,0.619140625,0.595703125,0.6025390625,0.6220703125,0.62890625,0.60546875,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.3779296875,0.34375,0.2919921875,0.2568359375,0.2626953125,0.30859375,0.376953125,0.453125,0.5283203125,0.568359375,0.5458984375,0.4716796875,0.38671875,0.3251953125,0.287109375,0.2978515625,0.357421875,0.4326171875,0.4814453125,0.4794921875,0.4287109375,0.3671875,0.3154296875,0.3095703125,0.673828125,0.775390625,0.8232421875,0.8037109375,0.740234375,0.6591796875,0.5546875,0.44921875,0.380859375,0.3603515625,0.3740234375,0.39453125,0.427734375,0.5087890625,0.6123046875,0.6904296875,0.7099609375,0.671875,0.6044921875,0.533203125,0.466796875,0.4189453125,0.3974609375,0.392578125,0.3857421875,0.3642578125,0.3408203125,0.333984375,0.3525390625,0.3916015625,0.4345703125,0.462890625,0.46875,0.4716796875,0.4892578125,0.5302734375,0.5908203125,0.65625,0.7080078125,0.740234375,0.7568359375,0.7353515625,0.673828125,0.595703125,0.5341796875,0.5126953125,0.5302734375,0.556640625,0.5859375,0.6181640625,0.6513671875,0.68359375,0.712890625,0.740234375,0.748046875,0.6826171875,0.546875,0.388671875,0.2705078125,0.2294921875,0.2587890625,0.2958984375,0.3037109375,0.2890625,0.275390625,0.28515625,0.328125,0.39453125,0.4658203125,0.52734375,0.5576171875,0.546875,0.509765625,0.4775390625,0.46875,0.462890625,0.4345703125,0.3916015625,0.3525390625,0.333984375,0.3408203125,0.3642578125,0.40625,0.5,0.619140625,0.708984375,0.7373046875,0.7021484375,0.634765625,0.5595703125,0.4794921875,0.421875,0.408203125,0.435546875,0.474609375,0.5,0.5302734375,0.599609375,0.6904296875,0.7646484375,0.7958984375,0.78125,0.740234375,0.6875,0.6064453125,0.5048828125,0.4052734375,0.328125,0.2822265625,0.2587890625,0.2548828125,0.3095703125,0.4169921875,0.53515625,0.6181640625,0.6376953125,0.6044921875,0.5712890625,0.5830078125,0.6357421875,0.6923828125,0.7197265625,0.697265625,0.634765625,0.5556640625,0.4609375,0.39453125,0.39453125,0.4609375,0.5556640625,0.634765625,0.6943359375,0.7001953125,0.642578125,0.5498046875,0.4677734375,0.4384765625,0.46875,0.5087890625,0.515625,0.4775390625,0.40234375,0.322265625,0.2705078125,0.2587890625,0.2724609375,0.341796875,0.4638671875,0.5986328125,0.703125,0.7470703125,0.740234375,0.7158203125,0.6748046875,0.6376953125,0.626953125,0.6494140625,0.693359375,0.740234375,0.7744140625,0.7646484375,0.708984375,0.6357421875,0.580078125,0.5703125,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.685546875,0.611328125,0.5498046875,0.5380859375,0.5849609375,0.6640625,0.740234375,0.8037109375,0.830078125,0.8095703125,0.759765625,0.71484375,0.7060546875,0.740234375,0.7783203125,0.783203125,0.748046875,0.6904296875,0.6376953125,0.6181640625,0.634765625,0.6650390625,0.697265625,0.701171875,0.6572265625,0.5703125,0.4736328125,0.39453125,0.326171875,0.2900390625,0.3193359375,0.421875,0.5615234375,0.677734375,0.740234375,0.7890625,0.8388671875,0.853515625,0.8095703125,0.71484375,0.6103515625,0.5302734375,0.4599609375,0.4013671875,0.3720703125,0.375,0.39453125,0.40625,0.39453125,0.3779296875,0.373046875,0.3857421875,0.4140625,0.4443359375,0.46484375,0.46875,0.4765625,0.5107421875,0.5576171875,0.5927734375,0.5986328125,0.572265625,0.5302734375,0.490234375,0.4833984375,0.521484375,0.5966796875,0.6767578125,0.728515625,0.740234375,0.7451171875,0.76171875,0.767578125,0.7421875,0.6826171875,0.6044921875,0.5302734375,0.4501953125,0.349609375,0.255859375,0.2041015625,0.201171875,0.2294921875,0.2587890625,0.294921875,0.3623046875,0.447265625,0.5185546875,0.5546875,0.552734375,0.5302734375,0.50390625,0.4794921875,0.4580078125,0.4365234375,0.4140625,0.3896484375,0.3642578125,0.353515625,0.40625,0.5185546875,0.6484375,0.744140625,0.771484375,0.740234375,0.6884765625,0.619140625,0.5498046875,0.5048828125,0.4951171875,0.509765625,0.5302734375,0.5478515625,0.5576171875,0.54296875,0.5029296875,0.4462890625,0.396484375,0.3642578125,0.3349609375,0.306640625,0.30859375,0.361328125,0.4541015625,0.5556640625,0.634765625,0.6923828125,0.6904296875,0.626953125,0.5380859375,0.474609375,0.47265625,0.5302734375,0.595703125,0.626953125,0.59375,0.5,0.3818359375,0.2939453125,0.2587890625,0.2451171875,0.263671875,0.333984375,0.44921875,0.5791015625,0.6826171875,0.740234375,0.7734375,0.748046875,0.6484375,0.501953125,0.361328125,0.2763671875,0.2587890625,0.2587890625,0.2607421875,0.26953125,0.2900390625,0.31640625,0.3427734375,0.3642578125,0.3759765625,0.3623046875,0.322265625,0.275390625,0.2431640625,0.23828125,0.2587890625,0.2861328125,0.3154296875,0.34765625,0.380859375,0.4130859375,0.4423828125,0.46875,0.5009765625,0.5478515625,0.5966796875,0.62890625,0.63671875,0.6240234375,0.6044921875,0.587890625,0.57421875,0.546875,0.494140625,0.41796875,0.333984375,0.2587890625,0.1953125,0.17578125,0.2236328125,0.3251953125,0.439453125,0.513671875,0.5302734375,0.5263671875,0.51171875,0.4912109375,0.474609375,0.4716796875,0.4814453125,0.5,0.513671875,0.5146484375,0.5078125,0.5078125,0.525390625,0.560546875,0.6044921875,0.6455078125,0.662109375,0.640625,0.5849609375,0.521484375,0.478515625,0.46875,0.466796875,0.458984375,0.453125,0.4580078125,0.4765625,0.5029296875,0.5302734375,0.55078125,0.552734375,0.541015625,0.5302734375,0.53515625,0.5625,0.6044921875,0.6328125,0.595703125,0.4970703125,0.3837890625,0.3095703125,0.306640625,0.3642578125,0.427734375,0.458984375,0.455078125,0.4384765625,0.435546875,0.4658203125,0.5302734375,0.6064453125,0.6845703125,0.720703125,0.6845703125,0.587890625,0.4775390625,0.39453125,0.3203125,0.2490234375,0.208984375,0.220703125,0.271484375,0.3291015625,0.3642578125,0.392578125,0.4267578125,0.453125,0.4580078125,0.44140625,0.416015625,0.39453125,0.37890625,0.376953125,0.3857421875,0.3974609375,0.3994140625,0.3876953125,0.3642578125,0.33984375,0.3291015625,0.34765625,0.39453125,0.4541015625,0.50390625,0.5302734375,0.5390625,0.509765625,0.4384765625,0.3505859375,0.279296875,0.2490234375,0.2587890625,0.29296875,0.3779296875,0.48828125,0.57421875,0.6005859375,0.56640625,0.5,0.44140625,0.4443359375,0.5185546875,0.6318359375,0.73046875,0.7685546875,0.740234375,0.69921875,0.67578125,0.6708984375,0.673828125,0.6689453125,0.6455078125,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.3798828125,0.357421875,0.30859375,0.267578125,0.2607421875,0.2978515625,0.3642578125,0.43359375,0.484375,0.48828125,0.4384765625,0.3583984375,0.2900390625,0.2587890625,0.251953125,0.2900390625,0.3671875,0.44921875,0.501953125,0.505859375,0.46875,0.4267578125,0.40234375,0.4169921875,0.7119140625,0.7978515625,0.83203125,0.8046875,0.740234375,0.6640625,0.5771484375,0.494140625,0.4326171875,0.3994140625,0.380859375,0.3642578125,0.3623046875,0.4228515625,0.533203125,0.642578125,0.7041015625,0.6953125,0.634765625,0.5654296875,0.5107421875,0.4775390625,0.4638671875,0.455078125,0.4345703125,0.39453125,0.353515625,0.3369140625,0.3583984375,0.4140625,0.4775390625,0.5205078125,0.5302734375,0.5283203125,0.52734375,0.541015625,0.5771484375,0.6328125,0.69140625,0.740234375,0.771484375,0.7451171875,0.6591796875,0.5498046875,0.4638671875,0.4375,0.46875,0.513671875,0.552734375,0.587890625,0.62109375,0.65625,0.6962890625,0.740234375,0.76953125,0.728515625,0.6103515625,0.4521484375,0.31640625,0.2509765625,0.2587890625,0.27734375,0.267578125,0.2421875,0.228515625,0.24609375,0.2958984375,0.3642578125,0.4375,0.509765625,0.560546875,0.57421875,0.5576171875,0.5361328125,0.5302734375,0.5205078125,0.4775390625,0.4140625,0.3583984375,0.3369140625,0.353515625,0.39453125,0.453125,0.5537109375,0.662109375,0.7294921875,0.7294921875,0.67578125,0.6044921875,0.53515625,0.48046875,0.4580078125,0.46875,0.4951171875,0.5107421875,0.5,0.490234375,0.521484375,0.5908203125,0.673828125,0.736328125,0.7578125,0.740234375,0.7001953125,0.6123046875,0.4853515625,0.361328125,0.27734375,0.248046875,0.2587890625,0.2900390625,0.3642578125,0.4716796875,0.57421875,0.6396484375,0.654296875,0.634765625,0.6181640625,0.6376953125,0.6787109375,0.712890625,0.7119140625,0.671875,0.6044921875,0.5244140625,0.4306640625,0.3642578125,0.3642578125,0.4306640625,0.5244140625,0.6044921875,0.6689453125,0.697265625,0.673828125,0.6123046875,0.5478515625,0.515625,0.5302734375,0.548828125,0.53515625,0.48046875,0.3974609375,0.3173828125,0.2685546875,0.2587890625,0.267578125,0.314453125,0.408203125,0.52734375,0.6376953125,0.7099609375,0.740234375,0.7548828125,0.7529296875,0.7373046875,0.7177734375,0.708984375,0.716796875,0.740234375,0.759765625,0.7509765625,0.712890625,0.662109375,0.6240234375,0.615234375,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7041015625,0.6435546875,0.5849609375,0.56640625,0.5986328125,0.6669921875,0.740234375,0.806640625,0.8427734375,0.8369140625,0.794921875,0.7470703125,0.724609375,0.740234375,0.755859375,0.732421875,0.673828125,0.607421875,0.56640625,0.5673828125,0.6044921875,0.6533203125,0.6982421875,0.70703125,0.654296875,0.5537109375,0.4453125,0.3642578125,0.2998046875,0.27734375,0.328125,0.447265625,0.5888671875,0.6953125,0.740234375,0.76953125,0.7978515625,0.794921875,0.7431640625,0.6494140625,0.548828125,0.46875,0.39453125,0.318359375,0.267578125,0.26171875,0.294921875,0.337890625,0.3642578125,0.38671875,0.419921875,0.4609375,0.4970703125,0.51953125,0.5283203125,0.5302734375,0.5322265625,0.5400390625,0.5458984375,0.541015625,0.5224609375,0.49609375,0.46875,0.4501953125,0.4638671875,0.5185546875,0.6015625,0.681640625,0.73046875,0.740234375,0.744140625,0.7529296875,0.7451171875,0.7041015625,0.630859375,0.544921875,0.46875,0.388671875,0.2841796875,0.189453125,0.1455078125,0.16015625,0.2099609375,0.2587890625,0.314453125,0.3994140625,0.48828125,0.5439453125,0.548828125,0.5146484375,0.46875,0.4296875,0.4140625,0.4228515625,0.44140625,0.4501953125,0.43359375,0.39453125,0.3623046875,0.3857421875,0.474609375,0.5966796875,0.7021484375,0.7509765625,0.740234375,0.7109375,0.669921875,0.6181640625,0.56640625,0.521484375,0.490234375,0.46875,0.455078125,0.458984375,0.47265625,0.4794921875,0.46875,0.4375,0.39453125,0.345703125,0.2958984375,0.28125,0.3251953125,0.4189453125,0.5234375,0.6044921875,0.6611328125,0.6552734375,0.5849609375,0.48828125,0.41796875,0.412109375,0.46875,0.53125,0.546875,0.4990234375,0.4052734375,0.30859375,0.255859375,0.2587890625,0.28515625,0.341796875,0.4326171875,0.541015625,0.6396484375,0.7060546875,0.740234375,0.7548828125,0.7158203125,0.61328125,0.474609375,0.34765625,0.2734375,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.3662109375,0.3095703125,0.2421875,0.1953125,0.1875,0.2158203125,0.2587890625,0.302734375,0.3427734375,0.3779296875,0.4111328125,0.4462890625,0.4853515625,0.5302734375,0.57421875,0.6083984375,0.6259765625,0.626953125,0.6201171875,0.6201171875,0.634765625,0.654296875,0.6640625,0.6376953125,0.560546875,0.44921875,0.33984375,0.2587890625,0.1943359375,0.1669921875,0.201171875,0.287109375,0.38671875,0.4541015625,0.46875,0.47265625,0.4873046875,0.5078125,0.5244140625,0.52734375,0.517578125,0.5,0.48046875,0.4677734375,0.474609375,0.5078125,0.556640625,0.603515625,0.634765625,0.658203125,0.6650390625,0.646484375,0.607421875,0.564453125,0.5361328125,0.5302734375,0.5224609375,0.48828125,0.44140625,0.40625,0.400390625,0.4267578125,0.46875,0.513671875,0.5517578125,0.5771484375,0.5908203125,0.5986328125,0.611328125,0.634765625,0.6455078125,0.59375,0.4912109375,0.3857421875,0.326171875,0.333984375,0.39453125,0.4560546875,0.4755859375,0.4521484375,0.4111328125,0.3876953125,0.4072265625,0.46875,0.546875,0.6279296875,0.6708984375,0.6435546875,0.552734375,0.4462890625,0.3642578125,0.2890625,0.2138671875,0.1728515625,0.1923828125,0.2607421875,0.33984375,0.39453125,0.435546875,0.453125,0.44140625,0.40625,0.369140625,0.3525390625,0.3642578125,0.3896484375,0.43359375,0.4775390625,0.4970703125,0.48046875,0.4404296875,0.39453125,0.3544921875,0.341796875,0.3642578125,0.4111328125,0.4580078125,0.4794921875,0.46875,0.4482421875,0.419921875,0.3837890625,0.3447265625,0.3076171875,0.279296875,0.2587890625,0.255859375,0.3134765625,0.4169921875,0.5185546875,0.5732421875,0.5615234375,0.5,0.439453125,0.4306640625,0.4912109375,0.5966796875,0.6982421875,0.75,0.740234375,0.7158203125,0.69921875,0.6904296875,0.6845703125,0.67578125,0.6591796875,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.4287109375,0.419921875,0.375,0.3251953125,0.3046875,0.3310546875,0.39453125,0.4580078125,0.4833984375,0.4521484375,0.3779296875,0.2978515625,0.25390625,0.2587890625,0.287109375,0.349609375,0.4326171875,0.5078125,0.548828125,0.5517578125,0.5302734375,0.5087890625,0.509765625,0.53515625,0.712890625,0.7705078125,0.7802734375,0.7412109375,0.673828125,0.603515625,0.544921875,0.50390625,0.4775390625,0.455078125,0.423828125,0.376953125,0.34375,0.3779296875,0.4765625,0.5927734375,0.671875,0.6787109375,0.6220703125,0.556640625,0.5185546875,0.51171875,0.5224609375,0.525390625,0.501953125,0.4482421875,0.390625,0.361328125,0.376953125,0.435546875,0.5078125,0.55859375,0.5703125,0.5634765625,0.541015625,0.5185546875,0.51953125,0.5537109375,0.611328125,0.673828125,0.71875,0.6982421875,0.609375,0.4931640625,0.404296875,0.3837890625,0.4287109375,0.4853515625,0.5244140625,0.544921875,0.5576171875,0.578125,0.6162109375,0.673828125,0.7236328125,0.7197265625,0.646484375,0.5234375,0.40234375,0.33203125,0.3251953125,0.3271484375,0.298828125,0.2587890625,0.23828125,0.2548828125,0.3076171875,0.376953125,0.451171875,0.52734375,0.583984375,0.6044921875,0.59375,0.5751953125,0.5703125,0.55859375,0.5078125,0.435546875,0.376953125,0.361328125,0.390625,0.4482421875,0.51953125,0.619140625,0.70703125,0.73828125,0.7021484375,0.626953125,0.55078125,0.4873046875,0.4580078125,0.4716796875,0.509765625,0.5419921875,0.5400390625,0.5,0.455078125,0.4453125,0.482421875,0.5546875,0.62890625,0.671875,0.673828125,0.6484375,0.568359375,0.451171875,0.341796875,0.28125,0.283203125,0.3251953125,0.3837890625,0.462890625,0.5458984375,0.607421875,0.6328125,0.6318359375,0.6220703125,0.6201171875,0.6455078125,0.681640625,0.697265625,0.67578125,0.62109375,0.55078125,0.4716796875,0.376953125,0.310546875,0.310546875,0.376953125,0.4716796875,0.55078125,0.6201171875,0.6689453125,0.6787109375,0.6484375,0.6015625,0.5693359375,0.5703125,0.57421875,0.552734375,0.5,0.4306640625,0.3681640625,0.3330078125,0.3251953125,0.326171875,0.3388671875,0.37890625,0.44921875,0.5361328125,0.615234375,0.673828125,0.7216796875,0.7529296875,0.7548828125,0.728515625,0.6923828125,0.669921875,0.673828125,0.6806640625,0.67578125,0.6591796875,0.63671875,0.619140625,0.6142578125,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.6533203125,0.6044921875,0.548828125,0.5224609375,0.5439453125,0.6025390625,0.673828125,0.7421875,0.7880859375,0.7939453125,0.7587890625,0.70703125,0.6728515625,0.673828125,0.671875,0.62890625,0.55859375,0.4951171875,0.4716796875,0.49609375,0.55078125,0.6171875,0.6826171875,0.7080078125,0.6669921875,0.5693359375,0.4599609375,0.376953125,0.3134765625,0.2900390625,0.3359375,0.439453125,0.5615234375,0.646484375,0.673828125,0.6875,0.70703125,0.7080078125,0.669921875,0.59375,0.505859375,0.4287109375,0.3505859375,0.2626953125,0.2001953125,0.1953125,0.24609375,0.3193359375,0.376953125,0.431640625,0.4921875,0.544921875,0.57421875,0.5791015625,0.572265625,0.5703125,0.568359375,0.556640625,0.533203125,0.5,0.466796875,0.4423828125,0.4287109375,0.4248046875,0.4462890625,0.4990234375,0.568359375,0.630859375,0.666015625,0.673828125,0.677734375,0.689453125,0.6884765625,0.654296875,0.5869140625,0.5048828125,0.4287109375,0.3486328125,0.248046875,0.166015625,0.142578125,0.1845703125,0.2587890625,0.3251953125,0.396484375,0.4892578125,0.5693359375,0.5966796875,0.5625,0.4951171875,0.4287109375,0.3779296875,0.37109375,0.41015625,0.466796875,0.505859375,0.4990234375,0.4482421875,0.39453125,0.3837890625,0.4296875,0.5205078125,0.6142578125,0.669921875,0.673828125,0.6650390625,0.6572265625,0.638671875,0.599609375,0.5439453125,0.482421875,0.4287109375,0.388671875,0.388671875,0.4296875,0.482421875,0.5126953125,0.5,0.4482421875,0.380859375,0.306640625,0.2646484375,0.2880859375,0.3701171875,0.470703125,0.55078125,0.6083984375,0.6044921875,0.5361328125,0.443359375,0.3759765625,0.3720703125,0.4287109375,0.4892578125,0.5,0.4521484375,0.3720703125,0.3056640625,0.2880859375,0.3251953125,0.3818359375,0.455078125,0.5341796875,0.6005859375,0.642578125,0.662109375,0.673828125,0.67578125,0.640625,0.5654296875,0.46875,0.3837890625,0.3349609375,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.38671875,0.298828125,0.216796875,0.1796875,0.2021484375,0.26171875,0.3251953125,0.3828125,0.4208984375,0.44140625,0.4541015625,0.474609375,0.513671875,0.5703125,0.6240234375,0.6455078125,0.6298828125,0.5966796875,0.5712890625,0.5791015625,0.6220703125,0.6748046875,0.7177734375,0.7138671875,0.64453125,0.52734375,0.4091796875,0.3251953125,0.2578125,0.21875,0.228515625,0.2861328125,0.3623046875,0.4169921875,0.4287109375,0.4375,0.4755859375,0.529296875,0.5703125,0.576171875,0.5478515625,0.5,0.451171875,0.4228515625,0.4326171875,0.482421875,0.5498046875,0.6015625,0.6220703125,0.630859375,0.6318359375,0.6220703125,0.6044921875,0.5849609375,0.572265625,0.5703125,0.55859375,0.505859375,0.4287109375,0.365234375,0.3447265625,0.373046875,0.4287109375,0.4921875,0.5537109375,0.6005859375,0.62109375,0.6201171875,0.615234375,0.6220703125,0.6181640625,0.5625,0.47265625,0.3916015625,0.3583984375,0.3837890625,0.4482421875,0.5068359375,0.515625,0.4716796875,0.4052734375,0.361328125,0.3701171875,0.4287109375,0.5078125,0.595703125,0.650390625,0.63671875,0.55859375,0.4580078125,0.376953125,0.30078125,0.220703125,0.177734375,0.201171875,0.28125,0.376953125,0.4482421875,0.4990234375,0.505859375,0.462890625,0.396484375,0.3447265625,0.337890625,0.376953125,0.4375,0.5185546875,0.58984375,0.6123046875,0.5791015625,0.5126953125,0.4482421875,0.39453125,0.376953125,0.3994140625,0.4423828125,0.474609375,0.470703125,0.4287109375,0.3837890625,0.3642578125,0.369140625,0.384765625,0.390625,0.3701171875,0.3251953125,0.2900390625,0.3154296875,0.3984375,0.49609375,0.5595703125,0.55859375,0.5,0.435546875,0.41015625,0.443359375,0.5234375,0.6142578125,0.669921875,0.673828125,0.6630859375,0.6552734375,0.650390625,0.6455078125,0.6396484375,0.6318359375,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.4970703125,0.5009765625,0.458984375,0.40234375,0.3701171875,0.38671875,0.4482421875,0.5078125,0.515625,0.4638671875,0.3798828125,0.30859375,0.2890625,0.3251953125,0.3828125,0.455078125,0.52734375,0.57421875,0.5888671875,0.5810546875,0.5703125,0.56640625,0.5859375,0.6181640625,0.671875,0.70703125,0.6982421875,0.6484375,0.5791015625,0.515625,0.484375,0.4892578125,0.5087890625,0.5166015625,0.490234375,0.4296875,0.3759765625,0.384765625,0.45703125,0.552734375,0.6220703125,0.6259765625,0.5693359375,0.5078125,0.486328125,0.5068359375,0.5458984375,0.568359375,0.5498046875,0.4892578125,0.4228515625,0.3798828125,0.3828125,0.4306640625,0.4990234375,0.5478515625,0.5595703125,0.5498046875,0.51171875,0.4638671875,0.439453125,0.45703125,0.5107421875,0.5791015625,0.634765625,0.6279296875,0.5576171875,0.4609375,0.390625,0.384765625,0.439453125,0.5009765625,0.5283203125,0.5205078125,0.498046875,0.490234375,0.517578125,0.5791015625,0.6435546875,0.673828125,0.650390625,0.578125,0.490234375,0.431640625,0.419921875,0.412109375,0.3720703125,0.3212890625,0.29296875,0.3076171875,0.3603515625,0.4296875,0.5029296875,0.5703125,0.61328125,0.6171875,0.591796875,0.56640625,0.5595703125,0.5478515625,0.4990234375,0.4306640625,0.3828125,0.3798828125,0.4228515625,0.4892578125,0.568359375,0.6630859375,0.734375,0.740234375,0.6796875,0.5888671875,0.509765625,0.44921875,0.435546875,0.470703125,0.52734375,0.5654296875,0.556640625,0.5,0.435546875,0.3955078125,0.40234375,0.453125,0.521484375,0.5693359375,0.5791015625,0.564453125,0.50390625,0.4169921875,0.3466796875,0.3251953125,0.3564453125,0.419921875,0.490234375,0.5595703125,0.6064453125,0.6171875,0.599609375,0.5771484375,0.5693359375,0.576171875,0.609375,0.6494140625,0.6640625,0.638671875,0.580078125,0.509765625,0.4296875,0.3359375,0.2685546875,0.2685546875,0.3359375,0.4296875,0.509765625,0.580078125,0.6376953125,0.6611328125,0.642578125,0.6005859375,0.56640625,0.5595703125,0.5576171875,0.5419921875,0.5107421875,0.4736328125,0.44140625,0.4228515625,0.419921875,0.4140625,0.3935546875,0.3779296875,0.3916015625,0.439453125,0.5087890625,0.5791015625,0.6455078125,0.6943359375,0.7060546875,0.6767578125,0.6259765625,0.5869140625,0.5791015625,0.580078125,0.5791015625,0.576171875,0.572265625,0.5693359375,0.568359375,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5673828125,0.5244140625,0.470703125,0.44140625,0.4560546875,0.5087890625,0.5791015625,0.6484375,0.7001953125,0.7119140625,0.681640625,0.6279296875,0.587890625,0.5791015625,0.5693359375,0.521484375,0.4541015625,0.4052734375,0.4013671875,0.443359375,0.509765625,0.5859375,0.6689453125,0.7177734375,0.697265625,0.6142578125,0.5107421875,0.4296875,0.36328125,0.328125,0.3466796875,0.416015625,0.5029296875,0.564453125,0.5791015625,0.587890625,0.61328125,0.6357421875,0.62890625,0.5830078125,0.5126953125,0.439453125,0.3603515625,0.2666015625,0.2001953125,0.19921875,0.2626953125,0.353515625,0.4296875,0.4990234375,0.5654296875,0.6064453125,0.6123046875,0.58984375,0.5654296875,0.5595703125,0.556640625,0.54296875,0.517578125,0.4873046875,0.4599609375,0.4443359375,0.439453125,0.44140625,0.45703125,0.48828125,0.525390625,0.5576171875,0.576171875,0.5791015625,0.5859375,0.6103515625,0.6328125,0.626953125,0.58203125,0.5126953125,0.439453125,0.359375,0.2646484375,0.1943359375,0.189453125,0.251953125,0.341796875,0.419921875,0.498046875,0.5927734375,0.662109375,0.6669921875,0.6064453125,0.517578125,0.439453125,0.3828125,0.3779296875,0.4287109375,0.5009765625,0.55078125,0.546875,0.4892578125,0.423828125,0.384765625,0.392578125,0.4462890625,0.5185546875,0.5693359375,0.5791015625,0.583984375,0.60546875,0.625,0.6181640625,0.5751953125,0.5087890625,0.439453125,0.3837890625,0.380859375,0.431640625,0.5029296875,0.552734375,0.546875,0.4892578125,0.412109375,0.3212890625,0.259765625,0.263671875,0.333984375,0.4296875,0.509765625,0.5673828125,0.5703125,0.5146484375,0.4345703125,0.37890625,0.3818359375,0.439453125,0.5,0.509765625,0.4677734375,0.4033203125,0.357421875,0.36328125,0.419921875,0.490234375,0.55859375,0.60546875,0.6171875,0.6025390625,0.5830078125,0.5791015625,0.5771484375,0.55859375,0.5234375,0.48046875,0.4443359375,0.423828125,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.412109375,0.3125,0.232421875,0.212890625,0.26171875,0.34375,0.419921875,0.4814453125,0.5087890625,0.5009765625,0.478515625,0.470703125,0.498046875,0.5595703125,0.6181640625,0.630859375,0.5947265625,0.5390625,0.501953125,0.5126953125,0.5693359375,0.642578125,0.7158203125,0.7490234375,0.7099609375,0.61328125,0.5029296875,0.419921875,0.3505859375,0.30078125,0.2919921875,0.3271484375,0.384765625,0.4296875,0.439453125,0.4501953125,0.498046875,0.5615234375,0.6064453125,0.607421875,0.564453125,0.5,0.4345703125,0.3916015625,0.3935546875,0.4404296875,0.5068359375,0.556640625,0.5693359375,0.5703125,0.5703125,0.568359375,0.5654296875,0.5615234375,0.5595703125,0.5595703125,0.546875,0.4912109375,0.4130859375,0.3515625,0.337890625,0.3740234375,0.439453125,0.5107421875,0.576171875,0.6171875,0.62109375,0.5986328125,0.57421875,0.5693359375,0.55859375,0.5087890625,0.4375,0.3857421875,0.3798828125,0.421875,0.4892578125,0.5478515625,0.552734375,0.501953125,0.427734375,0.3759765625,0.380859375,0.439453125,0.51953125,0.6123046875,0.6767578125,0.673828125,0.60546875,0.509765625,0.4296875,0.3515625,0.265625,0.2138671875,0.23046875,0.3095703125,0.41015625,0.4892578125,0.546875,0.55078125,0.5,0.4248046875,0.3720703125,0.3740234375,0.4296875,0.5078125,0.60546875,0.68359375,0.7001953125,0.6494140625,0.5654296875,0.4892578125,0.4296875,0.412109375,0.439453125,0.484375,0.5126953125,0.498046875,0.439453125,0.3818359375,0.369140625,0.4033203125,0.4560546875,0.490234375,0.4775390625,0.419921875,0.365234375,0.3662109375,0.4248046875,0.505859375,0.560546875,0.5576171875,0.5,0.431640625,0.3896484375,0.3955078125,0.4482421875,0.5185546875,0.5693359375,0.5791015625,0.5771484375,0.576171875,0.5751953125,0.5732421875,0.572265625,0.5712890625,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.5478515625,0.5576171875,0.5166015625,0.45703125,0.41796875,0.4296875,0.4892578125,0.5478515625,0.552734375,0.4990234375,0.421875,0.365234375,0.365234375,0.419921875,0.490234375,0.5576171875,0.6025390625,0.611328125,0.5908203125,0.5673828125,0.5595703125,0.56640625,0.5986328125,0.6376953125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.541015625,0.5693359375,0.5537109375,0.5,0.4296875,0.373046875,0.380859375,0.4541015625,0.5546875,0.6279296875,0.6357421875,0.5791015625,0.515625,0.4873046875,0.4951171875,0.5185546875,0.52734375,0.5009765625,0.439453125,0.3828125,0.37890625,0.4306640625,0.50390625,0.5537109375,0.548828125,0.4892578125,0.41796875,0.3583984375,0.3310546875,0.34375,0.380859375,0.4130859375,0.419921875,0.408203125,0.3662109375,0.3154296875,0.2880859375,0.3046875,0.359375,0.4296875,0.4931640625,0.5205078125,0.51171875,0.4873046875,0.478515625,0.505859375,0.5693359375,0.626953125,0.623046875,0.556640625,0.462890625,0.3935546875,0.3857421875,0.439453125,0.5087890625,0.572265625,0.6103515625,0.6123046875,0.5888671875,0.564453125,0.5595703125,0.5517578125,0.5146484375,0.466796875,0.4423828125,0.4580078125,0.5107421875,0.5791015625,0.64453125,0.6787109375,0.66015625,0.59375,0.5107421875,0.453125,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5869140625,0.677734375,0.7392578125,0.7353515625,0.6650390625,0.5693359375,0.4892578125,0.4296875,0.4208984375,0.462890625,0.5263671875,0.568359375,0.55859375,0.5,0.427734375,0.3642578125,0.33203125,0.3408203125,0.376953125,0.41015625,0.419921875,0.416015625,0.396484375,0.3818359375,0.3935546875,0.4404296875,0.5087890625,0.5791015625,0.6416015625,0.6728515625,0.6494140625,0.5791015625,0.4921875,0.4326171875,0.419921875,0.431640625,0.4814453125,0.55078125,0.599609375,0.6015625,0.5576171875,0.4892578125,0.41015625,0.31640625,0.2509765625,0.251953125,0.318359375,0.4111328125,0.4892578125,0.5556640625,0.59765625,0.59375,0.544921875,0.4775390625,0.4296875,0.419921875,0.4248046875,0.4453125,0.4814453125,0.5234375,0.5576171875,0.576171875,0.5791015625,0.5654296875,0.505859375,0.41796875,0.345703125,0.3232421875,0.35546875,0.419921875,0.48828125,0.5390625,0.5517578125,0.5224609375,0.470703125,0.4296875,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.439453125,0.435546875,0.4296875,0.423828125,0.419921875,0.4189453125,0.419921875,0.412109375,0.3759765625,0.330078125,0.3056640625,0.3212890625,0.373046875,0.439453125,0.505859375,0.5537109375,0.5625,0.5302734375,0.4775390625,0.4375,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.5888671875,0.6865234375,0.763671875,0.779296875,0.7275390625,0.64453125,0.5693359375,0.4990234375,0.4326171875,0.3876953125,0.3779296875,0.39453125,0.4150390625,0.419921875,0.431640625,0.490234375,0.5771484375,0.6474609375,0.6689453125,0.6357421875,0.5693359375,0.490234375,0.3984375,0.3349609375,0.337890625,0.4072265625,0.5009765625,0.5791015625,0.6435546875,0.6767578125,0.658203125,0.5908203125,0.5078125,0.451171875,0.439453125,0.4443359375,0.458984375,0.484375,0.5146484375,0.5400390625,0.5546875,0.5595703125,0.55859375,0.544921875,0.517578125,0.4833984375,0.4521484375,0.4345703125,0.4296875,0.44140625,0.5,0.5869140625,0.6572265625,0.6787109375,0.6455078125,0.5791015625,0.4990234375,0.4052734375,0.3388671875,0.3388671875,0.4052734375,0.4990234375,0.5791015625,0.658203125,0.7490234375,0.8115234375,0.8076171875,0.7392578125,0.646484375,0.5693359375,0.5107421875,0.494140625,0.5205078125,0.5634765625,0.587890625,0.5693359375,0.509765625,0.439453125,0.37890625,0.3486328125,0.359375,0.396484375,0.4296875,0.439453125,0.4541015625,0.513671875,0.5966796875,0.6630859375,0.6796875,0.64453125,0.5791015625,0.51953125,0.5,0.5224609375,0.5615234375,0.5830078125,0.5615234375,0.5,0.419921875,0.328125,0.2646484375,0.2685546875,0.3369140625,0.4306640625,0.509765625,0.5693359375,0.5888671875,0.564453125,0.5244140625,0.5,0.51953125,0.5791015625,0.63671875,0.6455078125,0.6015625,0.537109375,0.4931640625,0.5009765625,0.5595703125,0.6240234375,0.658203125,0.640625,0.57421875,0.490234375,0.4326171875,0.419921875,0.423828125,0.4423828125,0.478515625,0.5205078125,0.556640625,0.5751953125,0.5791015625,0.5869140625,0.615234375,0.646484375,0.6513671875,0.619140625,0.55859375,0.4892578125,0.4150390625,0.3359375,0.291015625,0.3134765625,0.3974609375,0.4990234375,0.5791015625,0.6337890625,0.625,0.5517578125,0.4521484375,0.3798828125,0.373046875,0.4296875,0.4892578125,0.5,0.4599609375,0.3994140625,0.359375,0.3701171875,0.4296875,0.5126953125,0.6240234375,0.7216796875,0.7587890625,0.72265625,0.6455078125,0.5693359375,0.4990234375,0.4462890625,0.431640625,0.4609375,0.5146484375,0.5576171875,0.5693359375,0.5791015625,0.6123046875,0.6484375,0.6572265625,0.6240234375,0.5615234375,0.4892578125,0.41796875,0.3564453125,0.326171875,0.3369140625,0.375,0.41015625,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.4326171875,0.408203125,0.3837890625,0.3857421875,0.42578125,0.490234375,0.5595703125,0.623046875,0.658203125,0.6435546875,0.5810546875,0.5009765625,0.4443359375,0.4296875,0.419921875,0.3876953125,0.353515625,0.345703125,0.376953125,0.439453125,0.509765625,0.5693359375,0.5869140625,0.5595703125,0.5146484375,0.486328125,0.5009765625,0.5595703125,0.6357421875,0.7294921875,0.798828125,0.8046875,0.7451171875,0.65625,0.5791015625,0.5,0.3994140625,0.318359375,0.2998046875,0.349609375,0.43359375,0.509765625,0.568359375,0.583984375,0.5546875,0.5078125,0.48046875,0.498046875,0.5595703125,0.6376953125,0.724609375,0.779296875,0.765625,0.6875,0.5888671875,0.509765625,0.453125,0.451171875,0.505859375,0.5830078125,0.6376953125,0.6357421875,0.5791015625,0.5205078125,0.5078125,0.5439453125,0.599609375,0.63671875,0.6259765625,0.5693359375,0.5107421875,0.4931640625,0.5185546875,0.560546875,0.5849609375,0.568359375,0.509765625,0.44140625,0.380859375,0.349609375,0.35546875,0.38671875,0.4140625,0.419921875,0.41796875,0.41796875,0.4189453125,0.4208984375,0.421875,0.4208984375,0.419921875,0.41015625,0.375,0.3369140625,0.326171875,0.3564453125,0.41796875,0.4892578125,0.5498046875,0.5625,0.5244140625,0.4658203125,0.4248046875,0.4326171875,0.4892578125,0.5478515625,0.5654296875,0.5419921875,0.501953125,0.4794921875,0.4990234375,0.5595703125,0.625,0.6611328125,0.6474609375,0.5859375,0.5078125,0.4521484375,0.439453125,0.4501953125,0.4970703125,0.560546875,0.5146484375,0.5322265625,0.5068359375,0.4482421875,0.376953125,0.32421875,0.349609375,0.4560546875,0.5947265625,0.701171875,0.7265625,0.673828125,0.6064453125,0.5595703125,0.5380859375,0.529296875,0.517578125,0.484375,0.4287109375,0.3798828125,0.37890625,0.4248046875,0.486328125,0.5234375,0.5087890625,0.4482421875,0.376953125,0.3154296875,0.2822265625,0.28515625,0.3095703125,0.3291015625,0.3251953125,0.306640625,0.263671875,0.2197265625,0.2080078125,0.240234375,0.3046875,0.376953125,0.4423828125,0.4833984375,0.498046875,0.5009765625,0.515625,0.556640625,0.6220703125,0.6796875,0.6796875,0.611328125,0.5087890625,0.421875,0.3935546875,0.4287109375,0.48046875,0.5283203125,0.5615234375,0.5732421875,0.568359375,0.5634765625,0.5703125,0.57421875,0.55859375,0.5380859375,0.53515625,0.5615234375,0.6123046875,0.673828125,0.7275390625,0.7421875,0.69921875,0.6083984375,0.5087890625,0.443359375,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.6181640625,0.6923828125,0.734375,0.7109375,0.62890625,0.5283203125,0.4482421875,0.3896484375,0.384765625,0.4365234375,0.5107421875,0.5625,0.55859375,0.5,0.423828125,0.3447265625,0.28515625,0.2646484375,0.28125,0.3095703125,0.3251953125,0.3369140625,0.3564453125,0.3984375,0.46484375,0.5439453125,0.6171875,0.673828125,0.71484375,0.7099609375,0.6416015625,0.5283203125,0.4130859375,0.3408203125,0.3251953125,0.3388671875,0.39453125,0.4755859375,0.5380859375,0.552734375,0.5146484375,0.4482421875,0.369140625,0.28125,0.22265625,0.2265625,0.2919921875,0.3779296875,0.4482421875,0.5029296875,0.52734375,0.50390625,0.4404296875,0.3701171875,0.3271484375,0.3251953125,0.34375,0.3935546875,0.4736328125,0.560546875,0.630859375,0.6669921875,0.673828125,0.6572265625,0.5791015625,0.455078125,0.337890625,0.271484375,0.2744140625,0.3251953125,0.3857421875,0.4296875,0.44140625,0.416015625,0.3701171875,0.333984375,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4248046875,0.40625,0.3759765625,0.34375,0.3232421875,0.318359375,0.3251953125,0.3310546875,0.3212890625,0.30859375,0.3095703125,0.3349609375,0.37890625,0.4287109375,0.4755859375,0.5009765625,0.4912109375,0.451171875,0.404296875,0.3759765625,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.619140625,0.7021484375,0.767578125,0.7822265625,0.7421875,0.677734375,0.6220703125,0.56640625,0.4990234375,0.431640625,0.3798828125,0.349609375,0.3359375,0.3251953125,0.33203125,0.40234375,0.5205078125,0.6328125,0.693359375,0.68359375,0.6220703125,0.544921875,0.462890625,0.4150390625,0.43359375,0.509765625,0.6025390625,0.673828125,0.7255859375,0.7353515625,0.6845703125,0.5888671875,0.4912109375,0.43359375,0.4287109375,0.44140625,0.4599609375,0.4853515625,0.513671875,0.5390625,0.5576171875,0.5703125,0.5771484375,0.5673828125,0.5341796875,0.4833984375,0.4306640625,0.3935546875,0.376953125,0.3837890625,0.4541015625,0.5712890625,0.6845703125,0.7451171875,0.734375,0.673828125,0.59375,0.4990234375,0.4326171875,0.4326171875,0.4990234375,0.59375,0.673828125,0.7490234375,0.8251953125,0.8642578125,0.841796875,0.767578125,0.6826171875,0.6220703125,0.5791015625,0.5693359375,0.58984375,0.6181640625,0.62890625,0.60546875,0.55078125,0.4873046875,0.421875,0.375,0.3642578125,0.384765625,0.4130859375,0.4287109375,0.453125,0.5263671875,0.6279296875,0.71484375,0.75,0.728515625,0.673828125,0.6201171875,0.595703125,0.5986328125,0.609375,0.6025390625,0.564453125,0.5,0.4228515625,0.3408203125,0.29296875,0.3115234375,0.3876953125,0.48046875,0.55078125,0.60546875,0.62890625,0.6220703125,0.6025390625,0.595703125,0.619140625,0.673828125,0.7216796875,0.71875,0.6611328125,0.58203125,0.5244140625,0.521484375,0.5703125,0.6240234375,0.6396484375,0.595703125,0.505859375,0.4052734375,0.33984375,0.3251953125,0.333984375,0.3759765625,0.453125,0.5458984375,0.623046875,0.6650390625,0.673828125,0.6748046875,0.677734375,0.6650390625,0.626953125,0.5673828125,0.5029296875,0.4482421875,0.39453125,0.349609375,0.3447265625,0.3994140625,0.4990234375,0.6015625,0.673828125,0.7158203125,0.68359375,0.5751953125,0.4404296875,0.341796875,0.3232421875,0.376953125,0.4375,0.4482421875,0.4072265625,0.3466796875,0.306640625,0.3173828125,0.376953125,0.462890625,0.5869140625,0.7080078125,0.7724609375,0.759765625,0.6953125,0.6220703125,0.55078125,0.4921875,0.470703125,0.4970703125,0.552734375,0.6015625,0.6220703125,0.6376953125,0.666015625,0.6826171875,0.662109375,0.6025390625,0.5234375,0.4482421875,0.3740234375,0.30078125,0.251953125,0.24609375,0.2744140625,0.30859375,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.4248046875,0.4130859375,0.40625,0.421875,0.462890625,0.517578125,0.5703125,0.6162109375,0.63671875,0.6103515625,0.54296875,0.4599609375,0.3994140625,0.376953125,0.3623046875,0.3408203125,0.33203125,0.3564453125,0.4140625,0.486328125,0.55078125,0.6044921875,0.6220703125,0.599609375,0.556640625,0.5244140625,0.5283203125,0.5703125,0.630859375,0.7158203125,0.7939453125,0.826171875,0.7998046875,0.7373046875,0.673828125,0.6025390625,0.5068359375,0.4228515625,0.390625,0.419921875,0.4853515625,0.55078125,0.6015625,0.6064453125,0.5693359375,0.517578125,0.4892578125,0.5087890625,0.5703125,0.6474609375,0.7333984375,0.7880859375,0.779296875,0.7099609375,0.62109375,0.55078125,0.5029296875,0.5087890625,0.5703125,0.654296875,0.7158203125,0.7216796875,0.673828125,0.619140625,0.59765625,0.61328125,0.6474609375,0.671875,0.6640625,0.6220703125,0.5771484375,0.5615234375,0.57421875,0.5986328125,0.611328125,0.595703125,0.55078125,0.498046875,0.439453125,0.38671875,0.353515625,0.3388671875,0.333984375,0.3251953125,0.3173828125,0.3154296875,0.3212890625,0.330078125,0.3359375,0.333984375,0.3251953125,0.30859375,0.2744140625,0.24609375,0.251953125,0.30078125,0.3740234375,0.4482421875,0.5107421875,0.533203125,0.5087890625,0.45703125,0.4130859375,0.408203125,0.4482421875,0.4921875,0.5078125,0.4990234375,0.484375,0.484375,0.5146484375,0.5703125,0.6259765625,0.654296875,0.6337890625,0.5703125,0.4931640625,0.4404296875,0.4287109375,0.4375,0.4755859375,0.525390625,0.53515625,0.5380859375,0.5009765625,0.4365234375,0.3642578125,0.3134765625,0.34765625,0.4716796875,0.6318359375,0.755859375,0.791015625,0.740234375,0.669921875,0.611328125,0.5712890625,0.5498046875,0.5341796875,0.509765625,0.46875,0.43359375,0.4326171875,0.4609375,0.4912109375,0.4951171875,0.4599609375,0.39453125,0.3251953125,0.271484375,0.248046875,0.25390625,0.271484375,0.27734375,0.2587890625,0.2255859375,0.177734375,0.142578125,0.1513671875,0.2080078125,0.2880859375,0.3642578125,0.4296875,0.4736328125,0.494140625,0.5048828125,0.525390625,0.5693359375,0.634765625,0.6982421875,0.7197265625,0.681640625,0.599609375,0.5126953125,0.46484375,0.46875,0.4853515625,0.4912109375,0.48828125,0.4853515625,0.490234375,0.505859375,0.5302734375,0.5537109375,0.572265625,0.5908203125,0.6162109375,0.6513671875,0.6943359375,0.740234375,0.7783203125,0.7783203125,0.7255859375,0.6357421875,0.541015625,0.4814453125,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6533203125,0.703125,0.7177734375,0.673828125,0.580078125,0.4755859375,0.39453125,0.3369140625,0.3388671875,0.40234375,0.4912109375,0.5546875,0.556640625,0.5,0.4208984375,0.3232421875,0.2373046875,0.1923828125,0.197265625,0.228515625,0.2587890625,0.29296875,0.359375,0.4580078125,0.56640625,0.6572265625,0.7138671875,0.740234375,0.7470703125,0.703125,0.5986328125,0.4638671875,0.341796875,0.2724609375,0.2587890625,0.2724609375,0.330078125,0.4140625,0.48046875,0.4970703125,0.4609375,0.39453125,0.318359375,0.2392578125,0.1923828125,0.2041015625,0.265625,0.33984375,0.39453125,0.431640625,0.4326171875,0.3916015625,0.3251953125,0.2666015625,0.2431640625,0.2587890625,0.2958984375,0.373046875,0.4853515625,0.6015625,0.689453125,0.732421875,0.740234375,0.72265625,0.6376953125,0.4970703125,0.3505859375,0.2509765625,0.2255859375,0.2587890625,0.302734375,0.3359375,0.3447265625,0.3251953125,0.2919921875,0.265625,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4609375,0.419921875,0.353515625,0.2861328125,0.244140625,0.23828125,0.2587890625,0.287109375,0.3203125,0.3583984375,0.39453125,0.42578125,0.44921875,0.46875,0.4814453125,0.466796875,0.427734375,0.380859375,0.34765625,0.34375,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.65234375,0.7001953125,0.7294921875,0.7255859375,0.6953125,0.6591796875,0.634765625,0.611328125,0.5673828125,0.4990234375,0.4189453125,0.3447265625,0.291015625,0.2587890625,0.251953125,0.3203125,0.4521484375,0.59375,0.68359375,0.6923828125,0.634765625,0.5615234375,0.4951171875,0.4716796875,0.5107421875,0.595703125,0.68359375,0.740234375,0.7744140625,0.7587890625,0.6875,0.5849609375,0.49609375,0.4560546875,0.46875,0.4921875,0.50390625,0.5029296875,0.49609375,0.4951171875,0.5068359375,0.5302734375,0.5556640625,0.5703125,0.5576171875,0.513671875,0.4521484375,0.3974609375,0.3642578125,0.357421875,0.4248046875,0.5576171875,0.6982421875,0.7890625,0.7978515625,0.740234375,0.66015625,0.56640625,0.4990234375,0.4990234375,0.56640625,0.66015625,0.740234375,0.8095703125,0.8603515625,0.8642578125,0.814453125,0.734375,0.666015625,0.634765625,0.6220703125,0.630859375,0.654296875,0.673828125,0.6728515625,0.646484375,0.6044921875,0.5537109375,0.4892578125,0.4306640625,0.40234375,0.4111328125,0.4404296875,0.46875,0.5078125,0.5859375,0.685546875,0.7646484375,0.796875,0.78125,0.740234375,0.7001953125,0.6796875,0.6708984375,0.6572265625,0.6240234375,0.568359375,0.5,0.42578125,0.3603515625,0.3359375,0.375,0.4609375,0.5478515625,0.6044921875,0.6455078125,0.6689453125,0.673828125,0.6708984375,0.67578125,0.69921875,0.740234375,0.7734375,0.75390625,0.681640625,0.587890625,0.515625,0.4970703125,0.5302734375,0.5673828125,0.568359375,0.515625,0.4248046875,0.3310546875,0.271484375,0.2587890625,0.2705078125,0.328125,0.435546875,0.5634765625,0.6708984375,0.728515625,0.740234375,0.734375,0.7041015625,0.640625,0.5576171875,0.4765625,0.4208984375,0.39453125,0.3779296875,0.3798828125,0.4189453125,0.4990234375,0.599609375,0.685546875,0.740234375,0.765625,0.7109375,0.58203125,0.43359375,0.3291015625,0.3095703125,0.3642578125,0.423828125,0.4345703125,0.39453125,0.333984375,0.2939453125,0.3046875,0.3642578125,0.4501953125,0.5771484375,0.7041015625,0.775390625,0.76953125,0.7080078125,0.634765625,0.5615234375,0.494140625,0.4609375,0.48046875,0.5380859375,0.599609375,0.634765625,0.6650390625,0.697265625,0.701171875,0.6572265625,0.5703125,0.4736328125,0.39453125,0.3173828125,0.2333984375,0.1708984375,0.154296875,0.181640625,0.2265625,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.4677734375,0.4638671875,0.4638671875,0.4716796875,0.4892578125,0.509765625,0.5302734375,0.5478515625,0.5576171875,0.54296875,0.5029296875,0.4462890625,0.396484375,0.3642578125,0.337890625,0.3212890625,0.3359375,0.3916015625,0.4736328125,0.55078125,0.6044921875,0.64453125,0.6572265625,0.634765625,0.587890625,0.541015625,0.51953125,0.5302734375,0.5595703125,0.625,0.708984375,0.7763671875,0.80078125,0.7822265625,0.740234375,0.6865234375,0.6103515625,0.5380859375,0.501953125,0.5146484375,0.5576171875,0.6044921875,0.63671875,0.619140625,0.5576171875,0.48828125,0.451171875,0.4677734375,0.5302734375,0.607421875,0.6953125,0.7587890625,0.767578125,0.72265625,0.6572265625,0.6044921875,0.5703125,0.580078125,0.6357421875,0.708984375,0.7646484375,0.7744140625,0.740234375,0.6962890625,0.6611328125,0.6435546875,0.642578125,0.6494140625,0.6494140625,0.634765625,0.6181640625,0.6123046875,0.6162109375,0.6240234375,0.6279296875,0.62109375,0.6044921875,0.58203125,0.541015625,0.48046875,0.408203125,0.33984375,0.2900390625,0.2587890625,0.2373046875,0.2333984375,0.248046875,0.2705078125,0.28515625,0.28125,0.2587890625,0.2265625,0.181640625,0.154296875,0.1708984375,0.2333984375,0.3173828125,0.39453125,0.4619140625,0.5029296875,0.501953125,0.4638671875,0.4140625,0.3857421875,0.39453125,0.41015625,0.4140625,0.4140625,0.421875,0.4462890625,0.4853515625,0.5302734375,0.572265625,0.5986328125,0.5927734375,0.5576171875,0.5107421875,0.4765625,0.46875,0.4736328125,0.4912109375,0.5078125,0.5849609375,0.580078125,0.5361328125,0.4677734375,0.39453125,0.3427734375,0.3740234375,0.4912109375,0.6435546875,0.7607421875,0.7919921875,0.740234375,0.6689453125,0.6064453125,0.56640625,0.5517578125,0.5537109375,0.55078125,0.5302734375,0.5107421875,0.5126953125,0.5244140625,0.521484375,0.4912109375,0.43359375,0.3642578125,0.2978515625,0.259765625,0.2568359375,0.2783203125,0.2998046875,0.2958984375,0.2587890625,0.2080078125,0.1494140625,0.1181640625,0.142578125,0.2197265625,0.3154296875,0.39453125,0.458984375,0.4951171875,0.501953125,0.4970703125,0.50390625,0.5400390625,0.6044921875,0.6748046875,0.7294921875,0.740234375,0.6982421875,0.625,0.5595703125,0.5302734375,0.50390625,0.4560546875,0.4052734375,0.3779296875,0.38671875,0.423828125,0.46875,0.515625,0.56640625,0.6162109375,0.6572265625,0.6884765625,0.71484375,0.740234375,0.7607421875,0.7548828125,0.712890625,0.6455078125,0.5791015625,0.5380859375,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6640625,0.6923828125,0.6904296875,0.6376953125,0.544921875,0.443359375,0.3642578125,0.3076171875,0.3134765625,0.3837890625,0.48046875,0.55078125,0.556640625,0.5,0.41796875,0.3095703125,0.208984375,0.15625,0.1650390625,0.2109375,0.2587890625,0.31640625,0.419921875,0.5498046875,0.6650390625,0.7353515625,0.75390625,0.740234375,0.7099609375,0.6376953125,0.52734375,0.408203125,0.314453125,0.267578125,0.2587890625,0.271484375,0.326171875,0.40234375,0.4609375,0.470703125,0.431640625,0.3642578125,0.291015625,0.22265625,0.189453125,0.208984375,0.267578125,0.328125,0.3642578125,0.380859375,0.361328125,0.30859375,0.2509765625,0.2158203125,0.220703125,0.2587890625,0.314453125,0.40625,0.521484375,0.6298828125,0.703125,0.7353515625,0.740234375,0.7255859375,0.6513671875,0.5244140625,0.3857421875,0.283203125,0.244140625,0.2587890625,0.2841796875,0.3037109375,0.30859375,0.2978515625,0.2783203125,0.2626953125,0.2587890625,0.265625,0.2978515625,0.3583984375,0.4306640625,0.490234375,0.5234375,0.5302734375,0.517578125,0.4580078125,0.36328125,0.2734375,0.220703125,0.220703125,0.2587890625,0.3115234375,0.388671875,0.4716796875,0.5322265625,0.5556640625,0.5478515625,0.5302734375,0.501953125,0.4453125,0.3779296875,0.3310546875,0.3232421875,0.3505859375,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.6572265625,0.662109375,0.6455078125,0.619140625,0.595703125,0.5908203125,0.6044921875,0.62109375,0.619140625,0.580078125,0.5,0.3994140625,0.3134765625,0.2587890625,0.232421875,0.283203125,0.4052734375,0.546875,0.64453125,0.66015625,0.6044921875,0.5341796875,0.4833984375,0.48046875,0.53515625,0.6240234375,0.701171875,0.740234375,0.7548828125,0.7216796875,0.646484375,0.560546875,0.501953125,0.494140625,0.5302734375,0.56640625,0.5654296875,0.5263671875,0.47265625,0.43359375,0.4326171875,0.46875,0.517578125,0.568359375,0.59375,0.57421875,0.5146484375,0.4462890625,0.39453125,0.3681640625,0.4189453125,0.541015625,0.681640625,0.779296875,0.7958984375,0.740234375,0.66015625,0.56640625,0.4990234375,0.4990234375,0.56640625,0.66015625,0.740234375,0.8037109375,0.8291015625,0.7978515625,0.7236328125,0.6435546875,0.599609375,0.6044921875,0.626953125,0.66015625,0.6904296875,0.701171875,0.689453125,0.662109375,0.634765625,0.6005859375,0.5419921875,0.48046875,0.4443359375,0.44921875,0.484375,0.5302734375,0.58203125,0.65625,0.7314453125,0.779296875,0.787109375,0.767578125,0.740234375,0.71875,0.7119140625,0.70703125,0.6845703125,0.6376953125,0.5712890625,0.5,0.4296875,0.3779296875,0.375,0.4306640625,0.5185546875,0.595703125,0.634765625,0.6591796875,0.67578125,0.6845703125,0.6904296875,0.69921875,0.7158203125,0.740234375,0.755859375,0.7265625,0.6513671875,0.5576171875,0.482421875,0.453125,0.46875,0.490234375,0.4833984375,0.44140625,0.375,0.30859375,0.267578125,0.2587890625,0.2705078125,0.328125,0.435546875,0.5634765625,0.6708984375,0.728515625,0.740234375,0.728515625,0.671875,0.57421875,0.466796875,0.3857421875,0.3544921875,0.3642578125,0.3876953125,0.431640625,0.5,0.580078125,0.654296875,0.7080078125,0.740234375,0.748046875,0.68359375,0.5576171875,0.4248046875,0.3408203125,0.3359375,0.39453125,0.4541015625,0.46484375,0.4248046875,0.3642578125,0.32421875,0.3349609375,0.39453125,0.4794921875,0.5986328125,0.7119140625,0.767578125,0.748046875,0.6796875,0.6044921875,0.5283203125,0.4501953125,0.40234375,0.4140625,0.4755859375,0.55078125,0.6044921875,0.6533203125,0.6982421875,0.70703125,0.654296875,0.5537109375,0.4453125,0.3642578125,0.28515625,0.1943359375,0.123046875,0.1064453125,0.1455078125,0.20703125,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.53125,0.53515625,0.53515625,0.52734375,0.509765625,0.4892578125,0.46875,0.455078125,0.458984375,0.47265625,0.4794921875,0.46875,0.4375,0.39453125,0.3525390625,0.3330078125,0.3583984375,0.4306640625,0.5224609375,0.59765625,0.634765625,0.6591796875,0.669921875,0.6513671875,0.6044921875,0.544921875,0.4951171875,0.46875,0.4609375,0.4951171875,0.5712890625,0.662109375,0.732421875,0.7568359375,0.740234375,0.7080078125,0.6611328125,0.61328125,0.5849609375,0.5859375,0.6083984375,0.634765625,0.646484375,0.6044921875,0.5185546875,0.43359375,0.3896484375,0.4072265625,0.46875,0.546875,0.634765625,0.7041015625,0.728515625,0.7080078125,0.6669921875,0.634765625,0.615234375,0.6240234375,0.662109375,0.712890625,0.7509765625,0.759765625,0.740234375,0.708984375,0.662109375,0.6123046875,0.580078125,0.5732421875,0.5859375,0.6044921875,0.62109375,0.6279296875,0.6240234375,0.6162109375,0.6123046875,0.6181640625,0.634765625,0.6513671875,0.6455078125,0.5986328125,0.5107421875,0.404296875,0.314453125,0.2587890625,0.220703125,0.21484375,0.240234375,0.2783203125,0.3037109375,0.296875,0.2587890625,0.20703125,0.1455078125,0.1064453125,0.123046875,0.1943359375,0.28515625,0.3642578125,0.4365234375,0.5,0.52734375,0.5048828125,0.4482421875,0.392578125,0.3642578125,0.3447265625,0.328125,0.328125,0.3525390625,0.3955078125,0.4384765625,0.46875,0.49609375,0.5224609375,0.541015625,0.5458984375,0.5400390625,0.5322265625,0.5302734375,0.529296875,0.5244140625,0.5078125,0.6298828125,0.6279296875,0.587890625,0.5205078125,0.4482421875,0.3935546875,0.41015625,0.5,0.62109375,0.7109375,0.7275390625,0.673828125,0.6025390625,0.5439453125,0.5146484375,0.5224609375,0.55078125,0.572265625,0.5703125,0.5654296875,0.576171875,0.5849609375,0.568359375,0.51953125,0.4501953125,0.376953125,0.314453125,0.2919921875,0.3125,0.35546875,0.3857421875,0.376953125,0.3251953125,0.2587890625,0.1875,0.1494140625,0.177734375,0.263671875,0.3662109375,0.4482421875,0.509765625,0.533203125,0.5166015625,0.482421875,0.4658203125,0.4892578125,0.55078125,0.62890625,0.712890625,0.7685546875,0.7646484375,0.7060546875,0.62890625,0.5703125,0.5087890625,0.4189453125,0.33203125,0.2900390625,0.30859375,0.365234375,0.4287109375,0.4931640625,0.5615234375,0.619140625,0.6533203125,0.6640625,0.666015625,0.673828125,0.6806640625,0.67578125,0.6552734375,0.623046875,0.5927734375,0.57421875,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.6357421875,0.6552734375,0.65625,0.6181640625,0.5419921875,0.4541015625,0.376953125,0.3203125,0.32421875,0.3916015625,0.4853515625,0.552734375,0.556640625,0.5,0.4169921875,0.3076171875,0.2099609375,0.1689453125,0.1943359375,0.259765625,0.3251953125,0.400390625,0.517578125,0.64453125,0.7314453125,0.75390625,0.7236328125,0.673828125,0.615234375,0.5361328125,0.44921875,0.37890625,0.3388671875,0.326171875,0.3251953125,0.3369140625,0.384765625,0.4501953125,0.494140625,0.4921875,0.4462890625,0.376953125,0.3056640625,0.248046875,0.2265625,0.2529296875,0.3076171875,0.357421875,0.376953125,0.3779296875,0.34375,0.2880859375,0.244140625,0.236328125,0.2685546875,0.3251953125,0.3935546875,0.48046875,0.5693359375,0.6357421875,0.6669921875,0.673828125,0.673828125,0.6640625,0.615234375,0.5302734375,0.43359375,0.3583984375,0.3232421875,0.3251953125,0.3359375,0.34375,0.345703125,0.3408203125,0.3330078125,0.3271484375,0.3251953125,0.3310546875,0.361328125,0.416015625,0.48046875,0.5341796875,0.564453125,0.5703125,0.5556640625,0.490234375,0.390625,0.2998046875,0.2568359375,0.271484375,0.3251953125,0.3984375,0.501953125,0.6064453125,0.666015625,0.666015625,0.6220703125,0.5703125,0.5087890625,0.4208984375,0.3388671875,0.3017578125,0.32421875,0.3837890625,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.623046875,0.5927734375,0.541015625,0.49609375,0.482421875,0.5048828125,0.55078125,0.6044921875,0.6494140625,0.654296875,0.599609375,0.5,0.3974609375,0.3251953125,0.28125,0.3056640625,0.3974609375,0.513671875,0.5966796875,0.607421875,0.55078125,0.482421875,0.439453125,0.4453125,0.50390625,0.5859375,0.650390625,0.673828125,0.6728515625,0.6318359375,0.5654296875,0.5078125,0.48828125,0.5146484375,0.5703125,0.6181640625,0.6103515625,0.5439453125,0.455078125,0.388671875,0.380859375,0.4287109375,0.498046875,0.580078125,0.6416015625,0.646484375,0.59375,0.515625,0.4482421875,0.4033203125,0.427734375,0.5205078125,0.6357421875,0.71875,0.7294921875,0.673828125,0.59375,0.4990234375,0.4326171875,0.4326171875,0.4990234375,0.59375,0.673828125,0.7333984375,0.7412109375,0.689453125,0.60546875,0.5341796875,0.5146484375,0.55078125,0.603515625,0.6552734375,0.6884765625,0.6904296875,0.666015625,0.6376953125,0.6220703125,0.6015625,0.552734375,0.4931640625,0.4580078125,0.4658203125,0.509765625,0.5703125,0.6337890625,0.697265625,0.7392578125,0.7451171875,0.720703125,0.689453125,0.673828125,0.6689453125,0.6826171875,0.6953125,0.68359375,0.6396484375,0.572265625,0.5,0.4306640625,0.3876953125,0.3935546875,0.4521484375,0.5341796875,0.5986328125,0.6220703125,0.6318359375,0.6396484375,0.6455078125,0.650390625,0.6552734375,0.6630859375,0.673828125,0.6767578125,0.6484375,0.587890625,0.5146484375,0.4541015625,0.42578125,0.4287109375,0.4365234375,0.431640625,0.41015625,0.37890625,0.34765625,0.3291015625,0.3251953125,0.333984375,0.3759765625,0.453125,0.5458984375,0.623046875,0.6650390625,0.673828125,0.6591796875,0.59375,0.490234375,0.3896484375,0.3330078125,0.3349609375,0.376953125,0.4326171875,0.5,0.5673828125,0.619140625,0.6494140625,0.6630859375,0.673828125,0.66796875,0.6064453125,0.5048828125,0.41015625,0.3662109375,0.384765625,0.4482421875,0.5078125,0.5185546875,0.478515625,0.41796875,0.376953125,0.3876953125,0.4482421875,0.5302734375,0.63671875,0.7265625,0.75390625,0.7099609375,0.62890625,0.55078125,0.47265625,0.384765625,0.326171875,0.330078125,0.39453125,0.4814453125,0.55078125,0.6171875,0.6826171875,0.7080078125,0.6669921875,0.5693359375,0.4599609375,0.376953125,0.2978515625,0.203125,0.1328125,0.1240234375,0.1767578125,0.2568359375,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.57421875,0.5859375,0.5927734375,0.5771484375,0.5361328125,0.4814453125,0.4287109375,0.388671875,0.388671875,0.4296875,0.482421875,0.5126953125,0.5,0.4482421875,0.390625,0.361328125,0.380859375,0.4482421875,0.5341796875,0.5986328125,0.6220703125,0.634765625,0.6484375,0.6455078125,0.611328125,0.55078125,0.484375,0.4287109375,0.38671875,0.384765625,0.4375,0.5283203125,0.619140625,0.6708984375,0.673828125,0.66015625,0.640625,0.619140625,0.60546875,0.6044921875,0.611328125,0.6220703125,0.6171875,0.5595703125,0.46484375,0.3798828125,0.341796875,0.365234375,0.4287109375,0.5048828125,0.5869140625,0.650390625,0.67578125,0.6630859375,0.6376953125,0.6220703125,0.6142578125,0.619140625,0.63671875,0.6591796875,0.67578125,0.6806640625,0.673828125,0.6533203125,0.6015625,0.5341796875,0.484375,0.474609375,0.5029296875,0.55078125,0.595703125,0.611328125,0.5986328125,0.57421875,0.5615234375,0.5771484375,0.6220703125,0.6728515625,0.7099609375,0.69921875,0.625,0.509765625,0.3994140625,0.3251953125,0.2744140625,0.265625,0.2998046875,0.3515625,0.3857421875,0.376953125,0.3251953125,0.2568359375,0.1767578125,0.1240234375,0.1328125,0.203125,0.2978515625,0.376953125,0.4541015625,0.5361328125,0.587890625,0.5791015625,0.515625,0.4365234375,0.376953125,0.3271484375,0.2900390625,0.28515625,0.3154296875,0.3671875,0.41015625,0.4287109375,0.4423828125,0.466796875,0.5,0.533203125,0.556640625,0.568359375,0.5703125,0.5673828125,0.5498046875,0.5146484375,0.638671875,0.650390625,0.6220703125,0.560546875,0.4892578125,0.431640625,0.431640625,0.4921875,0.576171875,0.63671875,0.63671875,0.5791015625,0.5087890625,0.455078125,0.4384765625,0.46484375,0.513671875,0.5517578125,0.5595703125,0.564453125,0.58984375,0.61328125,0.6103515625,0.5693359375,0.501953125,0.4296875,0.369140625,0.3564453125,0.3935546875,0.4501953125,0.4892578125,0.478515625,0.419921875,0.34375,0.2587890625,0.2080078125,0.2255859375,0.306640625,0.408203125,0.4892578125,0.5498046875,0.5625,0.52734375,0.4716796875,0.4365234375,0.44921875,0.509765625,0.58984375,0.6884765625,0.763671875,0.775390625,0.720703125,0.634765625,0.5595703125,0.48046875,0.375,0.283203125,0.2509765625,0.2880859375,0.365234375,0.439453125,0.5107421875,0.578125,0.62109375,0.626953125,0.6064453125,0.583984375,0.5791015625,0.580078125,0.5791015625,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5771484375,0.603515625,0.6259765625,0.619140625,0.5732421875,0.5029296875,0.4296875,0.37109375,0.369140625,0.4248046875,0.50390625,0.5595703125,0.5576171875,0.5,0.41796875,0.3154296875,0.232421875,0.2119140625,0.2607421875,0.34375,0.419921875,0.5009765625,0.611328125,0.7109375,0.751953125,0.7236328125,0.6513671875,0.5791015625,0.5087890625,0.439453125,0.3916015625,0.3779296875,0.3935546875,0.4140625,0.419921875,0.4296875,0.47265625,0.5283203125,0.5615234375,0.55078125,0.4990234375,0.4296875,0.359375,0.306640625,0.2919921875,0.3212890625,0.375,0.41796875,0.4296875,0.421875,0.380859375,0.326171875,0.2939453125,0.302734375,0.3525390625,0.419921875,0.4912109375,0.5625,0.6103515625,0.623046875,0.6064453125,0.5849609375,0.5791015625,0.5751953125,0.5546875,0.5185546875,0.4755859375,0.4404296875,0.421875,0.419921875,0.421875,0.4228515625,0.4228515625,0.421875,0.4208984375,0.419921875,0.419921875,0.4228515625,0.4404296875,0.470703125,0.5078125,0.5390625,0.5556640625,0.5595703125,0.5458984375,0.48828125,0.4052734375,0.3388671875,0.3203125,0.3544921875,0.419921875,0.5009765625,0.6083984375,0.7041015625,0.740234375,0.7060546875,0.6318359375,0.5595703125,0.4814453125,0.3818359375,0.3017578125,0.2822265625,0.3310546875,0.4130859375,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5595703125,0.5146484375,0.4501953125,0.404296875,0.4033203125,0.4443359375,0.509765625,0.583984375,0.6630859375,0.7080078125,0.685546875,0.6015625,0.5,0.419921875,0.36328125,0.365234375,0.42578125,0.5087890625,0.568359375,0.5673828125,0.509765625,0.44140625,0.396484375,0.3974609375,0.4453125,0.5146484375,0.56640625,0.5791015625,0.5703125,0.5283203125,0.47265625,0.4365234375,0.4443359375,0.4921875,0.5595703125,0.615234375,0.611328125,0.544921875,0.4541015625,0.3876953125,0.3837890625,0.439453125,0.5185546875,0.6171875,0.693359375,0.7060546875,0.65234375,0.56640625,0.4892578125,0.43359375,0.4345703125,0.4951171875,0.5791015625,0.6376953125,0.63671875,0.5791015625,0.4990234375,0.4052734375,0.3388671875,0.3388671875,0.4052734375,0.4990234375,0.5791015625,0.6376953125,0.6416015625,0.5888671875,0.5107421875,0.455078125,0.4541015625,0.509765625,0.5771484375,0.6357421875,0.6630859375,0.650390625,0.6123046875,0.5791015625,0.5693359375,0.5576171875,0.5146484375,0.4599609375,0.4287109375,0.4404296875,0.4912109375,0.5595703125,0.6279296875,0.6826171875,0.701171875,0.677734375,0.6298828125,0.58984375,0.5791015625,0.5859375,0.6162109375,0.65234375,0.662109375,0.6318359375,0.5712890625,0.5,0.4306640625,0.3857421875,0.3876953125,0.435546875,0.5048828125,0.5556640625,0.5693359375,0.5712890625,0.572265625,0.5732421875,0.5751953125,0.576171875,0.5771484375,0.5791015625,0.5771484375,0.560546875,0.5283203125,0.490234375,0.4580078125,0.44140625,0.439453125,0.4404296875,0.439453125,0.435546875,0.4296875,0.423828125,0.4208984375,0.419921875,0.423828125,0.4423828125,0.478515625,0.5205078125,0.556640625,0.5751953125,0.5791015625,0.56640625,0.5087890625,0.423828125,0.35546875,0.3349609375,0.3671875,0.4296875,0.5,0.56640625,0.611328125,0.62109375,0.6044921875,0.583984375,0.5791015625,0.568359375,0.517578125,0.4443359375,0.3896484375,0.3818359375,0.421875,0.4892578125,0.5498046875,0.5595703125,0.51953125,0.458984375,0.4189453125,0.4296875,0.4892578125,0.5693359375,0.666015625,0.7373046875,0.7431640625,0.6806640625,0.5888671875,0.509765625,0.4296875,0.3369140625,0.271484375,0.2724609375,0.3388671875,0.431640625,0.509765625,0.5859375,0.6689453125,0.7177734375,0.697265625,0.6142578125,0.5107421875,0.4296875,0.349609375,0.255859375,0.1875,0.185546875,0.25,0.341796875,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.56640625,0.5908203125,0.615234375,0.61328125,0.5732421875,0.5087890625,0.439453125,0.3837890625,0.380859375,0.431640625,0.5029296875,0.552734375,0.546875,0.4892578125,0.4228515625,0.380859375,0.3837890625,0.4345703125,0.5048828125,0.5556640625,0.5693359375,0.5771484375,0.6025390625,0.625,0.619140625,0.576171875,0.509765625,0.439453125,0.376953125,0.3447265625,0.3642578125,0.4306640625,0.5126953125,0.568359375,0.5791015625,0.5771484375,0.57421875,0.5703125,0.5673828125,0.56640625,0.5673828125,0.5693359375,0.5576171875,0.501953125,0.419921875,0.3544921875,0.337890625,0.373046875,0.439453125,0.5126953125,0.58203125,0.625,0.6298828125,0.60546875,0.578125,0.5693359375,0.568359375,0.5693359375,0.572265625,0.576171875,0.5791015625,0.580078125,0.5791015625,0.56640625,0.5166015625,0.4501953125,0.4033203125,0.40234375,0.4443359375,0.509765625,0.568359375,0.5849609375,0.560546875,0.5185546875,0.4931640625,0.5107421875,0.5693359375,0.6416015625,0.71484375,0.74609375,0.70703125,0.6103515625,0.5009765625,0.419921875,0.361328125,0.3505859375,0.3896484375,0.44921875,0.48828125,0.478515625,0.419921875,0.341796875,0.25,0.185546875,0.1875,0.255859375,0.349609375,0.4296875,0.5087890625,0.6015625,0.6650390625,0.6640625,0.59765625,0.505859375,0.4296875,0.36328125,0.3134765625,0.3017578125,0.3330078125,0.3857421875,0.4287109375,0.439453125,0.4443359375,0.4599609375,0.4873046875,0.517578125,0.54296875,0.556640625,0.5595703125,0.556640625,0.5419921875,0.513671875,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.552734375,0.6064453125,0.6142578125,0.5751953125,0.509765625,0.44921875,0.4267578125,0.4443359375,0.4794921875,0.4990234375,0.478515625,0.419921875,0.353515625,0.3076171875,0.30078125,0.3349609375,0.390625,0.431640625,0.439453125,0.4501953125,0.5048828125,0.5830078125,0.6455078125,0.66015625,0.6240234375,0.5595703125,0.5009765625,0.490234375,0.529296875,0.5888671875,0.6279296875,0.6181640625,0.5595703125,0.48046875,0.380859375,0.3037109375,0.2900390625,0.34375,0.4306640625,0.509765625,0.5693359375,0.578125,0.53515625,0.4697265625,0.4248046875,0.431640625,0.4892578125,0.5654296875,0.6494140625,0.69921875,0.6806640625,0.599609375,0.4990234375,0.419921875,0.3447265625,0.2685546875,0.2333984375,0.26953125,0.3662109375,0.4765625,0.5595703125,0.6259765625,0.6640625,0.6494140625,0.5859375,0.5029296875,0.4443359375,0.4296875,0.427734375,0.4267578125,0.427734375,0.4306640625,0.4345703125,0.4375,0.439453125,0.44140625,0.4423828125,0.4423828125,0.4423828125,0.4404296875,0.4404296875,0.439453125,0.4521484375,0.5078125,0.587890625,0.650390625,0.6669921875,0.6328125,0.5693359375,0.5107421875,0.494140625,0.51953125,0.560546875,0.58203125,0.5615234375,0.5,0.421875,0.3369140625,0.2880859375,0.3095703125,0.3935546875,0.498046875,0.5791015625,0.6552734375,0.7314453125,0.765625,0.728515625,0.630859375,0.521484375,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5693359375,0.6103515625,0.6630859375,0.6943359375,0.6845703125,0.6357421875,0.5693359375,0.5029296875,0.455078125,0.4462890625,0.478515625,0.53125,0.5712890625,0.5791015625,0.568359375,0.5263671875,0.4736328125,0.4443359375,0.458984375,0.5107421875,0.5791015625,0.64453125,0.6796875,0.6630859375,0.5966796875,0.513671875,0.4541015625,0.439453125,0.4404296875,0.453125,0.478515625,0.509765625,0.5380859375,0.5546875,0.5595703125,0.560546875,0.560546875,0.5595703125,0.55859375,0.5576171875,0.5576171875,0.5595703125,0.55859375,0.544921875,0.5185546875,0.486328125,0.4580078125,0.4423828125,0.439453125,0.43359375,0.4091796875,0.38671875,0.392578125,0.43359375,0.5,0.5693359375,0.642578125,0.71875,0.755859375,0.72265625,0.6298828125,0.5224609375,0.439453125,0.361328125,0.2734375,0.2177734375,0.23046875,0.30859375,0.408203125,0.4892578125,0.55859375,0.6044921875,0.60546875,0.5595703125,0.4931640625,0.4423828125,0.4296875,0.419921875,0.3837890625,0.34375,0.330078125,0.357421875,0.41796875,0.4892578125,0.5712890625,0.673828125,0.7578125,0.7802734375,0.734375,0.6533203125,0.5791015625,0.5205078125,0.5029296875,0.52734375,0.5673828125,0.58984375,0.5693359375,0.509765625,0.439453125,0.376953125,0.34375,0.3505859375,0.3818359375,0.412109375,0.419921875,0.41015625,0.369140625,0.318359375,0.291015625,0.3056640625,0.359375,0.4296875,0.4931640625,0.5205078125,0.51171875,0.4873046875,0.478515625,0.505859375,0.5693359375,0.6474609375,0.7314453125,0.7802734375,0.759765625,0.6748046875,0.5712890625,0.4892578125,0.4287109375,0.41015625,0.4375,0.482421875,0.5087890625,0.4912109375,0.4296875,0.349609375,0.255859375,0.1875,0.185546875,0.25,0.341796875,0.419921875,0.48046875,0.5029296875,0.484375,0.4501953125,0.4306640625,0.4501953125,0.509765625,0.57421875,0.61328125,0.60546875,0.552734375,0.482421875,0.431640625,0.419921875,0.41015625,0.3720703125,0.32421875,0.2998046875,0.3173828125,0.37109375,0.439453125,0.5078125,0.5576171875,0.5693359375,0.5390625,0.4873046875,0.4482421875,0.439453125,0.4521484375,0.5,0.5654296875,0.609375,0.6083984375,0.564453125,0.5,0.431640625,0.3740234375,0.3466796875,0.3583984375,0.3935546875,0.423828125,0.4296875,0.4287109375,0.427734375,0.4287109375,0.4306640625,0.431640625,0.4306640625,0.4296875,0.4306640625,0.4453125,0.474609375,0.5087890625,0.5390625,0.5556640625,0.5595703125,0.5595703125,0.5625,0.56640625,0.572265625,0.576171875,0.5791015625,0.5791015625,0.5751953125,0.5546875,0.5185546875,0.4755859375,0.4404296875,0.421875,0.419921875,0.4150390625,0.392578125,0.373046875,0.380859375,0.4267578125,0.49609375,0.5693359375,0.6357421875,0.6708984375,0.65234375,0.5830078125,0.49609375,0.4345703125,0.419921875,0.41015625,0.3779296875,0.341796875,0.33203125,0.361328125,0.4208984375,0.4892578125,0.546875,0.55859375,0.5234375,0.4697265625,0.4365234375,0.4501953125,0.509765625,0.587890625,0.6806640625,0.7470703125,0.748046875,0.6826171875,0.5888671875,0.509765625,0.4296875,0.3369140625,0.271484375,0.2724609375,0.3388671875,0.431640625,0.509765625,0.5888671875,0.689453125,0.7705078125,0.7880859375,0.7392578125,0.6552734375,0.5791015625,0.5009765625,0.4091796875,0.3427734375,0.3408203125,0.4033203125,0.4931640625,0.5693359375,0.6328125,0.6669921875,0.650390625,0.587890625,0.5078125,0.4521484375,0.439453125,0.4521484375,0.505859375,0.583984375,0.64453125,0.658203125,0.623046875,0.5595703125,0.5009765625,0.486328125,0.5146484375,0.5595703125,0.5869140625,0.5693359375,0.509765625,0.439453125,0.3798828125,0.3505859375,0.359375,0.3935546875,0.423828125,0.4296875,0.44140625,0.4990234375,0.583984375,0.654296875,0.67578125,0.6435546875,0.5791015625,0.5078125,0.4365234375,0.388671875,0.3759765625,0.392578125,0.4140625,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4150390625,0.3935546875,0.3740234375,0.380859375,0.423828125,0.490234375,0.5595703125,0.6220703125,0.654296875,0.634765625,0.568359375,0.486328125,0.4306640625,0.419921875,0.4208984375,0.421875,0.4208984375,0.4189453125,0.41796875,0.41796875,0.419921875,0.4140625,0.384765625,0.3515625,0.34375,0.373046875,0.431640625,0.5,0.5546875,0.5546875,0.498046875,0.419921875,0.3671875,0.37109375,0.4296875,0.5126953125,0.6240234375,0.72265625,0.76171875,0.728515625,0.654296875,0.5791015625,0.5205078125,0.5078125,0.5419921875,0.5966796875,0.630859375,0.6181640625,0.5595703125,0.4814453125,0.392578125,0.33203125,0.3369140625,0.40625,0.5009765625,0.5791015625,0.6572265625,0.7490234375,0.8134765625,0.8115234375,0.7431640625,0.6494140625,0.5693359375,0.5,0.447265625,0.4326171875,0.4609375,0.51171875,0.55078125,0.5595703125,0.5546875,0.5361328125,0.505859375,0.4716796875,0.4443359375,0.4306640625,0.4296875,0.4345703125,0.451171875,0.4814453125,0.478515625,0.5693359375,0.615234375,0.6044921875,0.55078125,0.4931640625,0.451171875,0.4267578125,0.4150390625,0.4013671875,0.3720703125,0.3251953125,0.2802734375,0.26171875,0.2822265625,0.3359375,0.39453125,0.4296875,0.4287109375,0.4306640625,0.4755859375,0.55078125,0.619140625,0.646484375,0.625,0.5703125,0.5185546875,0.509765625,0.5439453125,0.595703125,0.6298828125,0.62109375,0.5703125,0.5,0.4111328125,0.341796875,0.3330078125,0.3876953125,0.4736328125,0.55078125,0.6103515625,0.6142578125,0.55859375,0.4755859375,0.41015625,0.400390625,0.4482421875,0.513671875,0.5791015625,0.6083984375,0.576171875,0.4921875,0.396484375,0.3251953125,0.26171875,0.205078125,0.1943359375,0.2548828125,0.3681640625,0.486328125,0.5703125,0.63671875,0.671875,0.6494140625,0.5732421875,0.474609375,0.40234375,0.376953125,0.3671875,0.359375,0.361328125,0.375,0.396484375,0.416015625,0.4287109375,0.439453125,0.4462890625,0.4482421875,0.4443359375,0.4365234375,0.4306640625,0.4287109375,0.4404296875,0.4931640625,0.57421875,0.6474609375,0.6806640625,0.6669921875,0.6220703125,0.5791015625,0.5693359375,0.5859375,0.60546875,0.6025390625,0.5654296875,0.5,0.423828125,0.3505859375,0.3232421875,0.369140625,0.474609375,0.58984375,0.673828125,0.74609375,0.8046875,0.80859375,0.740234375,0.6201171875,0.50390625,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.578125,0.6142578125,0.6640625,0.69921875,0.701171875,0.669921875,0.6220703125,0.5751953125,0.5498046875,0.5595703125,0.599609375,0.646484375,0.6748046875,0.673828125,0.654296875,0.611328125,0.5634765625,0.5419921875,0.5615234375,0.6123046875,0.673828125,0.728515625,0.75,0.71484375,0.6279296875,0.5263671875,0.453125,0.4287109375,0.4208984375,0.423828125,0.4462890625,0.4833984375,0.5244140625,0.5556640625,0.5703125,0.5791015625,0.580078125,0.57421875,0.5654296875,0.5595703125,0.5615234375,0.5703125,0.5771484375,0.5673828125,0.5380859375,0.49609375,0.45703125,0.43359375,0.4287109375,0.4267578125,0.419921875,0.4248046875,0.4541015625,0.5068359375,0.5673828125,0.6220703125,0.6767578125,0.732421875,0.751953125,0.7099609375,0.6162109375,0.5107421875,0.4287109375,0.349609375,0.2578125,0.1953125,0.2001953125,0.271484375,0.3671875,0.4482421875,0.517578125,0.5673828125,0.572265625,0.5283203125,0.45703125,0.3994140625,0.376953125,0.359375,0.318359375,0.2783203125,0.271484375,0.3076171875,0.375,0.4482421875,0.5302734375,0.6396484375,0.7412109375,0.7919921875,0.779296875,0.7275390625,0.673828125,0.6298828125,0.61328125,0.6220703125,0.6376953125,0.63671875,0.6064453125,0.55078125,0.486328125,0.4140625,0.3525390625,0.318359375,0.314453125,0.322265625,0.3251953125,0.31640625,0.28125,0.2392578125,0.22265625,0.248046875,0.306640625,0.376953125,0.4423828125,0.4833984375,0.498046875,0.5009765625,0.515625,0.556640625,0.6220703125,0.697265625,0.7705078125,0.7978515625,0.751953125,0.646484375,0.53125,0.4482421875,0.38671875,0.3671875,0.3916015625,0.43359375,0.4580078125,0.4384765625,0.376953125,0.2978515625,0.203125,0.1328125,0.1240234375,0.1767578125,0.2568359375,0.3251953125,0.3837890625,0.42578125,0.4501953125,0.4619140625,0.4755859375,0.5048828125,0.55078125,0.595703125,0.60546875,0.564453125,0.4833984375,0.39453125,0.337890625,0.3251953125,0.3193359375,0.296875,0.2734375,0.275390625,0.3095703125,0.3671875,0.4287109375,0.4873046875,0.5263671875,0.529296875,0.4990234375,0.455078125,0.427734375,0.4287109375,0.4482421875,0.4931640625,0.548828125,0.5849609375,0.583984375,0.548828125,0.5,0.4482421875,0.40234375,0.373046875,0.3671875,0.3759765625,0.3828125,0.376953125,0.369140625,0.3671875,0.373046875,0.3818359375,0.3876953125,0.3857421875,0.376953125,0.3720703125,0.3876953125,0.4287109375,0.484375,0.5341796875,0.564453125,0.5703125,0.572265625,0.5849609375,0.6083984375,0.6357421875,0.658203125,0.6708984375,0.673828125,0.6640625,0.615234375,0.5302734375,0.43359375,0.3583984375,0.3232421875,0.3251953125,0.3330078125,0.3349609375,0.3486328125,0.392578125,0.4638671875,0.546875,0.6220703125,0.685546875,0.708984375,0.6630859375,0.5595703125,0.4375,0.3525390625,0.3251953125,0.3115234375,0.2890625,0.2763671875,0.291015625,0.3359375,0.3935546875,0.4482421875,0.4912109375,0.505859375,0.4921875,0.4716796875,0.46875,0.49609375,0.55078125,0.62109375,0.70703125,0.7724609375,0.7763671875,0.7177734375,0.6298828125,0.55078125,0.47265625,0.384765625,0.326171875,0.330078125,0.39453125,0.4814453125,0.55078125,0.6220703125,0.7177734375,0.8017578125,0.833984375,0.8046875,0.73828125,0.673828125,0.60546875,0.5244140625,0.4638671875,0.4541015625,0.498046875,0.564453125,0.6220703125,0.6669921875,0.6806640625,0.6474609375,0.57421875,0.4931640625,0.4404296875,0.4287109375,0.439453125,0.486328125,0.5556640625,0.6142578125,0.63671875,0.6162109375,0.5703125,0.5283203125,0.5244140625,0.556640625,0.599609375,0.6220703125,0.6044921875,0.55078125,0.4892578125,0.4287109375,0.38671875,0.37109375,0.3759765625,0.3828125,0.376953125,0.3828125,0.4462890625,0.556640625,0.6650390625,0.7275390625,0.724609375,0.673828125,0.60546875,0.5185546875,0.4296875,0.36328125,0.33203125,0.3251953125,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.333984375,0.341796875,0.3603515625,0.3994140625,0.455078125,0.5166015625,0.5703125,0.6123046875,0.6142578125,0.5615234375,0.470703125,0.3798828125,0.328125,0.3251953125,0.333984375,0.3359375,0.330078125,0.3212890625,0.3154296875,0.3173828125,0.3251953125,0.3330078125,0.33203125,0.3349609375,0.3544921875,0.39453125,0.447265625,0.5,0.5361328125,0.5166015625,0.4453125,0.361328125,0.3095703125,0.3173828125,0.376953125,0.462890625,0.5869140625,0.7119140625,0.78515625,0.787109375,0.736328125,0.673828125,0.6201171875,0.59765625,0.609375,0.6337890625,0.6455078125,0.6240234375,0.5703125,0.50390625,0.4365234375,0.40234375,0.4296875,0.509765625,0.6025390625,0.673828125,0.7421875,0.822265625,0.875,0.8662109375,0.7958984375,0.701171875,0.6220703125,0.5517578125,0.5,0.482421875,0.50390625,0.5439453125,0.5712890625,0.5703125,0.5537109375,0.5166015625,0.4638671875,0.4130859375,0.3798828125,0.3701171875,0.376953125,0.3916015625,0.4228515625,0.4716796875,0.40234375,0.5244140625,0.61328125,0.63671875,0.6044921875,0.5546875,0.4912109375,0.419921875,0.35546875,0.30859375,0.279296875,0.2587890625,0.2490234375,0.2763671875,0.3388671875,0.4140625,0.4697265625,0.4873046875,0.46875,0.451171875,0.4658203125,0.5078125,0.5546875,0.5791015625,0.5693359375,0.5302734375,0.4921875,0.4853515625,0.5107421875,0.548828125,0.57421875,0.5673828125,0.5302734375,0.4775390625,0.412109375,0.3662109375,0.375,0.4384765625,0.5263671875,0.6044921875,0.6630859375,0.6640625,0.5966796875,0.4912109375,0.3994140625,0.365234375,0.39453125,0.44140625,0.484375,0.4970703125,0.4609375,0.388671875,0.3125,0.2587890625,0.2109375,0.1689453125,0.16796875,0.228515625,0.3359375,0.447265625,0.5302734375,0.599609375,0.6474609375,0.642578125,0.580078125,0.484375,0.4033203125,0.3642578125,0.3369140625,0.3154296875,0.314453125,0.341796875,0.3896484375,0.4375,0.46875,0.4951171875,0.513671875,0.5185546875,0.5078125,0.48828125,0.47265625,0.46875,0.4755859375,0.5068359375,0.5576171875,0.609375,0.6435546875,0.6494140625,0.634765625,0.623046875,0.634765625,0.654296875,0.6572265625,0.6279296875,0.5693359375,0.5,0.42578125,0.3603515625,0.34765625,0.4111328125,0.53125,0.654296875,0.740234375,0.8095703125,0.85546875,0.8427734375,0.759765625,0.6376953125,0.529296875,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.53515625,0.55859375,0.5966796875,0.6318359375,0.65234375,0.6513671875,0.634765625,0.623046875,0.63671875,0.6767578125,0.7236328125,0.755859375,0.7607421875,0.740234375,0.7080078125,0.662109375,0.6240234375,0.6162109375,0.6435546875,0.6923828125,0.740234375,0.78125,0.796875,0.7646484375,0.685546875,0.5859375,0.5078125,0.46875,0.44140625,0.4140625,0.4033203125,0.4189453125,0.45703125,0.4990234375,0.5302734375,0.5517578125,0.5556640625,0.541015625,0.5185546875,0.50390625,0.5078125,0.5302734375,0.5537109375,0.56640625,0.5576171875,0.5302734375,0.4970703125,0.474609375,0.46875,0.470703125,0.4794921875,0.501953125,0.5380859375,0.5791015625,0.6123046875,0.634765625,0.6591796875,0.6953125,0.71484375,0.693359375,0.62890625,0.5458984375,0.46875,0.3876953125,0.2841796875,0.201171875,0.181640625,0.2314453125,0.31640625,0.39453125,0.466796875,0.53125,0.5576171875,0.5302734375,0.46484375,0.400390625,0.3642578125,0.3291015625,0.271484375,0.220703125,0.208984375,0.2490234375,0.3203125,0.39453125,0.474609375,0.580078125,0.6845703125,0.75390625,0.7744140625,0.7607421875,0.740234375,0.724609375,0.720703125,0.720703125,0.7119140625,0.6875,0.6494140625,0.6044921875,0.552734375,0.4775390625,0.3916015625,0.3193359375,0.2763671875,0.2607421875,0.2587890625,0.2509765625,0.22265625,0.1923828125,0.189453125,0.2265625,0.2919921875,0.3642578125,0.4296875,0.4736328125,0.494140625,0.5048828125,0.525390625,0.5693359375,0.634765625,0.708984375,0.7744140625,0.787109375,0.7236328125,0.603515625,0.4794921875,0.39453125,0.333984375,0.3193359375,0.3525390625,0.4052734375,0.4384765625,0.4248046875,0.3642578125,0.28515625,0.1943359375,0.123046875,0.1064453125,0.1455078125,0.20703125,0.2587890625,0.30859375,0.3720703125,0.4443359375,0.5078125,0.5546875,0.583984375,0.6044921875,0.615234375,0.5869140625,0.513671875,0.4140625,0.322265625,0.26953125,0.2587890625,0.2578125,0.2568359375,0.26953125,0.306640625,0.361328125,0.419921875,0.46875,0.509765625,0.52734375,0.5166015625,0.4853515625,0.45703125,0.4501953125,0.46875,0.498046875,0.5322265625,0.5576171875,0.5625,0.546875,0.5205078125,0.5,0.4814453125,0.466796875,0.4521484375,0.435546875,0.4150390625,0.390625,0.3642578125,0.341796875,0.337890625,0.3525390625,0.375,0.3896484375,0.3857421875,0.3642578125,0.341796875,0.3427734375,0.375,0.4306640625,0.4873046875,0.5224609375,0.5302734375,0.53515625,0.560546875,0.607421875,0.6630859375,0.7099609375,0.7353515625,0.740234375,0.7255859375,0.6513671875,0.5244140625,0.3857421875,0.283203125,0.244140625,0.2587890625,0.283203125,0.306640625,0.341796875,0.3994140625,0.4775390625,0.560546875,0.634765625,0.69921875,0.7216796875,0.6708984375,0.5517578125,0.41015625,0.3037109375,0.2587890625,0.2333984375,0.2197265625,0.2314453125,0.2705078125,0.3232421875,0.369140625,0.39453125,0.4111328125,0.4248046875,0.44140625,0.4697265625,0.5107421875,0.55859375,0.6044921875,0.6591796875,0.7333984375,0.794921875,0.806640625,0.759765625,0.6806640625,0.6044921875,0.5283203125,0.4501953125,0.40234375,0.4140625,0.4755859375,0.55078125,0.6044921875,0.658203125,0.734375,0.806640625,0.8427734375,0.830078125,0.787109375,0.740234375,0.6904296875,0.6337890625,0.587890625,0.5712890625,0.5849609375,0.6123046875,0.634765625,0.6494140625,0.6435546875,0.609375,0.5576171875,0.5068359375,0.4755859375,0.46875,0.4736328125,0.4912109375,0.51953125,0.54296875,0.5537109375,0.546875,0.5302734375,0.51953125,0.541015625,0.587890625,0.634765625,0.6572265625,0.64453125,0.6044921875,0.55859375,0.51171875,0.46875,0.435546875,0.4111328125,0.388671875,0.3642578125,0.353515625,0.40625,0.5185546875,0.6484375,0.744140625,0.771484375,0.740234375,0.6845703125,0.5927734375,0.4775390625,0.369140625,0.2958984375,0.263671875,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.2880859375,0.3291015625,0.380859375,0.4326171875,0.4775390625,0.5087890625,0.5302734375,0.5380859375,0.50390625,0.427734375,0.3369140625,0.2666015625,0.2421875,0.2587890625,0.28125,0.28515625,0.2705078125,0.248046875,0.2333984375,0.2373046875,0.2587890625,0.287109375,0.3251953125,0.369140625,0.4140625,0.451171875,0.4794921875,0.5,0.5048828125,0.4609375,0.3798828125,0.306640625,0.275390625,0.2998046875,0.3642578125,0.44921875,0.5732421875,0.7041015625,0.7919921875,0.814453125,0.78515625,0.740234375,0.697265625,0.6650390625,0.6435546875,0.6259765625,0.6044921875,0.572265625,0.5302734375,0.484375,0.4501953125,0.455078125,0.5107421875,0.599609375,0.6845703125,0.740234375,0.7919921875,0.853515625,0.892578125,0.8759765625,0.8046875,0.7138671875,0.634765625,0.56640625,0.5166015625,0.5,0.513671875,0.5380859375,0.5478515625,0.5302734375,0.4970703125,0.4423828125,0.3798828125,0.3369140625,0.32421875,0.3388671875,0.3642578125,0.392578125,0.4287109375,0.474609375,0.3505859375,0.48046875,0.5927734375,0.6455078125,0.634765625,0.59765625,0.521484375,0.4189453125,0.3232421875,0.26171875,0.2451171875,0.2587890625,0.2900390625,0.36328125,0.4609375,0.5439453125,0.58203125,0.5703125,0.5302734375,0.48828125,0.462890625,0.4609375,0.474609375,0.490234375,0.490234375,0.46875,0.447265625,0.443359375,0.4580078125,0.48046875,0.4951171875,0.4912109375,0.46875,0.4375,0.396484375,0.375,0.3994140625,0.4697265625,0.5576171875,0.634765625,0.6943359375,0.69921875,0.6318359375,0.5185546875,0.41015625,0.3544921875,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.228515625,0.1923828125,0.181640625,0.2177734375,0.2978515625,0.390625,0.46875,0.5439453125,0.61328125,0.6435546875,0.6123046875,0.5341796875,0.4501953125,0.39453125,0.3466796875,0.3037109375,0.2919921875,0.328125,0.400390625,0.4765625,0.5302734375,0.57421875,0.607421875,0.615234375,0.5966796875,0.5625,0.5361328125,0.5302734375,0.529296875,0.52734375,0.529296875,0.541015625,0.5615234375,0.583984375,0.6044921875,0.630859375,0.673828125,0.70703125,0.701171875,0.650390625,0.57421875,0.5,0.42578125,0.3603515625,0.34765625,0.4111328125,0.53125,0.654296875,0.740234375,0.80859375,0.8505859375,0.8369140625,0.76171875,0.6572265625,0.5703125,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.4697265625,0.4755859375,0.4912109375,0.5185546875,0.552734375,0.5830078125,0.6044921875,0.6328125,0.689453125,0.7568359375,0.8037109375,0.8115234375,0.783203125,0.740234375,0.6923828125,0.6435546875,0.6162109375,0.6240234375,0.662109375,0.7080078125,0.740234375,0.767578125,0.787109375,0.779296875,0.7314453125,0.65625,0.58203125,0.5302734375,0.478515625,0.4111328125,0.35546875,0.33984375,0.3681640625,0.419921875,0.46875,0.5068359375,0.513671875,0.48828125,0.4501953125,0.4248046875,0.431640625,0.46875,0.5146484375,0.5556640625,0.5771484375,0.57421875,0.5537109375,0.53515625,0.5302734375,0.5341796875,0.5546875,0.5849609375,0.61328125,0.6259765625,0.62109375,0.6044921875,0.5947265625,0.61328125,0.646484375,0.6650390625,0.6494140625,0.5986328125,0.5302734375,0.4462890625,0.33203125,0.228515625,0.1845703125,0.2138671875,0.2880859375,0.3642578125,0.4404296875,0.5234375,0.5771484375,0.57421875,0.5185546875,0.4482421875,0.39453125,0.33984375,0.2607421875,0.1923828125,0.1728515625,0.2138671875,0.2890625,0.3642578125,0.439453125,0.52734375,0.6103515625,0.6708984375,0.705078125,0.72265625,0.740234375,0.759765625,0.7763671875,0.775390625,0.7509765625,0.708984375,0.666015625,0.634765625,0.6005859375,0.53515625,0.447265625,0.3583984375,0.2939453125,0.263671875,0.2587890625,0.251953125,0.2265625,0.2041015625,0.208984375,0.2529296875,0.3212890625,0.39453125,0.458984375,0.4951171875,0.501953125,0.4970703125,0.50390625,0.5400390625,0.6044921875,0.6787109375,0.744140625,0.7568359375,0.693359375,0.572265625,0.44921875,0.3642578125,0.3046875,0.2978515625,0.3447265625,0.4140625,0.4609375,0.453125,0.39453125,0.3173828125,0.2333984375,0.1708984375,0.154296875,0.181640625,0.2265625,0.2587890625,0.2958984375,0.3720703125,0.474609375,0.5712890625,0.6318359375,0.6484375,0.634765625,0.607421875,0.5478515625,0.4609375,0.369140625,0.2998046875,0.2646484375,0.2587890625,0.26171875,0.279296875,0.3203125,0.3798828125,0.4453125,0.498046875,0.5302734375,0.548828125,0.5419921875,0.513671875,0.482421875,0.4716796875,0.4892578125,0.5302734375,0.5703125,0.5888671875,0.576171875,0.541015625,0.50390625,0.48828125,0.5,0.521484375,0.548828125,0.5634765625,0.546875,0.5009765625,0.443359375,0.39453125,0.3564453125,0.349609375,0.375,0.4140625,0.439453125,0.4326171875,0.39453125,0.3515625,0.328125,0.3359375,0.375,0.42578125,0.4609375,0.46875,0.4755859375,0.5087890625,0.568359375,0.640625,0.701171875,0.7333984375,0.740234375,0.72265625,0.6376953125,0.4970703125,0.3505859375,0.2509765625,0.2255859375,0.2587890625,0.30078125,0.3349609375,0.3662109375,0.408203125,0.46484375,0.533203125,0.6044921875,0.6728515625,0.708984375,0.6796875,0.5771484375,0.4375,0.3212890625,0.2587890625,0.2197265625,0.2109375,0.240234375,0.294921875,0.3486328125,0.3740234375,0.3642578125,0.3486328125,0.3515625,0.3896484375,0.4580078125,0.537109375,0.6005859375,0.634765625,0.6708984375,0.7314453125,0.7900390625,0.8095703125,0.7763671875,0.7080078125,0.634765625,0.5615234375,0.494140625,0.4609375,0.48046875,0.5380859375,0.599609375,0.634765625,0.6669921875,0.7138671875,0.76171875,0.7900390625,0.7890625,0.7666015625,0.740234375,0.7138671875,0.689453125,0.66796875,0.6513671875,0.6376953125,0.6220703125,0.6044921875,0.583984375,0.5615234375,0.541015625,0.529296875,0.52734375,0.529296875,0.5302734375,0.525390625,0.5078125,0.4794921875,0.4560546875,0.4453125,0.4521484375,0.46875,0.4951171875,0.544921875,0.6044921875,0.6513671875,0.669921875,0.6591796875,0.634765625,0.6103515625,0.587890625,0.5634765625,0.5302734375,0.4873046875,0.4404296875,0.39453125,0.3623046875,0.3857421875,0.474609375,0.5966796875,0.7021484375,0.7509765625,0.740234375,0.703125,0.6259765625,0.513671875,0.3974609375,0.3095703125,0.2666015625,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.310546875,0.3798828125,0.44921875,0.494140625,0.50390625,0.4892578125,0.46875,0.439453125,0.3740234375,0.2900390625,0.22265625,0.1982421875,0.216796875,0.2587890625,0.296875,0.3037109375,0.2783203125,0.240234375,0.21484375,0.220703125,0.2587890625,0.3115234375,0.384765625,0.4609375,0.513671875,0.529296875,0.5185546875,0.5,0.46875,0.400390625,0.3203125,0.26953125,0.2734375,0.32421875,0.39453125,0.4755859375,0.5859375,0.6953125,0.767578125,0.787109375,0.767578125,0.740234375,0.7119140625,0.6748046875,0.62890625,0.580078125,0.5341796875,0.4970703125,0.46875,0.4462890625,0.4443359375,0.48046875,0.5517578125,0.63671875,0.7041015625,0.740234375,0.7724609375,0.8173828125,0.8447265625,0.828125,0.765625,0.681640625,0.6044921875,0.5380859375,0.4951171875,0.4853515625,0.5,0.5146484375,0.5068359375,0.46875,0.4169921875,0.3486328125,0.2900390625,0.26953125,0.294921875,0.345703125,0.39453125,0.4375,0.4697265625,0.4912109375,0.333984375,0.4423828125,0.552734375,0.6162109375,0.6220703125,0.59765625,0.5244140625,0.4189453125,0.3232421875,0.2744140625,0.28125,0.3251953125,0.3896484375,0.4921875,0.6015625,0.6708984375,0.67578125,0.630859375,0.5703125,0.5087890625,0.4521484375,0.41796875,0.41015625,0.4228515625,0.43359375,0.4287109375,0.419921875,0.4189453125,0.4248046875,0.43359375,0.439453125,0.4375,0.4287109375,0.4130859375,0.3876953125,0.375,0.400390625,0.4638671875,0.5458984375,0.6220703125,0.6845703125,0.701171875,0.65234375,0.552734375,0.4462890625,0.3828125,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3076171875,0.271484375,0.2392578125,0.240234375,0.2841796875,0.35546875,0.4287109375,0.5078125,0.59765625,0.6611328125,0.662109375,0.6015625,0.5166015625,0.4482421875,0.3828125,0.31640625,0.287109375,0.3193359375,0.4033203125,0.4990234375,0.5703125,0.6298828125,0.6748046875,0.685546875,0.66015625,0.6142578125,0.578125,0.5703125,0.5625,0.5302734375,0.48828125,0.4619140625,0.466796875,0.501953125,0.55078125,0.609375,0.6826171875,0.7333984375,0.728515625,0.666015625,0.5771484375,0.5,0.423828125,0.3505859375,0.3232421875,0.369140625,0.474609375,0.58984375,0.673828125,0.7421875,0.7880859375,0.7861328125,0.732421875,0.654296875,0.5927734375,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.4248046875,0.41015625,0.3994140625,0.41015625,0.4462890625,0.4990234375,0.55078125,0.6123046875,0.7001953125,0.7822265625,0.8193359375,0.796875,0.7373046875,0.673828125,0.6123046875,0.5615234375,0.5419921875,0.5634765625,0.611328125,0.654296875,0.673828125,0.689453125,0.720703125,0.7451171875,0.7392578125,0.697265625,0.6337890625,0.5703125,0.4990234375,0.4013671875,0.3125,0.275390625,0.30078125,0.3642578125,0.4287109375,0.48046875,0.4892578125,0.455078125,0.4033203125,0.369140625,0.3779296875,0.4287109375,0.4921875,0.5537109375,0.5966796875,0.6083984375,0.59375,0.5751953125,0.5703125,0.5771484375,0.6044921875,0.6376953125,0.654296875,0.640625,0.6015625,0.55078125,0.51171875,0.5185546875,0.5673828125,0.6240234375,0.65234375,0.6318359375,0.5703125,0.4853515625,0.3681640625,0.2587890625,0.2080078125,0.2314453125,0.3017578125,0.376953125,0.45703125,0.5537109375,0.62890625,0.642578125,0.59375,0.515625,0.4482421875,0.376953125,0.28125,0.201171875,0.177734375,0.220703125,0.30078125,0.376953125,0.447265625,0.505859375,0.546875,0.5732421875,0.595703125,0.626953125,0.673828125,0.7236328125,0.759765625,0.765625,0.7353515625,0.68359375,0.6396484375,0.6220703125,0.6044921875,0.5615234375,0.4931640625,0.4189453125,0.361328125,0.3310546875,0.3251953125,0.318359375,0.2919921875,0.265625,0.267578125,0.3076171875,0.375,0.4482421875,0.509765625,0.533203125,0.5166015625,0.482421875,0.4658203125,0.4892578125,0.55078125,0.626953125,0.7001953125,0.7275390625,0.681640625,0.576171875,0.4609375,0.376953125,0.3193359375,0.3173828125,0.373046875,0.4521484375,0.5078125,0.505859375,0.4482421875,0.3740234375,0.30078125,0.251953125,0.24609375,0.2744140625,0.30859375,0.3251953125,0.349609375,0.4228515625,0.529296875,0.6240234375,0.6728515625,0.666015625,0.6220703125,0.5654296875,0.4921875,0.4169921875,0.3603515625,0.33203125,0.3251953125,0.3251953125,0.330078125,0.353515625,0.400390625,0.4609375,0.5166015625,0.5546875,0.5703125,0.5712890625,0.5439453125,0.5,0.4697265625,0.47265625,0.51171875,0.5703125,0.62109375,0.6279296875,0.5849609375,0.51953125,0.466796875,0.4599609375,0.5,0.556640625,0.623046875,0.6669921875,0.6572265625,0.5966796875,0.515625,0.4482421875,0.396484375,0.3876953125,0.421875,0.4736328125,0.5078125,0.4990234375,0.4482421875,0.3876953125,0.3408203125,0.3251953125,0.345703125,0.3876953125,0.4208984375,0.4287109375,0.4345703125,0.46484375,0.5185546875,0.5830078125,0.6376953125,0.66796875,0.673828125,0.6572265625,0.5791015625,0.455078125,0.337890625,0.271484375,0.2744140625,0.3251953125,0.380859375,0.4111328125,0.4189453125,0.4228515625,0.4404296875,0.484375,0.55078125,0.6240234375,0.6845703125,0.693359375,0.6298828125,0.5146484375,0.400390625,0.3251953125,0.2744140625,0.265625,0.3037109375,0.3642578125,0.412109375,0.4169921875,0.376953125,0.33203125,0.318359375,0.35546875,0.4375,0.5322265625,0.5986328125,0.6220703125,0.6416015625,0.69140625,0.74609375,0.7724609375,0.7509765625,0.693359375,0.6220703125,0.55078125,0.4921875,0.470703125,0.4970703125,0.552734375,0.6015625,0.6220703125,0.634765625,0.654296875,0.67578125,0.689453125,0.69140625,0.68359375,0.673828125,0.66796875,0.6748046875,0.68359375,0.6767578125,0.6484375,0.6025390625,0.55078125,0.501953125,0.466796875,0.4619140625,0.48828125,0.5302734375,0.5625,0.5703125,0.5595703125,0.5126953125,0.443359375,0.384765625,0.3623046875,0.3828125,0.4287109375,0.484375,0.55078125,0.611328125,0.6455078125,0.6484375,0.634765625,0.6220703125,0.6162109375,0.623046875,0.6279296875,0.6123046875,0.5703125,0.509765625,0.4482421875,0.39453125,0.3837890625,0.4296875,0.5205078125,0.6142578125,0.669921875,0.673828125,0.6552734375,0.60546875,0.525390625,0.4384765625,0.3681640625,0.33203125,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.39453125,0.4814453125,0.5546875,0.5771484375,0.544921875,0.484375,0.4287109375,0.3681640625,0.283203125,0.205078125,0.1728515625,0.19921875,0.26171875,0.3251953125,0.376953125,0.3857421875,0.3515625,0.2998046875,0.265625,0.2744140625,0.3251953125,0.396484375,0.4921875,0.580078125,0.6220703125,0.60546875,0.5537109375,0.5,0.4384765625,0.353515625,0.279296875,0.2568359375,0.296875,0.3720703125,0.4482421875,0.5244140625,0.6103515625,0.681640625,0.71484375,0.7099609375,0.6884765625,0.673828125,0.6591796875,0.6279296875,0.5791015625,0.5234375,0.474609375,0.443359375,0.4287109375,0.4228515625,0.439453125,0.484375,0.548828125,0.61328125,0.65625,0.673828125,0.6904296875,0.724609375,0.7529296875,0.7470703125,0.6982421875,0.625,0.55078125,0.4873046875,0.455078125,0.4609375,0.484375,0.5,0.4814453125,0.4287109375,0.361328125,0.283203125,0.23046875,0.2353515625,0.296875,0.37890625,0.4482421875,0.5009765625,0.5234375,0.51171875,0.3447265625,0.4150390625,0.5,0.5576171875,0.5693359375,0.5546875,0.4951171875,0.4111328125,0.3427734375,0.3232421875,0.3564453125,0.419921875,0.4990234375,0.607421875,0.703125,0.740234375,0.7080078125,0.6337890625,0.5595703125,0.48828125,0.423828125,0.3857421875,0.3837890625,0.4091796875,0.4345703125,0.439453125,0.4384765625,0.4384765625,0.439453125,0.4404296875,0.44140625,0.44140625,0.439453125,0.4306640625,0.404296875,0.37890625,0.3837890625,0.4267578125,0.49609375,0.5693359375,0.6357421875,0.669921875,0.6513671875,0.5830078125,0.4990234375,0.44140625,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.408203125,0.3681640625,0.3193359375,0.294921875,0.3134765625,0.369140625,0.439453125,0.5205078125,0.619140625,0.6962890625,0.708984375,0.6533203125,0.56640625,0.4892578125,0.4130859375,0.330078125,0.2802734375,0.298828125,0.37890625,0.4794921875,0.5595703125,0.6279296875,0.6787109375,0.69140625,0.662109375,0.609375,0.5693359375,0.5595703125,0.548828125,0.5029296875,0.4404296875,0.3984375,0.400390625,0.4443359375,0.509765625,0.5859375,0.67578125,0.740234375,0.7392578125,0.6728515625,0.5791015625,0.5,0.421875,0.3369140625,0.2880859375,0.3095703125,0.3935546875,0.498046875,0.5791015625,0.6484375,0.7001953125,0.7099609375,0.6748046875,0.6171875,0.5712890625,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.431640625,0.400390625,0.365234375,0.3544921875,0.3828125,0.44140625,0.509765625,0.5869140625,0.6865234375,0.7666015625,0.7861328125,0.7373046875,0.6552734375,0.5791015625,0.5107421875,0.458984375,0.4443359375,0.4736328125,0.5263671875,0.568359375,0.5791015625,0.58984375,0.6298828125,0.677734375,0.701171875,0.6826171875,0.6279296875,0.5595703125,0.478515625,0.3720703125,0.2802734375,0.2490234375,0.287109375,0.3642578125,0.439453125,0.498046875,0.5087890625,0.4697265625,0.41015625,0.37109375,0.380859375,0.439453125,0.5107421875,0.576171875,0.6162109375,0.6181640625,0.5927734375,0.56640625,0.5595703125,0.5673828125,0.6015625,0.6416015625,0.6572265625,0.6328125,0.5771484375,0.509765625,0.4541015625,0.4521484375,0.50390625,0.576171875,0.625,0.6181640625,0.5595703125,0.4765625,0.3662109375,0.271484375,0.2373046875,0.2744140625,0.3525390625,0.4296875,0.5107421875,0.611328125,0.689453125,0.705078125,0.65234375,0.56640625,0.4892578125,0.41015625,0.3095703125,0.23046875,0.2138671875,0.265625,0.3515625,0.4296875,0.4931640625,0.5244140625,0.51953125,0.5,0.4931640625,0.51953125,0.5791015625,0.6455078125,0.6953125,0.70703125,0.6767578125,0.623046875,0.5810546875,0.5693359375,0.564453125,0.544921875,0.5107421875,0.47265625,0.4404296875,0.4228515625,0.419921875,0.4111328125,0.3779296875,0.33984375,0.328125,0.357421875,0.41796875,0.4892578125,0.5498046875,0.5625,0.52734375,0.4716796875,0.4365234375,0.44921875,0.509765625,0.5869140625,0.671875,0.720703125,0.69921875,0.615234375,0.51171875,0.4296875,0.37109375,0.3681640625,0.421875,0.498046875,0.5517578125,0.5478515625,0.4892578125,0.41796875,0.3564453125,0.326171875,0.3369140625,0.375,0.41015625,0.419921875,0.4345703125,0.4931640625,0.578125,0.6455078125,0.6650390625,0.6328125,0.5693359375,0.4990234375,0.4306640625,0.384765625,0.375,0.392578125,0.4140625,0.419921875,0.4228515625,0.4384765625,0.46875,0.5048828125,0.5361328125,0.5546875,0.5595703125,0.55078125,0.51171875,0.4599609375,0.4296875,0.44140625,0.4912109375,0.5595703125,0.6162109375,0.62109375,0.5693359375,0.4951171875,0.4423828125,0.4443359375,0.5,0.5751953125,0.6650390625,0.7275390625,0.7255859375,0.6591796875,0.5673828125,0.4892578125,0.4306640625,0.4208984375,0.4599609375,0.51953125,0.55859375,0.5478515625,0.4892578125,0.419921875,0.36328125,0.3388671875,0.35546875,0.396484375,0.4306640625,0.439453125,0.443359375,0.4599609375,0.4912109375,0.5283203125,0.55859375,0.576171875,0.5791015625,0.5654296875,0.505859375,0.41796875,0.345703125,0.3232421875,0.35546875,0.419921875,0.48046875,0.5,0.4794921875,0.443359375,0.4248046875,0.447265625,0.509765625,0.5869140625,0.6689453125,0.71484375,0.6904296875,0.603515625,0.5,0.419921875,0.361328125,0.3515625,0.3916015625,0.4521484375,0.494140625,0.486328125,0.4296875,0.3662109375,0.33203125,0.349609375,0.4150390625,0.4970703125,0.5546875,0.5693359375,0.5810546875,0.6240234375,0.677734375,0.70703125,0.6923828125,0.6396484375,0.5693359375,0.4990234375,0.4462890625,0.431640625,0.4609375,0.5146484375,0.5576171875,0.5693359375,0.5712890625,0.5751953125,0.578125,0.5810546875,0.58203125,0.5810546875,0.5791015625,0.5859375,0.615234375,0.650390625,0.662109375,0.634765625,0.5771484375,0.509765625,0.4443359375,0.400390625,0.3984375,0.4404296875,0.5029296875,0.548828125,0.5595703125,0.546875,0.4931640625,0.4150390625,0.3544921875,0.3408203125,0.3759765625,0.439453125,0.509765625,0.576171875,0.619140625,0.625,0.6025390625,0.5771484375,0.5693359375,0.5751953125,0.60546875,0.6396484375,0.6484375,0.619140625,0.5595703125,0.4892578125,0.423828125,0.384765625,0.392578125,0.4462890625,0.5185546875,0.5693359375,0.5791015625,0.57421875,0.5537109375,0.517578125,0.4755859375,0.44140625,0.4228515625,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.498046875,0.5908203125,0.6591796875,0.6640625,0.603515625,0.515625,0.439453125,0.36328125,0.26953125,0.2001953125,0.1943359375,0.25390625,0.3427734375,0.419921875,0.478515625,0.48828125,0.44921875,0.3896484375,0.3505859375,0.361328125,0.419921875,0.4990234375,0.599609375,0.681640625,0.7021484375,0.6552734375,0.57421875,0.5,0.4228515625,0.330078125,0.26171875,0.2578125,0.3193359375,0.41015625,0.4892578125,0.5615234375,0.6259765625,0.66015625,0.654296875,0.62109375,0.5888671875,0.5791015625,0.57421875,0.5576171875,0.52734375,0.4921875,0.4619140625,0.4443359375,0.439453125,0.44140625,0.4560546875,0.4853515625,0.5224609375,0.5546875,0.57421875,0.5791015625,0.5888671875,0.6240234375,0.662109375,0.6728515625,0.642578125,0.5810546875,0.509765625,0.4482421875,0.427734375,0.451171875,0.4921875,0.517578125,0.5,0.439453125,0.36328125,0.27734375,0.22265625,0.236328125,0.3125,0.41015625,0.4892578125,0.548828125,0.5615234375,0.5263671875,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.3828125,0.380859375,0.40625,0.4326171875,0.439453125,0.4326171875,0.40625,0.380859375,0.3828125,0.4228515625,0.48828125,0.5595703125,0.6337890625,0.708984375,0.744140625,0.708984375,0.615234375,0.5087890625,0.4296875,0.3662109375,0.3330078125,0.3505859375,0.4150390625,0.494140625,0.548828125,0.5595703125,0.55859375,0.5595703125,0.5634765625,0.5693359375,0.5751953125,0.578125,0.5791015625,0.56640625,0.5087890625,0.423828125,0.35546875,0.3349609375,0.3671875,0.4296875,0.5,0.5693359375,0.6162109375,0.6279296875,0.609375,0.5869140625,0.5791015625,0.5771484375,0.5751953125,0.5712890625,0.5673828125,0.5634765625,0.5615234375,0.5595703125,0.5478515625,0.5048828125,0.451171875,0.421875,0.435546875,0.4892578125,0.5595703125,0.6376953125,0.724609375,0.779296875,0.765625,0.6875,0.5888671875,0.509765625,0.4296875,0.3291015625,0.248046875,0.2275390625,0.2744140625,0.35546875,0.4296875,0.49609375,0.5478515625,0.5625,0.5361328125,0.4873046875,0.44921875,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5693359375,0.6640625,0.732421875,0.736328125,0.6748046875,0.5859375,0.509765625,0.4306640625,0.3291015625,0.2451171875,0.220703125,0.263671875,0.34375,0.419921875,0.48828125,0.5419921875,0.5595703125,0.53515625,0.4873046875,0.44921875,0.439453125,0.4423828125,0.45703125,0.4853515625,0.5185546875,0.5478515625,0.564453125,0.5693359375,0.5595703125,0.5126953125,0.4482421875,0.4013671875,0.400390625,0.443359375,0.509765625,0.5849609375,0.6669921875,0.712890625,0.6904296875,0.6083984375,0.5078125,0.4296875,0.36328125,0.3115234375,0.296875,0.3232421875,0.3720703125,0.41015625,0.419921875,0.4296875,0.4716796875,0.5244140625,0.5556640625,0.5419921875,0.4892578125,0.419921875,0.34375,0.265625,0.23046875,0.267578125,0.365234375,0.4765625,0.5595703125,0.619140625,0.6318359375,0.5947265625,0.53515625,0.494140625,0.5029296875,0.5595703125,0.623046875,0.658203125,0.64453125,0.583984375,0.505859375,0.4521484375,0.439453125,0.4501953125,0.4970703125,0.560546875,0.603515625,0.6015625,0.556640625,0.4892578125,0.4296875,0.4091796875,0.431640625,0.4716796875,0.49609375,0.478515625,0.419921875,0.34765625,0.275390625,0.2451171875,0.28515625,0.3818359375,0.490234375,0.5693359375,0.64453125,0.7275390625,0.779296875,0.763671875,0.6865234375,0.5888671875,0.509765625,0.4326171875,0.3466796875,0.2939453125,0.3095703125,0.3876953125,0.48828125,0.5693359375,0.6259765625,0.619140625,0.5478515625,0.451171875,0.3798828125,0.373046875,0.4296875,0.4990234375,0.5517578125,0.564453125,0.53125,0.4755859375,0.431640625,0.419921875,0.4208984375,0.435546875,0.4658203125,0.501953125,0.53515625,0.5546875,0.5595703125,0.5498046875,0.501953125,0.435546875,0.388671875,0.38671875,0.431640625,0.5,0.5595703125,0.5693359375,0.5283203125,0.4658203125,0.4228515625,0.431640625,0.4892578125,0.5693359375,0.669921875,0.75,0.7685546875,0.71875,0.6357421875,0.5595703125,0.5,0.4833984375,0.51171875,0.5576171875,0.5859375,0.5693359375,0.509765625,0.4423828125,0.3974609375,0.396484375,0.44140625,0.5068359375,0.556640625,0.5693359375,0.5771484375,0.603515625,0.626953125,0.6220703125,0.5791015625,0.5107421875,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5556640625,0.5380859375,0.505859375,0.4677734375,0.4375,0.421875,0.419921875,0.412109375,0.375,0.3271484375,0.302734375,0.318359375,0.37109375,0.439453125,0.4990234375,0.515625,0.4892578125,0.4443359375,0.4189453125,0.4384765625,0.5,0.578125,0.669921875,0.7314453125,0.7275390625,0.6591796875,0.56640625,0.4892578125,0.43359375,0.42578125,0.46875,0.53125,0.5712890625,0.5595703125,0.5,0.4306640625,0.384765625,0.3837890625,0.4287109375,0.49609375,0.5458984375,0.5595703125,0.5576171875,0.541015625,0.5087890625,0.470703125,0.4384765625,0.421875,0.419921875,0.4150390625,0.3916015625,0.369140625,0.375,0.41796875,0.486328125,0.5595703125,0.6171875,0.6201171875,0.564453125,0.484375,0.4287109375,0.431640625,0.4892578125,0.5712890625,0.673828125,0.7578125,0.7802734375,0.734375,0.6533203125,0.5791015625,0.5224609375,0.5126953125,0.5517578125,0.6083984375,0.6435546875,0.6298828125,0.5693359375,0.49609375,0.427734375,0.384765625,0.37890625,0.4013671875,0.4248046875,0.4296875,0.4375,0.4755859375,0.525390625,0.5537109375,0.5390625,0.48828125,0.419921875,0.3525390625,0.302734375,0.2939453125,0.326171875,0.380859375,0.421875,0.4296875,0.427734375,0.42578125,0.4228515625,0.4208984375,0.419921875,0.419921875,0.419921875,0.431640625,0.484375,0.5576171875,0.6123046875,0.619140625,0.5771484375,0.509765625,0.4375,0.3759765625,0.34375,0.3505859375,0.3837890625,0.4130859375,0.419921875,0.412109375,0.388671875,0.3701171875,0.3828125,0.4326171875,0.505859375,0.5791015625,0.6455078125,0.681640625,0.6630859375,0.595703125,0.51171875,0.453125,0.439453125,0.451171875,0.5,0.568359375,0.6162109375,0.619140625,0.576171875,0.509765625,0.439453125,0.376953125,0.345703125,0.353515625,0.3876953125,0.419921875,0.4296875,0.435546875,0.455078125,0.490234375,0.5302734375,0.5615234375,0.5771484375,0.5791015625,0.568359375,0.5263671875,0.4736328125,0.4443359375,0.458984375,0.5107421875,0.5791015625,0.6572265625,0.7490234375,0.814453125,0.814453125,0.7490234375,0.6572265625,0.5791015625,0.5009765625,0.4052734375,0.3349609375,0.328125,0.3896484375,0.48046875,0.5595703125,0.6201171875,0.6337890625,0.5986328125,0.5419921875,0.5029296875,0.5126953125,0.5693359375,0.64453125,0.7275390625,0.779296875,0.763671875,0.6865234375,0.5888671875,0.509765625,0.431640625,0.33984375,0.2744140625,0.2744140625,0.33984375,0.431640625,0.509765625,0.5751953125,0.6142578125,0.6064453125,0.552734375,0.48046875,0.4296875,0.419921875,0.4248046875,0.4443359375,0.4765625,0.513671875,0.54296875,0.5576171875,0.5595703125,0.5546875,0.5390625,0.5107421875,0.478515625,0.4501953125,0.4345703125,0.4296875,0.439453125,0.4873046875,0.5537109375,0.6005859375,0.6015625,0.5576171875,0.4892578125,0.431640625,0.4287109375,0.484375,0.564453125,0.6201171875,0.6171875,0.5595703125,0.478515625,0.376953125,0.296875,0.28125,0.333984375,0.4208984375,0.5,0.5595703125,0.572265625,0.5361328125,0.40234375,0.390625,0.4052734375,0.423828125,0.4287109375,0.423828125,0.4052734375,0.390625,0.40234375,0.4453125,0.5068359375,0.5703125,0.6318359375,0.68359375,0.689453125,0.634765625,0.5361328125,0.439453125,0.376953125,0.333984375,0.326171875,0.3671875,0.4443359375,0.5234375,0.568359375,0.5703125,0.5625,0.5673828125,0.5888671875,0.6201171875,0.6513671875,0.669921875,0.673828125,0.6591796875,0.59375,0.490234375,0.3896484375,0.3330078125,0.3349609375,0.376953125,0.435546875,0.5146484375,0.59765625,0.6591796875,0.6845703125,0.68359375,0.673828125,0.662109375,0.6484375,0.630859375,0.6123046875,0.5947265625,0.5810546875,0.5703125,0.5498046875,0.5009765625,0.4453125,0.4189453125,0.4404296875,0.4990234375,0.5703125,0.6474609375,0.7333984375,0.7880859375,0.779296875,0.7099609375,0.62109375,0.55078125,0.48046875,0.384765625,0.296875,0.2548828125,0.271484375,0.3232421875,0.376953125,0.427734375,0.4716796875,0.4921875,0.484375,0.4580078125,0.4345703125,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.52734375,0.6220703125,0.6962890625,0.71484375,0.6748046875,0.6083984375,0.55078125,0.48828125,0.3876953125,0.2822265625,0.2177734375,0.216796875,0.263671875,0.3251953125,0.3876953125,0.4453125,0.4794921875,0.48046875,0.4580078125,0.435546875,0.4287109375,0.431640625,0.44921875,0.484375,0.53125,0.576171875,0.607421875,0.6220703125,0.6220703125,0.5849609375,0.525390625,0.4765625,0.46484375,0.494140625,0.55078125,0.6142578125,0.6669921875,0.677734375,0.626953125,0.533203125,0.439453125,0.376953125,0.326171875,0.283203125,0.26171875,0.26953125,0.296875,0.3193359375,0.3251953125,0.3359375,0.376953125,0.4306640625,0.4609375,0.4482421875,0.3955078125,0.3251953125,0.251953125,0.1875,0.1748046875,0.2392578125,0.3603515625,0.484375,0.5703125,0.6328125,0.6552734375,0.630859375,0.5791015625,0.53515625,0.5302734375,0.5703125,0.6162109375,0.63671875,0.6142578125,0.5556640625,0.486328125,0.439453125,0.4287109375,0.4375,0.4755859375,0.525390625,0.556640625,0.5498046875,0.5068359375,0.4482421875,0.392578125,0.3623046875,0.361328125,0.376953125,0.3857421875,0.369140625,0.3251953125,0.275390625,0.2451171875,0.263671875,0.341796875,0.455078125,0.55859375,0.6220703125,0.677734375,0.7421875,0.7822265625,0.767578125,0.7021484375,0.619140625,0.55078125,0.4833984375,0.4052734375,0.3564453125,0.3701171875,0.4453125,0.5419921875,0.6220703125,0.67578125,0.6572265625,0.5625,0.4365234375,0.341796875,0.3232421875,0.376953125,0.447265625,0.5,0.5087890625,0.4697265625,0.40234375,0.3466796875,0.3251953125,0.3193359375,0.3359375,0.380859375,0.4453125,0.509765625,0.552734375,0.5703125,0.568359375,0.525390625,0.458984375,0.4052734375,0.39453125,0.4326171875,0.5,0.5595703125,0.5703125,0.5263671875,0.4560546875,0.40234375,0.3994140625,0.4482421875,0.5185546875,0.6142578125,0.6982421875,0.73046875,0.701171875,0.6357421875,0.5703125,0.5185546875,0.5068359375,0.537109375,0.583984375,0.6142578125,0.6025390625,0.55078125,0.4921875,0.44921875,0.4462890625,0.486328125,0.5498046875,0.6015625,0.6220703125,0.6357421875,0.6552734375,0.66015625,0.630859375,0.5693359375,0.494140625,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.5625,0.52734375,0.46484375,0.3955078125,0.34375,0.3212890625,0.3251953125,0.330078125,0.314453125,0.29296875,0.2900390625,0.3173828125,0.3681640625,0.4287109375,0.48046875,0.4921875,0.4658203125,0.427734375,0.4111328125,0.4365234375,0.5,0.5751953125,0.6513671875,0.6904296875,0.66796875,0.59375,0.5087890625,0.4482421875,0.4091796875,0.419921875,0.4755859375,0.541015625,0.5771484375,0.560546875,0.5,0.4296875,0.3798828125,0.375,0.4189453125,0.490234375,0.5478515625,0.5703125,0.5732421875,0.544921875,0.484375,0.4111328125,0.3505859375,0.322265625,0.3251953125,0.3310546875,0.3271484375,0.330078125,0.3603515625,0.419921875,0.49609375,0.5703125,0.626953125,0.623046875,0.5556640625,0.462890625,0.39453125,0.390625,0.4482421875,0.5302734375,0.6396484375,0.7412109375,0.7919921875,0.779296875,0.7275390625,0.673828125,0.6328125,0.630859375,0.6630859375,0.701171875,0.71484375,0.685546875,0.6220703125,0.5478515625,0.4716796875,0.4111328125,0.3818359375,0.37890625,0.3828125,0.376953125,0.375,0.396484375,0.4287109375,0.4453125,0.4296875,0.384765625,0.3251953125,0.2685546875,0.236328125,0.244140625,0.2880859375,0.34375,0.3779296875,0.376953125,0.3662109375,0.3525390625,0.3388671875,0.3291015625,0.3251953125,0.3251953125,0.3251953125,0.3408203125,0.41015625,0.513671875,0.603515625,0.640625,0.615234375,0.55078125,0.4775390625,0.404296875,0.34765625,0.3232421875,0.32421875,0.3310546875,0.3251953125,0.3134765625,0.306640625,0.3291015625,0.39453125,0.4931640625,0.59375,0.673828125,0.7373046875,0.759765625,0.71875,0.6240234375,0.515625,0.4443359375,0.4287109375,0.4404296875,0.4912109375,0.5634765625,0.6220703125,0.6376953125,0.6083984375,0.55078125,0.486328125,0.4140625,0.3564453125,0.33203125,0.3408203125,0.3623046875,0.376953125,0.3955078125,0.4453125,0.521484375,0.599609375,0.6552734375,0.677734375,0.673828125,0.654296875,0.611328125,0.5634765625,0.5419921875,0.5615234375,0.6123046875,0.673828125,0.7412109375,0.822265625,0.87890625,0.87890625,0.822265625,0.7412109375,0.673828125,0.6015625,0.501953125,0.4140625,0.3828125,0.4189453125,0.494140625,0.5703125,0.6337890625,0.6630859375,0.6494140625,0.611328125,0.5791015625,0.5810546875,0.6220703125,0.677734375,0.7421875,0.7822265625,0.767578125,0.7021484375,0.619140625,0.55078125,0.4833984375,0.40234375,0.345703125,0.345703125,0.40234375,0.4833984375,0.55078125,0.6044921875,0.615234375,0.5693359375,0.478515625,0.384765625,0.3291015625,0.3251953125,0.3427734375,0.3857421875,0.4501953125,0.5146484375,0.5595703125,0.576171875,0.5703125,0.556640625,0.5322265625,0.4951171875,0.4521484375,0.4150390625,0.390625,0.376953125,0.37890625,0.421875,0.4892578125,0.5419921875,0.552734375,0.5146484375,0.4482421875,0.390625,0.39453125,0.462890625,0.5556640625,0.623046875,0.626953125,0.5703125,0.48828125,0.3857421875,0.3037109375,0.28515625,0.3359375,0.421875,0.5,0.5615234375,0.5849609375,0.564453125,0.421875,0.4248046875,0.4453125,0.4638671875,0.46875,0.4638671875,0.4453125,0.4248046875,0.421875,0.443359375,0.484375,0.5302734375,0.572265625,0.5966796875,0.58203125,0.52734375,0.453125,0.392578125,0.3642578125,0.353515625,0.375,0.427734375,0.4912109375,0.537109375,0.548828125,0.5302734375,0.5087890625,0.515625,0.5576171875,0.6240234375,0.6904296875,0.7314453125,0.740234375,0.728515625,0.671875,0.57421875,0.466796875,0.3857421875,0.3544921875,0.3642578125,0.39453125,0.4697265625,0.5771484375,0.6796875,0.744140625,0.759765625,0.740234375,0.712890625,0.68359375,0.6513671875,0.6181640625,0.5859375,0.556640625,0.5302734375,0.494140625,0.43359375,0.375,0.35546875,0.388671875,0.4560546875,0.5302734375,0.607421875,0.6953125,0.7587890625,0.767578125,0.72265625,0.6572265625,0.6044921875,0.552734375,0.478515625,0.40234375,0.3505859375,0.333984375,0.3447265625,0.3642578125,0.384765625,0.4111328125,0.4384765625,0.4580078125,0.4677734375,0.4697265625,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.4716796875,0.560546875,0.634765625,0.66796875,0.658203125,0.6279296875,0.6044921875,0.572265625,0.4892578125,0.375,0.2724609375,0.2177734375,0.220703125,0.2587890625,0.3076171875,0.3662109375,0.421875,0.4580078125,0.4716796875,0.470703125,0.46875,0.4697265625,0.474609375,0.4912109375,0.5244140625,0.56640625,0.60546875,0.634765625,0.6533203125,0.642578125,0.607421875,0.568359375,0.55078125,0.564453125,0.6044921875,0.6455078125,0.6611328125,0.6298828125,0.5546875,0.4638671875,0.39453125,0.3642578125,0.3427734375,0.31640625,0.2900390625,0.26953125,0.2607421875,0.2587890625,0.2587890625,0.2685546875,0.310546875,0.3642578125,0.39453125,0.380859375,0.3291015625,0.2587890625,0.185546875,0.1240234375,0.1181640625,0.189453125,0.31640625,0.443359375,0.5302734375,0.5966796875,0.638671875,0.6376953125,0.599609375,0.548828125,0.521484375,0.5302734375,0.546875,0.5537109375,0.54296875,0.51953125,0.4912109375,0.4736328125,0.46875,0.4736328125,0.4912109375,0.5078125,0.5078125,0.482421875,0.4404296875,0.39453125,0.349609375,0.3115234375,0.287109375,0.2783203125,0.2783203125,0.2744140625,0.2587890625,0.2470703125,0.267578125,0.333984375,0.4326171875,0.5341796875,0.60546875,0.634765625,0.6591796875,0.6953125,0.7255859375,0.7294921875,0.7001953125,0.65234375,0.6044921875,0.55078125,0.48046875,0.4248046875,0.421875,0.4755859375,0.55859375,0.634765625,0.6884765625,0.666015625,0.5654296875,0.43359375,0.3330078125,0.310546875,0.3642578125,0.4345703125,0.490234375,0.5,0.4521484375,0.37109375,0.296875,0.2587890625,0.236328125,0.234375,0.2705078125,0.341796875,0.4267578125,0.494140625,0.5302734375,0.544921875,0.5185546875,0.4638671875,0.4140625,0.400390625,0.4345703125,0.5,0.560546875,0.57421875,0.5302734375,0.4521484375,0.3837890625,0.3623046875,0.39453125,0.4482421875,0.5234375,0.5966796875,0.6318359375,0.6201171875,0.5771484375,0.5302734375,0.494140625,0.49609375,0.5380859375,0.5966796875,0.638671875,0.640625,0.6044921875,0.5576171875,0.5126953125,0.4912109375,0.5078125,0.552734375,0.6025390625,0.634765625,0.6630859375,0.6884765625,0.6904296875,0.654296875,0.58984375,0.5205078125,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.51953125,0.4716796875,0.3916015625,0.30859375,0.2529296875,0.2392578125,0.2587890625,0.283203125,0.3017578125,0.3193359375,0.3447265625,0.380859375,0.423828125,0.46875,0.50390625,0.4990234375,0.4609375,0.4189453125,0.4052734375,0.435546875,0.5,0.5693359375,0.6201171875,0.6240234375,0.57421875,0.4931640625,0.4248046875,0.39453125,0.388671875,0.4287109375,0.501953125,0.568359375,0.5927734375,0.564453125,0.5,0.4267578125,0.3623046875,0.3369140625,0.36328125,0.4287109375,0.4931640625,0.5302734375,0.5458984375,0.5166015625,0.44140625,0.34765625,0.2724609375,0.2431640625,0.2587890625,0.28125,0.291015625,0.3037109375,0.3330078125,0.3876953125,0.45703125,0.5302734375,0.5869140625,0.5810546875,0.5107421875,0.4140625,0.34375,0.337890625,0.39453125,0.474609375,0.580078125,0.6845703125,0.75390625,0.7744140625,0.7607421875,0.740234375,0.7294921875,0.744140625,0.7705078125,0.78125,0.7587890625,0.7041015625,0.634765625,0.5625,0.4921875,0.4384765625,0.408203125,0.396484375,0.3857421875,0.3642578125,0.341796875,0.3369140625,0.341796875,0.3447265625,0.33203125,0.3017578125,0.2587890625,0.220703125,0.2158203125,0.2509765625,0.30859375,0.361328125,0.380859375,0.3642578125,0.3359375,0.3037109375,0.275390625,0.2587890625,0.2548828125,0.2578125,0.2587890625,0.27734375,0.3603515625,0.4912109375,0.61328125,0.6767578125,0.666015625,0.6044921875,0.5302734375,0.451171875,0.380859375,0.3310546875,0.3017578125,0.2822265625,0.2587890625,0.234375,0.232421875,0.28125,0.388671875,0.529296875,0.6552734375,0.740234375,0.8037109375,0.8232421875,0.775390625,0.673828125,0.5595703125,0.4853515625,0.46875,0.478515625,0.521484375,0.5849609375,0.640625,0.662109375,0.6455078125,0.6044921875,0.55078125,0.4736328125,0.3916015625,0.3359375,0.3212890625,0.337890625,0.3642578125,0.40234375,0.482421875,0.5908203125,0.6904296875,0.75,0.7607421875,0.740234375,0.7080078125,0.662109375,0.6240234375,0.6162109375,0.6435546875,0.6923828125,0.740234375,0.7900390625,0.849609375,0.892578125,0.892578125,0.849609375,0.7900390625,0.740234375,0.6806640625,0.5810546875,0.4716796875,0.4052734375,0.4052734375,0.458984375,0.5302734375,0.599609375,0.6533203125,0.67578125,0.666015625,0.638671875,0.6240234375,0.634765625,0.6591796875,0.6953125,0.7255859375,0.7294921875,0.7001953125,0.65234375,0.6044921875,0.5546875,0.4951171875,0.4521484375,0.4521484375,0.4951171875,0.5546875,0.6044921875,0.63671875,0.61328125,0.5244140625,0.40234375,0.296875,0.248046875,0.2587890625,0.294921875,0.3623046875,0.447265625,0.5185546875,0.5546875,0.552734375,0.5302734375,0.50390625,0.4794921875,0.4580078125,0.4365234375,0.4140625,0.3896484375,0.3642578125,0.3486328125,0.375,0.4306640625,0.48046875,0.4931640625,0.4599609375,0.39453125,0.337890625,0.34375,0.4140625,0.5107421875,0.5810546875,0.5869140625,0.5302734375,0.44921875,0.3515625,0.2783203125,0.2705078125,0.330078125,0.4208984375,0.5,0.5654296875,0.6044921875,0.607421875,0.44140625,0.46875,0.501953125,0.5244140625,0.5302734375,0.5244140625,0.501953125,0.46875,0.44140625,0.4326171875,0.4453125,0.46875,0.490234375,0.4892578125,0.4638671875,0.4248046875,0.3916015625,0.3818359375,0.39453125,0.4208984375,0.4697265625,0.5244140625,0.5546875,0.548828125,0.5146484375,0.46875,0.431640625,0.4306640625,0.4833984375,0.57421875,0.66796875,0.7275390625,0.740234375,0.734375,0.7041015625,0.640625,0.5576171875,0.4765625,0.4208984375,0.39453125,0.390625,0.4443359375,0.5517578125,0.6708984375,0.75390625,0.7734375,0.740234375,0.6962890625,0.65625,0.62109375,0.587890625,0.552734375,0.513671875,0.46875,0.4150390625,0.33984375,0.2783203125,0.267578125,0.314453125,0.3935546875,0.46875,0.546875,0.634765625,0.7041015625,0.728515625,0.7080078125,0.6669921875,0.634765625,0.6064453125,0.5693359375,0.5244140625,0.48046875,0.4423828125,0.4150390625,0.39453125,0.37890625,0.3818359375,0.408203125,0.4521484375,0.4970703125,0.5244140625,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.4375,0.51171875,0.5712890625,0.6044921875,0.615234375,0.6201171875,0.634765625,0.640625,0.59375,0.494140625,0.375,0.2822265625,0.2451171875,0.2587890625,0.291015625,0.3427734375,0.408203125,0.46875,0.509765625,0.52734375,0.5302734375,0.525390625,0.5078125,0.4912109375,0.4912109375,0.5166015625,0.55859375,0.6044921875,0.6455078125,0.6669921875,0.6630859375,0.640625,0.6181640625,0.615234375,0.634765625,0.65234375,0.6318359375,0.568359375,0.4853515625,0.416015625,0.384765625,0.39453125,0.41015625,0.4072265625,0.3798828125,0.3369140625,0.2919921875,0.2646484375,0.2587890625,0.2685546875,0.310546875,0.3642578125,0.39453125,0.380859375,0.3291015625,0.2587890625,0.1845703125,0.115234375,0.095703125,0.1513671875,0.2646484375,0.384765625,0.46875,0.5419921875,0.60546875,0.6328125,0.6103515625,0.552734375,0.498046875,0.46875,0.4521484375,0.4453125,0.4560546875,0.4794921875,0.5078125,0.525390625,0.5302734375,0.529296875,0.5244140625,0.5078125,0.474609375,0.4326171875,0.3935546875,0.3642578125,0.3330078125,0.2900390625,0.248046875,0.2236328125,0.22265625,0.2392578125,0.2587890625,0.2880859375,0.3544921875,0.44921875,0.541015625,0.6005859375,0.6171875,0.6044921875,0.5908203125,0.595703125,0.619140625,0.6455078125,0.662109375,0.6572265625,0.634765625,0.5986328125,0.5341796875,0.46875,0.44140625,0.4677734375,0.5322265625,0.6044921875,0.6591796875,0.64453125,0.5576171875,0.44140625,0.3544921875,0.33984375,0.39453125,0.4677734375,0.529296875,0.546875,0.4990234375,0.4072265625,0.31640625,0.2587890625,0.2138671875,0.1796875,0.1845703125,0.240234375,0.3291015625,0.4140625,0.46875,0.50390625,0.4990234375,0.4609375,0.4189453125,0.4052734375,0.435546875,0.5,0.5625,0.5830078125,0.546875,0.46875,0.390625,0.3515625,0.3642578125,0.3955078125,0.443359375,0.4912109375,0.5185546875,0.517578125,0.49609375,0.46875,0.451171875,0.466796875,0.5185546875,0.5849609375,0.63671875,0.6533203125,0.634765625,0.6025390625,0.552734375,0.5078125,0.4912109375,0.5126953125,0.5576171875,0.6044921875,0.650390625,0.6904296875,0.701171875,0.673828125,0.6181640625,0.5634765625,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.4580078125,0.40625,0.3251953125,0.2509765625,0.2119140625,0.2197265625,0.2587890625,0.3056640625,0.3564453125,0.4052734375,0.447265625,0.478515625,0.50390625,0.5302734375,0.544921875,0.5185546875,0.4638671875,0.4140625,0.400390625,0.4345703125,0.5,0.5634765625,0.5888671875,0.5576171875,0.4833984375,0.4033203125,0.3583984375,0.3642578125,0.3955078125,0.4677734375,0.5546875,0.61328125,0.6162109375,0.568359375,0.5,0.4228515625,0.33984375,0.2861328125,0.2900390625,0.3447265625,0.416015625,0.46875,0.501953125,0.4833984375,0.4111328125,0.3173828125,0.2451171875,0.2255859375,0.2587890625,0.2978515625,0.314453125,0.31640625,0.3232421875,0.349609375,0.400390625,0.46875,0.5263671875,0.5244140625,0.4609375,0.3720703125,0.30859375,0.306640625,0.3642578125,0.439453125,0.52734375,0.6103515625,0.6708984375,0.705078125,0.72265625,0.740234375,0.765625,0.8046875,0.8310546875,0.8173828125,0.759765625,0.6796875,0.6044921875,0.5361328125,0.484375,0.4580078125,0.4521484375,0.4501953125,0.43359375,0.39453125,0.3505859375,0.31640625,0.2978515625,0.2919921875,0.291015625,0.28125,0.2587890625,0.2431640625,0.2666015625,0.3251953125,0.3916015625,0.4326171875,0.431640625,0.39453125,0.3466796875,0.2978515625,0.2587890625,0.2421875,0.24609375,0.255859375,0.2587890625,0.27734375,0.365234375,0.501953125,0.6318359375,0.703125,0.6962890625,0.634765625,0.5625,0.4912109375,0.427734375,0.3779296875,0.3388671875,0.3017578125,0.2587890625,0.2158203125,0.19921875,0.2451171875,0.361328125,0.515625,0.65234375,0.740234375,0.8046875,0.83203125,0.7978515625,0.7119140625,0.6123046875,0.544921875,0.5302734375,0.5361328125,0.564453125,0.607421875,0.646484375,0.6650390625,0.658203125,0.634765625,0.59765625,0.5224609375,0.4306640625,0.3583984375,0.3330078125,0.3525390625,0.39453125,0.453125,0.5546875,0.673828125,0.7646484375,0.7998046875,0.7822265625,0.740234375,0.6923828125,0.6435546875,0.6162109375,0.6240234375,0.662109375,0.7080078125,0.740234375,0.76953125,0.8037109375,0.828125,0.828125,0.8037109375,0.76953125,0.740234375,0.6982421875,0.6044921875,0.4853515625,0.39453125,0.3671875,0.40234375,0.46875,0.544921875,0.625,0.6826171875,0.6953125,0.6689453125,0.6298828125,0.6044921875,0.5908203125,0.595703125,0.619140625,0.6455078125,0.662109375,0.6572265625,0.634765625,0.60546875,0.5712890625,0.546875,0.546875,0.5712890625,0.60546875,0.634765625,0.6455078125,0.5927734375,0.48046875,0.3505859375,0.2548828125,0.2275390625,0.2587890625,0.314453125,0.3994140625,0.48828125,0.5439453125,0.548828125,0.5146484375,0.46875,0.4296875,0.4140625,0.4228515625,0.44140625,0.4501953125,0.43359375,0.39453125,0.359375,0.3642578125,0.40234375,0.4443359375,0.4580078125,0.4287109375,0.3642578125,0.306640625,0.30859375,0.3720703125,0.4609375,0.5244140625,0.5263671875,0.46875,0.3896484375,0.2998046875,0.240234375,0.248046875,0.3212890625,0.4189453125,0.5,0.568359375,0.6220703125,0.646484375,0.4609375,0.5029296875,0.5419921875,0.5654296875,0.5703125,0.5654296875,0.5419921875,0.5029296875,0.4609375,0.431640625,0.421875,0.4287109375,0.4326171875,0.4130859375,0.380859375,0.359375,0.3662109375,0.3994140625,0.4482421875,0.505859375,0.576171875,0.626953125,0.626953125,0.5732421875,0.49609375,0.4287109375,0.375,0.359375,0.4033203125,0.4931640625,0.59375,0.6591796875,0.673828125,0.6748046875,0.677734375,0.6650390625,0.626953125,0.5673828125,0.5029296875,0.4482421875,0.412109375,0.4375,0.5244140625,0.6318359375,0.708984375,0.720703125,0.673828125,0.6162109375,0.578125,0.5576171875,0.544921875,0.5244140625,0.4853515625,0.4287109375,0.359375,0.2724609375,0.2080078125,0.2041015625,0.2626953125,0.3505859375,0.4287109375,0.5048828125,0.5869140625,0.650390625,0.67578125,0.6630859375,0.6376953125,0.6220703125,0.6142578125,0.615234375,0.61328125,0.5927734375,0.552734375,0.5,0.4482421875,0.4013671875,0.37890625,0.396484375,0.4501953125,0.515625,0.560546875,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.4453125,0.498046875,0.5283203125,0.541015625,0.55078125,0.576171875,0.6220703125,0.6630859375,0.658203125,0.59375,0.4892578125,0.3876953125,0.3291015625,0.3251953125,0.341796875,0.37890625,0.435546875,0.4951171875,0.5419921875,0.5654296875,0.5703125,0.5615234375,0.5234375,0.4736328125,0.4423828125,0.44921875,0.4921875,0.55078125,0.611328125,0.658203125,0.677734375,0.666015625,0.6376953125,0.6181640625,0.6220703125,0.62109375,0.5771484375,0.5029296875,0.4306640625,0.3935546875,0.4033203125,0.4482421875,0.494140625,0.5166015625,0.4990234375,0.4453125,0.3798828125,0.3359375,0.3251953125,0.3359375,0.376953125,0.4306640625,0.4609375,0.4482421875,0.3955078125,0.3251953125,0.248046875,0.1669921875,0.123046875,0.150390625,0.240234375,0.3466796875,0.4287109375,0.505859375,0.587890625,0.638671875,0.6298828125,0.5673828125,0.48828125,0.4287109375,0.3828125,0.3623046875,0.384765625,0.443359375,0.5126953125,0.5595703125,0.5703125,0.5673828125,0.5498046875,0.5146484375,0.4677734375,0.4228515625,0.3916015625,0.376953125,0.359375,0.3154296875,0.263671875,0.2333984375,0.2392578125,0.275390625,0.3251953125,0.3876953125,0.4814453125,0.5791015625,0.6396484375,0.642578125,0.6025390625,0.55078125,0.5048828125,0.482421875,0.49609375,0.541015625,0.5927734375,0.623046875,0.6220703125,0.599609375,0.5419921875,0.470703125,0.4267578125,0.431640625,0.4814453125,0.55078125,0.6083984375,0.6064453125,0.5439453125,0.455078125,0.392578125,0.390625,0.4482421875,0.5234375,0.5966796875,0.6279296875,0.591796875,0.5,0.3984375,0.3251953125,0.259765625,0.1923828125,0.158203125,0.185546875,0.265625,0.3583984375,0.4287109375,0.48046875,0.4921875,0.4658203125,0.427734375,0.4111328125,0.4365234375,0.5,0.5654296875,0.5966796875,0.5751953125,0.5078125,0.4287109375,0.3798828125,0.376953125,0.3896484375,0.41015625,0.4306640625,0.4443359375,0.4462890625,0.439453125,0.4287109375,0.4248046875,0.4462890625,0.4951171875,0.5556640625,0.6044921875,0.6259765625,0.6220703125,0.6015625,0.5498046875,0.486328125,0.4462890625,0.44921875,0.4921875,0.55078125,0.6123046875,0.666015625,0.689453125,0.6728515625,0.62890625,0.587890625,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.41796875,0.3701171875,0.30078125,0.248046875,0.236328125,0.2685546875,0.3251953125,0.3896484375,0.4580078125,0.5166015625,0.55078125,0.5615234375,0.5625,0.5703125,0.568359375,0.525390625,0.458984375,0.4052734375,0.39453125,0.4326171875,0.5,0.5595703125,0.5673828125,0.515625,0.4306640625,0.359375,0.3408203125,0.376953125,0.439453125,0.533203125,0.6240234375,0.6650390625,0.640625,0.5732421875,0.5,0.419921875,0.3232421875,0.248046875,0.234375,0.283203125,0.361328125,0.4287109375,0.4775390625,0.474609375,0.4169921875,0.337890625,0.2802734375,0.27734375,0.3251953125,0.3779296875,0.3935546875,0.3740234375,0.345703125,0.3359375,0.365234375,0.4287109375,0.4873046875,0.4921875,0.4404296875,0.3662109375,0.314453125,0.318359375,0.376953125,0.447265625,0.505859375,0.546875,0.5732421875,0.595703125,0.626953125,0.673828125,0.73046875,0.7939453125,0.830078125,0.806640625,0.7275390625,0.630859375,0.55078125,0.4873046875,0.4580078125,0.4677734375,0.4970703125,0.515625,0.5,0.4482421875,0.38671875,0.3330078125,0.3017578125,0.30078125,0.31640625,0.330078125,0.3251953125,0.3271484375,0.3701171875,0.4404296875,0.50390625,0.52734375,0.5029296875,0.4482421875,0.3857421875,0.3251953125,0.287109375,0.2802734375,0.298828125,0.3203125,0.3251953125,0.3427734375,0.419921875,0.5400390625,0.6484375,0.701171875,0.6845703125,0.6220703125,0.5537109375,0.5009765625,0.466796875,0.4453125,0.4208984375,0.3818359375,0.3251953125,0.263671875,0.2197265625,0.232421875,0.3203125,0.45703125,0.5869140625,0.673828125,0.7412109375,0.7802734375,0.7705078125,0.712890625,0.63671875,0.58203125,0.5703125,0.572265625,0.5849609375,0.6044921875,0.6220703125,0.6318359375,0.630859375,0.6220703125,0.5986328125,0.5341796875,0.4482421875,0.380859375,0.361328125,0.390625,0.4482421875,0.521484375,0.62890625,0.736328125,0.7958984375,0.7890625,0.736328125,0.673828125,0.6123046875,0.5615234375,0.5419921875,0.5634765625,0.611328125,0.654296875,0.673828125,0.6845703125,0.6982421875,0.7080078125,0.7080078125,0.6982421875,0.6845703125,0.673828125,0.6474609375,0.568359375,0.458984375,0.3681640625,0.3349609375,0.36328125,0.4287109375,0.5087890625,0.60546875,0.6845703125,0.7080078125,0.671875,0.607421875,0.55078125,0.5048828125,0.482421875,0.49609375,0.541015625,0.5927734375,0.623046875,0.6220703125,0.6103515625,0.5966796875,0.5869140625,0.5869140625,0.5966796875,0.6103515625,0.6220703125,0.6162109375,0.552734375,0.4423828125,0.333984375,0.271484375,0.2744140625,0.3251953125,0.396484375,0.4892578125,0.5693359375,0.5966796875,0.5625,0.4951171875,0.4287109375,0.3779296875,0.37109375,0.41015625,0.466796875,0.505859375,0.4990234375,0.4482421875,0.396484375,0.384765625,0.4111328125,0.44921875,0.4658203125,0.4404296875,0.376953125,0.318359375,0.314453125,0.3662109375,0.4404296875,0.4921875,0.4873046875,0.4287109375,0.3505859375,0.265625,0.21484375,0.2333984375,0.3154296875,0.41796875,0.5,0.5703125,0.6318359375,0.6650390625,0.48046875,0.5126953125,0.541015625,0.556640625,0.5595703125,0.556640625,0.541015625,0.5126953125,0.48046875,0.4541015625,0.4404296875,0.439453125,0.4326171875,0.400390625,0.361328125,0.3447265625,0.3671875,0.421875,0.4892578125,0.564453125,0.6494140625,0.703125,0.6904296875,0.615234375,0.5185546875,0.439453125,0.375,0.3408203125,0.3583984375,0.4248046875,0.5087890625,0.56640625,0.5791015625,0.5869140625,0.615234375,0.646484375,0.6513671875,0.619140625,0.55859375,0.4892578125,0.4345703125,0.4365234375,0.49609375,0.578125,0.63671875,0.6357421875,0.5791015625,0.517578125,0.490234375,0.498046875,0.5205078125,0.5283203125,0.5009765625,0.439453125,0.361328125,0.2685546875,0.2021484375,0.201171875,0.2666015625,0.3603515625,0.439453125,0.5126953125,0.58203125,0.625,0.6298828125,0.60546875,0.578125,0.5693359375,0.5751953125,0.6044921875,0.63671875,0.6455078125,0.6162109375,0.5576171875,0.4892578125,0.4248046875,0.3828125,0.3857421875,0.43359375,0.5,0.5478515625,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.4931640625,0.5224609375,0.5166015625,0.494140625,0.484375,0.509765625,0.5693359375,0.6318359375,0.6630859375,0.640625,0.572265625,0.48828125,0.4306640625,0.419921875,0.4248046875,0.4423828125,0.474609375,0.5107421875,0.5400390625,0.556640625,0.5595703125,0.548828125,0.501953125,0.4384765625,0.3955078125,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.63671875,0.6611328125,0.646484375,0.6083984375,0.576171875,0.5693359375,0.5595703125,0.51171875,0.443359375,0.392578125,0.3857421875,0.4248046875,0.4892578125,0.5546875,0.595703125,0.5927734375,0.5458984375,0.4794921875,0.4306640625,0.419921875,0.4296875,0.4716796875,0.5244140625,0.5556640625,0.5419921875,0.4892578125,0.419921875,0.3408203125,0.2490234375,0.1865234375,0.19140625,0.2626953125,0.359375,0.439453125,0.5185546875,0.611328125,0.67578125,0.673828125,0.607421875,0.5166015625,0.439453125,0.3759765625,0.3408203125,0.3544921875,0.4150390625,0.4931640625,0.546875,0.5595703125,0.556640625,0.5419921875,0.513671875,0.48046875,0.451171875,0.4345703125,0.4296875,0.41796875,0.3759765625,0.322265625,0.2919921875,0.3037109375,0.353515625,0.419921875,0.498046875,0.5986328125,0.6826171875,0.7060546875,0.662109375,0.5830078125,0.509765625,0.4443359375,0.4033203125,0.404296875,0.4501953125,0.5146484375,0.5595703125,0.5693359375,0.556640625,0.505859375,0.439453125,0.3935546875,0.39453125,0.4404296875,0.509765625,0.568359375,0.5771484375,0.5322265625,0.466796875,0.421875,0.4306640625,0.4892578125,0.5673828125,0.65234375,0.7021484375,0.6826171875,0.6005859375,0.4990234375,0.419921875,0.3427734375,0.2529296875,0.1923828125,0.197265625,0.2666015625,0.361328125,0.439453125,0.4990234375,0.515625,0.4892578125,0.4443359375,0.4189453125,0.4384765625,0.5,0.5673828125,0.6103515625,0.6064453125,0.5576171875,0.48828125,0.439453125,0.4296875,0.431640625,0.435546875,0.439453125,0.44140625,0.4423828125,0.44140625,0.439453125,0.44140625,0.45703125,0.486328125,0.5224609375,0.5517578125,0.5673828125,0.5693359375,0.556640625,0.5068359375,0.44140625,0.396484375,0.3974609375,0.4423828125,0.509765625,0.5791015625,0.6376953125,0.662109375,0.646484375,0.60546875,0.5693359375,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.4296875,0.38671875,0.330078125,0.294921875,0.3037109375,0.3525390625,0.419921875,0.4912109375,0.55859375,0.6005859375,0.607421875,0.5869140625,0.564453125,0.5595703125,0.5498046875,0.501953125,0.435546875,0.388671875,0.38671875,0.431640625,0.5,0.55859375,0.5625,0.5087890625,0.431640625,0.375,0.375,0.4296875,0.5078125,0.6083984375,0.689453125,0.7099609375,0.6611328125,0.5771484375,0.5,0.4189453125,0.318359375,0.2392578125,0.224609375,0.27734375,0.36328125,0.439453125,0.498046875,0.505859375,0.4619140625,0.3974609375,0.353515625,0.3623046875,0.419921875,0.478515625,0.490234375,0.4541015625,0.3994140625,0.365234375,0.37890625,0.439453125,0.4990234375,0.5087890625,0.466796875,0.4033203125,0.3603515625,0.3701171875,0.4296875,0.4931640625,0.5244140625,0.51953125,0.5,0.4931640625,0.51953125,0.5791015625,0.654296875,0.7373046875,0.7880859375,0.7705078125,0.69140625,0.5908203125,0.509765625,0.44921875,0.4345703125,0.4697265625,0.5244140625,0.560546875,0.5478515625,0.4892578125,0.419921875,0.361328125,0.333984375,0.345703125,0.3818359375,0.4130859375,0.419921875,0.4296875,0.4775390625,0.544921875,0.59375,0.59765625,0.5556640625,0.4892578125,0.419921875,0.3603515625,0.33203125,0.3427734375,0.37890625,0.412109375,0.419921875,0.43359375,0.4931640625,0.580078125,0.6494140625,0.669921875,0.6357421875,0.5693359375,0.505859375,0.4755859375,0.4814453125,0.501953125,0.5087890625,0.4814453125,0.419921875,0.345703125,0.271484375,0.2412109375,0.2822265625,0.3837890625,0.49609375,0.5791015625,0.6484375,0.6982421875,0.70703125,0.671875,0.6142578125,0.5693359375,0.5595703125,0.5595703125,0.5615234375,0.5654296875,0.568359375,0.5703125,0.5703125,0.5693359375,0.5556640625,0.5048828125,0.4345703125,0.3837890625,0.380859375,0.4228515625,0.4892578125,0.5693359375,0.671875,0.7578125,0.78125,0.736328125,0.6552734375,0.5791015625,0.5107421875,0.458984375,0.4443359375,0.4736328125,0.5263671875,0.568359375,0.5791015625,0.5810546875,0.5830078125,0.5849609375,0.5849609375,0.5830078125,0.5810546875,0.5791015625,0.564453125,0.5048828125,0.419921875,0.353515625,0.3369140625,0.373046875,0.439453125,0.5205078125,0.62109375,0.701171875,0.7177734375,0.66796875,0.583984375,0.509765625,0.4443359375,0.4033203125,0.404296875,0.4501953125,0.5146484375,0.5595703125,0.5693359375,0.5673828125,0.5654296875,0.5634765625,0.5634765625,0.5654296875,0.5673828125,0.5693359375,0.5576171875,0.5,0.4150390625,0.3447265625,0.3232421875,0.35546875,0.419921875,0.498046875,0.5927734375,0.662109375,0.6669921875,0.6064453125,0.517578125,0.439453125,0.3828125,0.3779296875,0.4287109375,0.5009765625,0.55078125,0.546875,0.4892578125,0.4296875,0.4130859375,0.4404296875,0.484375,0.509765625,0.4912109375,0.4296875,0.3701171875,0.3603515625,0.4033203125,0.466796875,0.5087890625,0.4990234375,0.439453125,0.361328125,0.2744140625,0.220703125,0.2373046875,0.3173828125,0.41796875,0.5,0.5703125,0.630859375,0.658203125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.51953125,0.48046875,0.4453125,0.4248046875,0.419921875,0.421875,0.4375,0.4677734375,0.505859375,0.5380859375,0.5556640625,0.5595703125,0.548828125,0.5009765625,0.4375,0.392578125,0.3916015625,0.4345703125,0.5,0.5771484375,0.67578125,0.7548828125,0.7734375,0.724609375,0.6435546875,0.5693359375,0.4990234375,0.431640625,0.38671875,0.3779296875,0.3974609375,0.421875,0.4296875,0.4423828125,0.490234375,0.5546875,0.599609375,0.5986328125,0.5546875,0.4892578125,0.4306640625,0.4140625,0.4384765625,0.48046875,0.505859375,0.48828125,0.4296875,0.3759765625,0.3837890625,0.453125,0.546875,0.61328125,0.6162109375,0.5595703125,0.48046875,0.3896484375,0.328125,0.3349609375,0.4052734375,0.5009765625,0.5791015625,0.64453125,0.6787109375,0.66015625,0.59375,0.5107421875,0.453125,0.439453125,0.4501953125,0.49609375,0.55859375,0.6005859375,0.5986328125,0.5546875,0.4892578125,0.421875,0.3662109375,0.341796875,0.357421875,0.3974609375,0.431640625,0.439453125,0.4326171875,0.4072265625,0.3818359375,0.3857421875,0.4287109375,0.49609375,0.5693359375,0.6259765625,0.619140625,0.5478515625,0.451171875,0.3798828125,0.373046875,0.4296875,0.5029296875,0.5712890625,0.6142578125,0.6201171875,0.59765625,0.57421875,0.5693359375,0.5673828125,0.55078125,0.5185546875,0.48046875,0.4482421875,0.431640625,0.4296875,0.423828125,0.3935546875,0.359375,0.3505859375,0.3798828125,0.439453125,0.509765625,0.5751953125,0.6162109375,0.6103515625,0.55859375,0.4892578125,0.439453125,0.4296875,0.4228515625,0.390625,0.3525390625,0.337890625,0.3623046875,0.419921875,0.4892578125,0.5595703125,0.6220703125,0.6552734375,0.6484375,0.6171875,0.5869140625,0.5791015625,0.5888671875,0.6298828125,0.6806640625,0.7080078125,0.693359375,0.6396484375,0.5693359375,0.4892578125,0.3935546875,0.3251953125,0.322265625,0.38671875,0.4794921875,0.5595703125,0.638671875,0.73046875,0.794921875,0.7939453125,0.7275390625,0.6357421875,0.5595703125,0.490234375,0.423828125,0.380859375,0.3740234375,0.3935546875,0.4150390625,0.419921875,0.421875,0.4375,0.46875,0.5087890625,0.5439453125,0.5634765625,0.5693359375,0.560546875,0.5205078125,0.4658203125,0.43359375,0.4423828125,0.4912109375,0.5595703125,0.6357421875,0.7216796875,0.7763671875,0.7626953125,0.6865234375,0.5888671875,0.509765625,0.439453125,0.3798828125,0.3515625,0.3623046875,0.3994140625,0.431640625,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5673828125,0.5771484375,0.5341796875,0.470703125,0.4267578125,0.43359375,0.4892578125,0.568359375,0.669921875,0.75390625,0.7783203125,0.7353515625,0.6552734375,0.5791015625,0.5009765625,0.408203125,0.33984375,0.3349609375,0.3955078125,0.4833984375,0.5595703125,0.615234375,0.6181640625,0.56640625,0.4921875,0.44140625,0.4443359375,0.5,0.568359375,0.626953125,0.6572265625,0.6474609375,0.611328125,0.5791015625,0.5693359375,0.5673828125,0.56640625,0.564453125,0.5634765625,0.5625,0.560546875,0.5595703125,0.5546875,0.5390625,0.51171875,0.4814453125,0.4560546875,0.4423828125,0.439453125,0.4306640625,0.396484375,0.35546875,0.3388671875,0.36328125,0.419921875,0.4892578125,0.556640625,0.6025390625,0.6064453125,0.5634765625,0.5,0.4521484375,0.439453125,0.4404296875,0.4541015625,0.4814453125,0.515625,0.546875,0.564453125,0.5693359375,0.5615234375,0.5234375,0.4736328125,0.4453125,0.4599609375,0.5107421875,0.5791015625,0.6435546875,0.673828125,0.650390625,0.578125,0.490234375,0.431640625,0.419921875,0.4130859375,0.3818359375,0.345703125,0.333984375,0.361328125,0.419921875,0.4892578125,0.5498046875,0.5703125,0.5498046875,0.513671875,0.494140625,0.517578125,0.5791015625,0.65625,0.7392578125,0.78515625,0.7626953125,0.6796875,0.578125,0.5,0.4248046875,0.341796875,0.291015625,0.3076171875,0.3876953125,0.48828125,0.5693359375,0.62890625,0.638671875,0.595703125,0.5322265625,0.490234375,0.5,0.5595703125,0.619140625,0.6318359375,0.5947265625,0.53515625,0.494140625,0.5029296875,0.5595703125,0.6162109375,0.6279296875,0.591796875,0.537109375,0.5009765625,0.51171875,0.5693359375,0.623046875,0.6142578125,0.5419921875,0.4462890625,0.376953125,0.373046875,0.4296875,0.5107421875,0.6123046875,0.6923828125,0.7080078125,0.654296875,0.568359375,0.4892578125,0.4296875,0.4208984375,0.4638671875,0.529296875,0.57421875,0.5673828125,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.443359375,0.4013671875,0.4052734375,0.4541015625,0.521484375,0.5693359375,0.5791015625,0.583984375,0.6064453125,0.626953125,0.62109375,0.578125,0.5107421875,0.439453125,0.3837890625,0.3876953125,0.4541015625,0.544921875,0.611328125,0.615234375,0.5595703125,0.478515625,0.373046875,0.283203125,0.251953125,0.2900390625,0.3662109375,0.439453125,0.505859375,0.5537109375,0.5615234375,0.52734375,0.4716796875,0.4296875,0.419921875,0.419921875,0.4189453125,0.4169921875,0.4169921875,0.4169921875,0.41796875,0.419921875,0.4140625,0.384765625,0.353515625,0.3466796875,0.3779296875,0.439453125,0.509765625,0.5859375,0.6689453125,0.71875,0.7001953125,0.6201171875,0.51953125,0.439453125,0.37109375,0.3173828125,0.3017578125,0.3271484375,0.3779296875,0.4189453125,0.4296875,0.4306640625,0.4296875,0.4267578125,0.4228515625,0.419921875,0.4189453125,0.419921875,0.4150390625,0.3955078125,0.37890625,0.390625,0.4384765625,0.5078125,0.5791015625,0.6552734375,0.736328125,0.78125,0.7578125,0.671875,0.5693359375,0.4892578125,0.419921875,0.359375,0.3291015625,0.33984375,0.376953125,0.41015625,0.419921875,0.421875,0.4248046875,0.4287109375,0.431640625,0.4326171875,0.431640625,0.4296875,0.421875,0.396484375,0.376953125,0.38671875,0.4345703125,0.505859375,0.5791015625,0.658203125,0.75,0.8125,0.8076171875,0.736328125,0.6396484375,0.5595703125,0.498046875,0.48046875,0.5078125,0.5546875,0.583984375,0.568359375,0.509765625,0.4521484375,0.4482421875,0.4990234375,0.57421875,0.626953125,0.625,0.5693359375,0.5126953125,0.5048828125,0.544921875,0.6044921875,0.642578125,0.6298828125,0.5693359375,0.48828125,0.3876953125,0.3076171875,0.291015625,0.341796875,0.4248046875,0.5,0.564453125,0.607421875,0.6064453125,0.5478515625,0.4697265625,0.3935546875,0.34375,0.3251953125,0.3212890625,0.34375,0.3955078125,0.46484375,0.52734375,0.5625,0.5703125,0.5615234375,0.5234375,0.4697265625,0.4287109375,0.4228515625,0.451171875,0.5,0.55859375,0.640625,0.7158203125,0.748046875,0.7275390625,0.67578125,0.6220703125,0.5654296875,0.4921875,0.419921875,0.373046875,0.3583984375,0.3662109375,0.376953125,0.396484375,0.4423828125,0.4970703125,0.533203125,0.5322265625,0.4970703125,0.4482421875,0.4033203125,0.3876953125,0.400390625,0.4248046875,0.4375,0.421875,0.376953125,0.341796875,0.3701171875,0.45703125,0.5595703125,0.6279296875,0.6279296875,0.5703125,0.494140625,0.4189453125,0.3828125,0.4140625,0.501953125,0.6015625,0.673828125,0.7275390625,0.7421875,0.69921875,0.6083984375,0.5087890625,0.443359375,0.4287109375,0.4365234375,0.46875,0.5107421875,0.537109375,0.5322265625,0.4970703125,0.4482421875,0.3974609375,0.3583984375,0.3447265625,0.361328125,0.39453125,0.421875,0.4287109375,0.423828125,0.4052734375,0.39453125,0.4150390625,0.4716796875,0.5478515625,0.6220703125,0.67578125,0.6572265625,0.5625,0.4365234375,0.341796875,0.3232421875,0.376953125,0.451171875,0.52734375,0.587890625,0.6171875,0.6201171875,0.6162109375,0.6220703125,0.625,0.5966796875,0.5361328125,0.462890625,0.40234375,0.3740234375,0.376953125,0.3828125,0.3759765625,0.37109375,0.38671875,0.4287109375,0.4892578125,0.55078125,0.60546875,0.623046875,0.587890625,0.51171875,0.4287109375,0.3798828125,0.376953125,0.380859375,0.361328125,0.3330078125,0.3212890625,0.3408203125,0.3876953125,0.4482421875,0.5126953125,0.5849609375,0.646484375,0.6806640625,0.6845703125,0.6767578125,0.673828125,0.6826171875,0.7177734375,0.759765625,0.7763671875,0.7509765625,0.6923828125,0.6220703125,0.541015625,0.4404296875,0.3623046875,0.3486328125,0.4033203125,0.4912109375,0.5703125,0.646484375,0.728515625,0.7802734375,0.771484375,0.708984375,0.6298828125,0.5703125,0.5166015625,0.455078125,0.3994140625,0.3603515625,0.341796875,0.333984375,0.3251953125,0.3212890625,0.34375,0.3994140625,0.4775390625,0.5537109375,0.603515625,0.6220703125,0.6220703125,0.587890625,0.5322265625,0.48828125,0.48046875,0.5126953125,0.5703125,0.6376953125,0.7158203125,0.7685546875,0.763671875,0.7021484375,0.6201171875,0.55078125,0.48828125,0.4287109375,0.390625,0.3837890625,0.40234375,0.4228515625,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.6015625,0.6044921875,0.5546875,0.4794921875,0.419921875,0.4091796875,0.4482421875,0.5107421875,0.611328125,0.716796875,0.78125,0.7822265625,0.7353515625,0.673828125,0.6044921875,0.517578125,0.4443359375,0.421875,0.4541015625,0.5146484375,0.5703125,0.611328125,0.6103515625,0.5654296875,0.50390625,0.4599609375,0.458984375,0.5,0.5537109375,0.611328125,0.65625,0.6708984375,0.658203125,0.6357421875,0.6220703125,0.6123046875,0.6044921875,0.5986328125,0.59375,0.587890625,0.580078125,0.5703125,0.556640625,0.5322265625,0.4990234375,0.4658203125,0.4423828125,0.4306640625,0.4287109375,0.4208984375,0.3876953125,0.345703125,0.3251953125,0.3408203125,0.3876953125,0.4482421875,0.5087890625,0.556640625,0.572265625,0.5458984375,0.4931640625,0.4482421875,0.4287109375,0.421875,0.431640625,0.46484375,0.515625,0.568359375,0.60546875,0.6220703125,0.6240234375,0.6025390625,0.5703125,0.5537109375,0.5693359375,0.6142578125,0.673828125,0.7236328125,0.7197265625,0.646484375,0.5234375,0.40234375,0.33203125,0.3251953125,0.330078125,0.31640625,0.30078125,0.3017578125,0.3330078125,0.38671875,0.4482421875,0.5029296875,0.533203125,0.5419921875,0.544921875,0.5625,0.6064453125,0.673828125,0.74609375,0.806640625,0.8193359375,0.7646484375,0.6630859375,0.5634765625,0.5,0.4423828125,0.37890625,0.3427734375,0.3662109375,0.4453125,0.5419921875,0.6220703125,0.6806640625,0.6845703125,0.6328125,0.55859375,0.5068359375,0.51171875,0.5703125,0.6328125,0.6552734375,0.630859375,0.5791015625,0.53515625,0.5302734375,0.5703125,0.61328125,0.6279296875,0.6103515625,0.5810546875,0.564453125,0.578125,0.6220703125,0.6552734375,0.62109375,0.5224609375,0.40625,0.3271484375,0.3203125,0.376953125,0.458984375,0.5615234375,0.6435546875,0.662109375,0.611328125,0.5263671875,0.4482421875,0.388671875,0.384765625,0.4404296875,0.5234375,0.5888671875,0.5986328125,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.49609375,0.4716796875,0.4951171875,0.55859375,0.62890625,0.671875,0.673828125,0.666015625,0.6640625,0.6533203125,0.619140625,0.5615234375,0.4931640625,0.4287109375,0.380859375,0.388671875,0.455078125,0.5439453125,0.6103515625,0.6181640625,0.5703125,0.5,0.408203125,0.3271484375,0.294921875,0.318359375,0.3740234375,0.4287109375,0.4765625,0.5009765625,0.4873046875,0.4384765625,0.376953125,0.3349609375,0.3251953125,0.32421875,0.318359375,0.310546875,0.3056640625,0.3076171875,0.3154296875,0.3251953125,0.33203125,0.33203125,0.337890625,0.3671875,0.421875,0.4873046875,0.55078125,0.6162109375,0.6826171875,0.7119140625,0.6796875,0.595703125,0.5,0.4287109375,0.3662109375,0.3095703125,0.279296875,0.287109375,0.3232421875,0.3603515625,0.376953125,0.384765625,0.3798828125,0.3623046875,0.33984375,0.3232421875,0.318359375,0.3251953125,0.3349609375,0.349609375,0.3828125,0.4443359375,0.5263671875,0.607421875,0.673828125,0.736328125,0.7890625,0.7958984375,0.736328125,0.62890625,0.521484375,0.4482421875,0.3837890625,0.318359375,0.271484375,0.2607421875,0.28125,0.3095703125,0.3251953125,0.3388671875,0.3583984375,0.3798828125,0.3935546875,0.39453125,0.3876953125,0.376953125,0.3642578125,0.3505859375,0.361328125,0.4140625,0.5009765625,0.595703125,0.673828125,0.7509765625,0.83203125,0.8759765625,0.8486328125,0.7587890625,0.65234375,0.5703125,0.5087890625,0.4892578125,0.517578125,0.5693359375,0.6064453125,0.6015625,0.55078125,0.5,0.4931640625,0.5361328125,0.6025390625,0.654296875,0.6611328125,0.6220703125,0.58203125,0.5869140625,0.630859375,0.6826171875,0.70703125,0.6845703125,0.6220703125,0.5419921875,0.4453125,0.3662109375,0.3427734375,0.37890625,0.4423828125,0.5,0.5478515625,0.576171875,0.5703125,0.5849609375,0.4853515625,0.376953125,0.296875,0.2587890625,0.2392578125,0.2529296875,0.30859375,0.3916015625,0.4716796875,0.51953125,0.5302734375,0.5263671875,0.51171875,0.4912109375,0.474609375,0.4716796875,0.4814453125,0.5,0.5234375,0.5654296875,0.61328125,0.6484375,0.6611328125,0.6533203125,0.634765625,0.6064453125,0.544921875,0.4609375,0.3857421875,0.3447265625,0.341796875,0.3642578125,0.392578125,0.4267578125,0.453125,0.4580078125,0.44140625,0.416015625,0.39453125,0.3779296875,0.37109375,0.375,0.3828125,0.38671875,0.380859375,0.3642578125,0.359375,0.4072265625,0.494140625,0.576171875,0.6142578125,0.5927734375,0.5302734375,0.458984375,0.4052734375,0.4052734375,0.4716796875,0.5810546875,0.6806640625,0.740234375,0.7783203125,0.7783203125,0.7255859375,0.6357421875,0.541015625,0.4814453125,0.46875,0.4697265625,0.4716796875,0.4697265625,0.4580078125,0.4375,0.4150390625,0.39453125,0.3779296875,0.373046875,0.3857421875,0.4140625,0.4443359375,0.46484375,0.46875,0.462890625,0.44140625,0.4248046875,0.4384765625,0.4892578125,0.5615234375,0.634765625,0.6884765625,0.666015625,0.5654296875,0.43359375,0.3330078125,0.310546875,0.3642578125,0.4365234375,0.5068359375,0.560546875,0.5908203125,0.6025390625,0.61328125,0.634765625,0.650390625,0.6220703125,0.546875,0.4521484375,0.376953125,0.3486328125,0.3642578125,0.388671875,0.4111328125,0.435546875,0.46875,0.51171875,0.55859375,0.6044921875,0.6396484375,0.6279296875,0.5634765625,0.46875,0.38671875,0.3505859375,0.3642578125,0.3837890625,0.380859375,0.3583984375,0.3359375,0.33203125,0.353515625,0.39453125,0.4462890625,0.521484375,0.607421875,0.6796875,0.72265625,0.73828125,0.740234375,0.748046875,0.7763671875,0.806640625,0.8095703125,0.7724609375,0.70703125,0.634765625,0.552734375,0.4462890625,0.35546875,0.328125,0.37109375,0.4521484375,0.5302734375,0.6025390625,0.666015625,0.693359375,0.6708984375,0.6142578125,0.55859375,0.5302734375,0.5087890625,0.4775390625,0.4326171875,0.380859375,0.3291015625,0.2880859375,0.2587890625,0.23828125,0.2490234375,0.30859375,0.408203125,0.5166015625,0.5966796875,0.634765625,0.65234375,0.6318359375,0.580078125,0.521484375,0.4873046875,0.4921875,0.5302734375,0.58203125,0.650390625,0.708984375,0.7294921875,0.7041015625,0.6533203125,0.6044921875,0.5576171875,0.5078125,0.46875,0.4521484375,0.4560546875,0.4658203125,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6416015625,0.6376953125,0.5849609375,0.501953125,0.4248046875,0.38671875,0.39453125,0.4267578125,0.509765625,0.6240234375,0.7265625,0.78125,0.7783203125,0.740234375,0.6884765625,0.619140625,0.5498046875,0.5048828125,0.4951171875,0.509765625,0.5302734375,0.544921875,0.5439453125,0.5263671875,0.5029296875,0.4853515625,0.484375,0.5,0.5244140625,0.5703125,0.6240234375,0.6630859375,0.673828125,0.66015625,0.634765625,0.6103515625,0.59375,0.5849609375,0.580078125,0.5712890625,0.5546875,0.5302734375,0.5029296875,0.4765625,0.4580078125,0.453125,0.458984375,0.466796875,0.46875,0.4609375,0.42578125,0.375,0.3359375,0.328125,0.3515625,0.39453125,0.4443359375,0.501953125,0.5458984375,0.5576171875,0.5361328125,0.4990234375,0.46875,0.443359375,0.4287109375,0.44140625,0.4853515625,0.546875,0.6015625,0.634765625,0.6572265625,0.662109375,0.6572265625,0.654296875,0.6669921875,0.697265625,0.740234375,0.76953125,0.728515625,0.6103515625,0.4521484375,0.31640625,0.2509765625,0.2587890625,0.28125,0.291015625,0.2919921875,0.2978515625,0.31640625,0.3505859375,0.39453125,0.4365234375,0.4697265625,0.501953125,0.5439453125,0.6005859375,0.6689453125,0.740234375,0.806640625,0.8408203125,0.814453125,0.728515625,0.6181640625,0.533203125,0.5,0.474609375,0.435546875,0.408203125,0.421875,0.4794921875,0.5595703125,0.634765625,0.6923828125,0.6904296875,0.626953125,0.5380859375,0.474609375,0.47265625,0.5302734375,0.5966796875,0.638671875,0.6376953125,0.599609375,0.548828125,0.521484375,0.5302734375,0.5478515625,0.5634765625,0.576171875,0.587890625,0.6015625,0.6171875,0.634765625,0.63671875,0.576171875,0.4658203125,0.3564453125,0.294921875,0.3037109375,0.3642578125,0.4443359375,0.5419921875,0.6162109375,0.6240234375,0.5634765625,0.4736328125,0.39453125,0.3359375,0.3349609375,0.40234375,0.5078125,0.599609375,0.6337890625,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.5673828125,0.56640625,0.607421875,0.673828125,0.732421875,0.755859375,0.740234375,0.71484375,0.6884765625,0.6572265625,0.6162109375,0.56640625,0.515625,0.46875,0.4326171875,0.43359375,0.47265625,0.5263671875,0.5654296875,0.56640625,0.5302734375,0.4814453125,0.4306640625,0.39453125,0.3896484375,0.4130859375,0.4462890625,0.46875,0.482421875,0.470703125,0.427734375,0.3642578125,0.302734375,0.2666015625,0.2587890625,0.2548828125,0.240234375,0.220703125,0.208984375,0.2138671875,0.2333984375,0.2587890625,0.2861328125,0.3212890625,0.369140625,0.4306640625,0.49609375,0.5556640625,0.6044921875,0.65234375,0.6953125,0.70703125,0.6708984375,0.5986328125,0.5224609375,0.46875,0.4189453125,0.357421875,0.306640625,0.2861328125,0.3017578125,0.3349609375,0.3642578125,0.3837890625,0.375,0.3369140625,0.2861328125,0.248046875,0.2392578125,0.2587890625,0.2890625,0.3408203125,0.4189453125,0.5166015625,0.6123046875,0.6884765625,0.740234375,0.7822265625,0.7998046875,0.7646484375,0.673828125,0.5546875,0.453125,0.39453125,0.34375,0.2783203125,0.220703125,0.1923828125,0.201171875,0.23046875,0.2587890625,0.291015625,0.337890625,0.3857421875,0.4140625,0.4130859375,0.390625,0.3642578125,0.3369140625,0.322265625,0.34765625,0.427734375,0.544921875,0.658203125,0.740234375,0.814453125,0.8837890625,0.9033203125,0.84765625,0.734375,0.6142578125,0.5302734375,0.4677734375,0.451171875,0.48828125,0.5576171875,0.619140625,0.63671875,0.6044921875,0.5634765625,0.5458984375,0.5576171875,0.5927734375,0.6298828125,0.646484375,0.634765625,0.626953125,0.654296875,0.7041015625,0.7421875,0.7431640625,0.7021484375,0.634765625,0.5595703125,0.4794921875,0.421875,0.408203125,0.435546875,0.474609375,0.5,0.517578125,0.52734375,0.5244140625,0.6298828125,0.5380859375,0.4189453125,0.3173828125,0.2587890625,0.2197265625,0.2119140625,0.2509765625,0.3251953125,0.40625,0.4580078125,0.46875,0.47265625,0.4873046875,0.5078125,0.5244140625,0.52734375,0.517578125,0.5,0.48046875,0.46875,0.474609375,0.501953125,0.5439453125,0.5810546875,0.6044921875,0.6123046875,0.57421875,0.4970703125,0.4140625,0.361328125,0.357421875,0.39453125,0.435546875,0.453125,0.44140625,0.40625,0.369140625,0.3525390625,0.3642578125,0.380859375,0.38671875,0.3828125,0.375,0.37109375,0.3779296875,0.39453125,0.4248046875,0.4892578125,0.5625,0.6044921875,0.59375,0.5400390625,0.46875,0.40234375,0.3671875,0.39453125,0.4853515625,0.6044921875,0.6982421875,0.740234375,0.7607421875,0.7548828125,0.712890625,0.6455078125,0.5791015625,0.5380859375,0.5302734375,0.5234375,0.4921875,0.44140625,0.3896484375,0.35546875,0.349609375,0.3642578125,0.38671875,0.419921875,0.4609375,0.4970703125,0.51953125,0.5283203125,0.5302734375,0.521484375,0.4892578125,0.4521484375,0.44140625,0.4716796875,0.533203125,0.6044921875,0.6591796875,0.64453125,0.5576171875,0.44140625,0.3544921875,0.33984375,0.39453125,0.462890625,0.5146484375,0.541015625,0.546875,0.548828125,0.5654296875,0.6044921875,0.6376953125,0.619140625,0.546875,0.4521484375,0.3798828125,0.361328125,0.39453125,0.4404296875,0.4873046875,0.5302734375,0.5634765625,0.587890625,0.6103515625,0.634765625,0.6484375,0.6123046875,0.5302734375,0.435546875,0.37109375,0.359375,0.39453125,0.4345703125,0.4482421875,0.4306640625,0.3916015625,0.3564453125,0.345703125,0.3642578125,0.3984375,0.4638671875,0.5517578125,0.640625,0.705078125,0.7353515625,0.740234375,0.7470703125,0.7724609375,0.794921875,0.7900390625,0.74609375,0.677734375,0.6044921875,0.521484375,0.4111328125,0.314453125,0.2783203125,0.314453125,0.392578125,0.46875,0.5361328125,0.578125,0.5771484375,0.5380859375,0.48828125,0.4609375,0.46875,0.4892578125,0.50390625,0.494140625,0.44921875,0.3798828125,0.310546875,0.2587890625,0.216796875,0.19921875,0.234375,0.3251953125,0.4443359375,0.5458984375,0.6044921875,0.6416015625,0.6435546875,0.6015625,0.53515625,0.4765625,0.453125,0.46875,0.501953125,0.556640625,0.619140625,0.662109375,0.6748046875,0.66015625,0.634765625,0.6064453125,0.5751953125,0.546875,0.5302734375,0.5263671875,0.5283203125,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6572265625,0.654296875,0.61328125,0.5380859375,0.4541015625,0.392578125,0.3642578125,0.3583984375,0.4052734375,0.5048828125,0.6240234375,0.716796875,0.75390625,0.740234375,0.7109375,0.669921875,0.6181640625,0.56640625,0.521484375,0.490234375,0.46875,0.4541015625,0.455078125,0.47265625,0.49609375,0.513671875,0.5146484375,0.5,0.490234375,0.5146484375,0.568359375,0.6240234375,0.6533203125,0.6435546875,0.6044921875,0.5634765625,0.5400390625,0.53515625,0.5380859375,0.533203125,0.509765625,0.46875,0.4267578125,0.400390625,0.40625,0.44140625,0.48828125,0.5224609375,0.5302734375,0.5224609375,0.4873046875,0.4306640625,0.375,0.3427734375,0.341796875,0.3642578125,0.3994140625,0.4658203125,0.541015625,0.5927734375,0.6025390625,0.57421875,0.5302734375,0.4814453125,0.4306640625,0.4052734375,0.4248046875,0.484375,0.552734375,0.6044921875,0.6484375,0.6826171875,0.701171875,0.70703125,0.7080078125,0.7177734375,0.740234375,0.748046875,0.6826171875,0.546875,0.388671875,0.2705078125,0.2294921875,0.2587890625,0.3017578125,0.33203125,0.3447265625,0.341796875,0.3369140625,0.341796875,0.3642578125,0.388671875,0.412109375,0.447265625,0.5048828125,0.58203125,0.6650390625,0.740234375,0.8017578125,0.8134765625,0.7587890625,0.6572265625,0.5537109375,0.4970703125,0.5,0.5107421875,0.4951171875,0.46875,0.4580078125,0.48046875,0.53515625,0.6044921875,0.6611328125,0.6552734375,0.5849609375,0.48828125,0.41796875,0.412109375,0.46875,0.5419921875,0.60546875,0.6328125,0.6103515625,0.552734375,0.498046875,0.46875,0.4560546875,0.4697265625,0.5107421875,0.5625,0.603515625,0.6171875,0.6044921875,0.5712890625,0.490234375,0.38671875,0.30859375,0.2890625,0.3271484375,0.39453125,0.4736328125,0.5634765625,0.6240234375,0.6162109375,0.5419921875,0.4443359375,0.3642578125,0.3046875,0.2998046875,0.3671875,0.48046875,0.5888671875,0.64453125,0.634765625,0.615234375,0.6181640625,0.640625,0.6630859375,0.6669921875,0.6455078125,0.6044921875,0.564453125,0.55078125,0.568359375,0.607421875,0.642578125,0.6533203125,0.634765625,0.6181640625,0.6376953125,0.6904296875,0.748046875,0.783203125,0.7783203125,0.740234375,0.6943359375,0.6513671875,0.6162109375,0.5908203125,0.572265625,0.5537109375,0.5302734375,0.5068359375,0.4951171875,0.49609375,0.5029296875,0.50390625,0.4921875,0.46875,0.447265625,0.4462890625,0.4697265625,0.5048828125,0.5341796875,0.54296875,0.5302734375,0.5048828125,0.4580078125,0.39453125,0.3310546875,0.2841796875,0.2626953125,0.2587890625,0.2529296875,0.2265625,0.1923828125,0.1728515625,0.181640625,0.21484375,0.2587890625,0.30859375,0.3720703125,0.4443359375,0.513671875,0.568359375,0.6064453125,0.634765625,0.662109375,0.68359375,0.6845703125,0.6572265625,0.609375,0.5615234375,0.5302734375,0.4951171875,0.4326171875,0.36328125,0.3203125,0.3173828125,0.349609375,0.39453125,0.4287109375,0.4189453125,0.36328125,0.2900390625,0.234375,0.224609375,0.2587890625,0.310546875,0.38671875,0.482421875,0.580078125,0.658203125,0.7099609375,0.740234375,0.7607421875,0.75,0.6904296875,0.5908203125,0.482421875,0.40234375,0.3642578125,0.330078125,0.271484375,0.208984375,0.1728515625,0.177734375,0.2138671875,0.2587890625,0.3125,0.388671875,0.4609375,0.4970703125,0.484375,0.44140625,0.39453125,0.3486328125,0.3154296875,0.3310546875,0.4111328125,0.53515625,0.65625,0.740234375,0.8134765625,0.875,0.880859375,0.8095703125,0.6826171875,0.5556640625,0.46875,0.4072265625,0.3896484375,0.43359375,0.5185546875,0.6044921875,0.646484375,0.634765625,0.6064453125,0.572265625,0.5458984375,0.541015625,0.5576171875,0.5830078125,0.6044921875,0.6328125,0.6884765625,0.7451171875,0.767578125,0.740234375,0.6767578125,0.6044921875,0.53515625,0.48046875,0.4580078125,0.46875,0.4951171875,0.5107421875,0.5,0.4814453125,0.4716796875,0.474609375,0.673828125,0.6142578125,0.5068359375,0.3994140625,0.3251953125,0.2685546875,0.236328125,0.248046875,0.30078125,0.3701171875,0.41796875,0.4287109375,0.4375,0.4755859375,0.529296875,0.5703125,0.576171875,0.5478515625,0.5,0.4443359375,0.3837890625,0.34765625,0.361328125,0.419921875,0.4931640625,0.55078125,0.58984375,0.5791015625,0.51953125,0.4443359375,0.39453125,0.3974609375,0.4482421875,0.4990234375,0.505859375,0.462890625,0.396484375,0.3447265625,0.337890625,0.376953125,0.421875,0.4375,0.4248046875,0.400390625,0.3876953125,0.4033203125,0.4482421875,0.5068359375,0.583984375,0.642578125,0.646484375,0.5908203125,0.505859375,0.4287109375,0.36328125,0.3349609375,0.3681640625,0.458984375,0.568359375,0.6474609375,0.673828125,0.6806640625,0.67578125,0.6552734375,0.623046875,0.5927734375,0.57421875,0.5703125,0.55859375,0.505859375,0.4248046875,0.3515625,0.318359375,0.33203125,0.376953125,0.431640625,0.4921875,0.544921875,0.57421875,0.5791015625,0.572265625,0.5703125,0.5595703125,0.515625,0.4580078125,0.4228515625,0.431640625,0.4814453125,0.55078125,0.6083984375,0.6064453125,0.5439453125,0.455078125,0.392578125,0.390625,0.4482421875,0.51171875,0.541015625,0.53125,0.501953125,0.4833984375,0.4990234375,0.55078125,0.599609375,0.5966796875,0.5390625,0.4599609375,0.40234375,0.3994140625,0.4482421875,0.509765625,0.5703125,0.6123046875,0.6279296875,0.623046875,0.6162109375,0.6220703125,0.619140625,0.5703125,0.4873046875,0.4111328125,0.3759765625,0.3935546875,0.4482421875,0.5048828125,0.5341796875,0.5224609375,0.4736328125,0.4140625,0.376953125,0.376953125,0.39453125,0.4375,0.505859375,0.580078125,0.6376953125,0.66796875,0.673828125,0.6806640625,0.70703125,0.7333984375,0.7314453125,0.69140625,0.6240234375,0.55078125,0.46875,0.359375,0.265625,0.2333984375,0.2724609375,0.3525390625,0.4287109375,0.4912109375,0.5146484375,0.490234375,0.4375,0.3935546875,0.3896484375,0.4287109375,0.484375,0.544921875,0.5771484375,0.5546875,0.4814453125,0.39453125,0.3251953125,0.2626953125,0.2099609375,0.203125,0.2626953125,0.3701171875,0.4775390625,0.55078125,0.6064453125,0.630859375,0.6064453125,0.5439453125,0.4736328125,0.4306640625,0.4287109375,0.4453125,0.482421875,0.53515625,0.5859375,0.619140625,0.62890625,0.6220703125,0.6103515625,0.5966796875,0.5830078125,0.57421875,0.5703125,0.5693359375,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.6328125,0.640625,0.6259765625,0.5791015625,0.5068359375,0.43359375,0.376953125,0.3359375,0.3408203125,0.4052734375,0.509765625,0.611328125,0.669921875,0.673828125,0.6650390625,0.6572265625,0.638671875,0.599609375,0.5439453125,0.482421875,0.4287109375,0.3876953125,0.388671875,0.43359375,0.4951171875,0.5390625,0.5400390625,0.5,0.4599609375,0.46484375,0.51171875,0.5732421875,0.611328125,0.6025390625,0.55078125,0.4970703125,0.4736328125,0.48046875,0.5,0.5068359375,0.4833984375,0.4287109375,0.373046875,0.3447265625,0.365234375,0.4287109375,0.505859375,0.55859375,0.5703125,0.564453125,0.5341796875,0.484375,0.4287109375,0.3876953125,0.3720703125,0.376953125,0.400390625,0.466796875,0.5576171875,0.6298828125,0.654296875,0.626953125,0.5703125,0.5009765625,0.4189453125,0.357421875,0.3525390625,0.4052734375,0.4833984375,0.55078125,0.6123046875,0.666015625,0.697265625,0.6982421875,0.6826171875,0.6689453125,0.673828125,0.6669921875,0.5966796875,0.4755859375,0.3525390625,0.279296875,0.275390625,0.3251953125,0.384765625,0.4296875,0.4453125,0.4287109375,0.396484375,0.375,0.376953125,0.384765625,0.3857421875,0.400390625,0.4443359375,0.515625,0.5986328125,0.673828125,0.732421875,0.7333984375,0.669921875,0.572265625,0.4892578125,0.4638671875,0.5,0.5400390625,0.5419921875,0.509765625,0.4716796875,0.4580078125,0.4873046875,0.55078125,0.6083984375,0.6044921875,0.5361328125,0.443359375,0.3759765625,0.3720703125,0.4287109375,0.505859375,0.587890625,0.638671875,0.6298828125,0.5673828125,0.48828125,0.4287109375,0.3896484375,0.396484375,0.4521484375,0.52734375,0.583984375,0.5908203125,0.55078125,0.4892578125,0.3974609375,0.3115234375,0.275390625,0.3037109375,0.373046875,0.4482421875,0.5263671875,0.611328125,0.662109375,0.6435546875,0.5615234375,0.458984375,0.376953125,0.314453125,0.2978515625,0.3466796875,0.4462890625,0.552734375,0.6162109375,0.6220703125,0.6181640625,0.6376953125,0.666015625,0.677734375,0.658203125,0.611328125,0.55078125,0.494140625,0.46484375,0.4765625,0.525390625,0.5849609375,0.6220703125,0.6220703125,0.62109375,0.6552734375,0.7109375,0.7548828125,0.7626953125,0.73046875,0.673828125,0.6123046875,0.5615234375,0.53515625,0.5380859375,0.55859375,0.57421875,0.5703125,0.5576171875,0.5390625,0.513671875,0.4853515625,0.4599609375,0.44140625,0.4287109375,0.4296875,0.46875,0.5361328125,0.599609375,0.62890625,0.615234375,0.5703125,0.5146484375,0.4482421875,0.3837890625,0.3408203125,0.32421875,0.32421875,0.3251953125,0.3173828125,0.28125,0.2353515625,0.2099609375,0.220703125,0.265625,0.3251953125,0.390625,0.4658203125,0.53515625,0.5830078125,0.60546875,0.61328125,0.6220703125,0.6318359375,0.6396484375,0.6376953125,0.6240234375,0.6025390625,0.5830078125,0.5703125,0.548828125,0.490234375,0.416015625,0.361328125,0.353515625,0.3896484375,0.4482421875,0.49609375,0.490234375,0.4287109375,0.3447265625,0.283203125,0.27734375,0.3251953125,0.3916015625,0.47265625,0.5546875,0.6162109375,0.6494140625,0.6640625,0.673828125,0.677734375,0.6552734375,0.599609375,0.521484375,0.4453125,0.3955078125,0.376953125,0.357421875,0.3076171875,0.2490234375,0.2138671875,0.220703125,0.265625,0.3251953125,0.396484375,0.4921875,0.576171875,0.6083984375,0.5791015625,0.513671875,0.4482421875,0.3837890625,0.32421875,0.3095703125,0.365234375,0.474609375,0.58984375,0.673828125,0.7470703125,0.8115234375,0.82421875,0.759765625,0.638671875,0.5146484375,0.4287109375,0.365234375,0.341796875,0.3798828125,0.46484375,0.5595703125,0.6171875,0.6220703125,0.6025390625,0.556640625,0.501953125,0.4658203125,0.466796875,0.501953125,0.55078125,0.6103515625,0.689453125,0.7529296875,0.76171875,0.7099609375,0.6279296875,0.55078125,0.4873046875,0.4580078125,0.4716796875,0.509765625,0.5419921875,0.5400390625,0.5,0.451171875,0.4228515625,0.4287109375,0.7119140625,0.6875,0.6025390625,0.5,0.419921875,0.3525390625,0.3037109375,0.294921875,0.330078125,0.38671875,0.4296875,0.439453125,0.4501953125,0.498046875,0.5615234375,0.6064453125,0.607421875,0.564453125,0.5,0.423828125,0.3349609375,0.2734375,0.2763671875,0.341796875,0.43359375,0.509765625,0.5654296875,0.572265625,0.5283203125,0.46484375,0.421875,0.431640625,0.4892578125,0.546875,0.55078125,0.5,0.4248046875,0.3720703125,0.3740234375,0.4296875,0.48828125,0.505859375,0.48046875,0.4384765625,0.4140625,0.4306640625,0.4892578125,0.564453125,0.650390625,0.705078125,0.693359375,0.6181640625,0.5205078125,0.439453125,0.373046875,0.3369140625,0.353515625,0.419921875,0.5048828125,0.564453125,0.5791015625,0.580078125,0.5791015625,0.5751953125,0.5693359375,0.5634765625,0.5595703125,0.5595703125,0.546875,0.4912109375,0.4111328125,0.3486328125,0.33203125,0.3662109375,0.4296875,0.4990234375,0.5654296875,0.6064453125,0.6123046875,0.58984375,0.5654296875,0.5595703125,0.5478515625,0.5,0.435546875,0.392578125,0.39453125,0.4404296875,0.509765625,0.568359375,0.5771484375,0.5322265625,0.466796875,0.421875,0.4306640625,0.4892578125,0.5498046875,0.564453125,0.529296875,0.474609375,0.4384765625,0.451171875,0.509765625,0.5673828125,0.5751953125,0.5322265625,0.466796875,0.423828125,0.431640625,0.4892578125,0.5595703125,0.619140625,0.6484375,0.6396484375,0.60546875,0.5751953125,0.5693359375,0.5595703125,0.509765625,0.4404296875,0.388671875,0.3828125,0.423828125,0.4892578125,0.5556640625,0.5986328125,0.59765625,0.55078125,0.486328125,0.439453125,0.4296875,0.4345703125,0.4541015625,0.48828125,0.5263671875,0.55859375,0.576171875,0.5791015625,0.587890625,0.62109375,0.6591796875,0.6708984375,0.6416015625,0.5810546875,0.509765625,0.427734375,0.3251953125,0.2431640625,0.224609375,0.2763671875,0.361328125,0.439453125,0.5,0.5126953125,0.474609375,0.416015625,0.375,0.3828125,0.439453125,0.515625,0.603515625,0.6640625,0.6591796875,0.5908203125,0.498046875,0.419921875,0.34375,0.2626953125,0.2177734375,0.2412109375,0.3271484375,0.4296875,0.509765625,0.576171875,0.6171875,0.61328125,0.564453125,0.4970703125,0.44921875,0.439453125,0.4443359375,0.462890625,0.4931640625,0.52734375,0.5546875,0.568359375,0.5693359375,0.5673828125,0.5654296875,0.5625,0.560546875,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5771484375,0.6015625,0.62109375,0.6123046875,0.5673828125,0.5,0.4296875,0.3671875,0.3359375,0.3583984375,0.4267578125,0.5107421875,0.568359375,0.5791015625,0.583984375,0.60546875,0.625,0.6181640625,0.5751953125,0.5087890625,0.439453125,0.3837890625,0.380859375,0.4326171875,0.5068359375,0.5576171875,0.5546875,0.5,0.443359375,0.4345703125,0.4765625,0.5380859375,0.578125,0.568359375,0.509765625,0.44921875,0.4306640625,0.4541015625,0.4951171875,0.5185546875,0.5,0.439453125,0.3740234375,0.337890625,0.3515625,0.4130859375,0.4912109375,0.546875,0.5595703125,0.5556640625,0.5390625,0.5087890625,0.474609375,0.4453125,0.4306640625,0.4296875,0.4443359375,0.501953125,0.5830078125,0.646484375,0.6611328125,0.625,0.5595703125,0.48046875,0.3818359375,0.3056640625,0.29296875,0.3466796875,0.4326171875,0.509765625,0.5791015625,0.6376953125,0.6650390625,0.6533203125,0.6171875,0.5859375,0.5791015625,0.5673828125,0.5087890625,0.4208984375,0.3486328125,0.3251953125,0.35546875,0.419921875,0.48828125,0.5390625,0.5537109375,0.525390625,0.4755859375,0.4375,0.4296875,0.4248046875,0.40234375,0.3828125,0.3916015625,0.4365234375,0.505859375,0.5791015625,0.6376953125,0.640625,0.5849609375,0.5048828125,0.4462890625,0.4443359375,0.5,0.556640625,0.5654296875,0.52734375,0.470703125,0.435546875,0.44921875,0.509765625,0.5673828125,0.5703125,0.5146484375,0.4345703125,0.37890625,0.3818359375,0.439453125,0.5185546875,0.611328125,0.67578125,0.673828125,0.607421875,0.5166015625,0.439453125,0.384765625,0.3828125,0.4365234375,0.5126953125,0.56640625,0.564453125,0.509765625,0.4326171875,0.3388671875,0.267578125,0.2607421875,0.3212890625,0.4111328125,0.4892578125,0.568359375,0.654296875,0.7080078125,0.6923828125,0.6123046875,0.5107421875,0.4296875,0.36328125,0.3291015625,0.34765625,0.416015625,0.5,0.5576171875,0.5693359375,0.576171875,0.6083984375,0.646484375,0.6611328125,0.63671875,0.5791015625,0.509765625,0.443359375,0.400390625,0.4013671875,0.4482421875,0.5126953125,0.5595703125,0.5693359375,0.5771484375,0.6181640625,0.6728515625,0.705078125,0.6962890625,0.646484375,0.5791015625,0.5107421875,0.4580078125,0.4423828125,0.466796875,0.5146484375,0.5517578125,0.5595703125,0.5546875,0.5400390625,0.5146484375,0.484375,0.458984375,0.4443359375,0.439453125,0.4501953125,0.50390625,0.5810546875,0.6416015625,0.6572265625,0.623046875,0.5595703125,0.4892578125,0.4228515625,0.37890625,0.37109375,0.390625,0.4130859375,0.419921875,0.41015625,0.369140625,0.3173828125,0.287109375,0.30078125,0.3515625,0.419921875,0.4912109375,0.5595703125,0.6044921875,0.6142578125,0.595703125,0.57421875,0.5693359375,0.5712890625,0.572265625,0.5712890625,0.568359375,0.564453125,0.5615234375,0.5595703125,0.5458984375,0.49609375,0.427734375,0.380859375,0.37890625,0.4228515625,0.4892578125,0.5458984375,0.5478515625,0.4931640625,0.416015625,0.361328125,0.36328125,0.419921875,0.4912109375,0.560546875,0.6083984375,0.6201171875,0.603515625,0.583984375,0.5791015625,0.5771484375,0.5615234375,0.5302734375,0.490234375,0.455078125,0.435546875,0.4296875,0.41796875,0.375,0.3203125,0.2890625,0.30078125,0.3515625,0.419921875,0.4990234375,0.599609375,0.6806640625,0.69921875,0.6494140625,0.5654296875,0.4892578125,0.4130859375,0.3310546875,0.28515625,0.30859375,0.3935546875,0.498046875,0.5791015625,0.6552734375,0.7333984375,0.7685546875,0.7314453125,0.6337890625,0.5224609375,0.439453125,0.373046875,0.337890625,0.3544921875,0.419921875,0.501953125,0.5576171875,0.5693359375,0.556640625,0.5087890625,0.4443359375,0.3994140625,0.400390625,0.4443359375,0.509765625,0.5859375,0.677734375,0.744140625,0.7451171875,0.6806640625,0.5888671875,0.509765625,0.44921875,0.435546875,0.470703125,0.52734375,0.5654296875,0.556640625,0.5,0.4345703125,0.3916015625,0.392578125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.7529296875,0.76953125,0.7197265625,0.6357421875,0.5595703125,0.4912109375,0.4384765625,0.4248046875,0.453125,0.505859375,0.5478515625,0.5595703125,0.5693359375,0.60546875,0.646484375,0.662109375,0.6376953125,0.5791015625,0.509765625,0.431640625,0.3408203125,0.27734375,0.27734375,0.3427734375,0.43359375,0.509765625,0.56640625,0.57421875,0.533203125,0.474609375,0.4365234375,0.44921875,0.509765625,0.5703125,0.5869140625,0.55859375,0.5107421875,0.4814453125,0.498046875,0.5595703125,0.6181640625,0.62109375,0.56640625,0.48828125,0.431640625,0.4326171875,0.4892578125,0.5693359375,0.673828125,0.759765625,0.7841796875,0.7392578125,0.65625,0.5791015625,0.505859375,0.4345703125,0.38671875,0.376953125,0.396484375,0.421875,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.412109375,0.38671875,0.3662109375,0.3759765625,0.423828125,0.49609375,0.5693359375,0.6357421875,0.6728515625,0.6572265625,0.5927734375,0.509765625,0.453125,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.568359375,0.578125,0.5390625,0.4794921875,0.4404296875,0.451171875,0.509765625,0.5673828125,0.5751953125,0.5322265625,0.466796875,0.423828125,0.431640625,0.4892578125,0.5478515625,0.55859375,0.5205078125,0.462890625,0.4267578125,0.439453125,0.5,0.568359375,0.61328125,0.611328125,0.5634765625,0.494140625,0.443359375,0.4296875,0.419921875,0.3876953125,0.353515625,0.345703125,0.376953125,0.439453125,0.509765625,0.5791015625,0.638671875,0.666015625,0.6533203125,0.6142578125,0.5791015625,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.43359375,0.4873046875,0.5615234375,0.6142578125,0.6201171875,0.5771484375,0.509765625,0.431640625,0.3466796875,0.296875,0.31640625,0.3984375,0.5,0.5791015625,0.6376953125,0.646484375,0.6064453125,0.546875,0.5078125,0.51953125,0.5791015625,0.658203125,0.7490234375,0.8095703125,0.8037109375,0.7333984375,0.6376953125,0.5595703125,0.48046875,0.3818359375,0.3056640625,0.29296875,0.3466796875,0.4326171875,0.509765625,0.5791015625,0.6376953125,0.662109375,0.646484375,0.60546875,0.5693359375,0.5595703125,0.5546875,0.537109375,0.5068359375,0.4716796875,0.44140625,0.4248046875,0.419921875,0.41796875,0.4169921875,0.4169921875,0.4169921875,0.4189453125,0.419921875,0.419921875,0.419921875,0.4228515625,0.42578125,0.4296875,0.4306640625,0.4306640625,0.4296875,0.44140625,0.5,0.5869140625,0.6572265625,0.6787109375,0.6455078125,0.5791015625,0.505859375,0.43359375,0.384765625,0.373046875,0.3916015625,0.4130859375,0.419921875,0.4326171875,0.4892578125,0.5712890625,0.63671875,0.6552734375,0.623046875,0.5595703125,0.5009765625,0.4853515625,0.513671875,0.556640625,0.5810546875,0.5615234375,0.5,0.439453125,0.4248046875,0.4609375,0.517578125,0.5556640625,0.5458984375,0.4892578125,0.4345703125,0.43359375,0.490234375,0.5693359375,0.625,0.6240234375,0.5693359375,0.5,0.4326171875,0.3876953125,0.3779296875,0.39453125,0.4150390625,0.419921875,0.421875,0.4404296875,0.4755859375,0.5185546875,0.5546875,0.5751953125,0.5791015625,0.5859375,0.6083984375,0.6279296875,0.6201171875,0.576171875,0.509765625,0.439453125,0.365234375,0.283203125,0.2333984375,0.2509765625,0.3310546875,0.4306640625,0.509765625,0.5751953125,0.6162109375,0.6083984375,0.5556640625,0.4833984375,0.431640625,0.419921875,0.4140625,0.392578125,0.3759765625,0.388671875,0.4365234375,0.5078125,0.5791015625,0.6474609375,0.6982421875,0.7099609375,0.6787109375,0.6240234375,0.5810546875,0.5693359375,0.5546875,0.4970703125,0.416015625,0.3525390625,0.337890625,0.3740234375,0.439453125,0.4990234375,0.515625,0.4892578125,0.4443359375,0.4189453125,0.4384765625,0.5,0.5595703125,0.5693359375,0.5283203125,0.4658203125,0.4228515625,0.431640625,0.4892578125,0.5498046875,0.5693359375,0.546875,0.5068359375,0.4833984375,0.5009765625,0.5595703125,0.6357421875,0.7294921875,0.798828125,0.8046875,0.7451171875,0.65625,0.5791015625,0.51953125,0.5,0.5244140625,0.564453125,0.5888671875,0.5693359375,0.509765625,0.431640625,0.337890625,0.26953125,0.2646484375,0.3251953125,0.4140625,0.4892578125,0.5673828125,0.6669921875,0.748046875,0.76953125,0.7236328125,0.6435546875,0.5693359375,0.4990234375,0.4296875,0.3828125,0.37109375,0.3896484375,0.412109375,0.419921875,0.4326171875,0.484375,0.5537109375,0.6015625,0.6025390625,0.5576171875,0.4892578125,0.4189453125,0.3603515625,0.3359375,0.3525390625,0.3955078125,0.4306640625,0.439453125,0.44921875,0.490234375,0.5419921875,0.572265625,0.55859375,0.5078125,0.439453125,0.3720703125,0.3212890625,0.3095703125,0.33984375,0.3916015625,0.431640625,0.439453125,0.4404296875,0.4541015625,0.4814453125,0.515625,0.546875,0.564453125,0.5693359375,0.578125,0.60546875,0.6298828125,0.625,0.58203125,0.5126953125,0.439453125,0.373046875,0.3359375,0.3505859375,0.4130859375,0.4931640625,0.5478515625,0.5595703125,0.5478515625,0.5048828125,0.451171875,0.421875,0.435546875,0.4892578125,0.5595703125,0.6259765625,0.66015625,0.640625,0.5732421875,0.4892578125,0.431640625,0.419921875,0.421875,0.42578125,0.4306640625,0.4345703125,0.4384765625,0.439453125,0.439453125,0.4306640625,0.3955078125,0.3525390625,0.3359375,0.3603515625,0.4189453125,0.4892578125,0.5517578125,0.57421875,0.5537109375,0.515625,0.4931640625,0.5107421875,0.5693359375,0.6328125,0.6669921875,0.6494140625,0.583984375,0.501953125,0.4443359375,0.4296875,0.4306640625,0.4462890625,0.4755859375,0.5126953125,0.544921875,0.564453125,0.5693359375,0.5615234375,0.5234375,0.4736328125,0.4453125,0.4599609375,0.5107421875,0.5791015625,0.6552734375,0.7392578125,0.7880859375,0.7705078125,0.689453125,0.5888671875,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.5009765625,0.6083984375,0.7041015625,0.740234375,0.7060546875,0.6318359375,0.5595703125,0.490234375,0.42578125,0.3857421875,0.3837890625,0.408203125,0.4326171875,0.439453125,0.431640625,0.3994140625,0.3623046875,0.3515625,0.3798828125,0.439453125,0.509765625,0.5869140625,0.6796875,0.744140625,0.744140625,0.6796875,0.5869140625,0.509765625,0.451171875,0.4404296875,0.478515625,0.5361328125,0.572265625,0.5595703125,0.5,0.4287109375,0.369140625,0.341796875,0.7119140625,0.734375,0.701171875,0.634765625,0.5703125,0.5087890625,0.4580078125,0.4384765625,0.4609375,0.5078125,0.5517578125,0.5703125,0.587890625,0.62890625,0.6728515625,0.689453125,0.666015625,0.6123046875,0.55078125,0.484375,0.41015625,0.3603515625,0.365234375,0.419921875,0.4931640625,0.55078125,0.5908203125,0.5859375,0.5419921875,0.490234375,0.4658203125,0.48828125,0.55078125,0.611328125,0.6240234375,0.5888671875,0.533203125,0.4970703125,0.509765625,0.5703125,0.6279296875,0.6298828125,0.5703125,0.482421875,0.4130859375,0.4013671875,0.4482421875,0.5224609375,0.63671875,0.751953125,0.8154296875,0.806640625,0.74609375,0.673828125,0.595703125,0.5009765625,0.4140625,0.361328125,0.3505859375,0.3642578125,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3125,0.298828125,0.3095703125,0.3623046875,0.44921875,0.5439453125,0.6220703125,0.6865234375,0.7158203125,0.6865234375,0.60546875,0.5087890625,0.443359375,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.6025390625,0.611328125,0.5771484375,0.525390625,0.4912109375,0.5,0.55078125,0.599609375,0.5966796875,0.5390625,0.4599609375,0.40234375,0.3994140625,0.4482421875,0.4990234375,0.5078125,0.4775390625,0.4345703125,0.4140625,0.4375,0.5,0.568359375,0.611328125,0.60546875,0.546875,0.46484375,0.400390625,0.376953125,0.3623046875,0.3408203125,0.33203125,0.3564453125,0.4140625,0.486328125,0.55078125,0.6142578125,0.673828125,0.7080078125,0.705078125,0.673828125,0.638671875,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3505859375,0.427734375,0.533203125,0.619140625,0.6484375,0.6171875,0.55078125,0.4755859375,0.40234375,0.37109375,0.4072265625,0.4990234375,0.6005859375,0.673828125,0.72265625,0.7265625,0.6845703125,0.6279296875,0.595703125,0.6123046875,0.673828125,0.7490234375,0.8251953125,0.8603515625,0.8291015625,0.7412109375,0.6416015625,0.5703125,0.5009765625,0.4189453125,0.357421875,0.3525390625,0.4052734375,0.4833984375,0.55078125,0.6123046875,0.666015625,0.689453125,0.6728515625,0.62890625,0.587890625,0.5703125,0.5556640625,0.5244140625,0.4755859375,0.419921875,0.37109375,0.33984375,0.3251953125,0.3154296875,0.3076171875,0.3056640625,0.310546875,0.318359375,0.32421875,0.3251953125,0.328125,0.3408203125,0.3603515625,0.3779296875,0.3876953125,0.3857421875,0.376953125,0.3837890625,0.4541015625,0.5712890625,0.6845703125,0.7451171875,0.734375,0.673828125,0.595703125,0.5009765625,0.41015625,0.3486328125,0.32421875,0.32421875,0.3251953125,0.3388671875,0.3974609375,0.490234375,0.576171875,0.62109375,0.6142578125,0.5703125,0.5283203125,0.5244140625,0.552734375,0.5859375,0.5947265625,0.5634765625,0.5,0.435546875,0.40625,0.419921875,0.4580078125,0.490234375,0.48828125,0.4482421875,0.4091796875,0.4228515625,0.490234375,0.5791015625,0.646484375,0.66015625,0.6220703125,0.56640625,0.4990234375,0.431640625,0.3798828125,0.349609375,0.3359375,0.3251953125,0.3232421875,0.3583984375,0.43359375,0.5302734375,0.615234375,0.6640625,0.673828125,0.6748046875,0.6748046875,0.658203125,0.615234375,0.55078125,0.484375,0.4287109375,0.3740234375,0.3154296875,0.2880859375,0.3154296875,0.392578125,0.4814453125,0.55078125,0.60546875,0.623046875,0.583984375,0.498046875,0.40234375,0.33984375,0.3251953125,0.3251953125,0.33203125,0.36328125,0.4296875,0.5185546875,0.60546875,0.673828125,0.7333984375,0.7783203125,0.78515625,0.75,0.69140625,0.6416015625,0.6220703125,0.5986328125,0.5322265625,0.44140625,0.369140625,0.3447265625,0.3720703125,0.4287109375,0.48046875,0.4921875,0.4658203125,0.427734375,0.4111328125,0.4365234375,0.5,0.5595703125,0.5703125,0.5263671875,0.4560546875,0.40234375,0.3994140625,0.4482421875,0.5029296875,0.533203125,0.5341796875,0.5185546875,0.509765625,0.5263671875,0.5703125,0.630859375,0.7158203125,0.7939453125,0.826171875,0.7998046875,0.7373046875,0.673828125,0.619140625,0.595703125,0.6025390625,0.6220703125,0.62890625,0.60546875,0.55078125,0.482421875,0.39453125,0.322265625,0.2998046875,0.33203125,0.392578125,0.4482421875,0.5087890625,0.5966796875,0.6826171875,0.728515625,0.7197265625,0.673828125,0.6220703125,0.5634765625,0.484375,0.4013671875,0.33984375,0.314453125,0.3154296875,0.3251953125,0.3486328125,0.4130859375,0.4951171875,0.5537109375,0.5595703125,0.5166015625,0.4482421875,0.3779296875,0.3232421875,0.3056640625,0.3310546875,0.3798828125,0.419921875,0.4287109375,0.4375,0.4736328125,0.5185546875,0.544921875,0.533203125,0.48828125,0.4287109375,0.37109375,0.33203125,0.328125,0.3583984375,0.40234375,0.4306640625,0.4287109375,0.421875,0.431640625,0.46484375,0.515625,0.568359375,0.60546875,0.6220703125,0.6376953125,0.6630859375,0.67578125,0.650390625,0.5869140625,0.5048828125,0.4287109375,0.3642578125,0.3349609375,0.3603515625,0.4326171875,0.515625,0.56640625,0.5703125,0.5498046875,0.5009765625,0.4453125,0.4189453125,0.4404296875,0.4990234375,0.5703125,0.6328125,0.6494140625,0.6005859375,0.5009765625,0.39453125,0.3310546875,0.3251953125,0.337890625,0.3583984375,0.3828125,0.40625,0.421875,0.427734375,0.4287109375,0.419921875,0.3798828125,0.3310546875,0.3056640625,0.3232421875,0.3779296875,0.4482421875,0.5146484375,0.55859375,0.572265625,0.56640625,0.5615234375,0.578125,0.6220703125,0.6669921875,0.6806640625,0.6435546875,0.5615234375,0.466796875,0.400390625,0.376953125,0.37109375,0.3876953125,0.4326171875,0.4970703125,0.5615234375,0.6044921875,0.6220703125,0.6240234375,0.6025390625,0.5703125,0.5537109375,0.5693359375,0.6142578125,0.673828125,0.73828125,0.8046875,0.833984375,0.8017578125,0.7177734375,0.6220703125,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.3984375,0.501953125,0.6064453125,0.666015625,0.666015625,0.6220703125,0.5703125,0.517578125,0.462890625,0.421875,0.40625,0.4130859375,0.4248046875,0.4287109375,0.4228515625,0.40234375,0.3837890625,0.390625,0.4287109375,0.48828125,0.55078125,0.619140625,0.7001953125,0.7568359375,0.7568359375,0.7001953125,0.619140625,0.55078125,0.5,0.4912109375,0.521484375,0.564453125,0.5849609375,0.5615234375,0.5,0.427734375,0.3671875,0.337890625,0.61328125,0.6318359375,0.6162109375,0.576171875,0.5302734375,0.482421875,0.43359375,0.4052734375,0.4140625,0.4521484375,0.498046875,0.5302734375,0.5634765625,0.6181640625,0.673828125,0.701171875,0.6904296875,0.650390625,0.6044921875,0.5576171875,0.513671875,0.4912109375,0.501953125,0.5400390625,0.580078125,0.6044921875,0.61328125,0.5849609375,0.53515625,0.4970703125,0.49609375,0.537109375,0.6044921875,0.6630859375,0.6640625,0.607421875,0.52734375,0.4697265625,0.4716796875,0.5302734375,0.58984375,0.599609375,0.548828125,0.4638671875,0.388671875,0.36328125,0.39453125,0.4560546875,0.5732421875,0.7119140625,0.814453125,0.8447265625,0.8076171875,0.740234375,0.658203125,0.544921875,0.427734375,0.34765625,0.322265625,0.3369140625,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.232421875,0.216796875,0.2421875,0.322265625,0.439453125,0.552734375,0.634765625,0.701171875,0.7333984375,0.708984375,0.6357421875,0.544921875,0.4833984375,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.642578125,0.6494140625,0.6240234375,0.5849609375,0.5595703125,0.56640625,0.6044921875,0.6376953125,0.619140625,0.546875,0.4521484375,0.3798828125,0.361328125,0.39453125,0.4306640625,0.435546875,0.4140625,0.3916015625,0.39453125,0.43359375,0.5,0.5693359375,0.62109375,0.6240234375,0.568359375,0.48046875,0.4033203125,0.3642578125,0.337890625,0.3212890625,0.3359375,0.3916015625,0.4736328125,0.55078125,0.6044921875,0.6533203125,0.705078125,0.740234375,0.740234375,0.7080078125,0.666015625,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.302734375,0.4052734375,0.541015625,0.6513671875,0.6953125,0.669921875,0.6044921875,0.53125,0.4697265625,0.4521484375,0.5,0.591796875,0.6826171875,0.740234375,0.7744140625,0.765625,0.720703125,0.6708984375,0.650390625,0.6767578125,0.740234375,0.8115234375,0.8642578125,0.8642578125,0.7978515625,0.689453125,0.5888671875,0.5302734375,0.4814453125,0.4306640625,0.4052734375,0.4248046875,0.484375,0.552734375,0.6044921875,0.650390625,0.6904296875,0.701171875,0.673828125,0.6181640625,0.5634765625,0.5302734375,0.501953125,0.46484375,0.4189453125,0.3701171875,0.32421875,0.287109375,0.2587890625,0.2333984375,0.2138671875,0.208984375,0.220703125,0.240234375,0.2548828125,0.2587890625,0.2646484375,0.29296875,0.3359375,0.375,0.3935546875,0.3876953125,0.3642578125,0.357421875,0.4248046875,0.5576171875,0.6982421875,0.7890625,0.7978515625,0.740234375,0.6591796875,0.5478515625,0.427734375,0.3310546875,0.27734375,0.259765625,0.2587890625,0.267578125,0.3115234375,0.38671875,0.4658203125,0.5224609375,0.5419921875,0.5302734375,0.5205078125,0.544921875,0.587890625,0.6181640625,0.6123046875,0.5673828125,0.5,0.4296875,0.3759765625,0.353515625,0.36328125,0.390625,0.4052734375,0.39453125,0.3837890625,0.41015625,0.474609375,0.5546875,0.619140625,0.6455078125,0.634765625,0.611328125,0.5673828125,0.5,0.4189453125,0.3447265625,0.291015625,0.2587890625,0.244140625,0.283203125,0.3857421875,0.5244140625,0.6513671875,0.7255859375,0.740234375,0.736328125,0.71484375,0.66796875,0.6044921875,0.541015625,0.494140625,0.46875,0.447265625,0.423828125,0.4169921875,0.44140625,0.494140625,0.5546875,0.6044921875,0.640625,0.6318359375,0.5634765625,0.4521484375,0.341796875,0.2734375,0.2587890625,0.263671875,0.2958984375,0.369140625,0.4775390625,0.5927734375,0.6845703125,0.740234375,0.78515625,0.8212890625,0.826171875,0.7900390625,0.7275390625,0.6689453125,0.634765625,0.599609375,0.533203125,0.4580078125,0.40625,0.396484375,0.4248046875,0.46875,0.50390625,0.4990234375,0.4609375,0.4189453125,0.4052734375,0.435546875,0.5,0.560546875,0.57421875,0.5302734375,0.4521484375,0.3837890625,0.3623046875,0.39453125,0.439453125,0.4775390625,0.501953125,0.5107421875,0.5107421875,0.5146484375,0.5302734375,0.5595703125,0.625,0.708984375,0.7763671875,0.80078125,0.7822265625,0.740234375,0.69921875,0.67578125,0.6708984375,0.673828125,0.6689453125,0.6455078125,0.6044921875,0.552734375,0.4833984375,0.4140625,0.369140625,0.3603515625,0.375,0.39453125,0.4208984375,0.4755859375,0.546875,0.6103515625,0.646484375,0.650390625,0.634765625,0.6044921875,0.529296875,0.421875,0.3193359375,0.2548828125,0.2392578125,0.2587890625,0.2978515625,0.375,0.4638671875,0.5185546875,0.515625,0.46484375,0.39453125,0.326171875,0.283203125,0.2861328125,0.3369140625,0.40625,0.45703125,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.4287109375,0.4111328125,0.421875,0.4521484375,0.4814453125,0.48828125,0.46875,0.443359375,0.4287109375,0.44140625,0.4853515625,0.546875,0.6015625,0.634765625,0.6669921875,0.7080078125,0.728515625,0.7041015625,0.634765625,0.546875,0.46875,0.404296875,0.375,0.39453125,0.4521484375,0.5146484375,0.5439453125,0.5302734375,0.494140625,0.43359375,0.375,0.35546875,0.388671875,0.4560546875,0.5302734375,0.58984375,0.59375,0.52734375,0.4140625,0.3046875,0.25,0.2587890625,0.2890625,0.333984375,0.3857421875,0.4306640625,0.4580078125,0.4677734375,0.46875,0.45703125,0.40625,0.3369140625,0.2861328125,0.283203125,0.326171875,0.39453125,0.466796875,0.5380859375,0.5908203125,0.6162109375,0.619140625,0.62109375,0.634765625,0.650390625,0.6474609375,0.609375,0.541015625,0.4619140625,0.3984375,0.3642578125,0.3408203125,0.3388671875,0.375,0.447265625,0.5322265625,0.599609375,0.634765625,0.6572265625,0.662109375,0.6572265625,0.654296875,0.6669921875,0.697265625,0.740234375,0.787109375,0.830078125,0.8427734375,0.806640625,0.734375,0.658203125,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3115234375,0.388671875,0.4716796875,0.5322265625,0.5556640625,0.5478515625,0.5302734375,0.509765625,0.4892578125,0.4716796875,0.4638671875,0.4638671875,0.4677734375,0.46875,0.4658203125,0.4560546875,0.4521484375,0.46875,0.5078125,0.5576171875,0.6044921875,0.6552734375,0.71484375,0.7568359375,0.7568359375,0.71484375,0.6552734375,0.6044921875,0.568359375,0.5634765625,0.5849609375,0.607421875,0.6044921875,0.5654296875,0.5,0.4287109375,0.373046875,0.3525390625,0.4912109375,0.501953125,0.5048828125,0.4931640625,0.46875,0.4375,0.3916015625,0.3525390625,0.3447265625,0.373046875,0.421875,0.46875,0.5205078125,0.58984375,0.654296875,0.6904296875,0.6884765625,0.6630859375,0.634765625,0.6123046875,0.603515625,0.61328125,0.6318359375,0.6484375,0.6494140625,0.634765625,0.6064453125,0.55078125,0.494140625,0.4716796875,0.4990234375,0.5625,0.634765625,0.6904296875,0.681640625,0.6044921875,0.5,0.4228515625,0.4130859375,0.46875,0.533203125,0.5576171875,0.52734375,0.4580078125,0.3857421875,0.3505859375,0.3642578125,0.408203125,0.5146484375,0.6572265625,0.775390625,0.8271484375,0.8046875,0.740234375,0.65625,0.53515625,0.4111328125,0.3310546875,0.3154296875,0.3486328125,0.39453125,0.44140625,0.484375,0.4970703125,0.4609375,0.388671875,0.3125,0.2587890625,0.212890625,0.1796875,0.1953125,0.275390625,0.3994140625,0.5205078125,0.6044921875,0.6728515625,0.7158203125,0.712890625,0.662109375,0.5927734375,0.5419921875,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6572265625,0.6611328125,0.646484375,0.6240234375,0.609375,0.61328125,0.634765625,0.650390625,0.6220703125,0.546875,0.4521484375,0.376953125,0.3486328125,0.3642578125,0.3828125,0.376953125,0.3583984375,0.3525390625,0.376953125,0.4306640625,0.5,0.5732421875,0.638671875,0.6630859375,0.6240234375,0.5380859375,0.451171875,0.39453125,0.3525390625,0.3330078125,0.3583984375,0.4306640625,0.5224609375,0.59765625,0.634765625,0.666015625,0.7080078125,0.740234375,0.740234375,0.705078125,0.6533203125,0.6044921875,0.5458984375,0.4443359375,0.3251953125,0.234375,0.19921875,0.216796875,0.2587890625,0.3212890625,0.4423828125,0.587890625,0.6982421875,0.7353515625,0.7021484375,0.634765625,0.564453125,0.5087890625,0.4990234375,0.546875,0.6279296875,0.7021484375,0.740234375,0.755859375,0.7333984375,0.6845703125,0.6435546875,0.63671875,0.673828125,0.740234375,0.8076171875,0.841796875,0.814453125,0.7236328125,0.60546875,0.5107421875,0.46875,0.443359375,0.4287109375,0.44140625,0.4853515625,0.546875,0.6015625,0.634765625,0.6630859375,0.6884765625,0.6904296875,0.654296875,0.58984375,0.5205078125,0.46875,0.4267578125,0.39453125,0.373046875,0.35546875,0.333984375,0.3017578125,0.2587890625,0.21484375,0.181640625,0.1728515625,0.1923828125,0.2265625,0.2529296875,0.2587890625,0.2685546875,0.3115234375,0.375,0.4306640625,0.4521484375,0.435546875,0.39453125,0.3681640625,0.4189453125,0.541015625,0.681640625,0.779296875,0.7958984375,0.740234375,0.6591796875,0.5478515625,0.427734375,0.3310546875,0.27734375,0.259765625,0.2587890625,0.2607421875,0.275390625,0.30859375,0.3564453125,0.40625,0.4462890625,0.46875,0.498046875,0.5576171875,0.62109375,0.6513671875,0.630859375,0.5712890625,0.5,0.423828125,0.34375,0.2861328125,0.2734375,0.2998046875,0.3388671875,0.3642578125,0.3857421875,0.41796875,0.4609375,0.5078125,0.55078125,0.5830078125,0.6044921875,0.62109375,0.619140625,0.580078125,0.4990234375,0.3994140625,0.3134765625,0.2587890625,0.2255859375,0.2509765625,0.3505859375,0.4970703125,0.6376953125,0.72265625,0.740234375,0.732421875,0.6962890625,0.634765625,0.5712890625,0.5283203125,0.5166015625,0.5302734375,0.546875,0.55859375,0.5654296875,0.57421875,0.5888671875,0.609375,0.634765625,0.65234375,0.6259765625,0.546875,0.435546875,0.33203125,0.271484375,0.2587890625,0.2666015625,0.3095703125,0.3974609375,0.513671875,0.6259765625,0.703125,0.740234375,0.7685546875,0.7978515625,0.806640625,0.7783203125,0.720703125,0.6552734375,0.6044921875,0.5546875,0.4970703125,0.453125,0.44140625,0.462890625,0.5,0.5302734375,0.544921875,0.5185546875,0.4638671875,0.4140625,0.400390625,0.4345703125,0.5,0.5625,0.5830078125,0.546875,0.46875,0.390625,0.3515625,0.3642578125,0.39453125,0.4375,0.48046875,0.5048828125,0.5048828125,0.4892578125,0.46875,0.4609375,0.4951171875,0.5712890625,0.662109375,0.732421875,0.7568359375,0.740234375,0.7158203125,0.69921875,0.6904296875,0.6845703125,0.67578125,0.6591796875,0.634765625,0.60546875,0.564453125,0.513671875,0.4609375,0.4169921875,0.384765625,0.3642578125,0.3486328125,0.3525390625,0.388671875,0.4521484375,0.5234375,0.578125,0.6044921875,0.6083984375,0.5546875,0.447265625,0.328125,0.2451171875,0.2255859375,0.2587890625,0.3154296875,0.4033203125,0.48828125,0.52734375,0.50390625,0.4375,0.3642578125,0.2978515625,0.265625,0.2900390625,0.36328125,0.4541015625,0.515625,0.5302734375,0.533203125,0.548828125,0.568359375,0.580078125,0.5751953125,0.5556640625,0.5302734375,0.5107421875,0.517578125,0.546875,0.5771484375,0.587890625,0.5703125,0.5302734375,0.4814453125,0.4306640625,0.4052734375,0.4248046875,0.484375,0.552734375,0.6044921875,0.6572265625,0.72265625,0.767578125,0.7587890625,0.6953125,0.607421875,0.5302734375,0.46484375,0.431640625,0.4384765625,0.4716796875,0.50390625,0.5048828125,0.46875,0.4150390625,0.33984375,0.2783203125,0.267578125,0.314453125,0.3935546875,0.46875,0.52734375,0.5283203125,0.4609375,0.35546875,0.263671875,0.2294921875,0.2587890625,0.3095703125,0.375,0.4443359375,0.4970703125,0.5234375,0.5302734375,0.5302734375,0.515625,0.4541015625,0.36328125,0.2900390625,0.265625,0.2978515625,0.3642578125,0.4423828125,0.53515625,0.6162109375,0.6572265625,0.6533203125,0.626953125,0.6044921875,0.587890625,0.57421875,0.5576171875,0.529296875,0.48828125,0.4404296875,0.39453125,0.3486328125,0.314453125,0.3193359375,0.375,0.4638671875,0.5498046875,0.6044921875,0.6484375,0.6826171875,0.701171875,0.70703125,0.7080078125,0.7177734375,0.740234375,0.7666015625,0.7890625,0.7900390625,0.76171875,0.7138671875,0.6669921875,0.634765625,0.5966796875,0.5166015625,0.408203125,0.30859375,0.2490234375,0.23828125,0.2587890625,0.287109375,0.3203125,0.3583984375,0.39453125,0.42578125,0.44921875,0.46875,0.4892578125,0.509765625,0.52734375,0.53515625,0.53515625,0.53125,0.5302734375,0.5283203125,0.5263671875,0.5302734375,0.546875,0.5751953125,0.6064453125,0.634765625,0.6640625,0.69921875,0.7236328125,0.7236328125,0.69921875,0.6640625,0.634765625,0.6162109375,0.6220703125,0.640625,0.646484375,0.6220703125,0.568359375,0.5,0.4306640625,0.3818359375,0.375,0.392578125,0.3994140625,0.419921875,0.43359375,0.4287109375,0.41015625,0.3671875,0.3193359375,0.2978515625,0.3173828125,0.3681640625,0.4287109375,0.494140625,0.5693359375,0.630859375,0.66015625,0.6552734375,0.6357421875,0.6220703125,0.619140625,0.640625,0.6767578125,0.703125,0.701171875,0.669921875,0.6220703125,0.5625,0.4833984375,0.419921875,0.4111328125,0.462890625,0.544921875,0.6220703125,0.6767578125,0.6640625,0.5810546875,0.4697265625,0.38671875,0.3740234375,0.4287109375,0.49609375,0.5361328125,0.5302734375,0.4814453125,0.4189453125,0.3779296875,0.376953125,0.404296875,0.4892578125,0.611328125,0.71484375,0.759765625,0.7373046875,0.673828125,0.58984375,0.474609375,0.365234375,0.3095703125,0.32421875,0.3837890625,0.4482421875,0.513671875,0.5791015625,0.6083984375,0.576171875,0.4921875,0.396484375,0.3251953125,0.26171875,0.2021484375,0.1875,0.2431640625,0.3525390625,0.4677734375,0.55078125,0.62109375,0.67578125,0.693359375,0.66796875,0.619140625,0.5791015625,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.6298828125,0.6318359375,0.6259765625,0.6171875,0.611328125,0.61328125,0.6220703125,0.625,0.5966796875,0.5361328125,0.462890625,0.40234375,0.3740234375,0.376953125,0.3798828125,0.361328125,0.3369140625,0.333984375,0.3671875,0.4287109375,0.5,0.576171875,0.658203125,0.7060546875,0.6875,0.611328125,0.5185546875,0.4482421875,0.390625,0.361328125,0.380859375,0.4482421875,0.5341796875,0.5986328125,0.6220703125,0.638671875,0.673828125,0.705078125,0.7080078125,0.673828125,0.6142578125,0.55078125,0.4775390625,0.3701171875,0.2626953125,0.203125,0.2099609375,0.2626953125,0.3251953125,0.40234375,0.5244140625,0.6552734375,0.73828125,0.7451171875,0.693359375,0.6220703125,0.5517578125,0.4990234375,0.490234375,0.529296875,0.5966796875,0.65234375,0.673828125,0.673828125,0.6396484375,0.587890625,0.552734375,0.55859375,0.60546875,0.673828125,0.7392578125,0.767578125,0.734375,0.6435546875,0.5341796875,0.455078125,0.4287109375,0.421875,0.431640625,0.46484375,0.515625,0.568359375,0.60546875,0.6220703125,0.6357421875,0.6552734375,0.66015625,0.630859375,0.5693359375,0.494140625,0.4287109375,0.375,0.353515625,0.365234375,0.3896484375,0.4013671875,0.37890625,0.3251953125,0.265625,0.220703125,0.2099609375,0.2353515625,0.28125,0.3173828125,0.3251953125,0.3369140625,0.3876953125,0.4609375,0.5185546875,0.5341796875,0.5048828125,0.4482421875,0.4033203125,0.427734375,0.5205078125,0.6357421875,0.71875,0.7294921875,0.673828125,0.595703125,0.5009765625,0.41015625,0.3486328125,0.32421875,0.32421875,0.3251953125,0.3212890625,0.3037109375,0.2890625,0.294921875,0.3271484375,0.376953125,0.4287109375,0.490234375,0.578125,0.65625,0.68359375,0.6484375,0.5751953125,0.5,0.419921875,0.3232421875,0.244140625,0.220703125,0.2568359375,0.3203125,0.376953125,0.423828125,0.4521484375,0.462890625,0.4658203125,0.4755859375,0.5048828125,0.55078125,0.6044921875,0.6494140625,0.654296875,0.599609375,0.5,0.3974609375,0.3251953125,0.2744140625,0.271484375,0.337890625,0.455078125,0.5791015625,0.6572265625,0.673828125,0.6640625,0.6220703125,0.560546875,0.51171875,0.498046875,0.5224609375,0.5703125,0.619140625,0.6572265625,0.669921875,0.658203125,0.6328125,0.6171875,0.6220703125,0.625,0.5966796875,0.5322265625,0.4501953125,0.3759765625,0.333984375,0.3251953125,0.33203125,0.3681640625,0.4384765625,0.525390625,0.60546875,0.6552734375,0.673828125,0.689453125,0.7177734375,0.73828125,0.7275390625,0.6806640625,0.615234375,0.55078125,0.490234375,0.4423828125,0.4267578125,0.453125,0.505859375,0.55078125,0.5703125,0.568359375,0.525390625,0.458984375,0.4052734375,0.39453125,0.4326171875,0.5,0.5654296875,0.5966796875,0.5751953125,0.5078125,0.4287109375,0.3798828125,0.376953125,0.3955078125,0.439453125,0.490234375,0.521484375,0.515625,0.478515625,0.4287109375,0.38671875,0.384765625,0.4375,0.5283203125,0.619140625,0.6708984375,0.673828125,0.6630859375,0.6552734375,0.650390625,0.6455078125,0.6396484375,0.6318359375,0.6220703125,0.61328125,0.60546875,0.5869140625,0.5478515625,0.4921875,0.4306640625,0.376953125,0.3251953125,0.279296875,0.2705078125,0.31640625,0.40234375,0.490234375,0.55078125,0.5869140625,0.5615234375,0.474609375,0.3671875,0.2900390625,0.2783203125,0.3251953125,0.396484375,0.4892578125,0.5654296875,0.583984375,0.5361328125,0.4541015625,0.376953125,0.3125,0.283203125,0.3125,0.3935546875,0.490234375,0.5556640625,0.5703125,0.5712890625,0.5771484375,0.5849609375,0.58984375,0.587890625,0.580078125,0.5703125,0.568359375,0.5966796875,0.640625,0.6708984375,0.6669921875,0.6279296875,0.5703125,0.5009765625,0.4189453125,0.357421875,0.3525390625,0.4052734375,0.4833984375,0.55078125,0.62109375,0.7099609375,0.779296875,0.7880859375,0.7333984375,0.6474609375,0.5703125,0.505859375,0.4716796875,0.47265625,0.4912109375,0.501953125,0.482421875,0.4287109375,0.359375,0.2724609375,0.2080078125,0.2041015625,0.2626953125,0.3505859375,0.4287109375,0.48828125,0.4921875,0.4365234375,0.3525390625,0.2880859375,0.2783203125,0.3251953125,0.390625,0.4658203125,0.53125,0.5703125,0.5791015625,0.5732421875,0.5703125,0.5556640625,0.490234375,0.3935546875,0.3125,0.283203125,0.3125,0.376953125,0.4580078125,0.5615234375,0.6513671875,0.6884765625,0.6640625,0.6064453125,0.55078125,0.5078125,0.4931640625,0.5068359375,0.52734375,0.5302734375,0.5029296875,0.4482421875,0.3818359375,0.314453125,0.2802734375,0.3076171875,0.3876953125,0.48046875,0.55078125,0.6123046875,0.666015625,0.697265625,0.6982421875,0.6826171875,0.6689453125,0.673828125,0.68359375,0.69140625,0.689453125,0.67578125,0.654296875,0.634765625,0.6220703125,0.603515625,0.5537109375,0.4775390625,0.3994140625,0.34375,0.3212890625,0.3251953125,0.3310546875,0.3212890625,0.30859375,0.3095703125,0.3349609375,0.37890625,0.4287109375,0.4814453125,0.5361328125,0.5771484375,0.5927734375,0.5859375,0.57421875,0.5703125,0.5693359375,0.5703125,0.57421875,0.5830078125,0.5966796875,0.6103515625,0.6220703125,0.6328125,0.646484375,0.65625,0.65625,0.646484375,0.6328125,0.6220703125,0.619140625,0.6376953125,0.662109375,0.6650390625,0.6318359375,0.5703125,0.5,0.431640625,0.3876953125,0.3896484375,0.3505859375,0.3642578125,0.40234375,0.43359375,0.439453125,0.4287109375,0.38671875,0.333984375,0.3046875,0.3193359375,0.37109375,0.439453125,0.5107421875,0.5791015625,0.6220703125,0.626953125,0.603515625,0.5771484375,0.5693359375,0.5771484375,0.615234375,0.666015625,0.6962890625,0.6845703125,0.6357421875,0.5693359375,0.4931640625,0.4013671875,0.3349609375,0.333984375,0.3974609375,0.490234375,0.5693359375,0.6259765625,0.62109375,0.5517578125,0.45703125,0.3876953125,0.3828125,0.439453125,0.5087890625,0.5595703125,0.5693359375,0.53515625,0.48046875,0.4384765625,0.4296875,0.4443359375,0.505859375,0.5927734375,0.662109375,0.6806640625,0.6455078125,0.5791015625,0.498046875,0.3935546875,0.30859375,0.28515625,0.3310546875,0.4130859375,0.4892578125,0.5654296875,0.6494140625,0.69921875,0.6806640625,0.599609375,0.4990234375,0.419921875,0.34375,0.26171875,0.2158203125,0.23828125,0.32421875,0.427734375,0.509765625,0.580078125,0.638671875,0.6630859375,0.646484375,0.603515625,0.568359375,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5703125,0.5712890625,0.5703125,0.568359375,0.5673828125,0.568359375,0.5693359375,0.5673828125,0.55078125,0.5185546875,0.48046875,0.4482421875,0.431640625,0.4296875,0.4228515625,0.390625,0.353515625,0.3408203125,0.3681640625,0.4287109375,0.5,0.5791015625,0.6708984375,0.734375,0.73046875,0.662109375,0.568359375,0.4892578125,0.4228515625,0.380859375,0.3837890625,0.4345703125,0.5048828125,0.5556640625,0.5693359375,0.5791015625,0.6142578125,0.6533203125,0.666015625,0.638671875,0.5791015625,0.509765625,0.4296875,0.3271484375,0.2412109375,0.2177734375,0.2626953125,0.34375,0.419921875,0.5009765625,0.6123046875,0.7119140625,0.751953125,0.720703125,0.6455078125,0.5693359375,0.5,0.447265625,0.4345703125,0.4677734375,0.5234375,0.5673828125,0.5791015625,0.5712890625,0.5302734375,0.4775390625,0.4462890625,0.4580078125,0.509765625,0.5791015625,0.646484375,0.6826171875,0.666015625,0.599609375,0.5146484375,0.4541015625,0.439453125,0.4404296875,0.4541015625,0.4814453125,0.515625,0.546875,0.564453125,0.5693359375,0.5771484375,0.603515625,0.626953125,0.6220703125,0.5791015625,0.5107421875,0.439453125,0.380859375,0.3681640625,0.40234375,0.45703125,0.4912109375,0.478515625,0.419921875,0.3515625,0.30078125,0.287109375,0.3173828125,0.369140625,0.41015625,0.419921875,0.4306640625,0.48046875,0.5478515625,0.595703125,0.5986328125,0.5556640625,0.4892578125,0.43359375,0.4345703125,0.4951171875,0.5791015625,0.6376953125,0.63671875,0.5791015625,0.505859375,0.43359375,0.384765625,0.373046875,0.3916015625,0.4130859375,0.419921875,0.4111328125,0.373046875,0.3271484375,0.3037109375,0.3203125,0.373046875,0.439453125,0.517578125,0.6162109375,0.6962890625,0.712890625,0.662109375,0.5771484375,0.5,0.4189453125,0.318359375,0.23828125,0.220703125,0.271484375,0.3544921875,0.4296875,0.48828125,0.5087890625,0.48828125,0.451171875,0.4306640625,0.4501953125,0.509765625,0.583984375,0.6630859375,0.7080078125,0.685546875,0.6015625,0.4990234375,0.419921875,0.35546875,0.3232421875,0.345703125,0.41796875,0.505859375,0.5654296875,0.5791015625,0.5693359375,0.52734375,0.4716796875,0.4375,0.4453125,0.4931640625,0.5595703125,0.6259765625,0.67578125,0.689453125,0.6630859375,0.6142578125,0.5771484375,0.5693359375,0.5673828125,0.55078125,0.517578125,0.4775390625,0.4423828125,0.423828125,0.419921875,0.4228515625,0.44140625,0.4755859375,0.517578125,0.5537109375,0.57421875,0.5791015625,0.5888671875,0.6220703125,0.6591796875,0.669921875,0.6396484375,0.5791015625,0.509765625,0.4423828125,0.396484375,0.392578125,0.435546875,0.4990234375,0.546875,0.5595703125,0.5498046875,0.501953125,0.435546875,0.388671875,0.38671875,0.431640625,0.5,0.5673828125,0.6103515625,0.6064453125,0.5576171875,0.48828125,0.439453125,0.4296875,0.44140625,0.4833984375,0.537109375,0.5673828125,0.5556640625,0.505859375,0.439453125,0.376953125,0.3447265625,0.3642578125,0.4306640625,0.5126953125,0.568359375,0.5791015625,0.5771484375,0.576171875,0.5751953125,0.5732421875,0.572265625,0.5712890625,0.5693359375,0.57421875,0.595703125,0.615234375,0.607421875,0.5654296875,0.4990234375,0.4296875,0.35546875,0.275390625,0.2294921875,0.2509765625,0.33203125,0.431640625,0.509765625,0.564453125,0.5625,0.5029296875,0.4208984375,0.3623046875,0.36328125,0.419921875,0.498046875,0.591796875,0.6611328125,0.6640625,0.6005859375,0.5087890625,0.4296875,0.36328125,0.326171875,0.341796875,0.40625,0.4892578125,0.5458984375,0.5595703125,0.5595703125,0.560546875,0.5615234375,0.5625,0.5625,0.560546875,0.5595703125,0.5673828125,0.607421875,0.6591796875,0.689453125,0.677734375,0.626953125,0.5595703125,0.48046875,0.3818359375,0.3056640625,0.29296875,0.3466796875,0.4326171875,0.509765625,0.5888671875,0.6875,0.765625,0.779296875,0.724609375,0.6376953125,0.5595703125,0.49609375,0.470703125,0.482421875,0.5107421875,0.5244140625,0.5009765625,0.439453125,0.361328125,0.2685546875,0.2021484375,0.201171875,0.2666015625,0.3603515625,0.439453125,0.4990234375,0.5087890625,0.46484375,0.400390625,0.35546875,0.3623046875,0.419921875,0.4912109375,0.5595703125,0.603515625,0.6103515625,0.58984375,0.5654296875,0.5595703125,0.5458984375,0.4892578125,0.40625,0.341796875,0.326171875,0.36328125,0.4296875,0.5107421875,0.6123046875,0.6943359375,0.71484375,0.666015625,0.583984375,0.509765625,0.4521484375,0.4404296875,0.4755859375,0.529296875,0.5625,0.548828125,0.4892578125,0.412109375,0.322265625,0.26171875,0.267578125,0.3369140625,0.4306640625,0.509765625,0.5791015625,0.6376953125,0.6650390625,0.6533203125,0.6171875,0.5859375,0.5791015625,0.5810546875,0.58203125,0.5810546875,0.578125,0.5751953125,0.5712890625,0.5693359375,0.5634765625,0.5439453125,0.5087890625,0.46875,0.4375,0.421875,0.419921875,0.412109375,0.3759765625,0.330078125,0.3056640625,0.3212890625,0.373046875,0.439453125,0.5087890625,0.5732421875,0.61328125,0.615234375,0.5908203125,0.56640625,0.5595703125,0.5595703125,0.5595703125,0.560546875,0.5625,0.5654296875,0.5673828125,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5751953125,0.5732421875,0.5712890625,0.5693359375,0.576171875,0.6083984375,0.6455078125,0.658203125,0.630859375,0.5703125,0.5,0.4306640625,0.3857421875,0.3857421875,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.4296875,0.376953125,0.3642578125,0.39453125,0.4482421875,0.4892578125,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5595703125,0.5703125,0.5302734375,0.46875,0.4287109375,0.439453125,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5791015625,0.673828125,0.740234375,0.740234375,0.673828125,0.5791015625,0.5,0.439453125,0.4287109375,0.46875,0.5302734375,0.5703125,0.5595703125,0.5,0.419921875,0.3251953125,0.2587890625,0.2587890625,0.3251953125,0.419921875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4892578125,0.4482421875,0.39453125,0.3642578125,0.376953125,0.4296875,0.5,0.5693359375,0.6220703125,0.634765625,0.6044921875,0.55078125,0.509765625,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.509765625,0.55078125,0.6044921875,0.634765625,0.6220703125,0.5693359375,0.5,0.4296875,0.376953125,0.3642578125,0.38671875,0.44140625,0.5146484375,0.5673828125,0.5791015625,0.5693359375,0.5263671875,0.470703125,0.4375,0.4482421875,0.5,0.5693359375,0.6357421875,0.6728515625,0.6572265625,0.5927734375,0.509765625,0.453125,0.439453125,0.44921875,0.490234375,0.5419921875,0.572265625,0.55859375,0.5078125,0.439453125,0.361328125,0.2685546875,0.2001953125,0.1953125,0.255859375,0.34375,0.419921875,0.48046875,0.5068359375,0.5,0.4794921875,0.4716796875,0.4990234375,0.5595703125,0.6259765625,0.6787109375,0.6943359375,0.6689453125,0.6201171875,0.580078125,0.5693359375,0.57421875,0.59765625,0.6201171875,0.6142578125,0.5712890625,0.5029296875,0.4296875,0.3515625,0.2646484375,0.2109375,0.2265625,0.306640625,0.408203125,0.4892578125,0.5712890625,0.6748046875,0.759765625,0.7802734375,0.7314453125,0.6474609375,0.5693359375,0.4873046875,0.3837890625,0.2998046875,0.2783203125,0.3271484375,0.412109375,0.4892578125,0.55859375,0.6044921875,0.6064453125,0.5634765625,0.4990234375,0.451171875,0.439453125,0.439453125,0.439453125,0.4384765625,0.4365234375,0.43359375,0.431640625,0.4296875,0.4287109375,0.427734375,0.4287109375,0.4306640625,0.431640625,0.4306640625,0.4296875,0.431640625,0.4482421875,0.4814453125,0.521484375,0.556640625,0.5751953125,0.5791015625,0.568359375,0.5185546875,0.44921875,0.3994140625,0.39453125,0.4345703125,0.5,0.576171875,0.66796875,0.7353515625,0.73828125,0.6767578125,0.5869140625,0.509765625,0.439453125,0.3759765625,0.341796875,0.3466796875,0.3798828125,0.41015625,0.419921875,0.4326171875,0.4833984375,0.552734375,0.6015625,0.60546875,0.564453125,0.5,0.4248046875,0.33984375,0.287109375,0.3017578125,0.37890625,0.478515625,0.5595703125,0.6357421875,0.7119140625,0.74609375,0.708984375,0.611328125,0.5009765625,0.419921875,0.3515625,0.30078125,0.2890625,0.3203125,0.375,0.41796875,0.4296875,0.421875,0.384765625,0.3359375,0.3095703125,0.3232421875,0.373046875,0.439453125,0.5087890625,0.57421875,0.6142578125,0.619140625,0.5966796875,0.57421875,0.5693359375,0.568359375,0.5537109375,0.5244140625,0.490234375,0.4599609375,0.443359375,0.439453125,0.4521484375,0.5087890625,0.5888671875,0.650390625,0.6640625,0.6259765625,0.5595703125,0.4990234375,0.4873046875,0.5263671875,0.5869140625,0.626953125,0.6171875,0.5595703125,0.4912109375,0.44140625,0.4296875,0.4599609375,0.51171875,0.55078125,0.5595703125,0.5654296875,0.595703125,0.630859375,0.6416015625,0.615234375,0.5576171875,0.4892578125,0.4306640625,0.412109375,0.4345703125,0.474609375,0.4970703125,0.478515625,0.419921875,0.3564453125,0.3251953125,0.3466796875,0.4169921875,0.50390625,0.564453125,0.5791015625,0.5712890625,0.5302734375,0.4775390625,0.4462890625,0.4580078125,0.509765625,0.5791015625,0.6572265625,0.7421875,0.7919921875,0.7724609375,0.6904296875,0.5888671875,0.509765625,0.43359375,0.349609375,0.2998046875,0.318359375,0.3994140625,0.5,0.5791015625,0.63671875,0.6396484375,0.5859375,0.5087890625,0.453125,0.4541015625,0.509765625,0.5869140625,0.68359375,0.759765625,0.7734375,0.720703125,0.6357421875,0.5595703125,0.48828125,0.4228515625,0.3818359375,0.3779296875,0.400390625,0.4248046875,0.4296875,0.41796875,0.375,0.3203125,0.2890625,0.30078125,0.3515625,0.419921875,0.48828125,0.5419921875,0.55859375,0.5322265625,0.4814453125,0.4404296875,0.4296875,0.431640625,0.4482421875,0.4814453125,0.521484375,0.556640625,0.5751953125,0.5791015625,0.5751953125,0.556640625,0.5205078125,0.478515625,0.4423828125,0.423828125,0.419921875,0.4306640625,0.4794921875,0.5458984375,0.5927734375,0.595703125,0.5546875,0.4892578125,0.421875,0.365234375,0.3408203125,0.3544921875,0.3916015625,0.4228515625,0.4296875,0.419921875,0.384765625,0.345703125,0.3330078125,0.3603515625,0.419921875,0.4892578125,0.5595703125,0.623046875,0.6572265625,0.65234375,0.619140625,0.5888671875,0.5791015625,0.5869140625,0.626953125,0.6787109375,0.708984375,0.697265625,0.6474609375,0.5791015625,0.5078125,0.4375,0.3896484375,0.37890625,0.3984375,0.421875,0.4296875,0.4306640625,0.4306640625,0.4296875,0.42578125,0.4228515625,0.419921875,0.419921875,0.43359375,0.494140625,0.583984375,0.65625,0.6787109375,0.6455078125,0.5791015625,0.498046875,0.396484375,0.3154296875,0.2978515625,0.3486328125,0.4326171875,0.509765625,0.568359375,0.583984375,0.5546875,0.5078125,0.48046875,0.498046875,0.5595703125,0.638671875,0.732421875,0.7978515625,0.796875,0.73046875,0.6376953125,0.5595703125,0.48828125,0.419921875,0.3759765625,0.3681640625,0.3896484375,0.4130859375,0.419921875,0.419921875,0.4228515625,0.4267578125,0.4326171875,0.4365234375,0.439453125,0.439453125,0.44921875,0.4873046875,0.5361328125,0.5625,0.5478515625,0.49609375,0.4296875,0.35546875,0.2744140625,0.2255859375,0.244140625,0.3232421875,0.421875,0.5,0.5732421875,0.6533203125,0.69921875,0.6787109375,0.5966796875,0.498046875,0.419921875,0.3671875,0.376953125,0.4521484375,0.552734375,0.6259765625,0.6337890625,0.5791015625,0.5009765625,0.4091796875,0.3447265625,0.3447265625,0.4091796875,0.5009765625,0.5791015625,0.6376953125,0.6474609375,0.607421875,0.546875,0.5048828125,0.5126953125,0.5693359375,0.6318359375,0.6640625,0.6435546875,0.5751953125,0.490234375,0.4326171875,0.419921875,0.4140625,0.392578125,0.375,0.384765625,0.4306640625,0.4990234375,0.5693359375,0.6435546875,0.724609375,0.771484375,0.7509765625,0.669921875,0.5693359375,0.4892578125,0.431640625,0.4228515625,0.4658203125,0.5283203125,0.5693359375,0.5595703125,0.5,0.419921875,0.328125,0.2646484375,0.2685546875,0.3369140625,0.4306640625,0.509765625,0.576171875,0.6171875,0.611328125,0.55859375,0.486328125,0.43359375,0.419921875,0.41796875,0.416015625,0.4140625,0.4140625,0.416015625,0.41796875,0.419921875,0.4248046875,0.443359375,0.4755859375,0.513671875,0.5458984375,0.564453125,0.5693359375,0.5615234375,0.5244140625,0.4755859375,0.44921875,0.462890625,0.5126953125,0.5791015625,0.642578125,0.673828125,0.65234375,0.58203125,0.4951171875,0.4345703125,0.419921875,0.41796875,0.4169921875,0.41796875,0.4208984375,0.423828125,0.427734375,0.4296875,0.431640625,0.4326171875,0.431640625,0.4287109375,0.4248046875,0.421875,0.419921875,0.4296875,0.48046875,0.55078125,0.603515625,0.609375,0.5673828125,0.5,0.4287109375,0.369140625,0.341796875,0.3955078125,0.4853515625,0.5888671875,0.658203125,0.673828125,0.662109375,0.6142578125,0.548828125,0.5048828125,0.5068359375,0.552734375,0.6220703125,0.6865234375,0.7158203125,0.6865234375,0.60546875,0.5087890625,0.443359375,0.4287109375,0.4375,0.4736328125,0.5185546875,0.544921875,0.533203125,0.48828125,0.4287109375,0.359375,0.2724609375,0.2001953125,0.177734375,0.2099609375,0.26953125,0.3251953125,0.3740234375,0.4111328125,0.4375,0.458984375,0.484375,0.521484375,0.5703125,0.6220703125,0.671875,0.7001953125,0.697265625,0.6689453125,0.6376953125,0.6220703125,0.6162109375,0.6201171875,0.6171875,0.587890625,0.52734375,0.451171875,0.376953125,0.298828125,0.2138671875,0.1630859375,0.181640625,0.263671875,0.3662109375,0.4482421875,0.53125,0.646484375,0.751953125,0.7978515625,0.7705078125,0.697265625,0.6220703125,0.5380859375,0.4228515625,0.3173828125,0.271484375,0.298828125,0.3720703125,0.4482421875,0.517578125,0.5673828125,0.576171875,0.541015625,0.4833984375,0.439453125,0.4287109375,0.4296875,0.4287109375,0.4248046875,0.416015625,0.40234375,0.388671875,0.376953125,0.369140625,0.3671875,0.373046875,0.3818359375,0.3876953125,0.3857421875,0.376953125,0.3740234375,0.40234375,0.466796875,0.548828125,0.623046875,0.6650390625,0.673828125,0.662109375,0.611328125,0.53515625,0.466796875,0.4375,0.4541015625,0.5,0.55859375,0.6376953125,0.705078125,0.72265625,0.6845703125,0.6171875,0.55078125,0.484375,0.40625,0.3369140625,0.298828125,0.296875,0.3125,0.3251953125,0.3466796875,0.4052734375,0.484375,0.546875,0.568359375,0.546875,0.5,0.44140625,0.37109375,0.32421875,0.333984375,0.4013671875,0.4912109375,0.5703125,0.642578125,0.701171875,0.705078125,0.63671875,0.517578125,0.4013671875,0.3251953125,0.265625,0.220703125,0.2138671875,0.2490234375,0.3076171875,0.357421875,0.376953125,0.3818359375,0.3662109375,0.3408203125,0.3291015625,0.341796875,0.3798828125,0.4287109375,0.4814453125,0.5361328125,0.5810546875,0.60546875,0.61328125,0.6142578125,0.6220703125,0.626953125,0.611328125,0.5703125,0.5146484375,0.46484375,0.4345703125,0.4287109375,0.4423828125,0.5009765625,0.5859375,0.6533203125,0.671875,0.63671875,0.5703125,0.5087890625,0.4921875,0.5244140625,0.5810546875,0.623046875,0.6201171875,0.5703125,0.51171875,0.47265625,0.4697265625,0.5,0.5439453125,0.5712890625,0.5703125,0.564453125,0.5712890625,0.580078125,0.57421875,0.544921875,0.4990234375,0.4482421875,0.40234375,0.3798828125,0.380859375,0.392578125,0.3935546875,0.37109375,0.3251953125,0.283203125,0.28125,0.341796875,0.451171875,0.568359375,0.6484375,0.673828125,0.673828125,0.6396484375,0.587890625,0.552734375,0.55859375,0.60546875,0.673828125,0.7490234375,0.822265625,0.853515625,0.8173828125,0.724609375,0.6240234375,0.55078125,0.4853515625,0.419921875,0.390625,0.4228515625,0.5068359375,0.6025390625,0.673828125,0.72265625,0.7236328125,0.669921875,0.58984375,0.5263671875,0.5126953125,0.55078125,0.609375,0.6845703125,0.744140625,0.75390625,0.708984375,0.63671875,0.5703125,0.5068359375,0.4453125,0.3984375,0.3779296875,0.37890625,0.3837890625,0.376953125,0.357421875,0.3076171875,0.2490234375,0.2138671875,0.220703125,0.265625,0.3251953125,0.3876953125,0.4453125,0.4755859375,0.4677734375,0.431640625,0.39453125,0.376953125,0.3740234375,0.40234375,0.466796875,0.548828125,0.623046875,0.6650390625,0.673828125,0.6650390625,0.623046875,0.5458984375,0.453125,0.3759765625,0.333984375,0.3251953125,0.3359375,0.3798828125,0.4453125,0.4990234375,0.5166015625,0.494140625,0.4482421875,0.3984375,0.3583984375,0.3408203125,0.3486328125,0.3681640625,0.3818359375,0.376953125,0.3603515625,0.3251953125,0.2939453125,0.291015625,0.3251953125,0.384765625,0.4482421875,0.5146484375,0.5927734375,0.662109375,0.7001953125,0.7021484375,0.6865234375,0.673828125,0.671875,0.7001953125,0.744140625,0.7744140625,0.7705078125,0.7314453125,0.673828125,0.60546875,0.5185546875,0.43359375,0.376953125,0.3583984375,0.365234375,0.376953125,0.3857421875,0.3876953125,0.3779296875,0.3603515625,0.3408203125,0.328125,0.3251953125,0.34375,0.427734375,0.55859375,0.6806640625,0.7451171875,0.7353515625,0.673828125,0.591796875,0.4892578125,0.4033203125,0.375,0.4130859375,0.484375,0.55078125,0.6015625,0.6064453125,0.5693359375,0.517578125,0.4892578125,0.5087890625,0.5703125,0.6484375,0.736328125,0.794921875,0.791015625,0.7265625,0.6396484375,0.5703125,0.5048828125,0.4296875,0.3642578125,0.3251953125,0.31640625,0.3232421875,0.3251953125,0.328125,0.3408203125,0.36328125,0.390625,0.4140625,0.4267578125,0.4287109375,0.4345703125,0.4580078125,0.484375,0.4921875,0.4716796875,0.427734375,0.376953125,0.3232421875,0.271484375,0.2509765625,0.283203125,0.3583984375,0.4404296875,0.5,0.5517578125,0.59765625,0.6064453125,0.560546875,0.474609375,0.38671875,0.3251953125,0.29296875,0.3330078125,0.447265625,0.5869140625,0.6904296875,0.7177734375,0.673828125,0.60546875,0.5244140625,0.4677734375,0.4677734375,0.5244140625,0.60546875,0.673828125,0.724609375,0.7333984375,0.6953125,0.634765625,0.5869140625,0.58203125,0.6220703125,0.6640625,0.666015625,0.609375,0.5087890625,0.4052734375,0.33984375,0.3251953125,0.3251953125,0.33203125,0.3603515625,0.4169921875,0.4921875,0.5654296875,0.6220703125,0.67578125,0.7275390625,0.744140625,0.7021484375,0.6142578125,0.5185546875,0.4482421875,0.3994140625,0.40234375,0.4560546875,0.5263671875,0.5703125,0.5595703125,0.5,0.4228515625,0.3408203125,0.29296875,0.3115234375,0.3876953125,0.48046875,0.55078125,0.607421875,0.630859375,0.599609375,0.5185546875,0.419921875,0.349609375,0.3251953125,0.314453125,0.30078125,0.291015625,0.291015625,0.30078125,0.314453125,0.3251953125,0.3408203125,0.37890625,0.4384765625,0.5087890625,0.568359375,0.6064453125,0.6220703125,0.6259765625,0.6103515625,0.5859375,0.5732421875,0.5869140625,0.6240234375,0.673828125,0.7158203125,0.7177734375,0.6572265625,0.5478515625,0.4306640625,0.3505859375,0.3251953125,0.3154296875,0.3076171875,0.3095703125,0.3232421875,0.3447265625,0.3642578125,0.376953125,0.3876953125,0.39453125,0.3935546875,0.3798828125,0.3583984375,0.3388671875,0.3251953125,0.3291015625,0.384765625,0.4755859375,0.5556640625,0.5888671875,0.5634765625,0.5,0.427734375,0.3671875,0.337890625,0.3857421875,0.5078125,0.638671875,0.7216796875,0.740234375,0.7275390625,0.6728515625,0.5966796875,0.5380859375,0.5283203125,0.5673828125,0.634765625,0.701171875,0.7333984375,0.708984375,0.6357421875,0.544921875,0.4833984375,0.46875,0.4755859375,0.501953125,0.53515625,0.5546875,0.546875,0.513671875,0.46875,0.41796875,0.34765625,0.2783203125,0.234375,0.224609375,0.2392578125,0.2587890625,0.28125,0.31640625,0.3662109375,0.421875,0.4716796875,0.5078125,0.5302734375,0.5546875,0.5966796875,0.642578125,0.673828125,0.6787109375,0.6611328125,0.634765625,0.61328125,0.6025390625,0.5908203125,0.560546875,0.5068359375,0.4365234375,0.3642578125,0.28515625,0.1943359375,0.134765625,0.142578125,0.2158203125,0.3134765625,0.39453125,0.4794921875,0.603515625,0.7236328125,0.787109375,0.7744140625,0.708984375,0.634765625,0.5498046875,0.4267578125,0.3056640625,0.2421875,0.2548828125,0.3203125,0.39453125,0.4658203125,0.52734375,0.5576171875,0.546875,0.509765625,0.4775390625,0.46875,0.470703125,0.47265625,0.46875,0.4521484375,0.423828125,0.392578125,0.3642578125,0.341796875,0.337890625,0.3525390625,0.375,0.3896484375,0.3857421875,0.3642578125,0.3466796875,0.373046875,0.4521484375,0.5634765625,0.6669921875,0.7275390625,0.740234375,0.7314453125,0.69140625,0.6240234375,0.5517578125,0.501953125,0.486328125,0.5,0.5263671875,0.580078125,0.640625,0.6796875,0.6806640625,0.6484375,0.6044921875,0.548828125,0.4580078125,0.353515625,0.26953125,0.2314453125,0.2353515625,0.2587890625,0.29296875,0.3525390625,0.4248046875,0.4853515625,0.515625,0.515625,0.5,0.4716796875,0.419921875,0.3701171875,0.35546875,0.3896484375,0.45703125,0.5302734375,0.599609375,0.6455078125,0.6318359375,0.5498046875,0.4267578125,0.3193359375,0.2587890625,0.2138671875,0.177734375,0.1728515625,0.208984375,0.271484375,0.330078125,0.3642578125,0.3896484375,0.41015625,0.4248046875,0.43359375,0.4404296875,0.4521484375,0.46875,0.4873046875,0.5068359375,0.52734375,0.5517578125,0.580078125,0.6083984375,0.634765625,0.6572265625,0.65625,0.6240234375,0.568359375,0.51171875,0.4765625,0.46875,0.48046875,0.529296875,0.5966796875,0.642578125,0.6435546875,0.5986328125,0.5302734375,0.466796875,0.4404296875,0.4609375,0.5107421875,0.5556640625,0.564453125,0.5302734375,0.4892578125,0.4716796875,0.482421875,0.513671875,0.5419921875,0.548828125,0.5302734375,0.50390625,0.478515625,0.4580078125,0.44140625,0.427734375,0.412109375,0.39453125,0.375,0.3564453125,0.3369140625,0.31640625,0.296875,0.2783203125,0.2587890625,0.248046875,0.27734375,0.361328125,0.4853515625,0.6123046875,0.7001953125,0.740234375,0.755859375,0.7333984375,0.6845703125,0.6435546875,0.63671875,0.673828125,0.740234375,0.8134765625,0.875,0.892578125,0.8447265625,0.7529296875,0.662109375,0.6044921875,0.5576171875,0.5146484375,0.501953125,0.5380859375,0.6103515625,0.6865234375,0.740234375,0.7783203125,0.7841796875,0.748046875,0.685546875,0.625,0.595703125,0.6044921875,0.6279296875,0.6591796875,0.6796875,0.6708984375,0.6318359375,0.578125,0.5302734375,0.4853515625,0.447265625,0.421875,0.408203125,0.400390625,0.3876953125,0.3642578125,0.330078125,0.271484375,0.208984375,0.1728515625,0.177734375,0.2138671875,0.2587890625,0.3095703125,0.3701171875,0.421875,0.44140625,0.4267578125,0.3935546875,0.3642578125,0.3466796875,0.373046875,0.4521484375,0.5634765625,0.6669921875,0.7275390625,0.740234375,0.728515625,0.6708984375,0.5634765625,0.435546875,0.328125,0.2705078125,0.2587890625,0.2646484375,0.2919921875,0.3369140625,0.3798828125,0.4072265625,0.41015625,0.39453125,0.37890625,0.376953125,0.3857421875,0.3974609375,0.3994140625,0.3876953125,0.3642578125,0.3330078125,0.291015625,0.2587890625,0.2587890625,0.2939453125,0.345703125,0.39453125,0.4501953125,0.541015625,0.6455078125,0.7294921875,0.767578125,0.763671875,0.740234375,0.720703125,0.7275390625,0.7568359375,0.787109375,0.7978515625,0.7802734375,0.740234375,0.68359375,0.58984375,0.4775390625,0.3857421875,0.3408203125,0.3408203125,0.3642578125,0.3876953125,0.3935546875,0.375,0.3359375,0.29296875,0.2646484375,0.2587890625,0.2802734375,0.3798828125,0.541015625,0.6982421875,0.79296875,0.798828125,0.740234375,0.6611328125,0.5654296875,0.48828125,0.4638671875,0.4951171875,0.5537109375,0.6044921875,0.63671875,0.619140625,0.5576171875,0.48828125,0.451171875,0.4677734375,0.5302734375,0.60546875,0.6845703125,0.7314453125,0.720703125,0.6591796875,0.583984375,0.5302734375,0.4794921875,0.4130859375,0.3447265625,0.2919921875,0.265625,0.2587890625,0.2587890625,0.263671875,0.2890625,0.3359375,0.3916015625,0.4384765625,0.4638671875,0.46875,0.4697265625,0.4677734375,0.4580078125,0.4384765625,0.4111328125,0.384765625,0.3642578125,0.345703125,0.337890625,0.3505859375,0.3857421875,0.43359375,0.4755859375,0.5,0.5146484375,0.5107421875,0.474609375,0.4111328125,0.33984375,0.28515625,0.2587890625,0.2578125,0.3291015625,0.466796875,0.62109375,0.734375,0.7705078125,0.740234375,0.689453125,0.6298828125,0.587890625,0.587890625,0.6298828125,0.689453125,0.740234375,0.779296875,0.7880859375,0.7587890625,0.7041015625,0.650390625,0.625,0.634765625,0.64453125,0.61328125,0.5322265625,0.4248046875,0.3271484375,0.2705078125,0.2587890625,0.2646484375,0.2998046875,0.369140625,0.4609375,0.5478515625,0.607421875,0.634765625,0.654296875,0.6650390625,0.6484375,0.5966796875,0.5205078125,0.4462890625,0.39453125,0.3623046875,0.3837890625,0.4521484375,0.5302734375,0.57421875,0.560546875,0.5,0.42578125,0.3603515625,0.3359375,0.375,0.4609375,0.5478515625,0.6044921875,0.64453125,0.650390625,0.6015625,0.501953125,0.38671875,0.298828125,0.2587890625,0.2294921875,0.1953125,0.1708984375,0.1708984375,0.1953125,0.2294921875,0.2587890625,0.2900390625,0.3388671875,0.408203125,0.4853515625,0.5546875,0.6044921875,0.634765625,0.66015625,0.681640625,0.6953125,0.7041015625,0.7119140625,0.72265625,0.740234375,0.7509765625,0.7216796875,0.6376953125,0.513671875,0.38671875,0.298828125,0.2587890625,0.232421875,0.2099609375,0.208984375,0.2373046875,0.28515625,0.33203125,0.3642578125,0.390625,0.4130859375,0.4140625,0.3857421875,0.337890625,0.291015625,0.2587890625,0.2490234375,0.30078125,0.40234375,0.5078125,0.568359375,0.5595703125,0.5,0.4287109375,0.373046875,0.3525390625] \ No newline at end of file diff --git a/packages/store-indexer/bin/parseEnv.ts b/packages/store-indexer/bin/parseEnv.ts index 637eaa47d7..64f2321eae 100644 --- a/packages/store-indexer/bin/parseEnv.ts +++ b/packages/store-indexer/bin/parseEnv.ts @@ -1,40 +1,118 @@ -import { isHex } from "viem"; -import { z, ZodError, ZodTypeAny } from "zod"; - -export const frontendEnvSchema = z.object({ - HOST: z.string().default("0.0.0.0"), - PORT: z.coerce.number().positive().default(3001), -}); - -export const indexerEnvSchema = z.intersection( - z.object({ - FOLLOW_BLOCK_TAG: z.enum(["latest", "safe", "finalized"]).default("safe"), - START_BLOCK: z.coerce.bigint().nonnegative().default(0n), - MAX_BLOCK_RANGE: z.coerce.bigint().positive().default(1000n), - POLLING_INTERVAL: z.coerce.number().positive().default(1000), - STORE_ADDRESS: z.string().refine(isHex).optional(), - }), - z.union([ - z.object({ - RPC_HTTP_URL: z.string(), - RPC_WS_URL: z.string().optional(), - }), - z.object({ - RPC_HTTP_URL: z.string().optional(), - RPC_WS_URL: z.string(), - }), - ]), -); - -export function parseEnv(envSchema: TSchema): z.infer { +#!/usr/bin/env node +import "dotenv/config"; +import { z } from "zod"; +import { eq } from "drizzle-orm"; +import { createPublicClient, fallback, webSocket, http, Transport } from "viem"; +import { isDefined } from "@latticexyz/common/utils"; +import { combineLatest, filter, first } from "rxjs"; +import { drizzle } from "drizzle-orm/postgres-js"; +import postgres from "postgres"; +import { createStorageAdapter } from "@latticexyz/store-sync/postgres-decoded"; +import { createStoreSync } from "@latticexyz/store-sync"; +import { indexerEnvSchema, parseEnv } from "./parseEnv"; +import { sentry } from "../src/koa-middleware/sentry"; +import { healthcheck } from "../src/koa-middleware/healthcheck"; +import { helloWorld } from "../src/koa-middleware/helloWorld"; + +(async (): Promise => { + const env = parseEnv( + z.intersection( + indexerEnvSchema, + z.object({ + DATABASE_URL: z.string(), + HEALTHCHECK_HOST: z.string().optional(), + HEALTHCHECK_PORT: z.coerce.number().optional(), + SENTRY_DSN: z.string().optional(), + }), + ), + ); + + const transports: Transport[] = [ + // prefer WS when specified + env.RPC_WS_URL ? webSocket(env.RPC_WS_URL) : undefined, + // otherwise use or fallback to HTTP + env.RPC_HTTP_URL ? http(env.RPC_HTTP_URL) : undefined, + ].filter(isDefined); + + const publicClient = createPublicClient({ + transport: fallback(transports), + pollingInterval: env.POLLING_INTERVAL, + }); + + const chainId = await publicClient.getChainId(); + const database = drizzle(postgres(env.DATABASE_URL, { prepare: false })); + + const { storageAdapter, tables } = await createStorageAdapter({ database, publicClient }); + + let startBlock = env.START_BLOCK; + + // Resume from latest block stored in DB. This will throw if the DB doesn't exist yet, so we wrap in a try/catch and ignore the error. + // TODO: query if the DB exists instead of try/catch try { - return envSchema.parse(process.env); + const chainState = await database + .select() + .from(tables.configTable) + .where(eq(tables.configTable.chainId, chainId)) + .limit(1) + .execute() + // Get the first record in a way that returns a possible `undefined` + // TODO: move this to `.findFirst` after upgrading drizzle or `rows[0]` after enabling `noUncheckedIndexedAccess: true` + .then((rows) => rows.find(() => true)); + + if (chainState?.blockNumber != null) { + startBlock = chainState.blockNumber + 1n; + console.log("resuming from block number", startBlock); + } } catch (error) { - if (error instanceof ZodError) { - const { ...invalidEnvVars } = error.format(); - console.error(`\nMissing or invalid environment variables:\n\n ${Object.keys(invalidEnvVars).join("\n ")}\n`); - process.exit(1); + // ignore errors for now + } + + const { latestBlockNumber$, storedBlockLogs$ } = await createStoreSync({ + storageAdapter, + publicClient, + followBlockTag: env.FOLLOW_BLOCK_TAG, + startBlock, + maxBlockRange: env.MAX_BLOCK_RANGE, + address: env.STORE_ADDRESS, + }); + + storedBlockLogs$.subscribe(); + + let isCaughtUp = false; + combineLatest([latestBlockNumber$, storedBlockLogs$]) + .pipe( + filter( + ([latestBlockNumber, { blockNumber: lastBlockNumberProcessed }]) => + latestBlockNumber === lastBlockNumberProcessed, + ), + first(), + ) + .subscribe(() => { + isCaughtUp = true; + console.log("all caught up"); + }); + + if (env.HEALTHCHECK_HOST != null || env.HEALTHCHECK_PORT != null) { + const { default: Koa } = await import("koa"); + const { default: cors } = await import("@koa/cors"); + + const server = new Koa(); + + if (env.SENTRY_DSN) { + server.use(sentry(env.SENTRY_DSN)); } - throw error; + + server.use(cors()); + server.use( + healthcheck({ + isReady: () => isCaughtUp, + }), + ); + server.use(helloWorld()); + + server.listen({ host: env.HEALTHCHECK_HOST, port: env.HEALTHCHECK_PORT }); + console.log( + `postgres indexer healthcheck server listening on http://${env.HEALTHCHECK_HOST}:${env.HEALTHCHECK_PORT}`, + ); } -} +})(); diff --git a/packages/store-indexer/bin/postgres-decoded-indexer.ts b/packages/store-indexer/bin/postgres-decoded-indexer.ts index 19909ca995..64f2321eae 100644 --- a/packages/store-indexer/bin/postgres-decoded-indexer.ts +++ b/packages/store-indexer/bin/postgres-decoded-indexer.ts @@ -23,8 +23,8 @@ import { helloWorld } from "../src/koa-middleware/helloWorld"; HEALTHCHECK_HOST: z.string().optional(), HEALTHCHECK_PORT: z.coerce.number().optional(), SENTRY_DSN: z.string().optional(), - }) - ) + }), + ), ); const transports: Transport[] = [ @@ -34,62 +34,9 @@ import { helloWorld } from "../src/koa-middleware/helloWorld"; env.RPC_HTTP_URL ? http(env.RPC_HTTP_URL) : undefined, ].filter(isDefined); -const publicClient = createPublicClient({ - transport: fallback(transports), - pollingInterval: env.POLLING_INTERVAL, -}); - -const chainId = await publicClient.getChainId(); -const database = drizzle(postgres(env.DATABASE_URL, { prepare: false })); - -const { storageAdapter, tables } = await createStorageAdapter({ database, publicClient }); - -let startBlock = env.START_BLOCK; - -// Resume from latest block stored in DB. This will throw if the DB doesn't exist yet, so we wrap in a try/catch and ignore the error. -// TODO: query if the DB exists instead of try/catch -try { - const chainState = await database - .select() - .from(tables.configTable) - .where(eq(tables.configTable.chainId, chainId)) - .limit(1) - .execute() - // Get the first record in a way that returns a possible `undefined` - // TODO: move this to `.findFirst` after upgrading drizzle or `rows[0]` after enabling `noUncheckedIndexedAccess: true` - .then((rows) => rows.find(() => true)); - - if (chainState?.blockNumber != null) { - startBlock = chainState.blockNumber + 1n; - console.log("resuming from block number", startBlock); - } -} catch (error) { - // ignore errors for now -} - -const { latestBlockNumber$, storedBlockLogs$ } = await createStoreSync({ - storageAdapter, - publicClient, - followBlockTag: env.FOLLOW_BLOCK_TAG, - startBlock, - maxBlockRange: env.MAX_BLOCK_RANGE, - address: env.STORE_ADDRESS, -}); - -storedBlockLogs$.subscribe(); - -let isCaughtUp = false; -combineLatest([latestBlockNumber$, storedBlockLogs$]) - .pipe( - filter( - ([latestBlockNumber, { blockNumber: lastBlockNumberProcessed }]) => - latestBlockNumber === lastBlockNumberProcessed, - ), - first(), - ) - .subscribe(() => { - isCaughtUp = true; - console.log("all caught up"); + const publicClient = createPublicClient({ + transport: fallback(transports), + pollingInterval: env.POLLING_INTERVAL, }); const chainId = await publicClient.getChainId(); @@ -120,16 +67,52 @@ combineLatest([latestBlockNumber$, storedBlockLogs$]) // ignore errors for now } - server.use(cors()); - server.use( - healthcheck({ - isReady: () => isCaughtUp, - }), - ); - server.use(helloWorld()); + const { latestBlockNumber$, storedBlockLogs$ } = await createStoreSync({ + storageAdapter, + publicClient, + followBlockTag: env.FOLLOW_BLOCK_TAG, + startBlock, + maxBlockRange: env.MAX_BLOCK_RANGE, + address: env.STORE_ADDRESS, + }); - server.listen({ host: env.HEALTHCHECK_HOST, port: env.HEALTHCHECK_PORT }); - console.log( - `postgres indexer healthcheck server listening on http://${env.HEALTHCHECK_HOST}:${env.HEALTHCHECK_PORT}`, - ); -})(); \ No newline at end of file + storedBlockLogs$.subscribe(); + + let isCaughtUp = false; + combineLatest([latestBlockNumber$, storedBlockLogs$]) + .pipe( + filter( + ([latestBlockNumber, { blockNumber: lastBlockNumberProcessed }]) => + latestBlockNumber === lastBlockNumberProcessed, + ), + first(), + ) + .subscribe(() => { + isCaughtUp = true; + console.log("all caught up"); + }); + + if (env.HEALTHCHECK_HOST != null || env.HEALTHCHECK_PORT != null) { + const { default: Koa } = await import("koa"); + const { default: cors } = await import("@koa/cors"); + + const server = new Koa(); + + if (env.SENTRY_DSN) { + server.use(sentry(env.SENTRY_DSN)); + } + + server.use(cors()); + server.use( + healthcheck({ + isReady: () => isCaughtUp, + }), + ); + server.use(helloWorld()); + + server.listen({ host: env.HEALTHCHECK_HOST, port: env.HEALTHCHECK_PORT }); + console.log( + `postgres indexer healthcheck server listening on http://${env.HEALTHCHECK_HOST}:${env.HEALTHCHECK_PORT}`, + ); + } +})(); diff --git a/packages/store-indexer/bin/postgres-indexer.ts b/packages/store-indexer/bin/postgres-indexer.ts index 02f5ce8b56..a0d71566b9 100644 --- a/packages/store-indexer/bin/postgres-indexer.ts +++ b/packages/store-indexer/bin/postgres-indexer.ts @@ -12,16 +12,16 @@ import { createStoreSync } from "@latticexyz/store-sync"; import { indexerEnvSchema, parseEnv } from "./parseEnv"; (async (): Promise => { -const env = parseEnv( - z.intersection( - indexerEnvSchema, - z.object({ - DATABASE_URL: z.string(), - HEALTHCHECK_HOST: z.string().optional(), - HEALTHCHECK_PORT: z.coerce.number().optional(), - }), - ), -); + const env = parseEnv( + z.intersection( + indexerEnvSchema, + z.object({ + DATABASE_URL: z.string(), + HEALTHCHECK_HOST: z.string().optional(), + HEALTHCHECK_PORT: z.coerce.number().optional(), + }), + ), + ); const transports: Transport[] = [ // prefer WS when specified @@ -30,67 +30,9 @@ const env = parseEnv( env.RPC_HTTP_URL ? http(env.RPC_HTTP_URL) : undefined, ].filter(isDefined); -const publicClient = createPublicClient({ - transport: fallback(transports), - pollingInterval: env.POLLING_INTERVAL, -}); - -const chainId = await publicClient.getChainId(); -const database = drizzle(postgres(env.DATABASE_URL, { prepare: false })); - -if (await shouldCleanDatabase(database, chainId)) { - console.log("outdated database detected, clearing data to start fresh"); - await cleanDatabase(database); -} - -const { storageAdapter, tables } = await createStorageAdapter({ database, publicClient }); - -let startBlock = env.START_BLOCK; - -// Resume from latest block stored in DB. This will throw if the DB doesn't exist yet, so we wrap in a try/catch and ignore the error. -// TODO: query if the DB exists instead of try/catch -try { - const chainState = await database - .select() - .from(tables.configTable) - .where(eq(tables.configTable.chainId, chainId)) - .limit(1) - .execute() - // Get the first record in a way that returns a possible `undefined` - // TODO: move this to `.findFirst` after upgrading drizzle or `rows[0]` after enabling `noUncheckedIndexedAccess: true` - .then((rows) => rows.find(() => true)); - - if (chainState?.blockNumber != null) { - startBlock = chainState.blockNumber + 1n; - console.log("resuming from block number", startBlock); - } -} catch (error) { - // ignore errors for now -} - -const { latestBlockNumber$, storedBlockLogs$ } = await createStoreSync({ - storageAdapter, - publicClient, - followBlockTag: env.FOLLOW_BLOCK_TAG, - startBlock, - maxBlockRange: env.MAX_BLOCK_RANGE, - address: env.STORE_ADDRESS, -}); - -storedBlockLogs$.subscribe(); - -let isCaughtUp = false; -combineLatest([latestBlockNumber$, storedBlockLogs$]) - .pipe( - filter( - ([latestBlockNumber, { blockNumber: lastBlockNumberProcessed }]) => - latestBlockNumber === lastBlockNumberProcessed, - ), - first(), - ) - .subscribe(() => { - isCaughtUp = true; - console.log("all caught up"); + const publicClient = createPublicClient({ + transport: fallback(transports), + pollingInterval: env.POLLING_INTERVAL, }); const chainId = await publicClient.getChainId(); @@ -101,16 +43,75 @@ combineLatest([latestBlockNumber$, storedBlockLogs$]) await cleanDatabase(database); } - server.use(cors()); - server.use( - healthcheck({ - isReady: () => isCaughtUp, - }), - ); - server.use(helloWorld()); + const { storageAdapter, tables } = await createStorageAdapter({ database, publicClient }); + + let startBlock = env.START_BLOCK; + + // Resume from latest block stored in DB. This will throw if the DB doesn't exist yet, so we wrap in a try/catch and ignore the error. + // TODO: query if the DB exists instead of try/catch + try { + const chainState = await database + .select() + .from(tables.configTable) + .where(eq(tables.configTable.chainId, chainId)) + .limit(1) + .execute() + // Get the first record in a way that returns a possible `undefined` + // TODO: move this to `.findFirst` after upgrading drizzle or `rows[0]` after enabling `noUncheckedIndexedAccess: true` + .then((rows) => rows.find(() => true)); + + if (chainState?.blockNumber != null) { + startBlock = chainState.blockNumber + 1n; + console.log("resuming from block number", startBlock); + } + } catch (error) { + // ignore errors for now + } - server.listen({ host: env.HEALTHCHECK_HOST, port: env.HEALTHCHECK_PORT }); - console.log( - `postgres indexer healthcheck server listening on http://${env.HEALTHCHECK_HOST}:${env.HEALTHCHECK_PORT}`, - ); -})(); \ No newline at end of file + const { latestBlockNumber$, storedBlockLogs$ } = await createStoreSync({ + storageAdapter, + publicClient, + followBlockTag: env.FOLLOW_BLOCK_TAG, + startBlock, + maxBlockRange: env.MAX_BLOCK_RANGE, + address: env.STORE_ADDRESS, + }); + + storedBlockLogs$.subscribe(); + + let isCaughtUp = false; + combineLatest([latestBlockNumber$, storedBlockLogs$]) + .pipe( + filter( + ([latestBlockNumber, { blockNumber: lastBlockNumberProcessed }]) => + latestBlockNumber === lastBlockNumberProcessed, + ), + first(), + ) + .subscribe(() => { + isCaughtUp = true; + console.log("all caught up"); + }); + + if (env.HEALTHCHECK_HOST != null || env.HEALTHCHECK_PORT != null) { + const { default: Koa } = await import("koa"); + const { default: cors } = await import("@koa/cors"); + const { healthcheck } = await import("../src/koa-middleware/healthcheck"); + const { helloWorld } = await import("../src/koa-middleware/helloWorld"); + + const server = new Koa(); + + server.use(cors()); + server.use( + healthcheck({ + isReady: () => isCaughtUp, + }), + ); + server.use(helloWorld()); + + server.listen({ host: env.HEALTHCHECK_HOST, port: env.HEALTHCHECK_PORT }); + console.log( + `postgres indexer healthcheck server listening on http://${env.HEALTHCHECK_HOST}:${env.HEALTHCHECK_PORT}`, + ); + } +})(); diff --git a/packages/store-indexer/bin/sqlite-indexer.ts b/packages/store-indexer/bin/sqlite-indexer.ts index 461ecdba41..5e77806782 100644 --- a/packages/store-indexer/bin/sqlite-indexer.ts +++ b/packages/store-indexer/bin/sqlite-indexer.ts @@ -21,15 +21,15 @@ import { apiRoutes } from "../src/sqlite/apiRoutes"; import { sentry } from "../src/koa-middleware/sentry"; (async (): Promise => { -const env = parseEnv( - z.intersection( - z.intersection(indexerEnvSchema, frontendEnvSchema), - z.object({ - SQLITE_FILENAME: z.string().default("indexer.db"), - SENTRY_DSN: z.string().optional(), - }), - ), -); + const env = parseEnv( + z.intersection( + z.intersection(indexerEnvSchema, frontendEnvSchema), + z.object({ + SQLITE_FILENAME: z.string().default("indexer.db"), + SENTRY_DSN: z.string().optional(), + }), + ), + ); const transports: Transport[] = [ // prefer WS when specified @@ -38,62 +38,9 @@ const env = parseEnv( env.RPC_HTTP_URL ? http(env.RPC_HTTP_URL) : undefined, ].filter(isDefined); -const publicClient = createPublicClient({ - transport: fallback(transports), - pollingInterval: env.POLLING_INTERVAL, -}); - -const chainId = await publicClient.getChainId(); -const database = drizzle(new Database(env.SQLITE_FILENAME)); - -let startBlock = env.START_BLOCK; - -// Resume from latest block stored in DB. This will throw if the DB doesn't exist yet, so we wrap in a try/catch and ignore the error. -try { - const currentChainStates = database.select().from(chainState).where(eq(chainState.chainId, chainId)).all(); - // TODO: replace this type workaround with `noUncheckedIndexedAccess: true` when we can fix all the issues related (https://github.com/latticexyz/mud/issues/1212) - const currentChainState: (typeof currentChainStates)[number] | undefined = currentChainStates[0]; - - if (currentChainState != null) { - if (currentChainState.schemaVersion != schemaVersion) { - console.log( - "schema version changed from", - currentChainState.schemaVersion, - "to", - schemaVersion, - "recreating database", - ); - fs.truncateSync(env.SQLITE_FILENAME); - } else if (currentChainState.lastUpdatedBlockNumber != null) { - console.log("resuming from block number", currentChainState.lastUpdatedBlockNumber + 1n); - startBlock = currentChainState.lastUpdatedBlockNumber + 1n; - } - } -} catch (error) { - // ignore errors, this is optional -} - -const { latestBlockNumber$, storedBlockLogs$ } = await syncToSqlite({ - database, - publicClient, - followBlockTag: env.FOLLOW_BLOCK_TAG, - startBlock, - maxBlockRange: env.MAX_BLOCK_RANGE, - address: env.STORE_ADDRESS, -}); - -let isCaughtUp = false; -combineLatest([latestBlockNumber$, storedBlockLogs$]) - .pipe( - filter( - ([latestBlockNumber, { blockNumber: lastBlockNumberProcessed }]) => - latestBlockNumber === lastBlockNumberProcessed, - ), - first(), - ) - .subscribe(() => { - isCaughtUp = true; - console.log("all caught up"); + const publicClient = createPublicClient({ + transport: fallback(transports), + pollingInterval: env.POLLING_INTERVAL, }); const chainId = await publicClient.getChainId(); @@ -101,28 +48,35 @@ combineLatest([latestBlockNumber$, storedBlockLogs$]) let startBlock = env.START_BLOCK; -server.use(cors()); -server.use( - healthcheck({ - isReady: () => isCaughtUp, - }), -); -server.use(helloWorld()); -server.use(apiRoutes(database)); - -server.use( - createKoaMiddleware({ - prefix: "/trpc", - router: createAppRouter(), - createContext: async () => ({ - queryAdapter: await createQueryAdapter(database), - }), - }), -); + // Resume from latest block stored in DB. This will throw if the DB doesn't exist yet, so we wrap in a try/catch and ignore the error. + try { + const currentChainStates = database.select().from(chainState).where(eq(chainState.chainId, chainId)).all(); + // TODO: replace this type workaround with `noUncheckedIndexedAccess: true` when we can fix all the issues related (https://github.com/latticexyz/mud/issues/1212) + const currentChainState: (typeof currentChainStates)[number] | undefined = currentChainStates[0]; + + if (currentChainState != null) { + if (currentChainState.schemaVersion != schemaVersion) { + console.log( + "schema version changed from", + currentChainState.schemaVersion, + "to", + schemaVersion, + "recreating database", + ); + fs.truncateSync(env.SQLITE_FILENAME); + } else if (currentChainState.lastUpdatedBlockNumber != null) { + console.log("resuming from block number", currentChainState.lastUpdatedBlockNumber + 1n); + startBlock = currentChainState.lastUpdatedBlockNumber + 1n; + } + } + } catch (error) { + // ignore errors, this is optional + } const { latestBlockNumber$, storedBlockLogs$ } = await syncToSqlite({ database, publicClient, + followBlockTag: env.FOLLOW_BLOCK_TAG, startBlock, maxBlockRange: env.MAX_BLOCK_RANGE, address: env.STORE_ADDRESS, @@ -133,9 +87,9 @@ server.use( .pipe( filter( ([latestBlockNumber, { blockNumber: lastBlockNumberProcessed }]) => - latestBlockNumber === lastBlockNumberProcessed + latestBlockNumber === lastBlockNumberProcessed, ), - first() + first(), ) .subscribe(() => { isCaughtUp = true; @@ -152,7 +106,7 @@ server.use( server.use( healthcheck({ isReady: () => isCaughtUp, - }) + }), ); server.use(helloWorld()); server.use(apiRoutes(database)); @@ -164,7 +118,7 @@ server.use( createContext: async () => ({ queryAdapter: await createQueryAdapter(database), }), - }) + }), ); server.listen({ host: env.HOST, port: env.PORT }); diff --git a/packages/world-modules/src/index.sol b/packages/world-modules/src/index.sol index 630d470911..d8301443a6 100644 --- a/packages/world-modules/src/index.sol +++ b/packages/world-modules/src/index.sol @@ -6,8 +6,8 @@ pragma solidity >=0.8.24; import { KeysWithValue } from "./modules/keyswithvalue/tables/KeysWithValue.sol"; import { KeysInTable, KeysInTableData } from "./modules/keysintable/tables/KeysInTable.sol"; import { UsedKeysIndex } from "./modules/keysintable/tables/UsedKeysIndex.sol"; -import { UniqueEntity } from "./modules/uniqueentity/tables/UniqueEntity.sol"; import { HasKeys } from "./modules/haskeys/tables/HasKeys.sol"; +import { UniqueEntity } from "./modules/uniqueentity/tables/UniqueEntity.sol"; import { CallboundDelegations } from "./modules/std-delegations/tables/CallboundDelegations.sol"; import { SystemboundDelegations } from "./modules/std-delegations/tables/SystemboundDelegations.sol"; import { TimeboundDelegations } from "./modules/std-delegations/tables/TimeboundDelegations.sol"; diff --git a/packages/world-modules/src/modules/haskeys/HasKeysModule.sol b/packages/world-modules/src/modules/haskeys/HasKeysModule.sol index b48712ad9f..0a02b9b787 100644 --- a/packages/world-modules/src/modules/haskeys/HasKeysModule.sol +++ b/packages/world-modules/src/modules/haskeys/HasKeysModule.sol @@ -13,7 +13,7 @@ import { ResourceId, WorldResourceIdInstance } from "@latticexyz/world/src/World import { revertWithBytes } from "@latticexyz/world/src/revertWithBytes.sol"; import { HasKeysHook } from "./HasKeysHook.sol"; -import { HasKeys, HasKeysTableId } from "./tables/HasKeys.sol"; +import { HasKeys } from "./tables/HasKeys.sol"; /** * This module deploys a hook that is called when a value is set in the `sourceTableId` @@ -44,16 +44,16 @@ contract HasKeysModule is Module { bool success; bytes memory returnData; - if (!ResourceIds._getExists(HasKeysTableId)) { + if (!ResourceIds._getExists(HasKeys._tableId)) { // Register the tables (success, returnData) = address(world).delegatecall( abi.encodeCall( world.registerTable, ( - HasKeysTableId, - HasKeys.getFieldLayout(), - HasKeys.getKeySchema(), - HasKeys.getValueSchema(), + HasKeys._tableId, + HasKeys._fieldLayout, + HasKeys._keySchema, + HasKeys._valueSchema, HasKeys.getKeyNames(), HasKeys.getFieldNames() ) @@ -63,7 +63,7 @@ contract HasKeysModule is Module { // Grant the hook access to the tables (success, returnData) = address(world).delegatecall( - abi.encodeCall(world.grantAccess, (HasKeysTableId, address(hook))) + abi.encodeCall(world.grantAccess, (HasKeys._tableId, address(hook))) ); if (!success) revertWithBytes(returnData); } diff --git a/packages/world-modules/src/modules/haskeys/tables/HasKeys.sol b/packages/world-modules/src/modules/haskeys/tables/HasKeys.sol index 9bffb7f14f..82ac3c8d40 100644 --- a/packages/world-modules/src/modules/haskeys/tables/HasKeys.sol +++ b/packages/world-modules/src/modules/haskeys/tables/HasKeys.sol @@ -3,9 +3,6 @@ pragma solidity >=0.8.24; /* Autogenerated file. Do not edit manually. */ -// Import schema type -import { SchemaType } from "@latticexyz/schema-type/src/solidity/SchemaType.sol"; - // Import store internals import { IStore } from "@latticexyz/store/src/IStore.sol"; import { StoreSwitch } from "@latticexyz/store/src/StoreSwitch.sol"; @@ -14,53 +11,25 @@ import { Bytes } from "@latticexyz/store/src/Bytes.sol"; import { Memory } from "@latticexyz/store/src/Memory.sol"; import { SliceLib } from "@latticexyz/store/src/Slice.sol"; import { EncodeArray } from "@latticexyz/store/src/tightcoder/EncodeArray.sol"; -import { FieldLayout, FieldLayoutLib } from "@latticexyz/store/src/FieldLayout.sol"; -import { Schema, SchemaLib } from "@latticexyz/store/src/Schema.sol"; +import { FieldLayout } from "@latticexyz/store/src/FieldLayout.sol"; +import { Schema } from "@latticexyz/store/src/Schema.sol"; import { PackedCounter, PackedCounterLib } from "@latticexyz/store/src/PackedCounter.sol"; import { ResourceId } from "@latticexyz/store/src/ResourceId.sol"; // Import user types import { ResourceId } from "@latticexyz/store/src/ResourceId.sol"; -// Hex below is the result of `WorldResourceIdLib.encode({ namespace: "", name: "HasKeys", typeId: RESOURCE_TABLE });` -ResourceId constant _tableId = ResourceId.wrap(0x746200000000000000000000000000004861734b657973000000000000000000); -ResourceId constant HasKeysTableId = _tableId; - -FieldLayout constant _fieldLayout = FieldLayout.wrap( - 0x0001010001000000000000000000000000000000000000000000000000000000 -); - library HasKeys { - /** - * @notice Get the table values' field layout. - * @return _fieldLayout The field layout for the table. - */ - function getFieldLayout() internal pure returns (FieldLayout) { - return _fieldLayout; - } - - /** - * @notice Get the table's key schema. - * @return _keySchema The key schema for the table. - */ - function getKeySchema() internal pure returns (Schema) { - SchemaType[] memory _keySchema = new SchemaType[](2); - _keySchema[0] = SchemaType.BYTES32; - _keySchema[1] = SchemaType.BYTES32; + // Hex below is the result of `WorldResourceIdLib.encode({ namespace: "", name: "HasKeys", typeId: RESOURCE_TABLE });` + ResourceId constant _tableId = ResourceId.wrap(0x746200000000000000000000000000004861734b657973000000000000000000); - return SchemaLib.encode(_keySchema); - } + FieldLayout constant _fieldLayout = + FieldLayout.wrap(0x0001010001000000000000000000000000000000000000000000000000000000); - /** - * @notice Get the table's value schema. - * @return _valueSchema The value schema for the table. - */ - function getValueSchema() internal pure returns (Schema) { - SchemaType[] memory _valueSchema = new SchemaType[](1); - _valueSchema[0] = SchemaType.BOOL; - - return SchemaLib.encode(_valueSchema); - } + // Hex-encoded key schema of (bytes32, bytes32) + Schema constant _keySchema = Schema.wrap(0x004002005f5f0000000000000000000000000000000000000000000000000000); + // Hex-encoded value schema of (bool) + Schema constant _valueSchema = Schema.wrap(0x0001010060000000000000000000000000000000000000000000000000000000); /** * @notice Get the table's key field names. @@ -85,21 +54,21 @@ library HasKeys { * @notice Register the table with its config. */ function register() internal { - StoreSwitch.registerTable(_tableId, _fieldLayout, getKeySchema(), getValueSchema(), getKeyNames(), getFieldNames()); + StoreSwitch.registerTable(_tableId, _fieldLayout, _keySchema, _valueSchema, getKeyNames(), getFieldNames()); } /** * @notice Register the table with its config. */ function _register() internal { - StoreCore.registerTable(_tableId, _fieldLayout, getKeySchema(), getValueSchema(), getKeyNames(), getFieldNames()); + StoreCore.registerTable(_tableId, _fieldLayout, _keySchema, _valueSchema, getKeyNames(), getFieldNames()); } /** * @notice Register the table with its config (using the specified store). */ function register(IStore _store) internal { - _store.registerTable(_tableId, _fieldLayout, getKeySchema(), getValueSchema(), getKeyNames(), getFieldNames()); + _store.registerTable(_tableId, _fieldLayout, _keySchema, _valueSchema, getKeyNames(), getFieldNames()); } /** diff --git a/templates/phaser/packages/client/.env b/templates/phaser/packages/client/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/templates/phaser/packages/client/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/templates/phaser/packages/contracts/.env b/templates/phaser/packages/contracts/.env deleted file mode 100644 index 4aa7957312..0000000000 --- a/templates/phaser/packages/contracts/.env +++ /dev/null @@ -1,11 +0,0 @@ -# This .env file is for demonstration purposes only. -# -# This should usually be excluded via .gitignore and the env vars attached to -# your deployment enviroment, but we're including this here for ease of local -# development. Please do not commit changes to this file! -# -# Enable debug logs for MUD CLI -DEBUG=mud:* -# -# Anvil default private key: -PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 diff --git a/templates/react-ecs/packages/client/.env b/templates/react-ecs/packages/client/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/templates/react-ecs/packages/client/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/templates/react-ecs/packages/contracts/.env b/templates/react-ecs/packages/contracts/.env deleted file mode 100644 index 4aa7957312..0000000000 --- a/templates/react-ecs/packages/contracts/.env +++ /dev/null @@ -1,11 +0,0 @@ -# This .env file is for demonstration purposes only. -# -# This should usually be excluded via .gitignore and the env vars attached to -# your deployment enviroment, but we're including this here for ease of local -# development. Please do not commit changes to this file! -# -# Enable debug logs for MUD CLI -DEBUG=mud:* -# -# Anvil default private key: -PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 diff --git a/templates/react/packages/client/.env b/templates/react/packages/client/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/templates/react/packages/client/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/templates/react/packages/contracts/.env b/templates/react/packages/contracts/.env deleted file mode 100644 index 4aa7957312..0000000000 --- a/templates/react/packages/contracts/.env +++ /dev/null @@ -1,11 +0,0 @@ -# This .env file is for demonstration purposes only. -# -# This should usually be excluded via .gitignore and the env vars attached to -# your deployment enviroment, but we're including this here for ease of local -# development. Please do not commit changes to this file! -# -# Enable debug logs for MUD CLI -DEBUG=mud:* -# -# Anvil default private key: -PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 diff --git a/templates/threejs/packages/client/.env b/templates/threejs/packages/client/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/templates/threejs/packages/client/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/templates/threejs/packages/contracts/.env b/templates/threejs/packages/contracts/.env deleted file mode 100644 index 4aa7957312..0000000000 --- a/templates/threejs/packages/contracts/.env +++ /dev/null @@ -1,11 +0,0 @@ -# This .env file is for demonstration purposes only. -# -# This should usually be excluded via .gitignore and the env vars attached to -# your deployment enviroment, but we're including this here for ease of local -# development. Please do not commit changes to this file! -# -# Enable debug logs for MUD CLI -DEBUG=mud:* -# -# Anvil default private key: -PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 diff --git a/templates/vanilla/packages/client/.env b/templates/vanilla/packages/client/.env deleted file mode 100644 index 3528db8807..0000000000 --- a/templates/vanilla/packages/client/.env +++ /dev/null @@ -1 +0,0 @@ -VITE_CHAIN_ID=31337 diff --git a/templates/vanilla/packages/contracts/.env b/templates/vanilla/packages/contracts/.env deleted file mode 100644 index 4aa7957312..0000000000 --- a/templates/vanilla/packages/contracts/.env +++ /dev/null @@ -1,11 +0,0 @@ -# This .env file is for demonstration purposes only. -# -# This should usually be excluded via .gitignore and the env vars attached to -# your deployment enviroment, but we're including this here for ease of local -# development. Please do not commit changes to this file! -# -# Enable debug logs for MUD CLI -DEBUG=mud:* -# -# Anvil default private key: -PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80