diff options
-rw-r--r-- | src/asm2wasm.h | 1 | ||||
-rw-r--r-- | src/passes/MergeBlocks.cpp | 41 | ||||
-rw-r--r-- | test/emcc_O2_hello_world.fromasm | 9090 | ||||
-rw-r--r-- | test/emcc_O2_hello_world.fromasm.clamp | 9090 | ||||
-rw-r--r-- | test/emcc_O2_hello_world.fromasm.imprecise | 9086 | ||||
-rw-r--r-- | test/emcc_hello_world.fromasm | 13685 | ||||
-rw-r--r-- | test/emcc_hello_world.fromasm.clamp | 13685 | ||||
-rw-r--r-- | test/emcc_hello_world.fromasm.imprecise | 13675 | ||||
-rw-r--r-- | test/memorygrowth.fromasm | 9686 | ||||
-rw-r--r-- | test/memorygrowth.fromasm.clamp | 9686 | ||||
-rw-r--r-- | test/memorygrowth.fromasm.imprecise | 9682 | ||||
-rw-r--r-- | test/passes/converge_O3_metrics.bin.txt | 114 | ||||
-rw-r--r-- | test/passes/inlining-optimizing_optimize-level=3.txt | 4626 | ||||
-rw-r--r-- | test/passes/merge-blocks.txt | 108 | ||||
-rw-r--r-- | test/passes/merge-blocks.wast | 92 | ||||
-rw-r--r-- | test/unit.fromasm | 21 | ||||
-rw-r--r-- | test/unit.fromasm.clamp | 21 | ||||
-rw-r--r-- | test/unit.fromasm.imprecise | 21 |
18 files changed, 51006 insertions, 51404 deletions
diff --git a/src/asm2wasm.h b/src/asm2wasm.h index ebd740841..d143239cc 100644 --- a/src/asm2wasm.h +++ b/src/asm2wasm.h @@ -1458,6 +1458,7 @@ void Asm2WasmBuilder::processAsm(Ref ast) { // autodrop can add some garbage passRunner.add("vacuum"); passRunner.add("remove-unused-brs"); + passRunner.add("remove-unused-names"); passRunner.add("merge-blocks"); passRunner.add("optimize-instructions"); passRunner.add("post-emscripten"); diff --git a/src/passes/MergeBlocks.cpp b/src/passes/MergeBlocks.cpp index accb16395..4999fd234 100644 --- a/src/passes/MergeBlocks.cpp +++ b/src/passes/MergeBlocks.cpp @@ -338,6 +338,24 @@ struct MergeBlocks : public WalkerPass<PostWalker<MergeBlocks>> { // If the block has a single child which is a loop, and the block is named, // then it is the exit for the loop. It's better to move it into the loop, // where it can be better optimized by other passes. + // Similar logic for ifs: if the block is an exit for the if, we can + // move the block in, consider for example: + // (block $label + // (if (..condition1..) + // (block + // (br_if $label (..condition2..)) + // (..code..) + // ) + // ) + // ) + // After also merging the blocks, we have + // (if (..condition1..) + // (block $label + // (br_if $label (..condition2..)) + // (..code..) + // ) + // ) + // which can be further optimized by other passes. if (curr->name.is() && curr->list.size() == 1) { if (auto* loop = curr->list[0]->dynCast<Loop>()) { curr->list[0] = loop->body; @@ -348,8 +366,29 @@ struct MergeBlocks : public WalkerPass<PostWalker<MergeBlocks>> { // After the flip, the outer type must be the same assert(loop->type == oldOuterType); replaceCurrent(loop); - // Fall through to optimize the block, which has a new child now. + } else if (auto* iff = curr->list[0]->dynCast<If>()) { + // The label can't be used in the condition. + if (BranchUtils::BranchSeeker::countNamed(iff->condition, curr->name) == 0) { + // We can move the block into either arm, if there are no uses in the other. + Expression** target = nullptr; + if (!iff->ifFalse || + BranchUtils::BranchSeeker::countNamed(iff->ifFalse, curr->name) == 0) { + target = &iff->ifTrue; + } else if (BranchUtils::BranchSeeker::countNamed(iff->ifTrue, curr->name) == 0) { + target = &iff->ifFalse; + } + if (target) { + curr->list[0] = *target; + *target = curr; + curr->finalize(curr->type); + iff->finalize(); + replaceCurrent(iff); + // Note that the type might change, e.g. if the if condition is unreachable + // but the block that was on the outside had a break. + } + } } + // Always fall through to optimize the block, which has a new child now. } // Otherwise, do the main merging optimizations. optimizeBlock(curr, getModule(), getPassOptions()); diff --git a/test/emcc_O2_hello_world.fromasm b/test/emcc_O2_hello_world.fromasm index 70ecb9020..1a6fd9245 100644 --- a/test/emcc_O2_hello_world.fromasm +++ b/test/emcc_O2_hello_world.fromasm @@ -104,1246 +104,1242 @@ (local $50 i32) (local $51 i32) (local $52 i32) - (block $do-once - (if - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block - (if - (i32.and - (tee_local $1 - (i32.shr_u - (tee_local $15 - (i32.load - (i32.const 176) - ) + (if + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block + (if + (i32.and + (tee_local $1 + (i32.shr_u + (tee_local $15 + (i32.load + (i32.const 176) ) - (tee_local $5 - (i32.shr_u - (tee_local $9 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $5 + (i32.shr_u + (tee_local $9 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $5 - (i32.load - (tee_local $17 - (i32.add - (tee_local $0 - (i32.load - (tee_local $6 - (i32.add - (tee_local $3 - (i32.add - (i32.shl - (tee_local $1 - (i32.add - (i32.xor - (i32.and - (get_local $1) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $5 + (i32.load + (tee_local $17 + (i32.add + (tee_local $0 + (i32.load + (tee_local $6 + (i32.add + (tee_local $3 + (i32.add + (i32.shl + (tee_local $1 + (i32.add + (i32.xor + (i32.and + (get_local $1) (i32.const 1) ) - (get_local $5) + (i32.const 1) ) + (get_local $5) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.ne - (get_local $3) - (get_local $5) - ) - (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) + ) + (if + (i32.ne + (get_local $3) + (get_local $5) + ) + (block + (if + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $10 - (i32.add - (get_local $5) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 12) ) ) - (get_local $0) - ) - (block - (i32.store - (get_local $10) - (get_local $3) - ) - (i32.store - (get_local $6) - (get_local $5) - ) ) - (call $_abort) + (get_local $0) ) - ) - (i32.store - (i32.const 176) - (i32.and - (get_local $15) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) + (block + (i32.store + (get_local $10) + (get_local $3) + ) + (i32.store + (get_local $6) + (get_local $5) ) ) + (call $_abort) ) ) - (i32.store offset=4 - (get_local $0) - (i32.or - (tee_local $5 + (i32.store + (i32.const 176) + (i32.and + (get_local $15) + (i32.xor (i32.shl + (i32.const 1) (get_local $1) - (i32.const 3) ) + (i32.const -1) ) - (i32.const 3) ) ) - (i32.store - (tee_local $6 - (i32.add - (i32.add - (get_local $0) - (get_local $5) - ) - (i32.const 4) + ) + (i32.store offset=4 + (get_local $0) + (i32.or + (tee_local $5 + (i32.shl + (get_local $1) + (i32.const 3) ) ) - (i32.or - (i32.load - (get_local $6) + (i32.const 3) + ) + ) + (i32.store + (tee_local $6 + (i32.add + (i32.add + (get_local $0) + (get_local $5) ) - (i32.const 1) + (i32.const 4) ) ) - (return - (get_local $17) + (i32.or + (i32.load + (get_local $6) + ) + (i32.const 1) ) ) + (return + (get_local $17) + ) ) - (if - (i32.gt_u - (get_local $9) - (tee_local $6 - (i32.load - (i32.const 184) - ) + ) + (if + (i32.gt_u + (get_local $9) + (tee_local $6 + (i32.load + (i32.const 184) ) ) - (block - (if - (get_local $1) - (block - (set_local $3 - (i32.and - (i32.shr_u - (tee_local $5 - (i32.add - (i32.and - (tee_local $3 - (i32.and - (i32.shl - (get_local $1) - (get_local $5) - ) - (i32.or - (tee_local $5 - (i32.shl - (i32.const 2) - (get_local $5) - ) - ) - (i32.sub - (i32.const 0) + ) + (block + (if + (get_local $1) + (block + (set_local $3 + (i32.and + (i32.shr_u + (tee_local $5 + (i32.add + (i32.and + (tee_local $3 + (i32.and + (i32.shl + (get_local $1) + (get_local $5) + ) + (i32.or + (tee_local $5 + (i32.shl + (i32.const 2) (get_local $5) ) ) + (i32.sub + (i32.const 0) + (get_local $5) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $3) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $3 - (i32.load - (tee_local $10 - (i32.add - (tee_local $0 - (i32.load - (tee_local $22 - (i32.add - (tee_local $11 - (i32.add - (i32.shl - (tee_local $7 - (i32.add + ) + (set_local $3 + (i32.load + (tee_local $10 + (i32.add + (tee_local $0 + (i32.load + (tee_local $22 + (i32.add + (tee_local $11 + (i32.add + (i32.shl + (tee_local $7 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $5 - (i32.and - (i32.shr_u - (tee_local $10 - (i32.shr_u - (get_local $5) - (get_local $3) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $3) - ) - (tee_local $10 + (tee_local $5 (i32.and (i32.shr_u - (tee_local $0 + (tee_local $10 (i32.shr_u - (get_local $10) (get_local $5) + (get_local $3) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $3) ) - (tee_local $0 + (tee_local $10 (i32.and (i32.shr_u - (tee_local $11 + (tee_local $0 (i32.shr_u - (get_local $0) (get_local $10) + (get_local $5) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $11 + (tee_local $0 (i32.and (i32.shr_u - (tee_local $22 + (tee_local $11 (i32.shr_u - (get_local $11) (get_local $0) + (get_local $10) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $22) - (get_local $11) + (tee_local $11 + (i32.and + (i32.shr_u + (tee_local $22 + (i32.shr_u + (get_local $11) + (get_local $0) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $22) + (get_local $11) + ) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.ne - (get_local $11) - (get_local $3) - ) - (block - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 192) - ) + ) + (if + (i32.ne + (get_local $11) + (get_local $3) + ) + (block + (if + (i32.lt_u + (get_local $3) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $5 - (i32.add - (get_local $3) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add + (get_local $3) + (i32.const 12) ) ) - (get_local $0) ) - (block - (i32.store - (get_local $5) - (get_local $11) - ) - (i32.store - (get_local $22) - (get_local $3) - ) - (set_local $17 - (i32.load - (i32.const 184) - ) + (get_local $0) + ) + (block + (i32.store + (get_local $5) + (get_local $11) + ) + (i32.store + (get_local $22) + (get_local $3) + ) + (set_local $17 + (i32.load + (i32.const 184) ) ) - (call $_abort) ) + (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.and - (get_local $15) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $7) - ) - (i32.const -1) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (get_local $15) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $7) ) + (i32.const -1) ) ) - (set_local $17 - (get_local $6) - ) + ) + (set_local $17 + (get_local $6) ) ) - (i32.store offset=4 - (get_local $0) - (i32.or + ) + (i32.store offset=4 + (get_local $0) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $15 + (i32.add + (get_local $0) (get_local $9) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $15 - (i32.add - (get_local $0) - (get_local $9) - ) - ) - (i32.or - (tee_local $6 - (i32.sub - (i32.shl - (get_local $7) - (i32.const 3) - ) - (get_local $9) + (i32.or + (tee_local $6 + (i32.sub + (i32.shl + (get_local $7) + (i32.const 3) ) + (get_local $9) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $15) - (get_local $6) - ) + ) + (i32.store + (i32.add + (get_local $15) (get_local $6) ) - (if - (get_local $17) - (block - (set_local $3 - (i32.load - (i32.const 196) - ) + (get_local $6) + ) + (if + (get_local $17) + (block + (set_local $3 + (i32.load + (i32.const 196) ) - (set_local $11 - (i32.add - (i32.shl - (tee_local $22 - (i32.shr_u - (get_local $17) - (i32.const 3) - ) + ) + (set_local $11 + (i32.add + (i32.shl + (tee_local $22 + (i32.shr_u + (get_local $17) + (i32.const 3) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (if - (i32.and - (tee_local $5 - (i32.load - (i32.const 176) - ) + ) + (if + (i32.and + (tee_local $5 + (i32.load + (i32.const 176) ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $22) - ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $22) ) ) - (if - (i32.lt_u - (tee_local $17 - (i32.load - (tee_local $22 - (i32.add - (get_local $11) - (i32.const 8) - ) + ) + (if + (i32.lt_u + (tee_local $17 + (i32.load + (tee_local $22 + (i32.add + (get_local $11) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $38 - (get_local $22) - ) - (set_local $32 - (get_local $17) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $5) - (get_local $1) - ) - ) (set_local $38 - (i32.add - (get_local $11) - (i32.const 8) - ) + (get_local $22) ) (set_local $32 - (get_local $11) + (get_local $17) ) ) ) - (i32.store - (get_local $38) - (get_local $3) - ) - (i32.store offset=12 - (get_local $32) - (get_local $3) - ) - (i32.store offset=8 - (get_local $3) - (get_local $32) - ) - (i32.store offset=12 - (get_local $3) - (get_local $11) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $5) + (get_local $1) + ) + ) + (set_local $38 + (i32.add + (get_local $11) + (i32.const 8) + ) + ) + (set_local $32 + (get_local $11) + ) ) ) + (i32.store + (get_local $38) + (get_local $3) + ) + (i32.store offset=12 + (get_local $32) + (get_local $3) + ) + (i32.store offset=8 + (get_local $3) + (get_local $32) + ) + (i32.store offset=12 + (get_local $3) + (get_local $11) + ) ) - (i32.store - (i32.const 184) - (get_local $6) - ) - (i32.store - (i32.const 196) - (get_local $15) - ) - (return - (get_local $10) - ) + ) + (i32.store + (i32.const 184) + (get_local $6) + ) + (i32.store + (i32.const 196) + (get_local $15) + ) + (return + (get_local $10) ) ) - (if - (tee_local $15 - (i32.load - (i32.const 180) - ) + ) + (if + (tee_local $15 + (i32.load + (i32.const 180) ) - (block - (set_local $15 - (i32.and - (i32.shr_u - (tee_local $6 - (i32.add - (i32.and + ) + (block + (set_local $15 + (i32.and + (i32.shr_u + (tee_local $6 + (i32.add + (i32.and + (get_local $15) + (i32.sub + (i32.const 0) (get_local $15) - (i32.sub - (i32.const 0) - (get_local $15) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $1 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $17 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $1 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $17 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $6 - (i32.and - (i32.shr_u - (tee_local $11 - (i32.shr_u - (get_local $6) - (get_local $15) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $15) - ) - (tee_local $11 + (tee_local $6 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $11 (i32.shr_u - (get_local $11) (get_local $6) + (get_local $15) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $15) ) - (tee_local $3 + (tee_local $11 (i32.and (i32.shr_u - (tee_local $1 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $11) + (get_local $6) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $1 + (tee_local $3 (i32.and (i32.shr_u - (tee_local $5 + (tee_local $1 (i32.shr_u - (get_local $1) (get_local $3) + (get_local $11) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $5) - (get_local $1) + (tee_local $1 + (i32.and + (i32.shr_u + (tee_local $5 + (i32.shr_u + (get_local $1) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $5) + (get_local $1) + ) ) + (i32.const 2) ) ) ) - (i32.const -8) ) - (get_local $9) + (i32.const -8) ) + (get_local $9) ) - (set_local $3 - (tee_local $5 - (get_local $17) - ) + ) + (set_local $3 + (tee_local $5 + (get_local $17) ) - (loop $while-in - (block $while-out - (set_local $11 - (i32.lt_u - (tee_local $17 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $5 + ) + (loop $while-in + (block $while-out + (set_local $11 + (i32.lt_u + (tee_local $17 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $5 + (if (result i32) + (tee_local $17 + (i32.load offset=16 + (get_local $5) + ) + ) + (get_local $17) (if (result i32) - (tee_local $17 - (i32.load offset=16 + (tee_local $11 + (i32.load offset=20 (get_local $5) ) ) - (get_local $17) - (if (result i32) - (tee_local $11 - (i32.load offset=20 - (get_local $5) - ) + (get_local $11) + (block + (set_local $8 + (get_local $1) ) - (get_local $11) - (block - (set_local $8 - (get_local $1) - ) - (set_local $2 - (get_local $3) - ) - (br $while-out) + (set_local $2 + (get_local $3) ) + (br $while-out) ) ) ) ) - (i32.const -8) ) - (get_local $9) + (i32.const -8) ) + (get_local $9) ) - (get_local $1) ) + (get_local $1) ) - (set_local $1 - (select - (get_local $17) - (get_local $1) - (get_local $11) - ) + ) + (set_local $1 + (select + (get_local $17) + (get_local $1) + (get_local $11) ) - (set_local $3 - (select - (get_local $5) - (get_local $3) - (get_local $11) - ) + ) + (set_local $3 + (select + (get_local $5) + (get_local $3) + (get_local $11) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $2) - (tee_local $3 - (i32.load - (i32.const 192) - ) + ) + (if + (i32.lt_u + (get_local $2) + (tee_local $3 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $2) - (tee_local $5 - (i32.add - (get_local $2) - (get_local $9) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $2) + (tee_local $5 + (i32.add + (get_local $2) + (get_local $9) ) ) - (call $_abort) ) - (set_local $1 - (i32.load offset=24 - (get_local $2) - ) + (call $_abort) + ) + (set_local $1 + (i32.load offset=24 + (get_local $2) ) - (block $do-once4 - (if - (i32.eq - (tee_local $10 - (i32.load offset=12 - (get_local $2) - ) - ) + ) + (if + (i32.eq + (tee_local $10 + (i32.load offset=12 (get_local $2) ) - (block - (set_local $6 - (if (result i32) - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $17 - (get_local $7) - ) - (get_local $0) - ) - (if (result i32) - (tee_local $17 - (i32.load - (tee_local $11 - (i32.add - (get_local $2) - (i32.const 16) - ) - ) - ) + ) + (get_local $2) + ) + (block $do-once4 + (set_local $6 + (if (result i32) + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $2) + (i32.const 20) ) - (get_local $11) - (br $do-once4) ) ) ) - (loop $while-in7 - (if - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $17) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $17 - (get_local $7) - ) - (set_local $6 - (get_local $0) - ) - (br $while-in7) - ) + (block (result i32) + (set_local $17 + (get_local $7) ) - (if - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $17) - (i32.const 16) - ) + (get_local $0) + ) + (if (result i32) + (tee_local $17 + (i32.load + (tee_local $11 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (block - (set_local $17 - (get_local $7) - ) - (set_local $6 - (get_local $0) + ) + (get_local $11) + (br $do-once4) + ) + ) + ) + (loop $while-in7 + (if + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $17) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $6) - (get_local $3) + (block + (set_local $17 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $6) - (i32.const 0) - ) - (set_local $24 - (get_local $17) - ) + (set_local $6 + (get_local $0) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $0 - (i32.load offset=8 - (get_local $2) + (i32.add + (get_local $17) + (i32.const 16) ) ) - (get_local $3) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 12) - ) - ) - ) - (get_local $2) + (block + (set_local $17 + (get_local $7) ) - (call $_abort) + (set_local $6 + (get_local $0) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $11 - (i32.add - (get_local $10) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $6) + (get_local $3) + ) + (call $_abort) + (block + (i32.store + (get_local $6) + (i32.const 0) + ) + (set_local $24 + (get_local $17) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 (get_local $2) ) - (block - (i32.store - (get_local $7) - (get_local $10) - ) - (i32.store - (get_local $11) + ) + (get_local $3) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $0) + (i32.const 12) ) - (set_local $24 + ) + ) + (get_local $2) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $11 + (i32.add (get_local $10) + (i32.const 8) ) ) - (call $_abort) + ) + (get_local $2) + ) + (block + (i32.store + (get_local $7) + (get_local $10) + ) + (i32.store + (get_local $11) + (get_local $0) + ) + (set_local $24 + (get_local $10) ) ) + (call $_abort) ) ) + ) + (if + (get_local $1) (block $do-once8 (if - (get_local $1) - (block - (if - (i32.eq - (get_local $2) - (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $10 - (i32.load offset=28 - (get_local $2) - ) - ) - (i32.const 2) + (i32.eq + (get_local $2) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $10 + (i32.load offset=28 + (get_local $2) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $3) - (get_local $24) - ) - (if - (i32.eqz - (get_local $24) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $10) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $3) + (get_local $24) + ) + (if + (i32.eqz + (get_local $24) ) (block - (if - (i32.lt_u - (get_local $1) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $10 - (i32.add - (get_local $1) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $10) ) + (i32.const -1) ) - (get_local $2) - ) - (i32.store - (get_local $10) - (get_local $24) - ) - (i32.store offset=20 - (get_local $1) - (get_local $24) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $24) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $24) - (tee_local $10 - (i32.load - (i32.const 192) - ) + (get_local $1) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $24) - (get_local $1) - ) (if - (tee_local $3 - (i32.load offset=16 - (get_local $2) - ) - ) - (if - (i32.lt_u - (get_local $3) - (get_local $10) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $24) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $24) + (i32.eq + (i32.load + (tee_local $10 + (i32.add + (get_local $1) + (i32.const 16) + ) ) ) + (get_local $2) + ) + (i32.store + (get_local $10) + (get_local $24) + ) + (i32.store offset=20 + (get_local $1) + (get_local $24) ) ) - (if - (tee_local $3 - (i32.load offset=20 - (get_local $2) - ) + (br_if $do-once8 + (i32.eqz + (get_local $24) ) - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $24) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $24) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $24) + (tee_local $10 + (i32.load + (i32.const 192) ) ) ) + (call $_abort) ) - ) - (if - (i32.lt_u - (get_local $8) - (i32.const 16) + (i32.store offset=24 + (get_local $24) + (get_local $1) ) - (block - (i32.store offset=4 - (get_local $2) - (i32.or - (tee_local $1 - (i32.add - (get_local $8) - (get_local $9) - ) - ) - (i32.const 3) + (if + (tee_local $3 + (i32.load offset=16 + (get_local $2) ) ) - (i32.store - (tee_local $3 - (i32.add - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $3) + (get_local $10) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $24) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $24) ) ) - (i32.or + ) + ) + (if + (tee_local $3 + (i32.load offset=20 + (get_local $2) + ) + ) + (if + (i32.lt_u + (get_local $3) (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $24) (get_local $3) ) - (i32.const 1) + (i32.store offset=24 + (get_local $3) + (get_local $24) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $2) - (i32.or - (get_local $9) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $8) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $2) + (i32.or + (tee_local $1 + (i32.add + (get_local $8) + (get_local $9) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $8) - (i32.const 1) + ) + (i32.store + (tee_local $3 + (i32.add + (i32.add + (get_local $2) + (get_local $1) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $5) - (get_local $8) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or (get_local $8) + (i32.const 1) ) - (if - (tee_local $3 + ) + (i32.store + (i32.add + (get_local $5) + (get_local $8) + ) + (get_local $8) + ) + (if + (tee_local $3 + (i32.load + (i32.const 184) + ) + ) + (block + (set_local $1 (i32.load - (i32.const 184) + (i32.const 196) ) ) - (block - (set_local $1 - (i32.load - (i32.const 196) + (set_local $3 + (i32.add + (i32.shl + (tee_local $10 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 216) ) - (set_local $3 - (i32.add + ) + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 176) + ) + ) + (tee_local $11 (i32.shl - (tee_local $10 - (i32.shr_u - (get_local $3) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $10) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $0 + (i32.lt_u + (tee_local $7 (i32.load - (i32.const 176) - ) - ) - (tee_local $11 - (i32.shl - (i32.const 1) - (get_local $10) - ) - ) - ) - (if - (i32.lt_u - (tee_local $7 - (i32.load - (tee_local $10 - (i32.add - (get_local $3) - (i32.const 8) - ) + (tee_local $10 + (i32.add + (get_local $3) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $39 - (get_local $10) - ) - (set_local $22 - (get_local $7) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $0) - (get_local $11) - ) - ) (set_local $39 - (i32.add - (get_local $3) - (i32.const 8) - ) + (get_local $10) ) (set_local $22 - (get_local $3) + (get_local $7) ) ) ) - (i32.store - (get_local $39) - (get_local $1) - ) - (i32.store offset=12 - (get_local $22) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $22) - ) - (i32.store offset=12 - (get_local $1) - (get_local $3) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $0) + (get_local $11) + ) + ) + (set_local $39 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + (set_local $22 + (get_local $3) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $8) - ) - (i32.store - (i32.const 196) - (get_local $5) + (i32.store + (get_local $39) + (get_local $1) + ) + (i32.store offset=12 + (get_local $22) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $22) + ) + (i32.store offset=12 + (get_local $1) + (get_local $3) + ) ) ) - ) - (return - (i32.add - (get_local $2) - (i32.const 8) + (i32.store + (i32.const 184) + (get_local $8) + ) + (i32.store + (i32.const 196) + (get_local $5) ) ) ) + (return + (i32.add + (get_local $2) + (i32.const 8) + ) + ) ) ) ) ) + ) + (block $do-once (set_local $9 (if (result i32) (i32.le_u @@ -1375,217 +1371,215 @@ (get_local $1) ) ) - (block $label$break$L123 - (if - (tee_local $15 - (i32.load offset=480 - (i32.shl - (tee_local $9 + (if + (tee_local $15 + (i32.load offset=480 + (i32.shl + (tee_local $9 + (if (result i32) + (tee_local $7 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $7 - (i32.shr_u - (get_local $3) - (i32.const 8) - ) + (i32.gt_u + (get_local $1) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $1) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.add - (tee_local $15 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.add + (tee_local $15 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (i32.add - (tee_local $10 - (i32.shl - (get_local $7) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $7) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $7 + (i32.and + (i32.shr_u + (i32.add + (tee_local $10 + (i32.shl + (get_local $7) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $7) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $3) ) - (tee_local $10 - (i32.and - (i32.shr_u - (i32.add - (tee_local $17 - (i32.shl - (get_local $10) - (get_local $7) - ) + (get_local $3) + ) + (tee_local $10 + (i32.and + (i32.shr_u + (i32.add + (tee_local $17 + (i32.shl + (get_local $10) + (get_local $7) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $17) - (get_local $10) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $17) + (get_local $10) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $15) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $15) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) + (i32.const 2) ) ) - (block - (set_local $10 - (get_local $0) - ) - (set_local $17 - (i32.const 0) - ) - (set_local $3 - (i32.shl - (get_local $1) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $9) - (i32.const 1) - ) - ) - (i32.eq + ) + (block $label$break$L123 + (set_local $10 + (get_local $0) + ) + (set_local $17 + (i32.const 0) + ) + (set_local $3 + (i32.shl + (get_local $1) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $9) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $9) + (i32.const 31) + ) ) ) - (set_local $7 - (get_local $15) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $0 - (i32.sub - (tee_local $22 - (i32.and - (i32.load offset=4 - (get_local $7) - ) - (i32.const -8) + ) + (set_local $7 + (get_local $15) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $0 + (i32.sub + (tee_local $22 + (i32.and + (i32.load offset=4 + (get_local $7) ) + (i32.const -8) ) - (get_local $1) ) + (get_local $1) ) - (get_local $10) ) - (set_local $6 - (if (result i32) - (i32.eq - (get_local $22) - (get_local $1) - ) - (block - (set_local $28 - (get_local $0) - ) - (set_local $26 - (get_local $7) - ) - (set_local $30 - (get_local $7) - ) - (set_local $10 - (i32.const 90) - ) - (br $label$break$L123) + (get_local $10) + ) + (set_local $6 + (if (result i32) + (i32.eq + (get_local $22) + (get_local $1) + ) + (block + (set_local $28 + (get_local $0) ) - (block (result i32) - (set_local $10 - (get_local $0) - ) + (set_local $26 (get_local $7) ) - ) - ) - ) - (set_local $22 - (select - (get_local $17) - (tee_local $0 - (i32.load offset=20 + (set_local $30 (get_local $7) ) + (set_local $10 + (i32.const 90) + ) + (br $label$break$L123) ) - (i32.or - (i32.eqz + (block (result i32) + (set_local $10 (get_local $0) ) - (i32.eq - (get_local $0) - (tee_local $7 - (i32.load + (get_local $7) + ) + ) + ) + ) + (set_local $22 + (select + (get_local $17) + (tee_local $0 + (i32.load offset=20 + (get_local $7) + ) + ) + (i32.or + (i32.eqz + (get_local $0) + ) + (i32.eq + (get_local $0) + (tee_local $7 + (i32.load + (i32.add (i32.add - (i32.add - (get_local $7) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $3) - (i32.const 31) - ) - (i32.const 2) + (get_local $7) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $3) + (i32.const 31) ) + (i32.const 2) ) ) ) @@ -1593,54 +1587,54 @@ ) ) ) - (set_local $5 - (if (result i32) - (tee_local $0 - (i32.eqz - (get_local $7) - ) + ) + (set_local $5 + (if (result i32) + (tee_local $0 + (i32.eqz + (get_local $7) ) - (block (result i32) - (set_local $33 - (get_local $10) - ) - (set_local $31 - (get_local $6) - ) - (set_local $10 - (i32.const 86) - ) + ) + (block (result i32) + (set_local $33 + (get_local $10) + ) + (set_local $31 + (get_local $6) + ) + (set_local $10 + (i32.const 86) + ) + (get_local $22) + ) + (block + (set_local $17 (get_local $22) ) - (block - (set_local $17 - (get_local $22) - ) - (set_local $3 - (i32.shl - (get_local $3) - (i32.xor - (i32.and - (get_local $0) - (i32.const 1) - ) + (set_local $3 + (i32.shl + (get_local $3) + (i32.xor + (i32.and + (get_local $0) (i32.const 1) ) + (i32.const 1) ) ) - (br $while-in14) ) + (br $while-in14) ) ) ) ) - (block - (set_local $33 - (get_local $0) - ) - (set_local $10 - (i32.const 86) - ) + ) + (block + (set_local $33 + (get_local $0) + ) + (set_local $10 + (i32.const 86) ) ) ) @@ -1935,606 +1929,724 @@ (get_local $12) ) ) - (block $do-once17 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $12) - ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 + (get_local $12) ) - (get_local $12) ) - (block - (set_local $7 - (if (result i32) - (tee_local $0 - (i32.load - (tee_local $9 - (i32.add - (get_local $12) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $17 - (get_local $0) - ) - (get_local $9) - ) - (if (result i32) - (tee_local $17 - (i32.load - (tee_local $15 - (i32.add - (get_local $12) - (i32.const 16) - ) - ) + (get_local $12) + ) + (block $do-once17 + (set_local $7 + (if (result i32) + (tee_local $0 + (i32.load + (tee_local $9 + (i32.add + (get_local $12) + (i32.const 20) ) ) - (get_local $15) - (br $do-once17) ) ) - ) - (loop $while-in20 - (if - (tee_local $0 - (i32.load - (tee_local $9 - (i32.add - (get_local $17) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $17 - (get_local $0) - ) - (set_local $7 - (get_local $9) - ) - (br $while-in20) + (block (result i32) + (set_local $17 + (get_local $0) ) + (get_local $9) ) - (if - (tee_local $0 + (if (result i32) + (tee_local $17 (i32.load - (tee_local $9 + (tee_local $15 (i32.add - (get_local $17) + (get_local $12) (i32.const 16) ) ) ) ) - (block - (set_local $17 - (get_local $0) - ) - (set_local $7 - (get_local $9) - ) - (br $while-in20) - ) - ) - ) - (if - (i32.lt_u - (get_local $7) - (get_local $11) - ) - (call $_abort) - (block - (i32.store - (get_local $7) - (i32.const 0) - ) - (set_local $8 - (get_local $17) - ) + (get_local $15) + (br $do-once17) ) ) ) - (block - (if - (i32.lt_u - (tee_local $9 - (i32.load offset=8 - (get_local $12) - ) - ) - (get_local $11) - ) - (call $_abort) - ) + (loop $while-in20 (if - (i32.ne + (tee_local $0 (i32.load - (tee_local $0 + (tee_local $9 (i32.add - (get_local $9) - (i32.const 12) + (get_local $17) + (i32.const 20) ) ) ) - (get_local $12) ) - (call $_abort) + (block + (set_local $17 + (get_local $0) + ) + (set_local $7 + (get_local $9) + ) + (br $while-in20) + ) ) (if - (i32.eq + (tee_local $0 (i32.load - (tee_local $15 + (tee_local $9 (i32.add - (get_local $3) - (i32.const 8) + (get_local $17) + (i32.const 16) ) ) ) - (get_local $12) ) (block - (i32.store + (set_local $17 (get_local $0) - (get_local $3) ) - (i32.store - (get_local $15) + (set_local $7 (get_local $9) ) - (set_local $8 - (get_local $3) + (br $while-in20) + ) + ) + ) + (if + (i32.lt_u + (get_local $7) + (get_local $11) + ) + (call $_abort) + (block + (i32.store + (get_local $7) + (i32.const 0) + ) + (set_local $8 + (get_local $17) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $9 + (i32.load offset=8 + (get_local $12) ) ) - (call $_abort) + (get_local $11) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $0 + (i32.add + (get_local $9) + (i32.const 12) + ) + ) + ) + (get_local $12) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $15 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + ) + (get_local $12) + ) + (block + (i32.store + (get_local $0) + (get_local $3) + ) + (i32.store + (get_local $15) + (get_local $9) + ) + (set_local $8 + (get_local $3) + ) ) + (call $_abort) ) ) ) - (block $do-once21 - (if - (get_local $5) - (block - (if - (i32.eq - (get_local $12) - (i32.load - (tee_local $11 - (i32.add - (i32.shl - (tee_local $3 - (i32.load offset=28 - (get_local $12) - ) + (if + (get_local $5) + (block $do-once21 + (if + (i32.eq + (get_local $12) + (i32.load + (tee_local $11 + (i32.add + (i32.shl + (tee_local $3 + (i32.load offset=28 + (get_local $12) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) ) ) - (block - (i32.store - (get_local $11) + ) + (block + (i32.store + (get_local $11) + (get_local $8) + ) + (if + (i32.eqz (get_local $8) ) - (if - (i32.eqz - (get_local $8) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) + (block + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) ) - (br $do-once21) ) + (br $do-once21) ) ) - (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $5) - (i32.const 16) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $5) + (i32.const 16) ) ) - (get_local $12) - ) - (i32.store - (get_local $3) - (get_local $8) - ) - (i32.store offset=20 - (get_local $5) - (get_local $8) ) + (get_local $12) ) - (br_if $do-once21 - (i32.eqz - (get_local $8) - ) + (i32.store + (get_local $3) + (get_local $8) + ) + (i32.store offset=20 + (get_local $5) + (get_local $8) ) ) - ) - (if - (i32.lt_u - (get_local $8) - (tee_local $3 - (i32.load - (i32.const 192) - ) + (br_if $do-once21 + (i32.eqz + (get_local $8) ) ) - (call $_abort) ) - (i32.store offset=24 + ) + (if + (i32.lt_u (get_local $8) - (get_local $5) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $8) + (get_local $5) + ) + (if + (tee_local $11 + (i32.load offset=16 + (get_local $12) + ) ) (if - (tee_local $11 - (i32.load offset=16 - (get_local $12) - ) + (i32.lt_u + (get_local $11) + (get_local $3) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=16 + (get_local $8) (get_local $11) - (get_local $3) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $8) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $8) - ) + (i32.store offset=24 + (get_local $11) + (get_local $8) ) ) ) + ) + (if + (tee_local $11 + (i32.load offset=20 + (get_local $12) + ) + ) (if - (tee_local $11 - (i32.load offset=20 - (get_local $12) + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $8) (get_local $11) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $8) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $8) - ) + (i32.store offset=24 + (get_local $11) + (get_local $8) ) ) ) ) ) ) - (block $do-once25 - (if - (i32.ge_u - (get_local $2) - (i32.const 16) + (if + (i32.ge_u + (get_local $2) + (i32.const 16) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $1) + (i32.const 3) + ) ) - (block - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $1) - (i32.const 3) - ) + (i32.store offset=4 + (get_local $6) + (i32.or + (get_local $2) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store + (i32.add (get_local $6) - (i32.or - (get_local $2) - (i32.const 1) - ) + (get_local $2) ) - (i32.store - (i32.add - (get_local $6) - (get_local $2) - ) + (get_local $2) + ) + (set_local $5 + (i32.shr_u (get_local $2) + (i32.const 3) ) - (set_local $5 - (i32.shr_u - (get_local $2) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $2) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $2) - (i32.const 256) + (block + (set_local $11 + (i32.add + (i32.shl + (get_local $5) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $11 - (i32.add + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) + ) + ) + (tee_local $9 (i32.shl + (i32.const 1) (get_local $5) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $3 + (i32.lt_u + (tee_local $15 (i32.load - (i32.const 176) - ) - ) - (tee_local $9 - (i32.shl - (i32.const 1) - (get_local $5) - ) - ) - ) - (if - (i32.lt_u - (tee_local $15 - (i32.load - (tee_local $5 - (i32.add - (get_local $11) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $11) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $16 - (get_local $5) - ) - (set_local $27 - (get_local $15) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $9) - ) - ) (set_local $16 - (i32.add - (get_local $11) - (i32.const 8) - ) + (get_local $5) ) (set_local $27 - (get_local $11) + (get_local $15) ) ) ) - (i32.store - (get_local $16) - (get_local $6) - ) - (i32.store offset=12 - (get_local $27) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $27) - ) - (i32.store offset=12 - (get_local $6) - (get_local $11) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $9) + ) + ) + (set_local $16 + (i32.add + (get_local $11) + (i32.const 8) + ) + ) + (set_local $27 + (get_local $11) + ) ) - (br $do-once25) ) + (i32.store + (get_local $16) + (get_local $6) + ) + (i32.store offset=12 + (get_local $27) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $27) + ) + (i32.store offset=12 + (get_local $6) + (get_local $11) + ) + (br $do-once25) ) - (set_local $5 - (i32.add - (i32.shl - (tee_local $7 + ) + (set_local $5 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $11 + (i32.shr_u + (get_local $2) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $11 - (i32.shr_u - (get_local $2) - (i32.const 8) - ) + (i32.gt_u + (get_local $2) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $2) - (i32.add - (tee_local $5 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $2) + (i32.add + (tee_local $5 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $11 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $11) - (tee_local $9 - (i32.and - (i32.shr_u - (i32.add - (get_local $11) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $11 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $11) + (tee_local $9 + (i32.and + (i32.shr_u + (i32.add + (get_local $11) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $9) ) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (tee_local $15 - (i32.shl - (get_local $3) - (get_local $11) - ) + (get_local $9) + ) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (tee_local $15 + (i32.shl + (get_local $3) + (get_local $11) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $15) - (get_local $3) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $15) + (get_local $3) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $5) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $5) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $6) - (get_local $7) + ) + (i32.store offset=28 + (get_local $6) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 16) + ) ) - (i32.store offset=4 - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) + (i32.const 0) + ) + (i32.store + (get_local $3) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $3 + (i32.load + (i32.const 180) + ) + ) + (tee_local $15 + (i32.shl + (i32.const 1) + (get_local $7) + ) ) ) - (i32.const 0) ) - (i32.store - (get_local $3) - (i32.const 0) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $3) + (get_local $15) + ) + ) + (i32.store + (get_local $5) + (get_local $6) + ) + (i32.store offset=24 + (get_local $6) + (get_local $5) + ) + (i32.store offset=12 + (get_local $6) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $6) + ) + (br $do-once25) ) - (if - (i32.eqz - (i32.and - (tee_local $3 - (i32.load - (i32.const 180) - ) + ) + (set_local $15 + (i32.shl + (get_local $2) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) ) - (tee_local $15 - (i32.shl - (i32.const 1) - (get_local $7) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) + ) + ) + ) + (set_local $3 + (i32.load + (get_local $5) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in28 (result i32) + (block $while-out27 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $3) + ) + (i32.const -8) + ) + (get_local $2) + ) + (block + (set_local $14 + (get_local $3) + ) + (br $while-out27 + (i32.const 148) + ) + ) + ) + (if (result i32) + (tee_local $9 + (i32.load + (tee_local $5 + (i32.add + (i32.add + (get_local $3) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $15) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $15 + (i32.shl + (get_local $15) + (i32.const 1) + ) + ) + (set_local $3 + (get_local $9) + ) + (br $while-in28) + ) + (block (result i32) + (set_local $23 + (get_local $5) + ) + (set_local $20 + (get_local $3) + ) + (i32.const 145) + ) ) ) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $3) - (get_local $15) - ) + (i32.const 145) + ) + (if + (i32.lt_u + (get_local $23) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $5) + (get_local $23) (get_local $6) ) (i32.store offset=24 (get_local $6) - (get_local $5) + (get_local $20) ) (i32.store offset=12 (get_local $6) @@ -2544,216 +2656,92 @@ (get_local $6) (get_local $6) ) - (br $do-once25) - ) - ) - (set_local $15 - (i32.shl - (get_local $2) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) - ) - ) - ) - (set_local $3 - (i32.load - (get_local $5) ) ) (if (i32.eq - (tee_local $10 - (loop $while-in28 (result i32) - (block $while-out27 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $3) - ) - (i32.const -8) - ) - (get_local $2) - ) - (block - (set_local $14 - (get_local $3) - ) - (br $while-out27 - (i32.const 148) + (get_local $10) + (i32.const 148) + ) + (if + (i32.and + (i32.ge_u + (tee_local $15 + (i32.load + (tee_local $3 + (i32.add + (get_local $14) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $5 - (i32.add - (i32.add - (get_local $3) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $15) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $15 - (i32.shl - (get_local $15) - (i32.const 1) - ) - ) - (set_local $3 - (get_local $9) - ) - (br $while-in28) - ) - (block (result i32) - (set_local $23 - (get_local $5) - ) - (set_local $20 - (get_local $3) - ) - (i32.const 145) - ) + ) + (tee_local $9 + (i32.load + (i32.const 192) ) ) ) - ) - (i32.const 145) - ) - (if - (i32.lt_u - (get_local $23) - (i32.load - (i32.const 192) + (i32.ge_u + (get_local $14) + (get_local $9) ) ) - (call $_abort) (block + (i32.store offset=12 + (get_local $15) + (get_local $6) + ) (i32.store - (get_local $23) + (get_local $3) (get_local $6) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $6) - (get_local $20) + (get_local $15) ) (i32.store offset=12 (get_local $6) - (get_local $6) + (get_local $14) ) - (i32.store offset=8 - (get_local $6) + (i32.store offset=24 (get_local $6) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 148) - ) - (if - (i32.and - (i32.ge_u - (tee_local $15 - (i32.load - (tee_local $3 - (i32.add - (get_local $14) - (i32.const 8) - ) - ) - ) - ) - (tee_local $9 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $14) - (get_local $9) - ) - ) - (block - (i32.store offset=12 - (get_local $15) - (get_local $6) - ) - (i32.store - (get_local $3) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $15) - ) - (i32.store offset=12 - (get_local $6) - (get_local $14) - ) - (i32.store offset=24 - (get_local $6) - (i32.const 0) - ) - ) - (call $_abort) - ) + (call $_abort) ) ) ) - (block - (i32.store offset=4 - (get_local $12) - (i32.or - (tee_local $15 - (i32.add - (get_local $2) - (get_local $1) - ) + ) + (block + (i32.store offset=4 + (get_local $12) + (i32.or + (tee_local $15 + (i32.add + (get_local $2) + (get_local $1) ) - (i32.const 3) ) + (i32.const 3) ) - (i32.store - (tee_local $3 + ) + (i32.store + (tee_local $3 + (i32.add (i32.add - (i32.add - (get_local $12) - (get_local $15) - ) - (i32.const 4) + (get_local $12) + (get_local $15) ) + (i32.const 4) ) - (i32.or - (i32.load - (get_local $3) - ) - (i32.const 1) + ) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) ) ) ) @@ -3086,261 +3074,257 @@ ) ) (block - (block $label$break$L259 - (if - (tee_local $7 - (i32.load - (i32.const 200) - ) + (if + (tee_local $7 + (i32.load + (i32.const 200) ) - (block - (set_local $16 - (i32.const 624) - ) - (loop $while-in34 - (block $while-out33 - (if - (if (result i32) - (i32.le_u - (tee_local $27 - (i32.load - (get_local $16) - ) + ) + (block $label$break$L259 + (set_local $16 + (i32.const 624) + ) + (loop $while-in34 + (block $while-out33 + (if + (if (result i32) + (i32.le_u + (tee_local $27 + (i32.load + (get_local $16) ) - (get_local $7) ) - (i32.gt_u - (i32.add - (get_local $27) - (i32.load - (tee_local $8 - (i32.add - (get_local $16) - (i32.const 4) - ) + (get_local $7) + ) + (i32.gt_u + (i32.add + (get_local $27) + (i32.load + (tee_local $8 + (i32.add + (get_local $16) + (i32.const 4) ) ) ) - (get_local $7) - ) - (i32.const 0) - ) - (block - (set_local $6 - (get_local $16) ) - (set_local $5 - (get_local $8) - ) - (br $while-out33) + (get_local $7) ) + (i32.const 0) ) - (br_if $while-in34 - (tee_local $16 - (i32.load offset=8 - (get_local $16) - ) + (block + (set_local $6 + (get_local $16) ) + (set_local $5 + (get_local $8) + ) + (br $while-out33) ) - (set_local $10 - (i32.const 173) - ) - (br $label$break$L259) ) - ) - (if - (i32.lt_u + (br_if $while-in34 (tee_local $16 - (i32.and - (i32.sub - (get_local $20) - (i32.load - (i32.const 188) - ) - ) - (get_local $23) + (i32.load offset=8 + (get_local $16) ) ) - (i32.const 2147483647) ) - (if - (i32.eq - (tee_local $8 - (call $_sbrk - (get_local $16) - ) - ) - (i32.add - (i32.load - (get_local $6) - ) + (set_local $10 + (i32.const 173) + ) + (br $label$break$L259) + ) + ) + (if + (i32.lt_u + (tee_local $16 + (i32.and + (i32.sub + (get_local $20) (i32.load - (get_local $5) + (i32.const 188) ) ) + (get_local $23) ) - (if - (i32.ne - (get_local $8) - (i32.const -1) + ) + (i32.const 2147483647) + ) + (if + (i32.eq + (tee_local $8 + (call $_sbrk + (get_local $16) ) - (block - (set_local $19 - (get_local $8) - ) - (set_local $21 - (get_local $16) - ) - (br $label$break$L257 - (i32.const 193) - ) + ) + (i32.add + (i32.load + (get_local $6) + ) + (i32.load + (get_local $5) ) ) + ) + (if + (i32.ne + (get_local $8) + (i32.const -1) + ) (block - (set_local $13 + (set_local $19 (get_local $8) ) - (set_local $18 + (set_local $21 (get_local $16) ) - (set_local $10 - (i32.const 183) + (br $label$break$L257 + (i32.const 193) ) ) ) + (block + (set_local $13 + (get_local $8) + ) + (set_local $18 + (get_local $16) + ) + (set_local $10 + (i32.const 183) + ) + ) ) ) - (set_local $10 - (i32.const 173) - ) + ) + (set_local $10 + (i32.const 173) ) ) - (block $do-once35 - (if - (if (result i32) - (i32.eq - (get_local $10) - (i32.const 173) - ) - (i32.ne - (tee_local $7 - (call $_sbrk - (i32.const 0) - ) + (if + (if (result i32) + (i32.eq + (get_local $10) + (i32.const 173) + ) + (i32.ne + (tee_local $7 + (call $_sbrk + (i32.const 0) ) - (i32.const -1) ) - (i32.const 0) + (i32.const -1) ) - (block - (set_local $0 - (if (result i32) - (i32.and - (tee_local $8 - (i32.add - (tee_local $16 - (i32.load - (i32.const 652) - ) + (i32.const 0) + ) + (block $do-once35 + (set_local $0 + (if (result i32) + (i32.and + (tee_local $8 + (i32.add + (tee_local $16 + (i32.load + (i32.const 652) ) - (i32.const -1) ) - ) - (tee_local $1 - (get_local $7) + (i32.const -1) ) ) - (i32.add - (i32.sub - (get_local $2) + (tee_local $1 + (get_local $7) + ) + ) + (i32.add + (i32.sub + (get_local $2) + (get_local $1) + ) + (i32.and + (i32.add + (get_local $8) (get_local $1) ) - (i32.and - (i32.add - (get_local $8) - (get_local $1) - ) - (i32.sub - (i32.const 0) - (get_local $16) - ) + (i32.sub + (i32.const 0) + (get_local $16) ) ) - (get_local $2) ) + (get_local $2) ) - (set_local $1 - (i32.add - (tee_local $16 - (i32.load - (i32.const 608) - ) + ) + (set_local $1 + (i32.add + (tee_local $16 + (i32.load + (i32.const 608) ) - (get_local $0) ) + (get_local $0) ) - (if - (i32.and - (i32.gt_u - (get_local $0) - (get_local $9) - ) - (i32.lt_u - (get_local $0) - (i32.const 2147483647) - ) + ) + (if + (i32.and + (i32.gt_u + (get_local $0) + (get_local $9) ) - (block - (br_if $do-once35 - (select - (i32.or - (i32.le_u - (get_local $1) - (get_local $16) - ) - (i32.gt_u - (get_local $1) - (tee_local $8 - (i32.load - (i32.const 616) - ) - ) - ) + (i32.lt_u + (get_local $0) + (i32.const 2147483647) + ) + ) + (block + (br_if $do-once35 + (select + (i32.or + (i32.le_u + (get_local $1) + (get_local $16) ) - (i32.const 0) - (get_local $8) - ) - ) - (set_local $18 - (if (result i32) - (i32.eq + (i32.gt_u + (get_local $1) (tee_local $8 - (call $_sbrk - (get_local $0) + (i32.load + (i32.const 616) ) ) - (get_local $7) ) - (block - (set_local $19 - (get_local $7) - ) - (set_local $21 + ) + (i32.const 0) + (get_local $8) + ) + ) + (set_local $18 + (if (result i32) + (i32.eq + (tee_local $8 + (call $_sbrk (get_local $0) ) - (br $label$break$L257 - (i32.const 193) - ) ) - (block (result i32) - (set_local $13 - (get_local $8) - ) - (set_local $10 - (i32.const 183) - ) + (get_local $7) + ) + (block + (set_local $19 + (get_local $7) + ) + (set_local $21 (get_local $0) ) + (br $label$break$L257 + (i32.const 193) + ) + ) + (block (result i32) + (set_local $13 + (get_local $8) + ) + (set_local $10 + (i32.const 183) + ) + (get_local $0) ) ) ) @@ -3348,100 +3332,98 @@ ) ) ) - (block $label$break$L279 - (if - (i32.eq - (get_local $10) - (i32.const 183) - ) - (block - (set_local $8 - (i32.sub - (i32.const 0) - (get_local $18) - ) + (if + (i32.eq + (get_local $10) + (i32.const 183) + ) + (block $label$break$L279 + (set_local $8 + (i32.sub + (i32.const 0) + (get_local $18) ) - (set_local $4 + ) + (set_local $4 + (if (result i32) (if (result i32) - (if (result i32) + (i32.and + (i32.gt_u + (get_local $14) + (get_local $18) + ) (i32.and - (i32.gt_u - (get_local $14) + (i32.lt_u (get_local $18) + (i32.const 2147483647) ) - (i32.and - (i32.lt_u - (get_local $18) - (i32.const 2147483647) - ) - (i32.ne - (get_local $13) - (i32.const -1) - ) + (i32.ne + (get_local $13) + (i32.const -1) ) ) - (i32.lt_u - (tee_local $1 - (i32.and - (i32.add - (i32.sub - (get_local $12) - (get_local $18) - ) - (tee_local $7 - (i32.load - (i32.const 656) - ) - ) - ) + ) + (i32.lt_u + (tee_local $1 + (i32.and + (i32.add (i32.sub - (i32.const 0) - (get_local $7) + (get_local $12) + (get_local $18) + ) + (tee_local $7 + (i32.load + (i32.const 656) + ) ) ) + (i32.sub + (i32.const 0) + (get_local $7) + ) ) - (i32.const 2147483647) ) - (i32.const 0) + (i32.const 2147483647) ) - (if (result i32) - (i32.eq - (call $_sbrk - (get_local $1) - ) - (i32.const -1) + (i32.const 0) + ) + (if (result i32) + (i32.eq + (call $_sbrk + (get_local $1) ) - (block - (drop - (call $_sbrk - (get_local $8) - ) + (i32.const -1) + ) + (block + (drop + (call $_sbrk + (get_local $8) ) - (br $label$break$L279) - ) - (i32.add - (get_local $1) - (get_local $18) ) + (br $label$break$L279) + ) + (i32.add + (get_local $1) + (get_local $18) ) - (get_local $18) ) + (get_local $18) ) - (if - (i32.ne + ) + (if + (i32.ne + (get_local $13) + (i32.const -1) + ) + (block + (set_local $19 (get_local $13) - (i32.const -1) ) - (block - (set_local $19 - (get_local $13) - ) - (set_local $21 - (get_local $4) - ) - (br $label$break$L257 - (i32.const 193) - ) + (set_local $21 + (get_local $4) + ) + (br $label$break$L257 + (i32.const 193) ) ) ) @@ -3545,1899 +3527,2003 @@ (get_local $13) ) ) - (block $do-once40 - (if - (tee_local $13 - (i32.load - (i32.const 200) - ) + (if + (tee_local $13 + (i32.load + (i32.const 200) ) - (block - (set_local $4 - (i32.const 624) - ) - (loop $do-in - (block $do-out - (if - (i32.eq - (get_local $19) - (i32.add - (tee_local $2 - (i32.load - (get_local $4) - ) + ) + (block $do-once40 + (set_local $4 + (i32.const 624) + ) + (loop $do-in + (block $do-out + (if + (i32.eq + (get_local $19) + (i32.add + (tee_local $2 + (i32.load + (get_local $4) ) - (tee_local $12 - (i32.load - (tee_local $18 - (i32.add - (get_local $4) - (i32.const 4) - ) + ) + (tee_local $12 + (i32.load + (tee_local $18 + (i32.add + (get_local $4) + (i32.const 4) ) ) ) ) ) - (block - (set_local $46 - (get_local $2) - ) - (set_local $47 - (get_local $18) - ) - (set_local $48 - (get_local $12) - ) - (set_local $49 - (get_local $4) - ) - (set_local $10 - (i32.const 203) - ) - (br $do-out) + ) + (block + (set_local $46 + (get_local $2) + ) + (set_local $47 + (get_local $18) + ) + (set_local $48 + (get_local $12) ) + (set_local $49 + (get_local $4) + ) + (set_local $10 + (i32.const 203) + ) + (br $do-out) ) - (br_if $do-in - (tee_local $4 - (i32.load offset=8 - (get_local $4) - ) + ) + (br_if $do-in + (tee_local $4 + (i32.load offset=8 + (get_local $4) ) ) ) ) - (if + ) + (if + (if (result i32) (if (result i32) - (if (result i32) - (i32.eq - (get_local $10) - (i32.const 203) - ) - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $49) - ) - (i32.const 8) - ) - ) - (i32.const 0) + (i32.eq + (get_local $10) + (i32.const 203) ) - (i32.and - (i32.lt_u - (get_local $13) - (get_local $19) - ) - (i32.ge_u - (get_local $13) - (get_local $46) + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $49) + ) + (i32.const 8) ) ) (i32.const 0) ) - (block - (i32.store - (get_local $47) - (i32.add - (get_local $48) - (get_local $21) - ) + (i32.and + (i32.lt_u + (get_local $13) + (get_local $19) ) - (set_local $4 - (i32.add - (get_local $13) - (tee_local $12 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $13) - (i32.const 8) - ) + (i32.ge_u + (get_local $13) + (get_local $46) + ) + ) + (i32.const 0) + ) + (block + (i32.store + (get_local $47) + (i32.add + (get_local $48) + (get_local $21) + ) + ) + (set_local $4 + (i32.add + (get_local $13) + (tee_local $12 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $13) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) - (set_local $18 - (i32.add - (i32.sub - (get_local $21) - (get_local $12) - ) - (i32.load - (i32.const 188) - ) + ) + (set_local $18 + (i32.add + (i32.sub + (get_local $21) + (get_local $12) + ) + (i32.load + (i32.const 188) ) ) - (i32.store - (i32.const 200) - (get_local $4) - ) - (i32.store - (i32.const 188) + ) + (i32.store + (i32.const 200) + (get_local $4) + ) + (i32.store + (i32.const 188) + (get_local $18) + ) + (i32.store offset=4 + (get_local $4) + (i32.or (get_local $18) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $4) - (i32.or - (get_local $18) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $18) - ) - (i32.const 40) + (get_local $18) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (br $do-once40) ) + (br $do-once40) ) - (set_local $3 - (if (result i32) - (i32.lt_u - (get_local $19) - (tee_local $18 - (i32.load - (i32.const 192) - ) - ) - ) - (block (result i32) - (i32.store + ) + (set_local $3 + (if (result i32) + (i32.lt_u + (get_local $19) + (tee_local $18 + (i32.load (i32.const 192) - (get_local $19) ) - (get_local $19) ) - (get_local $18) ) - ) - (set_local $18 - (i32.add + (block (result i32) + (i32.store + (i32.const 192) + (get_local $19) + ) (get_local $19) - (get_local $21) ) + (get_local $18) ) - (set_local $4 - (i32.const 624) + ) + (set_local $18 + (i32.add + (get_local $19) + (get_local $21) ) - (loop $while-in43 - (block $while-out42 - (if - (i32.eq - (i32.load - (get_local $4) - ) - (get_local $18) - ) - (block - (set_local $50 - (get_local $4) - ) - (set_local $40 - (get_local $4) - ) - (set_local $10 - (i32.const 211) - ) - (br $while-out42) + ) + (set_local $4 + (i32.const 624) + ) + (loop $while-in43 + (block $while-out42 + (if + (i32.eq + (i32.load + (get_local $4) ) + (get_local $18) ) - (br_if $while-in43 - (tee_local $4 - (i32.load offset=8 - (get_local $4) - ) + (block + (set_local $50 + (get_local $4) ) - ) - (set_local $29 - (i32.const 624) + (set_local $40 + (get_local $4) + ) + (set_local $10 + (i32.const 211) + ) + (br $while-out42) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 211) + (br_if $while-in43 + (tee_local $4 + (i32.load offset=8 + (get_local $4) + ) + ) ) (set_local $29 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $40) - ) - (i32.const 8) + (i32.const 624) + ) + ) + ) + (if + (i32.eq + (get_local $10) + (i32.const 211) + ) + (set_local $29 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $40) ) - (i32.const 624) - (block - (i32.store - (get_local $50) - (get_local $19) - ) - (i32.store - (tee_local $4 - (i32.add - (get_local $40) - (i32.const 4) - ) - ) + (i32.const 8) + ) + (i32.const 624) + (block + (i32.store + (get_local $50) + (get_local $19) + ) + (i32.store + (tee_local $4 (i32.add - (i32.load - (get_local $4) - ) - (get_local $21) + (get_local $40) + (i32.const 4) ) ) - (set_local $12 - (i32.add - (get_local $19) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $19) - (i32.const 8) - ) + (i32.add + (i32.load + (get_local $4) + ) + (get_local $21) + ) + ) + (set_local $12 + (i32.add + (get_local $19) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) - (set_local $2 - (i32.add - (get_local $18) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $18) - (i32.const 8) - ) + ) + (set_local $2 + (i32.add + (get_local $18) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $18) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) - (set_local $4 - (i32.add - (get_local $12) - (get_local $9) - ) + ) + (set_local $4 + (i32.add + (get_local $12) + (get_local $9) ) - (set_local $14 + ) + (set_local $14 + (i32.sub (i32.sub - (i32.sub - (get_local $2) - (get_local $12) - ) - (get_local $9) + (get_local $2) + (get_local $12) ) + (get_local $9) ) - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $9) - (i32.const 3) - ) + ) + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (if + (i32.ne + (get_local $2) + (get_local $13) ) (block $do-once44 (if - (i32.ne + (i32.eq (get_local $2) - (get_local $13) + (i32.load + (i32.const 196) + ) ) (block - (if - (i32.eq - (get_local $2) - (i32.load - (i32.const 196) - ) - ) - (block - (i32.store - (i32.const 184) - (tee_local $0 - (i32.add - (i32.load - (i32.const 184) - ) - (get_local $14) - ) - ) - ) - (i32.store - (i32.const 196) - (get_local $4) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $0) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $4) - (get_local $0) + (i32.store + (i32.const 184) + (tee_local $0 + (i32.add + (i32.load + (i32.const 184) ) - (get_local $0) + (get_local $14) ) - (br $do-once44) ) ) - (if - (i32.eq - (i32.and - (tee_local $0 - (i32.load offset=4 - (get_local $2) - ) - ) - (i32.const 3) - ) + (i32.store + (i32.const 196) + (get_local $4) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $0) (i32.const 1) ) - (block - (set_local $5 - (i32.and - (get_local $0) - (i32.const -8) - ) + ) + (i32.store + (i32.add + (get_local $4) + (get_local $0) + ) + (get_local $0) + ) + (br $do-once44) + ) + ) + (if + (i32.eq + (i32.and + (tee_local $0 + (i32.load offset=4 + (get_local $2) ) - (set_local $6 - (i32.shr_u - (get_local $0) - (i32.const 3) - ) + ) + (i32.const 3) + ) + (i32.const 1) + ) + (block + (set_local $5 + (i32.and + (get_local $0) + (i32.const -8) + ) + ) + (set_local $6 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (block $label$break$L331 + (if + (i32.ge_u + (get_local $0) + (i32.const 256) ) - (block $label$break$L331 - (if - (i32.ge_u - (get_local $0) - (i32.const 256) + (block + (set_local $23 + (i32.load offset=24 + (get_local $2) ) - (block - (set_local $23 - (i32.load offset=24 + ) + (if + (i32.eq + (tee_local $20 + (i32.load offset=12 (get_local $2) ) ) - (block $do-once47 - (if - (i32.eq - (tee_local $20 - (i32.load offset=12 - (get_local $2) - ) - ) - (get_local $2) - ) - (block - (set_local $0 - (if (result i32) - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (tee_local $8 - (i32.add - (get_local $2) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - (block (result i32) - (set_local $8 - (get_local $1) - ) - (get_local $7) - ) - (if (result i32) - (tee_local $16 - (i32.load - (get_local $8) + (get_local $2) + ) + (block $do-once47 + (set_local $0 + (if (result i32) + (tee_local $7 + (i32.load + (tee_local $1 + (i32.add + (tee_local $8 + (i32.add + (get_local $2) + (i32.const 16) ) ) - (get_local $16) - (br $do-once47) + (i32.const 4) ) ) ) - (loop $while-in50 - (if - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $8 - (get_local $1) - ) - (br $while-in50) - ) - ) - (if - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $8 - (get_local $1) - ) - (br $while-in50) - ) - ) + ) + (block (result i32) + (set_local $8 + (get_local $1) ) - (if - (i32.lt_u + (get_local $7) + ) + (if (result i32) + (tee_local $16 + (i32.load (get_local $8) - (get_local $3) ) - (call $_abort) - (block - (i32.store - (get_local $8) - (i32.const 0) - ) - (set_local $25 + ) + (get_local $16) + (br $do-once47) + ) + ) + ) + (loop $while-in50 + (if + (tee_local $7 + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 20) ) ) ) ) (block - (if - (i32.lt_u - (tee_local $1 - (i32.load offset=8 - (get_local $2) - ) - ) - (get_local $3) - ) - (call $_abort) - ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $1) - (i32.const 12) - ) - ) - ) - (get_local $2) - ) - (call $_abort) + (set_local $0 + (get_local $7) ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $20) - (i32.const 8) - ) - ) - ) - (get_local $2) - ) - (block - (i32.store - (get_local $7) - (get_local $20) - ) - (i32.store - (get_local $8) - (get_local $1) - ) - (set_local $25 - (get_local $20) - ) - ) - (call $_abort) + (set_local $8 + (get_local $1) ) + (br $while-in50) ) ) - ) - (br_if $label$break$L331 - (i32.eqz - (get_local $23) - ) - ) - (block $do-once51 (if - (i32.ne - (get_local $2) + (tee_local $7 (i32.load (tee_local $1 (i32.add - (i32.shl - (tee_local $20 - (i32.load offset=28 - (get_local $2) - ) - ) - (i32.const 2) - ) - (i32.const 480) + (get_local $0) + (i32.const 16) ) ) ) ) (block - (if - (i32.lt_u - (get_local $23) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $23) - (i32.const 16) - ) - ) - ) - (get_local $2) - ) - (i32.store - (get_local $8) - (get_local $25) - ) - (i32.store offset=20 - (get_local $23) - (get_local $25) - ) - ) - (br_if $label$break$L331 - (i32.eqz - (get_local $25) - ) + (set_local $0 + (get_local $7) ) - ) - (block - (i32.store + (set_local $8 (get_local $1) - (get_local $25) - ) - (br_if $do-once51 - (get_local $25) ) - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $20) - ) - (i32.const -1) - ) - ) - ) - (br $label$break$L331) + (br $while-in50) ) ) ) (if (i32.lt_u - (get_local $25) - (tee_local $20 - (i32.load - (i32.const 192) + (get_local $8) + (get_local $3) + ) + (call $_abort) + (block + (i32.store + (get_local $8) + (i32.const 0) + ) + (set_local $25 + (get_local $0) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $1 + (i32.load offset=8 + (get_local $2) ) ) + (get_local $3) ) (call $_abort) ) - (i32.store offset=24 - (get_local $25) - (get_local $23) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add + (get_local $1) + (i32.const 12) + ) + ) + ) + (get_local $2) + ) + (call $_abort) ) (if - (tee_local $8 + (i32.eq (i32.load - (tee_local $1 + (tee_local $8 (i32.add - (get_local $2) - (i32.const 16) + (get_local $20) + (i32.const 8) ) ) ) + (get_local $2) ) - (if - (i32.lt_u - (get_local $8) + (block + (i32.store + (get_local $7) (get_local $20) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $25) - (get_local $8) - ) - (i32.store offset=24 - (get_local $8) - (get_local $25) - ) + (i32.store + (get_local $8) + (get_local $1) + ) + (set_local $25 + (get_local $20) ) ) + (call $_abort) ) - (br_if $label$break$L331 - (i32.eqz - (tee_local $8 - (i32.load offset=4 - (get_local $1) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $23) + ) + ) + (if + (i32.ne + (get_local $2) + (i32.load + (tee_local $1 + (i32.add + (i32.shl + (tee_local $20 + (i32.load offset=28 + (get_local $2) + ) + ) + (i32.const 2) ) + (i32.const 480) ) ) ) + ) + (block (if (i32.lt_u - (get_local $8) + (get_local $23) (i32.load (i32.const 192) ) ) (call $_abort) - (block - (i32.store offset=20 - (get_local $25) - (get_local $8) - ) - (i32.store offset=24 - (get_local $8) - (get_local $25) - ) - ) ) - ) - (block - (set_local $20 - (i32.load offset=12 - (get_local $2) - ) - ) - (block $do-once55 - (if - (i32.ne + (if + (i32.eq + (i32.load (tee_local $8 - (i32.load offset=8 - (get_local $2) - ) - ) - (tee_local $23 (i32.add - (i32.shl - (get_local $6) - (i32.const 3) - ) - (i32.const 216) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $8) - (get_local $3) - ) - (call $_abort) - ) - (br_if $do-once55 - (i32.eq - (i32.load offset=12 - (get_local $8) - ) - (get_local $2) + (get_local $23) + (i32.const 16) ) ) - (call $_abort) ) + (get_local $2) ) - ) - (if - (i32.eq - (get_local $20) + (i32.store (get_local $8) + (get_local $25) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $6) - ) - (i32.const -1) - ) - ) - ) - (br $label$break$L331) + (i32.store offset=20 + (get_local $23) + (get_local $25) ) ) - (block $do-once57 - (if - (i32.eq - (get_local $20) - (get_local $23) + (br_if $label$break$L331 + (i32.eqz + (get_local $25) + ) + ) + ) + (block $do-once51 + (i32.store + (get_local $1) + (get_local $25) + ) + (br_if $do-once51 + (get_local $25) + ) + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) ) - (set_local $41 - (i32.add + (i32.xor + (i32.shl + (i32.const 1) (get_local $20) - (i32.const 8) ) + (i32.const -1) ) - (block - (if - (i32.lt_u - (get_local $20) - (get_local $3) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $20) - (i32.const 8) - ) - ) - ) - (get_local $2) - ) - (block - (set_local $41 - (get_local $1) - ) - (br $do-once57) - ) - ) - (call $_abort) + ) + ) + (br $label$break$L331) + ) + ) + (if + (i32.lt_u + (get_local $25) + (tee_local $20 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $25) + (get_local $23) + ) + (if + (tee_local $8 + (i32.load + (tee_local $1 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (i32.store offset=12 + ) + (if + (i32.lt_u (get_local $8) (get_local $20) ) - (i32.store - (get_local $41) - (get_local $8) + (call $_abort) + (block + (i32.store offset=16 + (get_local $25) + (get_local $8) + ) + (i32.store offset=24 + (get_local $8) + (get_local $25) + ) ) ) ) - ) - (set_local $2 - (i32.add - (get_local $2) - (get_local $5) + (br_if $label$break$L331 + (i32.eqz + (tee_local $8 + (i32.load offset=4 + (get_local $1) + ) + ) + ) ) - ) - (set_local $14 - (i32.add - (get_local $5) - (get_local $14) + (if + (i32.lt_u + (get_local $8) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $25) + (get_local $8) + ) + (i32.store offset=24 + (get_local $8) + (get_local $25) + ) + ) ) ) - ) - ) - (i32.store - (tee_local $6 - (i32.add - (get_local $2) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $6) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $14) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $4) - (get_local $14) - ) - (get_local $14) - ) - (set_local $6 - (i32.shr_u - (get_local $14) - (i32.const 3) - ) - ) - (if - (i32.lt_u - (get_local $14) - (i32.const 256) - ) - (block - (set_local $0 - (i32.add - (i32.shl - (get_local $6) - (i32.const 3) + (block + (set_local $20 + (i32.load offset=12 + (get_local $2) ) - (i32.const 216) ) - ) - (block $do-once59 (if - (i32.and - (tee_local $23 - (i32.load - (i32.const 176) + (i32.ne + (tee_local $8 + (i32.load offset=8 + (get_local $2) ) ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $6) + (tee_local $23 + (i32.add + (i32.shl + (get_local $6) + (i32.const 3) + ) + (i32.const 216) ) ) ) - (block + (block $do-once55 (if - (i32.ge_u - (tee_local $7 - (i32.load - (tee_local $6 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 192) - ) + (i32.lt_u + (get_local $8) + (get_local $3) ) - (block - (set_local $42 - (get_local $6) - ) - (set_local $34 - (get_local $7) + (call $_abort) + ) + (br_if $do-once55 + (i32.eq + (i32.load offset=12 + (get_local $8) ) - (br $do-once59) + (get_local $2) ) ) (call $_abort) ) + ) + (if + (i32.eq + (get_local $20) + (get_local $8) + ) (block (i32.store (i32.const 176) - (i32.or - (get_local $23) - (get_local $1) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $6) + ) + (i32.const -1) + ) ) ) - (set_local $42 - (i32.add - (get_local $0) - (i32.const 8) + (br $label$break$L331) + ) + ) + (if + (i32.eq + (get_local $20) + (get_local $23) + ) + (set_local $41 + (i32.add + (get_local $20) + (i32.const 8) + ) + ) + (block $do-once57 + (if + (i32.lt_u + (get_local $20) + (get_local $3) ) + (call $_abort) ) - (set_local $34 - (get_local $0) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add + (get_local $20) + (i32.const 8) + ) + ) + ) + (get_local $2) + ) + (block + (set_local $41 + (get_local $1) + ) + (br $do-once57) + ) ) + (call $_abort) ) ) + (i32.store offset=12 + (get_local $8) + (get_local $20) + ) + (i32.store + (get_local $41) + (get_local $8) + ) ) - (i32.store - (get_local $42) - (get_local $4) - ) - (i32.store offset=12 - (get_local $34) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $34) - ) - (i32.store offset=12 - (get_local $4) - (get_local $0) - ) - (br $do-once44) ) ) - (set_local $1 + (set_local $2 + (i32.add + (get_local $2) + (get_local $5) + ) + ) + (set_local $14 + (i32.add + (get_local $5) + (get_local $14) + ) + ) + ) + ) + (i32.store + (tee_local $6 + (i32.add + (get_local $2) + (i32.const 4) + ) + ) + (i32.and + (i32.load + (get_local $6) + ) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $14) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $4) + (get_local $14) + ) + (get_local $14) + ) + (set_local $6 + (i32.shr_u + (get_local $14) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $14) + (i32.const 256) + ) + (block + (set_local $0 (i32.add (i32.shl - (tee_local $7 - (block $do-once61 (result i32) - (if (result i32) - (tee_local $1 - (i32.shr_u - (get_local $14) + (get_local $6) + (i32.const 3) + ) + (i32.const 216) + ) + ) + (if + (i32.and + (tee_local $23 + (i32.load + (i32.const 176) + ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $6) + ) + ) + ) + (block $do-once59 + (if + (i32.ge_u + (tee_local $7 + (i32.load + (tee_local $6 + (i32.add + (get_local $0) (i32.const 8) ) ) - (block (result i32) - (drop - (br_if $do-once61 - (i32.const 31) - (i32.gt_u - (get_local $14) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $14) - (i32.add - (tee_local $16 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $1) - (tee_local $23 - (i32.and - (i32.shr_u - (i32.add - (get_local $1) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + ) + ) + (i32.load + (i32.const 192) + ) + ) + (block + (set_local $42 + (get_local $6) + ) + (set_local $34 + (get_local $7) + ) + (br $do-once59) + ) + ) + (call $_abort) + ) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $23) + (get_local $1) + ) + ) + (set_local $42 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + (set_local $34 + (get_local $0) + ) + ) + ) + (i32.store + (get_local $42) + (get_local $4) + ) + (i32.store offset=12 + (get_local $34) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $34) + ) + (i32.store offset=12 + (get_local $4) + (get_local $0) + ) + (br $do-once44) + ) + ) + (set_local $1 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $1 + (i32.shr_u + (get_local $14) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $14) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $14) + (i32.add + (tee_local $16 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $7 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $1) + (tee_local $23 + (i32.and + (i32.shr_u + (i32.add + (get_local $1) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $23) + (i32.const 16) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $6 - (i32.shl - (get_local $5) - (get_local $7) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $23) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $6 + (i32.shl + (get_local $5) + (get_local $7) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $6) - (get_local $5) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $6) + (get_local $5) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $16) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $16) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $4) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $4) - (get_local $7) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $0 - (i32.add - (get_local $4) - (i32.const 16) + (i32.load + (i32.const 180) ) ) - (i32.const 0) - ) - (i32.store - (get_local $0) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $0 - (i32.load - (i32.const 180) - ) - ) - (tee_local $16 - (i32.shl - (i32.const 1) - (get_local $7) - ) - ) + (tee_local $16 + (i32.shl + (i32.const 1) + (get_local $7) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $0) - (get_local $16) - ) - ) - (i32.store - (get_local $1) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $1) - ) - (i32.store offset=12 - (get_local $4) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - (br $do-once44) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $0) + (get_local $16) ) ) - (set_local $16 - (i32.shl - (get_local $14) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) + (i32.store + (get_local $1) + (get_local $4) + ) + (i32.store offset=24 + (get_local $4) + (get_local $1) + ) + (i32.store offset=12 + (get_local $4) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $4) + ) + (br $do-once44) + ) + ) + (set_local $16 + (i32.shl + (get_local $14) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) ) ) - ) - (set_local $0 - (i32.load - (get_local $1) + (i32.eq + (get_local $7) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $10 - (loop $while-in64 (result i32) - (block $while-out63 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $14) - ) - (block - (set_local $35 - (get_local $0) - ) - (br $while-out63 - (i32.const 281) - ) + ) + ) + (set_local $0 + (i32.load + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in64 (result i32) + (block $while-out63 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $1 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $16) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $14) + ) + (block + (set_local $35 + (get_local $0) + ) + (br $while-out63 + (i32.const 281) + ) + ) + ) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $1 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) ) - ) - ) - (block - (set_local $16 (i32.shl - (get_local $16) - (i32.const 1) + (i32.shr_u + (get_local $16) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $0 - (get_local $5) - ) - (br $while-in64) ) - (block (result i32) - (set_local $43 - (get_local $1) - ) - (set_local $51 - (get_local $0) - ) - (i32.const 278) + ) + ) + (block + (set_local $16 + (i32.shl + (get_local $16) + (i32.const 1) ) ) + (set_local $0 + (get_local $5) + ) + (br $while-in64) + ) + (block (result i32) + (set_local $43 + (get_local $1) + ) + (set_local $51 + (get_local $0) + ) + (i32.const 278) ) ) ) - (i32.const 278) ) - (if - (i32.lt_u - (get_local $43) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $43) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $51) - ) - (i32.store offset=12 - (get_local $4) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - ) + ) + (i32.const 278) + ) + (if + (i32.lt_u + (get_local $43) + (i32.load + (i32.const 192) ) - (if - (i32.eq - (get_local $10) - (i32.const 281) - ) - (if - (i32.and - (i32.ge_u - (tee_local $16 - (i32.load - (tee_local $0 - (i32.add - (get_local $35) - (i32.const 8) - ) - ) - ) - ) - (tee_local $5 - (i32.load - (i32.const 192) + ) + (call $_abort) + (block + (i32.store + (get_local $43) + (get_local $4) + ) + (i32.store offset=24 + (get_local $4) + (get_local $51) + ) + (i32.store offset=12 + (get_local $4) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $4) + ) + ) + ) + (if + (i32.eq + (get_local $10) + (i32.const 281) + ) + (if + (i32.and + (i32.ge_u + (tee_local $16 + (i32.load + (tee_local $0 + (i32.add + (get_local $35) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $35) - (get_local $5) - ) ) - (block - (i32.store offset=12 - (get_local $16) - (get_local $4) - ) - (i32.store - (get_local $0) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $16) - ) - (i32.store offset=12 - (get_local $4) - (get_local $35) - ) - (i32.store offset=24 - (get_local $4) - (i32.const 0) + (tee_local $5 + (i32.load + (i32.const 192) ) ) - (call $_abort) + ) + (i32.ge_u + (get_local $35) + (get_local $5) ) ) - ) - ) - (block - (i32.store - (i32.const 188) - (tee_local $16 - (i32.add - (i32.load - (i32.const 188) - ) - (get_local $14) + (block + (i32.store offset=12 + (get_local $16) + (get_local $4) + ) + (i32.store + (get_local $0) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $16) + ) + (i32.store offset=12 + (get_local $4) + (get_local $35) + ) + (i32.store offset=24 + (get_local $4) + (i32.const 0) ) ) + (call $_abort) ) - (i32.store - (i32.const 200) - (get_local $4) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $16) - (i32.const 1) + ) + ) + ) + (block + (i32.store + (i32.const 188) + (tee_local $16 + (i32.add + (i32.load + (i32.const 188) ) + (get_local $14) ) ) ) - ) - (return - (i32.add - (get_local $12) - (i32.const 8) + (i32.store + (i32.const 200) + (get_local $4) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $16) + (i32.const 1) + ) ) ) ) + (return + (i32.add + (get_local $12) + (i32.const 8) + ) + ) ) ) ) - (set_local $14 - (i32.add - (tee_local $12 - (i32.add - (tee_local $0 - (loop $while-in66 (result i32) + ) + (set_local $14 + (i32.add + (tee_local $12 + (i32.add + (tee_local $0 + (loop $while-in66 (result i32) + (if (result i32) (if (result i32) - (if (result i32) - (i32.le_u - (tee_local $4 - (i32.load - (get_local $29) - ) + (i32.le_u + (tee_local $4 + (i32.load + (get_local $29) ) - (get_local $13) ) - (i32.gt_u - (tee_local $14 - (i32.add - (get_local $4) - (i32.load offset=4 - (get_local $29) - ) + (get_local $13) + ) + (i32.gt_u + (tee_local $14 + (i32.add + (get_local $4) + (i32.load offset=4 + (get_local $29) ) ) - (get_local $13) ) - (i32.const 0) + (get_local $13) ) - (get_local $14) - (block - (set_local $29 - (i32.load offset=8 - (get_local $29) - ) + (i32.const 0) + ) + (get_local $14) + (block + (set_local $29 + (i32.load offset=8 + (get_local $29) ) - (br $while-in66) ) + (br $while-in66) ) ) ) - (i32.const -47) ) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $4 - (i32.add - (tee_local $12 - (select - (get_local $13) - (tee_local $4 - (i32.add - (get_local $12) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $14) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $4 + (i32.add + (tee_local $12 + (select + (get_local $13) + (tee_local $4 + (i32.add + (get_local $12) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $14) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $14) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $4) - (tee_local $14 - (i32.add - (get_local $13) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $4) + (tee_local $14 + (i32.add + (get_local $13) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 200) - (tee_local $2 - (i32.add - (get_local $19) - (tee_local $18 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $2 - (i32.add - (get_local $19) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $2 + (i32.add + (get_local $19) + (tee_local $18 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $2 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $2) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $2) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $16 - (i32.sub - (i32.add - (get_local $21) - (i32.const -40) - ) - (get_local $18) - ) - ) - ) - (i32.store offset=4 - (get_local $2) - (i32.or - (get_local $16) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $16) - ) - (i32.const 40) - ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) - ) - (i32.store - (tee_local $16 + ) + (i32.store + (i32.const 188) + (tee_local $16 + (i32.sub (i32.add - (get_local $12) - (i32.const 4) + (get_local $21) + (i32.const -40) ) + (get_local $18) ) - (i32.const 27) ) - (i32.store - (get_local $4) - (i32.load - (i32.const 624) - ) + ) + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $16) + (i32.const 1) ) - (i32.store offset=4 - (get_local $4) - (i32.load - (i32.const 628) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $2) + (get_local $16) ) - (i32.store offset=8 - (get_local $4) - (i32.load - (i32.const 632) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (i32.store offset=12 - (get_local $4) - (i32.load - (i32.const 636) + ) + (i32.store + (tee_local $16 + (i32.add + (get_local $12) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $4) + (i32.load (i32.const 624) - (get_local $19) ) - (i32.store + ) + (i32.store offset=4 + (get_local $4) + (i32.load (i32.const 628) - (get_local $21) ) - (i32.store + ) + (i32.store offset=8 + (get_local $4) + (i32.load + (i32.const 632) + ) + ) + (i32.store offset=12 + (get_local $4) + (i32.load (i32.const 636) - (i32.const 0) ) + ) + (i32.store + (i32.const 624) + (get_local $19) + ) + (i32.store + (i32.const 628) + (get_local $21) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 632) + (get_local $4) + ) + (set_local $4 + (i32.add + (get_local $12) + (i32.const 24) + ) + ) + (loop $do-in68 (i32.store - (i32.const 632) - (get_local $4) + (tee_local $4 + (i32.add + (get_local $4) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $4 - (i32.add - (get_local $12) - (i32.const 24) + (br_if $do-in68 + (i32.lt_u + (i32.add + (get_local $4) + (i32.const 4) + ) + (get_local $0) ) ) - (loop $do-in68 + ) + (if + (i32.ne + (get_local $12) + (get_local $13) + ) + (block (i32.store - (tee_local $4 - (i32.add - (get_local $4) - (i32.const 4) + (get_local $16) + (i32.and + (i32.load + (get_local $16) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $do-in68 - (i32.lt_u - (i32.add - (get_local $4) - (i32.const 4) + (i32.store offset=4 + (get_local $13) + (i32.or + (tee_local $4 + (i32.sub + (get_local $12) + (get_local $13) + ) ) - (get_local $0) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $12) - (get_local $13) + (get_local $4) ) - (block - (i32.store - (get_local $16) - (i32.and - (i32.load - (get_local $16) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $13) - (i32.or - (tee_local $4 - (i32.sub - (get_local $12) - (get_local $13) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $12) + (set_local $2 + (i32.shr_u (get_local $4) + (i32.const 3) ) - (set_local $2 - (i32.shr_u - (get_local $4) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $4) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $4) - (i32.const 256) + (block + (set_local $18 + (i32.add + (i32.shl + (get_local $2) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $18 - (i32.add + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 176) + ) + ) + (tee_local $5 (i32.shl + (i32.const 1) (get_local $2) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $0 + (i32.lt_u + (tee_local $1 (i32.load - (i32.const 176) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $2) - ) - ) - ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $18) - (i32.const 8) - ) + (tee_local $2 + (i32.add + (get_local $18) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $44 - (get_local $2) - ) - (set_local $36 - (get_local $1) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $0) - (get_local $5) - ) - ) (set_local $44 - (i32.add - (get_local $18) - (i32.const 8) - ) + (get_local $2) ) (set_local $36 - (get_local $18) + (get_local $1) ) ) ) - (i32.store - (get_local $44) - (get_local $13) - ) - (i32.store offset=12 - (get_local $36) - (get_local $13) - ) - (i32.store offset=8 - (get_local $13) - (get_local $36) - ) - (i32.store offset=12 - (get_local $13) - (get_local $18) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $0) + (get_local $5) + ) + ) + (set_local $44 + (i32.add + (get_local $18) + (i32.const 8) + ) + ) + (set_local $36 + (get_local $18) + ) ) - (br $do-once40) ) + (i32.store + (get_local $44) + (get_local $13) + ) + (i32.store offset=12 + (get_local $36) + (get_local $13) + ) + (i32.store offset=8 + (get_local $13) + (get_local $36) + ) + (i32.store offset=12 + (get_local $13) + (get_local $18) + ) + (br $do-once40) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $7 + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $18 + (i32.shr_u + (get_local $4) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $18 - (i32.shr_u - (get_local $4) - (i32.const 8) - ) + (i32.gt_u + (get_local $4) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $4) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $4) - (i32.add - (tee_local $2 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $4) + (i32.add + (tee_local $2 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $18 - (i32.and - (i32.shr_u - (i32.add - (tee_local $0 - (i32.shl - (get_local $18) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (get_local $18) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $18 + (i32.and + (i32.shr_u + (i32.add + (tee_local $0 + (i32.shl + (get_local $18) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (get_local $18) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $5) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (get_local $18) - ) + (get_local $5) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (get_local $18) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $2) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $2) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $13) - (get_local $7) + ) + (i32.store offset=28 + (get_local $13) + (get_local $7) + ) + (i32.store offset=20 + (get_local $13) + (i32.const 0) + ) + (i32.store + (get_local $14) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $0 + (i32.load + (i32.const 180) + ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $7) + ) + ) + ) ) - (i32.store offset=20 - (get_local $13) - (i32.const 0) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $2) + (get_local $13) + ) + (i32.store offset=24 + (get_local $13) + (get_local $2) + ) + (i32.store offset=12 + (get_local $13) + (get_local $13) + ) + (i32.store offset=8 + (get_local $13) + (get_local $13) + ) + (br $do-once40) ) - (i32.store - (get_local $14) - (i32.const 0) + ) + (set_local $1 + (i32.shl + (get_local $4) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) + ) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $0 - (i32.load - (i32.const 180) + ) + (set_local $0 + (i32.load + (get_local $2) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in70 (result i32) + (block $while-out69 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) + ) + (i32.const -8) + ) + (get_local $4) + ) + (block + (set_local $37 + (get_local $0) + ) + (br $while-out69 + (i32.const 307) + ) + ) ) - ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $7) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $1) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $1 + (i32.shl + (get_local $1) + (i32.const 1) + ) + ) + (set_local $0 + (get_local $5) + ) + (br $while-in70) + ) + (block (result i32) + (set_local $45 + (get_local $2) + ) + (set_local $52 + (get_local $0) + ) + (i32.const 304) + ) ) ) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $0) - (get_local $1) - ) + (i32.const 304) + ) + (if + (i32.lt_u + (get_local $45) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $2) + (get_local $45) (get_local $13) ) (i32.store offset=24 (get_local $13) - (get_local $2) + (get_local $52) ) (i32.store offset=12 (get_local $13) @@ -5447,323 +5533,199 @@ (get_local $13) (get_local $13) ) - (br $do-once40) - ) - ) - (set_local $1 - (i32.shl - (get_local $4) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) - ) - ) - ) - (set_local $0 - (i32.load - (get_local $2) ) ) (if (i32.eq - (tee_local $10 - (loop $while-in70 (result i32) - (block $while-out69 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $4) - ) - (block - (set_local $37 - (get_local $0) - ) - (br $while-out69 - (i32.const 307) + (get_local $10) + (i32.const 307) + ) + (if + (i32.and + (i32.ge_u + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $37) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $1) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $1 - (i32.shl - (get_local $1) - (i32.const 1) - ) - ) - (set_local $0 - (get_local $5) - ) - (br $while-in70) - ) - (block (result i32) - (set_local $45 - (get_local $2) - ) - (set_local $52 - (get_local $0) - ) - (i32.const 304) - ) + ) + (tee_local $4 + (i32.load + (i32.const 192) ) ) ) - ) - (i32.const 304) - ) - (if - (i32.lt_u - (get_local $45) - (i32.load - (i32.const 192) + (i32.ge_u + (get_local $37) + (get_local $4) ) ) - (call $_abort) (block + (i32.store offset=12 + (get_local $1) + (get_local $13) + ) (i32.store - (get_local $45) + (get_local $0) (get_local $13) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $13) - (get_local $52) + (get_local $1) ) (i32.store offset=12 (get_local $13) - (get_local $13) + (get_local $37) ) - (i32.store offset=8 - (get_local $13) + (i32.store offset=24 (get_local $13) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 307) - ) - (if - (i32.and - (i32.ge_u - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $37) - (i32.const 8) - ) - ) - ) - ) - (tee_local $4 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $37) - (get_local $4) - ) - ) - (block - (i32.store offset=12 - (get_local $1) - (get_local $13) - ) - (i32.store - (get_local $0) - (get_local $13) - ) - (i32.store offset=8 - (get_local $13) - (get_local $1) - ) - (i32.store offset=12 - (get_local $13) - (get_local $37) - ) - (i32.store offset=24 - (get_local $13) - (i32.const 0) - ) - ) - (call $_abort) - ) + (call $_abort) ) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $1 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $1 + (i32.load + (i32.const 192) ) ) - (i32.lt_u - (get_local $19) - (get_local $1) - ) ) - (i32.store - (i32.const 192) + (i32.lt_u (get_local $19) + (get_local $1) ) ) (i32.store - (i32.const 624) + (i32.const 192) (get_local $19) ) - (i32.store - (i32.const 628) - (get_local $21) - ) - (i32.store - (i32.const 636) - (i32.const 0) + ) + (i32.store + (i32.const 624) + (get_local $19) + ) + (i32.store + (i32.const 628) + (get_local $21) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 212) + (i32.load + (i32.const 648) ) - (i32.store - (i32.const 212) - (i32.load - (i32.const 648) + ) + (i32.store + (i32.const 208) + (i32.const -1) + ) + (set_local $1 + (i32.const 0) + ) + (loop $do-in72 + (i32.store offset=12 + (tee_local $0 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) + ) + (i32.const 216) + ) ) + (get_local $0) ) - (i32.store - (i32.const 208) - (i32.const -1) - ) - (set_local $1 - (i32.const 0) + (i32.store offset=8 + (get_local $0) + (get_local $0) ) - (loop $do-in72 - (i32.store offset=12 - (tee_local $0 + (br_if $do-in72 + (i32.ne + (tee_local $1 (i32.add - (i32.shl - (get_local $1) - (i32.const 3) - ) - (i32.const 216) - ) - ) - (get_local $0) - ) - (i32.store offset=8 - (get_local $0) - (get_local $0) - ) - (br_if $do-in72 - (i32.ne - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 1) - ) + (get_local $1) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 200) - (tee_local $1 - (i32.add - (get_local $19) - (tee_local $0 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $19) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $1 + (i32.add + (get_local $19) + (tee_local $0 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $4 - (i32.sub - (i32.add - (get_local $21) - (i32.const -40) - ) - (get_local $0) + ) + (i32.store + (i32.const 188) + (tee_local $4 + (i32.sub + (i32.add + (get_local $21) + (i32.const -40) ) + (get_local $0) ) ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $4) - (i32.const 1) - ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $4) + (i32.const 1) ) - (i32.store offset=4 - (i32.add - (get_local $1) - (get_local $4) - ) - (i32.const 40) + ) + (i32.store offset=4 + (i32.add + (get_local $1) + (get_local $4) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) ) ) @@ -5902,279 +5864,329 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $4) - (i32.const 1) + (if + (i32.and + (get_local $4) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 + (set_local $3 + (get_local $5) + ) + ) + (block $do-once + (set_local $11 + (i32.load (get_local $1) ) - (set_local $3 - (get_local $5) - ) ) - (block - (set_local $11 - (i32.load - (get_local $1) - ) - ) - (if - (i32.eqz - (get_local $0) - ) - (return) + (if + (i32.eqz + (get_local $0) ) - (set_local $5 - (i32.add - (get_local $11) - (get_local $5) - ) + (return) + ) + (set_local $5 + (i32.add + (get_local $11) + (get_local $5) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub - (get_local $1) - (get_local $11) - ) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (get_local $11) ) - (get_local $14) ) - (call $_abort) + (get_local $14) ) - (if - (i32.eq - (get_local $1) - (i32.load - (i32.const 196) - ) + (call $_abort) + ) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 196) ) - (block - (if - (i32.ne - (i32.and - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 4) - ) + ) + (block + (if + (i32.ne + (i32.and + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 4) ) ) ) - (i32.const 3) ) (i32.const 3) ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) - ) - ) - (i32.store - (i32.const 184) - (get_local $5) + (i32.const 3) ) - (i32.store - (get_local $0) - (i32.and - (get_local $7) - (i32.const -2) + (block + (set_local $2 + (get_local $1) ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or + (set_local $3 (get_local $5) - (i32.const 1) ) + (br $do-once) ) - (i32.store - (i32.add - (get_local $1) - (get_local $5) - ) + ) + (i32.store + (i32.const 184) + (get_local $5) + ) + (i32.store + (get_local $0) + (i32.and + (get_local $7) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $5) + (i32.const 1) ) - (return) ) - ) - (set_local $7 - (i32.shr_u - (get_local $11) - (i32.const 3) + (i32.store + (i32.add + (get_local $1) + (get_local $5) + ) + (get_local $5) ) + (return) ) - (if - (i32.lt_u - (get_local $11) - (i32.const 256) + ) + (set_local $7 + (i32.shr_u + (get_local $11) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $11) + (i32.const 256) + ) + (block + (set_local $0 + (i32.load offset=12 + (get_local $1) + ) ) - (block - (set_local $0 - (i32.load offset=12 - (get_local $1) + (if + (i32.ne + (tee_local $11 + (i32.load offset=8 + (get_local $1) + ) ) - ) - (if - (i32.ne - (tee_local $11 - (i32.load offset=8 - (get_local $1) + (tee_local $4 + (i32.add + (i32.shl + (get_local $7) + (i32.const 3) ) + (i32.const 216) ) - (tee_local $4 - (i32.add - (i32.shl - (get_local $7) - (i32.const 3) - ) - (i32.const 216) - ) + ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (get_local $14) ) + (call $_abort) ) - (block - (if - (i32.lt_u + (if + (i32.ne + (i32.load offset=12 (get_local $11) - (get_local $14) ) - (call $_abort) + (get_local $1) ) - (if - (i32.ne - (i32.load offset=12 - (get_local $11) + (call $_abort) + ) + ) + ) + (if + (i32.eq + (get_local $0) + (get_local $11) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $7) ) - (get_local $1) + (i32.const -1) ) - (call $_abort) ) ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + (br $do-once) ) - (if - (i32.eq - (get_local $0) - (get_local $11) + ) + (if + (i32.ne + (get_local $0) + (get_local $4) + ) + (block + (if + (i32.lt_u + (get_local $0) + (get_local $14) + ) + (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $7) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) - (i32.const -1) ) ) - ) - (set_local $2 (get_local $1) ) - (set_local $3 - (get_local $5) + (set_local $10 + (get_local $4) ) - (br $do-once) + (call $_abort) ) ) - (if - (i32.ne + (set_local $10 + (i32.add (get_local $0) - (get_local $4) + (i32.const 8) ) - (block - (if - (i32.lt_u - (get_local $0) - (get_local $14) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) + ) + ) + (i32.store offset=12 + (get_local $11) + (get_local $0) + ) + (i32.store + (get_local $10) + (get_local $11) + ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + (br $do-once) + ) + ) + (set_local $11 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) + ) + (block $do-once0 + (if + (tee_local $10 + (i32.load + (tee_local $7 + (i32.add + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $1) - ) - (set_local $10 - (get_local $4) + (i32.const 4) ) - (call $_abort) - ) - ) - (set_local $10 - (i32.add - (get_local $0) - (i32.const 8) ) ) ) - (i32.store offset=12 - (get_local $11) - (get_local $0) - ) - (i32.store - (get_local $10) - (get_local $11) - ) - (set_local $2 - (get_local $1) + (block + (set_local $0 + (get_local $10) + ) + (set_local $4 + (get_local $7) + ) ) - (set_local $3 - (get_local $5) + (br_if $do-once0 + (i32.eqz + (tee_local $0 + (i32.load + (get_local $4) + ) + ) + ) ) - (br $do-once) - ) - ) - (set_local $11 - (i32.load offset=24 - (get_local $1) ) - ) - (block $do-once0 - (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $1) + (loop $while-in + (if + (tee_local $10 + (i32.load + (tee_local $7 + (i32.add + (get_local $0) + (i32.const 20) + ) + ) ) ) - (get_local $1) + (block + (set_local $0 + (get_local $10) + ) + (set_local $4 + (get_local $7) + ) + (br $while-in) + ) ) - (block - (if + (set_local $7 + (if (result i32) (tee_local $10 (i32.load (tee_local $7 (i32.add - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) + (get_local $0) + (i32.const 16) ) ) ) @@ -6186,322 +6198,260 @@ (set_local $4 (get_local $7) ) + (br $while-in) ) - (br_if $do-once0 - (i32.eqz - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + (block (result i32) + (set_local $9 + (get_local $4) ) + (get_local $0) ) ) - (loop $while-in - (if - (tee_local $10 - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $9) + (get_local $14) + ) + (call $_abort) + (block + (i32.store + (get_local $9) + (i32.const 0) + ) + (set_local $6 + (get_local $7) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $7 + (i32.load offset=8 + (get_local $1) + ) + ) + (get_local $14) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $10 + (i32.add + (get_local $7) + (i32.const 12) ) - (block - (set_local $0 - (get_local $10) - ) - (set_local $4 - (get_local $7) - ) - (br $while-in) + ) + ) + (get_local $1) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (set_local $7 - (if (result i32) - (tee_local $10 - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 16) - ) + ) + (get_local $1) + ) + (block + (i32.store + (get_local $10) + (get_local $0) + ) + (i32.store + (get_local $4) + (get_local $7) + ) + (set_local $6 + (get_local $0) + ) + ) + (call $_abort) + ) + ) + ) + (if + (get_local $11) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $7 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - (block - (set_local $0 - (get_local $10) - ) - (set_local $4 - (get_local $7) - ) - (br $while-in) - ) - (block (result i32) - (set_local $9 - (get_local $4) - ) - (get_local $0) - ) + (i32.const 480) ) ) ) + ) + (block + (i32.store + (get_local $7) + (get_local $6) + ) (if - (i32.lt_u - (get_local $9) - (get_local $14) + (i32.eqz + (get_local $6) ) - (call $_abort) (block (i32.store - (get_local $9) - (i32.const 0) + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) + ) + (i32.const -1) + ) + ) ) - (set_local $6 - (get_local $7) + (set_local $2 + (get_local $1) ) + (set_local $3 + (get_local $5) + ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $7 - (i32.load offset=8 - (get_local $1) - ) + (get_local $11) + (i32.load + (i32.const 192) ) - (get_local $14) ) (call $_abort) ) (if - (i32.ne + (i32.eq (i32.load - (tee_local $10 + (tee_local $0 (i32.add - (get_local $7) - (i32.const 12) + (get_local $11) + (i32.const 16) ) ) ) (get_local $1) ) - (call $_abort) + (i32.store + (get_local $0) + (get_local $6) + ) + (i32.store offset=20 + (get_local $11) + (get_local $6) + ) ) (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $1) + (i32.eqz + (get_local $6) ) (block - (i32.store - (get_local $10) - (get_local $0) - ) - (i32.store - (get_local $4) - (get_local $7) + (set_local $2 + (get_local $1) ) - (set_local $6 - (get_local $0) + (set_local $3 + (get_local $5) ) + (br $do-once) ) - (call $_abort) ) ) ) - ) - (if - (get_local $11) - (block - (if - (i32.eq - (get_local $1) + (if + (i32.lt_u + (get_local $6) + (tee_local $0 (i32.load - (tee_local $7 - (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 480) - ) - ) + (i32.const 192) ) ) - (block - (i32.store - (get_local $7) - (get_local $6) - ) - (if - (i32.eqz - (get_local $6) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $11) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 16) - ) - ) - ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $6) + (get_local $11) + ) + (if + (tee_local $4 + (i32.load + (tee_local $7 + (i32.add (get_local $1) - ) - (i32.store - (get_local $0) - (get_local $6) - ) - (i32.store offset=20 - (get_local $11) - (get_local $6) - ) - ) - (if - (i32.eqz - (get_local $6) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) + (i32.const 16) ) ) ) ) (if (i32.lt_u - (get_local $6) - (tee_local $0 - (i32.load - (i32.const 192) - ) - ) + (get_local $4) + (get_local $0) ) (call $_abort) - ) - (i32.store offset=24 - (get_local $6) - (get_local $11) - ) - (if - (tee_local $4 - (i32.load - (tee_local $7 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (if - (i32.lt_u + (block + (i32.store offset=16 + (get_local $6) (get_local $4) - (get_local $0) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $7) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $7) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $6) (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) - ) - (block (set_local $2 (get_local $1) ) @@ -6510,16 +6460,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + ) ) ) ) @@ -6698,169 +6656,167 @@ (get_local $8) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $9 - (i32.load offset=12 - (get_local $8) - ) + (if + (i32.eq + (tee_local $9 + (i32.load offset=12 + (get_local $8) ) - (get_local $8) ) - (block - (set_local $3 - (if (result i32) - (tee_local $10 - (i32.load - (tee_local $0 - (i32.add - (tee_local $4 - (i32.add - (get_local $8) - (i32.const 16) - ) + (get_local $8) + ) + (block $do-once6 + (set_local $3 + (if (result i32) + (tee_local $10 + (i32.load + (tee_local $0 + (i32.add + (tee_local $4 + (i32.add + (get_local $8) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $10) - ) - (if (result i32) - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + ) + (block (result i32) + (set_local $4 (get_local $0) - (br $do-once6) ) + (get_local $10) ) - ) - (loop $while-in9 - (if - (tee_local $10 + (if (result i32) + (tee_local $0 (i32.load - (tee_local $0 - (i32.add - (get_local $3) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $3 - (get_local $10) - ) - (set_local $4 - (get_local $0) + (get_local $4) ) - (br $while-in9) ) + (get_local $0) + (br $do-once6) ) - (if - (tee_local $10 - (i32.load - (tee_local $0 - (i32.add - (get_local $3) - (i32.const 16) - ) + ) + ) + (loop $while-in9 + (if + (tee_local $10 + (i32.load + (tee_local $0 + (i32.add + (get_local $3) + (i32.const 20) ) ) ) - (block - (set_local $3 - (get_local $10) - ) - (set_local $4 - (get_local $0) - ) - (br $while-in9) + ) + (block + (set_local $3 + (get_local $10) + ) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $4) + (tee_local $10 (i32.load - (i32.const 192) + (tee_local $0 + (i32.add + (get_local $3) + (i32.const 16) + ) + ) ) ) - (call $_abort) (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $3 + (get_local $10) ) - (set_local $12 - (get_local $3) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $0 - (i32.load offset=8 - (get_local $8) - ) - ) - (i32.load - (i32.const 192) + (if + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $12 + (get_local $3) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 + (get_local $8) ) ) - (call $_abort) + (i32.load + (i32.const 192) + ) ) - (if - (i32.ne - (i32.load - (tee_local $10 - (i32.add - (get_local $0) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $10 + (i32.add + (get_local $0) + (i32.const 12) ) ) - (get_local $8) ) - (call $_abort) + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $9) - (i32.const 8) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $9) + (i32.const 8) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $10) - (get_local $9) - ) - (i32.store - (get_local $4) - (get_local $0) - ) - (set_local $12 - (get_local $9) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $10) + (get_local $9) + ) + (i32.store + (get_local $4) + (get_local $0) + ) + (set_local $12 + (get_local $9) ) - (call $_abort) ) + (call $_abort) ) ) ) @@ -8068,169 +8024,165 @@ ) ) ) - (block $label$break$L5 - (if - (i32.eq - (get_local $7) - (i32.const 5) - ) - (block - (if - (i32.lt_u - (i32.sub - (get_local $6) - (tee_local $3 - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 5) + ) + (block $label$break$L5 + (if + (i32.lt_u + (i32.sub + (get_local $6) + (tee_local $3 + (i32.load + (tee_local $5 + (i32.add + (get_local $2) + (i32.const 20) ) ) ) ) - (get_local $1) ) - (block - (set_local $4 - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + (get_local $1) + ) + (block + (set_local $4 + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) ) - (br $label$break$L5) ) + (br $label$break$L5) ) - (set_local $4 - (get_local $3) + ) + (set_local $4 + (get_local $3) + ) + (if + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) + ) + (i32.const -1) ) (block $label$break$L10 - (if - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) - ) - (block - (set_local $3 - (get_local $1) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (if + (i32.eqz + (get_local $3) ) - (loop $while-in - (if - (i32.eqz - (get_local $3) - ) - (block - (set_local $3 - (i32.const 0) - ) - (br $label$break$L10) - ) - ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) - ) - ) - ) - (i32.const 10) - ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) - ) + (block + (set_local $3 + (i32.const 0) ) + (br $label$break$L10) ) - (if - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) + ) + (if + (i32.ne + (i32.load8_s + (i32.add (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) - (i32.const 2) ) ) - (get_local $3) - ) - (block - (set_local $4 - (get_local $3) - ) - (br $label$break$L5) ) + (i32.const 10) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) - (set_local $0 + ) + ) + (if + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) (i32.add - (get_local $0) - (get_local $3) + (i32.and + (i32.load offset=36 + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 2) ) ) + (get_local $3) + ) + (block (set_local $4 - (i32.load - (get_local $5) - ) + (get_local $3) ) + (br $label$break$L5) ) - (set_local $3 - (i32.const 0) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) ) - ) - (drop - (call $_memcpy - (get_local $4) - (get_local $0) - (get_local $1) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) + ) ) - ) - (i32.store - (get_local $5) - (i32.add + (set_local $4 (i32.load (get_local $5) ) - (get_local $1) ) ) - (set_local $4 - (i32.add - (get_local $3) - (get_local $1) + (set_local $3 + (i32.const 0) + ) + ) + (drop + (call $_memcpy + (get_local $4) + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $5) + (i32.add + (i32.load + (get_local $5) ) + (get_local $1) + ) + ) + (set_local $4 + (i32.add + (get_local $3) + (get_local $1) ) ) ) @@ -8240,10 +8192,10 @@ (func $_fflush (; 19 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) (local $2 i32) - (block $do-once - (if - (get_local $0) - (block + (if + (get_local $0) + (set_local $1 + (block $do-once (result i32) (if (i32.le_s (i32.load offset=76 @@ -8251,95 +8203,90 @@ ) (i32.const -1) ) - (block - (set_local $1 - (call $___fflush_unlocked - (get_local $0) - ) + (br $do-once + (call $___fflush_unlocked + (get_local $0) ) - (br $do-once) ) ) - (set_local $1 - (call $___fflush_unlocked - (get_local $0) - ) + (call $___fflush_unlocked + (get_local $0) ) ) - (block - (set_local $0 - (if (result i32) + ) + (block + (set_local $0 + (if (result i32) + (i32.load + (i32.const 56) + ) + (call $_fflush (i32.load (i32.const 56) ) - (call $_fflush - (i32.load - (i32.const 56) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $___lock - (i32.const 36) + ) + (call $___lock + (i32.const 36) + ) + (if + (tee_local $1 + (i32.load + (i32.const 32) + ) ) - (if - (tee_local $1 - (i32.load - (i32.const 32) - ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 - (get_local $1) + (set_local $1 + (get_local $0) + ) + (loop $while-in + (drop + (i32.load offset=76 + (get_local $2) + ) ) - (set_local $1 - (get_local $0) + (set_local $0 + (i32.const 0) ) - (loop $while-in - (drop - (i32.load offset=76 + (if + (i32.gt_u + (i32.load offset=20 + (get_local $2) + ) + (i32.load offset=28 (get_local $2) ) ) - (set_local $0 - (i32.const 0) - ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $2) - ) - (i32.load offset=28 + (set_local $1 + (i32.or + (call $___fflush_unlocked (get_local $2) ) - ) - (set_local $1 - (i32.or - (call $___fflush_unlocked - (get_local $2) - ) - (get_local $1) - ) + (get_local $1) ) ) - (br_if $while-in - (tee_local $2 - (i32.load offset=56 - (get_local $2) - ) + ) + (br_if $while-in + (tee_local $2 + (i32.load offset=56 + (get_local $2) ) ) ) ) - (set_local $1 - (get_local $0) - ) ) - (call $___unlock - (i32.const 36) + (set_local $1 + (get_local $0) ) ) + (call $___unlock + (i32.const 36) + ) ) ) (get_local $1) @@ -8350,60 +8297,58 @@ (local $3 i32) (local $4 i32) (local $5 i32) - (block $label$break$L1 - (if - (i32.and - (tee_local $3 - (get_local $0) - ) - (i32.const 3) + (if + (i32.and + (tee_local $3 + (get_local $0) ) - (block - (set_local $4 - (get_local $3) - ) - (loop $while-in - (if - (i32.eqz - (i32.load8_s - (get_local $0) - ) + (i32.const 3) + ) + (block $label$break$L1 + (set_local $4 + (get_local $3) + ) + (loop $while-in + (if + (i32.eqz + (i32.load8_s + (get_local $0) ) - (block - (set_local $5 - (get_local $4) - ) - (br $label$break$L1) + ) + (block + (set_local $5 + (get_local $4) ) + (br $label$break$L1) ) - (br_if $while-in - (i32.and - (tee_local $4 - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + ) + (br_if $while-in + (i32.and + (tee_local $4 + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) - (i32.const 3) ) + (i32.const 3) ) ) - (set_local $2 - (i32.const 4) - ) - (set_local $1 - (get_local $0) - ) ) - (block - (set_local $1 - (get_local $0) - ) - (set_local $2 - (i32.const 4) - ) + (set_local $2 + (i32.const 4) + ) + (set_local $1 + (get_local $0) + ) + ) + (block + (set_local $1 + (get_local $0) + ) + (set_local $2 + (i32.const 4) ) ) ) @@ -8497,7 +8442,7 @@ (local $6 i32) (local $7 i32) (local $8 i32) - (set_local $4 + (set_local $3 (get_global $STACKTOP) ) (set_global $STACKTOP @@ -8507,8 +8452,8 @@ ) ) (i32.store8 - (tee_local $5 - (get_local $4) + (tee_local $4 + (get_local $3) ) (i32.const 10) ) @@ -8524,10 +8469,10 @@ ) ) (block - (set_local $6 + (set_local $5 (get_local $2) ) - (set_local $7 + (set_local $6 (i32.const 4) ) ) @@ -8535,28 +8480,28 @@ (call $___towrite (get_local $0) ) - (set_local $3 + (set_local $7 (i32.const -1) ) (block - (set_local $6 + (set_local $5 (i32.load (get_local $1) ) ) - (set_local $7 + (set_local $6 (i32.const 4) ) ) ) ) - (block $do-once - (if - (i32.eq - (get_local $7) - (i32.const 4) - ) - (block + (if + (i32.eq + (get_local $6) + (i32.const 4) + ) + (set_local $7 + (block $do-once (result i32) (if (if (result i32) (i32.lt_u @@ -8570,7 +8515,7 @@ ) ) ) - (get_local $6) + (get_local $5) ) (i32.ne (tee_local $8 @@ -8594,44 +8539,41 @@ (get_local $1) (i32.const 10) ) - (set_local $3 + (br $do-once (get_local $8) ) - (br $do-once) ) ) - (set_local $3 - (if (result i32) - (i32.eq - (call_indirect (type $FUNCSIG$iiii) - (get_local $0) - (get_local $5) - (i32.const 1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $0) - ) - (i32.const 7) + (if (result i32) + (i32.eq + (call_indirect (type $FUNCSIG$iiii) + (get_local $0) + (get_local $4) + (i32.const 1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $0) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) - (i32.const 1) ) - (i32.load8_u - (get_local $5) - ) - (i32.const -1) + (i32.const 1) ) + (i32.load8_u + (get_local $4) + ) + (i32.const -1) ) ) ) ) (set_global $STACKTOP - (get_local $4) + (get_local $3) ) - (get_local $3) + (get_local $7) ) (func $___fflush_unlocked (; 22 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) @@ -9060,72 +9002,70 @@ (i32.shr_s (i32.shl (tee_local $0 - (block $do-once (result i32) - (if (result i32) - (i32.lt_s - (i32.add - (call $_fwrite + (if (result i32) + (i32.lt_s + (i32.add + (call $_fwrite + (i32.const 672) + (call $_strlen (i32.const 672) - (call $_strlen - (i32.const 672) - ) - (get_local $0) ) - (i32.const -1) + (get_local $0) ) - (i32.const 0) + (i32.const -1) ) - (i32.const 1) - (block (result i32) - (if - (if (result i32) - (i32.ne - (i32.load8_s offset=75 - (get_local $0) - ) - (i32.const 10) + (i32.const 0) + ) + (i32.const 1) + (block $do-once (result i32) + (if + (if (result i32) + (i32.ne + (i32.load8_s offset=75 + (get_local $0) ) - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (i32.const 10) + ) + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (i32.load offset=16 - (get_local $0) - ) ) - (i32.const 0) - ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) + (i32.load offset=16 + (get_local $0) ) - (i32.store8 + ) + (i32.const 0) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) - ) - (br $do-once - (i32.const 0) + (i32.const 1) ) ) - ) - (i32.lt_s - (call $___overflow - (get_local $0) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once + (i32.const 0) ) - (i32.const 0) ) ) + (i32.lt_s + (call $___overflow + (get_local $0) + ) + (i32.const 0) + ) ) ) ) diff --git a/test/emcc_O2_hello_world.fromasm.clamp b/test/emcc_O2_hello_world.fromasm.clamp index 70ecb9020..1a6fd9245 100644 --- a/test/emcc_O2_hello_world.fromasm.clamp +++ b/test/emcc_O2_hello_world.fromasm.clamp @@ -104,1246 +104,1242 @@ (local $50 i32) (local $51 i32) (local $52 i32) - (block $do-once - (if - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block - (if - (i32.and - (tee_local $1 - (i32.shr_u - (tee_local $15 - (i32.load - (i32.const 176) - ) + (if + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block + (if + (i32.and + (tee_local $1 + (i32.shr_u + (tee_local $15 + (i32.load + (i32.const 176) ) - (tee_local $5 - (i32.shr_u - (tee_local $9 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $5 + (i32.shr_u + (tee_local $9 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $5 - (i32.load - (tee_local $17 - (i32.add - (tee_local $0 - (i32.load - (tee_local $6 - (i32.add - (tee_local $3 - (i32.add - (i32.shl - (tee_local $1 - (i32.add - (i32.xor - (i32.and - (get_local $1) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $5 + (i32.load + (tee_local $17 + (i32.add + (tee_local $0 + (i32.load + (tee_local $6 + (i32.add + (tee_local $3 + (i32.add + (i32.shl + (tee_local $1 + (i32.add + (i32.xor + (i32.and + (get_local $1) (i32.const 1) ) - (get_local $5) + (i32.const 1) ) + (get_local $5) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.ne - (get_local $3) - (get_local $5) - ) - (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) + ) + (if + (i32.ne + (get_local $3) + (get_local $5) + ) + (block + (if + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $10 - (i32.add - (get_local $5) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 12) ) ) - (get_local $0) - ) - (block - (i32.store - (get_local $10) - (get_local $3) - ) - (i32.store - (get_local $6) - (get_local $5) - ) ) - (call $_abort) + (get_local $0) ) - ) - (i32.store - (i32.const 176) - (i32.and - (get_local $15) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) + (block + (i32.store + (get_local $10) + (get_local $3) + ) + (i32.store + (get_local $6) + (get_local $5) ) ) + (call $_abort) ) ) - (i32.store offset=4 - (get_local $0) - (i32.or - (tee_local $5 + (i32.store + (i32.const 176) + (i32.and + (get_local $15) + (i32.xor (i32.shl + (i32.const 1) (get_local $1) - (i32.const 3) ) + (i32.const -1) ) - (i32.const 3) ) ) - (i32.store - (tee_local $6 - (i32.add - (i32.add - (get_local $0) - (get_local $5) - ) - (i32.const 4) + ) + (i32.store offset=4 + (get_local $0) + (i32.or + (tee_local $5 + (i32.shl + (get_local $1) + (i32.const 3) ) ) - (i32.or - (i32.load - (get_local $6) + (i32.const 3) + ) + ) + (i32.store + (tee_local $6 + (i32.add + (i32.add + (get_local $0) + (get_local $5) ) - (i32.const 1) + (i32.const 4) ) ) - (return - (get_local $17) + (i32.or + (i32.load + (get_local $6) + ) + (i32.const 1) ) ) + (return + (get_local $17) + ) ) - (if - (i32.gt_u - (get_local $9) - (tee_local $6 - (i32.load - (i32.const 184) - ) + ) + (if + (i32.gt_u + (get_local $9) + (tee_local $6 + (i32.load + (i32.const 184) ) ) - (block - (if - (get_local $1) - (block - (set_local $3 - (i32.and - (i32.shr_u - (tee_local $5 - (i32.add - (i32.and - (tee_local $3 - (i32.and - (i32.shl - (get_local $1) - (get_local $5) - ) - (i32.or - (tee_local $5 - (i32.shl - (i32.const 2) - (get_local $5) - ) - ) - (i32.sub - (i32.const 0) + ) + (block + (if + (get_local $1) + (block + (set_local $3 + (i32.and + (i32.shr_u + (tee_local $5 + (i32.add + (i32.and + (tee_local $3 + (i32.and + (i32.shl + (get_local $1) + (get_local $5) + ) + (i32.or + (tee_local $5 + (i32.shl + (i32.const 2) (get_local $5) ) ) + (i32.sub + (i32.const 0) + (get_local $5) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $3) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $3 - (i32.load - (tee_local $10 - (i32.add - (tee_local $0 - (i32.load - (tee_local $22 - (i32.add - (tee_local $11 - (i32.add - (i32.shl - (tee_local $7 - (i32.add + ) + (set_local $3 + (i32.load + (tee_local $10 + (i32.add + (tee_local $0 + (i32.load + (tee_local $22 + (i32.add + (tee_local $11 + (i32.add + (i32.shl + (tee_local $7 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $5 - (i32.and - (i32.shr_u - (tee_local $10 - (i32.shr_u - (get_local $5) - (get_local $3) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $3) - ) - (tee_local $10 + (tee_local $5 (i32.and (i32.shr_u - (tee_local $0 + (tee_local $10 (i32.shr_u - (get_local $10) (get_local $5) + (get_local $3) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $3) ) - (tee_local $0 + (tee_local $10 (i32.and (i32.shr_u - (tee_local $11 + (tee_local $0 (i32.shr_u - (get_local $0) (get_local $10) + (get_local $5) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $11 + (tee_local $0 (i32.and (i32.shr_u - (tee_local $22 + (tee_local $11 (i32.shr_u - (get_local $11) (get_local $0) + (get_local $10) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $22) - (get_local $11) + (tee_local $11 + (i32.and + (i32.shr_u + (tee_local $22 + (i32.shr_u + (get_local $11) + (get_local $0) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $22) + (get_local $11) + ) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.ne - (get_local $11) - (get_local $3) - ) - (block - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 192) - ) + ) + (if + (i32.ne + (get_local $11) + (get_local $3) + ) + (block + (if + (i32.lt_u + (get_local $3) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $5 - (i32.add - (get_local $3) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add + (get_local $3) + (i32.const 12) ) ) - (get_local $0) ) - (block - (i32.store - (get_local $5) - (get_local $11) - ) - (i32.store - (get_local $22) - (get_local $3) - ) - (set_local $17 - (i32.load - (i32.const 184) - ) + (get_local $0) + ) + (block + (i32.store + (get_local $5) + (get_local $11) + ) + (i32.store + (get_local $22) + (get_local $3) + ) + (set_local $17 + (i32.load + (i32.const 184) ) ) - (call $_abort) ) + (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.and - (get_local $15) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $7) - ) - (i32.const -1) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (get_local $15) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $7) ) + (i32.const -1) ) ) - (set_local $17 - (get_local $6) - ) + ) + (set_local $17 + (get_local $6) ) ) - (i32.store offset=4 - (get_local $0) - (i32.or + ) + (i32.store offset=4 + (get_local $0) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $15 + (i32.add + (get_local $0) (get_local $9) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $15 - (i32.add - (get_local $0) - (get_local $9) - ) - ) - (i32.or - (tee_local $6 - (i32.sub - (i32.shl - (get_local $7) - (i32.const 3) - ) - (get_local $9) + (i32.or + (tee_local $6 + (i32.sub + (i32.shl + (get_local $7) + (i32.const 3) ) + (get_local $9) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $15) - (get_local $6) - ) + ) + (i32.store + (i32.add + (get_local $15) (get_local $6) ) - (if - (get_local $17) - (block - (set_local $3 - (i32.load - (i32.const 196) - ) + (get_local $6) + ) + (if + (get_local $17) + (block + (set_local $3 + (i32.load + (i32.const 196) ) - (set_local $11 - (i32.add - (i32.shl - (tee_local $22 - (i32.shr_u - (get_local $17) - (i32.const 3) - ) + ) + (set_local $11 + (i32.add + (i32.shl + (tee_local $22 + (i32.shr_u + (get_local $17) + (i32.const 3) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (if - (i32.and - (tee_local $5 - (i32.load - (i32.const 176) - ) + ) + (if + (i32.and + (tee_local $5 + (i32.load + (i32.const 176) ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $22) - ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $22) ) ) - (if - (i32.lt_u - (tee_local $17 - (i32.load - (tee_local $22 - (i32.add - (get_local $11) - (i32.const 8) - ) + ) + (if + (i32.lt_u + (tee_local $17 + (i32.load + (tee_local $22 + (i32.add + (get_local $11) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $38 - (get_local $22) - ) - (set_local $32 - (get_local $17) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $5) - (get_local $1) - ) - ) (set_local $38 - (i32.add - (get_local $11) - (i32.const 8) - ) + (get_local $22) ) (set_local $32 - (get_local $11) + (get_local $17) ) ) ) - (i32.store - (get_local $38) - (get_local $3) - ) - (i32.store offset=12 - (get_local $32) - (get_local $3) - ) - (i32.store offset=8 - (get_local $3) - (get_local $32) - ) - (i32.store offset=12 - (get_local $3) - (get_local $11) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $5) + (get_local $1) + ) + ) + (set_local $38 + (i32.add + (get_local $11) + (i32.const 8) + ) + ) + (set_local $32 + (get_local $11) + ) ) ) + (i32.store + (get_local $38) + (get_local $3) + ) + (i32.store offset=12 + (get_local $32) + (get_local $3) + ) + (i32.store offset=8 + (get_local $3) + (get_local $32) + ) + (i32.store offset=12 + (get_local $3) + (get_local $11) + ) ) - (i32.store - (i32.const 184) - (get_local $6) - ) - (i32.store - (i32.const 196) - (get_local $15) - ) - (return - (get_local $10) - ) + ) + (i32.store + (i32.const 184) + (get_local $6) + ) + (i32.store + (i32.const 196) + (get_local $15) + ) + (return + (get_local $10) ) ) - (if - (tee_local $15 - (i32.load - (i32.const 180) - ) + ) + (if + (tee_local $15 + (i32.load + (i32.const 180) ) - (block - (set_local $15 - (i32.and - (i32.shr_u - (tee_local $6 - (i32.add - (i32.and + ) + (block + (set_local $15 + (i32.and + (i32.shr_u + (tee_local $6 + (i32.add + (i32.and + (get_local $15) + (i32.sub + (i32.const 0) (get_local $15) - (i32.sub - (i32.const 0) - (get_local $15) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $1 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $17 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $1 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $17 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $6 - (i32.and - (i32.shr_u - (tee_local $11 - (i32.shr_u - (get_local $6) - (get_local $15) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $15) - ) - (tee_local $11 + (tee_local $6 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $11 (i32.shr_u - (get_local $11) (get_local $6) + (get_local $15) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $15) ) - (tee_local $3 + (tee_local $11 (i32.and (i32.shr_u - (tee_local $1 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $11) + (get_local $6) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $1 + (tee_local $3 (i32.and (i32.shr_u - (tee_local $5 + (tee_local $1 (i32.shr_u - (get_local $1) (get_local $3) + (get_local $11) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $5) - (get_local $1) + (tee_local $1 + (i32.and + (i32.shr_u + (tee_local $5 + (i32.shr_u + (get_local $1) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $5) + (get_local $1) + ) ) + (i32.const 2) ) ) ) - (i32.const -8) ) - (get_local $9) + (i32.const -8) ) + (get_local $9) ) - (set_local $3 - (tee_local $5 - (get_local $17) - ) + ) + (set_local $3 + (tee_local $5 + (get_local $17) ) - (loop $while-in - (block $while-out - (set_local $11 - (i32.lt_u - (tee_local $17 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $5 + ) + (loop $while-in + (block $while-out + (set_local $11 + (i32.lt_u + (tee_local $17 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $5 + (if (result i32) + (tee_local $17 + (i32.load offset=16 + (get_local $5) + ) + ) + (get_local $17) (if (result i32) - (tee_local $17 - (i32.load offset=16 + (tee_local $11 + (i32.load offset=20 (get_local $5) ) ) - (get_local $17) - (if (result i32) - (tee_local $11 - (i32.load offset=20 - (get_local $5) - ) + (get_local $11) + (block + (set_local $8 + (get_local $1) ) - (get_local $11) - (block - (set_local $8 - (get_local $1) - ) - (set_local $2 - (get_local $3) - ) - (br $while-out) + (set_local $2 + (get_local $3) ) + (br $while-out) ) ) ) ) - (i32.const -8) ) - (get_local $9) + (i32.const -8) ) + (get_local $9) ) - (get_local $1) ) + (get_local $1) ) - (set_local $1 - (select - (get_local $17) - (get_local $1) - (get_local $11) - ) + ) + (set_local $1 + (select + (get_local $17) + (get_local $1) + (get_local $11) ) - (set_local $3 - (select - (get_local $5) - (get_local $3) - (get_local $11) - ) + ) + (set_local $3 + (select + (get_local $5) + (get_local $3) + (get_local $11) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $2) - (tee_local $3 - (i32.load - (i32.const 192) - ) + ) + (if + (i32.lt_u + (get_local $2) + (tee_local $3 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $2) - (tee_local $5 - (i32.add - (get_local $2) - (get_local $9) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $2) + (tee_local $5 + (i32.add + (get_local $2) + (get_local $9) ) ) - (call $_abort) ) - (set_local $1 - (i32.load offset=24 - (get_local $2) - ) + (call $_abort) + ) + (set_local $1 + (i32.load offset=24 + (get_local $2) ) - (block $do-once4 - (if - (i32.eq - (tee_local $10 - (i32.load offset=12 - (get_local $2) - ) - ) + ) + (if + (i32.eq + (tee_local $10 + (i32.load offset=12 (get_local $2) ) - (block - (set_local $6 - (if (result i32) - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $17 - (get_local $7) - ) - (get_local $0) - ) - (if (result i32) - (tee_local $17 - (i32.load - (tee_local $11 - (i32.add - (get_local $2) - (i32.const 16) - ) - ) - ) + ) + (get_local $2) + ) + (block $do-once4 + (set_local $6 + (if (result i32) + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $2) + (i32.const 20) ) - (get_local $11) - (br $do-once4) ) ) ) - (loop $while-in7 - (if - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $17) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $17 - (get_local $7) - ) - (set_local $6 - (get_local $0) - ) - (br $while-in7) - ) + (block (result i32) + (set_local $17 + (get_local $7) ) - (if - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $17) - (i32.const 16) - ) + (get_local $0) + ) + (if (result i32) + (tee_local $17 + (i32.load + (tee_local $11 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (block - (set_local $17 - (get_local $7) - ) - (set_local $6 - (get_local $0) + ) + (get_local $11) + (br $do-once4) + ) + ) + ) + (loop $while-in7 + (if + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $17) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $6) - (get_local $3) + (block + (set_local $17 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $6) - (i32.const 0) - ) - (set_local $24 - (get_local $17) - ) + (set_local $6 + (get_local $0) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $0 - (i32.load offset=8 - (get_local $2) + (i32.add + (get_local $17) + (i32.const 16) ) ) - (get_local $3) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 12) - ) - ) - ) - (get_local $2) + (block + (set_local $17 + (get_local $7) ) - (call $_abort) + (set_local $6 + (get_local $0) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $11 - (i32.add - (get_local $10) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $6) + (get_local $3) + ) + (call $_abort) + (block + (i32.store + (get_local $6) + (i32.const 0) + ) + (set_local $24 + (get_local $17) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 (get_local $2) ) - (block - (i32.store - (get_local $7) - (get_local $10) - ) - (i32.store - (get_local $11) + ) + (get_local $3) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $0) + (i32.const 12) ) - (set_local $24 + ) + ) + (get_local $2) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $11 + (i32.add (get_local $10) + (i32.const 8) ) ) - (call $_abort) + ) + (get_local $2) + ) + (block + (i32.store + (get_local $7) + (get_local $10) + ) + (i32.store + (get_local $11) + (get_local $0) + ) + (set_local $24 + (get_local $10) ) ) + (call $_abort) ) ) + ) + (if + (get_local $1) (block $do-once8 (if - (get_local $1) - (block - (if - (i32.eq - (get_local $2) - (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $10 - (i32.load offset=28 - (get_local $2) - ) - ) - (i32.const 2) + (i32.eq + (get_local $2) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $10 + (i32.load offset=28 + (get_local $2) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $3) - (get_local $24) - ) - (if - (i32.eqz - (get_local $24) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $10) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $3) + (get_local $24) + ) + (if + (i32.eqz + (get_local $24) ) (block - (if - (i32.lt_u - (get_local $1) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $10 - (i32.add - (get_local $1) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $10) ) + (i32.const -1) ) - (get_local $2) - ) - (i32.store - (get_local $10) - (get_local $24) - ) - (i32.store offset=20 - (get_local $1) - (get_local $24) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $24) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $24) - (tee_local $10 - (i32.load - (i32.const 192) - ) + (get_local $1) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $24) - (get_local $1) - ) (if - (tee_local $3 - (i32.load offset=16 - (get_local $2) - ) - ) - (if - (i32.lt_u - (get_local $3) - (get_local $10) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $24) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $24) + (i32.eq + (i32.load + (tee_local $10 + (i32.add + (get_local $1) + (i32.const 16) + ) ) ) + (get_local $2) + ) + (i32.store + (get_local $10) + (get_local $24) + ) + (i32.store offset=20 + (get_local $1) + (get_local $24) ) ) - (if - (tee_local $3 - (i32.load offset=20 - (get_local $2) - ) + (br_if $do-once8 + (i32.eqz + (get_local $24) ) - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $24) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $24) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $24) + (tee_local $10 + (i32.load + (i32.const 192) ) ) ) + (call $_abort) ) - ) - (if - (i32.lt_u - (get_local $8) - (i32.const 16) + (i32.store offset=24 + (get_local $24) + (get_local $1) ) - (block - (i32.store offset=4 - (get_local $2) - (i32.or - (tee_local $1 - (i32.add - (get_local $8) - (get_local $9) - ) - ) - (i32.const 3) + (if + (tee_local $3 + (i32.load offset=16 + (get_local $2) ) ) - (i32.store - (tee_local $3 - (i32.add - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $3) + (get_local $10) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $24) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $24) ) ) - (i32.or + ) + ) + (if + (tee_local $3 + (i32.load offset=20 + (get_local $2) + ) + ) + (if + (i32.lt_u + (get_local $3) (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $24) (get_local $3) ) - (i32.const 1) + (i32.store offset=24 + (get_local $3) + (get_local $24) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $2) - (i32.or - (get_local $9) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $8) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $2) + (i32.or + (tee_local $1 + (i32.add + (get_local $8) + (get_local $9) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $8) - (i32.const 1) + ) + (i32.store + (tee_local $3 + (i32.add + (i32.add + (get_local $2) + (get_local $1) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $5) - (get_local $8) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or (get_local $8) + (i32.const 1) ) - (if - (tee_local $3 + ) + (i32.store + (i32.add + (get_local $5) + (get_local $8) + ) + (get_local $8) + ) + (if + (tee_local $3 + (i32.load + (i32.const 184) + ) + ) + (block + (set_local $1 (i32.load - (i32.const 184) + (i32.const 196) ) ) - (block - (set_local $1 - (i32.load - (i32.const 196) + (set_local $3 + (i32.add + (i32.shl + (tee_local $10 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 216) ) - (set_local $3 - (i32.add + ) + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 176) + ) + ) + (tee_local $11 (i32.shl - (tee_local $10 - (i32.shr_u - (get_local $3) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $10) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $0 + (i32.lt_u + (tee_local $7 (i32.load - (i32.const 176) - ) - ) - (tee_local $11 - (i32.shl - (i32.const 1) - (get_local $10) - ) - ) - ) - (if - (i32.lt_u - (tee_local $7 - (i32.load - (tee_local $10 - (i32.add - (get_local $3) - (i32.const 8) - ) + (tee_local $10 + (i32.add + (get_local $3) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $39 - (get_local $10) - ) - (set_local $22 - (get_local $7) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $0) - (get_local $11) - ) - ) (set_local $39 - (i32.add - (get_local $3) - (i32.const 8) - ) + (get_local $10) ) (set_local $22 - (get_local $3) + (get_local $7) ) ) ) - (i32.store - (get_local $39) - (get_local $1) - ) - (i32.store offset=12 - (get_local $22) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $22) - ) - (i32.store offset=12 - (get_local $1) - (get_local $3) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $0) + (get_local $11) + ) + ) + (set_local $39 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + (set_local $22 + (get_local $3) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $8) - ) - (i32.store - (i32.const 196) - (get_local $5) + (i32.store + (get_local $39) + (get_local $1) + ) + (i32.store offset=12 + (get_local $22) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $22) + ) + (i32.store offset=12 + (get_local $1) + (get_local $3) + ) ) ) - ) - (return - (i32.add - (get_local $2) - (i32.const 8) + (i32.store + (i32.const 184) + (get_local $8) + ) + (i32.store + (i32.const 196) + (get_local $5) ) ) ) + (return + (i32.add + (get_local $2) + (i32.const 8) + ) + ) ) ) ) ) + ) + (block $do-once (set_local $9 (if (result i32) (i32.le_u @@ -1375,217 +1371,215 @@ (get_local $1) ) ) - (block $label$break$L123 - (if - (tee_local $15 - (i32.load offset=480 - (i32.shl - (tee_local $9 + (if + (tee_local $15 + (i32.load offset=480 + (i32.shl + (tee_local $9 + (if (result i32) + (tee_local $7 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $7 - (i32.shr_u - (get_local $3) - (i32.const 8) - ) + (i32.gt_u + (get_local $1) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $1) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.add - (tee_local $15 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.add + (tee_local $15 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (i32.add - (tee_local $10 - (i32.shl - (get_local $7) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $7) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $7 + (i32.and + (i32.shr_u + (i32.add + (tee_local $10 + (i32.shl + (get_local $7) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $7) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $3) ) - (tee_local $10 - (i32.and - (i32.shr_u - (i32.add - (tee_local $17 - (i32.shl - (get_local $10) - (get_local $7) - ) + (get_local $3) + ) + (tee_local $10 + (i32.and + (i32.shr_u + (i32.add + (tee_local $17 + (i32.shl + (get_local $10) + (get_local $7) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $17) - (get_local $10) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $17) + (get_local $10) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $15) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $15) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) + (i32.const 2) ) ) - (block - (set_local $10 - (get_local $0) - ) - (set_local $17 - (i32.const 0) - ) - (set_local $3 - (i32.shl - (get_local $1) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $9) - (i32.const 1) - ) - ) - (i32.eq + ) + (block $label$break$L123 + (set_local $10 + (get_local $0) + ) + (set_local $17 + (i32.const 0) + ) + (set_local $3 + (i32.shl + (get_local $1) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $9) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $9) + (i32.const 31) + ) ) ) - (set_local $7 - (get_local $15) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $0 - (i32.sub - (tee_local $22 - (i32.and - (i32.load offset=4 - (get_local $7) - ) - (i32.const -8) + ) + (set_local $7 + (get_local $15) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $0 + (i32.sub + (tee_local $22 + (i32.and + (i32.load offset=4 + (get_local $7) ) + (i32.const -8) ) - (get_local $1) ) + (get_local $1) ) - (get_local $10) ) - (set_local $6 - (if (result i32) - (i32.eq - (get_local $22) - (get_local $1) - ) - (block - (set_local $28 - (get_local $0) - ) - (set_local $26 - (get_local $7) - ) - (set_local $30 - (get_local $7) - ) - (set_local $10 - (i32.const 90) - ) - (br $label$break$L123) + (get_local $10) + ) + (set_local $6 + (if (result i32) + (i32.eq + (get_local $22) + (get_local $1) + ) + (block + (set_local $28 + (get_local $0) ) - (block (result i32) - (set_local $10 - (get_local $0) - ) + (set_local $26 (get_local $7) ) - ) - ) - ) - (set_local $22 - (select - (get_local $17) - (tee_local $0 - (i32.load offset=20 + (set_local $30 (get_local $7) ) + (set_local $10 + (i32.const 90) + ) + (br $label$break$L123) ) - (i32.or - (i32.eqz + (block (result i32) + (set_local $10 (get_local $0) ) - (i32.eq - (get_local $0) - (tee_local $7 - (i32.load + (get_local $7) + ) + ) + ) + ) + (set_local $22 + (select + (get_local $17) + (tee_local $0 + (i32.load offset=20 + (get_local $7) + ) + ) + (i32.or + (i32.eqz + (get_local $0) + ) + (i32.eq + (get_local $0) + (tee_local $7 + (i32.load + (i32.add (i32.add - (i32.add - (get_local $7) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $3) - (i32.const 31) - ) - (i32.const 2) + (get_local $7) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $3) + (i32.const 31) ) + (i32.const 2) ) ) ) @@ -1593,54 +1587,54 @@ ) ) ) - (set_local $5 - (if (result i32) - (tee_local $0 - (i32.eqz - (get_local $7) - ) + ) + (set_local $5 + (if (result i32) + (tee_local $0 + (i32.eqz + (get_local $7) ) - (block (result i32) - (set_local $33 - (get_local $10) - ) - (set_local $31 - (get_local $6) - ) - (set_local $10 - (i32.const 86) - ) + ) + (block (result i32) + (set_local $33 + (get_local $10) + ) + (set_local $31 + (get_local $6) + ) + (set_local $10 + (i32.const 86) + ) + (get_local $22) + ) + (block + (set_local $17 (get_local $22) ) - (block - (set_local $17 - (get_local $22) - ) - (set_local $3 - (i32.shl - (get_local $3) - (i32.xor - (i32.and - (get_local $0) - (i32.const 1) - ) + (set_local $3 + (i32.shl + (get_local $3) + (i32.xor + (i32.and + (get_local $0) (i32.const 1) ) + (i32.const 1) ) ) - (br $while-in14) ) + (br $while-in14) ) ) ) ) - (block - (set_local $33 - (get_local $0) - ) - (set_local $10 - (i32.const 86) - ) + ) + (block + (set_local $33 + (get_local $0) + ) + (set_local $10 + (i32.const 86) ) ) ) @@ -1935,606 +1929,724 @@ (get_local $12) ) ) - (block $do-once17 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $12) - ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 + (get_local $12) ) - (get_local $12) ) - (block - (set_local $7 - (if (result i32) - (tee_local $0 - (i32.load - (tee_local $9 - (i32.add - (get_local $12) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $17 - (get_local $0) - ) - (get_local $9) - ) - (if (result i32) - (tee_local $17 - (i32.load - (tee_local $15 - (i32.add - (get_local $12) - (i32.const 16) - ) - ) + (get_local $12) + ) + (block $do-once17 + (set_local $7 + (if (result i32) + (tee_local $0 + (i32.load + (tee_local $9 + (i32.add + (get_local $12) + (i32.const 20) ) ) - (get_local $15) - (br $do-once17) ) ) - ) - (loop $while-in20 - (if - (tee_local $0 - (i32.load - (tee_local $9 - (i32.add - (get_local $17) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $17 - (get_local $0) - ) - (set_local $7 - (get_local $9) - ) - (br $while-in20) + (block (result i32) + (set_local $17 + (get_local $0) ) + (get_local $9) ) - (if - (tee_local $0 + (if (result i32) + (tee_local $17 (i32.load - (tee_local $9 + (tee_local $15 (i32.add - (get_local $17) + (get_local $12) (i32.const 16) ) ) ) ) - (block - (set_local $17 - (get_local $0) - ) - (set_local $7 - (get_local $9) - ) - (br $while-in20) - ) - ) - ) - (if - (i32.lt_u - (get_local $7) - (get_local $11) - ) - (call $_abort) - (block - (i32.store - (get_local $7) - (i32.const 0) - ) - (set_local $8 - (get_local $17) - ) + (get_local $15) + (br $do-once17) ) ) ) - (block - (if - (i32.lt_u - (tee_local $9 - (i32.load offset=8 - (get_local $12) - ) - ) - (get_local $11) - ) - (call $_abort) - ) + (loop $while-in20 (if - (i32.ne + (tee_local $0 (i32.load - (tee_local $0 + (tee_local $9 (i32.add - (get_local $9) - (i32.const 12) + (get_local $17) + (i32.const 20) ) ) ) - (get_local $12) ) - (call $_abort) + (block + (set_local $17 + (get_local $0) + ) + (set_local $7 + (get_local $9) + ) + (br $while-in20) + ) ) (if - (i32.eq + (tee_local $0 (i32.load - (tee_local $15 + (tee_local $9 (i32.add - (get_local $3) - (i32.const 8) + (get_local $17) + (i32.const 16) ) ) ) - (get_local $12) ) (block - (i32.store + (set_local $17 (get_local $0) - (get_local $3) ) - (i32.store - (get_local $15) + (set_local $7 (get_local $9) ) - (set_local $8 - (get_local $3) + (br $while-in20) + ) + ) + ) + (if + (i32.lt_u + (get_local $7) + (get_local $11) + ) + (call $_abort) + (block + (i32.store + (get_local $7) + (i32.const 0) + ) + (set_local $8 + (get_local $17) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $9 + (i32.load offset=8 + (get_local $12) ) ) - (call $_abort) + (get_local $11) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $0 + (i32.add + (get_local $9) + (i32.const 12) + ) + ) + ) + (get_local $12) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $15 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + ) + (get_local $12) + ) + (block + (i32.store + (get_local $0) + (get_local $3) + ) + (i32.store + (get_local $15) + (get_local $9) + ) + (set_local $8 + (get_local $3) + ) ) + (call $_abort) ) ) ) - (block $do-once21 - (if - (get_local $5) - (block - (if - (i32.eq - (get_local $12) - (i32.load - (tee_local $11 - (i32.add - (i32.shl - (tee_local $3 - (i32.load offset=28 - (get_local $12) - ) + (if + (get_local $5) + (block $do-once21 + (if + (i32.eq + (get_local $12) + (i32.load + (tee_local $11 + (i32.add + (i32.shl + (tee_local $3 + (i32.load offset=28 + (get_local $12) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) ) ) - (block - (i32.store - (get_local $11) + ) + (block + (i32.store + (get_local $11) + (get_local $8) + ) + (if + (i32.eqz (get_local $8) ) - (if - (i32.eqz - (get_local $8) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) + (block + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) ) - (br $do-once21) ) + (br $do-once21) ) ) - (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $5) - (i32.const 16) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $5) + (i32.const 16) ) ) - (get_local $12) - ) - (i32.store - (get_local $3) - (get_local $8) - ) - (i32.store offset=20 - (get_local $5) - (get_local $8) ) + (get_local $12) ) - (br_if $do-once21 - (i32.eqz - (get_local $8) - ) + (i32.store + (get_local $3) + (get_local $8) + ) + (i32.store offset=20 + (get_local $5) + (get_local $8) ) ) - ) - (if - (i32.lt_u - (get_local $8) - (tee_local $3 - (i32.load - (i32.const 192) - ) + (br_if $do-once21 + (i32.eqz + (get_local $8) ) ) - (call $_abort) ) - (i32.store offset=24 + ) + (if + (i32.lt_u (get_local $8) - (get_local $5) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $8) + (get_local $5) + ) + (if + (tee_local $11 + (i32.load offset=16 + (get_local $12) + ) ) (if - (tee_local $11 - (i32.load offset=16 - (get_local $12) - ) + (i32.lt_u + (get_local $11) + (get_local $3) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=16 + (get_local $8) (get_local $11) - (get_local $3) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $8) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $8) - ) + (i32.store offset=24 + (get_local $11) + (get_local $8) ) ) ) + ) + (if + (tee_local $11 + (i32.load offset=20 + (get_local $12) + ) + ) (if - (tee_local $11 - (i32.load offset=20 - (get_local $12) + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $8) (get_local $11) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $8) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $8) - ) + (i32.store offset=24 + (get_local $11) + (get_local $8) ) ) ) ) ) ) - (block $do-once25 - (if - (i32.ge_u - (get_local $2) - (i32.const 16) + (if + (i32.ge_u + (get_local $2) + (i32.const 16) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $1) + (i32.const 3) + ) ) - (block - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $1) - (i32.const 3) - ) + (i32.store offset=4 + (get_local $6) + (i32.or + (get_local $2) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store + (i32.add (get_local $6) - (i32.or - (get_local $2) - (i32.const 1) - ) + (get_local $2) ) - (i32.store - (i32.add - (get_local $6) - (get_local $2) - ) + (get_local $2) + ) + (set_local $5 + (i32.shr_u (get_local $2) + (i32.const 3) ) - (set_local $5 - (i32.shr_u - (get_local $2) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $2) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $2) - (i32.const 256) + (block + (set_local $11 + (i32.add + (i32.shl + (get_local $5) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $11 - (i32.add + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) + ) + ) + (tee_local $9 (i32.shl + (i32.const 1) (get_local $5) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $3 + (i32.lt_u + (tee_local $15 (i32.load - (i32.const 176) - ) - ) - (tee_local $9 - (i32.shl - (i32.const 1) - (get_local $5) - ) - ) - ) - (if - (i32.lt_u - (tee_local $15 - (i32.load - (tee_local $5 - (i32.add - (get_local $11) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $11) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $16 - (get_local $5) - ) - (set_local $27 - (get_local $15) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $9) - ) - ) (set_local $16 - (i32.add - (get_local $11) - (i32.const 8) - ) + (get_local $5) ) (set_local $27 - (get_local $11) + (get_local $15) ) ) ) - (i32.store - (get_local $16) - (get_local $6) - ) - (i32.store offset=12 - (get_local $27) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $27) - ) - (i32.store offset=12 - (get_local $6) - (get_local $11) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $9) + ) + ) + (set_local $16 + (i32.add + (get_local $11) + (i32.const 8) + ) + ) + (set_local $27 + (get_local $11) + ) ) - (br $do-once25) ) + (i32.store + (get_local $16) + (get_local $6) + ) + (i32.store offset=12 + (get_local $27) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $27) + ) + (i32.store offset=12 + (get_local $6) + (get_local $11) + ) + (br $do-once25) ) - (set_local $5 - (i32.add - (i32.shl - (tee_local $7 + ) + (set_local $5 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $11 + (i32.shr_u + (get_local $2) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $11 - (i32.shr_u - (get_local $2) - (i32.const 8) - ) + (i32.gt_u + (get_local $2) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $2) - (i32.add - (tee_local $5 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $2) + (i32.add + (tee_local $5 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $11 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $11) - (tee_local $9 - (i32.and - (i32.shr_u - (i32.add - (get_local $11) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $11 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $11) + (tee_local $9 + (i32.and + (i32.shr_u + (i32.add + (get_local $11) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $9) ) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (tee_local $15 - (i32.shl - (get_local $3) - (get_local $11) - ) + (get_local $9) + ) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (tee_local $15 + (i32.shl + (get_local $3) + (get_local $11) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $15) - (get_local $3) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $15) + (get_local $3) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $5) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $5) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $6) - (get_local $7) + ) + (i32.store offset=28 + (get_local $6) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 16) + ) ) - (i32.store offset=4 - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) + (i32.const 0) + ) + (i32.store + (get_local $3) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $3 + (i32.load + (i32.const 180) + ) + ) + (tee_local $15 + (i32.shl + (i32.const 1) + (get_local $7) + ) ) ) - (i32.const 0) ) - (i32.store - (get_local $3) - (i32.const 0) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $3) + (get_local $15) + ) + ) + (i32.store + (get_local $5) + (get_local $6) + ) + (i32.store offset=24 + (get_local $6) + (get_local $5) + ) + (i32.store offset=12 + (get_local $6) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $6) + ) + (br $do-once25) ) - (if - (i32.eqz - (i32.and - (tee_local $3 - (i32.load - (i32.const 180) - ) + ) + (set_local $15 + (i32.shl + (get_local $2) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) ) - (tee_local $15 - (i32.shl - (i32.const 1) - (get_local $7) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) + ) + ) + ) + (set_local $3 + (i32.load + (get_local $5) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in28 (result i32) + (block $while-out27 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $3) + ) + (i32.const -8) + ) + (get_local $2) + ) + (block + (set_local $14 + (get_local $3) + ) + (br $while-out27 + (i32.const 148) + ) + ) + ) + (if (result i32) + (tee_local $9 + (i32.load + (tee_local $5 + (i32.add + (i32.add + (get_local $3) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $15) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $15 + (i32.shl + (get_local $15) + (i32.const 1) + ) + ) + (set_local $3 + (get_local $9) + ) + (br $while-in28) + ) + (block (result i32) + (set_local $23 + (get_local $5) + ) + (set_local $20 + (get_local $3) + ) + (i32.const 145) + ) ) ) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $3) - (get_local $15) - ) + (i32.const 145) + ) + (if + (i32.lt_u + (get_local $23) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $5) + (get_local $23) (get_local $6) ) (i32.store offset=24 (get_local $6) - (get_local $5) + (get_local $20) ) (i32.store offset=12 (get_local $6) @@ -2544,216 +2656,92 @@ (get_local $6) (get_local $6) ) - (br $do-once25) - ) - ) - (set_local $15 - (i32.shl - (get_local $2) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) - ) - ) - ) - (set_local $3 - (i32.load - (get_local $5) ) ) (if (i32.eq - (tee_local $10 - (loop $while-in28 (result i32) - (block $while-out27 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $3) - ) - (i32.const -8) - ) - (get_local $2) - ) - (block - (set_local $14 - (get_local $3) - ) - (br $while-out27 - (i32.const 148) + (get_local $10) + (i32.const 148) + ) + (if + (i32.and + (i32.ge_u + (tee_local $15 + (i32.load + (tee_local $3 + (i32.add + (get_local $14) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $5 - (i32.add - (i32.add - (get_local $3) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $15) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $15 - (i32.shl - (get_local $15) - (i32.const 1) - ) - ) - (set_local $3 - (get_local $9) - ) - (br $while-in28) - ) - (block (result i32) - (set_local $23 - (get_local $5) - ) - (set_local $20 - (get_local $3) - ) - (i32.const 145) - ) + ) + (tee_local $9 + (i32.load + (i32.const 192) ) ) ) - ) - (i32.const 145) - ) - (if - (i32.lt_u - (get_local $23) - (i32.load - (i32.const 192) + (i32.ge_u + (get_local $14) + (get_local $9) ) ) - (call $_abort) (block + (i32.store offset=12 + (get_local $15) + (get_local $6) + ) (i32.store - (get_local $23) + (get_local $3) (get_local $6) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $6) - (get_local $20) + (get_local $15) ) (i32.store offset=12 (get_local $6) - (get_local $6) + (get_local $14) ) - (i32.store offset=8 - (get_local $6) + (i32.store offset=24 (get_local $6) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 148) - ) - (if - (i32.and - (i32.ge_u - (tee_local $15 - (i32.load - (tee_local $3 - (i32.add - (get_local $14) - (i32.const 8) - ) - ) - ) - ) - (tee_local $9 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $14) - (get_local $9) - ) - ) - (block - (i32.store offset=12 - (get_local $15) - (get_local $6) - ) - (i32.store - (get_local $3) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $15) - ) - (i32.store offset=12 - (get_local $6) - (get_local $14) - ) - (i32.store offset=24 - (get_local $6) - (i32.const 0) - ) - ) - (call $_abort) - ) + (call $_abort) ) ) ) - (block - (i32.store offset=4 - (get_local $12) - (i32.or - (tee_local $15 - (i32.add - (get_local $2) - (get_local $1) - ) + ) + (block + (i32.store offset=4 + (get_local $12) + (i32.or + (tee_local $15 + (i32.add + (get_local $2) + (get_local $1) ) - (i32.const 3) ) + (i32.const 3) ) - (i32.store - (tee_local $3 + ) + (i32.store + (tee_local $3 + (i32.add (i32.add - (i32.add - (get_local $12) - (get_local $15) - ) - (i32.const 4) + (get_local $12) + (get_local $15) ) + (i32.const 4) ) - (i32.or - (i32.load - (get_local $3) - ) - (i32.const 1) + ) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) ) ) ) @@ -3086,261 +3074,257 @@ ) ) (block - (block $label$break$L259 - (if - (tee_local $7 - (i32.load - (i32.const 200) - ) + (if + (tee_local $7 + (i32.load + (i32.const 200) ) - (block - (set_local $16 - (i32.const 624) - ) - (loop $while-in34 - (block $while-out33 - (if - (if (result i32) - (i32.le_u - (tee_local $27 - (i32.load - (get_local $16) - ) + ) + (block $label$break$L259 + (set_local $16 + (i32.const 624) + ) + (loop $while-in34 + (block $while-out33 + (if + (if (result i32) + (i32.le_u + (tee_local $27 + (i32.load + (get_local $16) ) - (get_local $7) ) - (i32.gt_u - (i32.add - (get_local $27) - (i32.load - (tee_local $8 - (i32.add - (get_local $16) - (i32.const 4) - ) + (get_local $7) + ) + (i32.gt_u + (i32.add + (get_local $27) + (i32.load + (tee_local $8 + (i32.add + (get_local $16) + (i32.const 4) ) ) ) - (get_local $7) - ) - (i32.const 0) - ) - (block - (set_local $6 - (get_local $16) ) - (set_local $5 - (get_local $8) - ) - (br $while-out33) + (get_local $7) ) + (i32.const 0) ) - (br_if $while-in34 - (tee_local $16 - (i32.load offset=8 - (get_local $16) - ) + (block + (set_local $6 + (get_local $16) ) + (set_local $5 + (get_local $8) + ) + (br $while-out33) ) - (set_local $10 - (i32.const 173) - ) - (br $label$break$L259) ) - ) - (if - (i32.lt_u + (br_if $while-in34 (tee_local $16 - (i32.and - (i32.sub - (get_local $20) - (i32.load - (i32.const 188) - ) - ) - (get_local $23) + (i32.load offset=8 + (get_local $16) ) ) - (i32.const 2147483647) ) - (if - (i32.eq - (tee_local $8 - (call $_sbrk - (get_local $16) - ) - ) - (i32.add - (i32.load - (get_local $6) - ) + (set_local $10 + (i32.const 173) + ) + (br $label$break$L259) + ) + ) + (if + (i32.lt_u + (tee_local $16 + (i32.and + (i32.sub + (get_local $20) (i32.load - (get_local $5) + (i32.const 188) ) ) + (get_local $23) ) - (if - (i32.ne - (get_local $8) - (i32.const -1) + ) + (i32.const 2147483647) + ) + (if + (i32.eq + (tee_local $8 + (call $_sbrk + (get_local $16) ) - (block - (set_local $19 - (get_local $8) - ) - (set_local $21 - (get_local $16) - ) - (br $label$break$L257 - (i32.const 193) - ) + ) + (i32.add + (i32.load + (get_local $6) + ) + (i32.load + (get_local $5) ) ) + ) + (if + (i32.ne + (get_local $8) + (i32.const -1) + ) (block - (set_local $13 + (set_local $19 (get_local $8) ) - (set_local $18 + (set_local $21 (get_local $16) ) - (set_local $10 - (i32.const 183) + (br $label$break$L257 + (i32.const 193) ) ) ) + (block + (set_local $13 + (get_local $8) + ) + (set_local $18 + (get_local $16) + ) + (set_local $10 + (i32.const 183) + ) + ) ) ) - (set_local $10 - (i32.const 173) - ) + ) + (set_local $10 + (i32.const 173) ) ) - (block $do-once35 - (if - (if (result i32) - (i32.eq - (get_local $10) - (i32.const 173) - ) - (i32.ne - (tee_local $7 - (call $_sbrk - (i32.const 0) - ) + (if + (if (result i32) + (i32.eq + (get_local $10) + (i32.const 173) + ) + (i32.ne + (tee_local $7 + (call $_sbrk + (i32.const 0) ) - (i32.const -1) ) - (i32.const 0) + (i32.const -1) ) - (block - (set_local $0 - (if (result i32) - (i32.and - (tee_local $8 - (i32.add - (tee_local $16 - (i32.load - (i32.const 652) - ) + (i32.const 0) + ) + (block $do-once35 + (set_local $0 + (if (result i32) + (i32.and + (tee_local $8 + (i32.add + (tee_local $16 + (i32.load + (i32.const 652) ) - (i32.const -1) ) - ) - (tee_local $1 - (get_local $7) + (i32.const -1) ) ) - (i32.add - (i32.sub - (get_local $2) + (tee_local $1 + (get_local $7) + ) + ) + (i32.add + (i32.sub + (get_local $2) + (get_local $1) + ) + (i32.and + (i32.add + (get_local $8) (get_local $1) ) - (i32.and - (i32.add - (get_local $8) - (get_local $1) - ) - (i32.sub - (i32.const 0) - (get_local $16) - ) + (i32.sub + (i32.const 0) + (get_local $16) ) ) - (get_local $2) ) + (get_local $2) ) - (set_local $1 - (i32.add - (tee_local $16 - (i32.load - (i32.const 608) - ) + ) + (set_local $1 + (i32.add + (tee_local $16 + (i32.load + (i32.const 608) ) - (get_local $0) ) + (get_local $0) ) - (if - (i32.and - (i32.gt_u - (get_local $0) - (get_local $9) - ) - (i32.lt_u - (get_local $0) - (i32.const 2147483647) - ) + ) + (if + (i32.and + (i32.gt_u + (get_local $0) + (get_local $9) ) - (block - (br_if $do-once35 - (select - (i32.or - (i32.le_u - (get_local $1) - (get_local $16) - ) - (i32.gt_u - (get_local $1) - (tee_local $8 - (i32.load - (i32.const 616) - ) - ) - ) + (i32.lt_u + (get_local $0) + (i32.const 2147483647) + ) + ) + (block + (br_if $do-once35 + (select + (i32.or + (i32.le_u + (get_local $1) + (get_local $16) ) - (i32.const 0) - (get_local $8) - ) - ) - (set_local $18 - (if (result i32) - (i32.eq + (i32.gt_u + (get_local $1) (tee_local $8 - (call $_sbrk - (get_local $0) + (i32.load + (i32.const 616) ) ) - (get_local $7) ) - (block - (set_local $19 - (get_local $7) - ) - (set_local $21 + ) + (i32.const 0) + (get_local $8) + ) + ) + (set_local $18 + (if (result i32) + (i32.eq + (tee_local $8 + (call $_sbrk (get_local $0) ) - (br $label$break$L257 - (i32.const 193) - ) ) - (block (result i32) - (set_local $13 - (get_local $8) - ) - (set_local $10 - (i32.const 183) - ) + (get_local $7) + ) + (block + (set_local $19 + (get_local $7) + ) + (set_local $21 (get_local $0) ) + (br $label$break$L257 + (i32.const 193) + ) + ) + (block (result i32) + (set_local $13 + (get_local $8) + ) + (set_local $10 + (i32.const 183) + ) + (get_local $0) ) ) ) @@ -3348,100 +3332,98 @@ ) ) ) - (block $label$break$L279 - (if - (i32.eq - (get_local $10) - (i32.const 183) - ) - (block - (set_local $8 - (i32.sub - (i32.const 0) - (get_local $18) - ) + (if + (i32.eq + (get_local $10) + (i32.const 183) + ) + (block $label$break$L279 + (set_local $8 + (i32.sub + (i32.const 0) + (get_local $18) ) - (set_local $4 + ) + (set_local $4 + (if (result i32) (if (result i32) - (if (result i32) + (i32.and + (i32.gt_u + (get_local $14) + (get_local $18) + ) (i32.and - (i32.gt_u - (get_local $14) + (i32.lt_u (get_local $18) + (i32.const 2147483647) ) - (i32.and - (i32.lt_u - (get_local $18) - (i32.const 2147483647) - ) - (i32.ne - (get_local $13) - (i32.const -1) - ) + (i32.ne + (get_local $13) + (i32.const -1) ) ) - (i32.lt_u - (tee_local $1 - (i32.and - (i32.add - (i32.sub - (get_local $12) - (get_local $18) - ) - (tee_local $7 - (i32.load - (i32.const 656) - ) - ) - ) + ) + (i32.lt_u + (tee_local $1 + (i32.and + (i32.add (i32.sub - (i32.const 0) - (get_local $7) + (get_local $12) + (get_local $18) + ) + (tee_local $7 + (i32.load + (i32.const 656) + ) ) ) + (i32.sub + (i32.const 0) + (get_local $7) + ) ) - (i32.const 2147483647) ) - (i32.const 0) + (i32.const 2147483647) ) - (if (result i32) - (i32.eq - (call $_sbrk - (get_local $1) - ) - (i32.const -1) + (i32.const 0) + ) + (if (result i32) + (i32.eq + (call $_sbrk + (get_local $1) ) - (block - (drop - (call $_sbrk - (get_local $8) - ) + (i32.const -1) + ) + (block + (drop + (call $_sbrk + (get_local $8) ) - (br $label$break$L279) - ) - (i32.add - (get_local $1) - (get_local $18) ) + (br $label$break$L279) + ) + (i32.add + (get_local $1) + (get_local $18) ) - (get_local $18) ) + (get_local $18) ) - (if - (i32.ne + ) + (if + (i32.ne + (get_local $13) + (i32.const -1) + ) + (block + (set_local $19 (get_local $13) - (i32.const -1) ) - (block - (set_local $19 - (get_local $13) - ) - (set_local $21 - (get_local $4) - ) - (br $label$break$L257 - (i32.const 193) - ) + (set_local $21 + (get_local $4) + ) + (br $label$break$L257 + (i32.const 193) ) ) ) @@ -3545,1899 +3527,2003 @@ (get_local $13) ) ) - (block $do-once40 - (if - (tee_local $13 - (i32.load - (i32.const 200) - ) + (if + (tee_local $13 + (i32.load + (i32.const 200) ) - (block - (set_local $4 - (i32.const 624) - ) - (loop $do-in - (block $do-out - (if - (i32.eq - (get_local $19) - (i32.add - (tee_local $2 - (i32.load - (get_local $4) - ) + ) + (block $do-once40 + (set_local $4 + (i32.const 624) + ) + (loop $do-in + (block $do-out + (if + (i32.eq + (get_local $19) + (i32.add + (tee_local $2 + (i32.load + (get_local $4) ) - (tee_local $12 - (i32.load - (tee_local $18 - (i32.add - (get_local $4) - (i32.const 4) - ) + ) + (tee_local $12 + (i32.load + (tee_local $18 + (i32.add + (get_local $4) + (i32.const 4) ) ) ) ) ) - (block - (set_local $46 - (get_local $2) - ) - (set_local $47 - (get_local $18) - ) - (set_local $48 - (get_local $12) - ) - (set_local $49 - (get_local $4) - ) - (set_local $10 - (i32.const 203) - ) - (br $do-out) + ) + (block + (set_local $46 + (get_local $2) + ) + (set_local $47 + (get_local $18) + ) + (set_local $48 + (get_local $12) ) + (set_local $49 + (get_local $4) + ) + (set_local $10 + (i32.const 203) + ) + (br $do-out) ) - (br_if $do-in - (tee_local $4 - (i32.load offset=8 - (get_local $4) - ) + ) + (br_if $do-in + (tee_local $4 + (i32.load offset=8 + (get_local $4) ) ) ) ) - (if + ) + (if + (if (result i32) (if (result i32) - (if (result i32) - (i32.eq - (get_local $10) - (i32.const 203) - ) - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $49) - ) - (i32.const 8) - ) - ) - (i32.const 0) + (i32.eq + (get_local $10) + (i32.const 203) ) - (i32.and - (i32.lt_u - (get_local $13) - (get_local $19) - ) - (i32.ge_u - (get_local $13) - (get_local $46) + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $49) + ) + (i32.const 8) ) ) (i32.const 0) ) - (block - (i32.store - (get_local $47) - (i32.add - (get_local $48) - (get_local $21) - ) + (i32.and + (i32.lt_u + (get_local $13) + (get_local $19) ) - (set_local $4 - (i32.add - (get_local $13) - (tee_local $12 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $13) - (i32.const 8) - ) + (i32.ge_u + (get_local $13) + (get_local $46) + ) + ) + (i32.const 0) + ) + (block + (i32.store + (get_local $47) + (i32.add + (get_local $48) + (get_local $21) + ) + ) + (set_local $4 + (i32.add + (get_local $13) + (tee_local $12 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $13) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) - (set_local $18 - (i32.add - (i32.sub - (get_local $21) - (get_local $12) - ) - (i32.load - (i32.const 188) - ) + ) + (set_local $18 + (i32.add + (i32.sub + (get_local $21) + (get_local $12) + ) + (i32.load + (i32.const 188) ) ) - (i32.store - (i32.const 200) - (get_local $4) - ) - (i32.store - (i32.const 188) + ) + (i32.store + (i32.const 200) + (get_local $4) + ) + (i32.store + (i32.const 188) + (get_local $18) + ) + (i32.store offset=4 + (get_local $4) + (i32.or (get_local $18) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $4) - (i32.or - (get_local $18) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $18) - ) - (i32.const 40) + (get_local $18) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (br $do-once40) ) + (br $do-once40) ) - (set_local $3 - (if (result i32) - (i32.lt_u - (get_local $19) - (tee_local $18 - (i32.load - (i32.const 192) - ) - ) - ) - (block (result i32) - (i32.store + ) + (set_local $3 + (if (result i32) + (i32.lt_u + (get_local $19) + (tee_local $18 + (i32.load (i32.const 192) - (get_local $19) ) - (get_local $19) ) - (get_local $18) ) - ) - (set_local $18 - (i32.add + (block (result i32) + (i32.store + (i32.const 192) + (get_local $19) + ) (get_local $19) - (get_local $21) ) + (get_local $18) ) - (set_local $4 - (i32.const 624) + ) + (set_local $18 + (i32.add + (get_local $19) + (get_local $21) ) - (loop $while-in43 - (block $while-out42 - (if - (i32.eq - (i32.load - (get_local $4) - ) - (get_local $18) - ) - (block - (set_local $50 - (get_local $4) - ) - (set_local $40 - (get_local $4) - ) - (set_local $10 - (i32.const 211) - ) - (br $while-out42) + ) + (set_local $4 + (i32.const 624) + ) + (loop $while-in43 + (block $while-out42 + (if + (i32.eq + (i32.load + (get_local $4) ) + (get_local $18) ) - (br_if $while-in43 - (tee_local $4 - (i32.load offset=8 - (get_local $4) - ) + (block + (set_local $50 + (get_local $4) ) - ) - (set_local $29 - (i32.const 624) + (set_local $40 + (get_local $4) + ) + (set_local $10 + (i32.const 211) + ) + (br $while-out42) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 211) + (br_if $while-in43 + (tee_local $4 + (i32.load offset=8 + (get_local $4) + ) + ) ) (set_local $29 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $40) - ) - (i32.const 8) + (i32.const 624) + ) + ) + ) + (if + (i32.eq + (get_local $10) + (i32.const 211) + ) + (set_local $29 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $40) ) - (i32.const 624) - (block - (i32.store - (get_local $50) - (get_local $19) - ) - (i32.store - (tee_local $4 - (i32.add - (get_local $40) - (i32.const 4) - ) - ) + (i32.const 8) + ) + (i32.const 624) + (block + (i32.store + (get_local $50) + (get_local $19) + ) + (i32.store + (tee_local $4 (i32.add - (i32.load - (get_local $4) - ) - (get_local $21) + (get_local $40) + (i32.const 4) ) ) - (set_local $12 - (i32.add - (get_local $19) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $19) - (i32.const 8) - ) + (i32.add + (i32.load + (get_local $4) + ) + (get_local $21) + ) + ) + (set_local $12 + (i32.add + (get_local $19) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) - (set_local $2 - (i32.add - (get_local $18) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $18) - (i32.const 8) - ) + ) + (set_local $2 + (i32.add + (get_local $18) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $18) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) - (set_local $4 - (i32.add - (get_local $12) - (get_local $9) - ) + ) + (set_local $4 + (i32.add + (get_local $12) + (get_local $9) ) - (set_local $14 + ) + (set_local $14 + (i32.sub (i32.sub - (i32.sub - (get_local $2) - (get_local $12) - ) - (get_local $9) + (get_local $2) + (get_local $12) ) + (get_local $9) ) - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $9) - (i32.const 3) - ) + ) + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (if + (i32.ne + (get_local $2) + (get_local $13) ) (block $do-once44 (if - (i32.ne + (i32.eq (get_local $2) - (get_local $13) + (i32.load + (i32.const 196) + ) ) (block - (if - (i32.eq - (get_local $2) - (i32.load - (i32.const 196) - ) - ) - (block - (i32.store - (i32.const 184) - (tee_local $0 - (i32.add - (i32.load - (i32.const 184) - ) - (get_local $14) - ) - ) - ) - (i32.store - (i32.const 196) - (get_local $4) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $0) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $4) - (get_local $0) + (i32.store + (i32.const 184) + (tee_local $0 + (i32.add + (i32.load + (i32.const 184) ) - (get_local $0) + (get_local $14) ) - (br $do-once44) ) ) - (if - (i32.eq - (i32.and - (tee_local $0 - (i32.load offset=4 - (get_local $2) - ) - ) - (i32.const 3) - ) + (i32.store + (i32.const 196) + (get_local $4) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $0) (i32.const 1) ) - (block - (set_local $5 - (i32.and - (get_local $0) - (i32.const -8) - ) + ) + (i32.store + (i32.add + (get_local $4) + (get_local $0) + ) + (get_local $0) + ) + (br $do-once44) + ) + ) + (if + (i32.eq + (i32.and + (tee_local $0 + (i32.load offset=4 + (get_local $2) ) - (set_local $6 - (i32.shr_u - (get_local $0) - (i32.const 3) - ) + ) + (i32.const 3) + ) + (i32.const 1) + ) + (block + (set_local $5 + (i32.and + (get_local $0) + (i32.const -8) + ) + ) + (set_local $6 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (block $label$break$L331 + (if + (i32.ge_u + (get_local $0) + (i32.const 256) ) - (block $label$break$L331 - (if - (i32.ge_u - (get_local $0) - (i32.const 256) + (block + (set_local $23 + (i32.load offset=24 + (get_local $2) ) - (block - (set_local $23 - (i32.load offset=24 + ) + (if + (i32.eq + (tee_local $20 + (i32.load offset=12 (get_local $2) ) ) - (block $do-once47 - (if - (i32.eq - (tee_local $20 - (i32.load offset=12 - (get_local $2) - ) - ) - (get_local $2) - ) - (block - (set_local $0 - (if (result i32) - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (tee_local $8 - (i32.add - (get_local $2) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - (block (result i32) - (set_local $8 - (get_local $1) - ) - (get_local $7) - ) - (if (result i32) - (tee_local $16 - (i32.load - (get_local $8) + (get_local $2) + ) + (block $do-once47 + (set_local $0 + (if (result i32) + (tee_local $7 + (i32.load + (tee_local $1 + (i32.add + (tee_local $8 + (i32.add + (get_local $2) + (i32.const 16) ) ) - (get_local $16) - (br $do-once47) + (i32.const 4) ) ) ) - (loop $while-in50 - (if - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $8 - (get_local $1) - ) - (br $while-in50) - ) - ) - (if - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $8 - (get_local $1) - ) - (br $while-in50) - ) - ) + ) + (block (result i32) + (set_local $8 + (get_local $1) ) - (if - (i32.lt_u + (get_local $7) + ) + (if (result i32) + (tee_local $16 + (i32.load (get_local $8) - (get_local $3) ) - (call $_abort) - (block - (i32.store - (get_local $8) - (i32.const 0) - ) - (set_local $25 + ) + (get_local $16) + (br $do-once47) + ) + ) + ) + (loop $while-in50 + (if + (tee_local $7 + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 20) ) ) ) ) (block - (if - (i32.lt_u - (tee_local $1 - (i32.load offset=8 - (get_local $2) - ) - ) - (get_local $3) - ) - (call $_abort) - ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $1) - (i32.const 12) - ) - ) - ) - (get_local $2) - ) - (call $_abort) + (set_local $0 + (get_local $7) ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $20) - (i32.const 8) - ) - ) - ) - (get_local $2) - ) - (block - (i32.store - (get_local $7) - (get_local $20) - ) - (i32.store - (get_local $8) - (get_local $1) - ) - (set_local $25 - (get_local $20) - ) - ) - (call $_abort) + (set_local $8 + (get_local $1) ) + (br $while-in50) ) ) - ) - (br_if $label$break$L331 - (i32.eqz - (get_local $23) - ) - ) - (block $do-once51 (if - (i32.ne - (get_local $2) + (tee_local $7 (i32.load (tee_local $1 (i32.add - (i32.shl - (tee_local $20 - (i32.load offset=28 - (get_local $2) - ) - ) - (i32.const 2) - ) - (i32.const 480) + (get_local $0) + (i32.const 16) ) ) ) ) (block - (if - (i32.lt_u - (get_local $23) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $23) - (i32.const 16) - ) - ) - ) - (get_local $2) - ) - (i32.store - (get_local $8) - (get_local $25) - ) - (i32.store offset=20 - (get_local $23) - (get_local $25) - ) - ) - (br_if $label$break$L331 - (i32.eqz - (get_local $25) - ) + (set_local $0 + (get_local $7) ) - ) - (block - (i32.store + (set_local $8 (get_local $1) - (get_local $25) - ) - (br_if $do-once51 - (get_local $25) ) - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $20) - ) - (i32.const -1) - ) - ) - ) - (br $label$break$L331) + (br $while-in50) ) ) ) (if (i32.lt_u - (get_local $25) - (tee_local $20 - (i32.load - (i32.const 192) + (get_local $8) + (get_local $3) + ) + (call $_abort) + (block + (i32.store + (get_local $8) + (i32.const 0) + ) + (set_local $25 + (get_local $0) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $1 + (i32.load offset=8 + (get_local $2) ) ) + (get_local $3) ) (call $_abort) ) - (i32.store offset=24 - (get_local $25) - (get_local $23) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add + (get_local $1) + (i32.const 12) + ) + ) + ) + (get_local $2) + ) + (call $_abort) ) (if - (tee_local $8 + (i32.eq (i32.load - (tee_local $1 + (tee_local $8 (i32.add - (get_local $2) - (i32.const 16) + (get_local $20) + (i32.const 8) ) ) ) + (get_local $2) ) - (if - (i32.lt_u - (get_local $8) + (block + (i32.store + (get_local $7) (get_local $20) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $25) - (get_local $8) - ) - (i32.store offset=24 - (get_local $8) - (get_local $25) - ) + (i32.store + (get_local $8) + (get_local $1) + ) + (set_local $25 + (get_local $20) ) ) + (call $_abort) ) - (br_if $label$break$L331 - (i32.eqz - (tee_local $8 - (i32.load offset=4 - (get_local $1) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $23) + ) + ) + (if + (i32.ne + (get_local $2) + (i32.load + (tee_local $1 + (i32.add + (i32.shl + (tee_local $20 + (i32.load offset=28 + (get_local $2) + ) + ) + (i32.const 2) ) + (i32.const 480) ) ) ) + ) + (block (if (i32.lt_u - (get_local $8) + (get_local $23) (i32.load (i32.const 192) ) ) (call $_abort) - (block - (i32.store offset=20 - (get_local $25) - (get_local $8) - ) - (i32.store offset=24 - (get_local $8) - (get_local $25) - ) - ) ) - ) - (block - (set_local $20 - (i32.load offset=12 - (get_local $2) - ) - ) - (block $do-once55 - (if - (i32.ne + (if + (i32.eq + (i32.load (tee_local $8 - (i32.load offset=8 - (get_local $2) - ) - ) - (tee_local $23 (i32.add - (i32.shl - (get_local $6) - (i32.const 3) - ) - (i32.const 216) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $8) - (get_local $3) - ) - (call $_abort) - ) - (br_if $do-once55 - (i32.eq - (i32.load offset=12 - (get_local $8) - ) - (get_local $2) + (get_local $23) + (i32.const 16) ) ) - (call $_abort) ) + (get_local $2) ) - ) - (if - (i32.eq - (get_local $20) + (i32.store (get_local $8) + (get_local $25) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $6) - ) - (i32.const -1) - ) - ) - ) - (br $label$break$L331) + (i32.store offset=20 + (get_local $23) + (get_local $25) ) ) - (block $do-once57 - (if - (i32.eq - (get_local $20) - (get_local $23) + (br_if $label$break$L331 + (i32.eqz + (get_local $25) + ) + ) + ) + (block $do-once51 + (i32.store + (get_local $1) + (get_local $25) + ) + (br_if $do-once51 + (get_local $25) + ) + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) ) - (set_local $41 - (i32.add + (i32.xor + (i32.shl + (i32.const 1) (get_local $20) - (i32.const 8) ) + (i32.const -1) ) - (block - (if - (i32.lt_u - (get_local $20) - (get_local $3) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $20) - (i32.const 8) - ) - ) - ) - (get_local $2) - ) - (block - (set_local $41 - (get_local $1) - ) - (br $do-once57) - ) - ) - (call $_abort) + ) + ) + (br $label$break$L331) + ) + ) + (if + (i32.lt_u + (get_local $25) + (tee_local $20 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $25) + (get_local $23) + ) + (if + (tee_local $8 + (i32.load + (tee_local $1 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (i32.store offset=12 + ) + (if + (i32.lt_u (get_local $8) (get_local $20) ) - (i32.store - (get_local $41) - (get_local $8) + (call $_abort) + (block + (i32.store offset=16 + (get_local $25) + (get_local $8) + ) + (i32.store offset=24 + (get_local $8) + (get_local $25) + ) ) ) ) - ) - (set_local $2 - (i32.add - (get_local $2) - (get_local $5) + (br_if $label$break$L331 + (i32.eqz + (tee_local $8 + (i32.load offset=4 + (get_local $1) + ) + ) + ) ) - ) - (set_local $14 - (i32.add - (get_local $5) - (get_local $14) + (if + (i32.lt_u + (get_local $8) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $25) + (get_local $8) + ) + (i32.store offset=24 + (get_local $8) + (get_local $25) + ) + ) ) ) - ) - ) - (i32.store - (tee_local $6 - (i32.add - (get_local $2) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $6) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $14) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $4) - (get_local $14) - ) - (get_local $14) - ) - (set_local $6 - (i32.shr_u - (get_local $14) - (i32.const 3) - ) - ) - (if - (i32.lt_u - (get_local $14) - (i32.const 256) - ) - (block - (set_local $0 - (i32.add - (i32.shl - (get_local $6) - (i32.const 3) + (block + (set_local $20 + (i32.load offset=12 + (get_local $2) ) - (i32.const 216) ) - ) - (block $do-once59 (if - (i32.and - (tee_local $23 - (i32.load - (i32.const 176) + (i32.ne + (tee_local $8 + (i32.load offset=8 + (get_local $2) ) ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $6) + (tee_local $23 + (i32.add + (i32.shl + (get_local $6) + (i32.const 3) + ) + (i32.const 216) ) ) ) - (block + (block $do-once55 (if - (i32.ge_u - (tee_local $7 - (i32.load - (tee_local $6 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 192) - ) + (i32.lt_u + (get_local $8) + (get_local $3) ) - (block - (set_local $42 - (get_local $6) - ) - (set_local $34 - (get_local $7) + (call $_abort) + ) + (br_if $do-once55 + (i32.eq + (i32.load offset=12 + (get_local $8) ) - (br $do-once59) + (get_local $2) ) ) (call $_abort) ) + ) + (if + (i32.eq + (get_local $20) + (get_local $8) + ) (block (i32.store (i32.const 176) - (i32.or - (get_local $23) - (get_local $1) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $6) + ) + (i32.const -1) + ) ) ) - (set_local $42 - (i32.add - (get_local $0) - (i32.const 8) + (br $label$break$L331) + ) + ) + (if + (i32.eq + (get_local $20) + (get_local $23) + ) + (set_local $41 + (i32.add + (get_local $20) + (i32.const 8) + ) + ) + (block $do-once57 + (if + (i32.lt_u + (get_local $20) + (get_local $3) ) + (call $_abort) ) - (set_local $34 - (get_local $0) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add + (get_local $20) + (i32.const 8) + ) + ) + ) + (get_local $2) + ) + (block + (set_local $41 + (get_local $1) + ) + (br $do-once57) + ) ) + (call $_abort) ) ) + (i32.store offset=12 + (get_local $8) + (get_local $20) + ) + (i32.store + (get_local $41) + (get_local $8) + ) ) - (i32.store - (get_local $42) - (get_local $4) - ) - (i32.store offset=12 - (get_local $34) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $34) - ) - (i32.store offset=12 - (get_local $4) - (get_local $0) - ) - (br $do-once44) ) ) - (set_local $1 + (set_local $2 + (i32.add + (get_local $2) + (get_local $5) + ) + ) + (set_local $14 + (i32.add + (get_local $5) + (get_local $14) + ) + ) + ) + ) + (i32.store + (tee_local $6 + (i32.add + (get_local $2) + (i32.const 4) + ) + ) + (i32.and + (i32.load + (get_local $6) + ) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $14) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $4) + (get_local $14) + ) + (get_local $14) + ) + (set_local $6 + (i32.shr_u + (get_local $14) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $14) + (i32.const 256) + ) + (block + (set_local $0 (i32.add (i32.shl - (tee_local $7 - (block $do-once61 (result i32) - (if (result i32) - (tee_local $1 - (i32.shr_u - (get_local $14) + (get_local $6) + (i32.const 3) + ) + (i32.const 216) + ) + ) + (if + (i32.and + (tee_local $23 + (i32.load + (i32.const 176) + ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $6) + ) + ) + ) + (block $do-once59 + (if + (i32.ge_u + (tee_local $7 + (i32.load + (tee_local $6 + (i32.add + (get_local $0) (i32.const 8) ) ) - (block (result i32) - (drop - (br_if $do-once61 - (i32.const 31) - (i32.gt_u - (get_local $14) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $14) - (i32.add - (tee_local $16 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $1) - (tee_local $23 - (i32.and - (i32.shr_u - (i32.add - (get_local $1) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + ) + ) + (i32.load + (i32.const 192) + ) + ) + (block + (set_local $42 + (get_local $6) + ) + (set_local $34 + (get_local $7) + ) + (br $do-once59) + ) + ) + (call $_abort) + ) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $23) + (get_local $1) + ) + ) + (set_local $42 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + (set_local $34 + (get_local $0) + ) + ) + ) + (i32.store + (get_local $42) + (get_local $4) + ) + (i32.store offset=12 + (get_local $34) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $34) + ) + (i32.store offset=12 + (get_local $4) + (get_local $0) + ) + (br $do-once44) + ) + ) + (set_local $1 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $1 + (i32.shr_u + (get_local $14) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $14) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $14) + (i32.add + (tee_local $16 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $7 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $1) + (tee_local $23 + (i32.and + (i32.shr_u + (i32.add + (get_local $1) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $23) + (i32.const 16) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $6 - (i32.shl - (get_local $5) - (get_local $7) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $23) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $6 + (i32.shl + (get_local $5) + (get_local $7) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $6) - (get_local $5) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $6) + (get_local $5) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $16) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $16) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $4) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $4) - (get_local $7) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $0 - (i32.add - (get_local $4) - (i32.const 16) + (i32.load + (i32.const 180) ) ) - (i32.const 0) - ) - (i32.store - (get_local $0) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $0 - (i32.load - (i32.const 180) - ) - ) - (tee_local $16 - (i32.shl - (i32.const 1) - (get_local $7) - ) - ) + (tee_local $16 + (i32.shl + (i32.const 1) + (get_local $7) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $0) - (get_local $16) - ) - ) - (i32.store - (get_local $1) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $1) - ) - (i32.store offset=12 - (get_local $4) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - (br $do-once44) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $0) + (get_local $16) ) ) - (set_local $16 - (i32.shl - (get_local $14) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) + (i32.store + (get_local $1) + (get_local $4) + ) + (i32.store offset=24 + (get_local $4) + (get_local $1) + ) + (i32.store offset=12 + (get_local $4) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $4) + ) + (br $do-once44) + ) + ) + (set_local $16 + (i32.shl + (get_local $14) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) ) ) - ) - (set_local $0 - (i32.load - (get_local $1) + (i32.eq + (get_local $7) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $10 - (loop $while-in64 (result i32) - (block $while-out63 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $14) - ) - (block - (set_local $35 - (get_local $0) - ) - (br $while-out63 - (i32.const 281) - ) + ) + ) + (set_local $0 + (i32.load + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in64 (result i32) + (block $while-out63 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $1 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $16) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $14) + ) + (block + (set_local $35 + (get_local $0) + ) + (br $while-out63 + (i32.const 281) + ) + ) + ) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $1 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) ) - ) - ) - (block - (set_local $16 (i32.shl - (get_local $16) - (i32.const 1) + (i32.shr_u + (get_local $16) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $0 - (get_local $5) - ) - (br $while-in64) ) - (block (result i32) - (set_local $43 - (get_local $1) - ) - (set_local $51 - (get_local $0) - ) - (i32.const 278) + ) + ) + (block + (set_local $16 + (i32.shl + (get_local $16) + (i32.const 1) ) ) + (set_local $0 + (get_local $5) + ) + (br $while-in64) + ) + (block (result i32) + (set_local $43 + (get_local $1) + ) + (set_local $51 + (get_local $0) + ) + (i32.const 278) ) ) ) - (i32.const 278) ) - (if - (i32.lt_u - (get_local $43) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $43) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $51) - ) - (i32.store offset=12 - (get_local $4) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - ) + ) + (i32.const 278) + ) + (if + (i32.lt_u + (get_local $43) + (i32.load + (i32.const 192) ) - (if - (i32.eq - (get_local $10) - (i32.const 281) - ) - (if - (i32.and - (i32.ge_u - (tee_local $16 - (i32.load - (tee_local $0 - (i32.add - (get_local $35) - (i32.const 8) - ) - ) - ) - ) - (tee_local $5 - (i32.load - (i32.const 192) + ) + (call $_abort) + (block + (i32.store + (get_local $43) + (get_local $4) + ) + (i32.store offset=24 + (get_local $4) + (get_local $51) + ) + (i32.store offset=12 + (get_local $4) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $4) + ) + ) + ) + (if + (i32.eq + (get_local $10) + (i32.const 281) + ) + (if + (i32.and + (i32.ge_u + (tee_local $16 + (i32.load + (tee_local $0 + (i32.add + (get_local $35) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $35) - (get_local $5) - ) ) - (block - (i32.store offset=12 - (get_local $16) - (get_local $4) - ) - (i32.store - (get_local $0) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $16) - ) - (i32.store offset=12 - (get_local $4) - (get_local $35) - ) - (i32.store offset=24 - (get_local $4) - (i32.const 0) + (tee_local $5 + (i32.load + (i32.const 192) ) ) - (call $_abort) + ) + (i32.ge_u + (get_local $35) + (get_local $5) ) ) - ) - ) - (block - (i32.store - (i32.const 188) - (tee_local $16 - (i32.add - (i32.load - (i32.const 188) - ) - (get_local $14) + (block + (i32.store offset=12 + (get_local $16) + (get_local $4) + ) + (i32.store + (get_local $0) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $16) + ) + (i32.store offset=12 + (get_local $4) + (get_local $35) + ) + (i32.store offset=24 + (get_local $4) + (i32.const 0) ) ) + (call $_abort) ) - (i32.store - (i32.const 200) - (get_local $4) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $16) - (i32.const 1) + ) + ) + ) + (block + (i32.store + (i32.const 188) + (tee_local $16 + (i32.add + (i32.load + (i32.const 188) ) + (get_local $14) ) ) ) - ) - (return - (i32.add - (get_local $12) - (i32.const 8) + (i32.store + (i32.const 200) + (get_local $4) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $16) + (i32.const 1) + ) ) ) ) + (return + (i32.add + (get_local $12) + (i32.const 8) + ) + ) ) ) ) - (set_local $14 - (i32.add - (tee_local $12 - (i32.add - (tee_local $0 - (loop $while-in66 (result i32) + ) + (set_local $14 + (i32.add + (tee_local $12 + (i32.add + (tee_local $0 + (loop $while-in66 (result i32) + (if (result i32) (if (result i32) - (if (result i32) - (i32.le_u - (tee_local $4 - (i32.load - (get_local $29) - ) + (i32.le_u + (tee_local $4 + (i32.load + (get_local $29) ) - (get_local $13) ) - (i32.gt_u - (tee_local $14 - (i32.add - (get_local $4) - (i32.load offset=4 - (get_local $29) - ) + (get_local $13) + ) + (i32.gt_u + (tee_local $14 + (i32.add + (get_local $4) + (i32.load offset=4 + (get_local $29) ) ) - (get_local $13) ) - (i32.const 0) + (get_local $13) ) - (get_local $14) - (block - (set_local $29 - (i32.load offset=8 - (get_local $29) - ) + (i32.const 0) + ) + (get_local $14) + (block + (set_local $29 + (i32.load offset=8 + (get_local $29) ) - (br $while-in66) ) + (br $while-in66) ) ) ) - (i32.const -47) ) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $4 - (i32.add - (tee_local $12 - (select - (get_local $13) - (tee_local $4 - (i32.add - (get_local $12) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $14) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $4 + (i32.add + (tee_local $12 + (select + (get_local $13) + (tee_local $4 + (i32.add + (get_local $12) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $14) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $14) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $4) - (tee_local $14 - (i32.add - (get_local $13) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $4) + (tee_local $14 + (i32.add + (get_local $13) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 200) - (tee_local $2 - (i32.add - (get_local $19) - (tee_local $18 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $2 - (i32.add - (get_local $19) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $2 + (i32.add + (get_local $19) + (tee_local $18 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $2 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $2) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $2) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $16 - (i32.sub - (i32.add - (get_local $21) - (i32.const -40) - ) - (get_local $18) - ) - ) - ) - (i32.store offset=4 - (get_local $2) - (i32.or - (get_local $16) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $16) - ) - (i32.const 40) - ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) - ) - (i32.store - (tee_local $16 + ) + (i32.store + (i32.const 188) + (tee_local $16 + (i32.sub (i32.add - (get_local $12) - (i32.const 4) + (get_local $21) + (i32.const -40) ) + (get_local $18) ) - (i32.const 27) ) - (i32.store - (get_local $4) - (i32.load - (i32.const 624) - ) + ) + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $16) + (i32.const 1) ) - (i32.store offset=4 - (get_local $4) - (i32.load - (i32.const 628) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $2) + (get_local $16) ) - (i32.store offset=8 - (get_local $4) - (i32.load - (i32.const 632) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (i32.store offset=12 - (get_local $4) - (i32.load - (i32.const 636) + ) + (i32.store + (tee_local $16 + (i32.add + (get_local $12) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $4) + (i32.load (i32.const 624) - (get_local $19) ) - (i32.store + ) + (i32.store offset=4 + (get_local $4) + (i32.load (i32.const 628) - (get_local $21) ) - (i32.store + ) + (i32.store offset=8 + (get_local $4) + (i32.load + (i32.const 632) + ) + ) + (i32.store offset=12 + (get_local $4) + (i32.load (i32.const 636) - (i32.const 0) ) + ) + (i32.store + (i32.const 624) + (get_local $19) + ) + (i32.store + (i32.const 628) + (get_local $21) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 632) + (get_local $4) + ) + (set_local $4 + (i32.add + (get_local $12) + (i32.const 24) + ) + ) + (loop $do-in68 (i32.store - (i32.const 632) - (get_local $4) + (tee_local $4 + (i32.add + (get_local $4) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $4 - (i32.add - (get_local $12) - (i32.const 24) + (br_if $do-in68 + (i32.lt_u + (i32.add + (get_local $4) + (i32.const 4) + ) + (get_local $0) ) ) - (loop $do-in68 + ) + (if + (i32.ne + (get_local $12) + (get_local $13) + ) + (block (i32.store - (tee_local $4 - (i32.add - (get_local $4) - (i32.const 4) + (get_local $16) + (i32.and + (i32.load + (get_local $16) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $do-in68 - (i32.lt_u - (i32.add - (get_local $4) - (i32.const 4) + (i32.store offset=4 + (get_local $13) + (i32.or + (tee_local $4 + (i32.sub + (get_local $12) + (get_local $13) + ) ) - (get_local $0) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $12) - (get_local $13) + (get_local $4) ) - (block - (i32.store - (get_local $16) - (i32.and - (i32.load - (get_local $16) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $13) - (i32.or - (tee_local $4 - (i32.sub - (get_local $12) - (get_local $13) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $12) + (set_local $2 + (i32.shr_u (get_local $4) + (i32.const 3) ) - (set_local $2 - (i32.shr_u - (get_local $4) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $4) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $4) - (i32.const 256) + (block + (set_local $18 + (i32.add + (i32.shl + (get_local $2) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $18 - (i32.add + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 176) + ) + ) + (tee_local $5 (i32.shl + (i32.const 1) (get_local $2) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $0 + (i32.lt_u + (tee_local $1 (i32.load - (i32.const 176) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $2) - ) - ) - ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $18) - (i32.const 8) - ) + (tee_local $2 + (i32.add + (get_local $18) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $44 - (get_local $2) - ) - (set_local $36 - (get_local $1) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $0) - (get_local $5) - ) - ) (set_local $44 - (i32.add - (get_local $18) - (i32.const 8) - ) + (get_local $2) ) (set_local $36 - (get_local $18) + (get_local $1) ) ) ) - (i32.store - (get_local $44) - (get_local $13) - ) - (i32.store offset=12 - (get_local $36) - (get_local $13) - ) - (i32.store offset=8 - (get_local $13) - (get_local $36) - ) - (i32.store offset=12 - (get_local $13) - (get_local $18) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $0) + (get_local $5) + ) + ) + (set_local $44 + (i32.add + (get_local $18) + (i32.const 8) + ) + ) + (set_local $36 + (get_local $18) + ) ) - (br $do-once40) ) + (i32.store + (get_local $44) + (get_local $13) + ) + (i32.store offset=12 + (get_local $36) + (get_local $13) + ) + (i32.store offset=8 + (get_local $13) + (get_local $36) + ) + (i32.store offset=12 + (get_local $13) + (get_local $18) + ) + (br $do-once40) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $7 + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $18 + (i32.shr_u + (get_local $4) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $18 - (i32.shr_u - (get_local $4) - (i32.const 8) - ) + (i32.gt_u + (get_local $4) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $4) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $4) - (i32.add - (tee_local $2 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $4) + (i32.add + (tee_local $2 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $18 - (i32.and - (i32.shr_u - (i32.add - (tee_local $0 - (i32.shl - (get_local $18) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (get_local $18) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $18 + (i32.and + (i32.shr_u + (i32.add + (tee_local $0 + (i32.shl + (get_local $18) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (get_local $18) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $5) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (get_local $18) - ) + (get_local $5) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (get_local $18) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $2) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $2) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $13) - (get_local $7) + ) + (i32.store offset=28 + (get_local $13) + (get_local $7) + ) + (i32.store offset=20 + (get_local $13) + (i32.const 0) + ) + (i32.store + (get_local $14) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $0 + (i32.load + (i32.const 180) + ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $7) + ) + ) + ) ) - (i32.store offset=20 - (get_local $13) - (i32.const 0) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $2) + (get_local $13) + ) + (i32.store offset=24 + (get_local $13) + (get_local $2) + ) + (i32.store offset=12 + (get_local $13) + (get_local $13) + ) + (i32.store offset=8 + (get_local $13) + (get_local $13) + ) + (br $do-once40) ) - (i32.store - (get_local $14) - (i32.const 0) + ) + (set_local $1 + (i32.shl + (get_local $4) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) + ) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $0 - (i32.load - (i32.const 180) + ) + (set_local $0 + (i32.load + (get_local $2) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in70 (result i32) + (block $while-out69 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) + ) + (i32.const -8) + ) + (get_local $4) + ) + (block + (set_local $37 + (get_local $0) + ) + (br $while-out69 + (i32.const 307) + ) + ) ) - ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $7) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $1) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $1 + (i32.shl + (get_local $1) + (i32.const 1) + ) + ) + (set_local $0 + (get_local $5) + ) + (br $while-in70) + ) + (block (result i32) + (set_local $45 + (get_local $2) + ) + (set_local $52 + (get_local $0) + ) + (i32.const 304) + ) ) ) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $0) - (get_local $1) - ) + (i32.const 304) + ) + (if + (i32.lt_u + (get_local $45) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $2) + (get_local $45) (get_local $13) ) (i32.store offset=24 (get_local $13) - (get_local $2) + (get_local $52) ) (i32.store offset=12 (get_local $13) @@ -5447,323 +5533,199 @@ (get_local $13) (get_local $13) ) - (br $do-once40) - ) - ) - (set_local $1 - (i32.shl - (get_local $4) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) - ) - ) - ) - (set_local $0 - (i32.load - (get_local $2) ) ) (if (i32.eq - (tee_local $10 - (loop $while-in70 (result i32) - (block $while-out69 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $4) - ) - (block - (set_local $37 - (get_local $0) - ) - (br $while-out69 - (i32.const 307) + (get_local $10) + (i32.const 307) + ) + (if + (i32.and + (i32.ge_u + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $37) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $1) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $1 - (i32.shl - (get_local $1) - (i32.const 1) - ) - ) - (set_local $0 - (get_local $5) - ) - (br $while-in70) - ) - (block (result i32) - (set_local $45 - (get_local $2) - ) - (set_local $52 - (get_local $0) - ) - (i32.const 304) - ) + ) + (tee_local $4 + (i32.load + (i32.const 192) ) ) ) - ) - (i32.const 304) - ) - (if - (i32.lt_u - (get_local $45) - (i32.load - (i32.const 192) + (i32.ge_u + (get_local $37) + (get_local $4) ) ) - (call $_abort) (block + (i32.store offset=12 + (get_local $1) + (get_local $13) + ) (i32.store - (get_local $45) + (get_local $0) (get_local $13) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $13) - (get_local $52) + (get_local $1) ) (i32.store offset=12 (get_local $13) - (get_local $13) + (get_local $37) ) - (i32.store offset=8 - (get_local $13) + (i32.store offset=24 (get_local $13) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 307) - ) - (if - (i32.and - (i32.ge_u - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $37) - (i32.const 8) - ) - ) - ) - ) - (tee_local $4 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $37) - (get_local $4) - ) - ) - (block - (i32.store offset=12 - (get_local $1) - (get_local $13) - ) - (i32.store - (get_local $0) - (get_local $13) - ) - (i32.store offset=8 - (get_local $13) - (get_local $1) - ) - (i32.store offset=12 - (get_local $13) - (get_local $37) - ) - (i32.store offset=24 - (get_local $13) - (i32.const 0) - ) - ) - (call $_abort) - ) + (call $_abort) ) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $1 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $1 + (i32.load + (i32.const 192) ) ) - (i32.lt_u - (get_local $19) - (get_local $1) - ) ) - (i32.store - (i32.const 192) + (i32.lt_u (get_local $19) + (get_local $1) ) ) (i32.store - (i32.const 624) + (i32.const 192) (get_local $19) ) - (i32.store - (i32.const 628) - (get_local $21) - ) - (i32.store - (i32.const 636) - (i32.const 0) + ) + (i32.store + (i32.const 624) + (get_local $19) + ) + (i32.store + (i32.const 628) + (get_local $21) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 212) + (i32.load + (i32.const 648) ) - (i32.store - (i32.const 212) - (i32.load - (i32.const 648) + ) + (i32.store + (i32.const 208) + (i32.const -1) + ) + (set_local $1 + (i32.const 0) + ) + (loop $do-in72 + (i32.store offset=12 + (tee_local $0 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) + ) + (i32.const 216) + ) ) + (get_local $0) ) - (i32.store - (i32.const 208) - (i32.const -1) - ) - (set_local $1 - (i32.const 0) + (i32.store offset=8 + (get_local $0) + (get_local $0) ) - (loop $do-in72 - (i32.store offset=12 - (tee_local $0 + (br_if $do-in72 + (i32.ne + (tee_local $1 (i32.add - (i32.shl - (get_local $1) - (i32.const 3) - ) - (i32.const 216) - ) - ) - (get_local $0) - ) - (i32.store offset=8 - (get_local $0) - (get_local $0) - ) - (br_if $do-in72 - (i32.ne - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 1) - ) + (get_local $1) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 200) - (tee_local $1 - (i32.add - (get_local $19) - (tee_local $0 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $19) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $1 + (i32.add + (get_local $19) + (tee_local $0 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $4 - (i32.sub - (i32.add - (get_local $21) - (i32.const -40) - ) - (get_local $0) + ) + (i32.store + (i32.const 188) + (tee_local $4 + (i32.sub + (i32.add + (get_local $21) + (i32.const -40) ) + (get_local $0) ) ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $4) - (i32.const 1) - ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $4) + (i32.const 1) ) - (i32.store offset=4 - (i32.add - (get_local $1) - (get_local $4) - ) - (i32.const 40) + ) + (i32.store offset=4 + (i32.add + (get_local $1) + (get_local $4) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) ) ) @@ -5902,279 +5864,329 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $4) - (i32.const 1) + (if + (i32.and + (get_local $4) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 + (set_local $3 + (get_local $5) + ) + ) + (block $do-once + (set_local $11 + (i32.load (get_local $1) ) - (set_local $3 - (get_local $5) - ) ) - (block - (set_local $11 - (i32.load - (get_local $1) - ) - ) - (if - (i32.eqz - (get_local $0) - ) - (return) + (if + (i32.eqz + (get_local $0) ) - (set_local $5 - (i32.add - (get_local $11) - (get_local $5) - ) + (return) + ) + (set_local $5 + (i32.add + (get_local $11) + (get_local $5) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub - (get_local $1) - (get_local $11) - ) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (get_local $11) ) - (get_local $14) ) - (call $_abort) + (get_local $14) ) - (if - (i32.eq - (get_local $1) - (i32.load - (i32.const 196) - ) + (call $_abort) + ) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 196) ) - (block - (if - (i32.ne - (i32.and - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 4) - ) + ) + (block + (if + (i32.ne + (i32.and + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 4) ) ) ) - (i32.const 3) ) (i32.const 3) ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) - ) - ) - (i32.store - (i32.const 184) - (get_local $5) + (i32.const 3) ) - (i32.store - (get_local $0) - (i32.and - (get_local $7) - (i32.const -2) + (block + (set_local $2 + (get_local $1) ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or + (set_local $3 (get_local $5) - (i32.const 1) ) + (br $do-once) ) - (i32.store - (i32.add - (get_local $1) - (get_local $5) - ) + ) + (i32.store + (i32.const 184) + (get_local $5) + ) + (i32.store + (get_local $0) + (i32.and + (get_local $7) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $5) + (i32.const 1) ) - (return) ) - ) - (set_local $7 - (i32.shr_u - (get_local $11) - (i32.const 3) + (i32.store + (i32.add + (get_local $1) + (get_local $5) + ) + (get_local $5) ) + (return) ) - (if - (i32.lt_u - (get_local $11) - (i32.const 256) + ) + (set_local $7 + (i32.shr_u + (get_local $11) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $11) + (i32.const 256) + ) + (block + (set_local $0 + (i32.load offset=12 + (get_local $1) + ) ) - (block - (set_local $0 - (i32.load offset=12 - (get_local $1) + (if + (i32.ne + (tee_local $11 + (i32.load offset=8 + (get_local $1) + ) ) - ) - (if - (i32.ne - (tee_local $11 - (i32.load offset=8 - (get_local $1) + (tee_local $4 + (i32.add + (i32.shl + (get_local $7) + (i32.const 3) ) + (i32.const 216) ) - (tee_local $4 - (i32.add - (i32.shl - (get_local $7) - (i32.const 3) - ) - (i32.const 216) - ) + ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (get_local $14) ) + (call $_abort) ) - (block - (if - (i32.lt_u + (if + (i32.ne + (i32.load offset=12 (get_local $11) - (get_local $14) ) - (call $_abort) + (get_local $1) ) - (if - (i32.ne - (i32.load offset=12 - (get_local $11) + (call $_abort) + ) + ) + ) + (if + (i32.eq + (get_local $0) + (get_local $11) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $7) ) - (get_local $1) + (i32.const -1) ) - (call $_abort) ) ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + (br $do-once) ) - (if - (i32.eq - (get_local $0) - (get_local $11) + ) + (if + (i32.ne + (get_local $0) + (get_local $4) + ) + (block + (if + (i32.lt_u + (get_local $0) + (get_local $14) + ) + (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $7) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) - (i32.const -1) ) ) - ) - (set_local $2 (get_local $1) ) - (set_local $3 - (get_local $5) + (set_local $10 + (get_local $4) ) - (br $do-once) + (call $_abort) ) ) - (if - (i32.ne + (set_local $10 + (i32.add (get_local $0) - (get_local $4) + (i32.const 8) ) - (block - (if - (i32.lt_u - (get_local $0) - (get_local $14) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) + ) + ) + (i32.store offset=12 + (get_local $11) + (get_local $0) + ) + (i32.store + (get_local $10) + (get_local $11) + ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + (br $do-once) + ) + ) + (set_local $11 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) + ) + (block $do-once0 + (if + (tee_local $10 + (i32.load + (tee_local $7 + (i32.add + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $1) - ) - (set_local $10 - (get_local $4) + (i32.const 4) ) - (call $_abort) - ) - ) - (set_local $10 - (i32.add - (get_local $0) - (i32.const 8) ) ) ) - (i32.store offset=12 - (get_local $11) - (get_local $0) - ) - (i32.store - (get_local $10) - (get_local $11) - ) - (set_local $2 - (get_local $1) + (block + (set_local $0 + (get_local $10) + ) + (set_local $4 + (get_local $7) + ) ) - (set_local $3 - (get_local $5) + (br_if $do-once0 + (i32.eqz + (tee_local $0 + (i32.load + (get_local $4) + ) + ) + ) ) - (br $do-once) - ) - ) - (set_local $11 - (i32.load offset=24 - (get_local $1) ) - ) - (block $do-once0 - (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $1) + (loop $while-in + (if + (tee_local $10 + (i32.load + (tee_local $7 + (i32.add + (get_local $0) + (i32.const 20) + ) + ) ) ) - (get_local $1) + (block + (set_local $0 + (get_local $10) + ) + (set_local $4 + (get_local $7) + ) + (br $while-in) + ) ) - (block - (if + (set_local $7 + (if (result i32) (tee_local $10 (i32.load (tee_local $7 (i32.add - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) + (get_local $0) + (i32.const 16) ) ) ) @@ -6186,322 +6198,260 @@ (set_local $4 (get_local $7) ) + (br $while-in) ) - (br_if $do-once0 - (i32.eqz - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + (block (result i32) + (set_local $9 + (get_local $4) ) + (get_local $0) ) ) - (loop $while-in - (if - (tee_local $10 - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $9) + (get_local $14) + ) + (call $_abort) + (block + (i32.store + (get_local $9) + (i32.const 0) + ) + (set_local $6 + (get_local $7) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $7 + (i32.load offset=8 + (get_local $1) + ) + ) + (get_local $14) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $10 + (i32.add + (get_local $7) + (i32.const 12) ) - (block - (set_local $0 - (get_local $10) - ) - (set_local $4 - (get_local $7) - ) - (br $while-in) + ) + ) + (get_local $1) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (set_local $7 - (if (result i32) - (tee_local $10 - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 16) - ) + ) + (get_local $1) + ) + (block + (i32.store + (get_local $10) + (get_local $0) + ) + (i32.store + (get_local $4) + (get_local $7) + ) + (set_local $6 + (get_local $0) + ) + ) + (call $_abort) + ) + ) + ) + (if + (get_local $11) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $7 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - (block - (set_local $0 - (get_local $10) - ) - (set_local $4 - (get_local $7) - ) - (br $while-in) - ) - (block (result i32) - (set_local $9 - (get_local $4) - ) - (get_local $0) - ) + (i32.const 480) ) ) ) + ) + (block + (i32.store + (get_local $7) + (get_local $6) + ) (if - (i32.lt_u - (get_local $9) - (get_local $14) + (i32.eqz + (get_local $6) ) - (call $_abort) (block (i32.store - (get_local $9) - (i32.const 0) + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) + ) + (i32.const -1) + ) + ) ) - (set_local $6 - (get_local $7) + (set_local $2 + (get_local $1) ) + (set_local $3 + (get_local $5) + ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $7 - (i32.load offset=8 - (get_local $1) - ) + (get_local $11) + (i32.load + (i32.const 192) ) - (get_local $14) ) (call $_abort) ) (if - (i32.ne + (i32.eq (i32.load - (tee_local $10 + (tee_local $0 (i32.add - (get_local $7) - (i32.const 12) + (get_local $11) + (i32.const 16) ) ) ) (get_local $1) ) - (call $_abort) + (i32.store + (get_local $0) + (get_local $6) + ) + (i32.store offset=20 + (get_local $11) + (get_local $6) + ) ) (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $1) + (i32.eqz + (get_local $6) ) (block - (i32.store - (get_local $10) - (get_local $0) - ) - (i32.store - (get_local $4) - (get_local $7) + (set_local $2 + (get_local $1) ) - (set_local $6 - (get_local $0) + (set_local $3 + (get_local $5) ) + (br $do-once) ) - (call $_abort) ) ) ) - ) - (if - (get_local $11) - (block - (if - (i32.eq - (get_local $1) + (if + (i32.lt_u + (get_local $6) + (tee_local $0 (i32.load - (tee_local $7 - (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 480) - ) - ) + (i32.const 192) ) ) - (block - (i32.store - (get_local $7) - (get_local $6) - ) - (if - (i32.eqz - (get_local $6) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $11) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 16) - ) - ) - ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $6) + (get_local $11) + ) + (if + (tee_local $4 + (i32.load + (tee_local $7 + (i32.add (get_local $1) - ) - (i32.store - (get_local $0) - (get_local $6) - ) - (i32.store offset=20 - (get_local $11) - (get_local $6) - ) - ) - (if - (i32.eqz - (get_local $6) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) + (i32.const 16) ) ) ) ) (if (i32.lt_u - (get_local $6) - (tee_local $0 - (i32.load - (i32.const 192) - ) - ) + (get_local $4) + (get_local $0) ) (call $_abort) - ) - (i32.store offset=24 - (get_local $6) - (get_local $11) - ) - (if - (tee_local $4 - (i32.load - (tee_local $7 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (if - (i32.lt_u + (block + (i32.store offset=16 + (get_local $6) (get_local $4) - (get_local $0) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $7) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $7) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $6) (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) - ) - (block (set_local $2 (get_local $1) ) @@ -6510,16 +6460,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + ) ) ) ) @@ -6698,169 +6656,167 @@ (get_local $8) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $9 - (i32.load offset=12 - (get_local $8) - ) + (if + (i32.eq + (tee_local $9 + (i32.load offset=12 + (get_local $8) ) - (get_local $8) ) - (block - (set_local $3 - (if (result i32) - (tee_local $10 - (i32.load - (tee_local $0 - (i32.add - (tee_local $4 - (i32.add - (get_local $8) - (i32.const 16) - ) + (get_local $8) + ) + (block $do-once6 + (set_local $3 + (if (result i32) + (tee_local $10 + (i32.load + (tee_local $0 + (i32.add + (tee_local $4 + (i32.add + (get_local $8) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $10) - ) - (if (result i32) - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + ) + (block (result i32) + (set_local $4 (get_local $0) - (br $do-once6) ) + (get_local $10) ) - ) - (loop $while-in9 - (if - (tee_local $10 + (if (result i32) + (tee_local $0 (i32.load - (tee_local $0 - (i32.add - (get_local $3) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $3 - (get_local $10) - ) - (set_local $4 - (get_local $0) + (get_local $4) ) - (br $while-in9) ) + (get_local $0) + (br $do-once6) ) - (if - (tee_local $10 - (i32.load - (tee_local $0 - (i32.add - (get_local $3) - (i32.const 16) - ) + ) + ) + (loop $while-in9 + (if + (tee_local $10 + (i32.load + (tee_local $0 + (i32.add + (get_local $3) + (i32.const 20) ) ) ) - (block - (set_local $3 - (get_local $10) - ) - (set_local $4 - (get_local $0) - ) - (br $while-in9) + ) + (block + (set_local $3 + (get_local $10) + ) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $4) + (tee_local $10 (i32.load - (i32.const 192) + (tee_local $0 + (i32.add + (get_local $3) + (i32.const 16) + ) + ) ) ) - (call $_abort) (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $3 + (get_local $10) ) - (set_local $12 - (get_local $3) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $0 - (i32.load offset=8 - (get_local $8) - ) - ) - (i32.load - (i32.const 192) + (if + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $12 + (get_local $3) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 + (get_local $8) ) ) - (call $_abort) + (i32.load + (i32.const 192) + ) ) - (if - (i32.ne - (i32.load - (tee_local $10 - (i32.add - (get_local $0) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $10 + (i32.add + (get_local $0) + (i32.const 12) ) ) - (get_local $8) ) - (call $_abort) + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $9) - (i32.const 8) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $9) + (i32.const 8) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $10) - (get_local $9) - ) - (i32.store - (get_local $4) - (get_local $0) - ) - (set_local $12 - (get_local $9) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $10) + (get_local $9) + ) + (i32.store + (get_local $4) + (get_local $0) + ) + (set_local $12 + (get_local $9) ) - (call $_abort) ) + (call $_abort) ) ) ) @@ -8068,169 +8024,165 @@ ) ) ) - (block $label$break$L5 - (if - (i32.eq - (get_local $7) - (i32.const 5) - ) - (block - (if - (i32.lt_u - (i32.sub - (get_local $6) - (tee_local $3 - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 5) + ) + (block $label$break$L5 + (if + (i32.lt_u + (i32.sub + (get_local $6) + (tee_local $3 + (i32.load + (tee_local $5 + (i32.add + (get_local $2) + (i32.const 20) ) ) ) ) - (get_local $1) ) - (block - (set_local $4 - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + (get_local $1) + ) + (block + (set_local $4 + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) ) - (br $label$break$L5) ) + (br $label$break$L5) ) - (set_local $4 - (get_local $3) + ) + (set_local $4 + (get_local $3) + ) + (if + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) + ) + (i32.const -1) ) (block $label$break$L10 - (if - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) - ) - (block - (set_local $3 - (get_local $1) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (if + (i32.eqz + (get_local $3) ) - (loop $while-in - (if - (i32.eqz - (get_local $3) - ) - (block - (set_local $3 - (i32.const 0) - ) - (br $label$break$L10) - ) - ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) - ) - ) - ) - (i32.const 10) - ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) - ) + (block + (set_local $3 + (i32.const 0) ) + (br $label$break$L10) ) - (if - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) + ) + (if + (i32.ne + (i32.load8_s + (i32.add (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) - (i32.const 2) ) ) - (get_local $3) - ) - (block - (set_local $4 - (get_local $3) - ) - (br $label$break$L5) ) + (i32.const 10) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) - (set_local $0 + ) + ) + (if + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) (i32.add - (get_local $0) - (get_local $3) + (i32.and + (i32.load offset=36 + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 2) ) ) + (get_local $3) + ) + (block (set_local $4 - (i32.load - (get_local $5) - ) + (get_local $3) ) + (br $label$break$L5) ) - (set_local $3 - (i32.const 0) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) ) - ) - (drop - (call $_memcpy - (get_local $4) - (get_local $0) - (get_local $1) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) + ) ) - ) - (i32.store - (get_local $5) - (i32.add + (set_local $4 (i32.load (get_local $5) ) - (get_local $1) ) ) - (set_local $4 - (i32.add - (get_local $3) - (get_local $1) + (set_local $3 + (i32.const 0) + ) + ) + (drop + (call $_memcpy + (get_local $4) + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $5) + (i32.add + (i32.load + (get_local $5) ) + (get_local $1) + ) + ) + (set_local $4 + (i32.add + (get_local $3) + (get_local $1) ) ) ) @@ -8240,10 +8192,10 @@ (func $_fflush (; 19 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) (local $2 i32) - (block $do-once - (if - (get_local $0) - (block + (if + (get_local $0) + (set_local $1 + (block $do-once (result i32) (if (i32.le_s (i32.load offset=76 @@ -8251,95 +8203,90 @@ ) (i32.const -1) ) - (block - (set_local $1 - (call $___fflush_unlocked - (get_local $0) - ) + (br $do-once + (call $___fflush_unlocked + (get_local $0) ) - (br $do-once) ) ) - (set_local $1 - (call $___fflush_unlocked - (get_local $0) - ) + (call $___fflush_unlocked + (get_local $0) ) ) - (block - (set_local $0 - (if (result i32) + ) + (block + (set_local $0 + (if (result i32) + (i32.load + (i32.const 56) + ) + (call $_fflush (i32.load (i32.const 56) ) - (call $_fflush - (i32.load - (i32.const 56) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $___lock - (i32.const 36) + ) + (call $___lock + (i32.const 36) + ) + (if + (tee_local $1 + (i32.load + (i32.const 32) + ) ) - (if - (tee_local $1 - (i32.load - (i32.const 32) - ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 - (get_local $1) + (set_local $1 + (get_local $0) + ) + (loop $while-in + (drop + (i32.load offset=76 + (get_local $2) + ) ) - (set_local $1 - (get_local $0) + (set_local $0 + (i32.const 0) ) - (loop $while-in - (drop - (i32.load offset=76 + (if + (i32.gt_u + (i32.load offset=20 + (get_local $2) + ) + (i32.load offset=28 (get_local $2) ) ) - (set_local $0 - (i32.const 0) - ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $2) - ) - (i32.load offset=28 + (set_local $1 + (i32.or + (call $___fflush_unlocked (get_local $2) ) - ) - (set_local $1 - (i32.or - (call $___fflush_unlocked - (get_local $2) - ) - (get_local $1) - ) + (get_local $1) ) ) - (br_if $while-in - (tee_local $2 - (i32.load offset=56 - (get_local $2) - ) + ) + (br_if $while-in + (tee_local $2 + (i32.load offset=56 + (get_local $2) ) ) ) ) - (set_local $1 - (get_local $0) - ) ) - (call $___unlock - (i32.const 36) + (set_local $1 + (get_local $0) ) ) + (call $___unlock + (i32.const 36) + ) ) ) (get_local $1) @@ -8350,60 +8297,58 @@ (local $3 i32) (local $4 i32) (local $5 i32) - (block $label$break$L1 - (if - (i32.and - (tee_local $3 - (get_local $0) - ) - (i32.const 3) + (if + (i32.and + (tee_local $3 + (get_local $0) ) - (block - (set_local $4 - (get_local $3) - ) - (loop $while-in - (if - (i32.eqz - (i32.load8_s - (get_local $0) - ) + (i32.const 3) + ) + (block $label$break$L1 + (set_local $4 + (get_local $3) + ) + (loop $while-in + (if + (i32.eqz + (i32.load8_s + (get_local $0) ) - (block - (set_local $5 - (get_local $4) - ) - (br $label$break$L1) + ) + (block + (set_local $5 + (get_local $4) ) + (br $label$break$L1) ) - (br_if $while-in - (i32.and - (tee_local $4 - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + ) + (br_if $while-in + (i32.and + (tee_local $4 + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) - (i32.const 3) ) + (i32.const 3) ) ) - (set_local $2 - (i32.const 4) - ) - (set_local $1 - (get_local $0) - ) ) - (block - (set_local $1 - (get_local $0) - ) - (set_local $2 - (i32.const 4) - ) + (set_local $2 + (i32.const 4) + ) + (set_local $1 + (get_local $0) + ) + ) + (block + (set_local $1 + (get_local $0) + ) + (set_local $2 + (i32.const 4) ) ) ) @@ -8497,7 +8442,7 @@ (local $6 i32) (local $7 i32) (local $8 i32) - (set_local $4 + (set_local $3 (get_global $STACKTOP) ) (set_global $STACKTOP @@ -8507,8 +8452,8 @@ ) ) (i32.store8 - (tee_local $5 - (get_local $4) + (tee_local $4 + (get_local $3) ) (i32.const 10) ) @@ -8524,10 +8469,10 @@ ) ) (block - (set_local $6 + (set_local $5 (get_local $2) ) - (set_local $7 + (set_local $6 (i32.const 4) ) ) @@ -8535,28 +8480,28 @@ (call $___towrite (get_local $0) ) - (set_local $3 + (set_local $7 (i32.const -1) ) (block - (set_local $6 + (set_local $5 (i32.load (get_local $1) ) ) - (set_local $7 + (set_local $6 (i32.const 4) ) ) ) ) - (block $do-once - (if - (i32.eq - (get_local $7) - (i32.const 4) - ) - (block + (if + (i32.eq + (get_local $6) + (i32.const 4) + ) + (set_local $7 + (block $do-once (result i32) (if (if (result i32) (i32.lt_u @@ -8570,7 +8515,7 @@ ) ) ) - (get_local $6) + (get_local $5) ) (i32.ne (tee_local $8 @@ -8594,44 +8539,41 @@ (get_local $1) (i32.const 10) ) - (set_local $3 + (br $do-once (get_local $8) ) - (br $do-once) ) ) - (set_local $3 - (if (result i32) - (i32.eq - (call_indirect (type $FUNCSIG$iiii) - (get_local $0) - (get_local $5) - (i32.const 1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $0) - ) - (i32.const 7) + (if (result i32) + (i32.eq + (call_indirect (type $FUNCSIG$iiii) + (get_local $0) + (get_local $4) + (i32.const 1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $0) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) - (i32.const 1) ) - (i32.load8_u - (get_local $5) - ) - (i32.const -1) + (i32.const 1) ) + (i32.load8_u + (get_local $4) + ) + (i32.const -1) ) ) ) ) (set_global $STACKTOP - (get_local $4) + (get_local $3) ) - (get_local $3) + (get_local $7) ) (func $___fflush_unlocked (; 22 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) @@ -9060,72 +9002,70 @@ (i32.shr_s (i32.shl (tee_local $0 - (block $do-once (result i32) - (if (result i32) - (i32.lt_s - (i32.add - (call $_fwrite + (if (result i32) + (i32.lt_s + (i32.add + (call $_fwrite + (i32.const 672) + (call $_strlen (i32.const 672) - (call $_strlen - (i32.const 672) - ) - (get_local $0) ) - (i32.const -1) + (get_local $0) ) - (i32.const 0) + (i32.const -1) ) - (i32.const 1) - (block (result i32) - (if - (if (result i32) - (i32.ne - (i32.load8_s offset=75 - (get_local $0) - ) - (i32.const 10) + (i32.const 0) + ) + (i32.const 1) + (block $do-once (result i32) + (if + (if (result i32) + (i32.ne + (i32.load8_s offset=75 + (get_local $0) ) - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (i32.const 10) + ) + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (i32.load offset=16 - (get_local $0) - ) ) - (i32.const 0) - ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) + (i32.load offset=16 + (get_local $0) ) - (i32.store8 + ) + (i32.const 0) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) - ) - (br $do-once - (i32.const 0) + (i32.const 1) ) ) - ) - (i32.lt_s - (call $___overflow - (get_local $0) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once + (i32.const 0) ) - (i32.const 0) ) ) + (i32.lt_s + (call $___overflow + (get_local $0) + ) + (i32.const 0) + ) ) ) ) diff --git a/test/emcc_O2_hello_world.fromasm.imprecise b/test/emcc_O2_hello_world.fromasm.imprecise index c2da41033..cbdba1b17 100644 --- a/test/emcc_O2_hello_world.fromasm.imprecise +++ b/test/emcc_O2_hello_world.fromasm.imprecise @@ -103,1246 +103,1242 @@ (local $50 i32) (local $51 i32) (local $52 i32) - (block $do-once - (if - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block - (if - (i32.and - (tee_local $1 - (i32.shr_u - (tee_local $15 - (i32.load - (i32.const 176) - ) + (if + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block + (if + (i32.and + (tee_local $1 + (i32.shr_u + (tee_local $15 + (i32.load + (i32.const 176) ) - (tee_local $5 - (i32.shr_u - (tee_local $9 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $5 + (i32.shr_u + (tee_local $9 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $5 - (i32.load - (tee_local $17 - (i32.add - (tee_local $0 - (i32.load - (tee_local $6 - (i32.add - (tee_local $3 - (i32.add - (i32.shl - (tee_local $1 - (i32.add - (i32.xor - (i32.and - (get_local $1) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $5 + (i32.load + (tee_local $17 + (i32.add + (tee_local $0 + (i32.load + (tee_local $6 + (i32.add + (tee_local $3 + (i32.add + (i32.shl + (tee_local $1 + (i32.add + (i32.xor + (i32.and + (get_local $1) (i32.const 1) ) - (get_local $5) + (i32.const 1) ) + (get_local $5) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.ne - (get_local $3) - (get_local $5) - ) - (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) + ) + (if + (i32.ne + (get_local $3) + (get_local $5) + ) + (block + (if + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $10 - (i32.add - (get_local $5) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 12) ) ) - (get_local $0) - ) - (block - (i32.store - (get_local $10) - (get_local $3) - ) - (i32.store - (get_local $6) - (get_local $5) - ) ) - (call $_abort) + (get_local $0) ) - ) - (i32.store - (i32.const 176) - (i32.and - (get_local $15) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) + (block + (i32.store + (get_local $10) + (get_local $3) + ) + (i32.store + (get_local $6) + (get_local $5) ) ) + (call $_abort) ) ) - (i32.store offset=4 - (get_local $0) - (i32.or - (tee_local $5 + (i32.store + (i32.const 176) + (i32.and + (get_local $15) + (i32.xor (i32.shl + (i32.const 1) (get_local $1) - (i32.const 3) ) + (i32.const -1) ) - (i32.const 3) ) ) - (i32.store - (tee_local $6 - (i32.add - (i32.add - (get_local $0) - (get_local $5) - ) - (i32.const 4) + ) + (i32.store offset=4 + (get_local $0) + (i32.or + (tee_local $5 + (i32.shl + (get_local $1) + (i32.const 3) ) ) - (i32.or - (i32.load - (get_local $6) + (i32.const 3) + ) + ) + (i32.store + (tee_local $6 + (i32.add + (i32.add + (get_local $0) + (get_local $5) ) - (i32.const 1) + (i32.const 4) ) ) - (return - (get_local $17) + (i32.or + (i32.load + (get_local $6) + ) + (i32.const 1) ) ) + (return + (get_local $17) + ) ) - (if - (i32.gt_u - (get_local $9) - (tee_local $6 - (i32.load - (i32.const 184) - ) + ) + (if + (i32.gt_u + (get_local $9) + (tee_local $6 + (i32.load + (i32.const 184) ) ) - (block - (if - (get_local $1) - (block - (set_local $3 - (i32.and - (i32.shr_u - (tee_local $5 - (i32.add - (i32.and - (tee_local $3 - (i32.and - (i32.shl - (get_local $1) - (get_local $5) - ) - (i32.or - (tee_local $5 - (i32.shl - (i32.const 2) - (get_local $5) - ) - ) - (i32.sub - (i32.const 0) + ) + (block + (if + (get_local $1) + (block + (set_local $3 + (i32.and + (i32.shr_u + (tee_local $5 + (i32.add + (i32.and + (tee_local $3 + (i32.and + (i32.shl + (get_local $1) + (get_local $5) + ) + (i32.or + (tee_local $5 + (i32.shl + (i32.const 2) (get_local $5) ) ) + (i32.sub + (i32.const 0) + (get_local $5) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $3) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $3 - (i32.load - (tee_local $10 - (i32.add - (tee_local $0 - (i32.load - (tee_local $22 - (i32.add - (tee_local $11 - (i32.add - (i32.shl - (tee_local $7 - (i32.add + ) + (set_local $3 + (i32.load + (tee_local $10 + (i32.add + (tee_local $0 + (i32.load + (tee_local $22 + (i32.add + (tee_local $11 + (i32.add + (i32.shl + (tee_local $7 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $5 - (i32.and - (i32.shr_u - (tee_local $10 - (i32.shr_u - (get_local $5) - (get_local $3) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $3) - ) - (tee_local $10 + (tee_local $5 (i32.and (i32.shr_u - (tee_local $0 + (tee_local $10 (i32.shr_u - (get_local $10) (get_local $5) + (get_local $3) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $3) ) - (tee_local $0 + (tee_local $10 (i32.and (i32.shr_u - (tee_local $11 + (tee_local $0 (i32.shr_u - (get_local $0) (get_local $10) + (get_local $5) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $11 + (tee_local $0 (i32.and (i32.shr_u - (tee_local $22 + (tee_local $11 (i32.shr_u - (get_local $11) (get_local $0) + (get_local $10) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $22) - (get_local $11) + (tee_local $11 + (i32.and + (i32.shr_u + (tee_local $22 + (i32.shr_u + (get_local $11) + (get_local $0) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $22) + (get_local $11) + ) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.ne - (get_local $11) - (get_local $3) - ) - (block - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 192) - ) + ) + (if + (i32.ne + (get_local $11) + (get_local $3) + ) + (block + (if + (i32.lt_u + (get_local $3) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $5 - (i32.add - (get_local $3) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add + (get_local $3) + (i32.const 12) ) ) - (get_local $0) ) - (block - (i32.store - (get_local $5) - (get_local $11) - ) - (i32.store - (get_local $22) - (get_local $3) - ) - (set_local $17 - (i32.load - (i32.const 184) - ) + (get_local $0) + ) + (block + (i32.store + (get_local $5) + (get_local $11) + ) + (i32.store + (get_local $22) + (get_local $3) + ) + (set_local $17 + (i32.load + (i32.const 184) ) ) - (call $_abort) ) + (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.and - (get_local $15) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $7) - ) - (i32.const -1) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (get_local $15) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $7) ) + (i32.const -1) ) ) - (set_local $17 - (get_local $6) - ) + ) + (set_local $17 + (get_local $6) ) ) - (i32.store offset=4 - (get_local $0) - (i32.or + ) + (i32.store offset=4 + (get_local $0) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $15 + (i32.add + (get_local $0) (get_local $9) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $15 - (i32.add - (get_local $0) - (get_local $9) - ) - ) - (i32.or - (tee_local $6 - (i32.sub - (i32.shl - (get_local $7) - (i32.const 3) - ) - (get_local $9) + (i32.or + (tee_local $6 + (i32.sub + (i32.shl + (get_local $7) + (i32.const 3) ) + (get_local $9) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $15) - (get_local $6) - ) + ) + (i32.store + (i32.add + (get_local $15) (get_local $6) ) - (if - (get_local $17) - (block - (set_local $3 - (i32.load - (i32.const 196) - ) + (get_local $6) + ) + (if + (get_local $17) + (block + (set_local $3 + (i32.load + (i32.const 196) ) - (set_local $11 - (i32.add - (i32.shl - (tee_local $22 - (i32.shr_u - (get_local $17) - (i32.const 3) - ) + ) + (set_local $11 + (i32.add + (i32.shl + (tee_local $22 + (i32.shr_u + (get_local $17) + (i32.const 3) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (if - (i32.and - (tee_local $5 - (i32.load - (i32.const 176) - ) + ) + (if + (i32.and + (tee_local $5 + (i32.load + (i32.const 176) ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $22) - ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $22) ) ) - (if - (i32.lt_u - (tee_local $17 - (i32.load - (tee_local $22 - (i32.add - (get_local $11) - (i32.const 8) - ) + ) + (if + (i32.lt_u + (tee_local $17 + (i32.load + (tee_local $22 + (i32.add + (get_local $11) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $38 - (get_local $22) - ) - (set_local $32 - (get_local $17) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $5) - (get_local $1) - ) - ) (set_local $38 - (i32.add - (get_local $11) - (i32.const 8) - ) + (get_local $22) ) (set_local $32 - (get_local $11) + (get_local $17) ) ) ) - (i32.store - (get_local $38) - (get_local $3) - ) - (i32.store offset=12 - (get_local $32) - (get_local $3) - ) - (i32.store offset=8 - (get_local $3) - (get_local $32) - ) - (i32.store offset=12 - (get_local $3) - (get_local $11) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $5) + (get_local $1) + ) + ) + (set_local $38 + (i32.add + (get_local $11) + (i32.const 8) + ) + ) + (set_local $32 + (get_local $11) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $6) - ) - (i32.store - (i32.const 196) - (get_local $15) - ) - (return - (get_local $10) + (i32.store + (get_local $38) + (get_local $3) + ) + (i32.store offset=12 + (get_local $32) + (get_local $3) + ) + (i32.store offset=8 + (get_local $3) + (get_local $32) + ) + (i32.store offset=12 + (get_local $3) + (get_local $11) + ) ) ) + (i32.store + (i32.const 184) + (get_local $6) + ) + (i32.store + (i32.const 196) + (get_local $15) + ) + (return + (get_local $10) + ) ) - (if - (tee_local $15 - (i32.load - (i32.const 180) - ) + ) + (if + (tee_local $15 + (i32.load + (i32.const 180) ) - (block - (set_local $15 - (i32.and - (i32.shr_u - (tee_local $6 - (i32.add - (i32.and + ) + (block + (set_local $15 + (i32.and + (i32.shr_u + (tee_local $6 + (i32.add + (i32.and + (get_local $15) + (i32.sub + (i32.const 0) (get_local $15) - (i32.sub - (i32.const 0) - (get_local $15) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $1 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $17 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $1 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $17 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $6 - (i32.and - (i32.shr_u - (tee_local $11 - (i32.shr_u - (get_local $6) - (get_local $15) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $15) - ) - (tee_local $11 + (tee_local $6 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $11 (i32.shr_u - (get_local $11) (get_local $6) + (get_local $15) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $15) ) - (tee_local $3 + (tee_local $11 (i32.and (i32.shr_u - (tee_local $1 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $11) + (get_local $6) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $1 + (tee_local $3 (i32.and (i32.shr_u - (tee_local $5 + (tee_local $1 (i32.shr_u - (get_local $1) (get_local $3) + (get_local $11) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $5) - (get_local $1) + (tee_local $1 + (i32.and + (i32.shr_u + (tee_local $5 + (i32.shr_u + (get_local $1) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $5) + (get_local $1) + ) ) + (i32.const 2) ) ) ) - (i32.const -8) ) - (get_local $9) + (i32.const -8) ) + (get_local $9) ) - (set_local $3 - (tee_local $5 - (get_local $17) - ) + ) + (set_local $3 + (tee_local $5 + (get_local $17) ) - (loop $while-in - (block $while-out - (set_local $11 - (i32.lt_u - (tee_local $17 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $5 + ) + (loop $while-in + (block $while-out + (set_local $11 + (i32.lt_u + (tee_local $17 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $5 + (if (result i32) + (tee_local $17 + (i32.load offset=16 + (get_local $5) + ) + ) + (get_local $17) (if (result i32) - (tee_local $17 - (i32.load offset=16 + (tee_local $11 + (i32.load offset=20 (get_local $5) ) ) - (get_local $17) - (if (result i32) - (tee_local $11 - (i32.load offset=20 - (get_local $5) - ) + (get_local $11) + (block + (set_local $8 + (get_local $1) ) - (get_local $11) - (block - (set_local $8 - (get_local $1) - ) - (set_local $2 - (get_local $3) - ) - (br $while-out) + (set_local $2 + (get_local $3) ) + (br $while-out) ) ) ) ) - (i32.const -8) ) - (get_local $9) + (i32.const -8) ) + (get_local $9) ) - (get_local $1) ) + (get_local $1) ) - (set_local $1 - (select - (get_local $17) - (get_local $1) - (get_local $11) - ) + ) + (set_local $1 + (select + (get_local $17) + (get_local $1) + (get_local $11) ) - (set_local $3 - (select - (get_local $5) - (get_local $3) - (get_local $11) - ) + ) + (set_local $3 + (select + (get_local $5) + (get_local $3) + (get_local $11) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $2) - (tee_local $3 - (i32.load - (i32.const 192) - ) + ) + (if + (i32.lt_u + (get_local $2) + (tee_local $3 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $2) - (tee_local $5 - (i32.add - (get_local $2) - (get_local $9) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $2) + (tee_local $5 + (i32.add + (get_local $2) + (get_local $9) ) ) - (call $_abort) ) - (set_local $1 - (i32.load offset=24 - (get_local $2) - ) + (call $_abort) + ) + (set_local $1 + (i32.load offset=24 + (get_local $2) ) - (block $do-once4 - (if - (i32.eq - (tee_local $10 - (i32.load offset=12 - (get_local $2) - ) - ) + ) + (if + (i32.eq + (tee_local $10 + (i32.load offset=12 (get_local $2) ) - (block - (set_local $6 - (if (result i32) - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $17 - (get_local $7) - ) - (get_local $0) - ) - (if (result i32) - (tee_local $17 - (i32.load - (tee_local $11 - (i32.add - (get_local $2) - (i32.const 16) - ) - ) - ) + ) + (get_local $2) + ) + (block $do-once4 + (set_local $6 + (if (result i32) + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $2) + (i32.const 20) ) - (get_local $11) - (br $do-once4) ) ) ) - (loop $while-in7 - (if - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $17) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $17 - (get_local $7) - ) - (set_local $6 - (get_local $0) - ) - (br $while-in7) - ) + (block (result i32) + (set_local $17 + (get_local $7) ) - (if - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $17) - (i32.const 16) - ) + (get_local $0) + ) + (if (result i32) + (tee_local $17 + (i32.load + (tee_local $11 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (block - (set_local $17 - (get_local $7) - ) - (set_local $6 - (get_local $0) + ) + (get_local $11) + (br $do-once4) + ) + ) + ) + (loop $while-in7 + (if + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $17) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $6) - (get_local $3) + (block + (set_local $17 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $6) - (i32.const 0) - ) - (set_local $24 - (get_local $17) - ) + (set_local $6 + (get_local $0) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $0 - (i32.load offset=8 - (get_local $2) + (i32.add + (get_local $17) + (i32.const 16) ) ) - (get_local $3) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 12) - ) - ) - ) - (get_local $2) + (block + (set_local $17 + (get_local $7) ) - (call $_abort) + (set_local $6 + (get_local $0) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $11 - (i32.add - (get_local $10) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $6) + (get_local $3) + ) + (call $_abort) + (block + (i32.store + (get_local $6) + (i32.const 0) + ) + (set_local $24 + (get_local $17) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 (get_local $2) ) - (block - (i32.store - (get_local $7) - (get_local $10) - ) - (i32.store - (get_local $11) + ) + (get_local $3) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $0) + (i32.const 12) ) - (set_local $24 + ) + ) + (get_local $2) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $11 + (i32.add (get_local $10) + (i32.const 8) ) ) - (call $_abort) + ) + (get_local $2) + ) + (block + (i32.store + (get_local $7) + (get_local $10) + ) + (i32.store + (get_local $11) + (get_local $0) + ) + (set_local $24 + (get_local $10) ) ) + (call $_abort) ) ) + ) + (if + (get_local $1) (block $do-once8 (if - (get_local $1) - (block - (if - (i32.eq - (get_local $2) - (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $10 - (i32.load offset=28 - (get_local $2) - ) - ) - (i32.const 2) + (i32.eq + (get_local $2) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $10 + (i32.load offset=28 + (get_local $2) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $3) - (get_local $24) - ) - (if - (i32.eqz - (get_local $24) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $10) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $3) + (get_local $24) + ) + (if + (i32.eqz + (get_local $24) ) (block - (if - (i32.lt_u - (get_local $1) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $10 - (i32.add - (get_local $1) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $10) ) + (i32.const -1) ) - (get_local $2) - ) - (i32.store - (get_local $10) - (get_local $24) - ) - (i32.store offset=20 - (get_local $1) - (get_local $24) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $24) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $24) - (tee_local $10 - (i32.load - (i32.const 192) - ) + (get_local $1) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $24) - (get_local $1) - ) (if - (tee_local $3 - (i32.load offset=16 - (get_local $2) - ) - ) - (if - (i32.lt_u - (get_local $3) - (get_local $10) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $24) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $24) + (i32.eq + (i32.load + (tee_local $10 + (i32.add + (get_local $1) + (i32.const 16) + ) ) ) + (get_local $2) + ) + (i32.store + (get_local $10) + (get_local $24) + ) + (i32.store offset=20 + (get_local $1) + (get_local $24) ) ) - (if - (tee_local $3 - (i32.load offset=20 - (get_local $2) - ) + (br_if $do-once8 + (i32.eqz + (get_local $24) ) - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $24) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $24) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $24) + (tee_local $10 + (i32.load + (i32.const 192) ) ) ) + (call $_abort) ) - ) - (if - (i32.lt_u - (get_local $8) - (i32.const 16) + (i32.store offset=24 + (get_local $24) + (get_local $1) ) - (block - (i32.store offset=4 - (get_local $2) - (i32.or - (tee_local $1 - (i32.add - (get_local $8) - (get_local $9) - ) - ) - (i32.const 3) + (if + (tee_local $3 + (i32.load offset=16 + (get_local $2) ) ) - (i32.store - (tee_local $3 - (i32.add - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $3) + (get_local $10) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $24) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $24) ) ) - (i32.or + ) + ) + (if + (tee_local $3 + (i32.load offset=20 + (get_local $2) + ) + ) + (if + (i32.lt_u + (get_local $3) (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $24) (get_local $3) ) - (i32.const 1) + (i32.store offset=24 + (get_local $3) + (get_local $24) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $2) - (i32.or - (get_local $9) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $8) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $2) + (i32.or + (tee_local $1 + (i32.add + (get_local $8) + (get_local $9) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $8) - (i32.const 1) + ) + (i32.store + (tee_local $3 + (i32.add + (i32.add + (get_local $2) + (get_local $1) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $5) - (get_local $8) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or (get_local $8) + (i32.const 1) ) - (if - (tee_local $3 + ) + (i32.store + (i32.add + (get_local $5) + (get_local $8) + ) + (get_local $8) + ) + (if + (tee_local $3 + (i32.load + (i32.const 184) + ) + ) + (block + (set_local $1 (i32.load - (i32.const 184) + (i32.const 196) ) ) - (block - (set_local $1 - (i32.load - (i32.const 196) + (set_local $3 + (i32.add + (i32.shl + (tee_local $10 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 216) ) - (set_local $3 - (i32.add + ) + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 176) + ) + ) + (tee_local $11 (i32.shl - (tee_local $10 - (i32.shr_u - (get_local $3) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $10) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $0 + (i32.lt_u + (tee_local $7 (i32.load - (i32.const 176) - ) - ) - (tee_local $11 - (i32.shl - (i32.const 1) - (get_local $10) - ) - ) - ) - (if - (i32.lt_u - (tee_local $7 - (i32.load - (tee_local $10 - (i32.add - (get_local $3) - (i32.const 8) - ) + (tee_local $10 + (i32.add + (get_local $3) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $39 - (get_local $10) - ) - (set_local $22 - (get_local $7) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $0) - (get_local $11) - ) - ) (set_local $39 - (i32.add - (get_local $3) - (i32.const 8) - ) + (get_local $10) ) (set_local $22 - (get_local $3) + (get_local $7) ) ) ) - (i32.store - (get_local $39) - (get_local $1) - ) - (i32.store offset=12 - (get_local $22) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $22) - ) - (i32.store offset=12 - (get_local $1) - (get_local $3) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $0) + (get_local $11) + ) + ) + (set_local $39 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + (set_local $22 + (get_local $3) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $8) - ) - (i32.store - (i32.const 196) - (get_local $5) + (i32.store + (get_local $39) + (get_local $1) + ) + (i32.store offset=12 + (get_local $22) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $22) + ) + (i32.store offset=12 + (get_local $1) + (get_local $3) + ) ) ) - ) - (return - (i32.add - (get_local $2) - (i32.const 8) + (i32.store + (i32.const 184) + (get_local $8) ) + (i32.store + (i32.const 196) + (get_local $5) + ) + ) + ) + (return + (i32.add + (get_local $2) + (i32.const 8) ) ) ) ) ) ) + ) + (block $do-once (set_local $9 (if (result i32) (i32.le_u @@ -1374,217 +1370,215 @@ (get_local $1) ) ) - (block $label$break$L123 - (if - (tee_local $15 - (i32.load offset=480 - (i32.shl - (tee_local $9 + (if + (tee_local $15 + (i32.load offset=480 + (i32.shl + (tee_local $9 + (if (result i32) + (tee_local $7 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $7 - (i32.shr_u - (get_local $3) - (i32.const 8) - ) + (i32.gt_u + (get_local $1) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $1) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.add - (tee_local $15 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.add + (tee_local $15 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (i32.add - (tee_local $10 - (i32.shl - (get_local $7) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $7) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $7 + (i32.and + (i32.shr_u + (i32.add + (tee_local $10 + (i32.shl + (get_local $7) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $7) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $3) ) - (tee_local $10 - (i32.and - (i32.shr_u - (i32.add - (tee_local $17 - (i32.shl - (get_local $10) - (get_local $7) - ) + (get_local $3) + ) + (tee_local $10 + (i32.and + (i32.shr_u + (i32.add + (tee_local $17 + (i32.shl + (get_local $10) + (get_local $7) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $17) - (get_local $10) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $17) + (get_local $10) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $15) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $15) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) + (i32.const 2) ) ) - (block - (set_local $10 - (get_local $0) - ) - (set_local $17 - (i32.const 0) - ) - (set_local $3 - (i32.shl - (get_local $1) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $9) - (i32.const 1) - ) - ) - (i32.eq + ) + (block $label$break$L123 + (set_local $10 + (get_local $0) + ) + (set_local $17 + (i32.const 0) + ) + (set_local $3 + (i32.shl + (get_local $1) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $9) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $9) + (i32.const 31) + ) ) ) - (set_local $7 - (get_local $15) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $0 - (i32.sub - (tee_local $22 - (i32.and - (i32.load offset=4 - (get_local $7) - ) - (i32.const -8) + ) + (set_local $7 + (get_local $15) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $0 + (i32.sub + (tee_local $22 + (i32.and + (i32.load offset=4 + (get_local $7) ) + (i32.const -8) ) - (get_local $1) ) + (get_local $1) ) - (get_local $10) ) - (set_local $6 - (if (result i32) - (i32.eq - (get_local $22) - (get_local $1) - ) - (block - (set_local $28 - (get_local $0) - ) - (set_local $26 - (get_local $7) - ) - (set_local $30 - (get_local $7) - ) - (set_local $10 - (i32.const 90) - ) - (br $label$break$L123) + (get_local $10) + ) + (set_local $6 + (if (result i32) + (i32.eq + (get_local $22) + (get_local $1) + ) + (block + (set_local $28 + (get_local $0) ) - (block (result i32) - (set_local $10 - (get_local $0) - ) + (set_local $26 (get_local $7) ) - ) - ) - ) - (set_local $22 - (select - (get_local $17) - (tee_local $0 - (i32.load offset=20 + (set_local $30 (get_local $7) ) + (set_local $10 + (i32.const 90) + ) + (br $label$break$L123) ) - (i32.or - (i32.eqz + (block (result i32) + (set_local $10 (get_local $0) ) - (i32.eq - (get_local $0) - (tee_local $7 - (i32.load + (get_local $7) + ) + ) + ) + ) + (set_local $22 + (select + (get_local $17) + (tee_local $0 + (i32.load offset=20 + (get_local $7) + ) + ) + (i32.or + (i32.eqz + (get_local $0) + ) + (i32.eq + (get_local $0) + (tee_local $7 + (i32.load + (i32.add (i32.add - (i32.add - (get_local $7) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $3) - (i32.const 31) - ) - (i32.const 2) + (get_local $7) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $3) + (i32.const 31) ) + (i32.const 2) ) ) ) @@ -1592,54 +1586,54 @@ ) ) ) - (set_local $5 - (if (result i32) - (tee_local $0 - (i32.eqz - (get_local $7) - ) + ) + (set_local $5 + (if (result i32) + (tee_local $0 + (i32.eqz + (get_local $7) ) - (block (result i32) - (set_local $33 - (get_local $10) - ) - (set_local $31 - (get_local $6) - ) - (set_local $10 - (i32.const 86) - ) + ) + (block (result i32) + (set_local $33 + (get_local $10) + ) + (set_local $31 + (get_local $6) + ) + (set_local $10 + (i32.const 86) + ) + (get_local $22) + ) + (block + (set_local $17 (get_local $22) ) - (block - (set_local $17 - (get_local $22) - ) - (set_local $3 - (i32.shl - (get_local $3) - (i32.xor - (i32.and - (get_local $0) - (i32.const 1) - ) + (set_local $3 + (i32.shl + (get_local $3) + (i32.xor + (i32.and + (get_local $0) (i32.const 1) ) + (i32.const 1) ) ) - (br $while-in14) ) + (br $while-in14) ) ) ) ) - (block - (set_local $33 - (get_local $0) - ) - (set_local $10 - (i32.const 86) - ) + ) + (block + (set_local $33 + (get_local $0) + ) + (set_local $10 + (i32.const 86) ) ) ) @@ -1934,606 +1928,724 @@ (get_local $12) ) ) - (block $do-once17 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $12) - ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 + (get_local $12) ) - (get_local $12) ) - (block - (set_local $7 - (if (result i32) - (tee_local $0 - (i32.load - (tee_local $9 - (i32.add - (get_local $12) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $17 - (get_local $0) - ) - (get_local $9) - ) - (if (result i32) - (tee_local $17 - (i32.load - (tee_local $15 - (i32.add - (get_local $12) - (i32.const 16) - ) - ) + (get_local $12) + ) + (block $do-once17 + (set_local $7 + (if (result i32) + (tee_local $0 + (i32.load + (tee_local $9 + (i32.add + (get_local $12) + (i32.const 20) ) ) - (get_local $15) - (br $do-once17) ) ) - ) - (loop $while-in20 - (if - (tee_local $0 - (i32.load - (tee_local $9 - (i32.add - (get_local $17) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $17 - (get_local $0) - ) - (set_local $7 - (get_local $9) - ) - (br $while-in20) + (block (result i32) + (set_local $17 + (get_local $0) ) + (get_local $9) ) - (if - (tee_local $0 + (if (result i32) + (tee_local $17 (i32.load - (tee_local $9 + (tee_local $15 (i32.add - (get_local $17) + (get_local $12) (i32.const 16) ) ) ) ) - (block - (set_local $17 - (get_local $0) - ) - (set_local $7 - (get_local $9) - ) - (br $while-in20) - ) - ) - ) - (if - (i32.lt_u - (get_local $7) - (get_local $11) - ) - (call $_abort) - (block - (i32.store - (get_local $7) - (i32.const 0) - ) - (set_local $8 - (get_local $17) - ) + (get_local $15) + (br $do-once17) ) ) ) - (block - (if - (i32.lt_u - (tee_local $9 - (i32.load offset=8 - (get_local $12) - ) - ) - (get_local $11) - ) - (call $_abort) - ) + (loop $while-in20 (if - (i32.ne + (tee_local $0 (i32.load - (tee_local $0 + (tee_local $9 (i32.add - (get_local $9) - (i32.const 12) + (get_local $17) + (i32.const 20) ) ) ) - (get_local $12) ) - (call $_abort) + (block + (set_local $17 + (get_local $0) + ) + (set_local $7 + (get_local $9) + ) + (br $while-in20) + ) ) (if - (i32.eq + (tee_local $0 (i32.load - (tee_local $15 + (tee_local $9 (i32.add - (get_local $3) - (i32.const 8) + (get_local $17) + (i32.const 16) ) ) ) - (get_local $12) ) (block - (i32.store + (set_local $17 (get_local $0) - (get_local $3) ) - (i32.store - (get_local $15) + (set_local $7 (get_local $9) ) - (set_local $8 - (get_local $3) + (br $while-in20) + ) + ) + ) + (if + (i32.lt_u + (get_local $7) + (get_local $11) + ) + (call $_abort) + (block + (i32.store + (get_local $7) + (i32.const 0) + ) + (set_local $8 + (get_local $17) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $9 + (i32.load offset=8 + (get_local $12) ) ) - (call $_abort) + (get_local $11) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $0 + (i32.add + (get_local $9) + (i32.const 12) + ) + ) + ) + (get_local $12) ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $15 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + ) + (get_local $12) + ) + (block + (i32.store + (get_local $0) + (get_local $3) + ) + (i32.store + (get_local $15) + (get_local $9) + ) + (set_local $8 + (get_local $3) + ) + ) + (call $_abort) ) ) ) - (block $do-once21 - (if - (get_local $5) - (block - (if - (i32.eq - (get_local $12) - (i32.load - (tee_local $11 - (i32.add - (i32.shl - (tee_local $3 - (i32.load offset=28 - (get_local $12) - ) + (if + (get_local $5) + (block $do-once21 + (if + (i32.eq + (get_local $12) + (i32.load + (tee_local $11 + (i32.add + (i32.shl + (tee_local $3 + (i32.load offset=28 + (get_local $12) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) ) ) - (block - (i32.store - (get_local $11) + ) + (block + (i32.store + (get_local $11) + (get_local $8) + ) + (if + (i32.eqz (get_local $8) ) - (if - (i32.eqz - (get_local $8) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) + (block + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) ) - (br $do-once21) ) + (br $do-once21) ) ) - (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $5) - (i32.const 16) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $5) + (i32.const 16) ) ) - (get_local $12) - ) - (i32.store - (get_local $3) - (get_local $8) - ) - (i32.store offset=20 - (get_local $5) - (get_local $8) ) + (get_local $12) ) - (br_if $do-once21 - (i32.eqz - (get_local $8) - ) + (i32.store + (get_local $3) + (get_local $8) + ) + (i32.store offset=20 + (get_local $5) + (get_local $8) ) ) - ) - (if - (i32.lt_u - (get_local $8) - (tee_local $3 - (i32.load - (i32.const 192) - ) + (br_if $do-once21 + (i32.eqz + (get_local $8) ) ) - (call $_abort) ) - (i32.store offset=24 + ) + (if + (i32.lt_u (get_local $8) - (get_local $5) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $8) + (get_local $5) + ) + (if + (tee_local $11 + (i32.load offset=16 + (get_local $12) + ) ) (if - (tee_local $11 - (i32.load offset=16 - (get_local $12) - ) + (i32.lt_u + (get_local $11) + (get_local $3) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=16 + (get_local $8) (get_local $11) - (get_local $3) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $8) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $8) - ) + (i32.store offset=24 + (get_local $11) + (get_local $8) ) ) ) + ) + (if + (tee_local $11 + (i32.load offset=20 + (get_local $12) + ) + ) (if - (tee_local $11 - (i32.load offset=20 - (get_local $12) + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $8) (get_local $11) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $8) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $8) - ) + (i32.store offset=24 + (get_local $11) + (get_local $8) ) ) ) ) ) ) - (block $do-once25 - (if - (i32.ge_u - (get_local $2) - (i32.const 16) + (if + (i32.ge_u + (get_local $2) + (i32.const 16) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $1) + (i32.const 3) + ) ) - (block - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $1) - (i32.const 3) - ) + (i32.store offset=4 + (get_local $6) + (i32.or + (get_local $2) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store + (i32.add (get_local $6) - (i32.or - (get_local $2) - (i32.const 1) - ) + (get_local $2) ) - (i32.store - (i32.add - (get_local $6) - (get_local $2) - ) + (get_local $2) + ) + (set_local $5 + (i32.shr_u (get_local $2) + (i32.const 3) ) - (set_local $5 - (i32.shr_u - (get_local $2) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $2) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $2) - (i32.const 256) + (block + (set_local $11 + (i32.add + (i32.shl + (get_local $5) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $11 - (i32.add + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) + ) + ) + (tee_local $9 (i32.shl + (i32.const 1) (get_local $5) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $3 + (i32.lt_u + (tee_local $15 (i32.load - (i32.const 176) - ) - ) - (tee_local $9 - (i32.shl - (i32.const 1) - (get_local $5) - ) - ) - ) - (if - (i32.lt_u - (tee_local $15 - (i32.load - (tee_local $5 - (i32.add - (get_local $11) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $11) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $16 - (get_local $5) - ) - (set_local $27 - (get_local $15) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $9) - ) - ) (set_local $16 - (i32.add - (get_local $11) - (i32.const 8) - ) + (get_local $5) ) (set_local $27 - (get_local $11) + (get_local $15) ) ) ) - (i32.store - (get_local $16) - (get_local $6) - ) - (i32.store offset=12 - (get_local $27) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $27) - ) - (i32.store offset=12 - (get_local $6) - (get_local $11) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $9) + ) + ) + (set_local $16 + (i32.add + (get_local $11) + (i32.const 8) + ) + ) + (set_local $27 + (get_local $11) + ) ) - (br $do-once25) ) + (i32.store + (get_local $16) + (get_local $6) + ) + (i32.store offset=12 + (get_local $27) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $27) + ) + (i32.store offset=12 + (get_local $6) + (get_local $11) + ) + (br $do-once25) ) - (set_local $5 - (i32.add - (i32.shl - (tee_local $7 + ) + (set_local $5 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $11 + (i32.shr_u + (get_local $2) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $11 - (i32.shr_u - (get_local $2) - (i32.const 8) - ) + (i32.gt_u + (get_local $2) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $2) - (i32.add - (tee_local $5 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $2) + (i32.add + (tee_local $5 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $11 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $11) - (tee_local $9 - (i32.and - (i32.shr_u - (i32.add - (get_local $11) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $11 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $11) + (tee_local $9 + (i32.and + (i32.shr_u + (i32.add + (get_local $11) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $9) ) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (tee_local $15 - (i32.shl - (get_local $3) - (get_local $11) - ) + (get_local $9) + ) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (tee_local $15 + (i32.shl + (get_local $3) + (get_local $11) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $15) - (get_local $3) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $15) + (get_local $3) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $5) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $5) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $6) - (get_local $7) + ) + (i32.store offset=28 + (get_local $6) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 16) + ) ) - (i32.store offset=4 - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) + (i32.const 0) + ) + (i32.store + (get_local $3) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $3 + (i32.load + (i32.const 180) + ) + ) + (tee_local $15 + (i32.shl + (i32.const 1) + (get_local $7) + ) ) ) - (i32.const 0) ) - (i32.store - (get_local $3) - (i32.const 0) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $3) + (get_local $15) + ) + ) + (i32.store + (get_local $5) + (get_local $6) + ) + (i32.store offset=24 + (get_local $6) + (get_local $5) + ) + (i32.store offset=12 + (get_local $6) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $6) + ) + (br $do-once25) ) - (if - (i32.eqz - (i32.and - (tee_local $3 - (i32.load - (i32.const 180) - ) + ) + (set_local $15 + (i32.shl + (get_local $2) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) ) - (tee_local $15 - (i32.shl - (i32.const 1) - (get_local $7) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) + ) + ) + ) + (set_local $3 + (i32.load + (get_local $5) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in28 (result i32) + (block $while-out27 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $3) + ) + (i32.const -8) + ) + (get_local $2) + ) + (block + (set_local $14 + (get_local $3) + ) + (br $while-out27 + (i32.const 148) + ) + ) + ) + (if (result i32) + (tee_local $9 + (i32.load + (tee_local $5 + (i32.add + (i32.add + (get_local $3) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $15) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $15 + (i32.shl + (get_local $15) + (i32.const 1) + ) + ) + (set_local $3 + (get_local $9) + ) + (br $while-in28) + ) + (block (result i32) + (set_local $23 + (get_local $5) + ) + (set_local $20 + (get_local $3) + ) + (i32.const 145) + ) ) ) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $3) - (get_local $15) - ) + (i32.const 145) + ) + (if + (i32.lt_u + (get_local $23) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $5) + (get_local $23) (get_local $6) ) (i32.store offset=24 (get_local $6) - (get_local $5) + (get_local $20) ) (i32.store offset=12 (get_local $6) @@ -2543,216 +2655,92 @@ (get_local $6) (get_local $6) ) - (br $do-once25) - ) - ) - (set_local $15 - (i32.shl - (get_local $2) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) - ) - ) - ) - (set_local $3 - (i32.load - (get_local $5) ) ) (if (i32.eq - (tee_local $10 - (loop $while-in28 (result i32) - (block $while-out27 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $3) - ) - (i32.const -8) - ) - (get_local $2) - ) - (block - (set_local $14 - (get_local $3) - ) - (br $while-out27 - (i32.const 148) + (get_local $10) + (i32.const 148) + ) + (if + (i32.and + (i32.ge_u + (tee_local $15 + (i32.load + (tee_local $3 + (i32.add + (get_local $14) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $5 - (i32.add - (i32.add - (get_local $3) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $15) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $15 - (i32.shl - (get_local $15) - (i32.const 1) - ) - ) - (set_local $3 - (get_local $9) - ) - (br $while-in28) - ) - (block (result i32) - (set_local $23 - (get_local $5) - ) - (set_local $20 - (get_local $3) - ) - (i32.const 145) - ) + ) + (tee_local $9 + (i32.load + (i32.const 192) ) ) ) - ) - (i32.const 145) - ) - (if - (i32.lt_u - (get_local $23) - (i32.load - (i32.const 192) + (i32.ge_u + (get_local $14) + (get_local $9) ) ) - (call $_abort) (block + (i32.store offset=12 + (get_local $15) + (get_local $6) + ) (i32.store - (get_local $23) + (get_local $3) (get_local $6) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $6) - (get_local $20) + (get_local $15) ) (i32.store offset=12 (get_local $6) - (get_local $6) + (get_local $14) ) - (i32.store offset=8 - (get_local $6) + (i32.store offset=24 (get_local $6) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 148) - ) - (if - (i32.and - (i32.ge_u - (tee_local $15 - (i32.load - (tee_local $3 - (i32.add - (get_local $14) - (i32.const 8) - ) - ) - ) - ) - (tee_local $9 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $14) - (get_local $9) - ) - ) - (block - (i32.store offset=12 - (get_local $15) - (get_local $6) - ) - (i32.store - (get_local $3) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $15) - ) - (i32.store offset=12 - (get_local $6) - (get_local $14) - ) - (i32.store offset=24 - (get_local $6) - (i32.const 0) - ) - ) - (call $_abort) - ) + (call $_abort) ) ) ) - (block - (i32.store offset=4 - (get_local $12) - (i32.or - (tee_local $15 - (i32.add - (get_local $2) - (get_local $1) - ) + ) + (block + (i32.store offset=4 + (get_local $12) + (i32.or + (tee_local $15 + (i32.add + (get_local $2) + (get_local $1) ) - (i32.const 3) ) + (i32.const 3) ) - (i32.store - (tee_local $3 + ) + (i32.store + (tee_local $3 + (i32.add (i32.add - (i32.add - (get_local $12) - (get_local $15) - ) - (i32.const 4) + (get_local $12) + (get_local $15) ) + (i32.const 4) ) - (i32.or - (i32.load - (get_local $3) - ) - (i32.const 1) + ) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) ) ) ) @@ -3085,261 +3073,257 @@ ) ) (block - (block $label$break$L259 - (if - (tee_local $7 - (i32.load - (i32.const 200) - ) + (if + (tee_local $7 + (i32.load + (i32.const 200) ) - (block - (set_local $16 - (i32.const 624) - ) - (loop $while-in34 - (block $while-out33 - (if - (if (result i32) - (i32.le_u - (tee_local $27 - (i32.load - (get_local $16) - ) + ) + (block $label$break$L259 + (set_local $16 + (i32.const 624) + ) + (loop $while-in34 + (block $while-out33 + (if + (if (result i32) + (i32.le_u + (tee_local $27 + (i32.load + (get_local $16) ) - (get_local $7) ) - (i32.gt_u - (i32.add - (get_local $27) - (i32.load - (tee_local $8 - (i32.add - (get_local $16) - (i32.const 4) - ) + (get_local $7) + ) + (i32.gt_u + (i32.add + (get_local $27) + (i32.load + (tee_local $8 + (i32.add + (get_local $16) + (i32.const 4) ) ) ) - (get_local $7) - ) - (i32.const 0) - ) - (block - (set_local $6 - (get_local $16) - ) - (set_local $5 - (get_local $8) ) - (br $while-out33) + (get_local $7) ) + (i32.const 0) ) - (br_if $while-in34 - (tee_local $16 - (i32.load offset=8 - (get_local $16) - ) + (block + (set_local $6 + (get_local $16) ) + (set_local $5 + (get_local $8) + ) + (br $while-out33) ) - (set_local $10 - (i32.const 173) - ) - (br $label$break$L259) ) - ) - (if - (i32.lt_u + (br_if $while-in34 (tee_local $16 - (i32.and - (i32.sub - (get_local $20) - (i32.load - (i32.const 188) - ) - ) - (get_local $23) + (i32.load offset=8 + (get_local $16) ) ) - (i32.const 2147483647) ) - (if - (i32.eq - (tee_local $8 - (call $_sbrk - (get_local $16) - ) - ) - (i32.add - (i32.load - (get_local $6) - ) + (set_local $10 + (i32.const 173) + ) + (br $label$break$L259) + ) + ) + (if + (i32.lt_u + (tee_local $16 + (i32.and + (i32.sub + (get_local $20) (i32.load - (get_local $5) + (i32.const 188) ) ) + (get_local $23) ) - (if - (i32.ne - (get_local $8) - (i32.const -1) + ) + (i32.const 2147483647) + ) + (if + (i32.eq + (tee_local $8 + (call $_sbrk + (get_local $16) ) - (block - (set_local $19 - (get_local $8) - ) - (set_local $21 - (get_local $16) - ) - (br $label$break$L257 - (i32.const 193) - ) + ) + (i32.add + (i32.load + (get_local $6) + ) + (i32.load + (get_local $5) ) ) + ) + (if + (i32.ne + (get_local $8) + (i32.const -1) + ) (block - (set_local $13 + (set_local $19 (get_local $8) ) - (set_local $18 + (set_local $21 (get_local $16) ) - (set_local $10 - (i32.const 183) + (br $label$break$L257 + (i32.const 193) ) ) ) + (block + (set_local $13 + (get_local $8) + ) + (set_local $18 + (get_local $16) + ) + (set_local $10 + (i32.const 183) + ) + ) ) ) - (set_local $10 - (i32.const 173) - ) + ) + (set_local $10 + (i32.const 173) ) ) - (block $do-once35 - (if - (if (result i32) - (i32.eq - (get_local $10) - (i32.const 173) - ) - (i32.ne - (tee_local $7 - (call $_sbrk - (i32.const 0) - ) + (if + (if (result i32) + (i32.eq + (get_local $10) + (i32.const 173) + ) + (i32.ne + (tee_local $7 + (call $_sbrk + (i32.const 0) ) - (i32.const -1) ) - (i32.const 0) + (i32.const -1) ) - (block - (set_local $0 - (if (result i32) - (i32.and - (tee_local $8 - (i32.add - (tee_local $16 - (i32.load - (i32.const 652) - ) + (i32.const 0) + ) + (block $do-once35 + (set_local $0 + (if (result i32) + (i32.and + (tee_local $8 + (i32.add + (tee_local $16 + (i32.load + (i32.const 652) ) - (i32.const -1) ) - ) - (tee_local $1 - (get_local $7) + (i32.const -1) ) ) - (i32.add - (i32.sub - (get_local $2) + (tee_local $1 + (get_local $7) + ) + ) + (i32.add + (i32.sub + (get_local $2) + (get_local $1) + ) + (i32.and + (i32.add + (get_local $8) (get_local $1) ) - (i32.and - (i32.add - (get_local $8) - (get_local $1) - ) - (i32.sub - (i32.const 0) - (get_local $16) - ) + (i32.sub + (i32.const 0) + (get_local $16) ) ) - (get_local $2) ) + (get_local $2) ) - (set_local $1 - (i32.add - (tee_local $16 - (i32.load - (i32.const 608) - ) + ) + (set_local $1 + (i32.add + (tee_local $16 + (i32.load + (i32.const 608) ) - (get_local $0) ) + (get_local $0) ) - (if - (i32.and - (i32.gt_u - (get_local $0) - (get_local $9) - ) - (i32.lt_u - (get_local $0) - (i32.const 2147483647) - ) + ) + (if + (i32.and + (i32.gt_u + (get_local $0) + (get_local $9) ) - (block - (br_if $do-once35 - (select - (i32.or - (i32.le_u - (get_local $1) - (get_local $16) - ) - (i32.gt_u - (get_local $1) - (tee_local $8 - (i32.load - (i32.const 616) - ) - ) - ) + (i32.lt_u + (get_local $0) + (i32.const 2147483647) + ) + ) + (block + (br_if $do-once35 + (select + (i32.or + (i32.le_u + (get_local $1) + (get_local $16) ) - (i32.const 0) - (get_local $8) - ) - ) - (set_local $18 - (if (result i32) - (i32.eq + (i32.gt_u + (get_local $1) (tee_local $8 - (call $_sbrk - (get_local $0) + (i32.load + (i32.const 616) ) ) - (get_local $7) ) - (block - (set_local $19 - (get_local $7) - ) - (set_local $21 + ) + (i32.const 0) + (get_local $8) + ) + ) + (set_local $18 + (if (result i32) + (i32.eq + (tee_local $8 + (call $_sbrk (get_local $0) ) - (br $label$break$L257 - (i32.const 193) - ) ) - (block (result i32) - (set_local $13 - (get_local $8) - ) - (set_local $10 - (i32.const 183) - ) + (get_local $7) + ) + (block + (set_local $19 + (get_local $7) + ) + (set_local $21 (get_local $0) ) + (br $label$break$L257 + (i32.const 193) + ) + ) + (block (result i32) + (set_local $13 + (get_local $8) + ) + (set_local $10 + (i32.const 183) + ) + (get_local $0) ) ) ) @@ -3347,100 +3331,98 @@ ) ) ) - (block $label$break$L279 - (if - (i32.eq - (get_local $10) - (i32.const 183) - ) - (block - (set_local $8 - (i32.sub - (i32.const 0) - (get_local $18) - ) + (if + (i32.eq + (get_local $10) + (i32.const 183) + ) + (block $label$break$L279 + (set_local $8 + (i32.sub + (i32.const 0) + (get_local $18) ) - (set_local $4 + ) + (set_local $4 + (if (result i32) (if (result i32) - (if (result i32) + (i32.and + (i32.gt_u + (get_local $14) + (get_local $18) + ) (i32.and - (i32.gt_u - (get_local $14) + (i32.lt_u (get_local $18) + (i32.const 2147483647) ) - (i32.and - (i32.lt_u - (get_local $18) - (i32.const 2147483647) - ) - (i32.ne - (get_local $13) - (i32.const -1) - ) + (i32.ne + (get_local $13) + (i32.const -1) ) ) - (i32.lt_u - (tee_local $1 - (i32.and - (i32.add - (i32.sub - (get_local $12) - (get_local $18) - ) - (tee_local $7 - (i32.load - (i32.const 656) - ) - ) - ) + ) + (i32.lt_u + (tee_local $1 + (i32.and + (i32.add (i32.sub - (i32.const 0) - (get_local $7) + (get_local $12) + (get_local $18) ) + (tee_local $7 + (i32.load + (i32.const 656) + ) + ) + ) + (i32.sub + (i32.const 0) + (get_local $7) ) ) - (i32.const 2147483647) ) - (i32.const 0) + (i32.const 2147483647) ) - (if (result i32) - (i32.eq - (call $_sbrk - (get_local $1) - ) - (i32.const -1) + (i32.const 0) + ) + (if (result i32) + (i32.eq + (call $_sbrk + (get_local $1) ) - (block - (drop - (call $_sbrk - (get_local $8) - ) + (i32.const -1) + ) + (block + (drop + (call $_sbrk + (get_local $8) ) - (br $label$break$L279) - ) - (i32.add - (get_local $1) - (get_local $18) ) + (br $label$break$L279) + ) + (i32.add + (get_local $1) + (get_local $18) ) - (get_local $18) ) + (get_local $18) ) - (if - (i32.ne + ) + (if + (i32.ne + (get_local $13) + (i32.const -1) + ) + (block + (set_local $19 (get_local $13) - (i32.const -1) ) - (block - (set_local $19 - (get_local $13) - ) - (set_local $21 - (get_local $4) - ) - (br $label$break$L257 - (i32.const 193) - ) + (set_local $21 + (get_local $4) + ) + (br $label$break$L257 + (i32.const 193) ) ) ) @@ -3544,1899 +3526,2003 @@ (get_local $13) ) ) - (block $do-once40 - (if - (tee_local $13 - (i32.load - (i32.const 200) - ) + (if + (tee_local $13 + (i32.load + (i32.const 200) ) - (block - (set_local $4 - (i32.const 624) - ) - (loop $do-in - (block $do-out - (if - (i32.eq - (get_local $19) - (i32.add - (tee_local $2 - (i32.load - (get_local $4) - ) + ) + (block $do-once40 + (set_local $4 + (i32.const 624) + ) + (loop $do-in + (block $do-out + (if + (i32.eq + (get_local $19) + (i32.add + (tee_local $2 + (i32.load + (get_local $4) ) - (tee_local $12 - (i32.load - (tee_local $18 - (i32.add - (get_local $4) - (i32.const 4) - ) + ) + (tee_local $12 + (i32.load + (tee_local $18 + (i32.add + (get_local $4) + (i32.const 4) ) ) ) ) ) - (block - (set_local $46 - (get_local $2) - ) - (set_local $47 - (get_local $18) - ) - (set_local $48 - (get_local $12) - ) - (set_local $49 - (get_local $4) - ) - (set_local $10 - (i32.const 203) - ) - (br $do-out) + ) + (block + (set_local $46 + (get_local $2) ) + (set_local $47 + (get_local $18) + ) + (set_local $48 + (get_local $12) + ) + (set_local $49 + (get_local $4) + ) + (set_local $10 + (i32.const 203) + ) + (br $do-out) ) - (br_if $do-in - (tee_local $4 - (i32.load offset=8 - (get_local $4) - ) + ) + (br_if $do-in + (tee_local $4 + (i32.load offset=8 + (get_local $4) ) ) ) ) - (if + ) + (if + (select + (i32.and + (i32.lt_u + (get_local $13) + (get_local $19) + ) + (i32.ge_u + (get_local $13) + (get_local $46) + ) + ) + (i32.const 0) (select - (i32.and - (i32.lt_u - (get_local $13) - (get_local $19) - ) - (i32.ge_u - (get_local $13) - (get_local $46) + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $49) + ) + (i32.const 8) ) ) (i32.const 0) - (select - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $49) - ) - (i32.const 8) - ) - ) - (i32.const 0) - (i32.eq - (get_local $10) - (i32.const 203) - ) + (i32.eq + (get_local $10) + (i32.const 203) ) ) - (block - (i32.store - (get_local $47) - (i32.add - (get_local $48) - (get_local $21) - ) + ) + (block + (i32.store + (get_local $47) + (i32.add + (get_local $48) + (get_local $21) ) - (set_local $4 - (i32.add - (get_local $13) - (tee_local $12 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $13) - (i32.const 8) - ) + ) + (set_local $4 + (i32.add + (get_local $13) + (tee_local $12 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $13) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) - (set_local $18 - (i32.add - (i32.sub - (get_local $21) - (get_local $12) - ) - (i32.load - (i32.const 188) - ) + ) + (set_local $18 + (i32.add + (i32.sub + (get_local $21) + (get_local $12) + ) + (i32.load + (i32.const 188) ) ) - (i32.store - (i32.const 200) - (get_local $4) - ) - (i32.store - (i32.const 188) + ) + (i32.store + (i32.const 200) + (get_local $4) + ) + (i32.store + (i32.const 188) + (get_local $18) + ) + (i32.store offset=4 + (get_local $4) + (i32.or (get_local $18) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $4) - (i32.or - (get_local $18) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $18) - ) - (i32.const 40) + (get_local $18) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (br $do-once40) ) + (br $do-once40) ) - (set_local $3 - (if (result i32) - (i32.lt_u - (get_local $19) - (tee_local $18 - (i32.load - (i32.const 192) - ) - ) - ) - (block (result i32) - (i32.store + ) + (set_local $3 + (if (result i32) + (i32.lt_u + (get_local $19) + (tee_local $18 + (i32.load (i32.const 192) - (get_local $19) ) - (get_local $19) ) - (get_local $18) ) - ) - (set_local $18 - (i32.add + (block (result i32) + (i32.store + (i32.const 192) + (get_local $19) + ) (get_local $19) - (get_local $21) ) + (get_local $18) ) - (set_local $4 - (i32.const 624) + ) + (set_local $18 + (i32.add + (get_local $19) + (get_local $21) ) - (loop $while-in43 - (block $while-out42 - (if - (i32.eq - (i32.load - (get_local $4) - ) - (get_local $18) - ) - (block - (set_local $50 - (get_local $4) - ) - (set_local $40 - (get_local $4) - ) - (set_local $10 - (i32.const 211) - ) - (br $while-out42) + ) + (set_local $4 + (i32.const 624) + ) + (loop $while-in43 + (block $while-out42 + (if + (i32.eq + (i32.load + (get_local $4) ) + (get_local $18) ) - (br_if $while-in43 - (tee_local $4 - (i32.load offset=8 - (get_local $4) - ) + (block + (set_local $50 + (get_local $4) ) - ) - (set_local $29 - (i32.const 624) + (set_local $40 + (get_local $4) + ) + (set_local $10 + (i32.const 211) + ) + (br $while-out42) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 211) + (br_if $while-in43 + (tee_local $4 + (i32.load offset=8 + (get_local $4) + ) + ) ) (set_local $29 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $40) - ) - (i32.const 8) + (i32.const 624) + ) + ) + ) + (if + (i32.eq + (get_local $10) + (i32.const 211) + ) + (set_local $29 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $40) ) - (i32.const 624) - (block - (i32.store - (get_local $50) - (get_local $19) - ) - (i32.store - (tee_local $4 - (i32.add - (get_local $40) - (i32.const 4) - ) - ) + (i32.const 8) + ) + (i32.const 624) + (block + (i32.store + (get_local $50) + (get_local $19) + ) + (i32.store + (tee_local $4 (i32.add - (i32.load - (get_local $4) - ) - (get_local $21) + (get_local $40) + (i32.const 4) ) ) - (set_local $12 - (i32.add - (get_local $19) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $19) - (i32.const 8) - ) + (i32.add + (i32.load + (get_local $4) + ) + (get_local $21) + ) + ) + (set_local $12 + (i32.add + (get_local $19) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) - (set_local $2 - (i32.add - (get_local $18) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $18) - (i32.const 8) - ) + ) + (set_local $2 + (i32.add + (get_local $18) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $18) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) - (set_local $4 - (i32.add - (get_local $12) - (get_local $9) - ) + ) + (set_local $4 + (i32.add + (get_local $12) + (get_local $9) ) - (set_local $14 + ) + (set_local $14 + (i32.sub (i32.sub - (i32.sub - (get_local $2) - (get_local $12) - ) - (get_local $9) + (get_local $2) + (get_local $12) ) + (get_local $9) ) - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $9) - (i32.const 3) - ) + ) + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $9) + (i32.const 3) + ) + ) + (if + (i32.ne + (get_local $2) + (get_local $13) ) (block $do-once44 (if - (i32.ne + (i32.eq (get_local $2) - (get_local $13) + (i32.load + (i32.const 196) + ) ) (block - (if - (i32.eq - (get_local $2) - (i32.load - (i32.const 196) - ) - ) - (block - (i32.store - (i32.const 184) - (tee_local $0 - (i32.add - (i32.load - (i32.const 184) - ) - (get_local $14) - ) - ) - ) - (i32.store - (i32.const 196) - (get_local $4) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $0) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $4) - (get_local $0) + (i32.store + (i32.const 184) + (tee_local $0 + (i32.add + (i32.load + (i32.const 184) ) - (get_local $0) + (get_local $14) ) - (br $do-once44) ) ) - (if - (i32.eq - (i32.and - (tee_local $0 - (i32.load offset=4 - (get_local $2) - ) - ) - (i32.const 3) - ) + (i32.store + (i32.const 196) + (get_local $4) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $0) (i32.const 1) ) - (block - (set_local $5 - (i32.and - (get_local $0) - (i32.const -8) - ) + ) + (i32.store + (i32.add + (get_local $4) + (get_local $0) + ) + (get_local $0) + ) + (br $do-once44) + ) + ) + (if + (i32.eq + (i32.and + (tee_local $0 + (i32.load offset=4 + (get_local $2) ) - (set_local $6 - (i32.shr_u - (get_local $0) - (i32.const 3) - ) + ) + (i32.const 3) + ) + (i32.const 1) + ) + (block + (set_local $5 + (i32.and + (get_local $0) + (i32.const -8) + ) + ) + (set_local $6 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (block $label$break$L331 + (if + (i32.ge_u + (get_local $0) + (i32.const 256) ) - (block $label$break$L331 - (if - (i32.ge_u - (get_local $0) - (i32.const 256) + (block + (set_local $23 + (i32.load offset=24 + (get_local $2) ) - (block - (set_local $23 - (i32.load offset=24 + ) + (if + (i32.eq + (tee_local $20 + (i32.load offset=12 (get_local $2) ) ) - (block $do-once47 - (if - (i32.eq - (tee_local $20 - (i32.load offset=12 - (get_local $2) - ) - ) - (get_local $2) - ) - (block - (set_local $0 - (if (result i32) - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (tee_local $8 - (i32.add - (get_local $2) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - (block (result i32) - (set_local $8 - (get_local $1) - ) - (get_local $7) - ) - (if (result i32) - (tee_local $16 - (i32.load - (get_local $8) + (get_local $2) + ) + (block $do-once47 + (set_local $0 + (if (result i32) + (tee_local $7 + (i32.load + (tee_local $1 + (i32.add + (tee_local $8 + (i32.add + (get_local $2) + (i32.const 16) ) ) - (get_local $16) - (br $do-once47) + (i32.const 4) ) ) ) - (loop $while-in50 - (if - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $8 - (get_local $1) - ) - (br $while-in50) - ) - ) - (if - (tee_local $7 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $8 - (get_local $1) - ) - (br $while-in50) - ) - ) + ) + (block (result i32) + (set_local $8 + (get_local $1) ) - (if - (i32.lt_u + (get_local $7) + ) + (if (result i32) + (tee_local $16 + (i32.load (get_local $8) - (get_local $3) ) - (call $_abort) - (block - (i32.store - (get_local $8) - (i32.const 0) - ) - (set_local $25 + ) + (get_local $16) + (br $do-once47) + ) + ) + ) + (loop $while-in50 + (if + (tee_local $7 + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 20) ) ) ) ) (block - (if - (i32.lt_u - (tee_local $1 - (i32.load offset=8 - (get_local $2) - ) - ) - (get_local $3) - ) - (call $_abort) - ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $1) - (i32.const 12) - ) - ) - ) - (get_local $2) - ) - (call $_abort) + (set_local $0 + (get_local $7) ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $20) - (i32.const 8) - ) - ) - ) - (get_local $2) - ) - (block - (i32.store - (get_local $7) - (get_local $20) - ) - (i32.store - (get_local $8) - (get_local $1) - ) - (set_local $25 - (get_local $20) - ) - ) - (call $_abort) + (set_local $8 + (get_local $1) ) + (br $while-in50) ) ) - ) - (br_if $label$break$L331 - (i32.eqz - (get_local $23) - ) - ) - (block $do-once51 (if - (i32.ne - (get_local $2) + (tee_local $7 (i32.load (tee_local $1 (i32.add - (i32.shl - (tee_local $20 - (i32.load offset=28 - (get_local $2) - ) - ) - (i32.const 2) - ) - (i32.const 480) + (get_local $0) + (i32.const 16) ) ) ) ) (block - (if - (i32.lt_u - (get_local $23) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $23) - (i32.const 16) - ) - ) - ) - (get_local $2) - ) - (i32.store - (get_local $8) - (get_local $25) - ) - (i32.store offset=20 - (get_local $23) - (get_local $25) - ) - ) - (br_if $label$break$L331 - (i32.eqz - (get_local $25) - ) + (set_local $0 + (get_local $7) ) - ) - (block - (i32.store + (set_local $8 (get_local $1) - (get_local $25) - ) - (br_if $do-once51 - (get_local $25) ) - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $20) - ) - (i32.const -1) - ) - ) - ) - (br $label$break$L331) + (br $while-in50) ) ) ) (if (i32.lt_u - (get_local $25) - (tee_local $20 - (i32.load - (i32.const 192) + (get_local $8) + (get_local $3) + ) + (call $_abort) + (block + (i32.store + (get_local $8) + (i32.const 0) + ) + (set_local $25 + (get_local $0) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $1 + (i32.load offset=8 + (get_local $2) ) ) + (get_local $3) ) (call $_abort) ) - (i32.store offset=24 - (get_local $25) - (get_local $23) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add + (get_local $1) + (i32.const 12) + ) + ) + ) + (get_local $2) + ) + (call $_abort) ) (if - (tee_local $8 + (i32.eq (i32.load - (tee_local $1 + (tee_local $8 (i32.add - (get_local $2) - (i32.const 16) + (get_local $20) + (i32.const 8) ) ) ) + (get_local $2) ) - (if - (i32.lt_u - (get_local $8) + (block + (i32.store + (get_local $7) (get_local $20) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $25) - (get_local $8) - ) - (i32.store offset=24 - (get_local $8) - (get_local $25) - ) + (i32.store + (get_local $8) + (get_local $1) + ) + (set_local $25 + (get_local $20) ) ) + (call $_abort) ) - (br_if $label$break$L331 - (i32.eqz - (tee_local $8 - (i32.load offset=4 - (get_local $1) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $23) + ) + ) + (if + (i32.ne + (get_local $2) + (i32.load + (tee_local $1 + (i32.add + (i32.shl + (tee_local $20 + (i32.load offset=28 + (get_local $2) + ) + ) + (i32.const 2) ) + (i32.const 480) ) ) ) + ) + (block (if (i32.lt_u - (get_local $8) + (get_local $23) (i32.load (i32.const 192) ) ) (call $_abort) - (block - (i32.store offset=20 - (get_local $25) - (get_local $8) - ) - (i32.store offset=24 - (get_local $8) - (get_local $25) - ) - ) ) - ) - (block - (set_local $20 - (i32.load offset=12 - (get_local $2) - ) - ) - (block $do-once55 - (if - (i32.ne + (if + (i32.eq + (i32.load (tee_local $8 - (i32.load offset=8 - (get_local $2) - ) - ) - (tee_local $23 (i32.add - (i32.shl - (get_local $6) - (i32.const 3) - ) - (i32.const 216) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $8) - (get_local $3) - ) - (call $_abort) - ) - (br_if $do-once55 - (i32.eq - (i32.load offset=12 - (get_local $8) - ) - (get_local $2) + (get_local $23) + (i32.const 16) ) ) - (call $_abort) ) + (get_local $2) ) - ) - (if - (i32.eq - (get_local $20) + (i32.store (get_local $8) + (get_local $25) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $6) - ) - (i32.const -1) - ) - ) - ) - (br $label$break$L331) + (i32.store offset=20 + (get_local $23) + (get_local $25) ) ) - (block $do-once57 - (if - (i32.eq - (get_local $20) - (get_local $23) + (br_if $label$break$L331 + (i32.eqz + (get_local $25) + ) + ) + ) + (block $do-once51 + (i32.store + (get_local $1) + (get_local $25) + ) + (br_if $do-once51 + (get_local $25) + ) + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) ) - (set_local $41 - (i32.add + (i32.xor + (i32.shl + (i32.const 1) (get_local $20) - (i32.const 8) ) + (i32.const -1) ) - (block - (if - (i32.lt_u - (get_local $20) - (get_local $3) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $20) - (i32.const 8) - ) - ) - ) - (get_local $2) - ) - (block - (set_local $41 - (get_local $1) - ) - (br $do-once57) - ) - ) - (call $_abort) + ) + ) + (br $label$break$L331) + ) + ) + (if + (i32.lt_u + (get_local $25) + (tee_local $20 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $25) + (get_local $23) + ) + (if + (tee_local $8 + (i32.load + (tee_local $1 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (i32.store offset=12 + ) + (if + (i32.lt_u (get_local $8) (get_local $20) ) - (i32.store - (get_local $41) - (get_local $8) + (call $_abort) + (block + (i32.store offset=16 + (get_local $25) + (get_local $8) + ) + (i32.store offset=24 + (get_local $8) + (get_local $25) + ) ) ) ) - ) - (set_local $2 - (i32.add - (get_local $2) - (get_local $5) + (br_if $label$break$L331 + (i32.eqz + (tee_local $8 + (i32.load offset=4 + (get_local $1) + ) + ) + ) ) - ) - (set_local $14 - (i32.add - (get_local $5) - (get_local $14) + (if + (i32.lt_u + (get_local $8) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $25) + (get_local $8) + ) + (i32.store offset=24 + (get_local $8) + (get_local $25) + ) + ) ) ) - ) - ) - (i32.store - (tee_local $6 - (i32.add - (get_local $2) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $6) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $14) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $4) - (get_local $14) - ) - (get_local $14) - ) - (set_local $6 - (i32.shr_u - (get_local $14) - (i32.const 3) - ) - ) - (if - (i32.lt_u - (get_local $14) - (i32.const 256) - ) - (block - (set_local $0 - (i32.add - (i32.shl - (get_local $6) - (i32.const 3) + (block + (set_local $20 + (i32.load offset=12 + (get_local $2) ) - (i32.const 216) ) - ) - (block $do-once59 (if - (i32.and - (tee_local $23 - (i32.load - (i32.const 176) + (i32.ne + (tee_local $8 + (i32.load offset=8 + (get_local $2) ) ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $6) + (tee_local $23 + (i32.add + (i32.shl + (get_local $6) + (i32.const 3) + ) + (i32.const 216) ) ) ) - (block + (block $do-once55 (if - (i32.ge_u - (tee_local $7 - (i32.load - (tee_local $6 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 192) - ) + (i32.lt_u + (get_local $8) + (get_local $3) ) - (block - (set_local $42 - (get_local $6) - ) - (set_local $34 - (get_local $7) + (call $_abort) + ) + (br_if $do-once55 + (i32.eq + (i32.load offset=12 + (get_local $8) ) - (br $do-once59) + (get_local $2) ) ) (call $_abort) ) + ) + (if + (i32.eq + (get_local $20) + (get_local $8) + ) (block (i32.store (i32.const 176) - (i32.or - (get_local $23) - (get_local $1) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $6) + ) + (i32.const -1) + ) ) ) - (set_local $42 - (i32.add - (get_local $0) - (i32.const 8) + (br $label$break$L331) + ) + ) + (if + (i32.eq + (get_local $20) + (get_local $23) + ) + (set_local $41 + (i32.add + (get_local $20) + (i32.const 8) + ) + ) + (block $do-once57 + (if + (i32.lt_u + (get_local $20) + (get_local $3) ) + (call $_abort) ) - (set_local $34 - (get_local $0) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add + (get_local $20) + (i32.const 8) + ) + ) + ) + (get_local $2) + ) + (block + (set_local $41 + (get_local $1) + ) + (br $do-once57) + ) ) + (call $_abort) ) ) + (i32.store offset=12 + (get_local $8) + (get_local $20) + ) + (i32.store + (get_local $41) + (get_local $8) + ) ) - (i32.store - (get_local $42) - (get_local $4) - ) - (i32.store offset=12 - (get_local $34) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $34) - ) - (i32.store offset=12 - (get_local $4) - (get_local $0) - ) - (br $do-once44) ) ) - (set_local $1 + (set_local $2 + (i32.add + (get_local $2) + (get_local $5) + ) + ) + (set_local $14 + (i32.add + (get_local $5) + (get_local $14) + ) + ) + ) + ) + (i32.store + (tee_local $6 + (i32.add + (get_local $2) + (i32.const 4) + ) + ) + (i32.and + (i32.load + (get_local $6) + ) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $14) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $4) + (get_local $14) + ) + (get_local $14) + ) + (set_local $6 + (i32.shr_u + (get_local $14) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $14) + (i32.const 256) + ) + (block + (set_local $0 (i32.add (i32.shl - (tee_local $7 - (block $do-once61 (result i32) - (if (result i32) - (tee_local $1 - (i32.shr_u - (get_local $14) + (get_local $6) + (i32.const 3) + ) + (i32.const 216) + ) + ) + (if + (i32.and + (tee_local $23 + (i32.load + (i32.const 176) + ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $6) + ) + ) + ) + (block $do-once59 + (if + (i32.ge_u + (tee_local $7 + (i32.load + (tee_local $6 + (i32.add + (get_local $0) (i32.const 8) ) ) - (block (result i32) - (drop - (br_if $do-once61 - (i32.const 31) - (i32.gt_u - (get_local $14) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $14) - (i32.add - (tee_local $16 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $1) - (tee_local $23 - (i32.and - (i32.shr_u - (i32.add - (get_local $1) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + ) + ) + (i32.load + (i32.const 192) + ) + ) + (block + (set_local $42 + (get_local $6) + ) + (set_local $34 + (get_local $7) + ) + (br $do-once59) + ) + ) + (call $_abort) + ) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $23) + (get_local $1) + ) + ) + (set_local $42 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + (set_local $34 + (get_local $0) + ) + ) + ) + (i32.store + (get_local $42) + (get_local $4) + ) + (i32.store offset=12 + (get_local $34) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $34) + ) + (i32.store offset=12 + (get_local $4) + (get_local $0) + ) + (br $do-once44) + ) + ) + (set_local $1 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $1 + (i32.shr_u + (get_local $14) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $14) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $14) + (i32.add + (tee_local $16 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $7 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $1) + (tee_local $23 + (i32.and + (i32.shr_u + (i32.add + (get_local $1) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $23) + (i32.const 16) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $6 - (i32.shl - (get_local $5) - (get_local $7) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $23) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $6 + (i32.shl + (get_local $5) + (get_local $7) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $6) - (get_local $5) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $6) + (get_local $5) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $16) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $16) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $4) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $4) - (get_local $7) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $0 - (i32.add - (get_local $4) - (i32.const 16) + (i32.load + (i32.const 180) ) ) - (i32.const 0) - ) - (i32.store - (get_local $0) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $0 - (i32.load - (i32.const 180) - ) - ) - (tee_local $16 - (i32.shl - (i32.const 1) - (get_local $7) - ) - ) + (tee_local $16 + (i32.shl + (i32.const 1) + (get_local $7) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $0) - (get_local $16) - ) - ) - (i32.store - (get_local $1) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $1) - ) - (i32.store offset=12 - (get_local $4) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - (br $do-once44) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $0) + (get_local $16) ) ) - (set_local $16 - (i32.shl - (get_local $14) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) + (i32.store + (get_local $1) + (get_local $4) + ) + (i32.store offset=24 + (get_local $4) + (get_local $1) + ) + (i32.store offset=12 + (get_local $4) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $4) + ) + (br $do-once44) + ) + ) + (set_local $16 + (i32.shl + (get_local $14) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) ) ) - ) - (set_local $0 - (i32.load - (get_local $1) + (i32.eq + (get_local $7) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $10 - (loop $while-in64 (result i32) - (block $while-out63 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $14) - ) - (block - (set_local $35 - (get_local $0) - ) - (br $while-out63 - (i32.const 281) - ) + ) + ) + (set_local $0 + (i32.load + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in64 (result i32) + (block $while-out63 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $1 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $16) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $14) + ) + (block + (set_local $35 + (get_local $0) + ) + (br $while-out63 + (i32.const 281) + ) + ) + ) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $1 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) ) - ) - ) - (block - (set_local $16 (i32.shl - (get_local $16) - (i32.const 1) + (i32.shr_u + (get_local $16) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $0 - (get_local $5) - ) - (br $while-in64) ) - (block (result i32) - (set_local $43 - (get_local $1) - ) - (set_local $51 - (get_local $0) - ) - (i32.const 278) + ) + ) + (block + (set_local $16 + (i32.shl + (get_local $16) + (i32.const 1) ) ) + (set_local $0 + (get_local $5) + ) + (br $while-in64) + ) + (block (result i32) + (set_local $43 + (get_local $1) + ) + (set_local $51 + (get_local $0) + ) + (i32.const 278) ) ) ) - (i32.const 278) ) - (if - (i32.lt_u - (get_local $43) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $43) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $51) - ) - (i32.store offset=12 - (get_local $4) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - ) + ) + (i32.const 278) + ) + (if + (i32.lt_u + (get_local $43) + (i32.load + (i32.const 192) ) - (if - (i32.eq - (get_local $10) - (i32.const 281) - ) - (if - (i32.and - (i32.ge_u - (tee_local $16 - (i32.load - (tee_local $0 - (i32.add - (get_local $35) - (i32.const 8) - ) - ) - ) - ) - (tee_local $5 - (i32.load - (i32.const 192) + ) + (call $_abort) + (block + (i32.store + (get_local $43) + (get_local $4) + ) + (i32.store offset=24 + (get_local $4) + (get_local $51) + ) + (i32.store offset=12 + (get_local $4) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $4) + ) + ) + ) + (if + (i32.eq + (get_local $10) + (i32.const 281) + ) + (if + (i32.and + (i32.ge_u + (tee_local $16 + (i32.load + (tee_local $0 + (i32.add + (get_local $35) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $35) - (get_local $5) - ) ) - (block - (i32.store offset=12 - (get_local $16) - (get_local $4) - ) - (i32.store - (get_local $0) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $16) - ) - (i32.store offset=12 - (get_local $4) - (get_local $35) - ) - (i32.store offset=24 - (get_local $4) - (i32.const 0) + (tee_local $5 + (i32.load + (i32.const 192) ) ) - (call $_abort) + ) + (i32.ge_u + (get_local $35) + (get_local $5) ) ) - ) - ) - (block - (i32.store - (i32.const 188) - (tee_local $16 - (i32.add - (i32.load - (i32.const 188) - ) - (get_local $14) + (block + (i32.store offset=12 + (get_local $16) + (get_local $4) + ) + (i32.store + (get_local $0) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $16) + ) + (i32.store offset=12 + (get_local $4) + (get_local $35) + ) + (i32.store offset=24 + (get_local $4) + (i32.const 0) ) ) + (call $_abort) ) - (i32.store - (i32.const 200) - (get_local $4) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $16) - (i32.const 1) + ) + ) + ) + (block + (i32.store + (i32.const 188) + (tee_local $16 + (i32.add + (i32.load + (i32.const 188) ) + (get_local $14) ) ) ) - ) - (return - (i32.add - (get_local $12) - (i32.const 8) + (i32.store + (i32.const 200) + (get_local $4) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $16) + (i32.const 1) + ) ) ) ) + (return + (i32.add + (get_local $12) + (i32.const 8) + ) + ) ) ) ) - (set_local $14 - (i32.add - (tee_local $12 - (i32.add - (tee_local $0 - (loop $while-in66 (result i32) + ) + (set_local $14 + (i32.add + (tee_local $12 + (i32.add + (tee_local $0 + (loop $while-in66 (result i32) + (if (result i32) (if (result i32) - (if (result i32) - (i32.le_u - (tee_local $4 - (i32.load - (get_local $29) - ) + (i32.le_u + (tee_local $4 + (i32.load + (get_local $29) ) - (get_local $13) ) - (i32.gt_u - (tee_local $14 - (i32.add - (get_local $4) - (i32.load offset=4 - (get_local $29) - ) + (get_local $13) + ) + (i32.gt_u + (tee_local $14 + (i32.add + (get_local $4) + (i32.load offset=4 + (get_local $29) ) ) - (get_local $13) ) - (i32.const 0) + (get_local $13) ) - (get_local $14) - (block - (set_local $29 - (i32.load offset=8 - (get_local $29) - ) + (i32.const 0) + ) + (get_local $14) + (block + (set_local $29 + (i32.load offset=8 + (get_local $29) ) - (br $while-in66) ) + (br $while-in66) ) ) ) - (i32.const -47) ) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $4 - (i32.add - (tee_local $12 - (select - (get_local $13) - (tee_local $4 - (i32.add - (get_local $12) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $14) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $4 + (i32.add + (tee_local $12 + (select + (get_local $13) + (tee_local $4 + (i32.add + (get_local $12) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $14) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $14) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $4) - (tee_local $14 - (i32.add - (get_local $13) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $4) + (tee_local $14 + (i32.add + (get_local $13) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 200) - (tee_local $2 - (i32.add - (get_local $19) - (tee_local $18 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $2 - (i32.add - (get_local $19) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $2 + (i32.add + (get_local $19) + (tee_local $18 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $2 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $2) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $2) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $16 - (i32.sub - (i32.add - (get_local $21) - (i32.const -40) - ) - (get_local $18) - ) - ) - ) - (i32.store offset=4 - (get_local $2) - (i32.or - (get_local $16) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $16) - ) - (i32.const 40) - ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) - ) - (i32.store - (tee_local $16 + ) + (i32.store + (i32.const 188) + (tee_local $16 + (i32.sub (i32.add - (get_local $12) - (i32.const 4) + (get_local $21) + (i32.const -40) ) + (get_local $18) ) - (i32.const 27) ) - (i32.store - (get_local $4) - (i32.load - (i32.const 624) - ) + ) + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $16) + (i32.const 1) ) - (i32.store offset=4 - (get_local $4) - (i32.load - (i32.const 628) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $2) + (get_local $16) ) - (i32.store offset=8 - (get_local $4) - (i32.load - (i32.const 632) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (i32.store offset=12 - (get_local $4) - (i32.load - (i32.const 636) + ) + (i32.store + (tee_local $16 + (i32.add + (get_local $12) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $4) + (i32.load (i32.const 624) - (get_local $19) ) - (i32.store + ) + (i32.store offset=4 + (get_local $4) + (i32.load (i32.const 628) - (get_local $21) ) - (i32.store + ) + (i32.store offset=8 + (get_local $4) + (i32.load + (i32.const 632) + ) + ) + (i32.store offset=12 + (get_local $4) + (i32.load (i32.const 636) - (i32.const 0) ) + ) + (i32.store + (i32.const 624) + (get_local $19) + ) + (i32.store + (i32.const 628) + (get_local $21) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 632) + (get_local $4) + ) + (set_local $4 + (i32.add + (get_local $12) + (i32.const 24) + ) + ) + (loop $do-in68 (i32.store - (i32.const 632) - (get_local $4) + (tee_local $4 + (i32.add + (get_local $4) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $4 - (i32.add - (get_local $12) - (i32.const 24) + (br_if $do-in68 + (i32.lt_u + (i32.add + (get_local $4) + (i32.const 4) + ) + (get_local $0) ) ) - (loop $do-in68 + ) + (if + (i32.ne + (get_local $12) + (get_local $13) + ) + (block (i32.store - (tee_local $4 - (i32.add - (get_local $4) - (i32.const 4) + (get_local $16) + (i32.and + (i32.load + (get_local $16) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $do-in68 - (i32.lt_u - (i32.add - (get_local $4) - (i32.const 4) + (i32.store offset=4 + (get_local $13) + (i32.or + (tee_local $4 + (i32.sub + (get_local $12) + (get_local $13) + ) ) - (get_local $0) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $12) - (get_local $13) + (get_local $4) ) - (block - (i32.store - (get_local $16) - (i32.and - (i32.load - (get_local $16) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $13) - (i32.or - (tee_local $4 - (i32.sub - (get_local $12) - (get_local $13) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $12) + (set_local $2 + (i32.shr_u (get_local $4) + (i32.const 3) ) - (set_local $2 - (i32.shr_u - (get_local $4) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $4) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $4) - (i32.const 256) + (block + (set_local $18 + (i32.add + (i32.shl + (get_local $2) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $18 - (i32.add + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 176) + ) + ) + (tee_local $5 (i32.shl + (i32.const 1) (get_local $2) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $0 + (i32.lt_u + (tee_local $1 (i32.load - (i32.const 176) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $2) - ) - ) - ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $18) - (i32.const 8) - ) + (tee_local $2 + (i32.add + (get_local $18) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $44 - (get_local $2) - ) - (set_local $36 - (get_local $1) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $0) - (get_local $5) - ) - ) (set_local $44 - (i32.add - (get_local $18) - (i32.const 8) - ) + (get_local $2) ) (set_local $36 - (get_local $18) + (get_local $1) ) ) ) - (i32.store - (get_local $44) - (get_local $13) - ) - (i32.store offset=12 - (get_local $36) - (get_local $13) - ) - (i32.store offset=8 - (get_local $13) - (get_local $36) - ) - (i32.store offset=12 - (get_local $13) - (get_local $18) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $0) + (get_local $5) + ) + ) + (set_local $44 + (i32.add + (get_local $18) + (i32.const 8) + ) + ) + (set_local $36 + (get_local $18) + ) ) - (br $do-once40) ) + (i32.store + (get_local $44) + (get_local $13) + ) + (i32.store offset=12 + (get_local $36) + (get_local $13) + ) + (i32.store offset=8 + (get_local $13) + (get_local $36) + ) + (i32.store offset=12 + (get_local $13) + (get_local $18) + ) + (br $do-once40) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $7 + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $18 + (i32.shr_u + (get_local $4) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $18 - (i32.shr_u - (get_local $4) - (i32.const 8) - ) + (i32.gt_u + (get_local $4) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $4) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $4) - (i32.add - (tee_local $2 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $4) + (i32.add + (tee_local $2 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $18 - (i32.and - (i32.shr_u - (i32.add - (tee_local $0 - (i32.shl - (get_local $18) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (get_local $18) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $18 + (i32.and + (i32.shr_u + (i32.add + (tee_local $0 + (i32.shl + (get_local $18) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (get_local $18) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $5) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (get_local $18) - ) + (get_local $5) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (get_local $18) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $2) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $2) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $13) - (get_local $7) + ) + (i32.store offset=28 + (get_local $13) + (get_local $7) + ) + (i32.store offset=20 + (get_local $13) + (i32.const 0) + ) + (i32.store + (get_local $14) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $0 + (i32.load + (i32.const 180) + ) + ) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $7) + ) + ) + ) ) - (i32.store offset=20 - (get_local $13) - (i32.const 0) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $2) + (get_local $13) + ) + (i32.store offset=24 + (get_local $13) + (get_local $2) + ) + (i32.store offset=12 + (get_local $13) + (get_local $13) + ) + (i32.store offset=8 + (get_local $13) + (get_local $13) + ) + (br $do-once40) ) - (i32.store - (get_local $14) - (i32.const 0) + ) + (set_local $1 + (i32.shl + (get_local $4) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) + ) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $0 - (i32.load - (i32.const 180) + ) + (set_local $0 + (i32.load + (get_local $2) + ) + ) + (if + (i32.eq + (tee_local $10 + (loop $while-in70 (result i32) + (block $while-out69 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) + ) + (i32.const -8) + ) + (get_local $4) + ) + (block + (set_local $37 + (get_local $0) + ) + (br $while-out69 + (i32.const 307) + ) + ) ) - ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $7) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $1) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $1 + (i32.shl + (get_local $1) + (i32.const 1) + ) + ) + (set_local $0 + (get_local $5) + ) + (br $while-in70) + ) + (block (result i32) + (set_local $45 + (get_local $2) + ) + (set_local $52 + (get_local $0) + ) + (i32.const 304) + ) ) ) ) ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $0) - (get_local $1) - ) + (i32.const 304) + ) + (if + (i32.lt_u + (get_local $45) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $2) + (get_local $45) (get_local $13) ) (i32.store offset=24 (get_local $13) - (get_local $2) + (get_local $52) ) (i32.store offset=12 (get_local $13) @@ -5446,323 +5532,199 @@ (get_local $13) (get_local $13) ) - (br $do-once40) - ) - ) - (set_local $1 - (i32.shl - (get_local $4) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) - ) - ) - (i32.eq - (get_local $7) - (i32.const 31) - ) - ) - ) - ) - (set_local $0 - (i32.load - (get_local $2) ) ) (if (i32.eq - (tee_local $10 - (loop $while-in70 (result i32) - (block $while-out69 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $4) - ) - (block - (set_local $37 - (get_local $0) - ) - (br $while-out69 - (i32.const 307) + (get_local $10) + (i32.const 307) + ) + (if + (i32.and + (i32.ge_u + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $37) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $1) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $1 - (i32.shl - (get_local $1) - (i32.const 1) - ) - ) - (set_local $0 - (get_local $5) - ) - (br $while-in70) - ) - (block (result i32) - (set_local $45 - (get_local $2) - ) - (set_local $52 - (get_local $0) - ) - (i32.const 304) - ) + ) + (tee_local $4 + (i32.load + (i32.const 192) ) ) ) - ) - (i32.const 304) - ) - (if - (i32.lt_u - (get_local $45) - (i32.load - (i32.const 192) + (i32.ge_u + (get_local $37) + (get_local $4) ) ) - (call $_abort) (block + (i32.store offset=12 + (get_local $1) + (get_local $13) + ) (i32.store - (get_local $45) + (get_local $0) (get_local $13) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $13) - (get_local $52) + (get_local $1) ) (i32.store offset=12 (get_local $13) - (get_local $13) + (get_local $37) ) - (i32.store offset=8 - (get_local $13) + (i32.store offset=24 (get_local $13) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $10) - (i32.const 307) - ) - (if - (i32.and - (i32.ge_u - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $37) - (i32.const 8) - ) - ) - ) - ) - (tee_local $4 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $37) - (get_local $4) - ) - ) - (block - (i32.store offset=12 - (get_local $1) - (get_local $13) - ) - (i32.store - (get_local $0) - (get_local $13) - ) - (i32.store offset=8 - (get_local $13) - (get_local $1) - ) - (i32.store offset=12 - (get_local $13) - (get_local $37) - ) - (i32.store offset=24 - (get_local $13) - (i32.const 0) - ) - ) - (call $_abort) - ) + (call $_abort) ) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $1 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $1 + (i32.load + (i32.const 192) ) ) - (i32.lt_u - (get_local $19) - (get_local $1) - ) ) - (i32.store - (i32.const 192) + (i32.lt_u (get_local $19) + (get_local $1) ) ) (i32.store - (i32.const 624) + (i32.const 192) (get_local $19) ) - (i32.store - (i32.const 628) - (get_local $21) - ) - (i32.store - (i32.const 636) - (i32.const 0) + ) + (i32.store + (i32.const 624) + (get_local $19) + ) + (i32.store + (i32.const 628) + (get_local $21) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 212) + (i32.load + (i32.const 648) ) - (i32.store - (i32.const 212) - (i32.load - (i32.const 648) + ) + (i32.store + (i32.const 208) + (i32.const -1) + ) + (set_local $1 + (i32.const 0) + ) + (loop $do-in72 + (i32.store offset=12 + (tee_local $0 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) + ) + (i32.const 216) + ) ) + (get_local $0) ) - (i32.store - (i32.const 208) - (i32.const -1) - ) - (set_local $1 - (i32.const 0) + (i32.store offset=8 + (get_local $0) + (get_local $0) ) - (loop $do-in72 - (i32.store offset=12 - (tee_local $0 + (br_if $do-in72 + (i32.ne + (tee_local $1 (i32.add - (i32.shl - (get_local $1) - (i32.const 3) - ) - (i32.const 216) - ) - ) - (get_local $0) - ) - (i32.store offset=8 - (get_local $0) - (get_local $0) - ) - (br_if $do-in72 - (i32.ne - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 1) - ) + (get_local $1) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 200) - (tee_local $1 - (i32.add - (get_local $19) - (tee_local $0 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $19) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $1 + (i32.add + (get_local $19) + (tee_local $0 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $19) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $4 - (i32.sub - (i32.add - (get_local $21) - (i32.const -40) - ) - (get_local $0) + ) + (i32.store + (i32.const 188) + (tee_local $4 + (i32.sub + (i32.add + (get_local $21) + (i32.const -40) ) + (get_local $0) ) ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $4) - (i32.const 1) - ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $4) + (i32.const 1) ) - (i32.store offset=4 - (i32.add - (get_local $1) - (get_local $4) - ) - (i32.const 40) + ) + (i32.store offset=4 + (i32.add + (get_local $1) + (get_local $4) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) ) ) @@ -5901,279 +5863,329 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $4) - (i32.const 1) + (if + (i32.and + (get_local $4) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 + (set_local $3 + (get_local $5) + ) + ) + (block $do-once + (set_local $11 + (i32.load (get_local $1) ) - (set_local $3 - (get_local $5) - ) ) - (block - (set_local $11 - (i32.load - (get_local $1) - ) - ) - (if - (i32.eqz - (get_local $0) - ) - (return) + (if + (i32.eqz + (get_local $0) ) - (set_local $5 - (i32.add - (get_local $11) - (get_local $5) - ) + (return) + ) + (set_local $5 + (i32.add + (get_local $11) + (get_local $5) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub - (get_local $1) - (get_local $11) - ) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (get_local $11) ) - (get_local $14) ) - (call $_abort) + (get_local $14) ) - (if - (i32.eq - (get_local $1) - (i32.load - (i32.const 196) - ) + (call $_abort) + ) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 196) ) - (block - (if - (i32.ne - (i32.and - (tee_local $7 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 4) - ) + ) + (block + (if + (i32.ne + (i32.and + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 4) ) ) ) - (i32.const 3) ) (i32.const 3) ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) - ) - ) - (i32.store - (i32.const 184) - (get_local $5) + (i32.const 3) ) - (i32.store - (get_local $0) - (i32.and - (get_local $7) - (i32.const -2) + (block + (set_local $2 + (get_local $1) ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or + (set_local $3 (get_local $5) - (i32.const 1) ) + (br $do-once) ) - (i32.store - (i32.add - (get_local $1) - (get_local $5) - ) + ) + (i32.store + (i32.const 184) + (get_local $5) + ) + (i32.store + (get_local $0) + (i32.and + (get_local $7) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $5) + (i32.const 1) ) - (return) ) - ) - (set_local $7 - (i32.shr_u - (get_local $11) - (i32.const 3) + (i32.store + (i32.add + (get_local $1) + (get_local $5) + ) + (get_local $5) ) + (return) ) - (if - (i32.lt_u - (get_local $11) - (i32.const 256) + ) + (set_local $7 + (i32.shr_u + (get_local $11) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $11) + (i32.const 256) + ) + (block + (set_local $0 + (i32.load offset=12 + (get_local $1) + ) ) - (block - (set_local $0 - (i32.load offset=12 - (get_local $1) + (if + (i32.ne + (tee_local $11 + (i32.load offset=8 + (get_local $1) + ) ) - ) - (if - (i32.ne - (tee_local $11 - (i32.load offset=8 - (get_local $1) + (tee_local $4 + (i32.add + (i32.shl + (get_local $7) + (i32.const 3) ) + (i32.const 216) ) - (tee_local $4 - (i32.add - (i32.shl - (get_local $7) - (i32.const 3) - ) - (i32.const 216) - ) + ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (get_local $14) ) + (call $_abort) ) - (block - (if - (i32.lt_u + (if + (i32.ne + (i32.load offset=12 (get_local $11) - (get_local $14) ) - (call $_abort) + (get_local $1) ) - (if - (i32.ne - (i32.load offset=12 - (get_local $11) + (call $_abort) + ) + ) + ) + (if + (i32.eq + (get_local $0) + (get_local $11) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $7) ) - (get_local $1) + (i32.const -1) ) - (call $_abort) ) ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + (br $do-once) ) - (if - (i32.eq - (get_local $0) - (get_local $11) + ) + (if + (i32.ne + (get_local $0) + (get_local $4) + ) + (block + (if + (i32.lt_u + (get_local $0) + (get_local $14) + ) + (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $7) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) - (i32.const -1) ) ) - ) - (set_local $2 (get_local $1) ) - (set_local $3 - (get_local $5) + (set_local $10 + (get_local $4) ) - (br $do-once) + (call $_abort) ) ) - (if - (i32.ne + (set_local $10 + (i32.add (get_local $0) - (get_local $4) + (i32.const 8) ) - (block - (if - (i32.lt_u - (get_local $0) - (get_local $14) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) + ) + ) + (i32.store offset=12 + (get_local $11) + (get_local $0) + ) + (i32.store + (get_local $10) + (get_local $11) + ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + (br $do-once) + ) + ) + (set_local $11 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) + ) + (block $do-once0 + (if + (tee_local $10 + (i32.load + (tee_local $7 + (i32.add + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $1) - ) - (set_local $10 - (get_local $4) + (i32.const 4) ) - (call $_abort) - ) - ) - (set_local $10 - (i32.add - (get_local $0) - (i32.const 8) ) ) ) - (i32.store offset=12 - (get_local $11) - (get_local $0) - ) - (i32.store - (get_local $10) - (get_local $11) - ) - (set_local $2 - (get_local $1) + (block + (set_local $0 + (get_local $10) + ) + (set_local $4 + (get_local $7) + ) ) - (set_local $3 - (get_local $5) + (br_if $do-once0 + (i32.eqz + (tee_local $0 + (i32.load + (get_local $4) + ) + ) + ) ) - (br $do-once) - ) - ) - (set_local $11 - (i32.load offset=24 - (get_local $1) ) - ) - (block $do-once0 - (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $1) + (loop $while-in + (if + (tee_local $10 + (i32.load + (tee_local $7 + (i32.add + (get_local $0) + (i32.const 20) + ) + ) ) ) - (get_local $1) + (block + (set_local $0 + (get_local $10) + ) + (set_local $4 + (get_local $7) + ) + (br $while-in) + ) ) - (block - (if + (set_local $7 + (if (result i32) (tee_local $10 (i32.load (tee_local $7 (i32.add - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) + (get_local $0) + (i32.const 16) ) ) ) @@ -6185,322 +6197,260 @@ (set_local $4 (get_local $7) ) + (br $while-in) ) - (br_if $do-once0 - (i32.eqz - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + (block (result i32) + (set_local $9 + (get_local $4) ) + (get_local $0) ) ) - (loop $while-in - (if - (tee_local $10 - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $9) + (get_local $14) + ) + (call $_abort) + (block + (i32.store + (get_local $9) + (i32.const 0) + ) + (set_local $6 + (get_local $7) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $7 + (i32.load offset=8 + (get_local $1) + ) + ) + (get_local $14) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $10 + (i32.add + (get_local $7) + (i32.const 12) ) - (block - (set_local $0 - (get_local $10) - ) - (set_local $4 - (get_local $7) - ) - (br $while-in) + ) + ) + (get_local $1) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (set_local $7 - (if (result i32) - (tee_local $10 - (i32.load - (tee_local $7 - (i32.add - (get_local $0) - (i32.const 16) - ) + ) + (get_local $1) + ) + (block + (i32.store + (get_local $10) + (get_local $0) + ) + (i32.store + (get_local $4) + (get_local $7) + ) + (set_local $6 + (get_local $0) + ) + ) + (call $_abort) + ) + ) + ) + (if + (get_local $11) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $7 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - (block - (set_local $0 - (get_local $10) - ) - (set_local $4 - (get_local $7) - ) - (br $while-in) - ) - (block (result i32) - (set_local $9 - (get_local $4) - ) - (get_local $0) - ) + (i32.const 480) ) ) ) + ) + (block + (i32.store + (get_local $7) + (get_local $6) + ) (if - (i32.lt_u - (get_local $9) - (get_local $14) + (i32.eqz + (get_local $6) ) - (call $_abort) (block (i32.store - (get_local $9) - (i32.const 0) + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) + ) + (i32.const -1) + ) + ) ) - (set_local $6 - (get_local $7) + (set_local $2 + (get_local $1) ) + (set_local $3 + (get_local $5) + ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $7 - (i32.load offset=8 - (get_local $1) - ) + (get_local $11) + (i32.load + (i32.const 192) ) - (get_local $14) ) (call $_abort) ) (if - (i32.ne + (i32.eq (i32.load - (tee_local $10 + (tee_local $0 (i32.add - (get_local $7) - (i32.const 12) + (get_local $11) + (i32.const 16) ) ) ) (get_local $1) ) - (call $_abort) + (i32.store + (get_local $0) + (get_local $6) + ) + (i32.store offset=20 + (get_local $11) + (get_local $6) + ) ) (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $1) + (i32.eqz + (get_local $6) ) (block - (i32.store - (get_local $10) - (get_local $0) - ) - (i32.store - (get_local $4) - (get_local $7) + (set_local $2 + (get_local $1) ) - (set_local $6 - (get_local $0) + (set_local $3 + (get_local $5) ) + (br $do-once) ) - (call $_abort) ) ) ) - ) - (if - (get_local $11) - (block - (if - (i32.eq - (get_local $1) + (if + (i32.lt_u + (get_local $6) + (tee_local $0 (i32.load - (tee_local $7 - (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 480) - ) - ) + (i32.const 192) ) ) - (block - (i32.store - (get_local $7) - (get_local $6) - ) - (if - (i32.eqz - (get_local $6) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $11) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 16) - ) - ) - ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $6) + (get_local $11) + ) + (if + (tee_local $4 + (i32.load + (tee_local $7 + (i32.add (get_local $1) - ) - (i32.store - (get_local $0) - (get_local $6) - ) - (i32.store offset=20 - (get_local $11) - (get_local $6) - ) - ) - (if - (i32.eqz - (get_local $6) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) - (br $do-once) + (i32.const 16) ) ) ) ) (if (i32.lt_u - (get_local $6) - (tee_local $0 - (i32.load - (i32.const 192) - ) - ) + (get_local $4) + (get_local $0) ) (call $_abort) - ) - (i32.store offset=24 - (get_local $6) - (get_local $11) - ) - (if - (tee_local $4 - (i32.load - (tee_local $7 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (if - (i32.lt_u + (block + (i32.store offset=16 + (get_local $6) (get_local $4) - (get_local $0) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $7) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $7) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $6) (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) - ) - (block (set_local $2 (get_local $1) ) @@ -6509,16 +6459,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $5) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $5) + ) + ) ) ) ) @@ -6697,169 +6655,167 @@ (get_local $8) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $9 - (i32.load offset=12 - (get_local $8) - ) + (if + (i32.eq + (tee_local $9 + (i32.load offset=12 + (get_local $8) ) - (get_local $8) ) - (block - (set_local $3 - (if (result i32) - (tee_local $10 - (i32.load - (tee_local $0 - (i32.add - (tee_local $4 - (i32.add - (get_local $8) - (i32.const 16) - ) + (get_local $8) + ) + (block $do-once6 + (set_local $3 + (if (result i32) + (tee_local $10 + (i32.load + (tee_local $0 + (i32.add + (tee_local $4 + (i32.add + (get_local $8) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $10) - ) - (if (result i32) - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + ) + (block (result i32) + (set_local $4 (get_local $0) - (br $do-once6) ) + (get_local $10) ) - ) - (loop $while-in9 - (if - (tee_local $10 + (if (result i32) + (tee_local $0 (i32.load - (tee_local $0 - (i32.add - (get_local $3) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $3 - (get_local $10) - ) - (set_local $4 - (get_local $0) + (get_local $4) ) - (br $while-in9) ) + (get_local $0) + (br $do-once6) ) - (if - (tee_local $10 - (i32.load - (tee_local $0 - (i32.add - (get_local $3) - (i32.const 16) - ) + ) + ) + (loop $while-in9 + (if + (tee_local $10 + (i32.load + (tee_local $0 + (i32.add + (get_local $3) + (i32.const 20) ) ) ) - (block - (set_local $3 - (get_local $10) - ) - (set_local $4 - (get_local $0) - ) - (br $while-in9) + ) + (block + (set_local $3 + (get_local $10) + ) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $4) + (tee_local $10 (i32.load - (i32.const 192) + (tee_local $0 + (i32.add + (get_local $3) + (i32.const 16) + ) + ) ) ) - (call $_abort) (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $3 + (get_local $10) ) - (set_local $12 - (get_local $3) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $0 - (i32.load offset=8 - (get_local $8) - ) - ) - (i32.load - (i32.const 192) + (if + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $12 + (get_local $3) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 + (get_local $8) ) ) - (call $_abort) + (i32.load + (i32.const 192) + ) ) - (if - (i32.ne - (i32.load - (tee_local $10 - (i32.add - (get_local $0) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $10 + (i32.add + (get_local $0) + (i32.const 12) ) ) - (get_local $8) ) - (call $_abort) + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $9) - (i32.const 8) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $9) + (i32.const 8) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $10) - (get_local $9) - ) - (i32.store - (get_local $4) - (get_local $0) - ) - (set_local $12 - (get_local $9) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $10) + (get_local $9) + ) + (i32.store + (get_local $4) + (get_local $0) + ) + (set_local $12 + (get_local $9) ) - (call $_abort) ) + (call $_abort) ) ) ) @@ -8067,169 +8023,165 @@ ) ) ) - (block $label$break$L5 - (if - (i32.eq - (get_local $7) - (i32.const 5) - ) - (block - (if - (i32.lt_u - (i32.sub - (get_local $6) - (tee_local $3 - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 5) + ) + (block $label$break$L5 + (if + (i32.lt_u + (i32.sub + (get_local $6) + (tee_local $3 + (i32.load + (tee_local $5 + (i32.add + (get_local $2) + (i32.const 20) ) ) ) ) - (get_local $1) ) - (block - (set_local $4 - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + (get_local $1) + ) + (block + (set_local $4 + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) ) - (br $label$break$L5) ) + (br $label$break$L5) ) - (set_local $4 - (get_local $3) + ) + (set_local $4 + (get_local $3) + ) + (if + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) + ) + (i32.const -1) ) (block $label$break$L10 - (if - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) - ) - (block - (set_local $3 - (get_local $1) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (if + (i32.eqz + (get_local $3) ) - (loop $while-in - (if - (i32.eqz - (get_local $3) - ) - (block - (set_local $3 - (i32.const 0) - ) - (br $label$break$L10) - ) - ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) - ) - ) - ) - (i32.const 10) - ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) - ) + (block + (set_local $3 + (i32.const 0) ) + (br $label$break$L10) ) - (if - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) + ) + (if + (i32.ne + (i32.load8_s + (i32.add (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) - (i32.const 2) ) ) - (get_local $3) - ) - (block - (set_local $4 - (get_local $3) - ) - (br $label$break$L5) ) + (i32.const 10) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) - (set_local $0 + ) + ) + (if + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) (i32.add - (get_local $0) - (get_local $3) + (i32.and + (i32.load offset=36 + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 2) ) ) + (get_local $3) + ) + (block (set_local $4 - (i32.load - (get_local $5) - ) + (get_local $3) ) + (br $label$break$L5) ) - (set_local $3 - (i32.const 0) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) ) - ) - (drop - (call $_memcpy - (get_local $4) - (get_local $0) - (get_local $1) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) + ) ) - ) - (i32.store - (get_local $5) - (i32.add + (set_local $4 (i32.load (get_local $5) ) - (get_local $1) ) ) - (set_local $4 - (i32.add - (get_local $3) - (get_local $1) + (set_local $3 + (i32.const 0) + ) + ) + (drop + (call $_memcpy + (get_local $4) + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $5) + (i32.add + (i32.load + (get_local $5) ) + (get_local $1) + ) + ) + (set_local $4 + (i32.add + (get_local $3) + (get_local $1) ) ) ) @@ -8239,10 +8191,10 @@ (func $_fflush (; 19 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) (local $2 i32) - (block $do-once - (if - (get_local $0) - (block + (if + (get_local $0) + (set_local $1 + (block $do-once (result i32) (if (i32.le_s (i32.load offset=76 @@ -8250,90 +8202,85 @@ ) (i32.const -1) ) - (block - (set_local $1 - (call $___fflush_unlocked - (get_local $0) - ) + (br $do-once + (call $___fflush_unlocked + (get_local $0) ) - (br $do-once) ) ) - (set_local $1 - (call $___fflush_unlocked - (get_local $0) - ) + (call $___fflush_unlocked + (get_local $0) ) ) - (block - (set_local $0 - (if (result i32) + ) + (block + (set_local $0 + (if (result i32) + (i32.load + (i32.const 56) + ) + (call $_fflush (i32.load (i32.const 56) ) - (call $_fflush - (i32.load - (i32.const 56) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $___lock - (i32.const 36) + ) + (call $___lock + (i32.const 36) + ) + (if + (tee_local $1 + (i32.load + (i32.const 32) + ) ) - (if - (tee_local $1 - (i32.load - (i32.const 32) - ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $1 - (get_local $0) + (set_local $1 + (get_local $0) + ) + (loop $while-in + (set_local $0 + (i32.const 0) ) - (loop $while-in - (set_local $0 - (i32.const 0) - ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $2) - ) - (i32.load offset=28 - (get_local $2) - ) + (if + (i32.gt_u + (i32.load offset=20 + (get_local $2) ) - (set_local $1 - (i32.or - (call $___fflush_unlocked - (get_local $2) - ) - (get_local $1) - ) + (i32.load offset=28 + (get_local $2) ) ) - (br_if $while-in - (tee_local $2 - (i32.load offset=56 + (set_local $1 + (i32.or + (call $___fflush_unlocked (get_local $2) ) + (get_local $1) + ) + ) + ) + (br_if $while-in + (tee_local $2 + (i32.load offset=56 + (get_local $2) ) ) ) - ) - (set_local $1 - (get_local $0) ) ) - (call $___unlock - (i32.const 36) + (set_local $1 + (get_local $0) ) ) + (call $___unlock + (i32.const 36) + ) ) ) (get_local $1) @@ -8344,60 +8291,58 @@ (local $3 i32) (local $4 i32) (local $5 i32) - (block $label$break$L1 - (if - (i32.and - (tee_local $3 - (get_local $0) - ) - (i32.const 3) + (if + (i32.and + (tee_local $3 + (get_local $0) ) - (block - (set_local $4 - (get_local $3) - ) - (loop $while-in - (if - (i32.eqz - (i32.load8_s - (get_local $0) - ) + (i32.const 3) + ) + (block $label$break$L1 + (set_local $4 + (get_local $3) + ) + (loop $while-in + (if + (i32.eqz + (i32.load8_s + (get_local $0) ) - (block - (set_local $5 - (get_local $4) - ) - (br $label$break$L1) + ) + (block + (set_local $5 + (get_local $4) ) + (br $label$break$L1) ) - (br_if $while-in - (i32.and - (tee_local $4 - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + ) + (br_if $while-in + (i32.and + (tee_local $4 + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) - (i32.const 3) ) + (i32.const 3) ) ) - (set_local $2 - (i32.const 4) - ) - (set_local $1 - (get_local $0) - ) ) - (block - (set_local $1 - (get_local $0) - ) - (set_local $2 - (i32.const 4) - ) + (set_local $2 + (i32.const 4) + ) + (set_local $1 + (get_local $0) + ) + ) + (block + (set_local $1 + (get_local $0) + ) + (set_local $2 + (i32.const 4) ) ) ) @@ -8491,7 +8436,7 @@ (local $6 i32) (local $7 i32) (local $8 i32) - (set_local $4 + (set_local $3 (get_global $STACKTOP) ) (set_global $STACKTOP @@ -8501,8 +8446,8 @@ ) ) (i32.store8 - (tee_local $5 - (get_local $4) + (tee_local $4 + (get_local $3) ) (i32.const 10) ) @@ -8518,10 +8463,10 @@ ) ) (block - (set_local $6 + (set_local $5 (get_local $2) ) - (set_local $7 + (set_local $6 (i32.const 4) ) ) @@ -8529,28 +8474,28 @@ (call $___towrite (get_local $0) ) - (set_local $3 + (set_local $7 (i32.const -1) ) (block - (set_local $6 + (set_local $5 (i32.load (get_local $1) ) ) - (set_local $7 + (set_local $6 (i32.const 4) ) ) ) ) - (block $do-once - (if - (i32.eq - (get_local $7) - (i32.const 4) - ) - (block + (if + (i32.eq + (get_local $6) + (i32.const 4) + ) + (set_local $7 + (block $do-once (result i32) (if (if (result i32) (i32.lt_u @@ -8564,7 +8509,7 @@ ) ) ) - (get_local $6) + (get_local $5) ) (i32.ne (tee_local $8 @@ -8588,44 +8533,41 @@ (get_local $1) (i32.const 10) ) - (set_local $3 + (br $do-once (get_local $8) ) - (br $do-once) ) ) - (set_local $3 - (if (result i32) - (i32.eq - (call_indirect (type $FUNCSIG$iiii) - (get_local $0) - (get_local $5) - (i32.const 1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $0) - ) - (i32.const 7) + (if (result i32) + (i32.eq + (call_indirect (type $FUNCSIG$iiii) + (get_local $0) + (get_local $4) + (i32.const 1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $0) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) - (i32.const 1) ) - (i32.load8_u - (get_local $5) - ) - (i32.const -1) + (i32.const 1) ) + (i32.load8_u + (get_local $4) + ) + (i32.const -1) ) ) ) ) (set_global $STACKTOP - (get_local $4) + (get_local $3) ) - (get_local $3) + (get_local $7) ) (func $___fflush_unlocked (; 22 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) @@ -9054,72 +8996,70 @@ (i32.shr_s (i32.shl (tee_local $0 - (block $do-once (result i32) - (if (result i32) - (i32.lt_s - (i32.add - (call $_fwrite + (if (result i32) + (i32.lt_s + (i32.add + (call $_fwrite + (i32.const 672) + (call $_strlen (i32.const 672) - (call $_strlen - (i32.const 672) - ) - (get_local $0) ) - (i32.const -1) + (get_local $0) ) - (i32.const 0) + (i32.const -1) ) - (i32.const 1) - (block (result i32) - (if - (if (result i32) - (i32.ne - (i32.load8_s offset=75 - (get_local $0) - ) - (i32.const 10) + (i32.const 0) + ) + (i32.const 1) + (block $do-once (result i32) + (if + (if (result i32) + (i32.ne + (i32.load8_s offset=75 + (get_local $0) ) - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (i32.const 10) + ) + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (i32.load offset=16 - (get_local $0) - ) ) - (i32.const 0) - ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) + (i32.load offset=16 + (get_local $0) ) - (i32.store8 + ) + (i32.const 0) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) - ) - (br $do-once - (i32.const 0) + (i32.const 1) ) ) - ) - (i32.lt_s - (call $___overflow - (get_local $0) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once + (i32.const 0) ) - (i32.const 0) ) ) + (i32.lt_s + (call $___overflow + (get_local $0) + ) + (i32.const 0) + ) ) ) ) diff --git a/test/emcc_hello_world.fromasm b/test/emcc_hello_world.fromasm index 8b07f24c0..83f811c55 100644 --- a/test/emcc_hello_world.fromasm +++ b/test/emcc_hello_world.fromasm @@ -547,10 +547,10 @@ (func $_fflush (; 33 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) (local $2 i32) - (block $do-once - (if - (get_local $0) - (block + (if + (get_local $0) + (set_local $0 + (block $do-once (result i32) (if (i32.le_s (i32.load offset=76 @@ -558,80 +558,75 @@ ) (i32.const -1) ) - (block - (set_local $0 - (call $___fflush_unlocked - (get_local $0) - ) + (br $do-once + (call $___fflush_unlocked + (get_local $0) ) - (br $do-once) ) ) - (set_local $0 - (call $___fflush_unlocked - (get_local $0) - ) + (call $___fflush_unlocked + (get_local $0) ) ) - (block - (set_local $0 - (if (result i32) + ) + (block + (set_local $0 + (if (result i32) + (i32.load + (i32.const 12) + ) + (call $_fflush (i32.load (i32.const 12) ) - (call $_fflush - (i32.load - (i32.const 12) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $___lock - (i32.const 44) + ) + (call $___lock + (i32.const 44) + ) + (if + (tee_local $1 + (i32.load + (i32.const 40) + ) ) - (if - (tee_local $1 - (i32.load - (i32.const 40) + (loop $while-in + (drop + (i32.load offset=76 + (get_local $1) ) ) - (loop $while-in - (drop - (i32.load offset=76 + (if + (i32.gt_u + (i32.load offset=20 + (get_local $1) + ) + (i32.load offset=28 (get_local $1) ) ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $1) - ) - (i32.load offset=28 + (set_local $0 + (i32.or + (call $___fflush_unlocked (get_local $1) ) - ) - (set_local $0 - (i32.or - (call $___fflush_unlocked - (get_local $1) - ) - (get_local $0) - ) + (get_local $0) ) ) - (br_if $while-in - (tee_local $1 - (i32.load offset=56 - (get_local $1) - ) + ) + (br_if $while-in + (tee_local $1 + (i32.load offset=56 + (get_local $1) ) ) ) ) - (call $___unlock - (i32.const 44) - ) + ) + (call $___unlock + (i32.const 44) ) ) ) @@ -1370,90 +1365,88 @@ ) ) (set_local $2 - (block $label$break$L10 (result i32) - (if (result i32) - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) + (if (result i32) + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) ) - (block (result i32) - (set_local $3 - (get_local $1) - ) - (loop $while-in - (drop - (br_if $label$break$L10 - (i32.const 0) - (i32.eqz - (get_local $3) - ) + (i32.const -1) + ) + (block $label$break$L10 (result i32) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (drop + (br_if $label$break$L10 + (i32.const 0) + (i32.eqz + (get_local $3) ) ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) + ) + (if + (i32.ne + (i32.load8_s + (i32.add + (get_local $0) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) ) ) - (i32.const 10) ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) + (i32.const 10) + ) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) ) - (br_if $label$break$L5 - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + ) + (br_if $label$break$L5 + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) - (get_local $3) ) + (get_local $3) ) - (set_local $4 - (i32.load - (get_local $5) - ) + ) + (set_local $4 + (i32.load + (get_local $5) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) - ) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) - (set_local $0 - (i32.add - (get_local $0) - (get_local $3) - ) + ) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) ) - (get_local $3) ) - (i32.const 0) + (get_local $3) ) + (i32.const 0) ) ) (drop @@ -1560,177 +1553,175 @@ ) ) (func $_wcrtomb (; 39 ;) (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32) - (block $do-once (result i32) - (if (result i32) - (get_local $0) - (block (result i32) - (if - (i32.lt_u + (if (result i32) + (get_local $0) + (block $do-once (result i32) + (if + (i32.lt_u + (get_local $1) + (i32.const 128) + ) + (block + (i32.store8 + (get_local $0) (get_local $1) - (i32.const 128) ) - (block - (i32.store8 - (get_local $0) - (get_local $1) - ) - (br $do-once - (i32.const 1) - ) + (br $do-once + (i32.const 1) ) ) - (if - (i32.lt_u - (get_local $1) - (i32.const 2048) - ) - (block - (i32.store8 - (get_local $0) - (i32.or - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 192) + ) + (if + (i32.lt_u + (get_local $1) + (i32.const 2048) + ) + (block + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 6) ) + (i32.const 192) ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (get_local $1) - (i32.const 63) - ) - (i32.const 128) + ) + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) ) - ) - (br $do-once - (i32.const 2) + (i32.const 128) ) ) + (br $do-once + (i32.const 2) + ) ) - (if - (i32.or - (i32.lt_u + ) + (if + (i32.or + (i32.lt_u + (get_local $1) + (i32.const 55296) + ) + (i32.eq + (i32.and (get_local $1) - (i32.const 55296) + (i32.const -8192) ) - (i32.eq - (i32.and + (i32.const 57344) + ) + ) + (block + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u (get_local $1) - (i32.const -8192) + (i32.const 12) ) - (i32.const 57344) + (i32.const 224) ) ) - (block - (i32.store8 - (get_local $0) - (i32.or + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and (i32.shr_u (get_local $1) - (i32.const 12) - ) - (i32.const 224) - ) - ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 63) + (i32.const 6) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.store8 offset=2 - (get_local $0) - (i32.or - (i32.and - (get_local $1) - (i32.const 63) - ) - (i32.const 128) + ) + (i32.store8 offset=2 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) ) + (i32.const 128) ) - (br $do-once - (i32.const 3) - ) + ) + (br $do-once + (i32.const 3) ) ) - (if (result i32) - (i32.lt_u - (i32.add - (get_local $1) - (i32.const -65536) + ) + (if (result i32) + (i32.lt_u + (i32.add + (get_local $1) + (i32.const -65536) + ) + (i32.const 1048576) + ) + (block (result i32) + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 18) + ) + (i32.const 240) ) - (i32.const 1048576) ) - (block (result i32) - (i32.store8 - (get_local $0) - (i32.or + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and (i32.shr_u (get_local $1) - (i32.const 18) - ) - (i32.const 240) - ) - ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 12) - ) - (i32.const 63) - ) - (i32.const 128) - ) - ) - (i32.store8 offset=2 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 63) + (i32.const 12) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.store8 offset=3 - (get_local $0) - (i32.or - (i32.and + ) + (i32.store8 offset=2 + (get_local $0) + (i32.or + (i32.and + (i32.shr_u (get_local $1) - (i32.const 63) + (i32.const 6) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.const 4) ) - (block (result i32) - (i32.store - (call $___errno_location) - (i32.const 84) + (i32.store8 offset=3 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) + ) + (i32.const 128) ) - (i32.const -1) ) + (i32.const 4) + ) + (block (result i32) + (i32.store + (call $___errno_location) + (i32.const 84) + ) + (i32.const -1) ) ) - (i32.const 1) ) + (i32.const 1) ) ) (func $_wctomb (; 40 ;) (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32) @@ -2546,570 +2537,564 @@ ) ) (set_local $1 - (block $label$break$L25 (result i32) - (if (result i32) - (i32.eq - (i32.and - (tee_local $11 - (i32.shr_s - (i32.shl - (get_local $6) - (i32.const 24) - ) + (if (result i32) + (i32.eq + (i32.and + (tee_local $11 + (i32.shr_s + (i32.shl + (get_local $6) (i32.const 24) ) + (i32.const 24) ) - (i32.const -32) ) - (i32.const 32) + (i32.const -32) ) - (block (result i32) - (set_local $1 - (get_local $6) - ) - (set_local $6 - (get_local $11) - ) - (set_local $11 - (i32.const 0) - ) - (loop $while-in4 - (if - (i32.eqz - (i32.and - (i32.shl - (i32.const 1) - (i32.add - (get_local $6) - (i32.const -32) - ) + (i32.const 32) + ) + (block $label$break$L25 (result i32) + (set_local $1 + (get_local $6) + ) + (set_local $6 + (get_local $11) + ) + (set_local $11 + (i32.const 0) + ) + (loop $while-in4 + (if + (i32.eqz + (i32.and + (i32.shl + (i32.const 1) + (i32.add + (get_local $6) + (i32.const -32) ) - (i32.const 75913) ) + (i32.const 75913) ) - (block - (set_local $6 - (get_local $1) - ) - (br $label$break$L25 - (get_local $11) - ) + ) + (block + (set_local $6 + (get_local $1) + ) + (br $label$break$L25 + (get_local $11) ) ) - (set_local $11 - (i32.or - (i32.shl - (i32.const 1) - (i32.add - (i32.shr_s - (i32.shl - (get_local $1) - (i32.const 24) - ) + ) + (set_local $11 + (i32.or + (i32.shl + (i32.const 1) + (i32.add + (i32.shr_s + (i32.shl + (get_local $1) (i32.const 24) ) - (i32.const -32) + (i32.const 24) ) + (i32.const -32) ) - (get_local $11) ) + (get_local $11) ) - (br_if $while-in4 - (i32.eq - (i32.and - (tee_local $6 - (tee_local $1 - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (br_if $while-in4 + (i32.eq + (i32.and + (tee_local $6 + (tee_local $1 + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) ) ) - (i32.const -32) ) - (i32.const 32) + (i32.const -32) ) + (i32.const 32) ) ) - (set_local $6 - (get_local $1) - ) - (get_local $11) ) - (i32.const 0) + (set_local $6 + (get_local $1) + ) + (get_local $11) ) + (i32.const 0) ) ) (set_local $1 - (block $do-once5 (result i32) - (if (result i32) - (i32.eq - (i32.and - (get_local $6) - (i32.const 255) - ) - (i32.const 42) + (if (result i32) + (i32.eq + (i32.and + (get_local $6) + (i32.const 255) ) - (block (result i32) - (set_local $10 - (block $__rjto$0 (result i32) - (block $__rjti$0 - (br_if $__rjti$0 - (i32.ge_u - (tee_local $11 - (i32.add - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const 42) + ) + (block $do-once5 (result i32) + (set_local $10 + (block $__rjto$0 (result i32) + (block $__rjti$0 + (br_if $__rjti$0 + (i32.ge_u + (tee_local $11 + (i32.add + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) + (i32.const 10) ) - (br_if $__rjti$0 - (i32.ne - (i32.load8_s offset=2 - (get_local $10) - ) - (i32.const 36) + ) + (br_if $__rjti$0 + (i32.ne + (i32.load8_s offset=2 + (get_local $10) ) + (i32.const 36) ) - (i32.store - (i32.add - (get_local $4) - (i32.shl - (get_local $11) - (i32.const 2) - ) + ) + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $11) + (i32.const 2) ) - (i32.const 10) ) - (drop - (i32.load offset=4 - (tee_local $6 - (i32.add - (get_local $3) - (i32.shl - (i32.add - (i32.load8_s - (get_local $6) - ) - (i32.const -48) + (i32.const 10) + ) + (drop + (i32.load offset=4 + (tee_local $6 + (i32.add + (get_local $3) + (i32.shl + (i32.add + (i32.load8_s + (get_local $6) ) - (i32.const 3) + (i32.const -48) ) + (i32.const 3) ) ) ) ) - (set_local $8 - (i32.const 1) - ) - (set_local $15 - (i32.load - (get_local $6) - ) - ) - (br $__rjto$0 - (i32.add - (get_local $10) - (i32.const 3) - ) - ) - ) - (if - (get_local $8) - (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) - ) ) - (if - (i32.eqz - (get_local $28) - ) - (block - (set_local $11 - (get_local $1) - ) - (set_local $10 - (get_local $6) - ) - (set_local $15 - (i32.const 0) - ) - (br $do-once5 - (i32.const 0) - ) - ) + (set_local $8 + (i32.const 1) ) (set_local $15 (i32.load - (tee_local $10 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) - ) - (i32.const -4) - ) - ) + (get_local $6) ) ) - (i32.store - (get_local $2) + (br $__rjto$0 (i32.add (get_local $10) - (i32.const 4) + (i32.const 3) ) ) - (set_local $8 - (i32.const 0) + ) + (if + (get_local $8) + (block + (set_local $17 + (i32.const -1) + ) + (br $label$break$L1) ) - (get_local $6) ) - ) - (set_local $11 - (if (result i32) - (i32.lt_s - (get_local $15) - (i32.const 0) + (if + (i32.eqz + (get_local $28) ) - (block (result i32) + (block + (set_local $11 + (get_local $1) + ) + (set_local $10 + (get_local $6) + ) (set_local $15 - (i32.sub - (i32.const 0) - (get_local $15) - ) + (i32.const 0) ) - (i32.or - (get_local $1) - (i32.const 8192) + (br $do-once5 + (i32.const 0) ) ) - (get_local $1) ) - ) - (get_local $8) - ) - (if (result i32) - (i32.lt_u - (tee_local $6 - (i32.add - (i32.shr_s - (i32.shl - (get_local $6) - (i32.const 24) + (set_local $15 + (i32.load + (tee_local $10 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 3) + ) + (i32.const -4) ) - (i32.const 24) ) - (i32.const -48) ) ) - (i32.const 10) + (i32.store + (get_local $2) + (i32.add + (get_local $10) + (i32.const 4) + ) + ) + (set_local $8 + (i32.const 0) + ) + (get_local $6) ) - (block (result i32) - (set_local $11 + ) + (set_local $11 + (if (result i32) + (i32.lt_s + (get_local $15) (i32.const 0) ) - (loop $while-in8 - (set_local $6 - (i32.add - (i32.mul - (get_local $11) - (i32.const 10) - ) + (block (result i32) + (set_local $15 + (i32.sub + (i32.const 0) + (get_local $15) + ) + ) + (i32.or + (get_local $1) + (i32.const 8192) + ) + ) + (get_local $1) + ) + ) + (get_local $8) + ) + (if (result i32) + (i32.lt_u + (tee_local $6 + (i32.add + (i32.shr_s + (i32.shl (get_local $6) + (i32.const 24) ) + (i32.const 24) ) - (if - (i32.lt_u - (tee_local $9 - (i32.add - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const -48) + ) + ) + (i32.const 10) + ) + (block (result i32) + (set_local $11 + (i32.const 0) + ) + (loop $while-in8 + (set_local $6 + (i32.add + (i32.mul + (get_local $11) + (i32.const 10) + ) + (get_local $6) + ) + ) + (if + (i32.lt_u + (tee_local $9 + (i32.add + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (block - (set_local $11 - (get_local $6) - ) - (set_local $6 - (get_local $9) - ) - (br $while-in8) - ) - ) - ) - (if (result i32) - (i32.lt_s - (get_local $6) - (i32.const 0) + (i32.const 10) ) (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) - ) - (block (result i32) (set_local $11 - (get_local $1) - ) - (set_local $15 (get_local $6) ) - (get_local $8) + (set_local $6 + (get_local $9) + ) + (br $while-in8) ) ) ) - (block (result i32) - (set_local $11 - (get_local $1) - ) - (set_local $15 + (if (result i32) + (i32.lt_s + (get_local $6) (i32.const 0) ) - (get_local $8) + (block + (set_local $17 + (i32.const -1) + ) + (br $label$break$L1) + ) + (block (result i32) + (set_local $11 + (get_local $1) + ) + (set_local $15 + (get_local $6) + ) + (get_local $8) + ) ) ) + (block (result i32) + (set_local $11 + (get_local $1) + ) + (set_local $15 + (i32.const 0) + ) + (get_local $8) + ) ) ) ) (set_local $6 - (block $label$break$L46 (result i32) - (if (result i32) - (i32.eq - (i32.load8_s - (get_local $10) - ) - (i32.const 46) + (if (result i32) + (i32.eq + (i32.load8_s + (get_local $10) ) - (block (result i32) - (if - (i32.ne - (tee_local $8 - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const 46) + ) + (block $label$break$L46 (result i32) + (if + (i32.ne + (tee_local $8 + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 1) ) ) ) - (i32.const 42) ) - (block - (set_local $6 - (if (result i32) - (i32.lt_u - (tee_local $9 - (i32.add - (get_local $8) - (i32.const -48) - ) + (i32.const 42) + ) + (block + (set_local $6 + (if (result i32) + (i32.lt_u + (tee_local $9 + (i32.add + (get_local $8) + (i32.const -48) ) - (i32.const 10) ) - (block (result i32) - (set_local $10 - (get_local $6) - ) - (set_local $8 - (i32.const 0) - ) - (get_local $9) + (i32.const 10) + ) + (block (result i32) + (set_local $10 + (get_local $6) ) - (block - (set_local $10 - (get_local $6) - ) - (br $label$break$L46 - (i32.const 0) - ) + (set_local $8 + (i32.const 0) + ) + (get_local $9) + ) + (block + (set_local $10 + (get_local $6) + ) + (br $label$break$L46 + (i32.const 0) ) ) ) - (loop $while-in11 - (drop - (br_if $label$break$L46 - (tee_local $6 - (i32.add - (i32.mul - (get_local $8) - (i32.const 10) - ) - (get_local $6) + ) + (loop $while-in11 + (drop + (br_if $label$break$L46 + (tee_local $6 + (i32.add + (i32.mul + (get_local $8) + (i32.const 10) ) + (get_local $6) ) - (i32.ge_u - (tee_local $9 - (i32.add - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (i32.ge_u + (tee_local $9 + (i32.add + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) + (i32.const 10) ) ) - (set_local $8 - (get_local $6) - ) - (set_local $6 - (get_local $9) - ) - (br $while-in11) ) + (set_local $8 + (get_local $6) + ) + (set_local $6 + (get_local $9) + ) + (br $while-in11) ) ) - (if - (i32.lt_u - (tee_local $8 - (i32.add - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 2) - ) + ) + (if + (i32.lt_u + (tee_local $8 + (i32.add + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 2) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (if - (i32.eq - (i32.load8_s offset=3 - (get_local $10) - ) - (i32.const 36) + (i32.const 10) + ) + (if + (i32.eq + (i32.load8_s offset=3 + (get_local $10) ) - (block - (i32.store - (i32.add - (get_local $4) - (i32.shl - (get_local $8) - (i32.const 2) - ) + (i32.const 36) + ) + (block + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $8) + (i32.const 2) ) - (i32.const 10) ) - (drop - (i32.load offset=4 - (tee_local $6 - (i32.add - (get_local $3) - (i32.shl - (i32.add - (i32.load8_s - (get_local $6) - ) - (i32.const -48) + (i32.const 10) + ) + (drop + (i32.load offset=4 + (tee_local $6 + (i32.add + (get_local $3) + (i32.shl + (i32.add + (i32.load8_s + (get_local $6) ) - (i32.const 3) + (i32.const -48) ) + (i32.const 3) ) ) ) ) - (set_local $10 - (i32.add - (get_local $10) - (i32.const 4) - ) + ) + (set_local $10 + (i32.add + (get_local $10) + (i32.const 4) ) - (br $label$break$L46 - (i32.load - (get_local $6) - ) + ) + (br $label$break$L46 + (i32.load + (get_local $6) ) ) ) ) - (if - (get_local $1) - (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) + ) + (if + (get_local $1) + (block + (set_local $17 + (i32.const -1) ) + (br $label$break$L1) ) - (if (result i32) - (get_local $28) - (block (result i32) - (set_local $8 - (i32.load - (tee_local $10 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) + ) + (if (result i32) + (get_local $28) + (block (result i32) + (set_local $8 + (i32.load + (tee_local $10 + (i32.and + (i32.add + (i32.load + (get_local $2) ) - (i32.const -4) + (i32.const 3) ) + (i32.const -4) ) ) ) - (i32.store - (get_local $2) - (i32.add - (get_local $10) - (i32.const 4) - ) - ) - (set_local $10 - (get_local $6) - ) - (get_local $8) ) - (block (result i32) - (set_local $10 - (get_local $6) + (i32.store + (get_local $2) + (i32.add + (get_local $10) + (i32.const 4) ) - (i32.const 0) ) + (set_local $10 + (get_local $6) + ) + (get_local $8) + ) + (block (result i32) + (set_local $10 + (get_local $6) + ) + (i32.const 0) ) ) - (i32.const -1) ) + (i32.const -1) ) ) (set_local $8 @@ -3906,2171 +3891,2099 @@ ) ) (set_local $7 - (block $do-once49 (result i32) - (if (result i32) - (i32.lt_u - (i32.and - (i32.load offset=4 - (get_global $tempDoublePtr) - ) - (i32.const 2146435072) + (if (result i32) + (i32.lt_u + (i32.and + (i32.load offset=4 + (get_global $tempDoublePtr) ) (i32.const 2146435072) ) - (block (result i32) - (if - (tee_local $5 - (f64.ne - (tee_local $23 - (f64.mul - (call $_frexp - (get_local $16) - (get_local $20) - ) - (f64.const 2) + (i32.const 2146435072) + ) + (block $do-once49 (result i32) + (if + (tee_local $5 + (f64.ne + (tee_local $23 + (f64.mul + (call $_frexp + (get_local $16) + (get_local $20) ) + (f64.const 2) ) - (f64.const 0) ) + (f64.const 0) ) - (i32.store - (get_local $20) - (i32.add - (i32.load - (get_local $20) - ) - (i32.const -1) + ) + (i32.store + (get_local $20) + (i32.add + (i32.load + (get_local $20) ) + (i32.const -1) ) ) - (if - (i32.eq - (tee_local $24 - (i32.or - (get_local $19) - (i32.const 32) - ) + ) + (if + (i32.eq + (tee_local $24 + (i32.or + (get_local $19) + (i32.const 32) ) - (i32.const 97) ) - (block - (set_local $9 - (select - (i32.add - (get_local $30) - (i32.const 9) - ) + (i32.const 97) + ) + (block + (set_local $9 + (select + (i32.add (get_local $30) - (tee_local $13 - (i32.and - (get_local $19) - (i32.const 32) - ) + (i32.const 9) + ) + (get_local $30) + (tee_local $13 + (i32.and + (get_local $19) + (i32.const 32) ) ) ) - (set_local $16 - (if (result f64) - (i32.or - (i32.gt_u - (get_local $6) - (i32.const 11) - ) - (i32.eqz - (tee_local $5 - (i32.sub - (i32.const 12) - (get_local $6) - ) + ) + (set_local $16 + (if (result f64) + (i32.or + (i32.gt_u + (get_local $6) + (i32.const 11) + ) + (i32.eqz + (tee_local $5 + (i32.sub + (i32.const 12) + (get_local $6) ) ) ) - (get_local $23) - (block (result f64) + ) + (get_local $23) + (block (result f64) + (set_local $16 + (f64.const 8) + ) + (loop $while-in54 (set_local $16 - (f64.const 8) - ) - (loop $while-in54 - (set_local $16 - (f64.mul - (get_local $16) - (f64.const 16) - ) + (f64.mul + (get_local $16) + (f64.const 16) ) - (br_if $while-in54 - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -1) - ) + ) + (br_if $while-in54 + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -1) ) ) ) - (if (result f64) - (i32.eq - (i32.load8_s - (get_local $9) - ) - (i32.const 45) + ) + (if (result f64) + (i32.eq + (i32.load8_s + (get_local $9) ) - (f64.neg - (f64.add - (get_local $16) - (f64.sub - (f64.neg - (get_local $23) - ) - (get_local $16) + (i32.const 45) + ) + (f64.neg + (f64.add + (get_local $16) + (f64.sub + (f64.neg + (get_local $23) ) - ) - ) - (f64.sub - (f64.add - (get_local $23) (get_local $16) ) + ) + ) + (f64.sub + (f64.add + (get_local $23) (get_local $16) ) + (get_local $16) ) ) ) ) - (if - (i32.eq - (tee_local $5 - (call $_fmt_u - (tee_local $5 - (select - (i32.sub - (i32.const 0) - (tee_local $7 - (i32.load - (get_local $20) - ) + ) + (if + (i32.eq + (tee_local $5 + (call $_fmt_u + (tee_local $5 + (select + (i32.sub + (i32.const 0) + (tee_local $7 + (i32.load + (get_local $20) ) ) + ) + (get_local $7) + (i32.lt_s (get_local $7) - (i32.lt_s - (get_local $7) - (i32.const 0) - ) + (i32.const 0) ) ) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $5) - (i32.const 0) - ) - (i32.const 31) + ) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $5) + (i32.const 0) ) (i32.const 31) ) - (get_local $33) + (i32.const 31) ) + (get_local $33) ) - (get_local $33) ) - (block - (i32.store8 - (get_local $42) - (i32.const 48) - ) - (set_local $5 - (get_local $42) - ) + (get_local $33) + ) + (block + (i32.store8 + (get_local $42) + (i32.const 48) + ) + (set_local $5 + (get_local $42) ) ) - (set_local $12 - (i32.or - (get_local $26) + ) + (set_local $12 + (i32.or + (get_local $26) + (i32.const 2) + ) + ) + (i32.store8 + (i32.add + (get_local $5) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_s + (get_local $7) + (i32.const 31) + ) (i32.const 2) ) + (i32.const 43) ) - (i32.store8 + ) + (i32.store8 + (tee_local $8 (i32.add (get_local $5) - (i32.const -1) + (i32.const -2) ) - (i32.add - (i32.and - (i32.shr_s - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - (i32.const 43) + ) + (i32.add + (get_local $19) + (i32.const 15) + ) + ) + (set_local $19 + (i32.lt_s + (get_local $6) + (i32.const 1) + ) + ) + (set_local $18 + (i32.eqz + (i32.and + (get_local $11) + (i32.const 8) ) ) + ) + (set_local $5 + (get_local $22) + ) + (loop $while-in56 (i32.store8 - (tee_local $8 - (i32.add - (get_local $5) - (i32.const -2) + (get_local $5) + (i32.or + (i32.load8_u + (i32.add + (tee_local $7 + (call $f64-to-int + (get_local $16) + ) + ) + (i32.const 4075) + ) ) - ) - (i32.add - (get_local $19) - (i32.const 15) - ) - ) - (set_local $19 - (i32.lt_s - (get_local $6) - (i32.const 1) + (get_local $13) ) ) - (set_local $18 - (i32.eqz - (i32.and - (get_local $11) - (i32.const 8) + (set_local $16 + (f64.mul + (f64.sub + (get_local $16) + (f64.convert_s/i32 + (get_local $7) + ) ) + (f64.const 16) ) ) (set_local $5 - (get_local $22) - ) - (loop $while-in56 - (i32.store8 - (get_local $5) - (i32.or - (i32.load8_u - (i32.add - (tee_local $7 - (call $f64-to-int - (get_local $16) - ) + (if (result i32) + (i32.eq + (i32.sub + (tee_local $7 + (i32.add + (get_local $5) + (i32.const 1) ) - (i32.const 4075) ) + (get_local $37) ) - (get_local $13) + (i32.const 1) ) - ) - (set_local $16 - (f64.mul - (f64.sub - (get_local $16) - (f64.convert_s/i32 - (get_local $7) + (if (result i32) + (i32.and + (get_local $18) + (i32.and + (get_local $19) + (f64.eq + (get_local $16) + (f64.const 0) + ) ) ) - (f64.const 16) - ) - ) - (set_local $5 - (block $do-once57 (result i32) - (if (result i32) - (i32.eq - (i32.sub - (tee_local $7 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (get_local $37) - ) - (i32.const 1) + (get_local $7) + (block (result i32) + (i32.store8 + (get_local $7) + (i32.const 46) ) - (block (result i32) - (drop - (br_if $do-once57 - (get_local $7) - (i32.and - (get_local $18) - (i32.and - (get_local $19) - (f64.eq - (get_local $16) - (f64.const 0) - ) - ) - ) - ) - ) - (i32.store8 - (get_local $7) - (i32.const 46) - ) - (i32.add - (get_local $5) - (i32.const 2) - ) + (i32.add + (get_local $5) + (i32.const 2) ) - (get_local $7) ) ) + (get_local $7) ) - (br_if $while-in56 - (f64.ne - (get_local $16) - (f64.const 0) - ) + ) + (br_if $while-in56 + (f64.ne + (get_local $16) + (f64.const 0) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $7 - (i32.add - (tee_local $6 - (select + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $7 + (i32.add + (tee_local $6 + (select + (i32.sub + (i32.add + (get_local $47) + (get_local $6) + ) + (get_local $8) + ) + (i32.add (i32.sub - (i32.add - (get_local $47) - (get_local $6) - ) + (get_local $45) (get_local $8) ) - (i32.add - (i32.sub - (get_local $45) - (get_local $8) - ) - (get_local $5) + (get_local $5) + ) + (i32.and + (i32.ne + (get_local $6) + (i32.const 0) ) - (i32.and - (i32.ne - (get_local $6) - (i32.const 0) - ) - (i32.lt_s - (i32.add - (get_local $46) - (get_local $5) - ) - (get_local $6) + (i32.lt_s + (i32.add + (get_local $46) + (get_local $5) ) + (get_local $6) ) ) ) - (get_local $12) ) + (get_local $12) ) - (get_local $11) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $9) - (get_local $12) + (get_local $11) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 65536) + (drop + (call $___fwritex + (get_local $9) + (get_local $12) + (get_local $0) ) ) - (set_local $5 - (i32.sub - (get_local $5) - (get_local $37) - ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 65536) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $22) - (get_local $5) + ) + (set_local $5 + (i32.sub + (get_local $5) + (get_local $37) + ) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.sub - (get_local $6) - (i32.add - (get_local $5) - (tee_local $5 - (i32.sub - (get_local $27) - (get_local $8) - ) - ) - ) + (drop + (call $___fwritex + (get_local $22) + (get_local $5) + (get_local $0) ) - (i32.const 0) - (i32.const 0) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (i32.sub + (get_local $6) + (i32.add + (get_local $5) + (tee_local $5 + (i32.sub + (get_local $27) + (get_local $8) ) - (i32.const 32) ) ) - (drop - (call $___fwritex - (get_local $8) - (get_local $5) + ) + (i32.const 0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 8192) + (drop + (call $___fwritex + (get_local $8) + (get_local $5) + (get_local $0) ) ) - (br $do-once49 - (select - (get_local $15) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (br $do-once49 + (select + (get_local $15) + (get_local $7) + (i32.lt_s (get_local $7) - (i32.lt_s - (get_local $7) - (get_local $15) - ) + (get_local $15) ) ) ) ) - (set_local $16 - (if (result f64) - (get_local $5) - (block (result f64) - (i32.store - (get_local $20) - (tee_local $5 - (i32.add - (i32.load - (get_local $20) - ) - (i32.const -28) + ) + (set_local $16 + (if (result f64) + (get_local $5) + (block (result f64) + (i32.store + (get_local $20) + (tee_local $5 + (i32.add + (i32.load + (get_local $20) ) + (i32.const -28) ) ) - (f64.mul - (get_local $23) - (f64.const 268435456) - ) ) - (block (result f64) - (set_local $5 - (i32.load - (get_local $20) - ) - ) + (f64.mul (get_local $23) + (f64.const 268435456) ) ) - ) - (set_local $7 - (tee_local $8 - (select - (get_local $48) - (get_local $49) - (i32.lt_s - (get_local $5) - (i32.const 0) + (block (result f64) + (set_local $5 + (i32.load + (get_local $20) ) ) + (get_local $23) ) ) - (loop $while-in60 - (i32.store - (get_local $7) - (tee_local $5 - (call $f64-to-int - (get_local $16) - ) + ) + (set_local $7 + (tee_local $8 + (select + (get_local $48) + (get_local $49) + (i32.lt_s + (get_local $5) + (i32.const 0) ) ) - (set_local $7 - (i32.add - (get_local $7) - (i32.const 4) + ) + ) + (loop $while-in60 + (i32.store + (get_local $7) + (tee_local $5 + (call $f64-to-int + (get_local $16) ) ) - (br_if $while-in60 - (f64.ne - (tee_local $16 - (f64.mul - (f64.sub - (get_local $16) - (f64.convert_u/i32 - (get_local $5) - ) + ) + (set_local $7 + (i32.add + (get_local $7) + (i32.const 4) + ) + ) + (br_if $while-in60 + (f64.ne + (tee_local $16 + (f64.mul + (f64.sub + (get_local $16) + (f64.convert_u/i32 + (get_local $5) ) - (f64.const 1e9) ) + (f64.const 1e9) ) - (f64.const 0) ) + (f64.const 0) ) ) - (if - (i32.gt_s - (tee_local $9 - (i32.load - (get_local $20) - ) + ) + (if + (i32.gt_s + (tee_local $9 + (i32.load + (get_local $20) ) - (i32.const 0) ) - (block - (set_local $5 - (get_local $8) - ) - (loop $while-in62 - (set_local $13 - (select - (i32.const 29) + (i32.const 0) + ) + (block + (set_local $5 + (get_local $8) + ) + (loop $while-in62 + (set_local $13 + (select + (i32.const 29) + (get_local $9) + (i32.gt_s (get_local $9) - (i32.gt_s - (get_local $9) - (i32.const 29) + (i32.const 29) + ) + ) + ) + (if + (i32.ge_u + (tee_local $9 + (i32.add + (get_local $7) + (i32.const -4) ) ) + (get_local $5) ) (block $do-once63 - (if - (i32.ge_u - (tee_local $9 - (i32.add - (get_local $7) - (i32.const -4) - ) - ) - (get_local $5) - ) - (block - (set_local $12 - (i32.const 0) - ) - (loop $while-in66 - (i32.store - (get_local $9) - (call $___uremdi3 - (tee_local $12 - (call $_i64Add - (call $_bitshift64Shl - (i32.load - (get_local $9) - ) - (i32.const 0) - (get_local $13) - ) - (get_global $tempRet0) - (get_local $12) - (i32.const 0) + (set_local $12 + (i32.const 0) + ) + (loop $while-in66 + (i32.store + (get_local $9) + (call $___uremdi3 + (tee_local $12 + (call $_i64Add + (call $_bitshift64Shl + (i32.load + (get_local $9) ) + (i32.const 0) + (get_local $13) ) - (tee_local $18 - (get_global $tempRet0) - ) - (i32.const 1000000000) - ) - ) - (set_local $12 - (call $___udivdi3 + (get_global $tempRet0) (get_local $12) - (get_local $18) - (i32.const 1000000000) + (i32.const 0) ) ) - (br_if $while-in66 - (i32.ge_u - (tee_local $9 - (i32.add - (get_local $9) - (i32.const -4) - ) - ) - (get_local $5) - ) + (tee_local $18 + (get_global $tempRet0) ) + (i32.const 1000000000) ) - (br_if $do-once63 - (i32.eqz - (get_local $12) - ) + ) + (set_local $12 + (call $___udivdi3 + (get_local $12) + (get_local $18) + (i32.const 1000000000) ) - (i32.store - (tee_local $5 + ) + (br_if $while-in66 + (i32.ge_u + (tee_local $9 (i32.add - (get_local $5) + (get_local $9) (i32.const -4) ) ) - (get_local $12) + (get_local $5) + ) + ) + ) + (br_if $do-once63 + (i32.eqz + (get_local $12) + ) + ) + (i32.store + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) ) ) + (get_local $12) ) ) - (loop $while-in68 + ) + (loop $while-in68 + (if + (i32.gt_u + (get_local $7) + (get_local $5) + ) (if - (i32.gt_u - (get_local $7) - (get_local $5) - ) - (if - (i32.eqz - (i32.load - (tee_local $9 - (i32.add - (get_local $7) - (i32.const -4) - ) + (i32.eqz + (i32.load + (tee_local $9 + (i32.add + (get_local $7) + (i32.const -4) ) ) ) - (block - (set_local $7 - (get_local $9) - ) - (br $while-in68) + ) + (block + (set_local $7 + (get_local $9) ) + (br $while-in68) ) ) ) - (i32.store - (get_local $20) - (tee_local $9 - (i32.sub - (i32.load - (get_local $20) - ) - (get_local $13) + ) + (i32.store + (get_local $20) + (tee_local $9 + (i32.sub + (i32.load + (get_local $20) ) + (get_local $13) ) ) - (br_if $while-in62 - (i32.gt_s - (get_local $9) - (i32.const 0) - ) + ) + (br_if $while-in62 + (i32.gt_s + (get_local $9) + (i32.const 0) ) ) ) - (set_local $5 - (get_local $8) - ) ) - (set_local $18 - (select - (i32.const 6) - (get_local $6) - (i32.lt_s - (get_local $6) - (i32.const 0) - ) - ) + (set_local $5 + (get_local $8) ) - (if + ) + (set_local $18 + (select + (i32.const 6) + (get_local $6) (i32.lt_s - (get_local $9) + (get_local $6) (i32.const 0) ) - (block - (set_local $21 - (i32.add - (call $i32s-div - (i32.add - (get_local $18) - (i32.const 25) + ) + ) + (if + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + (block + (set_local $21 + (i32.add + (call $i32s-div + (i32.add + (get_local $18) + (i32.const 25) + ) + (i32.const 9) + ) + (i32.const 1) + ) + ) + (set_local $31 + (i32.eq + (get_local $24) + (i32.const 102) + ) + ) + (set_local $6 + (get_local $5) + ) + (set_local $5 + (get_local $7) + ) + (loop $while-in70 + (set_local $13 + (select + (i32.const 9) + (tee_local $7 + (i32.sub + (i32.const 0) + (get_local $9) ) + ) + (i32.gt_s + (get_local $7) (i32.const 9) ) - (i32.const 1) ) ) - (set_local $31 - (i32.eq - (get_local $24) - (i32.const 102) + (if + (i32.lt_u + (get_local $6) + (get_local $5) ) - ) - (set_local $6 - (get_local $5) - ) - (set_local $5 - (get_local $7) - ) - (loop $while-in70 - (set_local $13 - (select - (i32.const 9) - (tee_local $7 - (i32.sub - (i32.const 0) - (get_local $9) + (block $do-once71 + (set_local $12 + (i32.add + (i32.shl + (i32.const 1) + (get_local $13) ) - ) - (i32.gt_s - (get_local $7) - (i32.const 9) + (i32.const -1) ) ) - ) - (block $do-once71 - (if - (i32.lt_u - (get_local $6) - (get_local $5) + (set_local $38 + (i32.shr_u + (i32.const 1000000000) + (get_local $13) ) - (block - (set_local $12 - (i32.add - (i32.shl - (i32.const 1) - (get_local $13) - ) - (i32.const -1) - ) - ) - (set_local $38 + ) + (set_local $9 + (i32.const 0) + ) + (set_local $7 + (get_local $6) + ) + (loop $while-in74 + (i32.store + (get_local $7) + (i32.add (i32.shr_u - (i32.const 1000000000) - (get_local $13) - ) - ) - (set_local $9 - (i32.const 0) - ) - (set_local $7 - (get_local $6) - ) - (loop $while-in74 - (i32.store - (get_local $7) - (i32.add - (i32.shr_u - (tee_local $32 - (i32.load - (get_local $7) - ) - ) - (get_local $13) - ) - (get_local $9) - ) - ) - (set_local $9 - (i32.mul - (i32.and - (get_local $32) - (get_local $12) + (tee_local $32 + (i32.load + (get_local $7) ) - (get_local $38) ) + (get_local $13) ) - (br_if $while-in74 - (i32.lt_u - (tee_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - (get_local $5) - ) + (get_local $9) + ) + ) + (set_local $9 + (i32.mul + (i32.and + (get_local $32) + (get_local $12) ) + (get_local $38) ) - (set_local $7 - (select - (get_local $6) + ) + (br_if $while-in74 + (i32.lt_u + (tee_local $7 (i32.add - (get_local $6) + (get_local $7) (i32.const 4) ) - (i32.load - (get_local $6) - ) - ) - ) - (br_if $do-once71 - (i32.eqz - (get_local $9) ) - ) - (i32.store (get_local $5) - (get_local $9) - ) - (set_local $5 - (i32.add - (get_local $5) - (i32.const 4) - ) ) ) - (set_local $7 - (select + ) + (set_local $7 + (select + (get_local $6) + (i32.add + (get_local $6) + (i32.const 4) + ) + (i32.load (get_local $6) - (i32.add - (get_local $6) - (i32.const 4) - ) - (i32.load - (get_local $6) - ) ) ) ) - ) - (set_local $12 - (select - (i32.add - (tee_local $6 - (select - (get_local $8) - (get_local $7) - (get_local $31) - ) - ) - (i32.shl - (get_local $21) - (i32.const 2) - ) + (br_if $do-once71 + (i32.eqz + (get_local $9) ) + ) + (i32.store (get_local $5) - (i32.gt_s - (i32.shr_s - (i32.sub - (get_local $5) - (get_local $6) - ) - (i32.const 2) - ) - (get_local $21) + (get_local $9) + ) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 4) ) ) ) - (i32.store - (get_local $20) - (tee_local $9 + (set_local $7 + (select + (get_local $6) (i32.add - (i32.load - (get_local $20) - ) - (get_local $13) + (get_local $6) + (i32.const 4) + ) + (i32.load + (get_local $6) ) ) ) - (set_local $5 - (if (result i32) - (i32.lt_s - (get_local $9) - (i32.const 0) - ) - (block - (set_local $6 + ) + (set_local $12 + (select + (i32.add + (tee_local $6 + (select + (get_local $8) (get_local $7) + (get_local $31) ) - (set_local $5 - (get_local $12) - ) - (br $while-in70) ) - (block (result i32) - (set_local $9 - (get_local $12) - ) - (get_local $7) + (i32.shl + (get_local $21) + (i32.const 2) ) ) - ) - ) - ) - (set_local $9 - (get_local $7) - ) - ) - (set_local $21 - (get_local $8) - ) - (block $do-once75 - (if - (i32.lt_u - (get_local $5) - (get_local $9) - ) - (block - (set_local $7 - (i32.mul + (get_local $5) + (i32.gt_s (i32.shr_s (i32.sub - (get_local $21) (get_local $5) + (get_local $6) ) (i32.const 2) ) - (i32.const 9) + (get_local $21) ) ) - (br_if $do-once75 - (i32.lt_u - (tee_local $12 - (i32.load - (get_local $5) - ) + ) + (i32.store + (get_local $20) + (tee_local $9 + (i32.add + (i32.load + (get_local $20) ) - (i32.const 10) + (get_local $13) ) ) - (set_local $6 - (i32.const 10) - ) - (loop $while-in78 - (set_local $7 - (i32.add + ) + (set_local $5 + (if (result i32) + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + (block + (set_local $6 (get_local $7) - (i32.const 1) ) + (set_local $5 + (get_local $12) + ) + (br $while-in70) ) - (br_if $while-in78 - (i32.ge_u + (block (result i32) + (set_local $9 (get_local $12) - (tee_local $6 - (i32.mul - (get_local $6) - (i32.const 10) - ) - ) ) + (get_local $7) + ) + ) + ) + ) + ) + (set_local $9 + (get_local $7) + ) + ) + (set_local $21 + (get_local $8) + ) + (if + (i32.lt_u + (get_local $5) + (get_local $9) + ) + (block $do-once75 + (set_local $7 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $21) + (get_local $5) + ) + (i32.const 2) + ) + (i32.const 9) + ) + ) + (br_if $do-once75 + (i32.lt_u + (tee_local $12 + (i32.load + (get_local $5) ) ) + (i32.const 10) ) + ) + (set_local $6 + (i32.const 10) + ) + (loop $while-in78 (set_local $7 - (i32.const 0) + (i32.add + (get_local $7) + (i32.const 1) + ) + ) + (br_if $while-in78 + (i32.ge_u + (get_local $12) + (tee_local $6 + (i32.mul + (get_local $6) + (i32.const 10) + ) + ) + ) ) ) ) - (set_local $5 - (if (result i32) - (i32.lt_s - (tee_local $6 - (i32.add - (i32.sub - (get_local $18) - (select - (get_local $7) - (i32.const 0) - (i32.ne - (get_local $24) - (i32.const 102) - ) + (set_local $7 + (i32.const 0) + ) + ) + (set_local $5 + (if (result i32) + (i32.lt_s + (tee_local $6 + (i32.add + (i32.sub + (get_local $18) + (select + (get_local $7) + (i32.const 0) + (i32.ne + (get_local $24) + (i32.const 102) ) ) - (i32.shr_s - (i32.shl - (i32.and - (tee_local $31 - (i32.ne - (get_local $18) - (i32.const 0) - ) + ) + (i32.shr_s + (i32.shl + (i32.and + (tee_local $31 + (i32.ne + (get_local $18) + (i32.const 0) ) - (tee_local $38 - (i32.eq - (get_local $24) - (i32.const 103) - ) + ) + (tee_local $38 + (i32.eq + (get_local $24) + (i32.const 103) ) ) - (i32.const 31) ) (i32.const 31) ) + (i32.const 31) ) ) - (i32.add - (i32.mul - (i32.shr_s - (i32.sub - (get_local $9) - (get_local $21) - ) - (i32.const 2) + ) + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $9) + (get_local $21) ) - (i32.const 9) + (i32.const 2) ) - (i32.const -9) + (i32.const 9) ) + (i32.const -9) ) - (block (result i32) - (set_local $13 - (call $i32s-div - (tee_local $6 - (i32.add - (get_local $6) - (i32.const 9216) - ) + ) + (block (result i32) + (set_local $13 + (call $i32s-div + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 9216) ) - (i32.const 9) ) + (i32.const 9) ) - (if - (i32.lt_s - (tee_local $6 - (i32.add - (i32.rem_s - (get_local $6) - (i32.const 9) - ) - (i32.const 1) + ) + (if + (i32.lt_s + (tee_local $6 + (i32.add + (i32.rem_s + (get_local $6) + (i32.const 9) ) + (i32.const 1) ) - (i32.const 9) ) - (block + (i32.const 9) + ) + (block + (set_local $12 + (i32.const 10) + ) + (loop $while-in80 (set_local $12 - (i32.const 10) - ) - (loop $while-in80 - (set_local $12 - (i32.mul - (get_local $12) - (i32.const 10) - ) + (i32.mul + (get_local $12) + (i32.const 10) ) - (br_if $while-in80 - (i32.ne - (tee_local $6 - (i32.add - (get_local $6) - (i32.const 1) - ) + ) + (br_if $while-in80 + (i32.ne + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 1) ) - (i32.const 9) ) + (i32.const 9) ) ) ) - (set_local $12 - (i32.const 10) - ) ) - (set_local $13 - (call $i32u-rem - (tee_local $24 - (i32.load - (tee_local $6 + (set_local $12 + (i32.const 10) + ) + ) + (set_local $13 + (call $i32u-rem + (tee_local $24 + (i32.load + (tee_local $6 + (i32.add (i32.add - (i32.add - (get_local $8) - (i32.shl - (get_local $13) - (i32.const 2) - ) + (get_local $8) + (i32.shl + (get_local $13) + (i32.const 2) ) - (i32.const -4092) ) + (i32.const -4092) ) ) ) - (get_local $12) ) + (get_local $12) ) - (block $do-once81 - (if - (i32.eqz - (i32.and - (tee_local $32 - (i32.eq - (i32.add - (get_local $6) - (i32.const 4) - ) - (get_local $9) - ) - ) - (i32.eqz - (get_local $13) + ) + (if + (i32.eqz + (i32.and + (tee_local $32 + (i32.eq + (i32.add + (get_local $6) + (i32.const 4) ) + (get_local $9) ) ) - (block - (set_local $50 - (call $i32u-div - (get_local $24) - (get_local $12) + (i32.eqz + (get_local $13) + ) + ) + ) + (block $do-once81 + (set_local $50 + (call $i32u-div + (get_local $24) + (get_local $12) + ) + ) + (set_local $16 + (if (result f64) + (i32.lt_u + (get_local $13) + (tee_local $51 + (call $i32s-div + (get_local $12) + (i32.const 2) + ) ) ) - (set_local $16 - (if (result f64) - (i32.lt_u + (f64.const 0.5) + (select + (f64.const 1) + (f64.const 1.5) + (i32.and + (get_local $32) + (i32.eq (get_local $13) - (tee_local $51 - (call $i32s-div - (get_local $12) - (i32.const 2) - ) - ) - ) - (f64.const 0.5) - (select - (f64.const 1) - (f64.const 1.5) - (i32.and - (get_local $32) - (i32.eq - (get_local $13) - (get_local $51) - ) - ) + (get_local $51) ) ) ) - (set_local $23 - (select - (f64.const 9007199254740994) - (f64.const 9007199254740992) - (i32.and - (get_local $50) - (i32.const 1) - ) + ) + ) + (set_local $23 + (select + (f64.const 9007199254740994) + (f64.const 9007199254740992) + (i32.and + (get_local $50) + (i32.const 1) + ) + ) + ) + (if + (get_local $26) + (if + (i32.eq + (i32.load8_s + (get_local $30) ) + (i32.const 45) ) - (block $do-once83 - (if - (get_local $26) - (block - (br_if $do-once83 - (i32.ne - (i32.load8_s - (get_local $30) - ) - (i32.const 45) - ) - ) - (set_local $23 - (f64.neg - (get_local $23) - ) - ) - (set_local $16 - (f64.neg - (get_local $16) - ) - ) + (block + (set_local $23 + (f64.neg + (get_local $23) ) ) + (set_local $16 + (f64.neg + (get_local $16) + ) + ) + ) + ) + ) + (i32.store + (get_local $6) + (tee_local $13 + (i32.sub + (get_local $24) + (get_local $13) ) + ) + ) + (br_if $do-once81 + (f64.eq + (f64.add + (get_local $23) + (get_local $16) + ) + (get_local $23) + ) + ) + (i32.store + (get_local $6) + (tee_local $7 + (i32.add + (get_local $13) + (get_local $12) + ) + ) + ) + (if + (i32.gt_u + (get_local $7) + (i32.const 999999999) + ) + (loop $while-in86 (i32.store (get_local $6) - (tee_local $13 - (i32.sub - (get_local $24) - (get_local $13) + (i32.const 0) + ) + (if + (i32.lt_u + (tee_local $6 + (i32.add + (get_local $6) + (i32.const -4) + ) ) + (get_local $5) ) - ) - (br_if $do-once81 - (f64.eq - (f64.add - (get_local $23) - (get_local $16) + (i32.store + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) + ) ) - (get_local $23) + (i32.const 0) ) ) (i32.store (get_local $6) (tee_local $7 (i32.add - (get_local $13) - (get_local $12) + (i32.load + (get_local $6) + ) + (i32.const 1) ) ) ) - (if + (br_if $while-in86 (i32.gt_u (get_local $7) (i32.const 999999999) ) - (loop $while-in86 - (i32.store - (get_local $6) - (i32.const 0) - ) - (if - (i32.lt_u - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -4) - ) - ) - (get_local $5) - ) - (i32.store - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -4) - ) - ) - (i32.const 0) - ) - ) - (i32.store - (get_local $6) - (tee_local $7 - (i32.add - (i32.load - (get_local $6) - ) - (i32.const 1) - ) - ) - ) - (br_if $while-in86 - (i32.gt_u - (get_local $7) - (i32.const 999999999) - ) - ) - ) ) - (set_local $7 - (i32.mul - (i32.shr_s - (i32.sub - (get_local $21) - (get_local $5) - ) - (i32.const 2) - ) - (i32.const 9) + ) + ) + (set_local $7 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $21) + (get_local $5) ) + (i32.const 2) ) - (br_if $do-once81 - (i32.lt_u - (tee_local $13 - (i32.load - (get_local $5) - ) - ) - (i32.const 10) + (i32.const 9) + ) + ) + (br_if $do-once81 + (i32.lt_u + (tee_local $13 + (i32.load + (get_local $5) ) ) - (set_local $12 - (i32.const 10) + (i32.const 10) + ) + ) + (set_local $12 + (i32.const 10) + ) + (loop $while-in88 + (set_local $7 + (i32.add + (get_local $7) + (i32.const 1) ) - (loop $while-in88 - (set_local $7 - (i32.add - (get_local $7) - (i32.const 1) - ) - ) - (br_if $while-in88 - (i32.ge_u - (get_local $13) - (tee_local $12 - (i32.mul - (get_local $12) - (i32.const 10) - ) - ) + ) + (br_if $while-in88 + (i32.ge_u + (get_local $13) + (tee_local $12 + (i32.mul + (get_local $12) + (i32.const 10) ) ) ) ) ) ) - (set_local $12 - (get_local $5) - ) - (set_local $13 - (get_local $7) - ) - (select - (tee_local $5 - (i32.add - (get_local $6) - (i32.const 4) - ) - ) - (get_local $9) - (i32.gt_u - (get_local $9) - (get_local $5) + ) + (set_local $12 + (get_local $5) + ) + (set_local $13 + (get_local $7) + ) + (select + (tee_local $5 + (i32.add + (get_local $6) + (i32.const 4) ) ) - ) - (block (result i32) - (set_local $12 + (get_local $9) + (i32.gt_u + (get_local $9) (get_local $5) ) - (set_local $13 - (get_local $7) - ) - (get_local $9) ) ) - ) - (set_local $32 - (i32.sub - (i32.const 0) - (get_local $13) + (block (result i32) + (set_local $12 + (get_local $5) + ) + (set_local $13 + (get_local $7) + ) + (get_local $9) ) ) - (set_local $9 - (loop $while-in90 (result i32) - (block $while-out89 (result i32) - (if - (i32.le_u + ) + (set_local $32 + (i32.sub + (i32.const 0) + (get_local $13) + ) + ) + (set_local $9 + (loop $while-in90 (result i32) + (block $while-out89 (result i32) + (if + (i32.le_u + (get_local $5) + (get_local $12) + ) + (block + (set_local $24 + (i32.const 0) + ) + (br $while-out89 (get_local $5) - (get_local $12) ) - (block - (set_local $24 - (i32.const 0) - ) - (br $while-out89 + ) + ) + (if (result i32) + (i32.load + (tee_local $7 + (i32.add (get_local $5) + (i32.const -4) ) ) ) - (if (result i32) - (i32.load - (tee_local $7 - (i32.add - (get_local $5) - (i32.const -4) - ) - ) + (block (result i32) + (set_local $24 + (i32.const 1) ) - (block (result i32) - (set_local $24 - (i32.const 1) - ) - (get_local $5) - ) - (block - (set_local $5 - (get_local $7) - ) - (br $while-in90) + (get_local $5) + ) + (block + (set_local $5 + (get_local $7) ) + (br $while-in90) ) ) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $13 + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $13 + (i32.add (i32.add (i32.add (i32.add - (i32.add - (get_local $26) - (i32.const 1) - ) - (tee_local $5 + (get_local $26) + (i32.const 1) + ) + (tee_local $5 + (if (result i32) + (get_local $38) (block $do-once91 (result i32) - (if (result i32) - (get_local $38) - (block (result i32) - (set_local $7 - (if (result i32) - (i32.and - (i32.gt_s - (tee_local $5 - (i32.add - (i32.xor - (get_local $31) - (i32.const 1) - ) - (get_local $18) - ) + (set_local $7 + (if (result i32) + (i32.and + (i32.gt_s + (tee_local $5 + (i32.add + (i32.xor + (get_local $31) + (i32.const 1) ) - (get_local $13) - ) - (i32.gt_s - (get_local $13) - (i32.const -5) + (get_local $18) ) ) - (block (result i32) - (set_local $18 - (i32.sub - (i32.add - (get_local $5) - (i32.const -1) - ) - (get_local $13) - ) - ) + (get_local $13) + ) + (i32.gt_s + (get_local $13) + (i32.const -5) + ) + ) + (block (result i32) + (set_local $18 + (i32.sub (i32.add - (get_local $19) + (get_local $5) (i32.const -1) ) + (get_local $13) ) - (block (result i32) - (set_local $18 - (i32.add - (get_local $5) - (i32.const -1) - ) - ) - (i32.add - (get_local $19) - (i32.const -2) - ) + ) + (i32.add + (get_local $19) + (i32.const -1) + ) + ) + (block (result i32) + (set_local $18 + (i32.add + (get_local $5) + (i32.const -1) ) ) + (i32.add + (get_local $19) + (i32.const -2) + ) + ) + ) + ) + (if + (tee_local $5 + (i32.and + (get_local $11) + (i32.const 8) + ) + ) + (block + (set_local $21 + (get_local $5) + ) + (br $do-once91 + (get_local $18) ) + ) + ) + (if + (get_local $24) + (block $do-once93 (if - (tee_local $5 - (i32.and - (get_local $11) - (i32.const 8) + (i32.eqz + (tee_local $19 + (i32.load + (i32.add + (get_local $9) + (i32.const -4) + ) + ) ) ) (block - (set_local $21 - (get_local $5) - ) - (br $do-once91 - (get_local $18) + (set_local $5 + (i32.const 9) ) + (br $do-once93) ) ) - (block $do-once93 - (if - (get_local $24) + (set_local $5 + (if (result i32) + (call $i32u-rem + (get_local $19) + (i32.const 10) + ) (block - (if - (i32.eqz - (tee_local $19 - (i32.load - (i32.add - (get_local $9) - (i32.const -4) - ) - ) - ) - ) - (block - (set_local $5 - (i32.const 9) - ) - (br $do-once93) - ) - ) (set_local $5 - (if (result i32) - (call $i32u-rem - (get_local $19) - (i32.const 10) - ) - (block - (set_local $5 - (i32.const 0) - ) - (br $do-once93) - ) - (block (result i32) - (set_local $6 - (i32.const 10) - ) - (i32.const 0) - ) - ) - ) - (loop $while-in96 - (set_local $5 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (br_if $while-in96 - (i32.eqz - (call $i32u-rem - (get_local $19) - (tee_local $6 - (i32.mul - (get_local $6) - (i32.const 10) - ) - ) - ) - ) - ) + (i32.const 0) ) + (br $do-once93) ) - (set_local $5 - (i32.const 9) + (block (result i32) + (set_local $6 + (i32.const 10) + ) + (i32.const 0) ) ) ) - (set_local $6 - (i32.add - (i32.mul - (i32.shr_s - (i32.sub - (get_local $9) - (get_local $21) + (loop $while-in96 + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (br_if $while-in96 + (i32.eqz + (call $i32u-rem + (get_local $19) + (tee_local $6 + (i32.mul + (get_local $6) + (i32.const 10) + ) ) - (i32.const 2) ) - (i32.const 9) ) - (i32.const -9) ) ) - (if (result i32) - (i32.eq - (i32.or - (get_local $7) - (i32.const 32) + ) + (set_local $5 + (i32.const 9) + ) + ) + (set_local $6 + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $9) + (get_local $21) ) - (i32.const 102) + (i32.const 2) ) - (block (result i32) - (set_local $21 - (i32.const 0) - ) + (i32.const 9) + ) + (i32.const -9) + ) + ) + (if (result i32) + (i32.eq + (i32.or + (get_local $7) + (i32.const 32) + ) + (i32.const 102) + ) + (block (result i32) + (set_local $21 + (i32.const 0) + ) + (select + (get_local $18) + (tee_local $5 (select - (get_local $18) + (i32.const 0) (tee_local $5 - (select - (i32.const 0) - (tee_local $5 - (i32.sub - (get_local $6) - (get_local $5) - ) - ) - (i32.lt_s - (get_local $5) - (i32.const 0) - ) + (i32.sub + (get_local $6) + (get_local $5) ) ) (i32.lt_s - (get_local $18) (get_local $5) + (i32.const 0) ) ) ) - (block (result i32) - (set_local $21 - (i32.const 0) - ) + (i32.lt_s + (get_local $18) + (get_local $5) + ) + ) + ) + (block (result i32) + (set_local $21 + (i32.const 0) + ) + (select + (get_local $18) + (tee_local $5 (select - (get_local $18) + (i32.const 0) (tee_local $5 - (select - (i32.const 0) - (tee_local $5 - (i32.sub - (i32.add - (get_local $6) - (get_local $13) - ) - (get_local $5) - ) - ) - (i32.lt_s - (get_local $5) - (i32.const 0) + (i32.sub + (i32.add + (get_local $6) + (get_local $13) ) + (get_local $5) ) ) (i32.lt_s - (get_local $18) (get_local $5) + (i32.const 0) ) ) ) - ) - ) - (block (result i32) - (set_local $21 - (i32.and - (get_local $11) - (i32.const 8) + (i32.lt_s + (get_local $18) + (get_local $5) ) ) - (set_local $7 - (get_local $19) - ) - (get_local $18) ) ) ) - ) - ) - (i32.ne - (tee_local $31 - (i32.or - (get_local $5) - (get_local $21) + (block (result i32) + (set_local $21 + (i32.and + (get_local $11) + (i32.const 8) + ) + ) + (set_local $7 + (get_local $19) + ) + (get_local $18) ) ) - (i32.const 0) ) ) - (if (result i32) - (tee_local $18 - (i32.eq - (i32.or - (get_local $7) - (i32.const 32) - ) - (i32.const 102) + (i32.ne + (tee_local $31 + (i32.or + (get_local $5) + (get_local $21) ) ) - (block (result i32) - (set_local $19 - (i32.const 0) + (i32.const 0) + ) + ) + (if (result i32) + (tee_local $18 + (i32.eq + (i32.or + (get_local $7) + (i32.const 32) ) - (select + (i32.const 102) + ) + ) + (block (result i32) + (set_local $19 + (i32.const 0) + ) + (select + (get_local $13) + (i32.const 0) + (i32.gt_s (get_local $13) (i32.const 0) - (i32.gt_s - (get_local $13) - (i32.const 0) - ) ) ) - (block (result i32) - (if - (i32.lt_s - (i32.sub - (get_local $27) - (tee_local $6 - (call $_fmt_u - (tee_local $6 - (select - (get_local $32) + ) + (block (result i32) + (if + (i32.lt_s + (i32.sub + (get_local $27) + (tee_local $6 + (call $_fmt_u + (tee_local $6 + (select + (get_local $32) + (get_local $13) + (i32.lt_s (get_local $13) - (i32.lt_s - (get_local $13) - (i32.const 0) - ) + (i32.const 0) ) ) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $6) - (i32.const 0) - ) - (i32.const 31) + ) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $6) + (i32.const 0) ) (i32.const 31) ) - (get_local $33) + (i32.const 31) ) + (get_local $33) ) ) - (i32.const 2) ) - (loop $while-in98 - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in98 - (i32.lt_s - (i32.sub - (get_local $27) - (get_local $6) - ) - (i32.const 2) + (i32.const 2) + ) + (loop $while-in98 + (i32.store8 + (tee_local $6 + (i32.add + (get_local $6) + (i32.const -1) ) ) + (i32.const 48) ) - ) - (i32.store8 - (i32.add - (get_local $6) - (i32.const -1) - ) - (i32.add - (i32.and - (i32.shr_s - (get_local $13) - (i32.const 31) + (br_if $while-in98 + (i32.lt_s + (i32.sub + (get_local $27) + (get_local $6) ) (i32.const 2) ) - (i32.const 43) ) ) - (i32.store8 - (tee_local $19 - (i32.add - (get_local $6) - (i32.const -2) + ) + (i32.store8 + (i32.add + (get_local $6) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_s + (get_local $13) + (i32.const 31) ) + (i32.const 2) ) - (get_local $7) + (i32.const 43) ) - (i32.sub - (get_local $27) - (get_local $19) + ) + (i32.store8 + (tee_local $19 + (i32.add + (get_local $6) + (i32.const -2) + ) ) + (get_local $7) + ) + (i32.sub + (get_local $27) + (get_local $19) ) ) ) ) - (get_local $11) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $30) - (get_local $26) + (get_local $11) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (get_local $15) - (get_local $13) - (i32.xor - (get_local $11) - (i32.const 65536) + (drop + (call $___fwritex + (get_local $30) + (get_local $26) + (get_local $0) ) ) - (block $do-once99 - (if - (get_local $18) - (block - (set_local $6 - (tee_local $12 - (select - (get_local $8) - (get_local $12) - (i32.gt_u - (get_local $12) - (get_local $8) - ) - ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (get_local $15) + (get_local $13) + (i32.xor + (get_local $11) + (i32.const 65536) + ) + ) + (if + (get_local $18) + (block + (set_local $6 + (tee_local $12 + (select + (get_local $8) + (get_local $12) + (i32.gt_u + (get_local $12) + (get_local $8) ) ) - (loop $while-in102 - (set_local $7 - (call $_fmt_u - (i32.load - (get_local $6) + ) + ) + (loop $while-in102 + (set_local $7 + (call $_fmt_u + (i32.load + (get_local $6) + ) + (i32.const 0) + (get_local $29) + ) + ) + (block $do-once103 + (if + (i32.eq + (get_local $6) + (get_local $12) + ) + (block + (br_if $do-once103 + (i32.ne + (get_local $7) + (get_local $29) ) - (i32.const 0) - (get_local $29) + ) + (i32.store8 + (get_local $34) + (i32.const 48) + ) + (set_local $7 + (get_local $34) ) ) - (block $do-once103 - (if - (i32.eq - (get_local $6) - (get_local $12) + (block + (br_if $do-once103 + (i32.le_u + (get_local $7) + (get_local $22) ) - (block - (br_if $do-once103 - (i32.ne + ) + (loop $while-in106 + (i32.store8 + (tee_local $7 + (i32.add (get_local $7) - (get_local $29) + (i32.const -1) ) ) - (i32.store8 - (get_local $34) - (i32.const 48) - ) - (set_local $7 - (get_local $34) - ) + (i32.const 48) ) - (block - (br_if $do-once103 - (i32.le_u - (get_local $7) - (get_local $22) - ) - ) - (loop $while-in106 - (i32.store8 - (tee_local $7 - (i32.add - (get_local $7) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in106 - (i32.gt_u - (get_local $7) - (get_local $22) - ) - ) + (br_if $while-in106 + (i32.gt_u + (get_local $7) + (get_local $22) ) ) ) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + ) + ) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) ) - (drop - (call $___fwritex - (get_local $7) - (i32.sub - (get_local $43) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $7) + (i32.sub + (get_local $43) + (get_local $7) + ) + (get_local $0) + ) + ) + ) + (if + (i32.le_u + (tee_local $7 + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + (get_local $8) + ) + (block + (set_local $6 + (get_local $7) + ) + (br $while-in102) + ) + ) + ) + (if + (get_local $31) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (i32.const 4143) + (i32.const 1) + (get_local $0) + ) + ) + ) + ) + (if + (i32.and + (i32.gt_s + (get_local $5) + (i32.const 0) + ) + (i32.lt_u + (get_local $7) + (get_local $9) + ) + ) + (loop $while-in110 + (if + (i32.gt_u + (tee_local $6 + (call $_fmt_u + (i32.load (get_local $7) ) - (get_local $0) + (i32.const 0) + (get_local $29) ) ) + (get_local $22) ) - (if - (i32.le_u - (tee_local $7 + (loop $while-in112 + (i32.store8 + (tee_local $6 (i32.add (get_local $6) - (i32.const 4) + (i32.const -1) ) ) - (get_local $8) + (i32.const 48) ) - (block - (set_local $6 - (get_local $7) + (br_if $while-in112 + (i32.gt_u + (get_local $6) + (get_local $22) ) - (br $while-in102) ) ) ) - (block $do-once107 - (if - (get_local $31) - (block - (br_if $do-once107 - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) ) - (drop - (call $___fwritex - (i32.const 4143) - (i32.const 1) - (get_local $0) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $6) + (select + (i32.const 9) + (get_local $5) + (i32.gt_s + (get_local $5) + (i32.const 9) ) ) + (get_local $0) ) ) ) - (if - (i32.and - (i32.gt_s - (get_local $5) - (i32.const 0) - ) - (i32.lt_u - (get_local $7) - (get_local $9) - ) + (set_local $6 + (i32.add + (get_local $5) + (i32.const -9) ) - (loop $while-in110 - (if - (i32.gt_u - (tee_local $6 - (call $_fmt_u - (i32.load - (get_local $7) - ) - (i32.const 0) - (get_local $29) - ) - ) - (get_local $22) - ) - (loop $while-in112 - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in112 - (i32.gt_u - (get_local $6) - (get_local $22) - ) - ) - ) - ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + ) + (set_local $5 + (if (result i32) + (i32.and + (i32.gt_s + (get_local $5) + (i32.const 9) ) - (drop - (call $___fwritex - (get_local $6) - (select - (i32.const 9) - (get_local $5) - (i32.gt_s - (get_local $5) - (i32.const 9) - ) + (i32.lt_u + (tee_local $7 + (i32.add + (get_local $7) + (i32.const 4) ) - (get_local $0) ) + (get_local $9) ) ) - (set_local $6 - (i32.add - (get_local $5) - (i32.const -9) - ) - ) - (set_local $5 - (if (result i32) - (i32.and - (i32.gt_s - (get_local $5) - (i32.const 9) - ) - (i32.lt_u - (tee_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - (get_local $9) - ) - ) - (block - (set_local $5 - (get_local $6) - ) - (br $while-in110) - ) + (block + (set_local $5 (get_local $6) ) + (br $while-in110) ) + (get_local $6) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.add - (get_local $5) - (i32.const 9) - ) - (i32.const 9) - (i32.const 0) + ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (i32.add + (get_local $5) + (i32.const 9) + ) + (i32.const 9) + (i32.const 0) + ) + ) + (block $do-once99 + (set_local $9 + (select + (get_local $9) + (i32.add + (get_local $12) + (i32.const 4) ) + (get_local $24) + ) + ) + (if + (i32.gt_s + (get_local $5) + (i32.const -1) ) (block - (set_local $9 - (select - (get_local $9) - (i32.add - (get_local $12) - (i32.const 4) - ) - (get_local $24) + (set_local $18 + (i32.eqz + (get_local $21) ) ) - (if - (i32.gt_s - (get_local $5) - (i32.const -1) - ) - (block - (set_local $18 - (i32.eqz - (get_local $21) - ) - ) - (set_local $6 - (get_local $12) - ) - (set_local $7 - (get_local $5) - ) - (loop $while-in114 - (if - (i32.eq - (tee_local $5 - (call $_fmt_u - (i32.load - (get_local $6) - ) - (i32.const 0) - (get_local $29) - ) + (set_local $6 + (get_local $12) + ) + (set_local $7 + (get_local $5) + ) + (loop $while-in114 + (if + (i32.eq + (tee_local $5 + (call $_fmt_u + (i32.load + (get_local $6) ) + (i32.const 0) (get_local $29) ) - (block - (i32.store8 - (get_local $34) - (i32.const 48) - ) - (set_local $5 - (get_local $34) - ) - ) ) - (block $do-once115 + (get_local $29) + ) + (block + (i32.store8 + (get_local $34) + (i32.const 48) + ) + (set_local $5 + (get_local $34) + ) + ) + ) + (block $do-once115 + (if + (i32.eq + (get_local $6) + (get_local $12) + ) + (block (if - (i32.eq - (get_local $6) - (get_local $12) - ) - (block - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $5) - (i32.const 1) - (get_local $0) - ) - ) - ) - (set_local $5 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (br_if $do-once115 - (i32.and - (get_local $18) - (i32.lt_s - (get_local $7) - (i32.const 1) - ) - ) - ) - (br_if $do-once115 - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (i32.const 4143) - (i32.const 1) + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (block - (br_if $do-once115 - (i32.le_u - (get_local $5) - (get_local $22) - ) - ) - (loop $while-in118 - (i32.store8 - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in118 - (i32.gt_u - (get_local $5) - (get_local $22) - ) - ) + (drop + (call $___fwritex + (get_local $5) + (i32.const 1) + (get_local $0) ) ) ) - ) - (set_local $8 - (i32.sub - (get_local $43) - (get_local $5) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) ) - ) - (if - (i32.eqz + (br_if $do-once115 + (i32.and + (get_local $18) + (i32.lt_s + (get_local $7) + (i32.const 1) + ) + ) + ) + (br_if $do-once115 (i32.and (i32.load (get_local $0) @@ -6080,203 +5993,251 @@ ) (drop (call $___fwritex - (get_local $5) - (select - (get_local $8) - (get_local $7) - (i32.gt_s - (get_local $7) - (get_local $8) - ) - ) + (i32.const 4143) + (i32.const 1) (get_local $0) ) ) ) - (br_if $while-in114 - (i32.and - (i32.lt_u - (tee_local $6 + (block + (br_if $do-once115 + (i32.le_u + (get_local $5) + (get_local $22) + ) + ) + (loop $while-in118 + (i32.store8 + (tee_local $5 (i32.add - (get_local $6) - (i32.const 4) + (get_local $5) + (i32.const -1) ) ) - (get_local $9) + (i32.const 48) ) - (i32.gt_s - (tee_local $7 - (i32.sub - (get_local $7) - (get_local $8) - ) + (br_if $while-in118 + (i32.gt_u + (get_local $5) + (get_local $22) ) - (i32.const -1) ) ) ) ) - (set_local $5 - (get_local $7) - ) ) - ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.add - (get_local $5) - (i32.const 18) + (set_local $8 + (i32.sub + (get_local $43) + (get_local $5) + ) ) - (i32.const 18) - (i32.const 0) - ) - (br_if $do-once99 - (i32.and - (i32.load - (get_local $0) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $5) + (select + (get_local $8) + (get_local $7) + (i32.gt_s + (get_local $7) + (get_local $8) + ) + ) + (get_local $0) + ) ) - (i32.const 32) ) - ) - (drop - (call $___fwritex - (get_local $19) - (i32.sub - (get_local $27) - (get_local $19) + (br_if $while-in114 + (i32.and + (i32.lt_u + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + (get_local $9) + ) + (i32.gt_s + (tee_local $7 + (i32.sub + (get_local $7) + (get_local $8) + ) + ) + (i32.const -1) + ) ) - (get_local $0) ) ) + (set_local $5 + (get_local $7) + ) ) ) - ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $13) - (i32.xor - (get_local $11) - (i32.const 8192) - ) - ) - (select - (get_local $15) - (get_local $13) - (i32.lt_s - (get_local $13) - (get_local $15) - ) - ) - ) - (block (result i32) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $7 + (call $_pad + (get_local $0) + (i32.const 48) (i32.add - (tee_local $9 - (select - (i32.const 0) - (get_local $26) - (tee_local $6 - (f64.ne - (get_local $16) - (get_local $16) - ) - ) - ) - ) - (i32.const 3) + (get_local $5) + (i32.const 18) ) + (i32.const 18) + (i32.const 0) ) - (get_local $8) - ) - (if - (i32.eqz + (br_if $do-once99 (i32.and - (tee_local $5 - (i32.load - (get_local $0) - ) + (i32.load + (get_local $0) ) (i32.const 32) ) ) - (block - (drop - (call $___fwritex - (get_local $30) - (get_local $9) - (get_local $0) - ) - ) - (set_local $5 - (i32.load - (get_local $0) + (drop + (call $___fwritex + (get_local $19) + (i32.sub + (get_local $27) + (get_local $19) ) + (get_local $0) ) ) ) - (set_local $6 - (select - (select - (i32.const 4135) - (i32.const 4139) - (tee_local $8 - (i32.ne - (i32.and - (get_local $19) - (i32.const 32) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $13) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (select + (get_local $15) + (get_local $13) + (i32.lt_s + (get_local $13) + (get_local $15) + ) + ) + ) + (block (result i32) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $7 + (i32.add + (tee_local $9 + (select + (i32.const 0) + (get_local $26) + (tee_local $6 + (f64.ne + (get_local $16) + (get_local $16) ) - (i32.const 0) ) ) ) - (select - (i32.const 4127) - (i32.const 4131) - (get_local $8) - ) - (get_local $6) + (i32.const 3) ) ) - (if - (i32.eqz - (i32.and - (get_local $5) - (i32.const 32) + (get_local $8) + ) + (if + (i32.eqz + (i32.and + (tee_local $5 + (i32.load + (get_local $0) + ) ) + (i32.const 32) ) + ) + (block (drop (call $___fwritex - (get_local $6) - (i32.const 3) + (get_local $30) + (get_local $9) (get_local $0) ) ) - ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 8192) + (set_local $5 + (i32.load + (get_local $0) + ) ) ) + ) + (set_local $6 (select - (get_local $15) - (get_local $7) - (i32.lt_s - (get_local $7) - (get_local $15) + (select + (i32.const 4135) + (i32.const 4139) + (tee_local $8 + (i32.ne + (i32.and + (get_local $19) + (i32.const 32) + ) + (i32.const 0) + ) + ) + ) + (select + (i32.const 4127) + (i32.const 4131) + (get_local $8) + ) + (get_local $6) + ) + ) + (if + (i32.eqz + (i32.and + (get_local $5) + (i32.const 32) ) ) + (drop + (call $___fwritex + (get_local $6) + (i32.const 3) + (get_local $0) + ) + ) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (select + (get_local $15) + (get_local $7) + (i32.lt_s + (get_local $7) + (get_local $15) + ) ) ) ) @@ -6948,61 +6909,32 @@ (local $3 i32) (local $4 f64) (local $5 i32) - (block $label$break$L1 - (if - (i32.le_u - (get_local $1) - (i32.const 20) - ) - (block $switch-default - (block $switch-case9 - (block $switch-case8 - (block $switch-case7 - (block $switch-case6 - (block $switch-case5 - (block $switch-case4 - (block $switch-case3 - (block $switch-case2 - (block $switch-case1 - (block $switch-case - (br_table $switch-case $switch-case1 $switch-case2 $switch-case3 $switch-case4 $switch-case5 $switch-case6 $switch-case7 $switch-case8 $switch-case9 $switch-default - (i32.sub - (get_local $1) - (i32.const 9) - ) - ) - ) - (set_local $3 - (i32.load - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) - ) - (i32.const -4) - ) - ) - ) - ) - (i32.store - (get_local $2) - (i32.add + (if + (i32.le_u + (get_local $1) + (i32.const 20) + ) + (block $switch-default + (block $switch-case9 + (block $switch-case8 + (block $switch-case7 + (block $switch-case6 + (block $switch-case5 + (block $switch-case4 + (block $switch-case3 + (block $switch-case2 + (block $switch-case1 + (block $switch-case + (br_table $switch-case $switch-case1 $switch-case2 $switch-case3 $switch-case4 $switch-case5 $switch-case6 $switch-case7 $switch-case8 $switch-case9 $switch-default + (i32.sub (get_local $1) - (i32.const 4) + (i32.const 9) ) ) - (i32.store - (get_local $0) - (get_local $3) - ) - (br $label$break$L1) ) - (set_local $1 + (set_local $3 (i32.load - (tee_local $3 + (tee_local $1 (i32.and (i32.add (i32.load @@ -7018,32 +6950,19 @@ (i32.store (get_local $2) (i32.add - (get_local $3) + (get_local $1) (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $1) - ) - (i32.store offset=4 - (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (get_local $3) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $3 + (set_local $1 (i32.load - (tee_local $1 + (tee_local $3 (i32.and (i32.add (i32.load @@ -7059,110 +6978,99 @@ (i32.store (get_local $2) (i32.add - (get_local $1) + (get_local $3) (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $3) + (get_local $1) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $5 + (set_local $3 (i32.load - (tee_local $3 - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 7) + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) ) - (i32.const -8) + (i32.const 3) ) + (i32.const -4) ) ) ) ) - (set_local $3 - (i32.load offset=4 - (get_local $3) - ) - ) (i32.store (get_local $2) (i32.add (get_local $1) - (i32.const 8) + (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $5) + (get_local $3) ) (i32.store offset=4 (get_local $0) - (get_local $3) + (i32.const 0) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $3 + (set_local $5 (i32.load - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) + (tee_local $3 + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) ) - (i32.const 3) + (i32.const -8) ) - (i32.const -4) ) ) ) ) + (set_local $3 + (i32.load offset=4 + (get_local $3) + ) + ) (i32.store (get_local $2) (i32.add (get_local $1) - (i32.const 4) + (i32.const 8) ) ) (i32.store (get_local $0) - (tee_local $1 - (i32.shr_s - (i32.shl - (i32.and - (get_local $3) - (i32.const 65535) - ) - (i32.const 16) - ) - (i32.const 16) - ) - ) + (get_local $5) ) (i32.store offset=4 (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (get_local $3) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7188,16 +7096,33 @@ ) (i32.store (get_local $0) - (i32.and - (get_local $3) - (i32.const 65535) + (tee_local $1 + (i32.shr_s + (i32.shl + (i32.and + (get_local $3) + (i32.const 65535) + ) + (i32.const 16) + ) + (i32.const 16) + ) ) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7223,33 +7148,16 @@ ) (i32.store (get_local $0) - (tee_local $1 - (i32.shr_s - (i32.shl - (i32.and - (get_local $3) - (i32.const 255) - ) - (i32.const 24) - ) - (i32.const 24) - ) + (i32.and + (get_local $3) + (i32.const 65535) ) ) (i32.store offset=4 (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (i32.const 0) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7275,28 +7183,45 @@ ) (i32.store (get_local $0) - (i32.and - (get_local $3) - (i32.const 255) + (tee_local $1 + (i32.shr_s + (i32.shl + (i32.and + (get_local $3) + (i32.const 255) + ) + (i32.const 24) + ) + (i32.const 24) + ) ) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $4 - (f64.load + (set_local $3 + (i32.load (tee_local $1 (i32.and (i32.add (i32.load (get_local $2) ) - (i32.const 7) + (i32.const 3) ) - (i32.const -8) + (i32.const -4) ) ) ) @@ -7305,14 +7230,21 @@ (get_local $2) (i32.add (get_local $1) - (i32.const 8) + (i32.const 4) ) ) - (f64.store + (i32.store (get_local $0) - (get_local $4) + (i32.and + (get_local $3) + (i32.const 255) + ) ) - (br $label$break$L1) + (i32.store offset=4 + (get_local $0) + (i32.const 0) + ) + (br $switch-default) ) (set_local $4 (f64.load @@ -7340,6 +7272,33 @@ (get_local $0) (get_local $4) ) + (br $switch-default) + ) + (set_local $4 + (f64.load + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) + ) + (i32.const -8) + ) + ) + ) + ) + (i32.store + (get_local $2) + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + (f64.store + (get_local $0) + (get_local $4) ) ) ) @@ -7487,106 +7446,90 @@ (set_local $6 (get_local $7) ) - (block $do-once - (if - (i32.and - (i32.gt_s - (get_local $2) - (get_local $3) - ) - (i32.eqz - (i32.and - (get_local $4) - (i32.const 73728) - ) + (if + (i32.and + (i32.gt_s + (get_local $2) + (get_local $3) + ) + (i32.eqz + (i32.and + (get_local $4) + (i32.const 73728) ) ) - (block - (drop - (call $_memset - (get_local $6) - (get_local $1) - (select - (i32.const 256) - (tee_local $5 - (i32.sub - (get_local $2) - (get_local $3) - ) - ) - (i32.gt_u - (get_local $5) - (i32.const 256) + ) + (block $do-once + (drop + (call $_memset + (get_local $6) + (get_local $1) + (select + (i32.const 256) + (tee_local $5 + (i32.sub + (get_local $2) + (get_local $3) ) ) + (i32.gt_u + (get_local $5) + (i32.const 256) + ) ) ) - (set_local $4 - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (get_local $0) - ) + ) + (set_local $4 + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (get_local $0) ) - (i32.const 32) ) + (i32.const 32) ) ) - (if - (i32.gt_u - (get_local $5) - (i32.const 255) - ) - (block - (loop $while-in - (if - (get_local $4) - (block - (drop - (call $___fwritex - (get_local $6) - (i32.const 256) - (get_local $0) - ) - ) - (set_local $1 - (i32.load - (get_local $0) - ) - ) - ) - ) - (set_local $4 - (i32.eqz - (i32.and - (get_local $1) - (i32.const 32) + ) + (if + (i32.gt_u + (get_local $5) + (i32.const 255) + ) + (block + (loop $while-in + (if + (get_local $4) + (block + (drop + (call $___fwritex + (get_local $6) + (i32.const 256) + (get_local $0) ) ) - ) - (br_if $while-in - (i32.gt_u - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -256) - ) + (set_local $1 + (i32.load + (get_local $0) ) - (i32.const 255) ) ) ) - (br_if $do-once + (set_local $4 (i32.eqz - (get_local $4) + (i32.and + (get_local $1) + (i32.const 32) + ) ) ) - (set_local $5 - (i32.and - (i32.sub - (get_local $2) - (get_local $3) + (br_if $while-in + (i32.gt_u + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -256) + ) ) (i32.const 255) ) @@ -7597,15 +7540,29 @@ (get_local $4) ) ) + (set_local $5 + (i32.and + (i32.sub + (get_local $2) + (get_local $3) + ) + (i32.const 255) + ) + ) ) - (drop - (call $___fwritex - (get_local $6) - (get_local $5) - (get_local $0) + (br_if $do-once + (i32.eqz + (get_local $4) ) ) ) + (drop + (call $___fwritex + (get_local $6) + (get_local $5) + (get_local $0) + ) + ) ) ) (set_global $STACKTOP @@ -7633,273 +7590,257 @@ (local $18 i32) (block $folding-inner0 (set_local $0 - (block $do-once (result i32) - (if (result i32) - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block (result i32) - (if - (i32.and - (tee_local $10 - (i32.shr_u - (tee_local $6 - (i32.load - (i32.const 176) - ) + (if (result i32) + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block (result i32) + (if + (i32.and + (tee_local $10 + (i32.shr_u + (tee_local $6 + (i32.load + (i32.const 176) ) - (tee_local $13 - (i32.shr_u - (tee_local $2 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $13 + (i32.shr_u + (tee_local $2 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $11 - (i32.load - (tee_local $1 - (i32.add - (tee_local $7 - (i32.load - (tee_local $3 - (i32.add - (tee_local $2 - (i32.add - (i32.shl - (tee_local $4 - (i32.add - (i32.xor - (i32.and - (get_local $10) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $11 + (i32.load + (tee_local $1 + (i32.add + (tee_local $7 + (i32.load + (tee_local $3 + (i32.add + (tee_local $2 + (i32.add + (i32.shl + (tee_local $4 + (i32.add + (i32.xor + (i32.and + (get_local $10) (i32.const 1) ) - (get_local $13) + (i32.const 1) ) + (get_local $13) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $2) - (get_local $11) - ) - (i32.store - (i32.const 176) - (i32.and - (get_local $6) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $4) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $2) + (get_local $11) + ) + (i32.store + (i32.const 176) + (i32.and + (get_local $6) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $4) ) + (i32.const -1) ) ) - (block - (if - (i32.lt_u - (get_local $11) - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $11) + (i32.const 12) ) ) - (get_local $7) - ) - (block - (i32.store - (get_local $0) - (get_local $2) - ) - (i32.store - (get_local $3) - (get_local $11) - ) ) - (call $_abort) + (get_local $7) ) - ) - ) - (i32.store offset=4 - (get_local $7) - (i32.or - (tee_local $0 - (i32.shl - (get_local $4) - (i32.const 3) + (block + (i32.store + (get_local $0) + (get_local $2) + ) + (i32.store + (get_local $3) + (get_local $11) ) ) - (i32.const 3) + (call $_abort) ) ) - (i32.store + ) + (i32.store offset=4 + (get_local $7) + (i32.or (tee_local $0 - (i32.add - (i32.add - (get_local $7) - (get_local $0) - ) - (i32.const 4) + (i32.shl + (get_local $4) + (i32.const 3) ) ) - (i32.or - (i32.load + (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $7) (get_local $0) ) - (i32.const 1) + (i32.const 4) ) ) - (return - (get_local $1) + (i32.or + (i32.load + (get_local $0) + ) + (i32.const 1) ) ) + (return + (get_local $1) + ) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (tee_local $0 - (i32.load - (i32.const 184) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $2) + (tee_local $0 + (i32.load + (i32.const 184) ) ) - (block (result i32) - (if - (get_local $10) - (block - (set_local $7 - (i32.and - (i32.shr_u - (tee_local $3 - (i32.add - (i32.and - (tee_local $3 - (i32.and - (i32.shl - (get_local $10) - (get_local $13) - ) - (i32.or - (tee_local $3 - (i32.shl - (i32.const 2) - (get_local $13) - ) - ) - (i32.sub - (i32.const 0) - (get_local $3) + ) + (block (result i32) + (if + (get_local $10) + (block + (set_local $7 + (i32.and + (i32.shr_u + (tee_local $3 + (i32.add + (i32.and + (tee_local $3 + (i32.and + (i32.shl + (get_local $10) + (get_local $13) + ) + (i32.or + (tee_local $3 + (i32.shl + (i32.const 2) + (get_local $13) ) ) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $3) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $10 - (i32.load - (tee_local $4 - (i32.add - (tee_local $8 - (i32.load - (tee_local $3 - (i32.add - (tee_local $7 - (i32.add - (i32.shl - (tee_local $11 - (i32.add + ) + (set_local $10 + (i32.load + (tee_local $4 + (i32.add + (tee_local $8 + (i32.load + (tee_local $3 + (i32.add + (tee_local $7 + (i32.add + (i32.shl + (tee_local $11 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $3 - (i32.and - (i32.shr_u - (tee_local $4 - (i32.shr_u - (get_local $3) - (get_local $7) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $7) - ) (tee_local $3 (i32.and (i32.shr_u (tee_local $4 (i32.shr_u - (get_local $4) (get_local $3) + (get_local $7) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $7) ) (tee_local $3 (i32.and @@ -7910,9 +7851,9 @@ (get_local $3) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -7927,310 +7868,310 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $4) - (get_local $3) + (tee_local $3 + (i32.and + (i32.shr_u + (tee_local $4 + (i32.shr_u + (get_local $4) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $4) + (get_local $3) + ) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $7) - (get_local $10) - ) - (block - (i32.store - (i32.const 176) - (i32.and - (get_local $6) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $11) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $7) + (get_local $10) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (get_local $6) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $11) ) + (i32.const -1) ) ) - (set_local $9 - (get_local $0) - ) ) - (block - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 192) - ) + (set_local $9 + (get_local $0) + ) + ) + (block + (if + (i32.lt_u + (get_local $10) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $10) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $10) + (i32.const 12) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $0) - (get_local $7) - ) - (i32.store - (get_local $3) - (get_local $10) - ) - (set_local $9 - (i32.load - (i32.const 184) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $0) + (get_local $7) + ) + (i32.store + (get_local $3) + (get_local $10) + ) + (set_local $9 + (i32.load + (i32.const 184) ) ) - (call $_abort) ) + (call $_abort) ) ) - (i32.store offset=4 - (get_local $8) - (i32.or + ) + (i32.store offset=4 + (get_local $8) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $7 + (i32.add + (get_local $8) (get_local $2) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $7 - (i32.add - (get_local $8) - (get_local $2) - ) - ) - (i32.or - (tee_local $11 - (i32.sub - (i32.shl - (get_local $11) - (i32.const 3) - ) - (get_local $2) + (i32.or + (tee_local $11 + (i32.sub + (i32.shl + (get_local $11) + (i32.const 3) ) + (get_local $2) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $7) - (get_local $11) - ) + ) + (i32.store + (i32.add + (get_local $7) (get_local $11) ) - (if - (get_local $9) - (block - (set_local $6 - (i32.load - (i32.const 196) - ) + (get_local $11) + ) + (if + (get_local $9) + (block + (set_local $6 + (i32.load + (i32.const 196) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $0 - (i32.shr_u - (get_local $9) - (i32.const 3) - ) + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $0 + (i32.shr_u + (get_local $9) + (i32.const 3) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 176) - ) + ) + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) + ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) ) ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $3 - (i32.add - (get_local $2) - (i32.const 8) - ) + ) + (if + (i32.lt_u + (tee_local $0 + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $5 - (get_local $3) - ) - (set_local $1 - (get_local $0) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $0) - ) - ) (set_local $5 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $3) ) (set_local $1 - (get_local $2) + (get_local $0) ) ) ) - (i32.store - (get_local $5) - (get_local $6) - ) - (i32.store offset=12 - (get_local $1) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $1) - ) - (i32.store offset=12 - (get_local $6) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $0) + ) + ) + (set_local $5 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $1 + (get_local $2) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $11) - ) - (i32.store - (i32.const 196) - (get_local $7) - ) - (return - (get_local $4) + (i32.store + (get_local $5) + (get_local $6) + ) + (i32.store offset=12 + (get_local $1) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $1) + ) + (i32.store offset=12 + (get_local $6) + (get_local $2) + ) ) ) + (i32.store + (i32.const 184) + (get_local $11) + ) + (i32.store + (i32.const 196) + (get_local $7) + ) + (return + (get_local $4) + ) ) - (if (result i32) - (tee_local $0 - (i32.load - (i32.const 180) - ) + ) + (if (result i32) + (tee_local $0 + (i32.load + (i32.const 180) ) - (block - (set_local $7 - (i32.and - (i32.shr_u - (tee_local $0 - (i32.add - (i32.and + ) + (block + (set_local $7 + (i32.and + (i32.shr_u + (tee_local $0 + (i32.add + (i32.and + (get_local $0) + (i32.sub + (i32.const 0) (get_local $0) - (i32.sub - (i32.const 0) - (get_local $0) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $11 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $0 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $11 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $0 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (tee_local $1 - (i32.shr_u - (get_local $0) - (get_local $7) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $7) - ) (tee_local $0 (i32.and (i32.shr_u (tee_local $1 (i32.shr_u - (get_local $1) (get_local $0) + (get_local $7) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $7) ) (tee_local $0 (i32.and @@ -8241,9 +8182,9 @@ (get_local $0) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -8258,849 +8199,859 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $1) - (get_local $0) + (tee_local $0 + (i32.and + (i32.shr_u + (tee_local $1 + (i32.shr_u + (get_local $1) + (get_local $0) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $1) + (get_local $0) + ) ) + (i32.const 2) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (set_local $7 - (get_local $0) - ) - (loop $while-in - (block $while-out + ) + (set_local $7 + (get_local $0) + ) + (loop $while-in + (block $while-out + (if + (tee_local $1 + (i32.load offset=16 + (get_local $0) + ) + ) + (set_local $0 + (get_local $1) + ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $0) + (i32.eqz + (tee_local $0 + (i32.load offset=20 + (get_local $0) + ) ) ) - (set_local $0 - (get_local $1) - ) - (if - (i32.eqz - (tee_local $0 - (i32.load offset=20 - (get_local $0) - ) - ) + (block + (set_local $6 + (get_local $11) ) - (block - (set_local $6 - (get_local $11) - ) - (set_local $8 - (get_local $7) - ) - (br $while-out) + (set_local $8 + (get_local $7) ) + (br $while-out) ) ) - (set_local $6 - (i32.lt_u - (tee_local $1 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (set_local $6 + (i32.lt_u + (tee_local $1 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $0) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $11) ) + (get_local $11) ) - (set_local $11 - (select - (get_local $1) - (get_local $11) - (get_local $6) - ) + ) + (set_local $11 + (select + (get_local $1) + (get_local $11) + (get_local $6) ) - (set_local $7 - (select - (get_local $0) - (get_local $7) - (get_local $6) - ) + ) + (set_local $7 + (select + (get_local $0) + (get_local $7) + (get_local $6) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $8) - (tee_local $10 - (i32.load - (i32.const 192) - ) + ) + (if + (i32.lt_u + (get_local $8) + (tee_local $10 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $8) - (tee_local $5 - (i32.add - (get_local $8) - (get_local $2) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $8) + (tee_local $5 + (i32.add + (get_local $8) + (get_local $2) ) ) - (call $_abort) ) - (set_local $9 - (i32.load offset=24 - (get_local $8) + (call $_abort) + ) + (set_local $9 + (i32.load offset=24 + (get_local $8) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $8) + ) ) + (get_local $8) ) (block $do-once4 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $8) - ) - ) - (get_local $8) - ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 20) - ) - ) - ) - ) - ) - (br_if $do-once4 - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 16) - ) - ) - ) + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 20) ) ) ) ) - (loop $while-in7 - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 20) - ) + ) + (br_if $do-once4 + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 16) ) ) ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) - ) - (br $while-in7) - ) ) - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) + ) + ) + ) + (loop $while-in7 + (if + (tee_local $7 + (i32.load + (tee_local $11 + (i32.add + (get_local $1) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $0) - (get_local $10) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $4 - (get_local $1) - ) + (set_local $0 + (get_local $11) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $11 - (i32.load offset=8 - (get_local $8) + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $10) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $11) - (i32.const 12) - ) - ) - ) - (get_local $8) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) + (set_local $0 + (get_local $11) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (get_local $10) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $4 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $11 + (i32.load offset=8 (get_local $8) ) - (block - (i32.store - (get_local $7) - (get_local $0) - ) - (i32.store - (get_local $1) + ) + (get_local $10) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $11) + (i32.const 12) ) - (set_local $4 + ) + ) + (get_local $8) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 8) ) ) - (call $_abort) + ) + (get_local $8) + ) + (block + (i32.store + (get_local $7) + (get_local $0) + ) + (i32.store + (get_local $1) + (get_local $11) + ) + (set_local $4 + (get_local $0) ) ) + (call $_abort) ) ) + ) + (if + (get_local $9) (block $do-once8 (if - (get_local $9) - (block - (if - (i32.eq - (get_local $8) - (i32.load - (tee_local $0 - (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $8) - ) - ) - (i32.const 2) + (i32.eq + (get_local $8) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $8) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $0) - (get_local $4) - ) - (if - (i32.eqz - (get_local $4) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $0) + (get_local $4) + ) + (if + (i32.eqz + (get_local $4) ) (block - (if - (i32.lt_u - (get_local $9) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $9) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) - (get_local $8) - ) - (i32.store - (get_local $0) - (get_local $4) - ) - (i32.store offset=20 - (get_local $9) - (get_local $4) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $4) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $4) - (tee_local $0 - (i32.load - (i32.const 192) - ) + (get_local $9) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $4) - (get_local $9) - ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $8) - ) - ) - (if - (i32.lt_u - (get_local $1) - (get_local $0) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $4) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $4) + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $9) + (i32.const 16) + ) ) ) + (get_local $8) + ) + (i32.store + (get_local $0) + (get_local $4) + ) + (i32.store offset=20 + (get_local $9) + (get_local $4) ) ) - (if - (tee_local $0 - (i32.load offset=20 - (get_local $8) - ) + (br_if $do-once8 + (i32.eqz + (get_local $4) ) - (if - (i32.lt_u - (get_local $0) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $4) - (get_local $0) - ) - (i32.store offset=24 - (get_local $0) - (get_local $4) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $4) + (tee_local $0 + (i32.load + (i32.const 192) ) ) ) + (call $_abort) ) - ) - (if - (i32.lt_u - (get_local $6) - (i32.const 16) + (i32.store offset=24 + (get_local $4) + (get_local $9) ) - (block - (i32.store offset=4 - (get_local $8) - (i32.or - (tee_local $0 - (i32.add - (get_local $6) - (get_local $2) - ) - ) - (i32.const 3) + (if + (tee_local $1 + (i32.load offset=16 + (get_local $8) ) ) - (i32.store - (tee_local $0 - (i32.add - (i32.add - (get_local $8) - (get_local $0) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $1) + (get_local $0) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $4) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $4) ) ) - (i32.or + ) + ) + (if + (tee_local $0 + (i32.load offset=20 + (get_local $8) + ) + ) + (if + (i32.lt_u + (get_local $0) (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $4) (get_local $0) ) - (i32.const 1) + (i32.store offset=24 + (get_local $0) + (get_local $4) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $8) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $6) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $8) + (i32.or + (tee_local $0 + (i32.add + (get_local $6) + (get_local $2) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $6) - (i32.const 1) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $8) + (get_local $0) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $5) - (get_local $6) + (i32.or + (i32.load + (get_local $0) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $8) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or (get_local $6) + (i32.const 1) ) - (if - (tee_local $0 + ) + (i32.store + (i32.add + (get_local $5) + (get_local $6) + ) + (get_local $6) + ) + (if + (tee_local $0 + (i32.load + (i32.const 184) + ) + ) + (block + (set_local $4 (i32.load - (i32.const 184) + (i32.const 196) ) ) - (block - (set_local $4 - (i32.load - (i32.const 196) + (set_local $2 + (i32.add + (i32.shl + (tee_local $0 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 216) ) - (set_local $2 - (i32.add + ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) + ) + ) + (tee_local $0 (i32.shl - (tee_local $0 - (i32.shr_u - (get_local $0) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $0) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) + (i32.lt_u (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $2) - (i32.const 8) - ) + (i32.load + (tee_local $1 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $12 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) (set_local $12 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $1) ) (set_local $3 - (get_local $2) + (get_local $0) ) ) ) - (i32.store - (get_local $12) - (get_local $4) - ) - (i32.store offset=12 - (get_local $3) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $3) - ) - (i32.store offset=12 - (get_local $4) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) + ) + (set_local $12 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $3 + (get_local $2) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $6) - ) - (i32.store - (i32.const 196) - (get_local $5) + (i32.store + (get_local $12) + (get_local $4) + ) + (i32.store offset=12 + (get_local $3) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $3) + ) + (i32.store offset=12 + (get_local $4) + (get_local $2) + ) ) ) - ) - (return - (i32.add - (get_local $8) - (i32.const 8) + (i32.store + (i32.const 184) + (get_local $6) + ) + (i32.store + (i32.const 196) + (get_local $5) ) ) ) - (get_local $2) + (return + (i32.add + (get_local $8) + (i32.const 8) + ) + ) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) - (if (result i32) - (i32.gt_u - (get_local $0) - (i32.const -65) - ) - (i32.const -1) - (block (result i32) - (set_local $2 - (i32.and - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 11) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const -65) + ) + (i32.const -1) + (block $do-once (result i32) + (set_local $2 + (i32.and + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 11) ) - (i32.const -8) ) + (i32.const -8) ) - (if (result i32) - (tee_local $18 - (i32.load - (i32.const 180) - ) + ) + (if (result i32) + (tee_local $18 + (i32.load + (i32.const 180) ) - (block (result i32) - (set_local $14 + ) + (block (result i32) + (set_local $14 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $0) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $0) - (i32.const 8) - ) + (i32.gt_u + (get_local $2) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $2) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $2) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $3) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) + (get_local $3) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (set_local $3 - (i32.sub - (i32.const 0) - (get_local $2) - ) + ) + (set_local $3 + (i32.sub + (i32.const 0) + (get_local $2) ) - (block $__rjto$3 - (block $__rjti$3 - (if - (tee_local $0 - (i32.load offset=480 - (i32.shl - (get_local $14) - (i32.const 2) - ) + ) + (block $__rjto$3 + (block $__rjti$3 + (if + (tee_local $0 + (i32.load offset=480 + (i32.shl + (get_local $14) + (i32.const 2) ) ) - (block - (set_local $9 - (i32.shl - (get_local $2) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $14) - (i32.const 1) - ) - ) - (i32.eq + ) + (block + (set_local $9 + (i32.shl + (get_local $2) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $14) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $14) + (i32.const 31) + ) ) ) - (set_local $1 - (i32.const 0) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $4 - (i32.sub - (tee_local $12 - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (set_local $1 + (i32.const 0) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $4 + (i32.sub + (tee_local $12 + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (get_local $2) ) + (get_local $2) ) - (get_local $3) ) - (set_local $1 - (if (result i32) - (i32.eq - (get_local $12) - (get_local $2) - ) - (block - (set_local $1 - (get_local $4) - ) - (set_local $3 - (get_local $0) - ) - (br $__rjti$3) + (get_local $3) + ) + (set_local $1 + (if (result i32) + (i32.eq + (get_local $12) + (get_local $2) + ) + (block + (set_local $1 + (get_local $4) ) - (block (result i32) - (set_local $3 - (get_local $4) - ) + (set_local $3 (get_local $0) ) + (br $__rjti$3) + ) + (block (result i32) + (set_local $3 + (get_local $4) + ) + (get_local $0) ) ) ) - (set_local $0 - (select - (get_local $5) - (tee_local $4 - (i32.load offset=20 - (get_local $0) - ) + ) + (set_local $0 + (select + (get_local $5) + (tee_local $4 + (i32.load offset=20 + (get_local $0) ) - (i32.or - (i32.eqz - (get_local $4) - ) - (i32.eq - (get_local $4) - (tee_local $12 - (i32.load + ) + (i32.or + (i32.eqz + (get_local $4) + ) + (i32.eq + (get_local $4) + (tee_local $12 + (i32.load + (i32.add (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $9) - (i32.const 31) - ) - (i32.const 2) + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $9) + (i32.const 31) ) + (i32.const 2) ) ) ) @@ -9108,138 +9059,124 @@ ) ) ) - (set_local $4 - (i32.shl - (get_local $9) - (i32.xor - (tee_local $5 - (i32.eqz - (get_local $12) - ) + ) + (set_local $4 + (i32.shl + (get_local $9) + (i32.xor + (tee_local $5 + (i32.eqz + (get_local $12) ) - (i32.const 1) ) + (i32.const 1) ) ) - (set_local $0 - (if (result i32) - (get_local $5) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $1) + ) + (set_local $0 + (if (result i32) + (get_local $5) + (block (result i32) + (set_local $4 + (get_local $0) ) - (block - (set_local $5 - (get_local $0) - ) - (set_local $9 - (get_local $4) - ) - (set_local $0 - (get_local $12) - ) - (br $while-in14) + (get_local $1) + ) + (block + (set_local $5 + (get_local $0) ) + (set_local $9 + (get_local $4) + ) + (set_local $0 + (get_local $12) + ) + (br $while-in14) ) ) ) ) - (set_local $0 - (i32.const 0) - ) ) - (if - (i32.eqz - (i32.or - (get_local $4) - (get_local $0) - ) + (set_local $0 + (i32.const 0) + ) + ) + (if + (i32.eqz + (i32.or + (get_local $4) + (get_local $0) ) - (block - (drop - (br_if $do-once - (get_local $2) - (i32.eqz - (tee_local $1 - (i32.and - (get_local $18) - (i32.or - (tee_local $1 - (i32.shl - (i32.const 2) - (get_local $14) - ) - ) - (i32.sub - (i32.const 0) - (get_local $1) + ) + (block + (drop + (br_if $do-once + (get_local $2) + (i32.eqz + (tee_local $1 + (i32.and + (get_local $18) + (i32.or + (tee_local $1 + (i32.shl + (i32.const 2) + (get_local $14) ) ) + (i32.sub + (i32.const 0) + (get_local $1) + ) ) ) ) ) ) - (set_local $12 - (i32.and - (i32.shr_u - (tee_local $1 - (i32.add - (i32.and + ) + (set_local $12 + (i32.and + (i32.shr_u + (tee_local $1 + (i32.add + (i32.and + (get_local $1) + (i32.sub + (i32.const 0) (get_local $1) - (i32.sub - (i32.const 0) - (get_local $1) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $4 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $4 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $1 - (i32.and - (i32.shr_u - (tee_local $4 - (i32.shr_u - (get_local $1) - (get_local $12) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $12) - ) (tee_local $1 (i32.and (i32.shr_u (tee_local $4 (i32.shr_u - (get_local $4) (get_local $1) + (get_local $12) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $12) ) (tee_local $1 (i32.and @@ -9250,9 +9187,9 @@ (get_local $1) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -9267,763 +9204,876 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $4) - (get_local $1) + (tee_local $1 + (i32.and + (i32.shr_u + (tee_local $4 + (i32.shr_u + (get_local $4) + (get_local $1) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $4) + (get_local $1) + ) ) + (i32.const 2) ) ) ) ) - (set_local $4 - (if (result i32) - (get_local $4) - (block - (set_local $1 - (get_local $3) - ) - (set_local $3 - (get_local $4) - ) - (br $__rjti$3) + ) + (set_local $4 + (if (result i32) + (get_local $4) + (block + (set_local $1 + (get_local $3) ) - (get_local $0) + (set_local $3 + (get_local $4) + ) + (br $__rjti$3) ) + (get_local $0) ) - (br $__rjto$3) ) - (loop $while-in16 - (set_local $12 - (i32.lt_u - (tee_local $4 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $3) - ) - (i32.const -8) + (br $__rjto$3) + ) + (loop $while-in16 + (set_local $12 + (i32.lt_u + (tee_local $4 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $3) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $1) ) + (get_local $1) ) - (set_local $1 - (select - (get_local $4) - (get_local $1) - (get_local $12) - ) + ) + (set_local $1 + (select + (get_local $4) + (get_local $1) + (get_local $12) ) - (set_local $0 - (select + ) + (set_local $0 + (select + (get_local $3) + (get_local $0) + (get_local $12) + ) + ) + (if + (tee_local $4 + (i32.load offset=16 (get_local $3) - (get_local $0) - (get_local $12) ) ) - (if - (tee_local $4 - (i32.load offset=16 - (get_local $3) - ) - ) - (block - (set_local $3 - (get_local $4) - ) - (br $while-in16) + (block + (set_local $3 + (get_local $4) ) + (br $while-in16) ) - (br_if $while-in16 - (tee_local $3 - (i32.load offset=20 - (get_local $3) - ) + ) + (br_if $while-in16 + (tee_local $3 + (i32.load offset=20 + (get_local $3) ) ) ) - (set_local $4 - (get_local $0) - ) - (set_local $3 - (get_local $1) - ) ) + (set_local $4 + (get_local $0) + ) + (set_local $3 + (get_local $1) + ) + ) + (if (result i32) + (get_local $4) (if (result i32) - (get_local $4) - (if (result i32) - (i32.lt_u - (get_local $3) - (i32.sub - (i32.load - (i32.const 184) - ) - (get_local $2) + (i32.lt_u + (get_local $3) + (i32.sub + (i32.load + (i32.const 184) ) + (get_local $2) ) - (block - (if - (i32.lt_u - (get_local $4) - (tee_local $8 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $4) + (tee_local $8 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $4) - (tee_local $5 - (i32.add - (get_local $4) - (get_local $2) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $4) + (tee_local $5 + (i32.add + (get_local $4) + (get_local $2) ) ) - (call $_abort) ) - (set_local $12 - (i32.load offset=24 - (get_local $4) + (call $_abort) + ) + (set_local $12 + (i32.load offset=24 + (get_local $4) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $4) + ) ) + (get_local $4) ) (block $do-once17 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $4) - ) - ) - (get_local $4) - ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 20) - ) - ) - ) - ) - ) - (br_if $do-once17 - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 16) - ) - ) - ) + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 20) ) ) ) ) - (loop $while-in20 - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 20) - ) + ) + (br_if $do-once17 + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 16) ) ) ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) - ) - (br $while-in20) - ) ) - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) + ) + ) + ) + (loop $while-in20 + (if + (tee_local $7 + (i32.load + (tee_local $11 + (i32.add + (get_local $1) + (i32.const 20) ) - (br $while-in20) ) ) ) - (if - (i32.lt_u - (get_local $0) - (get_local $8) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $10 - (get_local $1) - ) + (set_local $0 + (get_local $11) ) + (br $while-in20) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $11 - (i32.load offset=8 - (get_local $4) + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $8) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $11) - (i32.const 12) - ) - ) - ) - (get_local $4) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) + (set_local $0 + (get_local $11) + ) + (br $while-in20) ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (get_local $8) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $10 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $11 + (i32.load offset=8 (get_local $4) ) - (block - (i32.store - (get_local $7) - (get_local $0) - ) - (i32.store - (get_local $1) + ) + (get_local $8) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $11) + (i32.const 12) ) - (set_local $10 + ) + ) + (get_local $4) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 8) ) ) - (call $_abort) ) + (get_local $4) ) + (block + (i32.store + (get_local $7) + (get_local $0) + ) + (i32.store + (get_local $1) + (get_local $11) + ) + (set_local $10 + (get_local $0) + ) + ) + (call $_abort) ) ) + ) + (if + (get_local $12) (block $do-once21 (if - (get_local $12) - (block - (if - (i32.eq - (get_local $4) - (i32.load - (tee_local $0 - (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $4) - ) - ) - (i32.const 2) + (i32.eq + (get_local $4) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $4) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $0) - (get_local $10) - ) - (if - (i32.eqz - (get_local $10) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) - ) - (br $do-once21) - ) - ) + ) + ) + (block + (i32.store + (get_local $0) + (get_local $10) + ) + (if + (i32.eqz + (get_local $10) ) (block - (if - (i32.lt_u - (get_local $12) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $12) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) - (get_local $4) - ) - (i32.store - (get_local $0) - (get_local $10) - ) - (i32.store offset=20 - (get_local $12) - (get_local $10) - ) - ) - (br_if $do-once21 - (i32.eqz - (get_local $10) ) ) + (br $do-once21) ) ) + ) + (block (if (i32.lt_u - (get_local $10) - (tee_local $0 - (i32.load - (i32.const 192) - ) + (get_local $12) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $10) - (get_local $12) - ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $4) - ) - ) - (if - (i32.lt_u - (get_local $1) - (get_local $0) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $10) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $10) + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $12) + (i32.const 16) + ) ) ) + (get_local $4) ) - ) - (if - (tee_local $0 - (i32.load offset=20 - (get_local $4) - ) + (i32.store + (get_local $0) + (get_local $10) ) - (if - (i32.lt_u - (get_local $0) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $10) - (get_local $0) - ) - (i32.store offset=24 - (get_local $0) - (get_local $10) - ) - ) + (i32.store offset=20 + (get_local $12) + (get_local $10) + ) + ) + (br_if $do-once21 + (i32.eqz + (get_local $10) ) ) ) ) - ) - (block $do-once25 (if (i32.lt_u - (get_local $3) - (i32.const 16) + (get_local $10) + (tee_local $0 + (i32.load + (i32.const 192) + ) + ) ) - (block - (i32.store offset=4 + (call $_abort) + ) + (i32.store offset=24 + (get_local $10) + (get_local $12) + ) + (if + (tee_local $1 + (i32.load offset=16 (get_local $4) - (i32.or - (tee_local $0 - (i32.add - (get_local $3) - (get_local $2) - ) - ) - (i32.const 3) - ) ) - (i32.store - (tee_local $0 - (i32.add - (i32.add - (get_local $4) - (get_local $0) - ) - (i32.const 4) - ) + ) + (if + (i32.lt_u + (get_local $1) + (get_local $0) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $10) + (get_local $1) ) - (i32.or - (i32.load - (get_local $0) - ) - (i32.const 1) + (i32.store offset=24 + (get_local $1) + (get_local $10) ) ) ) - (block - (i32.store offset=4 + ) + (if + (tee_local $0 + (i32.load offset=20 (get_local $4) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) ) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $3) - (i32.const 1) + (call $_abort) + (block + (i32.store offset=20 + (get_local $10) + (get_local $0) + ) + (i32.store offset=24 + (get_local $0) + (get_local $10) ) ) - (i32.store + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $3) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $4) + (i32.or + (tee_local $0 (i32.add - (get_local $5) (get_local $3) + (get_local $2) ) - (get_local $3) ) - (set_local $0 - (i32.shr_u - (get_local $3) - (i32.const 3) + (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $4) + (get_local $0) ) + (i32.const 4) ) - (if - (i32.lt_u - (get_local $3) - (i32.const 256) + ) + (i32.or + (i32.load + (get_local $0) + ) + (i32.const 1) + ) + ) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or + (get_local $3) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $5) + (get_local $3) + ) + (get_local $3) + ) + (set_local $0 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $3) + (i32.const 256) + ) + (block + (set_local $3 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 216) ) - (block - (set_local $3 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 216) + ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) ) ) - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) + ) + ) + (if + (i32.lt_u + (tee_local $0 + (i32.load + (tee_local $1 + (i32.add + (get_local $3) + (i32.const 8) ) ) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (set_local $13 - (get_local $1) - ) - (set_local $6 - (get_local $0) - ) ) ) - (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) - (set_local $13 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - (set_local $6 - (get_local $3) - ) + (i32.load + (i32.const 192) ) ) - (i32.store - (get_local $13) - (get_local $5) + (call $_abort) + (block + (set_local $13 + (get_local $1) + ) + (set_local $6 + (get_local $0) + ) ) - (i32.store offset=12 - (get_local $6) - (get_local $5) + ) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $5) - (get_local $6) + (set_local $13 + (i32.add + (get_local $3) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $5) + (set_local $6 (get_local $3) ) - (br $do-once25) ) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $7 - (if (result i32) - (tee_local $0 + (i32.store + (get_local $13) + (get_local $5) + ) + (i32.store offset=12 + (get_local $6) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $6) + ) + (i32.store offset=12 + (get_local $5) + (get_local $3) + ) + (br $do-once25) + ) + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $3) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u (get_local $3) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u - (get_local $3) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $3) + (i32.add + (tee_local $0 (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $2) + (i32.const 4) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) - ) - (i32.const 245760) + ) + (get_local $2) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $5) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $5) - (get_local $7) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) + ) + ) (tee_local $0 - (i32.add - (get_local $5) - (i32.const 16) + (i32.shl + (i32.const 1) + (get_local $7) ) ) - (i32.const 0) ) + ) + (block (i32.store - (get_local $0) + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) + ) + ) + (i32.store + (get_local $2) + (get_local $5) + ) + (i32.store offset=24 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $5) + ) + (br $do-once25) + ) + ) + (set_local $7 + (i32.shl + (get_local $3) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) + ) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) + ) + ) + (set_local $0 + (i32.load + (get_local $2) + ) + ) + (block $__rjto$1 + (block $__rjti$1 + (loop $while-in28 + (br_if $__rjti$1 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $7) + (get_local $3) + ) + ) + (set_local $2 + (i32.shl + (get_local $7) + (i32.const 1) + ) + ) + (if + (tee_local $1 + (i32.load + (tee_local $7 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $7) + (i32.const 31) + ) + (i32.const 2) + ) + ) ) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or + (block + (set_local $7 + (get_local $2) + ) + (set_local $0 (get_local $1) - (get_local $0) ) + (br $while-in28) + ) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $2) + (get_local $7) (get_local $5) ) (i32.store offset=24 (get_local $5) - (get_local $2) + (get_local $0) ) (i32.store offset=12 (get_local $5) @@ -10036,177 +10086,72 @@ (br $do-once25) ) ) - (set_local $7 - (i32.shl - (get_local $3) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) + (br $__rjto$1) + ) + (if + (i32.and + (i32.ge_u + (tee_local $2 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) + ) ) ) - (i32.eq - (get_local $7) - (i32.const 31) + ) + (tee_local $1 + (i32.load + (i32.const 192) ) ) ) + (i32.ge_u + (get_local $0) + (get_local $1) + ) ) - (set_local $0 - (i32.load + (block + (i32.store offset=12 (get_local $2) + (get_local $5) ) - ) - (block $__rjto$1 - (block $__rjti$1 - (loop $while-in28 - (br_if $__rjti$1 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $3) - ) - ) - (set_local $2 - (i32.shl - (get_local $7) - (i32.const 1) - ) - ) - (if - (tee_local $1 - (i32.load - (tee_local $7 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $7 - (get_local $2) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in28) - ) - ) - ) - (if - (i32.lt_u - (get_local $7) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $7) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $0) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $5) - ) - (br $do-once25) - ) - ) - (br $__rjto$1) + (i32.store + (get_local $3) + (get_local $5) ) - (if - (i32.and - (i32.ge_u - (tee_local $2 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $2) - (get_local $5) - ) - (i32.store - (get_local $3) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $2) - ) - (i32.store offset=12 - (get_local $5) - (get_local $0) - ) - (i32.store offset=24 - (get_local $5) - (i32.const 0) - ) - ) - (call $_abort) + (i32.store offset=8 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $0) + ) + (i32.store offset=24 + (get_local $5) + (i32.const 0) ) ) + (call $_abort) ) ) ) - (return - (i32.add - (get_local $4) - (i32.const 8) - ) + ) + (return + (i32.add + (get_local $4) + (i32.const 8) ) ) - (get_local $2) ) (get_local $2) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) ) ) @@ -10847,248 +10792,277 @@ (get_local $2) ) ) - (block $do-once40 - (if - (tee_local $5 - (i32.load - (i32.const 200) - ) + (if + (tee_local $5 + (i32.load + (i32.const 200) ) - (block - (set_local $2 - (i32.const 624) - ) - (block $__rjto$10 - (block $__rjti$10 - (loop $while-in45 - (br_if $__rjti$10 - (i32.eq - (get_local $1) - (i32.add - (tee_local $10 - (i32.load - (get_local $2) - ) + ) + (block $do-once40 + (set_local $2 + (i32.const 624) + ) + (block $__rjto$10 + (block $__rjti$10 + (loop $while-in45 + (br_if $__rjti$10 + (i32.eq + (get_local $1) + (i32.add + (tee_local $10 + (i32.load + (get_local $2) ) - (tee_local $6 - (i32.load - (tee_local $4 - (i32.add - (get_local $2) - (i32.const 4) - ) + ) + (tee_local $6 + (i32.load + (tee_local $4 + (i32.add + (get_local $2) + (i32.const 4) ) ) ) ) ) ) - (br_if $while-in45 - (tee_local $2 - (i32.load offset=8 - (get_local $2) - ) + ) + (br_if $while-in45 + (tee_local $2 + (i32.load offset=8 + (get_local $2) ) ) ) - (br $__rjto$10) + ) + (br $__rjto$10) + ) + (if + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $2) + ) + (i32.const 8) + ) ) (if - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $2) - ) - (i32.const 8) + (i32.and + (i32.lt_u + (get_local $5) + (get_local $1) + ) + (i32.ge_u + (get_local $5) + (get_local $10) ) ) - (if - (i32.and - (i32.lt_u - (get_local $5) - (get_local $1) - ) - (i32.ge_u - (get_local $5) - (get_local $10) + (block + (i32.store + (get_local $4) + (i32.add + (get_local $6) + (get_local $3) ) ) - (block - (i32.store - (get_local $4) - (i32.add - (get_local $6) - (get_local $3) - ) - ) - (set_local $2 - (i32.add - (get_local $5) - (tee_local $1 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $5) - (i32.const 8) - ) + (set_local $2 + (i32.add + (get_local $5) + (tee_local $1 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $5) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) - (set_local $1 - (i32.add - (i32.sub - (get_local $3) - (get_local $1) - ) - (i32.load - (i32.const 188) - ) + ) + (set_local $1 + (i32.add + (i32.sub + (get_local $3) + (get_local $1) + ) + (i32.load + (i32.const 188) ) ) - (i32.store - (i32.const 200) - (get_local $2) - ) - (i32.store - (i32.const 188) + ) + (i32.store + (i32.const 200) + (get_local $2) + ) + (i32.store + (i32.const 188) + (get_local $1) + ) + (i32.store offset=4 + (get_local $2) + (i32.or (get_local $1) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $2) - (i32.or - (get_local $1) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 40) + (get_local $1) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (br $do-once40) ) + (br $do-once40) ) ) ) - (if - (i32.lt_u - (get_local $1) - (tee_local $4 - (i32.load - (i32.const 192) - ) - ) - ) - (block - (i32.store + ) + (if + (i32.lt_u + (get_local $1) + (tee_local $4 + (i32.load (i32.const 192) - (get_local $1) - ) - (set_local $4 - (get_local $1) ) ) ) - (set_local $10 - (i32.add + (block + (i32.store + (i32.const 192) + (get_local $1) + ) + (set_local $4 (get_local $1) - (get_local $3) ) ) - (set_local $2 - (i32.const 624) + ) + (set_local $10 + (i32.add + (get_local $1) + (get_local $3) ) - (block $__rjto$11 - (block $__rjti$11 - (loop $while-in47 - (if - (i32.eq - (i32.load - (get_local $2) - ) - (get_local $10) - ) - (block - (set_local $6 - (get_local $2) - ) - (br $__rjti$11) + ) + (set_local $2 + (i32.const 624) + ) + (block $__rjto$11 + (block $__rjti$11 + (loop $while-in47 + (if + (i32.eq + (i32.load + (get_local $2) ) + (get_local $10) ) - (br_if $while-in47 - (tee_local $2 - (i32.load offset=8 - (get_local $2) - ) + (block + (set_local $6 + (get_local $2) ) + (br $__rjti$11) ) ) - (set_local $4 - (i32.const 624) + (br_if $while-in47 + (tee_local $2 + (i32.load offset=8 + (get_local $2) + ) + ) ) - (br $__rjto$11) ) (set_local $4 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $2) - ) - (i32.const 8) + (i32.const 624) + ) + (br $__rjto$11) + ) + (set_local $4 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $2) ) - (i32.const 624) - (block - (i32.store - (get_local $6) - (get_local $1) + (i32.const 8) + ) + (i32.const 624) + (block + (i32.store + (get_local $6) + (get_local $1) + ) + (i32.store + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 4) + ) ) - (i32.store - (tee_local $2 - (i32.add - (get_local $2) - (i32.const 4) - ) + (i32.add + (i32.load + (get_local $2) ) - (i32.add - (i32.load - (get_local $2) + (get_local $3) + ) + ) + (set_local $9 + (i32.add + (tee_local $12 + (i32.add + (get_local $1) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) + ) + ) ) - (get_local $3) ) + (get_local $0) ) - (set_local $9 - (i32.add - (tee_local $12 + ) + (set_local $7 + (i32.sub + (i32.sub + (tee_local $6 (i32.add - (get_local $1) + (get_local $10) (select (i32.and (i32.sub (i32.const 0) (tee_local $1 (i32.add - (get_local $1) + (get_local $10) (i32.const 8) ) ) @@ -11103,68 +11077,69 @@ ) ) ) - (get_local $0) + (get_local $12) ) + (get_local $0) ) - (set_local $7 - (i32.sub - (i32.sub - (tee_local $6 - (i32.add - (get_local $10) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $10) - (i32.const 8) - ) - ) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) - ) - ) + ) + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $0) + (i32.const 3) + ) + ) + (if + (i32.eq + (get_local $6) + (get_local $5) + ) + (block + (i32.store + (i32.const 188) + (tee_local $0 + (i32.add + (i32.load + (i32.const 188) ) + (get_local $7) ) - (get_local $12) ) - (get_local $0) ) - ) - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $0) - (i32.const 3) + (i32.store + (i32.const 200) + (get_local $9) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $0) + (i32.const 1) + ) ) ) (block $do-once48 (if (i32.eq (get_local $6) - (get_local $5) + (i32.load + (i32.const 196) + ) ) (block (i32.store - (i32.const 188) + (i32.const 184) (tee_local $0 (i32.add (i32.load - (i32.const 188) + (i32.const 184) ) (get_local $7) ) ) ) (i32.store - (i32.const 200) + (i32.const 196) (get_local $9) ) (i32.store offset=4 @@ -11174,835 +11149,890 @@ (i32.const 1) ) ) - ) - (block - (if - (i32.eq - (get_local $6) - (i32.load - (i32.const 196) - ) + (i32.store + (i32.add + (get_local $9) + (get_local $0) ) - (block - (i32.store - (i32.const 184) - (tee_local $0 - (i32.add - (i32.load - (i32.const 184) + (get_local $0) + ) + (br $do-once48) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (tee_local $0 + (if (result i32) + (i32.eq + (i32.and + (tee_local $0 + (i32.load offset=4 + (get_local $6) + ) ) - (get_local $7) + (i32.const 3) ) - ) - ) - (i32.store - (i32.const 196) - (get_local $9) - ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $0) (i32.const 1) ) - ) - (i32.store - (i32.add - (get_local $9) - (get_local $0) - ) - (get_local $0) - ) - (br $do-once48) - ) - ) - (i32.store - (tee_local $0 - (i32.add - (tee_local $0 - (if (result i32) - (i32.eq - (i32.and - (tee_local $0 - (i32.load offset=4 - (get_local $6) - ) - ) - (i32.const 3) - ) - (i32.const 1) + (block (result i32) + (set_local $10 + (i32.and + (get_local $0) + (i32.const -8) ) - (block (result i32) - (set_local $10 - (i32.and - (get_local $0) - (i32.const -8) - ) + ) + (set_local $1 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (block $label$break$L331 + (if + (i32.lt_u + (get_local $0) + (i32.const 256) ) - (set_local $1 - (i32.shr_u - (get_local $0) - (i32.const 3) + (block + (set_local $2 + (i32.load offset=12 + (get_local $6) + ) ) - ) - (block $label$break$L331 (if - (i32.lt_u - (get_local $0) - (i32.const 256) - ) - (block - (set_local $2 - (i32.load offset=12 + (i32.ne + (tee_local $3 + (i32.load offset=8 (get_local $6) ) ) - (block $do-once51 - (if - (i32.ne - (tee_local $3 - (i32.load offset=8 - (get_local $6) - ) - ) - (tee_local $0 - (i32.add - (i32.shl - (get_local $1) - (i32.const 3) - ) - (i32.const 216) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $3) - (get_local $4) - ) - (call $_abort) - ) - (br_if $do-once51 - (i32.eq - (i32.load offset=12 - (get_local $3) - ) - (get_local $6) - ) - ) - (call $_abort) + (tee_local $0 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) ) + (i32.const 216) ) ) + ) + (block $do-once51 (if - (i32.eq - (get_local $2) + (i32.lt_u (get_local $3) + (get_local $4) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) + (call $_abort) + ) + (br_if $do-once51 + (i32.eq + (i32.load offset=12 + (get_local $3) ) - (br $label$break$L331) + (get_local $6) ) ) - (block $do-once53 - (if - (i32.eq - (get_local $2) - (get_local $0) - ) - (set_local $15 - (i32.add - (get_local $2) - (i32.const 8) - ) + (call $_abort) + ) + ) + (if + (i32.eq + (get_local $2) + (get_local $3) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) ) - (block - (if - (i32.lt_u - (get_local $2) - (get_local $4) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - ) - (get_local $6) - ) - (block - (set_local $15 - (get_local $0) - ) - (br $do-once53) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) - (call $_abort) + (i32.const -1) ) ) ) - (i32.store offset=12 - (get_local $3) + (br $label$break$L331) + ) + ) + (if + (i32.eq + (get_local $2) + (get_local $0) + ) + (set_local $15 + (i32.add (get_local $2) - ) - (i32.store - (get_local $15) - (get_local $3) + (i32.const 8) ) ) - (block - (set_local $5 - (i32.load offset=24 - (get_local $6) + (block $do-once53 + (if + (i32.lt_u + (get_local $2) + (get_local $4) ) + (call $_abort) ) - (block $do-once55 - (if - (i32.eq + (if + (i32.eq + (i32.load (tee_local $0 - (i32.load offset=12 - (get_local $6) + (i32.add + (get_local $2) + (i32.const 8) ) ) - (get_local $6) ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - ) - (block - (br_if $do-once55 - (i32.eqz - (tee_local $1 - (i32.load - (get_local $3) - ) - ) - ) - ) - (set_local $0 - (get_local $3) - ) - ) - ) - (loop $while-in58 - (if - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $3) - ) - (set_local $0 - (get_local $2) - ) - (br $while-in58) - ) - ) - (if - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $3) - ) - (set_local $0 - (get_local $2) - ) - (br $while-in58) - ) - ) - ) - (if - (i32.lt_u - (get_local $0) - (get_local $4) - ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $8 - (get_local $1) - ) - ) - ) + (get_local $6) + ) + (block + (set_local $15 + (get_local $0) ) - (block - (if - (i32.lt_u - (tee_local $2 - (i32.load offset=8 - (get_local $6) - ) - ) - (get_local $4) - ) - (call $_abort) - ) - (if - (i32.ne - (i32.load + (br $do-once53) + ) + ) + (call $_abort) + ) + ) + (i32.store offset=12 + (get_local $3) + (get_local $2) + ) + (i32.store + (get_local $15) + (get_local $3) + ) + ) + (block + (set_local $5 + (i32.load offset=24 + (get_local $6) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $6) + ) + ) + (get_local $6) + ) + (block $do-once55 + (if + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add (tee_local $3 (i32.add - (get_local $2) - (i32.const 12) + (get_local $6) + (i32.const 16) ) ) + (i32.const 4) ) - (get_local $6) ) - (call $_abort) ) - (if - (i32.eq + ) + ) + (block + (br_if $do-once55 + (i32.eqz + (tee_local $1 (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $6) - ) - (block - (i32.store (get_local $3) - (get_local $0) - ) - (i32.store - (get_local $1) - (get_local $2) - ) - (set_local $8 - (get_local $0) ) ) - (call $_abort) ) ) + (set_local $0 + (get_local $3) + ) ) ) - (br_if $label$break$L331 - (i32.eqz - (get_local $5) - ) - ) - (block $do-once59 + (loop $while-in58 (if - (i32.eq - (get_local $6) + (tee_local $3 (i32.load - (tee_local $0 + (tee_local $2 (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $6) - ) - ) - (i32.const 2) - ) - (i32.const 480) + (get_local $1) + (i32.const 20) ) ) ) ) (block - (i32.store - (get_local $0) - (get_local $8) + (set_local $1 + (get_local $3) ) - (br_if $do-once59 - (get_local $8) + (set_local $0 + (get_local $2) ) - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) + (br $while-in58) + ) + ) + (if + (tee_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $1) + (i32.const 16) ) ) ) - (br $label$break$L331) ) (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $5) - (i32.const 16) - ) - ) - ) - (get_local $6) - ) - (i32.store - (get_local $0) - (get_local $8) - ) - (i32.store offset=20 - (get_local $5) - (get_local $8) - ) + (set_local $1 + (get_local $3) ) - (br_if $label$break$L331 - (i32.eqz - (get_local $8) - ) + (set_local $0 + (get_local $2) ) + (br $while-in58) ) ) ) (if (i32.lt_u - (get_local $8) - (tee_local $1 - (i32.load - (i32.const 192) + (get_local $0) + (get_local $4) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $8 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $2 + (i32.load offset=8 + (get_local $6) ) ) + (get_local $4) ) (call $_abort) ) - (i32.store offset=24 - (get_local $8) - (get_local $5) + (if + (i32.ne + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 12) + ) + ) + ) + (get_local $6) + ) + (call $_abort) ) (if - (tee_local $3 + (i32.eq (i32.load - (tee_local $0 + (tee_local $1 (i32.add - (get_local $6) - (i32.const 16) + (get_local $0) + (i32.const 8) ) ) ) + (get_local $6) ) - (if - (i32.lt_u + (block + (i32.store (get_local $3) + (get_local $0) + ) + (i32.store (get_local $1) + (get_local $2) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $8) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $8) + (set_local $8 + (get_local $0) + ) + ) + (call $_abort) + ) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $5) + ) + ) + (if + (i32.eq + (get_local $6) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $6) + ) + ) + (i32.const 2) ) + (i32.const 480) ) ) ) - (br_if $label$break$L331 - (i32.eqz - (tee_local $0 - (i32.load offset=4 - (get_local $0) + ) + (block $do-once59 + (i32.store + (get_local $0) + (get_local $8) + ) + (br_if $do-once59 + (get_local $8) + ) + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) ) ) + (br $label$break$L331) + ) + (block (if (i32.lt_u - (get_local $0) + (get_local $5) (i32.load (i32.const 192) ) ) (call $_abort) - (block - (i32.store offset=20 - (get_local $8) - (get_local $0) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $5) + (i32.const 16) + ) + ) ) - (i32.store offset=24 - (get_local $0) - (get_local $8) + (get_local $6) + ) + (i32.store + (get_local $0) + (get_local $8) + ) + (i32.store offset=20 + (get_local $5) + (get_local $8) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $8) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $8) + (tee_local $1 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $8) + (get_local $5) + ) + (if + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (get_local $6) + (i32.const 16) ) ) ) ) + (if + (i32.lt_u + (get_local $3) + (get_local $1) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $8) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $8) + ) + ) + ) ) - ) - (set_local $7 - (i32.add - (get_local $10) - (get_local $7) + (br_if $label$break$L331 + (i32.eqz + (tee_local $0 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $8) + (get_local $0) + ) + (i32.store offset=24 + (get_local $0) + (get_local $8) + ) + ) ) ) - (i32.add - (get_local $6) - (get_local $10) - ) ) + ) + (set_local $7 + (i32.add + (get_local $10) + (get_local $7) + ) + ) + (i32.add (get_local $6) + (get_local $10) ) ) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $0) + (get_local $6) ) - (i32.const -2) ) + (i32.const 4) ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $7) - (i32.const 1) - ) + ) + (i32.and + (i32.load + (get_local $0) ) - (i32.store + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $7) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $9) + (get_local $7) + ) + (get_local $7) + ) + (set_local $0 + (i32.shr_u + (get_local $7) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.const 256) + ) + (block + (set_local $3 (i32.add - (get_local $9) - (get_local $7) - ) - (get_local $7) - ) - (set_local $0 - (i32.shr_u - (get_local $7) - (i32.const 3) + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 216) ) ) (if - (i32.lt_u - (get_local $7) - (i32.const 256) - ) - (block - (set_local $3 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 216) + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) ) ) - (block $do-once63 - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (block - (if - (i32.ge_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 192) - ) - ) - (block - (set_local $16 - (get_local $1) - ) - (set_local $11 - (get_local $0) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) + ) + ) + ) + (block $do-once63 + (if + (i32.ge_u + (tee_local $0 + (i32.load + (tee_local $1 + (i32.add + (get_local $3) + (i32.const 8) ) - (br $do-once63) ) ) - (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) - (set_local $16 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - (set_local $11 - (get_local $3) - ) + (i32.load + (i32.const 192) ) ) + (block + (set_local $16 + (get_local $1) + ) + (set_local $11 + (get_local $0) + ) + (br $do-once63) + ) ) + (call $_abort) + ) + (block (i32.store - (get_local $16) - (get_local $9) - ) - (i32.store offset=12 - (get_local $11) - (get_local $9) + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $9) - (get_local $11) + (set_local $16 + (i32.add + (get_local $3) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $9) + (set_local $11 (get_local $3) ) - (br $do-once48) ) ) - (set_local $3 - (i32.add - (i32.shl - (tee_local $2 - (block $do-once65 (result i32) - (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $7) - (i32.const 8) - ) - ) - (block (result i32) - (drop - (br_if $do-once65 - (i32.const 31) - (i32.gt_u - (get_local $7) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $7) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + (i32.store + (get_local $16) + (get_local $9) + ) + (i32.store offset=12 + (get_local $11) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $11) + ) + (i32.store offset=12 + (get_local $9) + (get_local $3) + ) + (br $do-once48) + ) + ) + (set_local $3 + (i32.add + (i32.shl + (tee_local $2 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $7) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $7) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $7) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $3) + (i32.const 16) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $3) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $9) + (get_local $2) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $9) - (get_local $2) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) + ) + ) (tee_local $0 - (i32.add - (get_local $9) - (i32.const 16) + (i32.shl + (i32.const 1) + (get_local $2) ) ) - (i32.const 0) ) + ) + (block (i32.store - (get_local $0) + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) + ) + ) + (i32.store + (get_local $3) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $3) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + (br $do-once48) + ) + ) + (set_local $2 + (i32.shl + (get_local $7) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $2) + (i32.const 1) + ) + ) + (i32.eq + (get_local $2) + (i32.const 31) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) + ) + ) + (set_local $0 + (i32.load + (get_local $3) + ) + ) + (block $__rjto$7 + (block $__rjti$7 + (loop $while-in68 + (br_if $__rjti$7 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $2) + (get_local $7) + ) + ) + (set_local $3 + (i32.shl + (get_local $2) + (i32.const 1) + ) + ) + (if + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $2) + (i32.const 31) + ) + (i32.const 2) + ) + ) ) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or + (block + (set_local $2 + (get_local $3) + ) + (set_local $0 (get_local $1) - (get_local $0) ) + (br $while-in68) + ) + ) + ) + (if + (i32.lt_u + (get_local $2) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $3) + (get_local $2) (get_local $9) ) (i32.store offset=24 (get_local $9) - (get_local $3) + (get_local $0) ) (i32.store offset=12 (get_local $9) @@ -12015,972 +12045,867 @@ (br $do-once48) ) ) - (set_local $2 - (i32.shl - (get_local $7) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $2) - (i32.const 1) + (br $__rjto$7) + ) + (if + (i32.and + (i32.ge_u + (tee_local $2 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) + ) ) ) - (i32.eq - (get_local $2) - (i32.const 31) + ) + (tee_local $1 + (i32.load + (i32.const 192) ) ) ) + (i32.ge_u + (get_local $0) + (get_local $1) + ) ) - (set_local $0 - (i32.load + (block + (i32.store offset=12 + (get_local $2) + (get_local $9) + ) + (i32.store (get_local $3) + (get_local $9) ) - ) - (block $__rjto$7 - (block $__rjti$7 - (loop $while-in68 - (br_if $__rjti$7 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $7) - ) - ) - (set_local $3 - (i32.shl - (get_local $2) - (i32.const 1) - ) - ) - (if - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $2) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in68) - ) - ) - ) - (if - (i32.lt_u - (get_local $2) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $2) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $0) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - (br $do-once48) - ) - ) - (br $__rjto$7) + (i32.store offset=8 + (get_local $9) + (get_local $2) ) - (if - (i32.and - (i32.ge_u - (tee_local $2 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $2) - (get_local $9) - ) - (i32.store - (get_local $3) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $2) - ) - (i32.store offset=12 - (get_local $9) - (get_local $0) - ) - (i32.store offset=24 - (get_local $9) - (i32.const 0) - ) - ) - (call $_abort) + (i32.store offset=12 + (get_local $9) + (get_local $0) + ) + (i32.store offset=24 + (get_local $9) + (i32.const 0) ) ) + (call $_abort) ) ) ) - (return - (i32.add - (get_local $12) - (i32.const 8) - ) + ) + (return + (i32.add + (get_local $12) + (i32.const 8) ) ) ) ) ) - (loop $while-in70 - (block $while-out69 - (if - (i32.le_u - (tee_local $2 - (i32.load - (get_local $4) - ) + ) + (loop $while-in70 + (block $while-out69 + (if + (i32.le_u + (tee_local $2 + (i32.load + (get_local $4) ) - (get_local $5) ) - (br_if $while-out69 - (i32.gt_u - (tee_local $2 - (i32.add - (get_local $2) - (i32.load offset=4 - (get_local $4) - ) + (get_local $5) + ) + (br_if $while-out69 + (i32.gt_u + (tee_local $2 + (i32.add + (get_local $2) + (i32.load offset=4 + (get_local $4) ) ) - (get_local $5) ) + (get_local $5) ) ) - (set_local $4 - (i32.load offset=8 - (get_local $4) - ) + ) + (set_local $4 + (i32.load offset=8 + (get_local $4) ) - (br $while-in70) ) + (br $while-in70) ) - (set_local $11 - (i32.add - (tee_local $4 - (i32.add - (get_local $2) - (i32.const -47) - ) + ) + (set_local $11 + (i32.add + (tee_local $4 + (i32.add + (get_local $2) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $8 - (i32.add - (tee_local $10 - (select - (get_local $5) - (tee_local $4 - (i32.add - (get_local $4) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $11) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $8 + (i32.add + (tee_local $10 + (select + (get_local $5) + (tee_local $4 + (i32.add + (get_local $4) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $11) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $11) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $4) - (tee_local $11 - (i32.add - (get_local $5) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $4) + (tee_local $11 + (i32.add + (get_local $5) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 200) - (tee_local $6 - (i32.add - (get_local $1) - (tee_local $4 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $6 + (i32.add + (get_local $1) + (tee_local $4 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $4 - (i32.sub - (i32.add - (get_local $3) - (i32.const -40) - ) - (get_local $4) - ) - ) - ) - (i32.store offset=4 - (get_local $6) - (i32.or - (get_local $4) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $6) - (get_local $4) - ) - (i32.const 40) - ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) - ) - (i32.store - (tee_local $4 + ) + (i32.store + (i32.const 188) + (tee_local $4 + (i32.sub (i32.add - (get_local $10) - (i32.const 4) + (get_local $3) + (i32.const -40) ) + (get_local $4) ) - (i32.const 27) ) - (i32.store - (get_local $8) - (i32.load - (i32.const 624) - ) + ) + (i32.store offset=4 + (get_local $6) + (i32.or + (get_local $4) + (i32.const 1) ) - (i32.store offset=4 - (get_local $8) - (i32.load - (i32.const 628) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $6) + (get_local $4) ) - (i32.store offset=8 - (get_local $8) - (i32.load - (i32.const 632) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (i32.store offset=12 - (get_local $8) - (i32.load - (i32.const 636) + ) + (i32.store + (tee_local $4 + (i32.add + (get_local $10) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $8) + (i32.load (i32.const 624) - (get_local $1) ) - (i32.store + ) + (i32.store offset=4 + (get_local $8) + (i32.load (i32.const 628) - (get_local $3) ) - (i32.store + ) + (i32.store offset=8 + (get_local $8) + (i32.load + (i32.const 632) + ) + ) + (i32.store offset=12 + (get_local $8) + (i32.load (i32.const 636) - (i32.const 0) ) + ) + (i32.store + (i32.const 624) + (get_local $1) + ) + (i32.store + (i32.const 628) + (get_local $3) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 632) + (get_local $8) + ) + (set_local $1 + (i32.add + (get_local $10) + (i32.const 24) + ) + ) + (loop $while-in72 (i32.store - (i32.const 632) - (get_local $8) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $1 - (i32.add - (get_local $10) - (i32.const 24) + (br_if $while-in72 + (i32.lt_u + (i32.add + (get_local $1) + (i32.const 4) + ) + (get_local $2) ) ) - (loop $while-in72 + ) + (if + (i32.ne + (get_local $10) + (get_local $5) + ) + (block (i32.store - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 4) + (get_local $4) + (i32.and + (i32.load + (get_local $4) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $while-in72 - (i32.lt_u - (i32.add - (get_local $1) - (i32.const 4) + (i32.store offset=4 + (get_local $5) + (i32.or + (tee_local $6 + (i32.sub + (get_local $10) + (get_local $5) + ) ) - (get_local $2) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $10) - (get_local $5) + (get_local $6) ) - (block - (i32.store - (get_local $4) - (i32.and - (i32.load - (get_local $4) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $5) - (i32.or - (tee_local $6 - (i32.sub - (get_local $10) - (get_local $5) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $10) + (set_local $1 + (i32.shr_u (get_local $6) + (i32.const 3) ) - (set_local $1 - (i32.shr_u - (get_local $6) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $6) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $6) - (i32.const 256) + (block + (set_local $2 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $2 - (i32.add + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) + ) + ) + (tee_local $1 (i32.shl + (i32.const 1) (get_local $1) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 176) - ) - ) + (i32.lt_u (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $1) - ) - ) - ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $3 - (i32.add - (get_local $2) - (i32.const 8) - ) + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $17 - (get_local $3) - ) - (set_local $7 - (get_local $1) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $1) - ) - ) (set_local $17 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $3) ) (set_local $7 - (get_local $2) + (get_local $1) ) ) ) - (i32.store - (get_local $17) - (get_local $5) - ) - (i32.store offset=12 - (get_local $7) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $7) - ) - (i32.store offset=12 - (get_local $5) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $1) + ) + ) + (set_local $17 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $7 + (get_local $2) + ) ) - (br $do-once40) ) + (i32.store + (get_local $17) + (get_local $5) + ) + (i32.store offset=12 + (get_local $7) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $7) + ) + (i32.store offset=12 + (get_local $5) + (get_local $2) + ) + (br $do-once40) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $4 + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $4 + (if (result i32) + (tee_local $1 + (i32.shr_u + (get_local $6) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $1 - (i32.shr_u - (get_local $6) - (i32.const 8) - ) + (i32.gt_u + (get_local $6) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $6) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $6) - (i32.add - (tee_local $1 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $6) + (i32.add + (tee_local $1 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $1 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $1) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $1) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $1 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $1) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $1) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $2) ) - (tee_local $1 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $3) - (get_local $1) - ) + (get_local $2) + ) + (tee_local $1 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $3) + (get_local $1) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $3) - (get_local $1) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $3) + (get_local $1) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $1) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $1) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $5) - (get_local $4) - ) - (i32.store offset=20 - (get_local $5) - (i32.const 0) - ) - (i32.store - (get_local $11) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $3 - (i32.load - (i32.const 180) - ) - ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $4) - ) + ) + (i32.store offset=28 + (get_local $5) + (get_local $4) + ) + (i32.store offset=20 + (get_local $5) + (i32.const 0) + ) + (i32.store + (get_local $11) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $3 + (i32.load + (i32.const 180) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $3) - (get_local $1) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $4) ) ) - (i32.store - (get_local $2) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $2) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $5) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $3) + (get_local $1) ) - (br $do-once40) ) + (i32.store + (get_local $2) + (get_local $5) + ) + (i32.store offset=24 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $5) + ) + (br $do-once40) ) - (set_local $4 - (i32.shl - (get_local $6) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $4) - (i32.const 1) - ) - ) - (i32.eq + ) + (set_local $4 + (i32.shl + (get_local $6) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $4) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $4) + (i32.const 31) + ) ) ) - (set_local $1 - (i32.load - (get_local $2) - ) + ) + (set_local $1 + (i32.load + (get_local $2) ) - (block $__rjto$9 - (block $__rjti$9 - (loop $while-in74 - (br_if $__rjti$9 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $1) - ) - (i32.const -8) + ) + (block $__rjto$9 + (block $__rjti$9 + (loop $while-in74 + (br_if $__rjti$9 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $1) ) - (get_local $6) + (i32.const -8) ) + (get_local $6) ) - (set_local $2 - (i32.shl - (get_local $4) - (i32.const 1) - ) + ) + (set_local $2 + (i32.shl + (get_local $4) + (i32.const 1) ) - (if - (tee_local $3 - (i32.load - (tee_local $4 + ) + (if + (tee_local $3 + (i32.load + (tee_local $4 + (i32.add (i32.add - (i32.add - (get_local $1) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $4) - (i32.const 31) - ) - (i32.const 2) + (get_local $1) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $4) + (i32.const 31) ) + (i32.const 2) ) ) ) ) - (block - (set_local $4 - (get_local $2) - ) - (set_local $1 - (get_local $3) - ) - (br $while-in74) - ) - ) - ) - (if - (i32.lt_u - (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) (block - (i32.store - (get_local $4) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $1) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) + (set_local $4 + (get_local $2) ) - (i32.store offset=8 - (get_local $5) - (get_local $5) + (set_local $1 + (get_local $3) ) - (br $do-once40) + (br $while-in74) ) ) - (br $__rjto$9) ) (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $1) - (get_local $3) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store offset=12 - (get_local $4) - (get_local $5) - ) (i32.store - (get_local $2) + (get_local $4) (get_local $5) ) - (i32.store offset=8 + (i32.store offset=24 (get_local $5) - (get_local $4) + (get_local $1) ) (i32.store offset=12 (get_local $5) - (get_local $1) + (get_local $5) ) - (i32.store offset=24 + (i32.store offset=8 + (get_local $5) (get_local $5) - (i32.const 0) ) + (br $do-once40) + ) + ) + (br $__rjto$9) + ) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $2 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + ) + ) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (i32.ge_u + (get_local $1) + (get_local $3) + ) + ) + (block + (i32.store offset=12 + (get_local $4) + (get_local $5) + ) + (i32.store + (get_local $2) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $4) + ) + (i32.store offset=12 + (get_local $5) + (get_local $1) + ) + (i32.store offset=24 + (get_local $5) + (i32.const 0) ) - (call $_abort) ) + (call $_abort) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $2 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $2 + (i32.load + (i32.const 192) ) ) - (i32.lt_u - (get_local $1) - (get_local $2) - ) ) - (i32.store - (i32.const 192) + (i32.lt_u (get_local $1) + (get_local $2) ) ) (i32.store - (i32.const 624) + (i32.const 192) (get_local $1) ) - (i32.store - (i32.const 628) - (get_local $3) - ) - (i32.store - (i32.const 636) - (i32.const 0) + ) + (i32.store + (i32.const 624) + (get_local $1) + ) + (i32.store + (i32.const 628) + (get_local $3) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 212) + (i32.load + (i32.const 648) ) - (i32.store - (i32.const 212) - (i32.load - (i32.const 648) + ) + (i32.store + (i32.const 208) + (i32.const -1) + ) + (set_local $2 + (i32.const 0) + ) + (loop $while-in43 + (i32.store offset=12 + (tee_local $4 + (i32.add + (i32.shl + (get_local $2) + (i32.const 3) + ) + (i32.const 216) + ) ) + (get_local $4) ) - (i32.store - (i32.const 208) - (i32.const -1) - ) - (set_local $2 - (i32.const 0) + (i32.store offset=8 + (get_local $4) + (get_local $4) ) - (loop $while-in43 - (i32.store offset=12 - (tee_local $4 + (br_if $while-in43 + (i32.ne + (tee_local $2 (i32.add - (i32.shl - (get_local $2) - (i32.const 3) - ) - (i32.const 216) - ) - ) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - (br_if $while-in43 - (i32.ne - (tee_local $2 - (i32.add - (get_local $2) - (i32.const 1) - ) + (get_local $2) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 200) - (tee_local $2 - (i32.add - (get_local $1) - (tee_local $1 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $2 + (i32.add + (get_local $1) + (tee_local $1 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $1 - (i32.sub - (i32.add - (get_local $3) - (i32.const -40) - ) - (get_local $1) + ) + (i32.store + (i32.const 188) + (tee_local $1 + (i32.sub + (i32.add + (get_local $3) + (i32.const -40) ) - ) - ) - (i32.store offset=4 - (get_local $2) - (i32.or (get_local $1) - (i32.const 1) ) ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 40) + ) + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $1) + (i32.const 1) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $2) + (get_local $1) + ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) ) ) @@ -13113,597 +13038,585 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $7) - (i32.const 1) + (if + (i32.and + (get_local $7) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 + (set_local $3 + (get_local $0) + ) + ) + (block $do-once + (set_local $7 + (i32.load (get_local $1) ) - (set_local $3 - (get_local $0) + ) + (if + (i32.eqz + (get_local $5) ) + (return) ) - (block - (set_local $7 - (i32.load - (get_local $1) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (get_local $7) + ) ) + (get_local $11) ) - (if - (i32.eqz - (get_local $5) + (call $_abort) + ) + (set_local $0 + (i32.add + (get_local $7) + (get_local $0) + ) + ) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 196) ) - (return) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub + (block + (if + (i32.ne + (i32.and + (tee_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $8) + (i32.const 4) + ) + ) + ) + ) + (i32.const 3) + ) + (i32.const 3) + ) + (block + (set_local $2 (get_local $1) - (get_local $7) ) + (set_local $3 + (get_local $0) + ) + (br $do-once) ) - (get_local $11) ) - (call $_abort) - ) - (set_local $0 - (i32.add - (get_local $7) + (i32.store + (i32.const 184) (get_local $0) ) - ) - (if - (i32.eq + (i32.store + (get_local $2) + (i32.and + (get_local $3) + (i32.const -2) + ) + ) + (i32.store offset=4 (get_local $1) - (i32.load - (i32.const 196) + (i32.or + (get_local $0) + (i32.const 1) ) ) - (block - (if - (i32.ne - (i32.and - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $8) - (i32.const 4) - ) - ) - ) + (i32.store + (i32.add + (get_local $1) + (get_local $0) + ) + (get_local $0) + ) + (return) + ) + ) + (set_local $5 + (i32.shr_u + (get_local $7) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.const 256) + ) + (block + (set_local $6 + (i32.load offset=12 + (get_local $1) + ) + ) + (if + (i32.ne + (tee_local $2 + (i32.load offset=8 + (get_local $1) + ) + ) + (tee_local $3 + (i32.add + (i32.shl + (get_local $5) + (i32.const 3) ) - (i32.const 3) + (i32.const 216) ) - (i32.const 3) ) - (block - (set_local $2 - (get_local $1) + ) + (block + (if + (i32.lt_u + (get_local $2) + (get_local $11) ) - (set_local $3 - (get_local $0) + (call $_abort) + ) + (if + (i32.ne + (i32.load offset=12 + (get_local $2) + ) + (get_local $1) ) - (br $do-once) + (call $_abort) ) ) - (i32.store - (i32.const 184) - (get_local $0) - ) - (i32.store + ) + (if + (i32.eq + (get_local $6) (get_local $2) - (i32.and - (get_local $3) - (i32.const -2) - ) ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $0) - (i32.const 1) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $5) + ) + (i32.const -1) + ) + ) ) - ) - (i32.store - (i32.add + (set_local $2 (get_local $1) + ) + (set_local $3 (get_local $0) ) - (get_local $0) + (br $do-once) ) - (return) - ) - ) - (set_local $5 - (i32.shr_u - (get_local $7) - (i32.const 3) - ) - ) - (if - (i32.lt_u - (get_local $7) - (i32.const 256) ) - (block - (set_local $6 - (i32.load offset=12 - (get_local $1) + (if + (i32.eq + (get_local $6) + (get_local $3) + ) + (set_local $4 + (i32.add + (get_local $6) + (i32.const 8) ) ) - (if - (i32.ne - (tee_local $2 - (i32.load offset=8 - (get_local $1) - ) + (block + (if + (i32.lt_u + (get_local $6) + (get_local $11) ) - (tee_local $3 - (i32.add - (i32.shl - (get_local $5) - (i32.const 3) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 8) + ) ) - (i32.const 216) ) + (get_local $1) + ) + (set_local $4 + (get_local $3) ) + (call $_abort) ) - (block - (if - (i32.lt_u - (get_local $2) - (get_local $11) + ) + ) + (i32.store offset=12 + (get_local $2) + (get_local $6) + ) + (i32.store + (get_local $4) + (get_local $2) + ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) + (br $do-once) + ) + ) + (set_local $12 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $4 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) + ) + (block $do-once0 + (if + (i32.eqz + (tee_local $5 + (i32.load + (tee_local $4 + (i32.add + (tee_local $7 + (i32.add + (get_local $1) + (i32.const 16) + ) + ) + (i32.const 4) + ) ) - (call $_abort) ) - (if - (i32.ne - (i32.load offset=12 - (get_local $2) + ) + ) + (block + (br_if $do-once0 + (i32.eqz + (tee_local $5 + (i32.load + (get_local $7) ) - (get_local $1) ) - (call $_abort) ) ) + (set_local $4 + (get_local $7) + ) ) + ) + (loop $while-in (if - (i32.eq - (get_local $6) - (get_local $2) - ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $5) - ) - (i32.const -1) + (tee_local $7 + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 20) ) ) ) - (set_local $2 - (get_local $1) + ) + (block + (set_local $5 + (get_local $7) ) - (set_local $3 - (get_local $0) + (set_local $4 + (get_local $10) ) - (br $do-once) + (br $while-in) ) ) (if - (i32.eq - (get_local $6) - (get_local $3) - ) - (set_local $4 - (i32.add - (get_local $6) - (i32.const 8) + (tee_local $7 + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 16) + ) + ) ) ) (block - (if - (i32.lt_u - (get_local $6) - (get_local $11) - ) - (call $_abort) + (set_local $5 + (get_local $7) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) - ) - (get_local $1) - ) - (set_local $4 - (get_local $3) - ) - (call $_abort) + (set_local $4 + (get_local $10) ) + (br $while-in) ) ) - (i32.store offset=12 - (get_local $2) - (get_local $6) - ) - (i32.store + ) + (if + (i32.lt_u (get_local $4) - (get_local $2) - ) - (set_local $2 - (get_local $1) + (get_local $11) ) - (set_local $3 - (get_local $0) + (call $_abort) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $6 + (get_local $5) + ) ) - (br $do-once) - ) - ) - (set_local $12 - (i32.load offset=24 - (get_local $1) ) ) - (block $do-once0 + (block (if - (i32.eq - (tee_local $4 - (i32.load offset=12 + (i32.lt_u + (tee_local $10 + (i32.load offset=8 (get_local $1) ) ) + (get_local $11) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add + (get_local $10) + (i32.const 12) + ) + ) + ) (get_local $1) ) - (block - (if - (i32.eqz - (tee_local $5 - (i32.load - (tee_local $4 - (i32.add - (tee_local $7 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add + (get_local $4) + (i32.const 8) ) ) - (block - (br_if $do-once0 - (i32.eqz + ) + (get_local $1) + ) + (block + (i32.store + (get_local $7) + (get_local $4) + ) + (i32.store + (get_local $5) + (get_local $10) + ) + (set_local $6 + (get_local $4) + ) + ) + (call $_abort) + ) + ) + ) + (if + (get_local $12) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $4 + (i32.add + (i32.shl (tee_local $5 - (i32.load - (get_local $7) + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - ) - (set_local $4 - (get_local $7) + (i32.const 480) ) ) ) - (loop $while-in - (if - (tee_local $7 - (i32.load - (tee_local $10 - (i32.add - (get_local $5) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $5 - (get_local $7) - ) - (set_local $4 - (get_local $10) - ) - (br $while-in) - ) + ) + (block + (i32.store + (get_local $4) + (get_local $6) + ) + (if + (i32.eqz + (get_local $6) ) - (if - (tee_local $7 - (i32.load - (tee_local $10 - (i32.add + (block + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) (get_local $5) - (i32.const 16) ) + (i32.const -1) ) ) ) - (block - (set_local $5 - (get_local $7) - ) - (set_local $4 - (get_local $10) - ) - (br $while-in) - ) - ) - ) - (if - (i32.lt_u - (get_local $4) - (get_local $11) - ) - (call $_abort) - (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $2 + (get_local $1) ) - (set_local $6 - (get_local $5) + (set_local $3 + (get_local $0) ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $10 - (i32.load offset=8 - (get_local $1) - ) - ) - (get_local $11) - ) - (call $_abort) - ) - (if - (i32.ne + (get_local $12) (i32.load - (tee_local $7 - (i32.add - (get_local $10) - (i32.const 12) - ) - ) + (i32.const 192) ) - (get_local $1) ) (call $_abort) ) (if (i32.eq (i32.load - (tee_local $5 + (tee_local $4 (i32.add - (get_local $4) - (i32.const 8) + (get_local $12) + (i32.const 16) ) ) ) (get_local $1) ) - (block - (i32.store - (get_local $7) - (get_local $4) - ) - (i32.store - (get_local $5) - (get_local $10) - ) - (set_local $6 - (get_local $4) - ) - ) - (call $_abort) - ) - ) - ) - ) - (if - (get_local $12) - (block - (if - (i32.eq - (get_local $1) - (i32.load - (tee_local $4 - (i32.add - (i32.shl - (tee_local $5 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 480) - ) - ) - ) - ) - (block (i32.store (get_local $4) (get_local $6) ) - (if - (i32.eqz - (get_local $6) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $5) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) - (br $do-once) - ) + (i32.store offset=20 + (get_local $12) + (get_local $6) ) ) - (block - (if - (i32.lt_u - (get_local $12) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) + (if + (i32.eqz + (get_local $6) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $12) - (i32.const 16) - ) - ) - ) + (block + (set_local $2 (get_local $1) ) - (i32.store - (get_local $4) - (get_local $6) - ) - (i32.store offset=20 - (get_local $12) - (get_local $6) + (set_local $3 + (get_local $0) ) + (br $do-once) ) - (if - (i32.eqz - (get_local $6) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) - (br $do-once) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $6) + (tee_local $5 + (i32.load + (i32.const 192) ) ) ) - (if - (i32.lt_u - (get_local $6) - (tee_local $5 - (i32.load - (i32.const 192) + (call $_abort) + ) + (i32.store offset=24 + (get_local $6) + (get_local $12) + ) + (if + (tee_local $7 + (i32.load + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) ) ) ) - (call $_abort) - ) - (i32.store offset=24 - (get_local $6) - (get_local $12) ) (if - (tee_local $7 - (i32.load - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) + (i32.lt_u + (get_local $7) + (get_local $5) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=16 + (get_local $6) (get_local $7) - (get_local $5) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $6) - (get_local $7) - ) - (i32.store offset=24 - (get_local $7) - (get_local $6) - ) + (i32.store offset=24 + (get_local $7) + (get_local $6) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $4) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $4) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $6) (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) - ) - (block (set_local $2 (get_local $1) ) @@ -13712,16 +13625,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) + ) ) ) ) @@ -14013,168 +13934,166 @@ (get_local $8) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $8) - ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $8) ) - (get_local $8) ) - (block - (if - (i32.eqz - (tee_local $3 - (i32.load - (tee_local $0 - (i32.add - (tee_local $1 - (i32.add - (get_local $8) - (i32.const 16) - ) + (get_local $8) + ) + (block $do-once6 + (if + (i32.eqz + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (tee_local $1 + (i32.add + (get_local $8) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) ) - (block - (br_if $do-once6 - (i32.eqz - (tee_local $3 - (i32.load - (get_local $1) - ) + ) + (block + (br_if $do-once6 + (i32.eqz + (tee_local $3 + (i32.load + (get_local $1) ) ) ) - (set_local $0 - (get_local $1) - ) + ) + (set_local $0 + (get_local $1) ) ) - (loop $while-in9 - (if - (tee_local $1 - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 20) - ) + ) + (loop $while-in9 + (if + (tee_local $1 + (i32.load + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 20) ) ) ) - (block - (set_local $3 - (get_local $1) - ) - (set_local $0 - (get_local $4) - ) - (br $while-in9) - ) ) - (if - (tee_local $1 - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 16) - ) - ) - ) + (block + (set_local $3 + (get_local $1) ) - (block - (set_local $3 - (get_local $1) - ) - (set_local $0 - (get_local $4) - ) - (br $while-in9) + (set_local $0 + (get_local $4) ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $0) + (tee_local $1 (i32.load - (i32.const 192) + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 16) + ) + ) ) ) - (call $_abort) (block - (i32.store - (get_local $0) - (i32.const 0) + (set_local $3 + (get_local $1) ) - (set_local $9 - (get_local $3) + (set_local $0 + (get_local $4) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $4 - (i32.load offset=8 - (get_local $8) - ) - ) - (i32.load - (i32.const 192) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $9 + (get_local $3) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $4 + (i32.load offset=8 + (get_local $8) ) ) - (call $_abort) + (i32.load + (i32.const 192) + ) ) - (if - (i32.ne - (i32.load - (tee_local $1 - (i32.add - (get_local $4) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $1 + (i32.add + (get_local $4) + (i32.const 12) ) ) - (get_local $8) ) - (call $_abort) + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $1) - (get_local $0) - ) - (i32.store - (get_local $3) - (get_local $4) - ) - (set_local $9 - (get_local $0) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $1) + (get_local $0) + ) + (i32.store + (get_local $3) + (get_local $4) + ) + (set_local $9 + (get_local $0) ) - (call $_abort) ) + (call $_abort) ) ) ) @@ -14592,202 +14511,200 @@ (get_local $2) (i32.const 0) ) - (block $do-once12 - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) - ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $5) - ) + ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $5) ) ) - (block - (set_local $5 - (i32.shl - (get_local $3) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $5) - (i32.const 1) - ) - ) - (i32.eq + ) + (block $do-once12 + (set_local $5 + (i32.shl + (get_local $3) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $5) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $5) + (i32.const 31) + ) ) ) - (set_local $0 - (i32.load - (get_local $4) - ) + ) + (set_local $0 + (i32.load + (get_local $4) ) - (block $__rjto$1 - (block $__rjti$1 - (loop $while-in15 - (br_if $__rjti$1 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (block $__rjto$1 + (block $__rjti$1 + (loop $while-in15 + (br_if $__rjti$1 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) - (get_local $3) + (i32.const -8) ) + (get_local $3) ) - (set_local $4 - (i32.shl - (get_local $5) - (i32.const 1) - ) + ) + (set_local $4 + (i32.shl + (get_local $5) + (i32.const 1) ) - (if - (tee_local $1 - (i32.load - (tee_local $5 + ) + (if + (tee_local $1 + (i32.load + (tee_local $5 + (i32.add (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $5) - (i32.const 31) - ) - (i32.const 2) + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $5) + (i32.const 31) ) + (i32.const 2) ) ) ) ) - (block - (set_local $5 - (get_local $4) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in15) - ) - ) - ) - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) ) - (call $_abort) (block - (i32.store - (get_local $5) - (get_local $2) - ) - (i32.store offset=24 - (get_local $2) - (get_local $0) - ) - (i32.store offset=12 - (get_local $2) - (get_local $2) + (set_local $5 + (get_local $4) ) - (i32.store offset=8 - (get_local $2) - (get_local $2) + (set_local $0 + (get_local $1) ) - (br $do-once12) + (br $while-in15) ) ) - (br $__rjto$1) ) (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $3) + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store offset=12 - (get_local $4) - (get_local $2) - ) (i32.store - (get_local $1) + (get_local $5) (get_local $2) ) - (i32.store offset=8 + (i32.store offset=24 (get_local $2) - (get_local $4) + (get_local $0) ) (i32.store offset=12 (get_local $2) - (get_local $0) + (get_local $2) ) - (i32.store offset=24 + (i32.store offset=8 + (get_local $2) (get_local $2) - (i32.const 0) ) + (br $do-once12) ) - (call $_abort) ) + (br $__rjto$1) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $1) - (get_local $0) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $1 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + ) + ) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (i32.ge_u + (get_local $0) + (get_local $3) + ) ) + (block + (i32.store offset=12 + (get_local $4) + (get_local $2) + ) + (i32.store + (get_local $1) + (get_local $2) + ) + (i32.store offset=8 + (get_local $2) + (get_local $4) + ) + (i32.store offset=12 + (get_local $2) + (get_local $0) + ) + (i32.store offset=24 + (get_local $2) + (i32.const 0) + ) + ) + (call $_abort) ) - (i32.store - (get_local $4) - (get_local $2) - ) - (i32.store offset=24 - (get_local $2) - (get_local $4) - ) - (i32.store offset=12 - (get_local $2) - (get_local $2) - ) - (i32.store offset=8 - (get_local $2) - (get_local $2) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) ) ) + (i32.store + (get_local $4) + (get_local $2) + ) + (i32.store offset=24 + (get_local $2) + (get_local $4) + ) + (i32.store offset=12 + (get_local $2) + (get_local $2) + ) + (i32.store offset=8 + (get_local $2) + (get_local $2) + ) ) ) (i32.store diff --git a/test/emcc_hello_world.fromasm.clamp b/test/emcc_hello_world.fromasm.clamp index 68e86ca1a..e26fa19d8 100644 --- a/test/emcc_hello_world.fromasm.clamp +++ b/test/emcc_hello_world.fromasm.clamp @@ -545,10 +545,10 @@ (func $_fflush (; 32 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) (local $2 i32) - (block $do-once - (if - (get_local $0) - (block + (if + (get_local $0) + (set_local $0 + (block $do-once (result i32) (if (i32.le_s (i32.load offset=76 @@ -556,80 +556,75 @@ ) (i32.const -1) ) - (block - (set_local $0 - (call $___fflush_unlocked - (get_local $0) - ) + (br $do-once + (call $___fflush_unlocked + (get_local $0) ) - (br $do-once) ) ) - (set_local $0 - (call $___fflush_unlocked - (get_local $0) - ) + (call $___fflush_unlocked + (get_local $0) ) ) - (block - (set_local $0 - (if (result i32) + ) + (block + (set_local $0 + (if (result i32) + (i32.load + (i32.const 12) + ) + (call $_fflush (i32.load (i32.const 12) ) - (call $_fflush - (i32.load - (i32.const 12) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $___lock - (i32.const 44) + ) + (call $___lock + (i32.const 44) + ) + (if + (tee_local $1 + (i32.load + (i32.const 40) + ) ) - (if - (tee_local $1 - (i32.load - (i32.const 40) + (loop $while-in + (drop + (i32.load offset=76 + (get_local $1) ) ) - (loop $while-in - (drop - (i32.load offset=76 + (if + (i32.gt_u + (i32.load offset=20 + (get_local $1) + ) + (i32.load offset=28 (get_local $1) ) ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $1) - ) - (i32.load offset=28 + (set_local $0 + (i32.or + (call $___fflush_unlocked (get_local $1) ) - ) - (set_local $0 - (i32.or - (call $___fflush_unlocked - (get_local $1) - ) - (get_local $0) - ) + (get_local $0) ) ) - (br_if $while-in - (tee_local $1 - (i32.load offset=56 - (get_local $1) - ) + ) + (br_if $while-in + (tee_local $1 + (i32.load offset=56 + (get_local $1) ) ) ) ) - (call $___unlock - (i32.const 44) - ) + ) + (call $___unlock + (i32.const 44) ) ) ) @@ -1368,90 +1363,88 @@ ) ) (set_local $2 - (block $label$break$L10 (result i32) - (if (result i32) - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) + (if (result i32) + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) ) - (block (result i32) - (set_local $3 - (get_local $1) - ) - (loop $while-in - (drop - (br_if $label$break$L10 - (i32.const 0) - (i32.eqz - (get_local $3) - ) + (i32.const -1) + ) + (block $label$break$L10 (result i32) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (drop + (br_if $label$break$L10 + (i32.const 0) + (i32.eqz + (get_local $3) ) ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) + ) + (if + (i32.ne + (i32.load8_s + (i32.add + (get_local $0) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) ) ) - (i32.const 10) ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) + (i32.const 10) + ) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) ) - (br_if $label$break$L5 - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + ) + (br_if $label$break$L5 + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) - (get_local $3) ) + (get_local $3) ) - (set_local $4 - (i32.load - (get_local $5) - ) + ) + (set_local $4 + (i32.load + (get_local $5) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) - ) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) - (set_local $0 - (i32.add - (get_local $0) - (get_local $3) - ) + ) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) ) - (get_local $3) ) - (i32.const 0) + (get_local $3) ) + (i32.const 0) ) ) (drop @@ -1558,177 +1551,175 @@ ) ) (func $_wcrtomb (; 38 ;) (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32) - (block $do-once (result i32) - (if (result i32) - (get_local $0) - (block (result i32) - (if - (i32.lt_u + (if (result i32) + (get_local $0) + (block $do-once (result i32) + (if + (i32.lt_u + (get_local $1) + (i32.const 128) + ) + (block + (i32.store8 + (get_local $0) (get_local $1) - (i32.const 128) ) - (block - (i32.store8 - (get_local $0) - (get_local $1) - ) - (br $do-once - (i32.const 1) - ) + (br $do-once + (i32.const 1) ) ) - (if - (i32.lt_u - (get_local $1) - (i32.const 2048) - ) - (block - (i32.store8 - (get_local $0) - (i32.or - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 192) + ) + (if + (i32.lt_u + (get_local $1) + (i32.const 2048) + ) + (block + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 6) ) + (i32.const 192) ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (get_local $1) - (i32.const 63) - ) - (i32.const 128) + ) + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) ) - ) - (br $do-once - (i32.const 2) + (i32.const 128) ) ) + (br $do-once + (i32.const 2) + ) ) - (if - (i32.or - (i32.lt_u + ) + (if + (i32.or + (i32.lt_u + (get_local $1) + (i32.const 55296) + ) + (i32.eq + (i32.and (get_local $1) - (i32.const 55296) + (i32.const -8192) ) - (i32.eq - (i32.and + (i32.const 57344) + ) + ) + (block + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u (get_local $1) - (i32.const -8192) + (i32.const 12) ) - (i32.const 57344) + (i32.const 224) ) ) - (block - (i32.store8 - (get_local $0) - (i32.or + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and (i32.shr_u (get_local $1) - (i32.const 12) - ) - (i32.const 224) - ) - ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 63) + (i32.const 6) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.store8 offset=2 - (get_local $0) - (i32.or - (i32.and - (get_local $1) - (i32.const 63) - ) - (i32.const 128) + ) + (i32.store8 offset=2 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) ) + (i32.const 128) ) - (br $do-once - (i32.const 3) - ) + ) + (br $do-once + (i32.const 3) ) ) - (if (result i32) - (i32.lt_u - (i32.add - (get_local $1) - (i32.const -65536) + ) + (if (result i32) + (i32.lt_u + (i32.add + (get_local $1) + (i32.const -65536) + ) + (i32.const 1048576) + ) + (block (result i32) + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 18) + ) + (i32.const 240) ) - (i32.const 1048576) ) - (block (result i32) - (i32.store8 - (get_local $0) - (i32.or + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and (i32.shr_u (get_local $1) - (i32.const 18) - ) - (i32.const 240) - ) - ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 12) - ) - (i32.const 63) - ) - (i32.const 128) - ) - ) - (i32.store8 offset=2 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 63) + (i32.const 12) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.store8 offset=3 - (get_local $0) - (i32.or - (i32.and + ) + (i32.store8 offset=2 + (get_local $0) + (i32.or + (i32.and + (i32.shr_u (get_local $1) - (i32.const 63) + (i32.const 6) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.const 4) ) - (block (result i32) - (i32.store - (call $___errno_location) - (i32.const 84) + (i32.store8 offset=3 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) + ) + (i32.const 128) ) - (i32.const -1) ) + (i32.const 4) + ) + (block (result i32) + (i32.store + (call $___errno_location) + (i32.const 84) + ) + (i32.const -1) ) ) - (i32.const 1) ) + (i32.const 1) ) ) (func $_wctomb (; 39 ;) (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32) @@ -2596,570 +2587,564 @@ ) ) (set_local $1 - (block $label$break$L25 (result i32) - (if (result i32) - (i32.eq - (i32.and - (tee_local $11 - (i32.shr_s - (i32.shl - (get_local $6) - (i32.const 24) - ) + (if (result i32) + (i32.eq + (i32.and + (tee_local $11 + (i32.shr_s + (i32.shl + (get_local $6) (i32.const 24) ) + (i32.const 24) ) - (i32.const -32) ) - (i32.const 32) + (i32.const -32) ) - (block (result i32) - (set_local $1 - (get_local $6) - ) - (set_local $6 - (get_local $11) - ) - (set_local $11 - (i32.const 0) - ) - (loop $while-in4 - (if - (i32.eqz - (i32.and - (i32.shl - (i32.const 1) - (i32.add - (get_local $6) - (i32.const -32) - ) + (i32.const 32) + ) + (block $label$break$L25 (result i32) + (set_local $1 + (get_local $6) + ) + (set_local $6 + (get_local $11) + ) + (set_local $11 + (i32.const 0) + ) + (loop $while-in4 + (if + (i32.eqz + (i32.and + (i32.shl + (i32.const 1) + (i32.add + (get_local $6) + (i32.const -32) ) - (i32.const 75913) ) + (i32.const 75913) ) - (block - (set_local $6 - (get_local $1) - ) - (br $label$break$L25 - (get_local $11) - ) + ) + (block + (set_local $6 + (get_local $1) + ) + (br $label$break$L25 + (get_local $11) ) ) - (set_local $11 - (i32.or - (i32.shl - (i32.const 1) - (i32.add - (i32.shr_s - (i32.shl - (get_local $1) - (i32.const 24) - ) + ) + (set_local $11 + (i32.or + (i32.shl + (i32.const 1) + (i32.add + (i32.shr_s + (i32.shl + (get_local $1) (i32.const 24) ) - (i32.const -32) + (i32.const 24) ) + (i32.const -32) ) - (get_local $11) ) + (get_local $11) ) - (br_if $while-in4 - (i32.eq - (i32.and - (tee_local $6 - (tee_local $1 - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (br_if $while-in4 + (i32.eq + (i32.and + (tee_local $6 + (tee_local $1 + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) ) ) - (i32.const -32) ) - (i32.const 32) + (i32.const -32) ) + (i32.const 32) ) ) - (set_local $6 - (get_local $1) - ) - (get_local $11) ) - (i32.const 0) + (set_local $6 + (get_local $1) + ) + (get_local $11) ) + (i32.const 0) ) ) (set_local $1 - (block $do-once5 (result i32) - (if (result i32) - (i32.eq - (i32.and - (get_local $6) - (i32.const 255) - ) - (i32.const 42) + (if (result i32) + (i32.eq + (i32.and + (get_local $6) + (i32.const 255) ) - (block (result i32) - (set_local $10 - (block $__rjto$0 (result i32) - (block $__rjti$0 - (br_if $__rjti$0 - (i32.ge_u - (tee_local $11 - (i32.add - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const 42) + ) + (block $do-once5 (result i32) + (set_local $10 + (block $__rjto$0 (result i32) + (block $__rjti$0 + (br_if $__rjti$0 + (i32.ge_u + (tee_local $11 + (i32.add + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) + (i32.const 10) ) - (br_if $__rjti$0 - (i32.ne - (i32.load8_s offset=2 - (get_local $10) - ) - (i32.const 36) + ) + (br_if $__rjti$0 + (i32.ne + (i32.load8_s offset=2 + (get_local $10) ) + (i32.const 36) ) - (i32.store - (i32.add - (get_local $4) - (i32.shl - (get_local $11) - (i32.const 2) - ) + ) + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $11) + (i32.const 2) ) - (i32.const 10) ) - (drop - (i32.load offset=4 - (tee_local $6 - (i32.add - (get_local $3) - (i32.shl - (i32.add - (i32.load8_s - (get_local $6) - ) - (i32.const -48) + (i32.const 10) + ) + (drop + (i32.load offset=4 + (tee_local $6 + (i32.add + (get_local $3) + (i32.shl + (i32.add + (i32.load8_s + (get_local $6) ) - (i32.const 3) + (i32.const -48) ) + (i32.const 3) ) ) ) ) - (set_local $8 - (i32.const 1) - ) - (set_local $15 - (i32.load - (get_local $6) - ) - ) - (br $__rjto$0 - (i32.add - (get_local $10) - (i32.const 3) - ) - ) - ) - (if - (get_local $8) - (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) - ) ) - (if - (i32.eqz - (get_local $28) - ) - (block - (set_local $11 - (get_local $1) - ) - (set_local $10 - (get_local $6) - ) - (set_local $15 - (i32.const 0) - ) - (br $do-once5 - (i32.const 0) - ) - ) + (set_local $8 + (i32.const 1) ) (set_local $15 (i32.load - (tee_local $10 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) - ) - (i32.const -4) - ) - ) + (get_local $6) ) ) - (i32.store - (get_local $2) + (br $__rjto$0 (i32.add (get_local $10) - (i32.const 4) + (i32.const 3) ) ) - (set_local $8 - (i32.const 0) + ) + (if + (get_local $8) + (block + (set_local $17 + (i32.const -1) + ) + (br $label$break$L1) ) - (get_local $6) ) - ) - (set_local $11 - (if (result i32) - (i32.lt_s - (get_local $15) - (i32.const 0) + (if + (i32.eqz + (get_local $28) ) - (block (result i32) + (block + (set_local $11 + (get_local $1) + ) + (set_local $10 + (get_local $6) + ) (set_local $15 - (i32.sub - (i32.const 0) - (get_local $15) - ) + (i32.const 0) ) - (i32.or - (get_local $1) - (i32.const 8192) + (br $do-once5 + (i32.const 0) ) ) - (get_local $1) ) - ) - (get_local $8) - ) - (if (result i32) - (i32.lt_u - (tee_local $6 - (i32.add - (i32.shr_s - (i32.shl - (get_local $6) - (i32.const 24) + (set_local $15 + (i32.load + (tee_local $10 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 3) + ) + (i32.const -4) ) - (i32.const 24) ) - (i32.const -48) ) ) - (i32.const 10) + (i32.store + (get_local $2) + (i32.add + (get_local $10) + (i32.const 4) + ) + ) + (set_local $8 + (i32.const 0) + ) + (get_local $6) ) - (block (result i32) - (set_local $11 + ) + (set_local $11 + (if (result i32) + (i32.lt_s + (get_local $15) (i32.const 0) ) - (loop $while-in8 - (set_local $6 - (i32.add - (i32.mul - (get_local $11) - (i32.const 10) - ) + (block (result i32) + (set_local $15 + (i32.sub + (i32.const 0) + (get_local $15) + ) + ) + (i32.or + (get_local $1) + (i32.const 8192) + ) + ) + (get_local $1) + ) + ) + (get_local $8) + ) + (if (result i32) + (i32.lt_u + (tee_local $6 + (i32.add + (i32.shr_s + (i32.shl (get_local $6) + (i32.const 24) ) + (i32.const 24) ) - (if - (i32.lt_u - (tee_local $9 - (i32.add - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const -48) + ) + ) + (i32.const 10) + ) + (block (result i32) + (set_local $11 + (i32.const 0) + ) + (loop $while-in8 + (set_local $6 + (i32.add + (i32.mul + (get_local $11) + (i32.const 10) + ) + (get_local $6) + ) + ) + (if + (i32.lt_u + (tee_local $9 + (i32.add + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (block - (set_local $11 - (get_local $6) - ) - (set_local $6 - (get_local $9) - ) - (br $while-in8) - ) - ) - ) - (if (result i32) - (i32.lt_s - (get_local $6) - (i32.const 0) + (i32.const 10) ) (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) - ) - (block (result i32) (set_local $11 - (get_local $1) - ) - (set_local $15 (get_local $6) ) - (get_local $8) + (set_local $6 + (get_local $9) + ) + (br $while-in8) ) ) ) - (block (result i32) - (set_local $11 - (get_local $1) - ) - (set_local $15 + (if (result i32) + (i32.lt_s + (get_local $6) (i32.const 0) ) - (get_local $8) + (block + (set_local $17 + (i32.const -1) + ) + (br $label$break$L1) + ) + (block (result i32) + (set_local $11 + (get_local $1) + ) + (set_local $15 + (get_local $6) + ) + (get_local $8) + ) ) ) + (block (result i32) + (set_local $11 + (get_local $1) + ) + (set_local $15 + (i32.const 0) + ) + (get_local $8) + ) ) ) ) (set_local $6 - (block $label$break$L46 (result i32) - (if (result i32) - (i32.eq - (i32.load8_s - (get_local $10) - ) - (i32.const 46) + (if (result i32) + (i32.eq + (i32.load8_s + (get_local $10) ) - (block (result i32) - (if - (i32.ne - (tee_local $8 - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const 46) + ) + (block $label$break$L46 (result i32) + (if + (i32.ne + (tee_local $8 + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 1) ) ) ) - (i32.const 42) ) - (block - (set_local $6 - (if (result i32) - (i32.lt_u - (tee_local $9 - (i32.add - (get_local $8) - (i32.const -48) - ) + (i32.const 42) + ) + (block + (set_local $6 + (if (result i32) + (i32.lt_u + (tee_local $9 + (i32.add + (get_local $8) + (i32.const -48) ) - (i32.const 10) ) - (block (result i32) - (set_local $10 - (get_local $6) - ) - (set_local $8 - (i32.const 0) - ) - (get_local $9) + (i32.const 10) + ) + (block (result i32) + (set_local $10 + (get_local $6) ) - (block - (set_local $10 - (get_local $6) - ) - (br $label$break$L46 - (i32.const 0) - ) + (set_local $8 + (i32.const 0) + ) + (get_local $9) + ) + (block + (set_local $10 + (get_local $6) + ) + (br $label$break$L46 + (i32.const 0) ) ) ) - (loop $while-in11 - (drop - (br_if $label$break$L46 - (tee_local $6 - (i32.add - (i32.mul - (get_local $8) - (i32.const 10) - ) - (get_local $6) + ) + (loop $while-in11 + (drop + (br_if $label$break$L46 + (tee_local $6 + (i32.add + (i32.mul + (get_local $8) + (i32.const 10) ) + (get_local $6) ) - (i32.ge_u - (tee_local $9 - (i32.add - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (i32.ge_u + (tee_local $9 + (i32.add + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) + (i32.const 10) ) ) - (set_local $8 - (get_local $6) - ) - (set_local $6 - (get_local $9) - ) - (br $while-in11) ) + (set_local $8 + (get_local $6) + ) + (set_local $6 + (get_local $9) + ) + (br $while-in11) ) ) - (if - (i32.lt_u - (tee_local $8 - (i32.add - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 2) - ) + ) + (if + (i32.lt_u + (tee_local $8 + (i32.add + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 2) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (if - (i32.eq - (i32.load8_s offset=3 - (get_local $10) - ) - (i32.const 36) + (i32.const 10) + ) + (if + (i32.eq + (i32.load8_s offset=3 + (get_local $10) ) - (block - (i32.store - (i32.add - (get_local $4) - (i32.shl - (get_local $8) - (i32.const 2) - ) + (i32.const 36) + ) + (block + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $8) + (i32.const 2) ) - (i32.const 10) ) - (drop - (i32.load offset=4 - (tee_local $6 - (i32.add - (get_local $3) - (i32.shl - (i32.add - (i32.load8_s - (get_local $6) - ) - (i32.const -48) + (i32.const 10) + ) + (drop + (i32.load offset=4 + (tee_local $6 + (i32.add + (get_local $3) + (i32.shl + (i32.add + (i32.load8_s + (get_local $6) ) - (i32.const 3) + (i32.const -48) ) + (i32.const 3) ) ) ) ) - (set_local $10 - (i32.add - (get_local $10) - (i32.const 4) - ) + ) + (set_local $10 + (i32.add + (get_local $10) + (i32.const 4) ) - (br $label$break$L46 - (i32.load - (get_local $6) - ) + ) + (br $label$break$L46 + (i32.load + (get_local $6) ) ) ) ) - (if - (get_local $1) - (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) + ) + (if + (get_local $1) + (block + (set_local $17 + (i32.const -1) ) + (br $label$break$L1) ) - (if (result i32) - (get_local $28) - (block (result i32) - (set_local $8 - (i32.load - (tee_local $10 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) + ) + (if (result i32) + (get_local $28) + (block (result i32) + (set_local $8 + (i32.load + (tee_local $10 + (i32.and + (i32.add + (i32.load + (get_local $2) ) - (i32.const -4) + (i32.const 3) ) + (i32.const -4) ) ) ) - (i32.store - (get_local $2) - (i32.add - (get_local $10) - (i32.const 4) - ) - ) - (set_local $10 - (get_local $6) - ) - (get_local $8) ) - (block (result i32) - (set_local $10 - (get_local $6) + (i32.store + (get_local $2) + (i32.add + (get_local $10) + (i32.const 4) ) - (i32.const 0) ) + (set_local $10 + (get_local $6) + ) + (get_local $8) + ) + (block (result i32) + (set_local $10 + (get_local $6) + ) + (i32.const 0) ) ) - (i32.const -1) ) + (i32.const -1) ) ) (set_local $8 @@ -3956,2171 +3941,2099 @@ ) ) (set_local $7 - (block $do-once49 (result i32) - (if (result i32) - (i32.lt_u - (i32.and - (i32.load offset=4 - (get_global $tempDoublePtr) - ) - (i32.const 2146435072) + (if (result i32) + (i32.lt_u + (i32.and + (i32.load offset=4 + (get_global $tempDoublePtr) ) (i32.const 2146435072) ) - (block (result i32) - (if - (tee_local $5 - (f64.ne - (tee_local $23 - (f64.mul - (call $_frexp - (get_local $16) - (get_local $20) - ) - (f64.const 2) + (i32.const 2146435072) + ) + (block $do-once49 (result i32) + (if + (tee_local $5 + (f64.ne + (tee_local $23 + (f64.mul + (call $_frexp + (get_local $16) + (get_local $20) ) + (f64.const 2) ) - (f64.const 0) ) + (f64.const 0) ) - (i32.store - (get_local $20) - (i32.add - (i32.load - (get_local $20) - ) - (i32.const -1) + ) + (i32.store + (get_local $20) + (i32.add + (i32.load + (get_local $20) ) + (i32.const -1) ) ) - (if - (i32.eq - (tee_local $24 - (i32.or - (get_local $19) - (i32.const 32) - ) + ) + (if + (i32.eq + (tee_local $24 + (i32.or + (get_local $19) + (i32.const 32) ) - (i32.const 97) ) - (block - (set_local $9 - (select - (i32.add - (get_local $30) - (i32.const 9) - ) + (i32.const 97) + ) + (block + (set_local $9 + (select + (i32.add (get_local $30) - (tee_local $13 - (i32.and - (get_local $19) - (i32.const 32) - ) + (i32.const 9) + ) + (get_local $30) + (tee_local $13 + (i32.and + (get_local $19) + (i32.const 32) ) ) ) - (set_local $16 - (if (result f64) - (i32.or - (i32.gt_u - (get_local $6) - (i32.const 11) - ) - (i32.eqz - (tee_local $5 - (i32.sub - (i32.const 12) - (get_local $6) - ) + ) + (set_local $16 + (if (result f64) + (i32.or + (i32.gt_u + (get_local $6) + (i32.const 11) + ) + (i32.eqz + (tee_local $5 + (i32.sub + (i32.const 12) + (get_local $6) ) ) ) - (get_local $23) - (block (result f64) + ) + (get_local $23) + (block (result f64) + (set_local $16 + (f64.const 8) + ) + (loop $while-in54 (set_local $16 - (f64.const 8) - ) - (loop $while-in54 - (set_local $16 - (f64.mul - (get_local $16) - (f64.const 16) - ) + (f64.mul + (get_local $16) + (f64.const 16) ) - (br_if $while-in54 - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -1) - ) + ) + (br_if $while-in54 + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -1) ) ) ) - (if (result f64) - (i32.eq - (i32.load8_s - (get_local $9) - ) - (i32.const 45) + ) + (if (result f64) + (i32.eq + (i32.load8_s + (get_local $9) ) - (f64.neg - (f64.add - (get_local $16) - (f64.sub - (f64.neg - (get_local $23) - ) - (get_local $16) + (i32.const 45) + ) + (f64.neg + (f64.add + (get_local $16) + (f64.sub + (f64.neg + (get_local $23) ) - ) - ) - (f64.sub - (f64.add - (get_local $23) (get_local $16) ) + ) + ) + (f64.sub + (f64.add + (get_local $23) (get_local $16) ) + (get_local $16) ) ) ) ) - (if - (i32.eq - (tee_local $5 - (call $_fmt_u - (tee_local $5 - (select - (i32.sub - (i32.const 0) - (tee_local $7 - (i32.load - (get_local $20) - ) + ) + (if + (i32.eq + (tee_local $5 + (call $_fmt_u + (tee_local $5 + (select + (i32.sub + (i32.const 0) + (tee_local $7 + (i32.load + (get_local $20) ) ) + ) + (get_local $7) + (i32.lt_s (get_local $7) - (i32.lt_s - (get_local $7) - (i32.const 0) - ) + (i32.const 0) ) ) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $5) - (i32.const 0) - ) - (i32.const 31) + ) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $5) + (i32.const 0) ) (i32.const 31) ) - (get_local $33) + (i32.const 31) ) + (get_local $33) ) - (get_local $33) ) - (block - (i32.store8 - (get_local $42) - (i32.const 48) - ) - (set_local $5 - (get_local $42) - ) + (get_local $33) + ) + (block + (i32.store8 + (get_local $42) + (i32.const 48) + ) + (set_local $5 + (get_local $42) ) ) - (set_local $12 - (i32.or - (get_local $26) + ) + (set_local $12 + (i32.or + (get_local $26) + (i32.const 2) + ) + ) + (i32.store8 + (i32.add + (get_local $5) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_s + (get_local $7) + (i32.const 31) + ) (i32.const 2) ) + (i32.const 43) ) - (i32.store8 + ) + (i32.store8 + (tee_local $8 (i32.add (get_local $5) - (i32.const -1) + (i32.const -2) ) - (i32.add - (i32.and - (i32.shr_s - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - (i32.const 43) + ) + (i32.add + (get_local $19) + (i32.const 15) + ) + ) + (set_local $19 + (i32.lt_s + (get_local $6) + (i32.const 1) + ) + ) + (set_local $18 + (i32.eqz + (i32.and + (get_local $11) + (i32.const 8) ) ) + ) + (set_local $5 + (get_local $22) + ) + (loop $while-in56 (i32.store8 - (tee_local $8 - (i32.add - (get_local $5) - (i32.const -2) + (get_local $5) + (i32.or + (i32.load8_u + (i32.add + (tee_local $7 + (call $f64-to-int + (get_local $16) + ) + ) + (i32.const 4075) + ) ) - ) - (i32.add - (get_local $19) - (i32.const 15) - ) - ) - (set_local $19 - (i32.lt_s - (get_local $6) - (i32.const 1) + (get_local $13) ) ) - (set_local $18 - (i32.eqz - (i32.and - (get_local $11) - (i32.const 8) + (set_local $16 + (f64.mul + (f64.sub + (get_local $16) + (f64.convert_s/i32 + (get_local $7) + ) ) + (f64.const 16) ) ) (set_local $5 - (get_local $22) - ) - (loop $while-in56 - (i32.store8 - (get_local $5) - (i32.or - (i32.load8_u - (i32.add - (tee_local $7 - (call $f64-to-int - (get_local $16) - ) + (if (result i32) + (i32.eq + (i32.sub + (tee_local $7 + (i32.add + (get_local $5) + (i32.const 1) ) - (i32.const 4075) ) + (get_local $37) ) - (get_local $13) + (i32.const 1) ) - ) - (set_local $16 - (f64.mul - (f64.sub - (get_local $16) - (f64.convert_s/i32 - (get_local $7) + (if (result i32) + (i32.and + (get_local $18) + (i32.and + (get_local $19) + (f64.eq + (get_local $16) + (f64.const 0) + ) ) ) - (f64.const 16) - ) - ) - (set_local $5 - (block $do-once57 (result i32) - (if (result i32) - (i32.eq - (i32.sub - (tee_local $7 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (get_local $37) - ) - (i32.const 1) + (get_local $7) + (block (result i32) + (i32.store8 + (get_local $7) + (i32.const 46) ) - (block (result i32) - (drop - (br_if $do-once57 - (get_local $7) - (i32.and - (get_local $18) - (i32.and - (get_local $19) - (f64.eq - (get_local $16) - (f64.const 0) - ) - ) - ) - ) - ) - (i32.store8 - (get_local $7) - (i32.const 46) - ) - (i32.add - (get_local $5) - (i32.const 2) - ) + (i32.add + (get_local $5) + (i32.const 2) ) - (get_local $7) ) ) + (get_local $7) ) - (br_if $while-in56 - (f64.ne - (get_local $16) - (f64.const 0) - ) + ) + (br_if $while-in56 + (f64.ne + (get_local $16) + (f64.const 0) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $7 - (i32.add - (tee_local $6 - (select + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $7 + (i32.add + (tee_local $6 + (select + (i32.sub + (i32.add + (get_local $47) + (get_local $6) + ) + (get_local $8) + ) + (i32.add (i32.sub - (i32.add - (get_local $47) - (get_local $6) - ) + (get_local $45) (get_local $8) ) - (i32.add - (i32.sub - (get_local $45) - (get_local $8) - ) - (get_local $5) + (get_local $5) + ) + (i32.and + (i32.ne + (get_local $6) + (i32.const 0) ) - (i32.and - (i32.ne - (get_local $6) - (i32.const 0) - ) - (i32.lt_s - (i32.add - (get_local $46) - (get_local $5) - ) - (get_local $6) + (i32.lt_s + (i32.add + (get_local $46) + (get_local $5) ) + (get_local $6) ) ) ) - (get_local $12) ) + (get_local $12) ) - (get_local $11) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $9) - (get_local $12) + (get_local $11) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 65536) + (drop + (call $___fwritex + (get_local $9) + (get_local $12) + (get_local $0) ) ) - (set_local $5 - (i32.sub - (get_local $5) - (get_local $37) - ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 65536) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $22) - (get_local $5) + ) + (set_local $5 + (i32.sub + (get_local $5) + (get_local $37) + ) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.sub - (get_local $6) - (i32.add - (get_local $5) - (tee_local $5 - (i32.sub - (get_local $27) - (get_local $8) - ) - ) - ) + (drop + (call $___fwritex + (get_local $22) + (get_local $5) + (get_local $0) ) - (i32.const 0) - (i32.const 0) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (i32.sub + (get_local $6) + (i32.add + (get_local $5) + (tee_local $5 + (i32.sub + (get_local $27) + (get_local $8) ) - (i32.const 32) ) ) - (drop - (call $___fwritex - (get_local $8) - (get_local $5) + ) + (i32.const 0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 8192) + (drop + (call $___fwritex + (get_local $8) + (get_local $5) + (get_local $0) ) ) - (br $do-once49 - (select - (get_local $15) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (br $do-once49 + (select + (get_local $15) + (get_local $7) + (i32.lt_s (get_local $7) - (i32.lt_s - (get_local $7) - (get_local $15) - ) + (get_local $15) ) ) ) ) - (set_local $16 - (if (result f64) - (get_local $5) - (block (result f64) - (i32.store - (get_local $20) - (tee_local $5 - (i32.add - (i32.load - (get_local $20) - ) - (i32.const -28) + ) + (set_local $16 + (if (result f64) + (get_local $5) + (block (result f64) + (i32.store + (get_local $20) + (tee_local $5 + (i32.add + (i32.load + (get_local $20) ) + (i32.const -28) ) ) - (f64.mul - (get_local $23) - (f64.const 268435456) - ) ) - (block (result f64) - (set_local $5 - (i32.load - (get_local $20) - ) - ) + (f64.mul (get_local $23) + (f64.const 268435456) ) ) - ) - (set_local $7 - (tee_local $8 - (select - (get_local $48) - (get_local $49) - (i32.lt_s - (get_local $5) - (i32.const 0) + (block (result f64) + (set_local $5 + (i32.load + (get_local $20) ) ) + (get_local $23) ) ) - (loop $while-in60 - (i32.store - (get_local $7) - (tee_local $5 - (call $f64-to-uint - (get_local $16) - ) + ) + (set_local $7 + (tee_local $8 + (select + (get_local $48) + (get_local $49) + (i32.lt_s + (get_local $5) + (i32.const 0) ) ) - (set_local $7 - (i32.add - (get_local $7) - (i32.const 4) + ) + ) + (loop $while-in60 + (i32.store + (get_local $7) + (tee_local $5 + (call $f64-to-uint + (get_local $16) ) ) - (br_if $while-in60 - (f64.ne - (tee_local $16 - (f64.mul - (f64.sub - (get_local $16) - (f64.convert_u/i32 - (get_local $5) - ) + ) + (set_local $7 + (i32.add + (get_local $7) + (i32.const 4) + ) + ) + (br_if $while-in60 + (f64.ne + (tee_local $16 + (f64.mul + (f64.sub + (get_local $16) + (f64.convert_u/i32 + (get_local $5) ) - (f64.const 1e9) ) + (f64.const 1e9) ) - (f64.const 0) ) + (f64.const 0) ) ) - (if - (i32.gt_s - (tee_local $9 - (i32.load - (get_local $20) - ) + ) + (if + (i32.gt_s + (tee_local $9 + (i32.load + (get_local $20) ) - (i32.const 0) ) - (block - (set_local $5 - (get_local $8) - ) - (loop $while-in62 - (set_local $13 - (select - (i32.const 29) + (i32.const 0) + ) + (block + (set_local $5 + (get_local $8) + ) + (loop $while-in62 + (set_local $13 + (select + (i32.const 29) + (get_local $9) + (i32.gt_s (get_local $9) - (i32.gt_s - (get_local $9) - (i32.const 29) + (i32.const 29) + ) + ) + ) + (if + (i32.ge_u + (tee_local $9 + (i32.add + (get_local $7) + (i32.const -4) ) ) + (get_local $5) ) (block $do-once63 - (if - (i32.ge_u - (tee_local $9 - (i32.add - (get_local $7) - (i32.const -4) - ) - ) - (get_local $5) - ) - (block - (set_local $12 - (i32.const 0) - ) - (loop $while-in66 - (i32.store - (get_local $9) - (call $___uremdi3 - (tee_local $12 - (call $_i64Add - (call $_bitshift64Shl - (i32.load - (get_local $9) - ) - (i32.const 0) - (get_local $13) - ) - (get_global $tempRet0) - (get_local $12) - (i32.const 0) + (set_local $12 + (i32.const 0) + ) + (loop $while-in66 + (i32.store + (get_local $9) + (call $___uremdi3 + (tee_local $12 + (call $_i64Add + (call $_bitshift64Shl + (i32.load + (get_local $9) ) + (i32.const 0) + (get_local $13) ) - (tee_local $18 - (get_global $tempRet0) - ) - (i32.const 1000000000) - ) - ) - (set_local $12 - (call $___udivdi3 + (get_global $tempRet0) (get_local $12) - (get_local $18) - (i32.const 1000000000) + (i32.const 0) ) ) - (br_if $while-in66 - (i32.ge_u - (tee_local $9 - (i32.add - (get_local $9) - (i32.const -4) - ) - ) - (get_local $5) - ) + (tee_local $18 + (get_global $tempRet0) ) + (i32.const 1000000000) ) - (br_if $do-once63 - (i32.eqz - (get_local $12) - ) + ) + (set_local $12 + (call $___udivdi3 + (get_local $12) + (get_local $18) + (i32.const 1000000000) ) - (i32.store - (tee_local $5 + ) + (br_if $while-in66 + (i32.ge_u + (tee_local $9 (i32.add - (get_local $5) + (get_local $9) (i32.const -4) ) ) - (get_local $12) + (get_local $5) + ) + ) + ) + (br_if $do-once63 + (i32.eqz + (get_local $12) + ) + ) + (i32.store + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) ) ) + (get_local $12) ) ) - (loop $while-in68 + ) + (loop $while-in68 + (if + (i32.gt_u + (get_local $7) + (get_local $5) + ) (if - (i32.gt_u - (get_local $7) - (get_local $5) - ) - (if - (i32.eqz - (i32.load - (tee_local $9 - (i32.add - (get_local $7) - (i32.const -4) - ) + (i32.eqz + (i32.load + (tee_local $9 + (i32.add + (get_local $7) + (i32.const -4) ) ) ) - (block - (set_local $7 - (get_local $9) - ) - (br $while-in68) + ) + (block + (set_local $7 + (get_local $9) ) + (br $while-in68) ) ) ) - (i32.store - (get_local $20) - (tee_local $9 - (i32.sub - (i32.load - (get_local $20) - ) - (get_local $13) + ) + (i32.store + (get_local $20) + (tee_local $9 + (i32.sub + (i32.load + (get_local $20) ) + (get_local $13) ) ) - (br_if $while-in62 - (i32.gt_s - (get_local $9) - (i32.const 0) - ) + ) + (br_if $while-in62 + (i32.gt_s + (get_local $9) + (i32.const 0) ) ) ) - (set_local $5 - (get_local $8) - ) ) - (set_local $18 - (select - (i32.const 6) - (get_local $6) - (i32.lt_s - (get_local $6) - (i32.const 0) - ) - ) + (set_local $5 + (get_local $8) ) - (if + ) + (set_local $18 + (select + (i32.const 6) + (get_local $6) (i32.lt_s - (get_local $9) + (get_local $6) (i32.const 0) ) - (block - (set_local $21 - (i32.add - (call $i32s-div - (i32.add - (get_local $18) - (i32.const 25) + ) + ) + (if + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + (block + (set_local $21 + (i32.add + (call $i32s-div + (i32.add + (get_local $18) + (i32.const 25) + ) + (i32.const 9) + ) + (i32.const 1) + ) + ) + (set_local $31 + (i32.eq + (get_local $24) + (i32.const 102) + ) + ) + (set_local $6 + (get_local $5) + ) + (set_local $5 + (get_local $7) + ) + (loop $while-in70 + (set_local $13 + (select + (i32.const 9) + (tee_local $7 + (i32.sub + (i32.const 0) + (get_local $9) ) + ) + (i32.gt_s + (get_local $7) (i32.const 9) ) - (i32.const 1) ) ) - (set_local $31 - (i32.eq - (get_local $24) - (i32.const 102) + (if + (i32.lt_u + (get_local $6) + (get_local $5) ) - ) - (set_local $6 - (get_local $5) - ) - (set_local $5 - (get_local $7) - ) - (loop $while-in70 - (set_local $13 - (select - (i32.const 9) - (tee_local $7 - (i32.sub - (i32.const 0) - (get_local $9) + (block $do-once71 + (set_local $12 + (i32.add + (i32.shl + (i32.const 1) + (get_local $13) ) - ) - (i32.gt_s - (get_local $7) - (i32.const 9) + (i32.const -1) ) ) - ) - (block $do-once71 - (if - (i32.lt_u - (get_local $6) - (get_local $5) + (set_local $38 + (i32.shr_u + (i32.const 1000000000) + (get_local $13) ) - (block - (set_local $12 - (i32.add - (i32.shl - (i32.const 1) - (get_local $13) - ) - (i32.const -1) - ) - ) - (set_local $38 + ) + (set_local $9 + (i32.const 0) + ) + (set_local $7 + (get_local $6) + ) + (loop $while-in74 + (i32.store + (get_local $7) + (i32.add (i32.shr_u - (i32.const 1000000000) - (get_local $13) - ) - ) - (set_local $9 - (i32.const 0) - ) - (set_local $7 - (get_local $6) - ) - (loop $while-in74 - (i32.store - (get_local $7) - (i32.add - (i32.shr_u - (tee_local $32 - (i32.load - (get_local $7) - ) - ) - (get_local $13) - ) - (get_local $9) - ) - ) - (set_local $9 - (i32.mul - (i32.and - (get_local $32) - (get_local $12) + (tee_local $32 + (i32.load + (get_local $7) ) - (get_local $38) ) + (get_local $13) ) - (br_if $while-in74 - (i32.lt_u - (tee_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - (get_local $5) - ) + (get_local $9) + ) + ) + (set_local $9 + (i32.mul + (i32.and + (get_local $32) + (get_local $12) ) + (get_local $38) ) - (set_local $7 - (select - (get_local $6) + ) + (br_if $while-in74 + (i32.lt_u + (tee_local $7 (i32.add - (get_local $6) + (get_local $7) (i32.const 4) ) - (i32.load - (get_local $6) - ) - ) - ) - (br_if $do-once71 - (i32.eqz - (get_local $9) ) - ) - (i32.store (get_local $5) - (get_local $9) - ) - (set_local $5 - (i32.add - (get_local $5) - (i32.const 4) - ) ) ) - (set_local $7 - (select + ) + (set_local $7 + (select + (get_local $6) + (i32.add + (get_local $6) + (i32.const 4) + ) + (i32.load (get_local $6) - (i32.add - (get_local $6) - (i32.const 4) - ) - (i32.load - (get_local $6) - ) ) ) ) - ) - (set_local $12 - (select - (i32.add - (tee_local $6 - (select - (get_local $8) - (get_local $7) - (get_local $31) - ) - ) - (i32.shl - (get_local $21) - (i32.const 2) - ) + (br_if $do-once71 + (i32.eqz + (get_local $9) ) + ) + (i32.store (get_local $5) - (i32.gt_s - (i32.shr_s - (i32.sub - (get_local $5) - (get_local $6) - ) - (i32.const 2) - ) - (get_local $21) + (get_local $9) + ) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 4) ) ) ) - (i32.store - (get_local $20) - (tee_local $9 + (set_local $7 + (select + (get_local $6) (i32.add - (i32.load - (get_local $20) - ) - (get_local $13) + (get_local $6) + (i32.const 4) + ) + (i32.load + (get_local $6) ) ) ) - (set_local $5 - (if (result i32) - (i32.lt_s - (get_local $9) - (i32.const 0) - ) - (block - (set_local $6 + ) + (set_local $12 + (select + (i32.add + (tee_local $6 + (select + (get_local $8) (get_local $7) + (get_local $31) ) - (set_local $5 - (get_local $12) - ) - (br $while-in70) ) - (block (result i32) - (set_local $9 - (get_local $12) - ) - (get_local $7) + (i32.shl + (get_local $21) + (i32.const 2) ) ) - ) - ) - ) - (set_local $9 - (get_local $7) - ) - ) - (set_local $21 - (get_local $8) - ) - (block $do-once75 - (if - (i32.lt_u - (get_local $5) - (get_local $9) - ) - (block - (set_local $7 - (i32.mul + (get_local $5) + (i32.gt_s (i32.shr_s (i32.sub - (get_local $21) (get_local $5) + (get_local $6) ) (i32.const 2) ) - (i32.const 9) + (get_local $21) ) ) - (br_if $do-once75 - (i32.lt_u - (tee_local $12 - (i32.load - (get_local $5) - ) + ) + (i32.store + (get_local $20) + (tee_local $9 + (i32.add + (i32.load + (get_local $20) ) - (i32.const 10) + (get_local $13) ) ) - (set_local $6 - (i32.const 10) - ) - (loop $while-in78 - (set_local $7 - (i32.add + ) + (set_local $5 + (if (result i32) + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + (block + (set_local $6 (get_local $7) - (i32.const 1) ) + (set_local $5 + (get_local $12) + ) + (br $while-in70) ) - (br_if $while-in78 - (i32.ge_u + (block (result i32) + (set_local $9 (get_local $12) - (tee_local $6 - (i32.mul - (get_local $6) - (i32.const 10) - ) - ) ) + (get_local $7) + ) + ) + ) + ) + ) + (set_local $9 + (get_local $7) + ) + ) + (set_local $21 + (get_local $8) + ) + (if + (i32.lt_u + (get_local $5) + (get_local $9) + ) + (block $do-once75 + (set_local $7 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $21) + (get_local $5) + ) + (i32.const 2) + ) + (i32.const 9) + ) + ) + (br_if $do-once75 + (i32.lt_u + (tee_local $12 + (i32.load + (get_local $5) ) ) + (i32.const 10) ) + ) + (set_local $6 + (i32.const 10) + ) + (loop $while-in78 (set_local $7 - (i32.const 0) + (i32.add + (get_local $7) + (i32.const 1) + ) + ) + (br_if $while-in78 + (i32.ge_u + (get_local $12) + (tee_local $6 + (i32.mul + (get_local $6) + (i32.const 10) + ) + ) + ) ) ) ) - (set_local $5 - (if (result i32) - (i32.lt_s - (tee_local $6 - (i32.add - (i32.sub - (get_local $18) - (select - (get_local $7) - (i32.const 0) - (i32.ne - (get_local $24) - (i32.const 102) - ) + (set_local $7 + (i32.const 0) + ) + ) + (set_local $5 + (if (result i32) + (i32.lt_s + (tee_local $6 + (i32.add + (i32.sub + (get_local $18) + (select + (get_local $7) + (i32.const 0) + (i32.ne + (get_local $24) + (i32.const 102) ) ) - (i32.shr_s - (i32.shl - (i32.and - (tee_local $31 - (i32.ne - (get_local $18) - (i32.const 0) - ) + ) + (i32.shr_s + (i32.shl + (i32.and + (tee_local $31 + (i32.ne + (get_local $18) + (i32.const 0) ) - (tee_local $38 - (i32.eq - (get_local $24) - (i32.const 103) - ) + ) + (tee_local $38 + (i32.eq + (get_local $24) + (i32.const 103) ) ) - (i32.const 31) ) (i32.const 31) ) + (i32.const 31) ) ) - (i32.add - (i32.mul - (i32.shr_s - (i32.sub - (get_local $9) - (get_local $21) - ) - (i32.const 2) + ) + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $9) + (get_local $21) ) - (i32.const 9) + (i32.const 2) ) - (i32.const -9) + (i32.const 9) ) + (i32.const -9) ) - (block (result i32) - (set_local $13 - (call $i32s-div - (tee_local $6 - (i32.add - (get_local $6) - (i32.const 9216) - ) + ) + (block (result i32) + (set_local $13 + (call $i32s-div + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 9216) ) - (i32.const 9) ) + (i32.const 9) ) - (if - (i32.lt_s - (tee_local $6 - (i32.add - (i32.rem_s - (get_local $6) - (i32.const 9) - ) - (i32.const 1) + ) + (if + (i32.lt_s + (tee_local $6 + (i32.add + (i32.rem_s + (get_local $6) + (i32.const 9) ) + (i32.const 1) ) - (i32.const 9) ) - (block + (i32.const 9) + ) + (block + (set_local $12 + (i32.const 10) + ) + (loop $while-in80 (set_local $12 - (i32.const 10) - ) - (loop $while-in80 - (set_local $12 - (i32.mul - (get_local $12) - (i32.const 10) - ) + (i32.mul + (get_local $12) + (i32.const 10) ) - (br_if $while-in80 - (i32.ne - (tee_local $6 - (i32.add - (get_local $6) - (i32.const 1) - ) + ) + (br_if $while-in80 + (i32.ne + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 1) ) - (i32.const 9) ) + (i32.const 9) ) ) ) - (set_local $12 - (i32.const 10) - ) ) - (set_local $13 - (call $i32u-rem - (tee_local $24 - (i32.load - (tee_local $6 + (set_local $12 + (i32.const 10) + ) + ) + (set_local $13 + (call $i32u-rem + (tee_local $24 + (i32.load + (tee_local $6 + (i32.add (i32.add - (i32.add - (get_local $8) - (i32.shl - (get_local $13) - (i32.const 2) - ) + (get_local $8) + (i32.shl + (get_local $13) + (i32.const 2) ) - (i32.const -4092) ) + (i32.const -4092) ) ) ) - (get_local $12) ) + (get_local $12) ) - (block $do-once81 - (if - (i32.eqz - (i32.and - (tee_local $32 - (i32.eq - (i32.add - (get_local $6) - (i32.const 4) - ) - (get_local $9) - ) - ) - (i32.eqz - (get_local $13) + ) + (if + (i32.eqz + (i32.and + (tee_local $32 + (i32.eq + (i32.add + (get_local $6) + (i32.const 4) ) + (get_local $9) ) ) - (block - (set_local $50 - (call $i32u-div - (get_local $24) - (get_local $12) + (i32.eqz + (get_local $13) + ) + ) + ) + (block $do-once81 + (set_local $50 + (call $i32u-div + (get_local $24) + (get_local $12) + ) + ) + (set_local $16 + (if (result f64) + (i32.lt_u + (get_local $13) + (tee_local $51 + (call $i32s-div + (get_local $12) + (i32.const 2) + ) ) ) - (set_local $16 - (if (result f64) - (i32.lt_u + (f64.const 0.5) + (select + (f64.const 1) + (f64.const 1.5) + (i32.and + (get_local $32) + (i32.eq (get_local $13) - (tee_local $51 - (call $i32s-div - (get_local $12) - (i32.const 2) - ) - ) - ) - (f64.const 0.5) - (select - (f64.const 1) - (f64.const 1.5) - (i32.and - (get_local $32) - (i32.eq - (get_local $13) - (get_local $51) - ) - ) + (get_local $51) ) ) ) - (set_local $23 - (select - (f64.const 9007199254740994) - (f64.const 9007199254740992) - (i32.and - (get_local $50) - (i32.const 1) - ) + ) + ) + (set_local $23 + (select + (f64.const 9007199254740994) + (f64.const 9007199254740992) + (i32.and + (get_local $50) + (i32.const 1) + ) + ) + ) + (if + (get_local $26) + (if + (i32.eq + (i32.load8_s + (get_local $30) ) + (i32.const 45) ) - (block $do-once83 - (if - (get_local $26) - (block - (br_if $do-once83 - (i32.ne - (i32.load8_s - (get_local $30) - ) - (i32.const 45) - ) - ) - (set_local $23 - (f64.neg - (get_local $23) - ) - ) - (set_local $16 - (f64.neg - (get_local $16) - ) - ) + (block + (set_local $23 + (f64.neg + (get_local $23) ) ) + (set_local $16 + (f64.neg + (get_local $16) + ) + ) + ) + ) + ) + (i32.store + (get_local $6) + (tee_local $13 + (i32.sub + (get_local $24) + (get_local $13) ) + ) + ) + (br_if $do-once81 + (f64.eq + (f64.add + (get_local $23) + (get_local $16) + ) + (get_local $23) + ) + ) + (i32.store + (get_local $6) + (tee_local $7 + (i32.add + (get_local $13) + (get_local $12) + ) + ) + ) + (if + (i32.gt_u + (get_local $7) + (i32.const 999999999) + ) + (loop $while-in86 (i32.store (get_local $6) - (tee_local $13 - (i32.sub - (get_local $24) - (get_local $13) + (i32.const 0) + ) + (if + (i32.lt_u + (tee_local $6 + (i32.add + (get_local $6) + (i32.const -4) + ) ) + (get_local $5) ) - ) - (br_if $do-once81 - (f64.eq - (f64.add - (get_local $23) - (get_local $16) + (i32.store + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) + ) ) - (get_local $23) + (i32.const 0) ) ) (i32.store (get_local $6) (tee_local $7 (i32.add - (get_local $13) - (get_local $12) + (i32.load + (get_local $6) + ) + (i32.const 1) ) ) ) - (if + (br_if $while-in86 (i32.gt_u (get_local $7) (i32.const 999999999) ) - (loop $while-in86 - (i32.store - (get_local $6) - (i32.const 0) - ) - (if - (i32.lt_u - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -4) - ) - ) - (get_local $5) - ) - (i32.store - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -4) - ) - ) - (i32.const 0) - ) - ) - (i32.store - (get_local $6) - (tee_local $7 - (i32.add - (i32.load - (get_local $6) - ) - (i32.const 1) - ) - ) - ) - (br_if $while-in86 - (i32.gt_u - (get_local $7) - (i32.const 999999999) - ) - ) - ) ) - (set_local $7 - (i32.mul - (i32.shr_s - (i32.sub - (get_local $21) - (get_local $5) - ) - (i32.const 2) - ) - (i32.const 9) + ) + ) + (set_local $7 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $21) + (get_local $5) ) + (i32.const 2) ) - (br_if $do-once81 - (i32.lt_u - (tee_local $13 - (i32.load - (get_local $5) - ) - ) - (i32.const 10) + (i32.const 9) + ) + ) + (br_if $do-once81 + (i32.lt_u + (tee_local $13 + (i32.load + (get_local $5) ) ) - (set_local $12 - (i32.const 10) + (i32.const 10) + ) + ) + (set_local $12 + (i32.const 10) + ) + (loop $while-in88 + (set_local $7 + (i32.add + (get_local $7) + (i32.const 1) ) - (loop $while-in88 - (set_local $7 - (i32.add - (get_local $7) - (i32.const 1) - ) - ) - (br_if $while-in88 - (i32.ge_u - (get_local $13) - (tee_local $12 - (i32.mul - (get_local $12) - (i32.const 10) - ) - ) + ) + (br_if $while-in88 + (i32.ge_u + (get_local $13) + (tee_local $12 + (i32.mul + (get_local $12) + (i32.const 10) ) ) ) ) ) ) - (set_local $12 - (get_local $5) - ) - (set_local $13 - (get_local $7) - ) - (select - (tee_local $5 - (i32.add - (get_local $6) - (i32.const 4) - ) - ) - (get_local $9) - (i32.gt_u - (get_local $9) - (get_local $5) + ) + (set_local $12 + (get_local $5) + ) + (set_local $13 + (get_local $7) + ) + (select + (tee_local $5 + (i32.add + (get_local $6) + (i32.const 4) ) ) - ) - (block (result i32) - (set_local $12 + (get_local $9) + (i32.gt_u + (get_local $9) (get_local $5) ) - (set_local $13 - (get_local $7) - ) - (get_local $9) ) ) - ) - (set_local $32 - (i32.sub - (i32.const 0) - (get_local $13) + (block (result i32) + (set_local $12 + (get_local $5) + ) + (set_local $13 + (get_local $7) + ) + (get_local $9) ) ) - (set_local $9 - (loop $while-in90 (result i32) - (block $while-out89 (result i32) - (if - (i32.le_u + ) + (set_local $32 + (i32.sub + (i32.const 0) + (get_local $13) + ) + ) + (set_local $9 + (loop $while-in90 (result i32) + (block $while-out89 (result i32) + (if + (i32.le_u + (get_local $5) + (get_local $12) + ) + (block + (set_local $24 + (i32.const 0) + ) + (br $while-out89 (get_local $5) - (get_local $12) ) - (block - (set_local $24 - (i32.const 0) - ) - (br $while-out89 + ) + ) + (if (result i32) + (i32.load + (tee_local $7 + (i32.add (get_local $5) + (i32.const -4) ) ) ) - (if (result i32) - (i32.load - (tee_local $7 - (i32.add - (get_local $5) - (i32.const -4) - ) - ) + (block (result i32) + (set_local $24 + (i32.const 1) ) - (block (result i32) - (set_local $24 - (i32.const 1) - ) - (get_local $5) - ) - (block - (set_local $5 - (get_local $7) - ) - (br $while-in90) + (get_local $5) + ) + (block + (set_local $5 + (get_local $7) ) + (br $while-in90) ) ) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $13 + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $13 + (i32.add (i32.add (i32.add (i32.add - (i32.add - (get_local $26) - (i32.const 1) - ) - (tee_local $5 + (get_local $26) + (i32.const 1) + ) + (tee_local $5 + (if (result i32) + (get_local $38) (block $do-once91 (result i32) - (if (result i32) - (get_local $38) - (block (result i32) - (set_local $7 - (if (result i32) - (i32.and - (i32.gt_s - (tee_local $5 - (i32.add - (i32.xor - (get_local $31) - (i32.const 1) - ) - (get_local $18) - ) + (set_local $7 + (if (result i32) + (i32.and + (i32.gt_s + (tee_local $5 + (i32.add + (i32.xor + (get_local $31) + (i32.const 1) ) - (get_local $13) - ) - (i32.gt_s - (get_local $13) - (i32.const -5) + (get_local $18) ) ) - (block (result i32) - (set_local $18 - (i32.sub - (i32.add - (get_local $5) - (i32.const -1) - ) - (get_local $13) - ) - ) + (get_local $13) + ) + (i32.gt_s + (get_local $13) + (i32.const -5) + ) + ) + (block (result i32) + (set_local $18 + (i32.sub (i32.add - (get_local $19) + (get_local $5) (i32.const -1) ) + (get_local $13) ) - (block (result i32) - (set_local $18 - (i32.add - (get_local $5) - (i32.const -1) - ) - ) - (i32.add - (get_local $19) - (i32.const -2) - ) + ) + (i32.add + (get_local $19) + (i32.const -1) + ) + ) + (block (result i32) + (set_local $18 + (i32.add + (get_local $5) + (i32.const -1) ) ) + (i32.add + (get_local $19) + (i32.const -2) + ) + ) + ) + ) + (if + (tee_local $5 + (i32.and + (get_local $11) + (i32.const 8) + ) + ) + (block + (set_local $21 + (get_local $5) + ) + (br $do-once91 + (get_local $18) ) + ) + ) + (if + (get_local $24) + (block $do-once93 (if - (tee_local $5 - (i32.and - (get_local $11) - (i32.const 8) + (i32.eqz + (tee_local $19 + (i32.load + (i32.add + (get_local $9) + (i32.const -4) + ) + ) ) ) (block - (set_local $21 - (get_local $5) - ) - (br $do-once91 - (get_local $18) + (set_local $5 + (i32.const 9) ) + (br $do-once93) ) ) - (block $do-once93 - (if - (get_local $24) + (set_local $5 + (if (result i32) + (call $i32u-rem + (get_local $19) + (i32.const 10) + ) (block - (if - (i32.eqz - (tee_local $19 - (i32.load - (i32.add - (get_local $9) - (i32.const -4) - ) - ) - ) - ) - (block - (set_local $5 - (i32.const 9) - ) - (br $do-once93) - ) - ) (set_local $5 - (if (result i32) - (call $i32u-rem - (get_local $19) - (i32.const 10) - ) - (block - (set_local $5 - (i32.const 0) - ) - (br $do-once93) - ) - (block (result i32) - (set_local $6 - (i32.const 10) - ) - (i32.const 0) - ) - ) - ) - (loop $while-in96 - (set_local $5 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (br_if $while-in96 - (i32.eqz - (call $i32u-rem - (get_local $19) - (tee_local $6 - (i32.mul - (get_local $6) - (i32.const 10) - ) - ) - ) - ) - ) + (i32.const 0) ) + (br $do-once93) ) - (set_local $5 - (i32.const 9) + (block (result i32) + (set_local $6 + (i32.const 10) + ) + (i32.const 0) ) ) ) - (set_local $6 - (i32.add - (i32.mul - (i32.shr_s - (i32.sub - (get_local $9) - (get_local $21) + (loop $while-in96 + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (br_if $while-in96 + (i32.eqz + (call $i32u-rem + (get_local $19) + (tee_local $6 + (i32.mul + (get_local $6) + (i32.const 10) + ) ) - (i32.const 2) ) - (i32.const 9) ) - (i32.const -9) ) ) - (if (result i32) - (i32.eq - (i32.or - (get_local $7) - (i32.const 32) + ) + (set_local $5 + (i32.const 9) + ) + ) + (set_local $6 + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $9) + (get_local $21) ) - (i32.const 102) + (i32.const 2) ) - (block (result i32) - (set_local $21 - (i32.const 0) - ) + (i32.const 9) + ) + (i32.const -9) + ) + ) + (if (result i32) + (i32.eq + (i32.or + (get_local $7) + (i32.const 32) + ) + (i32.const 102) + ) + (block (result i32) + (set_local $21 + (i32.const 0) + ) + (select + (get_local $18) + (tee_local $5 (select - (get_local $18) + (i32.const 0) (tee_local $5 - (select - (i32.const 0) - (tee_local $5 - (i32.sub - (get_local $6) - (get_local $5) - ) - ) - (i32.lt_s - (get_local $5) - (i32.const 0) - ) + (i32.sub + (get_local $6) + (get_local $5) ) ) (i32.lt_s - (get_local $18) (get_local $5) + (i32.const 0) ) ) ) - (block (result i32) - (set_local $21 - (i32.const 0) - ) + (i32.lt_s + (get_local $18) + (get_local $5) + ) + ) + ) + (block (result i32) + (set_local $21 + (i32.const 0) + ) + (select + (get_local $18) + (tee_local $5 (select - (get_local $18) + (i32.const 0) (tee_local $5 - (select - (i32.const 0) - (tee_local $5 - (i32.sub - (i32.add - (get_local $6) - (get_local $13) - ) - (get_local $5) - ) - ) - (i32.lt_s - (get_local $5) - (i32.const 0) + (i32.sub + (i32.add + (get_local $6) + (get_local $13) ) + (get_local $5) ) ) (i32.lt_s - (get_local $18) (get_local $5) + (i32.const 0) ) ) ) - ) - ) - (block (result i32) - (set_local $21 - (i32.and - (get_local $11) - (i32.const 8) + (i32.lt_s + (get_local $18) + (get_local $5) ) ) - (set_local $7 - (get_local $19) - ) - (get_local $18) ) ) ) - ) - ) - (i32.ne - (tee_local $31 - (i32.or - (get_local $5) - (get_local $21) + (block (result i32) + (set_local $21 + (i32.and + (get_local $11) + (i32.const 8) + ) + ) + (set_local $7 + (get_local $19) + ) + (get_local $18) ) ) - (i32.const 0) ) ) - (if (result i32) - (tee_local $18 - (i32.eq - (i32.or - (get_local $7) - (i32.const 32) - ) - (i32.const 102) + (i32.ne + (tee_local $31 + (i32.or + (get_local $5) + (get_local $21) ) ) - (block (result i32) - (set_local $19 - (i32.const 0) + (i32.const 0) + ) + ) + (if (result i32) + (tee_local $18 + (i32.eq + (i32.or + (get_local $7) + (i32.const 32) ) - (select + (i32.const 102) + ) + ) + (block (result i32) + (set_local $19 + (i32.const 0) + ) + (select + (get_local $13) + (i32.const 0) + (i32.gt_s (get_local $13) (i32.const 0) - (i32.gt_s - (get_local $13) - (i32.const 0) - ) ) ) - (block (result i32) - (if - (i32.lt_s - (i32.sub - (get_local $27) - (tee_local $6 - (call $_fmt_u - (tee_local $6 - (select - (get_local $32) + ) + (block (result i32) + (if + (i32.lt_s + (i32.sub + (get_local $27) + (tee_local $6 + (call $_fmt_u + (tee_local $6 + (select + (get_local $32) + (get_local $13) + (i32.lt_s (get_local $13) - (i32.lt_s - (get_local $13) - (i32.const 0) - ) + (i32.const 0) ) ) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $6) - (i32.const 0) - ) - (i32.const 31) + ) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $6) + (i32.const 0) ) (i32.const 31) ) - (get_local $33) + (i32.const 31) ) + (get_local $33) ) ) - (i32.const 2) ) - (loop $while-in98 - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in98 - (i32.lt_s - (i32.sub - (get_local $27) - (get_local $6) - ) - (i32.const 2) + (i32.const 2) + ) + (loop $while-in98 + (i32.store8 + (tee_local $6 + (i32.add + (get_local $6) + (i32.const -1) ) ) + (i32.const 48) ) - ) - (i32.store8 - (i32.add - (get_local $6) - (i32.const -1) - ) - (i32.add - (i32.and - (i32.shr_s - (get_local $13) - (i32.const 31) + (br_if $while-in98 + (i32.lt_s + (i32.sub + (get_local $27) + (get_local $6) ) (i32.const 2) ) - (i32.const 43) ) ) - (i32.store8 - (tee_local $19 - (i32.add - (get_local $6) - (i32.const -2) + ) + (i32.store8 + (i32.add + (get_local $6) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_s + (get_local $13) + (i32.const 31) ) + (i32.const 2) ) - (get_local $7) + (i32.const 43) ) - (i32.sub - (get_local $27) - (get_local $19) + ) + (i32.store8 + (tee_local $19 + (i32.add + (get_local $6) + (i32.const -2) + ) ) + (get_local $7) + ) + (i32.sub + (get_local $27) + (get_local $19) ) ) ) ) - (get_local $11) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $30) - (get_local $26) + (get_local $11) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (get_local $15) - (get_local $13) - (i32.xor - (get_local $11) - (i32.const 65536) + (drop + (call $___fwritex + (get_local $30) + (get_local $26) + (get_local $0) ) ) - (block $do-once99 - (if - (get_local $18) - (block - (set_local $6 - (tee_local $12 - (select - (get_local $8) - (get_local $12) - (i32.gt_u - (get_local $12) - (get_local $8) - ) - ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (get_local $15) + (get_local $13) + (i32.xor + (get_local $11) + (i32.const 65536) + ) + ) + (if + (get_local $18) + (block + (set_local $6 + (tee_local $12 + (select + (get_local $8) + (get_local $12) + (i32.gt_u + (get_local $12) + (get_local $8) ) ) - (loop $while-in102 - (set_local $7 - (call $_fmt_u - (i32.load - (get_local $6) + ) + ) + (loop $while-in102 + (set_local $7 + (call $_fmt_u + (i32.load + (get_local $6) + ) + (i32.const 0) + (get_local $29) + ) + ) + (block $do-once103 + (if + (i32.eq + (get_local $6) + (get_local $12) + ) + (block + (br_if $do-once103 + (i32.ne + (get_local $7) + (get_local $29) ) - (i32.const 0) - (get_local $29) + ) + (i32.store8 + (get_local $34) + (i32.const 48) + ) + (set_local $7 + (get_local $34) ) ) - (block $do-once103 - (if - (i32.eq - (get_local $6) - (get_local $12) + (block + (br_if $do-once103 + (i32.le_u + (get_local $7) + (get_local $22) ) - (block - (br_if $do-once103 - (i32.ne + ) + (loop $while-in106 + (i32.store8 + (tee_local $7 + (i32.add (get_local $7) - (get_local $29) + (i32.const -1) ) ) - (i32.store8 - (get_local $34) - (i32.const 48) - ) - (set_local $7 - (get_local $34) - ) + (i32.const 48) ) - (block - (br_if $do-once103 - (i32.le_u - (get_local $7) - (get_local $22) - ) - ) - (loop $while-in106 - (i32.store8 - (tee_local $7 - (i32.add - (get_local $7) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in106 - (i32.gt_u - (get_local $7) - (get_local $22) - ) - ) + (br_if $while-in106 + (i32.gt_u + (get_local $7) + (get_local $22) ) ) ) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + ) + ) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) ) - (drop - (call $___fwritex - (get_local $7) - (i32.sub - (get_local $43) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $7) + (i32.sub + (get_local $43) + (get_local $7) + ) + (get_local $0) + ) + ) + ) + (if + (i32.le_u + (tee_local $7 + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + (get_local $8) + ) + (block + (set_local $6 + (get_local $7) + ) + (br $while-in102) + ) + ) + ) + (if + (get_local $31) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (i32.const 4143) + (i32.const 1) + (get_local $0) + ) + ) + ) + ) + (if + (i32.and + (i32.gt_s + (get_local $5) + (i32.const 0) + ) + (i32.lt_u + (get_local $7) + (get_local $9) + ) + ) + (loop $while-in110 + (if + (i32.gt_u + (tee_local $6 + (call $_fmt_u + (i32.load (get_local $7) ) - (get_local $0) + (i32.const 0) + (get_local $29) ) ) + (get_local $22) ) - (if - (i32.le_u - (tee_local $7 + (loop $while-in112 + (i32.store8 + (tee_local $6 (i32.add (get_local $6) - (i32.const 4) + (i32.const -1) ) ) - (get_local $8) + (i32.const 48) ) - (block - (set_local $6 - (get_local $7) + (br_if $while-in112 + (i32.gt_u + (get_local $6) + (get_local $22) ) - (br $while-in102) ) ) ) - (block $do-once107 - (if - (get_local $31) - (block - (br_if $do-once107 - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) ) - (drop - (call $___fwritex - (i32.const 4143) - (i32.const 1) - (get_local $0) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $6) + (select + (i32.const 9) + (get_local $5) + (i32.gt_s + (get_local $5) + (i32.const 9) ) ) + (get_local $0) ) ) ) - (if - (i32.and - (i32.gt_s - (get_local $5) - (i32.const 0) - ) - (i32.lt_u - (get_local $7) - (get_local $9) - ) + (set_local $6 + (i32.add + (get_local $5) + (i32.const -9) ) - (loop $while-in110 - (if - (i32.gt_u - (tee_local $6 - (call $_fmt_u - (i32.load - (get_local $7) - ) - (i32.const 0) - (get_local $29) - ) - ) - (get_local $22) - ) - (loop $while-in112 - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in112 - (i32.gt_u - (get_local $6) - (get_local $22) - ) - ) - ) - ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + ) + (set_local $5 + (if (result i32) + (i32.and + (i32.gt_s + (get_local $5) + (i32.const 9) ) - (drop - (call $___fwritex - (get_local $6) - (select - (i32.const 9) - (get_local $5) - (i32.gt_s - (get_local $5) - (i32.const 9) - ) + (i32.lt_u + (tee_local $7 + (i32.add + (get_local $7) + (i32.const 4) ) - (get_local $0) ) + (get_local $9) ) ) - (set_local $6 - (i32.add - (get_local $5) - (i32.const -9) - ) - ) - (set_local $5 - (if (result i32) - (i32.and - (i32.gt_s - (get_local $5) - (i32.const 9) - ) - (i32.lt_u - (tee_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - (get_local $9) - ) - ) - (block - (set_local $5 - (get_local $6) - ) - (br $while-in110) - ) + (block + (set_local $5 (get_local $6) ) + (br $while-in110) ) + (get_local $6) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.add - (get_local $5) - (i32.const 9) - ) - (i32.const 9) - (i32.const 0) + ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (i32.add + (get_local $5) + (i32.const 9) + ) + (i32.const 9) + (i32.const 0) + ) + ) + (block $do-once99 + (set_local $9 + (select + (get_local $9) + (i32.add + (get_local $12) + (i32.const 4) ) + (get_local $24) + ) + ) + (if + (i32.gt_s + (get_local $5) + (i32.const -1) ) (block - (set_local $9 - (select - (get_local $9) - (i32.add - (get_local $12) - (i32.const 4) - ) - (get_local $24) + (set_local $18 + (i32.eqz + (get_local $21) ) ) - (if - (i32.gt_s - (get_local $5) - (i32.const -1) - ) - (block - (set_local $18 - (i32.eqz - (get_local $21) - ) - ) - (set_local $6 - (get_local $12) - ) - (set_local $7 - (get_local $5) - ) - (loop $while-in114 - (if - (i32.eq - (tee_local $5 - (call $_fmt_u - (i32.load - (get_local $6) - ) - (i32.const 0) - (get_local $29) - ) + (set_local $6 + (get_local $12) + ) + (set_local $7 + (get_local $5) + ) + (loop $while-in114 + (if + (i32.eq + (tee_local $5 + (call $_fmt_u + (i32.load + (get_local $6) ) + (i32.const 0) (get_local $29) ) - (block - (i32.store8 - (get_local $34) - (i32.const 48) - ) - (set_local $5 - (get_local $34) - ) - ) ) - (block $do-once115 + (get_local $29) + ) + (block + (i32.store8 + (get_local $34) + (i32.const 48) + ) + (set_local $5 + (get_local $34) + ) + ) + ) + (block $do-once115 + (if + (i32.eq + (get_local $6) + (get_local $12) + ) + (block (if - (i32.eq - (get_local $6) - (get_local $12) - ) - (block - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $5) - (i32.const 1) - (get_local $0) - ) - ) - ) - (set_local $5 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (br_if $do-once115 - (i32.and - (get_local $18) - (i32.lt_s - (get_local $7) - (i32.const 1) - ) - ) - ) - (br_if $do-once115 - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (i32.const 4143) - (i32.const 1) + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (block - (br_if $do-once115 - (i32.le_u - (get_local $5) - (get_local $22) - ) - ) - (loop $while-in118 - (i32.store8 - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in118 - (i32.gt_u - (get_local $5) - (get_local $22) - ) - ) + (drop + (call $___fwritex + (get_local $5) + (i32.const 1) + (get_local $0) ) ) ) - ) - (set_local $8 - (i32.sub - (get_local $43) - (get_local $5) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) ) - ) - (if - (i32.eqz + (br_if $do-once115 + (i32.and + (get_local $18) + (i32.lt_s + (get_local $7) + (i32.const 1) + ) + ) + ) + (br_if $do-once115 (i32.and (i32.load (get_local $0) @@ -6130,203 +6043,251 @@ ) (drop (call $___fwritex - (get_local $5) - (select - (get_local $8) - (get_local $7) - (i32.gt_s - (get_local $7) - (get_local $8) - ) - ) + (i32.const 4143) + (i32.const 1) (get_local $0) ) ) ) - (br_if $while-in114 - (i32.and - (i32.lt_u - (tee_local $6 + (block + (br_if $do-once115 + (i32.le_u + (get_local $5) + (get_local $22) + ) + ) + (loop $while-in118 + (i32.store8 + (tee_local $5 (i32.add - (get_local $6) - (i32.const 4) + (get_local $5) + (i32.const -1) ) ) - (get_local $9) + (i32.const 48) ) - (i32.gt_s - (tee_local $7 - (i32.sub - (get_local $7) - (get_local $8) - ) + (br_if $while-in118 + (i32.gt_u + (get_local $5) + (get_local $22) ) - (i32.const -1) ) ) ) ) - (set_local $5 - (get_local $7) - ) ) - ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.add - (get_local $5) - (i32.const 18) + (set_local $8 + (i32.sub + (get_local $43) + (get_local $5) + ) ) - (i32.const 18) - (i32.const 0) - ) - (br_if $do-once99 - (i32.and - (i32.load - (get_local $0) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $5) + (select + (get_local $8) + (get_local $7) + (i32.gt_s + (get_local $7) + (get_local $8) + ) + ) + (get_local $0) + ) ) - (i32.const 32) ) - ) - (drop - (call $___fwritex - (get_local $19) - (i32.sub - (get_local $27) - (get_local $19) + (br_if $while-in114 + (i32.and + (i32.lt_u + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + (get_local $9) + ) + (i32.gt_s + (tee_local $7 + (i32.sub + (get_local $7) + (get_local $8) + ) + ) + (i32.const -1) + ) ) - (get_local $0) ) ) + (set_local $5 + (get_local $7) + ) ) ) - ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $13) - (i32.xor - (get_local $11) - (i32.const 8192) - ) - ) - (select - (get_local $15) - (get_local $13) - (i32.lt_s - (get_local $13) - (get_local $15) - ) - ) - ) - (block (result i32) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $7 + (call $_pad + (get_local $0) + (i32.const 48) (i32.add - (tee_local $9 - (select - (i32.const 0) - (get_local $26) - (tee_local $6 - (f64.ne - (get_local $16) - (get_local $16) - ) - ) - ) - ) - (i32.const 3) + (get_local $5) + (i32.const 18) ) + (i32.const 18) + (i32.const 0) ) - (get_local $8) - ) - (if - (i32.eqz + (br_if $do-once99 (i32.and - (tee_local $5 - (i32.load - (get_local $0) - ) + (i32.load + (get_local $0) ) (i32.const 32) ) ) - (block - (drop - (call $___fwritex - (get_local $30) - (get_local $9) - (get_local $0) - ) - ) - (set_local $5 - (i32.load - (get_local $0) + (drop + (call $___fwritex + (get_local $19) + (i32.sub + (get_local $27) + (get_local $19) ) + (get_local $0) ) ) ) - (set_local $6 - (select - (select - (i32.const 4135) - (i32.const 4139) - (tee_local $8 - (i32.ne - (i32.and - (get_local $19) - (i32.const 32) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $13) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (select + (get_local $15) + (get_local $13) + (i32.lt_s + (get_local $13) + (get_local $15) + ) + ) + ) + (block (result i32) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $7 + (i32.add + (tee_local $9 + (select + (i32.const 0) + (get_local $26) + (tee_local $6 + (f64.ne + (get_local $16) + (get_local $16) ) - (i32.const 0) ) ) ) - (select - (i32.const 4127) - (i32.const 4131) - (get_local $8) - ) - (get_local $6) + (i32.const 3) ) ) - (if - (i32.eqz - (i32.and - (get_local $5) - (i32.const 32) + (get_local $8) + ) + (if + (i32.eqz + (i32.and + (tee_local $5 + (i32.load + (get_local $0) + ) ) + (i32.const 32) ) + ) + (block (drop (call $___fwritex - (get_local $6) - (i32.const 3) + (get_local $30) + (get_local $9) (get_local $0) ) ) - ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 8192) + (set_local $5 + (i32.load + (get_local $0) + ) ) ) + ) + (set_local $6 (select - (get_local $15) - (get_local $7) - (i32.lt_s - (get_local $7) - (get_local $15) + (select + (i32.const 4135) + (i32.const 4139) + (tee_local $8 + (i32.ne + (i32.and + (get_local $19) + (i32.const 32) + ) + (i32.const 0) + ) + ) + ) + (select + (i32.const 4127) + (i32.const 4131) + (get_local $8) + ) + (get_local $6) + ) + ) + (if + (i32.eqz + (i32.and + (get_local $5) + (i32.const 32) ) ) + (drop + (call $___fwritex + (get_local $6) + (i32.const 3) + (get_local $0) + ) + ) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (select + (get_local $15) + (get_local $7) + (i32.lt_s + (get_local $7) + (get_local $15) + ) ) ) ) @@ -6998,61 +6959,32 @@ (local $3 i32) (local $4 f64) (local $5 i32) - (block $label$break$L1 - (if - (i32.le_u - (get_local $1) - (i32.const 20) - ) - (block $switch-default - (block $switch-case9 - (block $switch-case8 - (block $switch-case7 - (block $switch-case6 - (block $switch-case5 - (block $switch-case4 - (block $switch-case3 - (block $switch-case2 - (block $switch-case1 - (block $switch-case - (br_table $switch-case $switch-case1 $switch-case2 $switch-case3 $switch-case4 $switch-case5 $switch-case6 $switch-case7 $switch-case8 $switch-case9 $switch-default - (i32.sub - (get_local $1) - (i32.const 9) - ) - ) - ) - (set_local $3 - (i32.load - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) - ) - (i32.const -4) - ) - ) - ) - ) - (i32.store - (get_local $2) - (i32.add + (if + (i32.le_u + (get_local $1) + (i32.const 20) + ) + (block $switch-default + (block $switch-case9 + (block $switch-case8 + (block $switch-case7 + (block $switch-case6 + (block $switch-case5 + (block $switch-case4 + (block $switch-case3 + (block $switch-case2 + (block $switch-case1 + (block $switch-case + (br_table $switch-case $switch-case1 $switch-case2 $switch-case3 $switch-case4 $switch-case5 $switch-case6 $switch-case7 $switch-case8 $switch-case9 $switch-default + (i32.sub (get_local $1) - (i32.const 4) + (i32.const 9) ) ) - (i32.store - (get_local $0) - (get_local $3) - ) - (br $label$break$L1) ) - (set_local $1 + (set_local $3 (i32.load - (tee_local $3 + (tee_local $1 (i32.and (i32.add (i32.load @@ -7068,32 +7000,19 @@ (i32.store (get_local $2) (i32.add - (get_local $3) + (get_local $1) (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $1) - ) - (i32.store offset=4 - (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (get_local $3) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $3 + (set_local $1 (i32.load - (tee_local $1 + (tee_local $3 (i32.and (i32.add (i32.load @@ -7109,110 +7028,99 @@ (i32.store (get_local $2) (i32.add - (get_local $1) + (get_local $3) (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $3) + (get_local $1) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $5 + (set_local $3 (i32.load - (tee_local $3 - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 7) + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) ) - (i32.const -8) + (i32.const 3) ) + (i32.const -4) ) ) ) ) - (set_local $3 - (i32.load offset=4 - (get_local $3) - ) - ) (i32.store (get_local $2) (i32.add (get_local $1) - (i32.const 8) + (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $5) + (get_local $3) ) (i32.store offset=4 (get_local $0) - (get_local $3) + (i32.const 0) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $3 + (set_local $5 (i32.load - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) + (tee_local $3 + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) ) - (i32.const 3) + (i32.const -8) ) - (i32.const -4) ) ) ) ) + (set_local $3 + (i32.load offset=4 + (get_local $3) + ) + ) (i32.store (get_local $2) (i32.add (get_local $1) - (i32.const 4) + (i32.const 8) ) ) (i32.store (get_local $0) - (tee_local $1 - (i32.shr_s - (i32.shl - (i32.and - (get_local $3) - (i32.const 65535) - ) - (i32.const 16) - ) - (i32.const 16) - ) - ) + (get_local $5) ) (i32.store offset=4 (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (get_local $3) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7238,16 +7146,33 @@ ) (i32.store (get_local $0) - (i32.and - (get_local $3) - (i32.const 65535) + (tee_local $1 + (i32.shr_s + (i32.shl + (i32.and + (get_local $3) + (i32.const 65535) + ) + (i32.const 16) + ) + (i32.const 16) + ) ) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7273,33 +7198,16 @@ ) (i32.store (get_local $0) - (tee_local $1 - (i32.shr_s - (i32.shl - (i32.and - (get_local $3) - (i32.const 255) - ) - (i32.const 24) - ) - (i32.const 24) - ) + (i32.and + (get_local $3) + (i32.const 65535) ) ) (i32.store offset=4 (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (i32.const 0) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7325,28 +7233,45 @@ ) (i32.store (get_local $0) - (i32.and - (get_local $3) - (i32.const 255) + (tee_local $1 + (i32.shr_s + (i32.shl + (i32.and + (get_local $3) + (i32.const 255) + ) + (i32.const 24) + ) + (i32.const 24) + ) ) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $4 - (f64.load + (set_local $3 + (i32.load (tee_local $1 (i32.and (i32.add (i32.load (get_local $2) ) - (i32.const 7) + (i32.const 3) ) - (i32.const -8) + (i32.const -4) ) ) ) @@ -7355,14 +7280,21 @@ (get_local $2) (i32.add (get_local $1) - (i32.const 8) + (i32.const 4) ) ) - (f64.store + (i32.store (get_local $0) - (get_local $4) + (i32.and + (get_local $3) + (i32.const 255) + ) ) - (br $label$break$L1) + (i32.store offset=4 + (get_local $0) + (i32.const 0) + ) + (br $switch-default) ) (set_local $4 (f64.load @@ -7390,6 +7322,33 @@ (get_local $0) (get_local $4) ) + (br $switch-default) + ) + (set_local $4 + (f64.load + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) + ) + (i32.const -8) + ) + ) + ) + ) + (i32.store + (get_local $2) + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + (f64.store + (get_local $0) + (get_local $4) ) ) ) @@ -7537,106 +7496,90 @@ (set_local $6 (get_local $7) ) - (block $do-once - (if - (i32.and - (i32.gt_s - (get_local $2) - (get_local $3) - ) - (i32.eqz - (i32.and - (get_local $4) - (i32.const 73728) - ) + (if + (i32.and + (i32.gt_s + (get_local $2) + (get_local $3) + ) + (i32.eqz + (i32.and + (get_local $4) + (i32.const 73728) ) ) - (block - (drop - (call $_memset - (get_local $6) - (get_local $1) - (select - (i32.const 256) - (tee_local $5 - (i32.sub - (get_local $2) - (get_local $3) - ) - ) - (i32.gt_u - (get_local $5) - (i32.const 256) + ) + (block $do-once + (drop + (call $_memset + (get_local $6) + (get_local $1) + (select + (i32.const 256) + (tee_local $5 + (i32.sub + (get_local $2) + (get_local $3) ) ) + (i32.gt_u + (get_local $5) + (i32.const 256) + ) ) ) - (set_local $4 - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (get_local $0) - ) + ) + (set_local $4 + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (get_local $0) ) - (i32.const 32) ) + (i32.const 32) ) ) - (if - (i32.gt_u - (get_local $5) - (i32.const 255) - ) - (block - (loop $while-in - (if - (get_local $4) - (block - (drop - (call $___fwritex - (get_local $6) - (i32.const 256) - (get_local $0) - ) - ) - (set_local $1 - (i32.load - (get_local $0) - ) - ) - ) - ) - (set_local $4 - (i32.eqz - (i32.and - (get_local $1) - (i32.const 32) + ) + (if + (i32.gt_u + (get_local $5) + (i32.const 255) + ) + (block + (loop $while-in + (if + (get_local $4) + (block + (drop + (call $___fwritex + (get_local $6) + (i32.const 256) + (get_local $0) ) ) - ) - (br_if $while-in - (i32.gt_u - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -256) - ) + (set_local $1 + (i32.load + (get_local $0) ) - (i32.const 255) ) ) ) - (br_if $do-once + (set_local $4 (i32.eqz - (get_local $4) + (i32.and + (get_local $1) + (i32.const 32) + ) ) ) - (set_local $5 - (i32.and - (i32.sub - (get_local $2) - (get_local $3) + (br_if $while-in + (i32.gt_u + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -256) + ) ) (i32.const 255) ) @@ -7647,15 +7590,29 @@ (get_local $4) ) ) + (set_local $5 + (i32.and + (i32.sub + (get_local $2) + (get_local $3) + ) + (i32.const 255) + ) + ) ) - (drop - (call $___fwritex - (get_local $6) - (get_local $5) - (get_local $0) + (br_if $do-once + (i32.eqz + (get_local $4) ) ) ) + (drop + (call $___fwritex + (get_local $6) + (get_local $5) + (get_local $0) + ) + ) ) ) (set_global $STACKTOP @@ -7683,273 +7640,257 @@ (local $18 i32) (block $folding-inner0 (set_local $0 - (block $do-once (result i32) - (if (result i32) - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block (result i32) - (if - (i32.and - (tee_local $10 - (i32.shr_u - (tee_local $6 - (i32.load - (i32.const 176) - ) + (if (result i32) + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block (result i32) + (if + (i32.and + (tee_local $10 + (i32.shr_u + (tee_local $6 + (i32.load + (i32.const 176) ) - (tee_local $13 - (i32.shr_u - (tee_local $2 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $13 + (i32.shr_u + (tee_local $2 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $11 - (i32.load - (tee_local $1 - (i32.add - (tee_local $7 - (i32.load - (tee_local $3 - (i32.add - (tee_local $2 - (i32.add - (i32.shl - (tee_local $4 - (i32.add - (i32.xor - (i32.and - (get_local $10) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $11 + (i32.load + (tee_local $1 + (i32.add + (tee_local $7 + (i32.load + (tee_local $3 + (i32.add + (tee_local $2 + (i32.add + (i32.shl + (tee_local $4 + (i32.add + (i32.xor + (i32.and + (get_local $10) (i32.const 1) ) - (get_local $13) + (i32.const 1) ) + (get_local $13) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $2) - (get_local $11) - ) - (i32.store - (i32.const 176) - (i32.and - (get_local $6) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $4) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $2) + (get_local $11) + ) + (i32.store + (i32.const 176) + (i32.and + (get_local $6) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $4) ) + (i32.const -1) ) ) - (block - (if - (i32.lt_u - (get_local $11) - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $11) + (i32.const 12) ) ) - (get_local $7) - ) - (block - (i32.store - (get_local $0) - (get_local $2) - ) - (i32.store - (get_local $3) - (get_local $11) - ) ) - (call $_abort) + (get_local $7) ) - ) - ) - (i32.store offset=4 - (get_local $7) - (i32.or - (tee_local $0 - (i32.shl - (get_local $4) - (i32.const 3) + (block + (i32.store + (get_local $0) + (get_local $2) + ) + (i32.store + (get_local $3) + (get_local $11) ) ) - (i32.const 3) + (call $_abort) ) ) - (i32.store + ) + (i32.store offset=4 + (get_local $7) + (i32.or (tee_local $0 - (i32.add - (i32.add - (get_local $7) - (get_local $0) - ) - (i32.const 4) + (i32.shl + (get_local $4) + (i32.const 3) ) ) - (i32.or - (i32.load + (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $7) (get_local $0) ) - (i32.const 1) + (i32.const 4) ) ) - (return - (get_local $1) + (i32.or + (i32.load + (get_local $0) + ) + (i32.const 1) ) ) + (return + (get_local $1) + ) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (tee_local $0 - (i32.load - (i32.const 184) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $2) + (tee_local $0 + (i32.load + (i32.const 184) ) ) - (block (result i32) - (if - (get_local $10) - (block - (set_local $7 - (i32.and - (i32.shr_u - (tee_local $3 - (i32.add - (i32.and - (tee_local $3 - (i32.and - (i32.shl - (get_local $10) - (get_local $13) - ) - (i32.or - (tee_local $3 - (i32.shl - (i32.const 2) - (get_local $13) - ) - ) - (i32.sub - (i32.const 0) - (get_local $3) + ) + (block (result i32) + (if + (get_local $10) + (block + (set_local $7 + (i32.and + (i32.shr_u + (tee_local $3 + (i32.add + (i32.and + (tee_local $3 + (i32.and + (i32.shl + (get_local $10) + (get_local $13) + ) + (i32.or + (tee_local $3 + (i32.shl + (i32.const 2) + (get_local $13) ) ) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $3) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $10 - (i32.load - (tee_local $4 - (i32.add - (tee_local $8 - (i32.load - (tee_local $3 - (i32.add - (tee_local $7 - (i32.add - (i32.shl - (tee_local $11 - (i32.add + ) + (set_local $10 + (i32.load + (tee_local $4 + (i32.add + (tee_local $8 + (i32.load + (tee_local $3 + (i32.add + (tee_local $7 + (i32.add + (i32.shl + (tee_local $11 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $3 - (i32.and - (i32.shr_u - (tee_local $4 - (i32.shr_u - (get_local $3) - (get_local $7) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $7) - ) (tee_local $3 (i32.and (i32.shr_u (tee_local $4 (i32.shr_u - (get_local $4) (get_local $3) + (get_local $7) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $7) ) (tee_local $3 (i32.and @@ -7960,9 +7901,9 @@ (get_local $3) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -7977,310 +7918,310 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $4) - (get_local $3) + (tee_local $3 + (i32.and + (i32.shr_u + (tee_local $4 + (i32.shr_u + (get_local $4) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $4) + (get_local $3) + ) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $7) - (get_local $10) - ) - (block - (i32.store - (i32.const 176) - (i32.and - (get_local $6) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $11) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $7) + (get_local $10) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (get_local $6) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $11) ) + (i32.const -1) ) ) - (set_local $9 - (get_local $0) - ) ) - (block - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 192) - ) + (set_local $9 + (get_local $0) + ) + ) + (block + (if + (i32.lt_u + (get_local $10) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $10) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $10) + (i32.const 12) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $0) - (get_local $7) - ) - (i32.store - (get_local $3) - (get_local $10) - ) - (set_local $9 - (i32.load - (i32.const 184) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $0) + (get_local $7) + ) + (i32.store + (get_local $3) + (get_local $10) + ) + (set_local $9 + (i32.load + (i32.const 184) ) ) - (call $_abort) ) + (call $_abort) ) ) - (i32.store offset=4 - (get_local $8) - (i32.or + ) + (i32.store offset=4 + (get_local $8) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $7 + (i32.add + (get_local $8) (get_local $2) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $7 - (i32.add - (get_local $8) - (get_local $2) - ) - ) - (i32.or - (tee_local $11 - (i32.sub - (i32.shl - (get_local $11) - (i32.const 3) - ) - (get_local $2) + (i32.or + (tee_local $11 + (i32.sub + (i32.shl + (get_local $11) + (i32.const 3) ) + (get_local $2) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $7) - (get_local $11) - ) + ) + (i32.store + (i32.add + (get_local $7) (get_local $11) ) - (if - (get_local $9) - (block - (set_local $6 - (i32.load - (i32.const 196) - ) + (get_local $11) + ) + (if + (get_local $9) + (block + (set_local $6 + (i32.load + (i32.const 196) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $0 - (i32.shr_u - (get_local $9) - (i32.const 3) - ) + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $0 + (i32.shr_u + (get_local $9) + (i32.const 3) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 176) - ) + ) + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) + ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) ) ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $3 - (i32.add - (get_local $2) - (i32.const 8) - ) + ) + (if + (i32.lt_u + (tee_local $0 + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $5 - (get_local $3) - ) - (set_local $1 - (get_local $0) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $0) - ) - ) (set_local $5 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $3) ) (set_local $1 - (get_local $2) + (get_local $0) ) ) ) - (i32.store - (get_local $5) - (get_local $6) - ) - (i32.store offset=12 - (get_local $1) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $1) - ) - (i32.store offset=12 - (get_local $6) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $0) + ) + ) + (set_local $5 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $1 + (get_local $2) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $11) - ) - (i32.store - (i32.const 196) - (get_local $7) - ) - (return - (get_local $4) + (i32.store + (get_local $5) + (get_local $6) + ) + (i32.store offset=12 + (get_local $1) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $1) + ) + (i32.store offset=12 + (get_local $6) + (get_local $2) + ) ) ) + (i32.store + (i32.const 184) + (get_local $11) + ) + (i32.store + (i32.const 196) + (get_local $7) + ) + (return + (get_local $4) + ) ) - (if (result i32) - (tee_local $0 - (i32.load - (i32.const 180) - ) + ) + (if (result i32) + (tee_local $0 + (i32.load + (i32.const 180) ) - (block - (set_local $7 - (i32.and - (i32.shr_u - (tee_local $0 - (i32.add - (i32.and + ) + (block + (set_local $7 + (i32.and + (i32.shr_u + (tee_local $0 + (i32.add + (i32.and + (get_local $0) + (i32.sub + (i32.const 0) (get_local $0) - (i32.sub - (i32.const 0) - (get_local $0) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $11 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $0 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $11 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $0 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (tee_local $1 - (i32.shr_u - (get_local $0) - (get_local $7) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $7) - ) (tee_local $0 (i32.and (i32.shr_u (tee_local $1 (i32.shr_u - (get_local $1) (get_local $0) + (get_local $7) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $7) ) (tee_local $0 (i32.and @@ -8291,9 +8232,9 @@ (get_local $0) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -8308,849 +8249,859 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $1) - (get_local $0) + (tee_local $0 + (i32.and + (i32.shr_u + (tee_local $1 + (i32.shr_u + (get_local $1) + (get_local $0) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $1) + (get_local $0) + ) ) + (i32.const 2) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (set_local $7 - (get_local $0) - ) - (loop $while-in - (block $while-out + ) + (set_local $7 + (get_local $0) + ) + (loop $while-in + (block $while-out + (if + (tee_local $1 + (i32.load offset=16 + (get_local $0) + ) + ) + (set_local $0 + (get_local $1) + ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $0) + (i32.eqz + (tee_local $0 + (i32.load offset=20 + (get_local $0) + ) ) ) - (set_local $0 - (get_local $1) - ) - (if - (i32.eqz - (tee_local $0 - (i32.load offset=20 - (get_local $0) - ) - ) + (block + (set_local $6 + (get_local $11) ) - (block - (set_local $6 - (get_local $11) - ) - (set_local $8 - (get_local $7) - ) - (br $while-out) + (set_local $8 + (get_local $7) ) + (br $while-out) ) ) - (set_local $6 - (i32.lt_u - (tee_local $1 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (set_local $6 + (i32.lt_u + (tee_local $1 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $0) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $11) ) + (get_local $11) ) - (set_local $11 - (select - (get_local $1) - (get_local $11) - (get_local $6) - ) + ) + (set_local $11 + (select + (get_local $1) + (get_local $11) + (get_local $6) ) - (set_local $7 - (select - (get_local $0) - (get_local $7) - (get_local $6) - ) + ) + (set_local $7 + (select + (get_local $0) + (get_local $7) + (get_local $6) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $8) - (tee_local $10 - (i32.load - (i32.const 192) - ) + ) + (if + (i32.lt_u + (get_local $8) + (tee_local $10 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $8) - (tee_local $5 - (i32.add - (get_local $8) - (get_local $2) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $8) + (tee_local $5 + (i32.add + (get_local $8) + (get_local $2) ) ) - (call $_abort) ) - (set_local $9 - (i32.load offset=24 - (get_local $8) + (call $_abort) + ) + (set_local $9 + (i32.load offset=24 + (get_local $8) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $8) + ) ) + (get_local $8) ) (block $do-once4 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $8) - ) - ) - (get_local $8) - ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 20) - ) - ) - ) - ) - ) - (br_if $do-once4 - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 16) - ) - ) - ) + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 20) ) ) ) ) - (loop $while-in7 - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 20) - ) + ) + (br_if $do-once4 + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 16) ) ) ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) - ) - (br $while-in7) - ) ) - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) + ) + ) + ) + (loop $while-in7 + (if + (tee_local $7 + (i32.load + (tee_local $11 + (i32.add + (get_local $1) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $0) - (get_local $10) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $4 - (get_local $1) - ) + (set_local $0 + (get_local $11) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $11 - (i32.load offset=8 - (get_local $8) + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $10) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $11) - (i32.const 12) - ) - ) - ) - (get_local $8) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) + (set_local $0 + (get_local $11) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (get_local $10) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $4 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $11 + (i32.load offset=8 (get_local $8) ) - (block - (i32.store - (get_local $7) - (get_local $0) - ) - (i32.store - (get_local $1) + ) + (get_local $10) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $11) + (i32.const 12) ) - (set_local $4 + ) + ) + (get_local $8) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 8) ) ) - (call $_abort) + ) + (get_local $8) + ) + (block + (i32.store + (get_local $7) + (get_local $0) + ) + (i32.store + (get_local $1) + (get_local $11) + ) + (set_local $4 + (get_local $0) ) ) + (call $_abort) ) ) + ) + (if + (get_local $9) (block $do-once8 (if - (get_local $9) - (block - (if - (i32.eq - (get_local $8) - (i32.load - (tee_local $0 - (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $8) - ) - ) - (i32.const 2) + (i32.eq + (get_local $8) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $8) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $0) - (get_local $4) - ) - (if - (i32.eqz - (get_local $4) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $0) + (get_local $4) + ) + (if + (i32.eqz + (get_local $4) ) (block - (if - (i32.lt_u - (get_local $9) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $9) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) - (get_local $8) - ) - (i32.store - (get_local $0) - (get_local $4) - ) - (i32.store offset=20 - (get_local $9) - (get_local $4) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $4) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $4) - (tee_local $0 - (i32.load - (i32.const 192) - ) + (get_local $9) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $4) - (get_local $9) - ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $8) - ) - ) - (if - (i32.lt_u - (get_local $1) - (get_local $0) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $4) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $4) + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $9) + (i32.const 16) + ) ) ) + (get_local $8) + ) + (i32.store + (get_local $0) + (get_local $4) + ) + (i32.store offset=20 + (get_local $9) + (get_local $4) ) ) - (if - (tee_local $0 - (i32.load offset=20 - (get_local $8) - ) + (br_if $do-once8 + (i32.eqz + (get_local $4) ) - (if - (i32.lt_u - (get_local $0) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $4) - (get_local $0) - ) - (i32.store offset=24 - (get_local $0) - (get_local $4) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $4) + (tee_local $0 + (i32.load + (i32.const 192) ) ) ) + (call $_abort) ) - ) - (if - (i32.lt_u - (get_local $6) - (i32.const 16) + (i32.store offset=24 + (get_local $4) + (get_local $9) ) - (block - (i32.store offset=4 - (get_local $8) - (i32.or - (tee_local $0 - (i32.add - (get_local $6) - (get_local $2) - ) - ) - (i32.const 3) + (if + (tee_local $1 + (i32.load offset=16 + (get_local $8) ) ) - (i32.store - (tee_local $0 - (i32.add - (i32.add - (get_local $8) - (get_local $0) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $1) + (get_local $0) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $4) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $4) ) ) - (i32.or + ) + ) + (if + (tee_local $0 + (i32.load offset=20 + (get_local $8) + ) + ) + (if + (i32.lt_u + (get_local $0) (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $4) (get_local $0) ) - (i32.const 1) + (i32.store offset=24 + (get_local $0) + (get_local $4) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $8) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $6) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $8) + (i32.or + (tee_local $0 + (i32.add + (get_local $6) + (get_local $2) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $6) - (i32.const 1) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $8) + (get_local $0) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $5) - (get_local $6) + (i32.or + (i32.load + (get_local $0) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $8) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or (get_local $6) + (i32.const 1) ) - (if - (tee_local $0 + ) + (i32.store + (i32.add + (get_local $5) + (get_local $6) + ) + (get_local $6) + ) + (if + (tee_local $0 + (i32.load + (i32.const 184) + ) + ) + (block + (set_local $4 (i32.load - (i32.const 184) + (i32.const 196) ) ) - (block - (set_local $4 - (i32.load - (i32.const 196) + (set_local $2 + (i32.add + (i32.shl + (tee_local $0 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 216) ) - (set_local $2 - (i32.add + ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) + ) + ) + (tee_local $0 (i32.shl - (tee_local $0 - (i32.shr_u - (get_local $0) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $0) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) + (i32.lt_u (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $2) - (i32.const 8) - ) + (i32.load + (tee_local $1 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $12 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) (set_local $12 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $1) ) (set_local $3 - (get_local $2) + (get_local $0) ) ) ) - (i32.store - (get_local $12) - (get_local $4) - ) - (i32.store offset=12 - (get_local $3) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $3) - ) - (i32.store offset=12 - (get_local $4) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) + ) + (set_local $12 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $3 + (get_local $2) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $6) - ) - (i32.store - (i32.const 196) - (get_local $5) + (i32.store + (get_local $12) + (get_local $4) + ) + (i32.store offset=12 + (get_local $3) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $3) + ) + (i32.store offset=12 + (get_local $4) + (get_local $2) + ) ) ) - ) - (return - (i32.add - (get_local $8) - (i32.const 8) + (i32.store + (i32.const 184) + (get_local $6) + ) + (i32.store + (i32.const 196) + (get_local $5) ) ) ) - (get_local $2) + (return + (i32.add + (get_local $8) + (i32.const 8) + ) + ) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) - (if (result i32) - (i32.gt_u - (get_local $0) - (i32.const -65) - ) - (i32.const -1) - (block (result i32) - (set_local $2 - (i32.and - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 11) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const -65) + ) + (i32.const -1) + (block $do-once (result i32) + (set_local $2 + (i32.and + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 11) ) - (i32.const -8) ) + (i32.const -8) ) - (if (result i32) - (tee_local $18 - (i32.load - (i32.const 180) - ) + ) + (if (result i32) + (tee_local $18 + (i32.load + (i32.const 180) ) - (block (result i32) - (set_local $14 + ) + (block (result i32) + (set_local $14 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $0) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $0) - (i32.const 8) - ) + (i32.gt_u + (get_local $2) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $2) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $2) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $3) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) + (get_local $3) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (set_local $3 - (i32.sub - (i32.const 0) - (get_local $2) - ) + ) + (set_local $3 + (i32.sub + (i32.const 0) + (get_local $2) ) - (block $__rjto$3 - (block $__rjti$3 - (if - (tee_local $0 - (i32.load offset=480 - (i32.shl - (get_local $14) - (i32.const 2) - ) + ) + (block $__rjto$3 + (block $__rjti$3 + (if + (tee_local $0 + (i32.load offset=480 + (i32.shl + (get_local $14) + (i32.const 2) ) ) - (block - (set_local $9 - (i32.shl - (get_local $2) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $14) - (i32.const 1) - ) - ) - (i32.eq + ) + (block + (set_local $9 + (i32.shl + (get_local $2) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $14) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $14) + (i32.const 31) + ) ) ) - (set_local $1 - (i32.const 0) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $4 - (i32.sub - (tee_local $12 - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (set_local $1 + (i32.const 0) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $4 + (i32.sub + (tee_local $12 + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (get_local $2) ) + (get_local $2) ) - (get_local $3) ) - (set_local $1 - (if (result i32) - (i32.eq - (get_local $12) - (get_local $2) - ) - (block - (set_local $1 - (get_local $4) - ) - (set_local $3 - (get_local $0) - ) - (br $__rjti$3) + (get_local $3) + ) + (set_local $1 + (if (result i32) + (i32.eq + (get_local $12) + (get_local $2) + ) + (block + (set_local $1 + (get_local $4) ) - (block (result i32) - (set_local $3 - (get_local $4) - ) + (set_local $3 (get_local $0) ) + (br $__rjti$3) + ) + (block (result i32) + (set_local $3 + (get_local $4) + ) + (get_local $0) ) ) ) - (set_local $0 - (select - (get_local $5) - (tee_local $4 - (i32.load offset=20 - (get_local $0) - ) + ) + (set_local $0 + (select + (get_local $5) + (tee_local $4 + (i32.load offset=20 + (get_local $0) ) - (i32.or - (i32.eqz - (get_local $4) - ) - (i32.eq - (get_local $4) - (tee_local $12 - (i32.load + ) + (i32.or + (i32.eqz + (get_local $4) + ) + (i32.eq + (get_local $4) + (tee_local $12 + (i32.load + (i32.add (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $9) - (i32.const 31) - ) - (i32.const 2) + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $9) + (i32.const 31) ) + (i32.const 2) ) ) ) @@ -9158,138 +9109,124 @@ ) ) ) - (set_local $4 - (i32.shl - (get_local $9) - (i32.xor - (tee_local $5 - (i32.eqz - (get_local $12) - ) + ) + (set_local $4 + (i32.shl + (get_local $9) + (i32.xor + (tee_local $5 + (i32.eqz + (get_local $12) ) - (i32.const 1) ) + (i32.const 1) ) ) - (set_local $0 - (if (result i32) - (get_local $5) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $1) + ) + (set_local $0 + (if (result i32) + (get_local $5) + (block (result i32) + (set_local $4 + (get_local $0) ) - (block - (set_local $5 - (get_local $0) - ) - (set_local $9 - (get_local $4) - ) - (set_local $0 - (get_local $12) - ) - (br $while-in14) + (get_local $1) + ) + (block + (set_local $5 + (get_local $0) ) + (set_local $9 + (get_local $4) + ) + (set_local $0 + (get_local $12) + ) + (br $while-in14) ) ) ) ) - (set_local $0 - (i32.const 0) - ) ) - (if - (i32.eqz - (i32.or - (get_local $4) - (get_local $0) - ) + (set_local $0 + (i32.const 0) + ) + ) + (if + (i32.eqz + (i32.or + (get_local $4) + (get_local $0) ) - (block - (drop - (br_if $do-once - (get_local $2) - (i32.eqz - (tee_local $1 - (i32.and - (get_local $18) - (i32.or - (tee_local $1 - (i32.shl - (i32.const 2) - (get_local $14) - ) - ) - (i32.sub - (i32.const 0) - (get_local $1) + ) + (block + (drop + (br_if $do-once + (get_local $2) + (i32.eqz + (tee_local $1 + (i32.and + (get_local $18) + (i32.or + (tee_local $1 + (i32.shl + (i32.const 2) + (get_local $14) ) ) + (i32.sub + (i32.const 0) + (get_local $1) + ) ) ) ) ) ) - (set_local $12 - (i32.and - (i32.shr_u - (tee_local $1 - (i32.add - (i32.and + ) + (set_local $12 + (i32.and + (i32.shr_u + (tee_local $1 + (i32.add + (i32.and + (get_local $1) + (i32.sub + (i32.const 0) (get_local $1) - (i32.sub - (i32.const 0) - (get_local $1) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $4 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $4 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $1 - (i32.and - (i32.shr_u - (tee_local $4 - (i32.shr_u - (get_local $1) - (get_local $12) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $12) - ) (tee_local $1 (i32.and (i32.shr_u (tee_local $4 (i32.shr_u - (get_local $4) (get_local $1) + (get_local $12) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $12) ) (tee_local $1 (i32.and @@ -9300,9 +9237,9 @@ (get_local $1) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -9317,763 +9254,876 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $4) - (get_local $1) + (tee_local $1 + (i32.and + (i32.shr_u + (tee_local $4 + (i32.shr_u + (get_local $4) + (get_local $1) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $4) + (get_local $1) + ) ) + (i32.const 2) ) ) ) ) - (set_local $4 - (if (result i32) - (get_local $4) - (block - (set_local $1 - (get_local $3) - ) - (set_local $3 - (get_local $4) - ) - (br $__rjti$3) + ) + (set_local $4 + (if (result i32) + (get_local $4) + (block + (set_local $1 + (get_local $3) ) - (get_local $0) + (set_local $3 + (get_local $4) + ) + (br $__rjti$3) ) + (get_local $0) ) - (br $__rjto$3) ) - (loop $while-in16 - (set_local $12 - (i32.lt_u - (tee_local $4 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $3) - ) - (i32.const -8) + (br $__rjto$3) + ) + (loop $while-in16 + (set_local $12 + (i32.lt_u + (tee_local $4 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $3) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $1) ) + (get_local $1) ) - (set_local $1 - (select - (get_local $4) - (get_local $1) - (get_local $12) - ) + ) + (set_local $1 + (select + (get_local $4) + (get_local $1) + (get_local $12) ) - (set_local $0 - (select + ) + (set_local $0 + (select + (get_local $3) + (get_local $0) + (get_local $12) + ) + ) + (if + (tee_local $4 + (i32.load offset=16 (get_local $3) - (get_local $0) - (get_local $12) ) ) - (if - (tee_local $4 - (i32.load offset=16 - (get_local $3) - ) - ) - (block - (set_local $3 - (get_local $4) - ) - (br $while-in16) + (block + (set_local $3 + (get_local $4) ) + (br $while-in16) ) - (br_if $while-in16 - (tee_local $3 - (i32.load offset=20 - (get_local $3) - ) + ) + (br_if $while-in16 + (tee_local $3 + (i32.load offset=20 + (get_local $3) ) ) ) - (set_local $4 - (get_local $0) - ) - (set_local $3 - (get_local $1) - ) ) + (set_local $4 + (get_local $0) + ) + (set_local $3 + (get_local $1) + ) + ) + (if (result i32) + (get_local $4) (if (result i32) - (get_local $4) - (if (result i32) - (i32.lt_u - (get_local $3) - (i32.sub - (i32.load - (i32.const 184) - ) - (get_local $2) + (i32.lt_u + (get_local $3) + (i32.sub + (i32.load + (i32.const 184) ) + (get_local $2) ) - (block - (if - (i32.lt_u - (get_local $4) - (tee_local $8 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $4) + (tee_local $8 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $4) - (tee_local $5 - (i32.add - (get_local $4) - (get_local $2) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $4) + (tee_local $5 + (i32.add + (get_local $4) + (get_local $2) ) ) - (call $_abort) ) - (set_local $12 - (i32.load offset=24 - (get_local $4) + (call $_abort) + ) + (set_local $12 + (i32.load offset=24 + (get_local $4) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $4) + ) ) + (get_local $4) ) (block $do-once17 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $4) - ) - ) - (get_local $4) - ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 20) - ) - ) - ) - ) - ) - (br_if $do-once17 - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 16) - ) - ) - ) + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 20) ) ) ) ) - (loop $while-in20 - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 20) - ) + ) + (br_if $do-once17 + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 16) ) ) ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) - ) - (br $while-in20) - ) ) - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) + ) + ) + ) + (loop $while-in20 + (if + (tee_local $7 + (i32.load + (tee_local $11 + (i32.add + (get_local $1) + (i32.const 20) ) - (br $while-in20) ) ) ) - (if - (i32.lt_u - (get_local $0) - (get_local $8) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $10 - (get_local $1) - ) + (set_local $0 + (get_local $11) ) + (br $while-in20) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $11 - (i32.load offset=8 - (get_local $4) + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $8) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $11) - (i32.const 12) - ) - ) - ) - (get_local $4) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) + (set_local $0 + (get_local $11) + ) + (br $while-in20) ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (get_local $8) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $10 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $11 + (i32.load offset=8 (get_local $4) ) - (block - (i32.store - (get_local $7) - (get_local $0) - ) - (i32.store - (get_local $1) + ) + (get_local $8) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $11) + (i32.const 12) ) - (set_local $10 + ) + ) + (get_local $4) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 8) ) ) - (call $_abort) ) + (get_local $4) ) + (block + (i32.store + (get_local $7) + (get_local $0) + ) + (i32.store + (get_local $1) + (get_local $11) + ) + (set_local $10 + (get_local $0) + ) + ) + (call $_abort) ) ) + ) + (if + (get_local $12) (block $do-once21 (if - (get_local $12) - (block - (if - (i32.eq - (get_local $4) - (i32.load - (tee_local $0 - (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $4) - ) - ) - (i32.const 2) + (i32.eq + (get_local $4) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $4) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $0) - (get_local $10) - ) - (if - (i32.eqz - (get_local $10) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) - ) - (br $do-once21) - ) - ) + ) + ) + (block + (i32.store + (get_local $0) + (get_local $10) + ) + (if + (i32.eqz + (get_local $10) ) (block - (if - (i32.lt_u - (get_local $12) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $12) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) - (get_local $4) - ) - (i32.store - (get_local $0) - (get_local $10) - ) - (i32.store offset=20 - (get_local $12) - (get_local $10) - ) - ) - (br_if $do-once21 - (i32.eqz - (get_local $10) ) ) + (br $do-once21) ) ) + ) + (block (if (i32.lt_u - (get_local $10) - (tee_local $0 - (i32.load - (i32.const 192) - ) + (get_local $12) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $10) - (get_local $12) - ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $4) - ) - ) - (if - (i32.lt_u - (get_local $1) - (get_local $0) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $10) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $10) + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $12) + (i32.const 16) + ) ) ) + (get_local $4) ) - ) - (if - (tee_local $0 - (i32.load offset=20 - (get_local $4) - ) + (i32.store + (get_local $0) + (get_local $10) ) - (if - (i32.lt_u - (get_local $0) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $10) - (get_local $0) - ) - (i32.store offset=24 - (get_local $0) - (get_local $10) - ) - ) + (i32.store offset=20 + (get_local $12) + (get_local $10) + ) + ) + (br_if $do-once21 + (i32.eqz + (get_local $10) ) ) ) ) - ) - (block $do-once25 (if (i32.lt_u - (get_local $3) - (i32.const 16) + (get_local $10) + (tee_local $0 + (i32.load + (i32.const 192) + ) + ) ) - (block - (i32.store offset=4 + (call $_abort) + ) + (i32.store offset=24 + (get_local $10) + (get_local $12) + ) + (if + (tee_local $1 + (i32.load offset=16 (get_local $4) - (i32.or - (tee_local $0 - (i32.add - (get_local $3) - (get_local $2) - ) - ) - (i32.const 3) - ) ) - (i32.store - (tee_local $0 - (i32.add - (i32.add - (get_local $4) - (get_local $0) - ) - (i32.const 4) - ) + ) + (if + (i32.lt_u + (get_local $1) + (get_local $0) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $10) + (get_local $1) ) - (i32.or - (i32.load - (get_local $0) - ) - (i32.const 1) + (i32.store offset=24 + (get_local $1) + (get_local $10) ) ) ) - (block - (i32.store offset=4 + ) + (if + (tee_local $0 + (i32.load offset=20 (get_local $4) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) ) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $3) - (i32.const 1) + (call $_abort) + (block + (i32.store offset=20 + (get_local $10) + (get_local $0) + ) + (i32.store offset=24 + (get_local $0) + (get_local $10) ) ) - (i32.store + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $3) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $4) + (i32.or + (tee_local $0 (i32.add - (get_local $5) (get_local $3) + (get_local $2) ) - (get_local $3) ) - (set_local $0 - (i32.shr_u - (get_local $3) - (i32.const 3) + (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $4) + (get_local $0) ) + (i32.const 4) ) - (if - (i32.lt_u - (get_local $3) - (i32.const 256) + ) + (i32.or + (i32.load + (get_local $0) + ) + (i32.const 1) + ) + ) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or + (get_local $3) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $5) + (get_local $3) + ) + (get_local $3) + ) + (set_local $0 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $3) + (i32.const 256) + ) + (block + (set_local $3 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 216) ) - (block - (set_local $3 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 216) + ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) ) ) - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) + ) + ) + (if + (i32.lt_u + (tee_local $0 + (i32.load + (tee_local $1 + (i32.add + (get_local $3) + (i32.const 8) ) ) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (set_local $13 - (get_local $1) - ) - (set_local $6 - (get_local $0) - ) ) ) - (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) - (set_local $13 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - (set_local $6 - (get_local $3) - ) + (i32.load + (i32.const 192) ) ) - (i32.store - (get_local $13) - (get_local $5) + (call $_abort) + (block + (set_local $13 + (get_local $1) + ) + (set_local $6 + (get_local $0) + ) ) - (i32.store offset=12 - (get_local $6) - (get_local $5) + ) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $5) - (get_local $6) + (set_local $13 + (i32.add + (get_local $3) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $5) + (set_local $6 (get_local $3) ) - (br $do-once25) ) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $7 - (if (result i32) - (tee_local $0 + (i32.store + (get_local $13) + (get_local $5) + ) + (i32.store offset=12 + (get_local $6) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $6) + ) + (i32.store offset=12 + (get_local $5) + (get_local $3) + ) + (br $do-once25) + ) + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $3) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u (get_local $3) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u - (get_local $3) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $3) + (i32.add + (tee_local $0 (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $2) + (i32.const 4) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) - ) - (i32.const 245760) + ) + (get_local $2) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $5) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $5) - (get_local $7) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) + ) + ) (tee_local $0 - (i32.add - (get_local $5) - (i32.const 16) + (i32.shl + (i32.const 1) + (get_local $7) ) ) - (i32.const 0) ) + ) + (block (i32.store - (get_local $0) + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) + ) + ) + (i32.store + (get_local $2) + (get_local $5) + ) + (i32.store offset=24 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $5) + ) + (br $do-once25) + ) + ) + (set_local $7 + (i32.shl + (get_local $3) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) + ) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) + ) + ) + (set_local $0 + (i32.load + (get_local $2) + ) + ) + (block $__rjto$1 + (block $__rjti$1 + (loop $while-in28 + (br_if $__rjti$1 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $7) + (get_local $3) + ) + ) + (set_local $2 + (i32.shl + (get_local $7) + (i32.const 1) + ) + ) + (if + (tee_local $1 + (i32.load + (tee_local $7 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $7) + (i32.const 31) + ) + (i32.const 2) + ) + ) ) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or + (block + (set_local $7 + (get_local $2) + ) + (set_local $0 (get_local $1) - (get_local $0) ) + (br $while-in28) + ) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $2) + (get_local $7) (get_local $5) ) (i32.store offset=24 (get_local $5) - (get_local $2) + (get_local $0) ) (i32.store offset=12 (get_local $5) @@ -10086,177 +10136,72 @@ (br $do-once25) ) ) - (set_local $7 - (i32.shl - (get_local $3) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) + (br $__rjto$1) + ) + (if + (i32.and + (i32.ge_u + (tee_local $2 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) + ) ) ) - (i32.eq - (get_local $7) - (i32.const 31) + ) + (tee_local $1 + (i32.load + (i32.const 192) ) ) ) + (i32.ge_u + (get_local $0) + (get_local $1) + ) ) - (set_local $0 - (i32.load + (block + (i32.store offset=12 (get_local $2) + (get_local $5) ) - ) - (block $__rjto$1 - (block $__rjti$1 - (loop $while-in28 - (br_if $__rjti$1 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $3) - ) - ) - (set_local $2 - (i32.shl - (get_local $7) - (i32.const 1) - ) - ) - (if - (tee_local $1 - (i32.load - (tee_local $7 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $7 - (get_local $2) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in28) - ) - ) - ) - (if - (i32.lt_u - (get_local $7) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $7) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $0) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $5) - ) - (br $do-once25) - ) - ) - (br $__rjto$1) + (i32.store + (get_local $3) + (get_local $5) ) - (if - (i32.and - (i32.ge_u - (tee_local $2 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $2) - (get_local $5) - ) - (i32.store - (get_local $3) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $2) - ) - (i32.store offset=12 - (get_local $5) - (get_local $0) - ) - (i32.store offset=24 - (get_local $5) - (i32.const 0) - ) - ) - (call $_abort) + (i32.store offset=8 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $0) + ) + (i32.store offset=24 + (get_local $5) + (i32.const 0) ) ) + (call $_abort) ) ) ) - (return - (i32.add - (get_local $4) - (i32.const 8) - ) + ) + (return + (i32.add + (get_local $4) + (i32.const 8) ) ) - (get_local $2) ) (get_local $2) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) ) ) @@ -10897,248 +10842,277 @@ (get_local $2) ) ) - (block $do-once40 - (if - (tee_local $5 - (i32.load - (i32.const 200) - ) + (if + (tee_local $5 + (i32.load + (i32.const 200) ) - (block - (set_local $2 - (i32.const 624) - ) - (block $__rjto$10 - (block $__rjti$10 - (loop $while-in45 - (br_if $__rjti$10 - (i32.eq - (get_local $1) - (i32.add - (tee_local $10 - (i32.load - (get_local $2) - ) + ) + (block $do-once40 + (set_local $2 + (i32.const 624) + ) + (block $__rjto$10 + (block $__rjti$10 + (loop $while-in45 + (br_if $__rjti$10 + (i32.eq + (get_local $1) + (i32.add + (tee_local $10 + (i32.load + (get_local $2) ) - (tee_local $6 - (i32.load - (tee_local $4 - (i32.add - (get_local $2) - (i32.const 4) - ) + ) + (tee_local $6 + (i32.load + (tee_local $4 + (i32.add + (get_local $2) + (i32.const 4) ) ) ) ) ) ) - (br_if $while-in45 - (tee_local $2 - (i32.load offset=8 - (get_local $2) - ) + ) + (br_if $while-in45 + (tee_local $2 + (i32.load offset=8 + (get_local $2) ) ) ) - (br $__rjto$10) + ) + (br $__rjto$10) + ) + (if + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $2) + ) + (i32.const 8) + ) ) (if - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $2) - ) - (i32.const 8) + (i32.and + (i32.lt_u + (get_local $5) + (get_local $1) + ) + (i32.ge_u + (get_local $5) + (get_local $10) ) ) - (if - (i32.and - (i32.lt_u - (get_local $5) - (get_local $1) - ) - (i32.ge_u - (get_local $5) - (get_local $10) + (block + (i32.store + (get_local $4) + (i32.add + (get_local $6) + (get_local $3) ) ) - (block - (i32.store - (get_local $4) - (i32.add - (get_local $6) - (get_local $3) - ) - ) - (set_local $2 - (i32.add - (get_local $5) - (tee_local $1 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $5) - (i32.const 8) - ) + (set_local $2 + (i32.add + (get_local $5) + (tee_local $1 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $5) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) - (set_local $1 - (i32.add - (i32.sub - (get_local $3) - (get_local $1) - ) - (i32.load - (i32.const 188) - ) + ) + (set_local $1 + (i32.add + (i32.sub + (get_local $3) + (get_local $1) + ) + (i32.load + (i32.const 188) ) ) - (i32.store - (i32.const 200) - (get_local $2) - ) - (i32.store - (i32.const 188) + ) + (i32.store + (i32.const 200) + (get_local $2) + ) + (i32.store + (i32.const 188) + (get_local $1) + ) + (i32.store offset=4 + (get_local $2) + (i32.or (get_local $1) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $2) - (i32.or - (get_local $1) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 40) + (get_local $1) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (br $do-once40) ) + (br $do-once40) ) ) ) - (if - (i32.lt_u - (get_local $1) - (tee_local $4 - (i32.load - (i32.const 192) - ) - ) - ) - (block - (i32.store + ) + (if + (i32.lt_u + (get_local $1) + (tee_local $4 + (i32.load (i32.const 192) - (get_local $1) - ) - (set_local $4 - (get_local $1) ) ) ) - (set_local $10 - (i32.add + (block + (i32.store + (i32.const 192) + (get_local $1) + ) + (set_local $4 (get_local $1) - (get_local $3) ) ) - (set_local $2 - (i32.const 624) + ) + (set_local $10 + (i32.add + (get_local $1) + (get_local $3) ) - (block $__rjto$11 - (block $__rjti$11 - (loop $while-in47 - (if - (i32.eq - (i32.load - (get_local $2) - ) - (get_local $10) - ) - (block - (set_local $6 - (get_local $2) - ) - (br $__rjti$11) + ) + (set_local $2 + (i32.const 624) + ) + (block $__rjto$11 + (block $__rjti$11 + (loop $while-in47 + (if + (i32.eq + (i32.load + (get_local $2) ) + (get_local $10) ) - (br_if $while-in47 - (tee_local $2 - (i32.load offset=8 - (get_local $2) - ) + (block + (set_local $6 + (get_local $2) ) + (br $__rjti$11) ) ) - (set_local $4 - (i32.const 624) + (br_if $while-in47 + (tee_local $2 + (i32.load offset=8 + (get_local $2) + ) + ) ) - (br $__rjto$11) ) (set_local $4 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $2) - ) - (i32.const 8) + (i32.const 624) + ) + (br $__rjto$11) + ) + (set_local $4 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $2) ) - (i32.const 624) - (block - (i32.store - (get_local $6) - (get_local $1) + (i32.const 8) + ) + (i32.const 624) + (block + (i32.store + (get_local $6) + (get_local $1) + ) + (i32.store + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 4) + ) ) - (i32.store - (tee_local $2 - (i32.add - (get_local $2) - (i32.const 4) - ) + (i32.add + (i32.load + (get_local $2) ) - (i32.add - (i32.load - (get_local $2) + (get_local $3) + ) + ) + (set_local $9 + (i32.add + (tee_local $12 + (i32.add + (get_local $1) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) + ) + ) ) - (get_local $3) ) + (get_local $0) ) - (set_local $9 - (i32.add - (tee_local $12 + ) + (set_local $7 + (i32.sub + (i32.sub + (tee_local $6 (i32.add - (get_local $1) + (get_local $10) (select (i32.and (i32.sub (i32.const 0) (tee_local $1 (i32.add - (get_local $1) + (get_local $10) (i32.const 8) ) ) @@ -11153,68 +11127,69 @@ ) ) ) - (get_local $0) + (get_local $12) ) + (get_local $0) ) - (set_local $7 - (i32.sub - (i32.sub - (tee_local $6 - (i32.add - (get_local $10) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $10) - (i32.const 8) - ) - ) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) - ) - ) + ) + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $0) + (i32.const 3) + ) + ) + (if + (i32.eq + (get_local $6) + (get_local $5) + ) + (block + (i32.store + (i32.const 188) + (tee_local $0 + (i32.add + (i32.load + (i32.const 188) ) + (get_local $7) ) - (get_local $12) ) - (get_local $0) ) - ) - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $0) - (i32.const 3) + (i32.store + (i32.const 200) + (get_local $9) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $0) + (i32.const 1) + ) ) ) (block $do-once48 (if (i32.eq (get_local $6) - (get_local $5) + (i32.load + (i32.const 196) + ) ) (block (i32.store - (i32.const 188) + (i32.const 184) (tee_local $0 (i32.add (i32.load - (i32.const 188) + (i32.const 184) ) (get_local $7) ) ) ) (i32.store - (i32.const 200) + (i32.const 196) (get_local $9) ) (i32.store offset=4 @@ -11224,835 +11199,890 @@ (i32.const 1) ) ) - ) - (block - (if - (i32.eq - (get_local $6) - (i32.load - (i32.const 196) - ) + (i32.store + (i32.add + (get_local $9) + (get_local $0) ) - (block - (i32.store - (i32.const 184) - (tee_local $0 - (i32.add - (i32.load - (i32.const 184) + (get_local $0) + ) + (br $do-once48) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (tee_local $0 + (if (result i32) + (i32.eq + (i32.and + (tee_local $0 + (i32.load offset=4 + (get_local $6) + ) ) - (get_local $7) + (i32.const 3) ) - ) - ) - (i32.store - (i32.const 196) - (get_local $9) - ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $0) (i32.const 1) ) - ) - (i32.store - (i32.add - (get_local $9) - (get_local $0) - ) - (get_local $0) - ) - (br $do-once48) - ) - ) - (i32.store - (tee_local $0 - (i32.add - (tee_local $0 - (if (result i32) - (i32.eq - (i32.and - (tee_local $0 - (i32.load offset=4 - (get_local $6) - ) - ) - (i32.const 3) - ) - (i32.const 1) + (block (result i32) + (set_local $10 + (i32.and + (get_local $0) + (i32.const -8) ) - (block (result i32) - (set_local $10 - (i32.and - (get_local $0) - (i32.const -8) - ) + ) + (set_local $1 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (block $label$break$L331 + (if + (i32.lt_u + (get_local $0) + (i32.const 256) ) - (set_local $1 - (i32.shr_u - (get_local $0) - (i32.const 3) + (block + (set_local $2 + (i32.load offset=12 + (get_local $6) + ) ) - ) - (block $label$break$L331 (if - (i32.lt_u - (get_local $0) - (i32.const 256) - ) - (block - (set_local $2 - (i32.load offset=12 + (i32.ne + (tee_local $3 + (i32.load offset=8 (get_local $6) ) ) - (block $do-once51 - (if - (i32.ne - (tee_local $3 - (i32.load offset=8 - (get_local $6) - ) - ) - (tee_local $0 - (i32.add - (i32.shl - (get_local $1) - (i32.const 3) - ) - (i32.const 216) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $3) - (get_local $4) - ) - (call $_abort) - ) - (br_if $do-once51 - (i32.eq - (i32.load offset=12 - (get_local $3) - ) - (get_local $6) - ) - ) - (call $_abort) + (tee_local $0 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) ) + (i32.const 216) ) ) + ) + (block $do-once51 (if - (i32.eq - (get_local $2) + (i32.lt_u (get_local $3) + (get_local $4) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) + (call $_abort) + ) + (br_if $do-once51 + (i32.eq + (i32.load offset=12 + (get_local $3) ) - (br $label$break$L331) + (get_local $6) ) ) - (block $do-once53 - (if - (i32.eq - (get_local $2) - (get_local $0) - ) - (set_local $15 - (i32.add - (get_local $2) - (i32.const 8) - ) + (call $_abort) + ) + ) + (if + (i32.eq + (get_local $2) + (get_local $3) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) ) - (block - (if - (i32.lt_u - (get_local $2) - (get_local $4) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - ) - (get_local $6) - ) - (block - (set_local $15 - (get_local $0) - ) - (br $do-once53) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) - (call $_abort) + (i32.const -1) ) ) ) - (i32.store offset=12 - (get_local $3) + (br $label$break$L331) + ) + ) + (if + (i32.eq + (get_local $2) + (get_local $0) + ) + (set_local $15 + (i32.add (get_local $2) - ) - (i32.store - (get_local $15) - (get_local $3) + (i32.const 8) ) ) - (block - (set_local $5 - (i32.load offset=24 - (get_local $6) + (block $do-once53 + (if + (i32.lt_u + (get_local $2) + (get_local $4) ) + (call $_abort) ) - (block $do-once55 - (if - (i32.eq + (if + (i32.eq + (i32.load (tee_local $0 - (i32.load offset=12 - (get_local $6) + (i32.add + (get_local $2) + (i32.const 8) ) ) - (get_local $6) ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - ) - (block - (br_if $do-once55 - (i32.eqz - (tee_local $1 - (i32.load - (get_local $3) - ) - ) - ) - ) - (set_local $0 - (get_local $3) - ) - ) - ) - (loop $while-in58 - (if - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $3) - ) - (set_local $0 - (get_local $2) - ) - (br $while-in58) - ) - ) - (if - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $3) - ) - (set_local $0 - (get_local $2) - ) - (br $while-in58) - ) - ) - ) - (if - (i32.lt_u - (get_local $0) - (get_local $4) - ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $8 - (get_local $1) - ) - ) - ) + (get_local $6) + ) + (block + (set_local $15 + (get_local $0) ) - (block - (if - (i32.lt_u - (tee_local $2 - (i32.load offset=8 - (get_local $6) - ) - ) - (get_local $4) - ) - (call $_abort) - ) - (if - (i32.ne - (i32.load + (br $do-once53) + ) + ) + (call $_abort) + ) + ) + (i32.store offset=12 + (get_local $3) + (get_local $2) + ) + (i32.store + (get_local $15) + (get_local $3) + ) + ) + (block + (set_local $5 + (i32.load offset=24 + (get_local $6) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $6) + ) + ) + (get_local $6) + ) + (block $do-once55 + (if + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add (tee_local $3 (i32.add - (get_local $2) - (i32.const 12) + (get_local $6) + (i32.const 16) ) ) + (i32.const 4) ) - (get_local $6) ) - (call $_abort) ) - (if - (i32.eq + ) + ) + (block + (br_if $do-once55 + (i32.eqz + (tee_local $1 (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $6) - ) - (block - (i32.store (get_local $3) - (get_local $0) - ) - (i32.store - (get_local $1) - (get_local $2) - ) - (set_local $8 - (get_local $0) ) ) - (call $_abort) ) ) + (set_local $0 + (get_local $3) + ) ) ) - (br_if $label$break$L331 - (i32.eqz - (get_local $5) - ) - ) - (block $do-once59 + (loop $while-in58 (if - (i32.eq - (get_local $6) + (tee_local $3 (i32.load - (tee_local $0 + (tee_local $2 (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $6) - ) - ) - (i32.const 2) - ) - (i32.const 480) + (get_local $1) + (i32.const 20) ) ) ) ) (block - (i32.store - (get_local $0) - (get_local $8) + (set_local $1 + (get_local $3) ) - (br_if $do-once59 - (get_local $8) + (set_local $0 + (get_local $2) ) - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) + (br $while-in58) + ) + ) + (if + (tee_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $1) + (i32.const 16) ) ) ) - (br $label$break$L331) ) (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $5) - (i32.const 16) - ) - ) - ) - (get_local $6) - ) - (i32.store - (get_local $0) - (get_local $8) - ) - (i32.store offset=20 - (get_local $5) - (get_local $8) - ) + (set_local $1 + (get_local $3) ) - (br_if $label$break$L331 - (i32.eqz - (get_local $8) - ) + (set_local $0 + (get_local $2) ) + (br $while-in58) ) ) ) (if (i32.lt_u - (get_local $8) - (tee_local $1 - (i32.load - (i32.const 192) + (get_local $0) + (get_local $4) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $8 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $2 + (i32.load offset=8 + (get_local $6) ) ) + (get_local $4) ) (call $_abort) ) - (i32.store offset=24 - (get_local $8) - (get_local $5) + (if + (i32.ne + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 12) + ) + ) + ) + (get_local $6) + ) + (call $_abort) ) (if - (tee_local $3 + (i32.eq (i32.load - (tee_local $0 + (tee_local $1 (i32.add - (get_local $6) - (i32.const 16) + (get_local $0) + (i32.const 8) ) ) ) + (get_local $6) ) - (if - (i32.lt_u + (block + (i32.store (get_local $3) + (get_local $0) + ) + (i32.store (get_local $1) + (get_local $2) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $8) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $8) + (set_local $8 + (get_local $0) + ) + ) + (call $_abort) + ) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $5) + ) + ) + (if + (i32.eq + (get_local $6) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $6) + ) + ) + (i32.const 2) ) + (i32.const 480) ) ) ) - (br_if $label$break$L331 - (i32.eqz - (tee_local $0 - (i32.load offset=4 - (get_local $0) + ) + (block $do-once59 + (i32.store + (get_local $0) + (get_local $8) + ) + (br_if $do-once59 + (get_local $8) + ) + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) ) ) + (br $label$break$L331) + ) + (block (if (i32.lt_u - (get_local $0) + (get_local $5) (i32.load (i32.const 192) ) ) (call $_abort) - (block - (i32.store offset=20 - (get_local $8) - (get_local $0) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $5) + (i32.const 16) + ) + ) ) - (i32.store offset=24 - (get_local $0) - (get_local $8) + (get_local $6) + ) + (i32.store + (get_local $0) + (get_local $8) + ) + (i32.store offset=20 + (get_local $5) + (get_local $8) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $8) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $8) + (tee_local $1 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $8) + (get_local $5) + ) + (if + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (get_local $6) + (i32.const 16) ) ) ) ) + (if + (i32.lt_u + (get_local $3) + (get_local $1) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $8) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $8) + ) + ) + ) ) - ) - (set_local $7 - (i32.add - (get_local $10) - (get_local $7) + (br_if $label$break$L331 + (i32.eqz + (tee_local $0 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $8) + (get_local $0) + ) + (i32.store offset=24 + (get_local $0) + (get_local $8) + ) + ) ) ) - (i32.add - (get_local $6) - (get_local $10) - ) ) + ) + (set_local $7 + (i32.add + (get_local $10) + (get_local $7) + ) + ) + (i32.add (get_local $6) + (get_local $10) ) ) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $0) + (get_local $6) ) - (i32.const -2) ) + (i32.const 4) ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $7) - (i32.const 1) - ) + ) + (i32.and + (i32.load + (get_local $0) ) - (i32.store + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $7) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $9) + (get_local $7) + ) + (get_local $7) + ) + (set_local $0 + (i32.shr_u + (get_local $7) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.const 256) + ) + (block + (set_local $3 (i32.add - (get_local $9) - (get_local $7) - ) - (get_local $7) - ) - (set_local $0 - (i32.shr_u - (get_local $7) - (i32.const 3) + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 216) ) ) (if - (i32.lt_u - (get_local $7) - (i32.const 256) - ) - (block - (set_local $3 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 216) + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) ) ) - (block $do-once63 - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (block - (if - (i32.ge_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 192) - ) - ) - (block - (set_local $16 - (get_local $1) - ) - (set_local $11 - (get_local $0) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) + ) + ) + ) + (block $do-once63 + (if + (i32.ge_u + (tee_local $0 + (i32.load + (tee_local $1 + (i32.add + (get_local $3) + (i32.const 8) ) - (br $do-once63) ) ) - (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) - (set_local $16 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - (set_local $11 - (get_local $3) - ) + (i32.load + (i32.const 192) ) ) + (block + (set_local $16 + (get_local $1) + ) + (set_local $11 + (get_local $0) + ) + (br $do-once63) + ) ) + (call $_abort) + ) + (block (i32.store - (get_local $16) - (get_local $9) - ) - (i32.store offset=12 - (get_local $11) - (get_local $9) + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $9) - (get_local $11) + (set_local $16 + (i32.add + (get_local $3) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $9) + (set_local $11 (get_local $3) ) - (br $do-once48) ) ) - (set_local $3 - (i32.add - (i32.shl - (tee_local $2 - (block $do-once65 (result i32) - (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $7) - (i32.const 8) - ) - ) - (block (result i32) - (drop - (br_if $do-once65 - (i32.const 31) - (i32.gt_u - (get_local $7) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $7) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + (i32.store + (get_local $16) + (get_local $9) + ) + (i32.store offset=12 + (get_local $11) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $11) + ) + (i32.store offset=12 + (get_local $9) + (get_local $3) + ) + (br $do-once48) + ) + ) + (set_local $3 + (i32.add + (i32.shl + (tee_local $2 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $7) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $7) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $7) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $3) + (i32.const 16) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $3) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $9) + (get_local $2) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $9) - (get_local $2) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) + ) + ) (tee_local $0 - (i32.add - (get_local $9) - (i32.const 16) + (i32.shl + (i32.const 1) + (get_local $2) ) ) - (i32.const 0) ) + ) + (block (i32.store - (get_local $0) + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) + ) + ) + (i32.store + (get_local $3) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $3) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + (br $do-once48) + ) + ) + (set_local $2 + (i32.shl + (get_local $7) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $2) + (i32.const 1) + ) + ) + (i32.eq + (get_local $2) + (i32.const 31) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) + ) + ) + (set_local $0 + (i32.load + (get_local $3) + ) + ) + (block $__rjto$7 + (block $__rjti$7 + (loop $while-in68 + (br_if $__rjti$7 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $2) + (get_local $7) + ) + ) + (set_local $3 + (i32.shl + (get_local $2) + (i32.const 1) + ) + ) + (if + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $2) + (i32.const 31) + ) + (i32.const 2) + ) + ) ) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or + (block + (set_local $2 + (get_local $3) + ) + (set_local $0 (get_local $1) - (get_local $0) ) + (br $while-in68) + ) + ) + ) + (if + (i32.lt_u + (get_local $2) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $3) + (get_local $2) (get_local $9) ) (i32.store offset=24 (get_local $9) - (get_local $3) + (get_local $0) ) (i32.store offset=12 (get_local $9) @@ -12065,972 +12095,867 @@ (br $do-once48) ) ) - (set_local $2 - (i32.shl - (get_local $7) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $2) - (i32.const 1) + (br $__rjto$7) + ) + (if + (i32.and + (i32.ge_u + (tee_local $2 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) + ) ) ) - (i32.eq - (get_local $2) - (i32.const 31) + ) + (tee_local $1 + (i32.load + (i32.const 192) ) ) ) + (i32.ge_u + (get_local $0) + (get_local $1) + ) ) - (set_local $0 - (i32.load + (block + (i32.store offset=12 + (get_local $2) + (get_local $9) + ) + (i32.store (get_local $3) + (get_local $9) ) - ) - (block $__rjto$7 - (block $__rjti$7 - (loop $while-in68 - (br_if $__rjti$7 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $7) - ) - ) - (set_local $3 - (i32.shl - (get_local $2) - (i32.const 1) - ) - ) - (if - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $2) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in68) - ) - ) - ) - (if - (i32.lt_u - (get_local $2) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $2) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $0) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - (br $do-once48) - ) - ) - (br $__rjto$7) + (i32.store offset=8 + (get_local $9) + (get_local $2) ) - (if - (i32.and - (i32.ge_u - (tee_local $2 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $2) - (get_local $9) - ) - (i32.store - (get_local $3) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $2) - ) - (i32.store offset=12 - (get_local $9) - (get_local $0) - ) - (i32.store offset=24 - (get_local $9) - (i32.const 0) - ) - ) - (call $_abort) + (i32.store offset=12 + (get_local $9) + (get_local $0) + ) + (i32.store offset=24 + (get_local $9) + (i32.const 0) ) ) + (call $_abort) ) ) ) - (return - (i32.add - (get_local $12) - (i32.const 8) - ) + ) + (return + (i32.add + (get_local $12) + (i32.const 8) ) ) ) ) ) - (loop $while-in70 - (block $while-out69 - (if - (i32.le_u - (tee_local $2 - (i32.load - (get_local $4) - ) + ) + (loop $while-in70 + (block $while-out69 + (if + (i32.le_u + (tee_local $2 + (i32.load + (get_local $4) ) - (get_local $5) ) - (br_if $while-out69 - (i32.gt_u - (tee_local $2 - (i32.add - (get_local $2) - (i32.load offset=4 - (get_local $4) - ) + (get_local $5) + ) + (br_if $while-out69 + (i32.gt_u + (tee_local $2 + (i32.add + (get_local $2) + (i32.load offset=4 + (get_local $4) ) ) - (get_local $5) ) + (get_local $5) ) ) - (set_local $4 - (i32.load offset=8 - (get_local $4) - ) + ) + (set_local $4 + (i32.load offset=8 + (get_local $4) ) - (br $while-in70) ) + (br $while-in70) ) - (set_local $11 - (i32.add - (tee_local $4 - (i32.add - (get_local $2) - (i32.const -47) - ) + ) + (set_local $11 + (i32.add + (tee_local $4 + (i32.add + (get_local $2) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $8 - (i32.add - (tee_local $10 - (select - (get_local $5) - (tee_local $4 - (i32.add - (get_local $4) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $11) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $8 + (i32.add + (tee_local $10 + (select + (get_local $5) + (tee_local $4 + (i32.add + (get_local $4) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $11) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $11) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $4) - (tee_local $11 - (i32.add - (get_local $5) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $4) + (tee_local $11 + (i32.add + (get_local $5) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 200) - (tee_local $6 - (i32.add - (get_local $1) - (tee_local $4 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $6 + (i32.add + (get_local $1) + (tee_local $4 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $4 - (i32.sub - (i32.add - (get_local $3) - (i32.const -40) - ) - (get_local $4) - ) - ) - ) - (i32.store offset=4 - (get_local $6) - (i32.or - (get_local $4) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $6) - (get_local $4) - ) - (i32.const 40) - ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) - ) - (i32.store - (tee_local $4 + ) + (i32.store + (i32.const 188) + (tee_local $4 + (i32.sub (i32.add - (get_local $10) - (i32.const 4) + (get_local $3) + (i32.const -40) ) + (get_local $4) ) - (i32.const 27) ) - (i32.store - (get_local $8) - (i32.load - (i32.const 624) - ) + ) + (i32.store offset=4 + (get_local $6) + (i32.or + (get_local $4) + (i32.const 1) ) - (i32.store offset=4 - (get_local $8) - (i32.load - (i32.const 628) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $6) + (get_local $4) ) - (i32.store offset=8 - (get_local $8) - (i32.load - (i32.const 632) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (i32.store offset=12 - (get_local $8) - (i32.load - (i32.const 636) + ) + (i32.store + (tee_local $4 + (i32.add + (get_local $10) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $8) + (i32.load (i32.const 624) - (get_local $1) ) - (i32.store + ) + (i32.store offset=4 + (get_local $8) + (i32.load (i32.const 628) - (get_local $3) ) - (i32.store + ) + (i32.store offset=8 + (get_local $8) + (i32.load + (i32.const 632) + ) + ) + (i32.store offset=12 + (get_local $8) + (i32.load (i32.const 636) - (i32.const 0) ) + ) + (i32.store + (i32.const 624) + (get_local $1) + ) + (i32.store + (i32.const 628) + (get_local $3) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 632) + (get_local $8) + ) + (set_local $1 + (i32.add + (get_local $10) + (i32.const 24) + ) + ) + (loop $while-in72 (i32.store - (i32.const 632) - (get_local $8) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $1 - (i32.add - (get_local $10) - (i32.const 24) + (br_if $while-in72 + (i32.lt_u + (i32.add + (get_local $1) + (i32.const 4) + ) + (get_local $2) ) ) - (loop $while-in72 + ) + (if + (i32.ne + (get_local $10) + (get_local $5) + ) + (block (i32.store - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 4) + (get_local $4) + (i32.and + (i32.load + (get_local $4) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $while-in72 - (i32.lt_u - (i32.add - (get_local $1) - (i32.const 4) + (i32.store offset=4 + (get_local $5) + (i32.or + (tee_local $6 + (i32.sub + (get_local $10) + (get_local $5) + ) ) - (get_local $2) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $10) - (get_local $5) + (get_local $6) ) - (block - (i32.store - (get_local $4) - (i32.and - (i32.load - (get_local $4) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $5) - (i32.or - (tee_local $6 - (i32.sub - (get_local $10) - (get_local $5) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $10) + (set_local $1 + (i32.shr_u (get_local $6) + (i32.const 3) ) - (set_local $1 - (i32.shr_u - (get_local $6) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $6) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $6) - (i32.const 256) + (block + (set_local $2 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $2 - (i32.add + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) + ) + ) + (tee_local $1 (i32.shl + (i32.const 1) (get_local $1) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 176) - ) - ) + (i32.lt_u (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $1) - ) - ) - ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $3 - (i32.add - (get_local $2) - (i32.const 8) - ) + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $17 - (get_local $3) - ) - (set_local $7 - (get_local $1) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $1) - ) - ) (set_local $17 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $3) ) (set_local $7 - (get_local $2) + (get_local $1) ) ) ) - (i32.store - (get_local $17) - (get_local $5) - ) - (i32.store offset=12 - (get_local $7) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $7) - ) - (i32.store offset=12 - (get_local $5) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $1) + ) + ) + (set_local $17 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $7 + (get_local $2) + ) ) - (br $do-once40) ) + (i32.store + (get_local $17) + (get_local $5) + ) + (i32.store offset=12 + (get_local $7) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $7) + ) + (i32.store offset=12 + (get_local $5) + (get_local $2) + ) + (br $do-once40) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $4 + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $4 + (if (result i32) + (tee_local $1 + (i32.shr_u + (get_local $6) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $1 - (i32.shr_u - (get_local $6) - (i32.const 8) - ) + (i32.gt_u + (get_local $6) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $6) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $6) - (i32.add - (tee_local $1 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $6) + (i32.add + (tee_local $1 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $1 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $1) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $1) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $1 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $1) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $1) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $2) ) - (tee_local $1 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $3) - (get_local $1) - ) + (get_local $2) + ) + (tee_local $1 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $3) + (get_local $1) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $3) - (get_local $1) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $3) + (get_local $1) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $1) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $1) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $5) - (get_local $4) - ) - (i32.store offset=20 - (get_local $5) - (i32.const 0) - ) - (i32.store - (get_local $11) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $3 - (i32.load - (i32.const 180) - ) - ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $4) - ) + ) + (i32.store offset=28 + (get_local $5) + (get_local $4) + ) + (i32.store offset=20 + (get_local $5) + (i32.const 0) + ) + (i32.store + (get_local $11) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $3 + (i32.load + (i32.const 180) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $3) - (get_local $1) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $4) ) ) - (i32.store - (get_local $2) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $2) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $5) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $3) + (get_local $1) ) - (br $do-once40) ) + (i32.store + (get_local $2) + (get_local $5) + ) + (i32.store offset=24 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $5) + ) + (br $do-once40) ) - (set_local $4 - (i32.shl - (get_local $6) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $4) - (i32.const 1) - ) - ) - (i32.eq + ) + (set_local $4 + (i32.shl + (get_local $6) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $4) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $4) + (i32.const 31) + ) ) ) - (set_local $1 - (i32.load - (get_local $2) - ) + ) + (set_local $1 + (i32.load + (get_local $2) ) - (block $__rjto$9 - (block $__rjti$9 - (loop $while-in74 - (br_if $__rjti$9 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $1) - ) - (i32.const -8) + ) + (block $__rjto$9 + (block $__rjti$9 + (loop $while-in74 + (br_if $__rjti$9 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $1) ) - (get_local $6) + (i32.const -8) ) + (get_local $6) ) - (set_local $2 - (i32.shl - (get_local $4) - (i32.const 1) - ) + ) + (set_local $2 + (i32.shl + (get_local $4) + (i32.const 1) ) - (if - (tee_local $3 - (i32.load - (tee_local $4 + ) + (if + (tee_local $3 + (i32.load + (tee_local $4 + (i32.add (i32.add - (i32.add - (get_local $1) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $4) - (i32.const 31) - ) - (i32.const 2) + (get_local $1) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $4) + (i32.const 31) ) + (i32.const 2) ) ) ) ) - (block - (set_local $4 - (get_local $2) - ) - (set_local $1 - (get_local $3) - ) - (br $while-in74) - ) - ) - ) - (if - (i32.lt_u - (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) (block - (i32.store - (get_local $4) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $1) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) + (set_local $4 + (get_local $2) ) - (i32.store offset=8 - (get_local $5) - (get_local $5) + (set_local $1 + (get_local $3) ) - (br $do-once40) + (br $while-in74) ) ) - (br $__rjto$9) ) (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $1) - (get_local $3) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store offset=12 - (get_local $4) - (get_local $5) - ) (i32.store - (get_local $2) + (get_local $4) (get_local $5) ) - (i32.store offset=8 + (i32.store offset=24 (get_local $5) - (get_local $4) + (get_local $1) ) (i32.store offset=12 (get_local $5) - (get_local $1) + (get_local $5) ) - (i32.store offset=24 + (i32.store offset=8 + (get_local $5) (get_local $5) - (i32.const 0) ) + (br $do-once40) + ) + ) + (br $__rjto$9) + ) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $2 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + ) + ) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (i32.ge_u + (get_local $1) + (get_local $3) + ) + ) + (block + (i32.store offset=12 + (get_local $4) + (get_local $5) + ) + (i32.store + (get_local $2) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $4) + ) + (i32.store offset=12 + (get_local $5) + (get_local $1) + ) + (i32.store offset=24 + (get_local $5) + (i32.const 0) ) - (call $_abort) ) + (call $_abort) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $2 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $2 + (i32.load + (i32.const 192) ) ) - (i32.lt_u - (get_local $1) - (get_local $2) - ) ) - (i32.store - (i32.const 192) + (i32.lt_u (get_local $1) + (get_local $2) ) ) (i32.store - (i32.const 624) + (i32.const 192) (get_local $1) ) - (i32.store - (i32.const 628) - (get_local $3) - ) - (i32.store - (i32.const 636) - (i32.const 0) + ) + (i32.store + (i32.const 624) + (get_local $1) + ) + (i32.store + (i32.const 628) + (get_local $3) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 212) + (i32.load + (i32.const 648) ) - (i32.store - (i32.const 212) - (i32.load - (i32.const 648) + ) + (i32.store + (i32.const 208) + (i32.const -1) + ) + (set_local $2 + (i32.const 0) + ) + (loop $while-in43 + (i32.store offset=12 + (tee_local $4 + (i32.add + (i32.shl + (get_local $2) + (i32.const 3) + ) + (i32.const 216) + ) ) + (get_local $4) ) - (i32.store - (i32.const 208) - (i32.const -1) - ) - (set_local $2 - (i32.const 0) + (i32.store offset=8 + (get_local $4) + (get_local $4) ) - (loop $while-in43 - (i32.store offset=12 - (tee_local $4 + (br_if $while-in43 + (i32.ne + (tee_local $2 (i32.add - (i32.shl - (get_local $2) - (i32.const 3) - ) - (i32.const 216) - ) - ) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - (br_if $while-in43 - (i32.ne - (tee_local $2 - (i32.add - (get_local $2) - (i32.const 1) - ) + (get_local $2) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 200) - (tee_local $2 - (i32.add - (get_local $1) - (tee_local $1 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $2 + (i32.add + (get_local $1) + (tee_local $1 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $1 - (i32.sub - (i32.add - (get_local $3) - (i32.const -40) - ) - (get_local $1) + ) + (i32.store + (i32.const 188) + (tee_local $1 + (i32.sub + (i32.add + (get_local $3) + (i32.const -40) ) - ) - ) - (i32.store offset=4 - (get_local $2) - (i32.or (get_local $1) - (i32.const 1) ) ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 40) + ) + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $1) + (i32.const 1) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $2) + (get_local $1) + ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) ) ) @@ -13163,597 +13088,585 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $7) - (i32.const 1) + (if + (i32.and + (get_local $7) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 + (set_local $3 + (get_local $0) + ) + ) + (block $do-once + (set_local $7 + (i32.load (get_local $1) ) - (set_local $3 - (get_local $0) + ) + (if + (i32.eqz + (get_local $5) ) + (return) ) - (block - (set_local $7 - (i32.load - (get_local $1) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (get_local $7) + ) ) + (get_local $11) ) - (if - (i32.eqz - (get_local $5) + (call $_abort) + ) + (set_local $0 + (i32.add + (get_local $7) + (get_local $0) + ) + ) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 196) ) - (return) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub + (block + (if + (i32.ne + (i32.and + (tee_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $8) + (i32.const 4) + ) + ) + ) + ) + (i32.const 3) + ) + (i32.const 3) + ) + (block + (set_local $2 (get_local $1) - (get_local $7) ) + (set_local $3 + (get_local $0) + ) + (br $do-once) ) - (get_local $11) ) - (call $_abort) - ) - (set_local $0 - (i32.add - (get_local $7) + (i32.store + (i32.const 184) (get_local $0) ) - ) - (if - (i32.eq + (i32.store + (get_local $2) + (i32.and + (get_local $3) + (i32.const -2) + ) + ) + (i32.store offset=4 (get_local $1) - (i32.load - (i32.const 196) + (i32.or + (get_local $0) + (i32.const 1) ) ) - (block - (if - (i32.ne - (i32.and - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $8) - (i32.const 4) - ) - ) - ) + (i32.store + (i32.add + (get_local $1) + (get_local $0) + ) + (get_local $0) + ) + (return) + ) + ) + (set_local $5 + (i32.shr_u + (get_local $7) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.const 256) + ) + (block + (set_local $6 + (i32.load offset=12 + (get_local $1) + ) + ) + (if + (i32.ne + (tee_local $2 + (i32.load offset=8 + (get_local $1) + ) + ) + (tee_local $3 + (i32.add + (i32.shl + (get_local $5) + (i32.const 3) ) - (i32.const 3) + (i32.const 216) ) - (i32.const 3) ) - (block - (set_local $2 - (get_local $1) + ) + (block + (if + (i32.lt_u + (get_local $2) + (get_local $11) ) - (set_local $3 - (get_local $0) + (call $_abort) + ) + (if + (i32.ne + (i32.load offset=12 + (get_local $2) + ) + (get_local $1) ) - (br $do-once) + (call $_abort) ) ) - (i32.store - (i32.const 184) - (get_local $0) - ) - (i32.store + ) + (if + (i32.eq + (get_local $6) (get_local $2) - (i32.and - (get_local $3) - (i32.const -2) - ) ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $0) - (i32.const 1) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $5) + ) + (i32.const -1) + ) + ) ) - ) - (i32.store - (i32.add + (set_local $2 (get_local $1) + ) + (set_local $3 (get_local $0) ) - (get_local $0) + (br $do-once) ) - (return) - ) - ) - (set_local $5 - (i32.shr_u - (get_local $7) - (i32.const 3) - ) - ) - (if - (i32.lt_u - (get_local $7) - (i32.const 256) ) - (block - (set_local $6 - (i32.load offset=12 - (get_local $1) + (if + (i32.eq + (get_local $6) + (get_local $3) + ) + (set_local $4 + (i32.add + (get_local $6) + (i32.const 8) ) ) - (if - (i32.ne - (tee_local $2 - (i32.load offset=8 - (get_local $1) - ) + (block + (if + (i32.lt_u + (get_local $6) + (get_local $11) ) - (tee_local $3 - (i32.add - (i32.shl - (get_local $5) - (i32.const 3) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 8) + ) ) - (i32.const 216) ) + (get_local $1) + ) + (set_local $4 + (get_local $3) ) + (call $_abort) ) - (block - (if - (i32.lt_u - (get_local $2) - (get_local $11) + ) + ) + (i32.store offset=12 + (get_local $2) + (get_local $6) + ) + (i32.store + (get_local $4) + (get_local $2) + ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) + (br $do-once) + ) + ) + (set_local $12 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $4 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) + ) + (block $do-once0 + (if + (i32.eqz + (tee_local $5 + (i32.load + (tee_local $4 + (i32.add + (tee_local $7 + (i32.add + (get_local $1) + (i32.const 16) + ) + ) + (i32.const 4) + ) ) - (call $_abort) ) - (if - (i32.ne - (i32.load offset=12 - (get_local $2) + ) + ) + (block + (br_if $do-once0 + (i32.eqz + (tee_local $5 + (i32.load + (get_local $7) ) - (get_local $1) ) - (call $_abort) ) ) + (set_local $4 + (get_local $7) + ) ) + ) + (loop $while-in (if - (i32.eq - (get_local $6) - (get_local $2) - ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $5) - ) - (i32.const -1) + (tee_local $7 + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 20) ) ) ) - (set_local $2 - (get_local $1) + ) + (block + (set_local $5 + (get_local $7) ) - (set_local $3 - (get_local $0) + (set_local $4 + (get_local $10) ) - (br $do-once) + (br $while-in) ) ) (if - (i32.eq - (get_local $6) - (get_local $3) - ) - (set_local $4 - (i32.add - (get_local $6) - (i32.const 8) + (tee_local $7 + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 16) + ) + ) ) ) (block - (if - (i32.lt_u - (get_local $6) - (get_local $11) - ) - (call $_abort) + (set_local $5 + (get_local $7) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) - ) - (get_local $1) - ) - (set_local $4 - (get_local $3) - ) - (call $_abort) + (set_local $4 + (get_local $10) ) + (br $while-in) ) ) - (i32.store offset=12 - (get_local $2) - (get_local $6) - ) - (i32.store + ) + (if + (i32.lt_u (get_local $4) - (get_local $2) - ) - (set_local $2 - (get_local $1) + (get_local $11) ) - (set_local $3 - (get_local $0) + (call $_abort) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $6 + (get_local $5) + ) ) - (br $do-once) - ) - ) - (set_local $12 - (i32.load offset=24 - (get_local $1) ) ) - (block $do-once0 + (block (if - (i32.eq - (tee_local $4 - (i32.load offset=12 + (i32.lt_u + (tee_local $10 + (i32.load offset=8 (get_local $1) ) ) + (get_local $11) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add + (get_local $10) + (i32.const 12) + ) + ) + ) (get_local $1) ) - (block - (if - (i32.eqz - (tee_local $5 - (i32.load - (tee_local $4 - (i32.add - (tee_local $7 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add + (get_local $4) + (i32.const 8) ) ) - (block - (br_if $do-once0 - (i32.eqz + ) + (get_local $1) + ) + (block + (i32.store + (get_local $7) + (get_local $4) + ) + (i32.store + (get_local $5) + (get_local $10) + ) + (set_local $6 + (get_local $4) + ) + ) + (call $_abort) + ) + ) + ) + (if + (get_local $12) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $4 + (i32.add + (i32.shl (tee_local $5 - (i32.load - (get_local $7) + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - ) - (set_local $4 - (get_local $7) + (i32.const 480) ) ) ) - (loop $while-in - (if - (tee_local $7 - (i32.load - (tee_local $10 - (i32.add - (get_local $5) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $5 - (get_local $7) - ) - (set_local $4 - (get_local $10) - ) - (br $while-in) - ) + ) + (block + (i32.store + (get_local $4) + (get_local $6) + ) + (if + (i32.eqz + (get_local $6) ) - (if - (tee_local $7 - (i32.load - (tee_local $10 - (i32.add + (block + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) (get_local $5) - (i32.const 16) ) + (i32.const -1) ) ) ) - (block - (set_local $5 - (get_local $7) - ) - (set_local $4 - (get_local $10) - ) - (br $while-in) - ) - ) - ) - (if - (i32.lt_u - (get_local $4) - (get_local $11) - ) - (call $_abort) - (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $2 + (get_local $1) ) - (set_local $6 - (get_local $5) + (set_local $3 + (get_local $0) ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $10 - (i32.load offset=8 - (get_local $1) - ) - ) - (get_local $11) - ) - (call $_abort) - ) - (if - (i32.ne + (get_local $12) (i32.load - (tee_local $7 - (i32.add - (get_local $10) - (i32.const 12) - ) - ) + (i32.const 192) ) - (get_local $1) ) (call $_abort) ) (if (i32.eq (i32.load - (tee_local $5 + (tee_local $4 (i32.add - (get_local $4) - (i32.const 8) + (get_local $12) + (i32.const 16) ) ) ) (get_local $1) ) - (block - (i32.store - (get_local $7) - (get_local $4) - ) - (i32.store - (get_local $5) - (get_local $10) - ) - (set_local $6 - (get_local $4) - ) - ) - (call $_abort) - ) - ) - ) - ) - (if - (get_local $12) - (block - (if - (i32.eq - (get_local $1) - (i32.load - (tee_local $4 - (i32.add - (i32.shl - (tee_local $5 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 480) - ) - ) - ) - ) - (block (i32.store (get_local $4) (get_local $6) ) - (if - (i32.eqz - (get_local $6) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $5) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) - (br $do-once) - ) + (i32.store offset=20 + (get_local $12) + (get_local $6) ) ) - (block - (if - (i32.lt_u - (get_local $12) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) + (if + (i32.eqz + (get_local $6) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $12) - (i32.const 16) - ) - ) - ) + (block + (set_local $2 (get_local $1) ) - (i32.store - (get_local $4) - (get_local $6) - ) - (i32.store offset=20 - (get_local $12) - (get_local $6) + (set_local $3 + (get_local $0) ) + (br $do-once) ) - (if - (i32.eqz - (get_local $6) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) - (br $do-once) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $6) + (tee_local $5 + (i32.load + (i32.const 192) ) ) ) - (if - (i32.lt_u - (get_local $6) - (tee_local $5 - (i32.load - (i32.const 192) + (call $_abort) + ) + (i32.store offset=24 + (get_local $6) + (get_local $12) + ) + (if + (tee_local $7 + (i32.load + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) ) ) ) - (call $_abort) - ) - (i32.store offset=24 - (get_local $6) - (get_local $12) ) (if - (tee_local $7 - (i32.load - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) + (i32.lt_u + (get_local $7) + (get_local $5) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=16 + (get_local $6) (get_local $7) - (get_local $5) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $6) - (get_local $7) - ) - (i32.store offset=24 - (get_local $7) - (get_local $6) - ) + (i32.store offset=24 + (get_local $7) + (get_local $6) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $4) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $4) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $6) (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) - ) - (block (set_local $2 (get_local $1) ) @@ -13762,16 +13675,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) + ) ) ) ) @@ -14063,168 +13984,166 @@ (get_local $8) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $8) - ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $8) ) - (get_local $8) ) - (block - (if - (i32.eqz - (tee_local $3 - (i32.load - (tee_local $0 - (i32.add - (tee_local $1 - (i32.add - (get_local $8) - (i32.const 16) - ) + (get_local $8) + ) + (block $do-once6 + (if + (i32.eqz + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (tee_local $1 + (i32.add + (get_local $8) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) ) - (block - (br_if $do-once6 - (i32.eqz - (tee_local $3 - (i32.load - (get_local $1) - ) + ) + (block + (br_if $do-once6 + (i32.eqz + (tee_local $3 + (i32.load + (get_local $1) ) ) ) - (set_local $0 - (get_local $1) - ) + ) + (set_local $0 + (get_local $1) ) ) - (loop $while-in9 - (if - (tee_local $1 - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 20) - ) + ) + (loop $while-in9 + (if + (tee_local $1 + (i32.load + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 20) ) ) ) - (block - (set_local $3 - (get_local $1) - ) - (set_local $0 - (get_local $4) - ) - (br $while-in9) - ) ) - (if - (tee_local $1 - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 16) - ) - ) - ) + (block + (set_local $3 + (get_local $1) ) - (block - (set_local $3 - (get_local $1) - ) - (set_local $0 - (get_local $4) - ) - (br $while-in9) + (set_local $0 + (get_local $4) ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $0) + (tee_local $1 (i32.load - (i32.const 192) + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 16) + ) + ) ) ) - (call $_abort) (block - (i32.store - (get_local $0) - (i32.const 0) + (set_local $3 + (get_local $1) ) - (set_local $9 - (get_local $3) + (set_local $0 + (get_local $4) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $4 - (i32.load offset=8 - (get_local $8) - ) - ) - (i32.load - (i32.const 192) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $9 + (get_local $3) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $4 + (i32.load offset=8 + (get_local $8) ) ) - (call $_abort) + (i32.load + (i32.const 192) + ) ) - (if - (i32.ne - (i32.load - (tee_local $1 - (i32.add - (get_local $4) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $1 + (i32.add + (get_local $4) + (i32.const 12) ) ) - (get_local $8) ) - (call $_abort) + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $1) - (get_local $0) - ) - (i32.store - (get_local $3) - (get_local $4) - ) - (set_local $9 - (get_local $0) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $1) + (get_local $0) + ) + (i32.store + (get_local $3) + (get_local $4) + ) + (set_local $9 + (get_local $0) ) - (call $_abort) ) + (call $_abort) ) ) ) @@ -14642,202 +14561,200 @@ (get_local $2) (i32.const 0) ) - (block $do-once12 - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) - ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $5) - ) + ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $5) ) ) - (block - (set_local $5 - (i32.shl - (get_local $3) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $5) - (i32.const 1) - ) - ) - (i32.eq + ) + (block $do-once12 + (set_local $5 + (i32.shl + (get_local $3) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $5) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $5) + (i32.const 31) + ) ) ) - (set_local $0 - (i32.load - (get_local $4) - ) + ) + (set_local $0 + (i32.load + (get_local $4) ) - (block $__rjto$1 - (block $__rjti$1 - (loop $while-in15 - (br_if $__rjti$1 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (block $__rjto$1 + (block $__rjti$1 + (loop $while-in15 + (br_if $__rjti$1 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) - (get_local $3) + (i32.const -8) ) + (get_local $3) ) - (set_local $4 - (i32.shl - (get_local $5) - (i32.const 1) - ) + ) + (set_local $4 + (i32.shl + (get_local $5) + (i32.const 1) ) - (if - (tee_local $1 - (i32.load - (tee_local $5 + ) + (if + (tee_local $1 + (i32.load + (tee_local $5 + (i32.add (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $5) - (i32.const 31) - ) - (i32.const 2) + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $5) + (i32.const 31) ) + (i32.const 2) ) ) ) ) - (block - (set_local $5 - (get_local $4) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in15) - ) - ) - ) - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) ) - (call $_abort) (block - (i32.store - (get_local $5) - (get_local $2) - ) - (i32.store offset=24 - (get_local $2) - (get_local $0) - ) - (i32.store offset=12 - (get_local $2) - (get_local $2) + (set_local $5 + (get_local $4) ) - (i32.store offset=8 - (get_local $2) - (get_local $2) + (set_local $0 + (get_local $1) ) - (br $do-once12) + (br $while-in15) ) ) - (br $__rjto$1) ) (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $3) + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store offset=12 - (get_local $4) - (get_local $2) - ) (i32.store - (get_local $1) + (get_local $5) (get_local $2) ) - (i32.store offset=8 + (i32.store offset=24 (get_local $2) - (get_local $4) + (get_local $0) ) (i32.store offset=12 (get_local $2) - (get_local $0) + (get_local $2) ) - (i32.store offset=24 + (i32.store offset=8 + (get_local $2) (get_local $2) - (i32.const 0) ) + (br $do-once12) ) - (call $_abort) ) + (br $__rjto$1) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $1) - (get_local $0) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $1 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + ) + ) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (i32.ge_u + (get_local $0) + (get_local $3) + ) ) + (block + (i32.store offset=12 + (get_local $4) + (get_local $2) + ) + (i32.store + (get_local $1) + (get_local $2) + ) + (i32.store offset=8 + (get_local $2) + (get_local $4) + ) + (i32.store offset=12 + (get_local $2) + (get_local $0) + ) + (i32.store offset=24 + (get_local $2) + (i32.const 0) + ) + ) + (call $_abort) ) - (i32.store - (get_local $4) - (get_local $2) - ) - (i32.store offset=24 - (get_local $2) - (get_local $4) - ) - (i32.store offset=12 - (get_local $2) - (get_local $2) - ) - (i32.store offset=8 - (get_local $2) - (get_local $2) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) ) ) + (i32.store + (get_local $4) + (get_local $2) + ) + (i32.store offset=24 + (get_local $2) + (get_local $4) + ) + (i32.store offset=12 + (get_local $2) + (get_local $2) + ) + (i32.store offset=8 + (get_local $2) + (get_local $2) + ) ) ) (i32.store diff --git a/test/emcc_hello_world.fromasm.imprecise b/test/emcc_hello_world.fromasm.imprecise index 702b3f170..ff64fbb71 100644 --- a/test/emcc_hello_world.fromasm.imprecise +++ b/test/emcc_hello_world.fromasm.imprecise @@ -544,10 +544,10 @@ (func $_fflush (; 32 ;) (; has Stack IR ;) (param $0 i32) (result i32) (local $1 i32) (local $2 i32) - (block $do-once - (if - (get_local $0) - (block + (if + (get_local $0) + (set_local $0 + (block $do-once (result i32) (if (i32.le_s (i32.load offset=76 @@ -555,76 +555,71 @@ ) (i32.const -1) ) - (block - (set_local $0 - (call $___fflush_unlocked - (get_local $0) - ) + (br $do-once + (call $___fflush_unlocked + (get_local $0) ) - (br $do-once) ) ) - (set_local $0 - (call $___fflush_unlocked - (get_local $0) - ) + (call $___fflush_unlocked + (get_local $0) ) ) - (block - (set_local $0 - (if (result i32) + ) + (block + (set_local $0 + (if (result i32) + (i32.load + (i32.const 12) + ) + (call $_fflush (i32.load (i32.const 12) ) - (call $_fflush - (i32.load - (i32.const 12) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $___lock - (i32.const 44) - ) - (if - (tee_local $1 - (i32.load - (i32.const 40) - ) + ) + (call $___lock + (i32.const 44) + ) + (if + (tee_local $1 + (i32.load + (i32.const 40) ) - (loop $while-in - (if - (i32.gt_u - (i32.load offset=20 - (get_local $1) - ) - (i32.load offset=28 - (get_local $1) - ) + ) + (loop $while-in + (if + (i32.gt_u + (i32.load offset=20 + (get_local $1) ) - (set_local $0 - (i32.or - (call $___fflush_unlocked - (get_local $1) - ) - (get_local $0) - ) + (i32.load offset=28 + (get_local $1) ) ) - (br_if $while-in - (tee_local $1 - (i32.load offset=56 + (set_local $0 + (i32.or + (call $___fflush_unlocked (get_local $1) ) + (get_local $0) + ) + ) + ) + (br_if $while-in + (tee_local $1 + (i32.load offset=56 + (get_local $1) ) ) ) - ) - (call $___unlock - (i32.const 44) ) ) + (call $___unlock + (i32.const 44) + ) ) ) (get_local $0) @@ -1356,90 +1351,88 @@ ) ) (set_local $2 - (block $label$break$L10 (result i32) - (if (result i32) - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) + (if (result i32) + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) ) - (block (result i32) - (set_local $3 - (get_local $1) - ) - (loop $while-in - (drop - (br_if $label$break$L10 - (i32.const 0) - (i32.eqz - (get_local $3) - ) + (i32.const -1) + ) + (block $label$break$L10 (result i32) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (drop + (br_if $label$break$L10 + (i32.const 0) + (i32.eqz + (get_local $3) ) ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) + ) + (if + (i32.ne + (i32.load8_s + (i32.add + (get_local $0) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) ) ) - (i32.const 10) ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) + (i32.const 10) + ) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) ) - (br_if $label$break$L5 - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 7) + ) + (br_if $label$break$L5 + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 7) ) + (i32.const 2) ) - (get_local $3) ) + (get_local $3) ) - (set_local $4 - (i32.load - (get_local $5) - ) + ) + (set_local $4 + (i32.load + (get_local $5) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) - ) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) - (set_local $0 - (i32.add - (get_local $0) - (get_local $3) - ) + ) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) ) - (get_local $3) ) - (i32.const 0) + (get_local $3) ) + (i32.const 0) ) ) (drop @@ -1546,177 +1539,175 @@ ) ) (func $_wcrtomb (; 38 ;) (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32) - (block $do-once (result i32) - (if (result i32) - (get_local $0) - (block (result i32) - (if - (i32.lt_u + (if (result i32) + (get_local $0) + (block $do-once (result i32) + (if + (i32.lt_u + (get_local $1) + (i32.const 128) + ) + (block + (i32.store8 + (get_local $0) (get_local $1) - (i32.const 128) ) - (block - (i32.store8 - (get_local $0) - (get_local $1) - ) - (br $do-once - (i32.const 1) - ) + (br $do-once + (i32.const 1) ) ) - (if - (i32.lt_u - (get_local $1) - (i32.const 2048) - ) - (block - (i32.store8 - (get_local $0) - (i32.or - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 192) + ) + (if + (i32.lt_u + (get_local $1) + (i32.const 2048) + ) + (block + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 6) ) + (i32.const 192) ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (get_local $1) - (i32.const 63) - ) - (i32.const 128) + ) + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) ) + (i32.const 128) ) - (br $do-once - (i32.const 2) - ) + ) + (br $do-once + (i32.const 2) ) ) - (if - (i32.or - (i32.lt_u + ) + (if + (i32.or + (i32.lt_u + (get_local $1) + (i32.const 55296) + ) + (i32.eq + (i32.and (get_local $1) - (i32.const 55296) + (i32.const -8192) ) - (i32.eq - (i32.and + (i32.const 57344) + ) + ) + (block + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u (get_local $1) - (i32.const -8192) + (i32.const 12) ) - (i32.const 57344) + (i32.const 224) ) ) - (block - (i32.store8 - (get_local $0) - (i32.or + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and (i32.shr_u (get_local $1) - (i32.const 12) - ) - (i32.const 224) - ) - ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 63) + (i32.const 6) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.store8 offset=2 - (get_local $0) - (i32.or - (i32.and - (get_local $1) - (i32.const 63) - ) - (i32.const 128) + ) + (i32.store8 offset=2 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) ) + (i32.const 128) ) - (br $do-once - (i32.const 3) - ) + ) + (br $do-once + (i32.const 3) ) ) - (if (result i32) - (i32.lt_u - (i32.add - (get_local $1) - (i32.const -65536) + ) + (if (result i32) + (i32.lt_u + (i32.add + (get_local $1) + (i32.const -65536) + ) + (i32.const 1048576) + ) + (block (result i32) + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 18) + ) + (i32.const 240) ) - (i32.const 1048576) ) - (block (result i32) - (i32.store8 - (get_local $0) - (i32.or + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and (i32.shr_u (get_local $1) - (i32.const 18) - ) - (i32.const 240) - ) - ) - (i32.store8 offset=1 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 12) - ) - (i32.const 63) - ) - (i32.const 128) - ) - ) - (i32.store8 offset=2 - (get_local $0) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.const 6) - ) - (i32.const 63) + (i32.const 12) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.store8 offset=3 - (get_local $0) - (i32.or - (i32.and + ) + (i32.store8 offset=2 + (get_local $0) + (i32.or + (i32.and + (i32.shr_u (get_local $1) - (i32.const 63) + (i32.const 6) ) - (i32.const 128) + (i32.const 63) ) + (i32.const 128) ) - (i32.const 4) ) - (block (result i32) - (i32.store - (call $___errno_location) - (i32.const 84) + (i32.store8 offset=3 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) + ) + (i32.const 128) ) - (i32.const -1) ) + (i32.const 4) + ) + (block (result i32) + (i32.store + (call $___errno_location) + (i32.const 84) + ) + (i32.const -1) ) ) - (i32.const 1) ) + (i32.const 1) ) ) (func $_wctomb (; 39 ;) (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32) @@ -2484,572 +2475,566 @@ ) ) (set_local $1 - (block $label$break$L25 (result i32) - (if (result i32) - (i32.eq - (i32.and - (tee_local $11 - (i32.shr_s - (i32.shl - (get_local $6) - (i32.const 24) - ) + (if (result i32) + (i32.eq + (i32.and + (tee_local $11 + (i32.shr_s + (i32.shl + (get_local $6) (i32.const 24) ) + (i32.const 24) ) - (i32.const -32) ) - (i32.const 32) + (i32.const -32) ) - (block (result i32) - (set_local $1 - (get_local $6) - ) - (set_local $6 - (get_local $11) - ) - (set_local $11 - (i32.const 0) - ) - (loop $while-in4 - (if - (i32.eqz - (i32.and - (i32.shl - (i32.const 1) - (i32.add - (get_local $6) - (i32.const -32) - ) + (i32.const 32) + ) + (block $label$break$L25 (result i32) + (set_local $1 + (get_local $6) + ) + (set_local $6 + (get_local $11) + ) + (set_local $11 + (i32.const 0) + ) + (loop $while-in4 + (if + (i32.eqz + (i32.and + (i32.shl + (i32.const 1) + (i32.add + (get_local $6) + (i32.const -32) ) - (i32.const 75913) ) + (i32.const 75913) ) - (block - (set_local $6 - (get_local $1) - ) - (br $label$break$L25 - (get_local $11) - ) + ) + (block + (set_local $6 + (get_local $1) + ) + (br $label$break$L25 + (get_local $11) ) ) - (set_local $11 - (i32.or - (i32.shl - (i32.const 1) - (i32.add - (i32.shr_s - (i32.shl - (get_local $1) - (i32.const 24) - ) + ) + (set_local $11 + (i32.or + (i32.shl + (i32.const 1) + (i32.add + (i32.shr_s + (i32.shl + (get_local $1) (i32.const 24) ) - (i32.const -32) + (i32.const 24) ) + (i32.const -32) ) - (get_local $11) ) + (get_local $11) ) - (br_if $while-in4 - (i32.eq - (i32.and - (tee_local $6 - (tee_local $1 - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (br_if $while-in4 + (i32.eq + (i32.and + (tee_local $6 + (tee_local $1 + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) ) ) - (i32.const -32) ) - (i32.const 32) + (i32.const -32) ) + (i32.const 32) ) ) - (set_local $6 - (get_local $1) - ) - (get_local $11) ) - (i32.const 0) + (set_local $6 + (get_local $1) + ) + (get_local $11) ) + (i32.const 0) ) ) (set_local $1 - (block $do-once5 (result i32) - (if (result i32) - (i32.eq - (i32.and - (get_local $6) - (i32.const 255) - ) - (i32.const 42) + (if (result i32) + (i32.eq + (i32.and + (get_local $6) + (i32.const 255) ) - (block (result i32) - (set_local $10 - (block $__rjto$0 (result i32) - (if - (i32.eqz - (i32.or - (i32.ge_u - (tee_local $11 - (i32.add - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const 42) + ) + (block $do-once5 (result i32) + (set_local $10 + (block $__rjto$0 (result i32) + (if + (i32.eqz + (i32.or + (i32.ge_u + (tee_local $11 + (i32.add + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (i32.ne - (i32.load8_s offset=2 - (get_local $10) - ) - (i32.const 36) + (i32.const 10) + ) + (i32.ne + (i32.load8_s offset=2 + (get_local $10) ) + (i32.const 36) ) ) - (block - (i32.store - (i32.add - (get_local $4) - (i32.shl - (get_local $11) - (i32.const 2) - ) + ) + (block + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $11) + (i32.const 2) ) - (i32.const 10) ) - (drop - (i32.load offset=4 - (tee_local $6 - (i32.add - (get_local $3) - (i32.shl - (i32.add - (i32.load8_s - (get_local $6) - ) - (i32.const -48) + (i32.const 10) + ) + (drop + (i32.load offset=4 + (tee_local $6 + (i32.add + (get_local $3) + (i32.shl + (i32.add + (i32.load8_s + (get_local $6) ) - (i32.const 3) + (i32.const -48) ) + (i32.const 3) ) ) ) ) - (set_local $8 - (i32.const 1) - ) - (set_local $15 - (i32.load - (get_local $6) - ) + ) + (set_local $8 + (i32.const 1) + ) + (set_local $15 + (i32.load + (get_local $6) ) - (br $__rjto$0 - (i32.add - (get_local $10) - (i32.const 3) - ) + ) + (br $__rjto$0 + (i32.add + (get_local $10) + (i32.const 3) ) ) ) - (if - (get_local $8) - (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) + ) + (if + (get_local $8) + (block + (set_local $17 + (i32.const -1) ) + (br $label$break$L1) ) - (if - (i32.eqz - (get_local $28) + ) + (if + (i32.eqz + (get_local $28) + ) + (block + (set_local $11 + (get_local $1) ) - (block - (set_local $11 - (get_local $1) - ) - (set_local $10 - (get_local $6) - ) - (set_local $15 - (i32.const 0) - ) - (br $do-once5 - (i32.const 0) - ) + (set_local $10 + (get_local $6) + ) + (set_local $15 + (i32.const 0) + ) + (br $do-once5 + (i32.const 0) ) ) - (set_local $15 - (i32.load - (tee_local $10 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) + ) + (set_local $15 + (i32.load + (tee_local $10 + (i32.and + (i32.add + (i32.load + (get_local $2) ) - (i32.const -4) + (i32.const 3) ) + (i32.const -4) ) ) ) - (i32.store - (get_local $2) - (i32.add - (get_local $10) - (i32.const 4) - ) - ) - (set_local $8 - (i32.const 0) + ) + (i32.store + (get_local $2) + (i32.add + (get_local $10) + (i32.const 4) ) - (get_local $6) ) + (set_local $8 + (i32.const 0) + ) + (get_local $6) ) - (set_local $11 - (if (result i32) - (i32.lt_s - (get_local $15) - (i32.const 0) - ) - (block (result i32) - (set_local $15 - (i32.sub - (i32.const 0) - (get_local $15) - ) - ) - (i32.or - (get_local $1) - (i32.const 8192) + ) + (set_local $11 + (if (result i32) + (i32.lt_s + (get_local $15) + (i32.const 0) + ) + (block (result i32) + (set_local $15 + (i32.sub + (i32.const 0) + (get_local $15) ) ) - (get_local $1) + (i32.or + (get_local $1) + (i32.const 8192) + ) ) + (get_local $1) ) - (get_local $8) ) - (if (result i32) - (i32.lt_u - (tee_local $6 - (i32.add - (i32.shr_s - (i32.shl - (get_local $6) - (i32.const 24) - ) + (get_local $8) + ) + (if (result i32) + (i32.lt_u + (tee_local $6 + (i32.add + (i32.shr_s + (i32.shl + (get_local $6) (i32.const 24) ) - (i32.const -48) + (i32.const 24) ) + (i32.const -48) ) - (i32.const 10) ) - (block (result i32) - (set_local $11 - (i32.const 0) - ) - (loop $while-in8 - (set_local $6 - (i32.add - (i32.mul - (get_local $11) - (i32.const 10) - ) - (get_local $6) + (i32.const 10) + ) + (block (result i32) + (set_local $11 + (i32.const 0) + ) + (loop $while-in8 + (set_local $6 + (i32.add + (i32.mul + (get_local $11) + (i32.const 10) ) + (get_local $6) ) - (if - (i32.lt_u - (tee_local $9 - (i32.add - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (if + (i32.lt_u + (tee_local $9 + (i32.add + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (block - (set_local $11 - (get_local $6) - ) - (set_local $6 - (get_local $9) - ) - (br $while-in8) - ) - ) - ) - (if (result i32) - (i32.lt_s - (get_local $6) - (i32.const 0) + (i32.const 10) ) (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) - ) - (block (result i32) (set_local $11 - (get_local $1) - ) - (set_local $15 (get_local $6) ) - (get_local $8) + (set_local $6 + (get_local $9) + ) + (br $while-in8) ) ) ) - (block (result i32) - (set_local $11 - (get_local $1) - ) - (set_local $15 + (if (result i32) + (i32.lt_s + (get_local $6) (i32.const 0) ) - (get_local $8) + (block + (set_local $17 + (i32.const -1) + ) + (br $label$break$L1) + ) + (block (result i32) + (set_local $11 + (get_local $1) + ) + (set_local $15 + (get_local $6) + ) + (get_local $8) + ) + ) + ) + (block (result i32) + (set_local $11 + (get_local $1) ) + (set_local $15 + (i32.const 0) + ) + (get_local $8) ) ) ) ) (set_local $6 - (block $label$break$L46 (result i32) - (if (result i32) - (i32.eq - (i32.load8_s - (get_local $10) - ) - (i32.const 46) + (if (result i32) + (i32.eq + (i32.load8_s + (get_local $10) ) - (block (result i32) - (if - (i32.ne - (tee_local $8 - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const 46) + ) + (block $label$break$L46 (result i32) + (if + (i32.ne + (tee_local $8 + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 1) ) ) ) - (i32.const 42) ) - (block - (set_local $6 - (if (result i32) - (i32.lt_u - (tee_local $9 - (i32.add - (get_local $8) - (i32.const -48) - ) + (i32.const 42) + ) + (block + (set_local $6 + (if (result i32) + (i32.lt_u + (tee_local $9 + (i32.add + (get_local $8) + (i32.const -48) ) - (i32.const 10) ) - (block (result i32) - (set_local $10 - (get_local $6) - ) - (set_local $8 - (i32.const 0) - ) - (get_local $9) + (i32.const 10) + ) + (block (result i32) + (set_local $10 + (get_local $6) ) - (block - (set_local $10 - (get_local $6) - ) - (br $label$break$L46 - (i32.const 0) - ) + (set_local $8 + (i32.const 0) + ) + (get_local $9) + ) + (block + (set_local $10 + (get_local $6) + ) + (br $label$break$L46 + (i32.const 0) ) ) ) - (loop $while-in11 - (drop - (br_if $label$break$L46 - (tee_local $6 - (i32.add - (i32.mul - (get_local $8) - (i32.const 10) - ) - (get_local $6) + ) + (loop $while-in11 + (drop + (br_if $label$break$L46 + (tee_local $6 + (i32.add + (i32.mul + (get_local $8) + (i32.const 10) ) + (get_local $6) ) - (i32.ge_u - (tee_local $9 - (i32.add - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (i32.ge_u + (tee_local $9 + (i32.add + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) + (i32.const 10) ) ) - (set_local $8 - (get_local $6) - ) - (set_local $6 - (get_local $9) - ) - (br $while-in11) ) + (set_local $8 + (get_local $6) + ) + (set_local $6 + (get_local $9) + ) + (br $while-in11) ) ) - (if - (i32.lt_u - (tee_local $8 - (i32.add - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 2) - ) + ) + (if + (i32.lt_u + (tee_local $8 + (i32.add + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 2) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (if - (i32.eq - (i32.load8_s offset=3 - (get_local $10) - ) - (i32.const 36) + (i32.const 10) + ) + (if + (i32.eq + (i32.load8_s offset=3 + (get_local $10) ) - (block - (i32.store - (i32.add - (get_local $4) - (i32.shl - (get_local $8) - (i32.const 2) - ) + (i32.const 36) + ) + (block + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $8) + (i32.const 2) ) - (i32.const 10) ) - (drop - (i32.load offset=4 - (tee_local $6 - (i32.add - (get_local $3) - (i32.shl - (i32.add - (i32.load8_s - (get_local $6) - ) - (i32.const -48) + (i32.const 10) + ) + (drop + (i32.load offset=4 + (tee_local $6 + (i32.add + (get_local $3) + (i32.shl + (i32.add + (i32.load8_s + (get_local $6) ) - (i32.const 3) + (i32.const -48) ) + (i32.const 3) ) ) ) ) - (set_local $10 - (i32.add - (get_local $10) - (i32.const 4) - ) + ) + (set_local $10 + (i32.add + (get_local $10) + (i32.const 4) ) - (br $label$break$L46 - (i32.load - (get_local $6) - ) + ) + (br $label$break$L46 + (i32.load + (get_local $6) ) ) ) ) - (if - (get_local $1) - (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) + ) + (if + (get_local $1) + (block + (set_local $17 + (i32.const -1) ) + (br $label$break$L1) ) - (if (result i32) - (get_local $28) - (block (result i32) - (set_local $8 - (i32.load - (tee_local $10 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) + ) + (if (result i32) + (get_local $28) + (block (result i32) + (set_local $8 + (i32.load + (tee_local $10 + (i32.and + (i32.add + (i32.load + (get_local $2) ) - (i32.const -4) + (i32.const 3) ) + (i32.const -4) ) ) ) - (i32.store - (get_local $2) - (i32.add - (get_local $10) - (i32.const 4) - ) - ) - (set_local $10 - (get_local $6) - ) - (get_local $8) ) - (block (result i32) - (set_local $10 - (get_local $6) + (i32.store + (get_local $2) + (i32.add + (get_local $10) + (i32.const 4) ) - (i32.const 0) ) + (set_local $10 + (get_local $6) + ) + (get_local $8) + ) + (block (result i32) + (set_local $10 + (get_local $6) + ) + (i32.const 0) ) ) - (i32.const -1) ) + (i32.const -1) ) ) (set_local $8 @@ -3826,2371 +3811,2347 @@ (get_local $16) ) (set_local $7 - (block $do-once49 (result i32) - (if (result i32) - (i32.lt_u - (i32.and - (i32.load offset=4 - (get_global $tempDoublePtr) - ) - (i32.const 2146435072) + (if (result i32) + (i32.lt_u + (i32.and + (i32.load offset=4 + (get_global $tempDoublePtr) ) (i32.const 2146435072) ) - (block (result i32) - (if - (tee_local $5 - (f64.ne - (tee_local $23 - (f64.mul - (call $_frexp - (get_local $16) - (get_local $20) - ) - (f64.const 2) + (i32.const 2146435072) + ) + (block $do-once49 (result i32) + (if + (tee_local $5 + (f64.ne + (tee_local $23 + (f64.mul + (call $_frexp + (get_local $16) + (get_local $20) ) + (f64.const 2) ) - (f64.const 0) ) + (f64.const 0) ) - (i32.store - (get_local $20) - (i32.add - (i32.load - (get_local $20) - ) - (i32.const -1) + ) + (i32.store + (get_local $20) + (i32.add + (i32.load + (get_local $20) ) + (i32.const -1) ) ) - (if - (i32.eq - (tee_local $24 - (i32.or - (get_local $19) - (i32.const 32) - ) + ) + (if + (i32.eq + (tee_local $24 + (i32.or + (get_local $19) + (i32.const 32) ) - (i32.const 97) ) - (block - (set_local $9 - (select - (i32.add - (get_local $30) - (i32.const 9) - ) + (i32.const 97) + ) + (block + (set_local $9 + (select + (i32.add (get_local $30) - (tee_local $13 - (i32.and - (get_local $19) - (i32.const 32) - ) + (i32.const 9) + ) + (get_local $30) + (tee_local $13 + (i32.and + (get_local $19) + (i32.const 32) ) ) ) - (set_local $16 - (if (result f64) - (i32.or - (i32.gt_u - (get_local $6) - (i32.const 11) - ) - (i32.eqz - (tee_local $5 - (i32.sub - (i32.const 12) - (get_local $6) - ) + ) + (set_local $16 + (if (result f64) + (i32.or + (i32.gt_u + (get_local $6) + (i32.const 11) + ) + (i32.eqz + (tee_local $5 + (i32.sub + (i32.const 12) + (get_local $6) ) ) ) - (get_local $23) - (block (result f64) + ) + (get_local $23) + (block (result f64) + (set_local $16 + (f64.const 8) + ) + (loop $while-in54 (set_local $16 - (f64.const 8) - ) - (loop $while-in54 - (set_local $16 - (f64.mul - (get_local $16) - (f64.const 16) - ) + (f64.mul + (get_local $16) + (f64.const 16) ) - (br_if $while-in54 - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -1) - ) + ) + (br_if $while-in54 + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -1) ) ) ) - (select - (f64.neg - (f64.add - (get_local $16) - (f64.sub - (f64.neg - (get_local $23) - ) - (get_local $16) + ) + (select + (f64.neg + (f64.add + (get_local $16) + (f64.sub + (f64.neg + (get_local $23) ) - ) - ) - (f64.sub - (f64.add - (get_local $23) (get_local $16) ) + ) + ) + (f64.sub + (f64.add + (get_local $23) (get_local $16) ) - (i32.eq - (i32.load8_s - (get_local $9) - ) - (i32.const 45) + (get_local $16) + ) + (i32.eq + (i32.load8_s + (get_local $9) ) + (i32.const 45) ) ) ) ) - (if - (i32.eq - (tee_local $5 - (call $_fmt_u - (tee_local $5 - (select - (i32.sub - (i32.const 0) - (tee_local $7 - (i32.load - (get_local $20) - ) + ) + (if + (i32.eq + (tee_local $5 + (call $_fmt_u + (tee_local $5 + (select + (i32.sub + (i32.const 0) + (tee_local $7 + (i32.load + (get_local $20) ) ) + ) + (get_local $7) + (i32.lt_s (get_local $7) - (i32.lt_s - (get_local $7) - (i32.const 0) - ) + (i32.const 0) ) ) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $5) - (i32.const 0) - ) - (i32.const 31) + ) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $5) + (i32.const 0) ) (i32.const 31) ) - (get_local $33) + (i32.const 31) ) + (get_local $33) ) - (get_local $33) ) - (block - (i32.store8 - (get_local $42) - (i32.const 48) - ) - (set_local $5 - (get_local $42) - ) + (get_local $33) + ) + (block + (i32.store8 + (get_local $42) + (i32.const 48) + ) + (set_local $5 + (get_local $42) ) ) - (set_local $12 - (i32.or - (get_local $26) + ) + (set_local $12 + (i32.or + (get_local $26) + (i32.const 2) + ) + ) + (i32.store8 + (i32.add + (get_local $5) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_s + (get_local $7) + (i32.const 31) + ) (i32.const 2) ) + (i32.const 43) ) - (i32.store8 + ) + (i32.store8 + (tee_local $8 (i32.add (get_local $5) - (i32.const -1) + (i32.const -2) ) - (i32.add - (i32.and - (i32.shr_s - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - (i32.const 43) + ) + (i32.add + (get_local $19) + (i32.const 15) + ) + ) + (set_local $19 + (i32.lt_s + (get_local $6) + (i32.const 1) + ) + ) + (set_local $18 + (i32.eqz + (i32.and + (get_local $11) + (i32.const 8) ) ) + ) + (set_local $5 + (get_local $22) + ) + (loop $while-in56 (i32.store8 - (tee_local $8 - (i32.add - (get_local $5) - (i32.const -2) + (get_local $5) + (i32.or + (i32.load8_u + (i32.add + (tee_local $7 + (i32.trunc_s/f64 + (get_local $16) + ) + ) + (i32.const 4075) + ) ) - ) - (i32.add - (get_local $19) - (i32.const 15) + (get_local $13) ) ) - (set_local $19 - (i32.lt_s - (get_local $6) - (i32.const 1) - ) - ) - (set_local $18 - (i32.eqz - (i32.and - (get_local $11) - (i32.const 8) + (set_local $16 + (f64.mul + (f64.sub + (get_local $16) + (f64.convert_s/i32 + (get_local $7) + ) ) + (f64.const 16) ) ) (set_local $5 - (get_local $22) - ) - (loop $while-in56 - (i32.store8 - (get_local $5) - (i32.or - (i32.load8_u - (i32.add - (tee_local $7 - (i32.trunc_s/f64 - (get_local $16) - ) + (if (result i32) + (i32.eq + (i32.sub + (tee_local $7 + (i32.add + (get_local $5) + (i32.const 1) ) - (i32.const 4075) ) + (get_local $37) ) - (get_local $13) + (i32.const 1) ) - ) - (set_local $16 - (f64.mul - (f64.sub - (get_local $16) - (f64.convert_s/i32 - (get_local $7) + (if (result i32) + (i32.and + (get_local $18) + (i32.and + (get_local $19) + (f64.eq + (get_local $16) + (f64.const 0) + ) ) ) - (f64.const 16) - ) - ) - (set_local $5 - (block $do-once57 (result i32) - (if (result i32) - (i32.eq - (i32.sub - (tee_local $7 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (get_local $37) - ) - (i32.const 1) + (get_local $7) + (block (result i32) + (i32.store8 + (get_local $7) + (i32.const 46) ) - (block (result i32) - (drop - (br_if $do-once57 - (get_local $7) - (i32.and - (get_local $18) - (i32.and - (get_local $19) - (f64.eq - (get_local $16) - (f64.const 0) - ) - ) - ) - ) - ) - (i32.store8 - (get_local $7) - (i32.const 46) - ) - (i32.add - (get_local $5) - (i32.const 2) - ) + (i32.add + (get_local $5) + (i32.const 2) ) - (get_local $7) ) ) + (get_local $7) ) - (br_if $while-in56 - (f64.ne - (get_local $16) - (f64.const 0) - ) + ) + (br_if $while-in56 + (f64.ne + (get_local $16) + (f64.const 0) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $7 - (i32.add - (tee_local $6 - (select + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $7 + (i32.add + (tee_local $6 + (select + (i32.sub + (i32.add + (get_local $47) + (get_local $6) + ) + (get_local $8) + ) + (i32.add (i32.sub - (i32.add - (get_local $47) - (get_local $6) - ) + (get_local $45) (get_local $8) ) - (i32.add - (i32.sub - (get_local $45) - (get_local $8) - ) - (get_local $5) + (get_local $5) + ) + (i32.and + (i32.ne + (get_local $6) + (i32.const 0) ) - (i32.and - (i32.ne - (get_local $6) - (i32.const 0) - ) - (i32.lt_s - (i32.add - (get_local $46) - (get_local $5) - ) - (get_local $6) + (i32.lt_s + (i32.add + (get_local $46) + (get_local $5) ) + (get_local $6) ) ) ) - (get_local $12) ) + (get_local $12) ) - (get_local $11) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $9) - (get_local $12) + (get_local $11) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 65536) + (drop + (call $___fwritex + (get_local $9) + (get_local $12) + (get_local $0) ) ) - (set_local $5 - (i32.sub - (get_local $5) - (get_local $37) - ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 65536) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $22) - (get_local $5) + ) + (set_local $5 + (i32.sub + (get_local $5) + (get_local $37) + ) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.sub - (get_local $6) - (i32.add - (get_local $5) - (tee_local $5 - (i32.sub - (get_local $27) - (get_local $8) - ) - ) - ) + (drop + (call $___fwritex + (get_local $22) + (get_local $5) + (get_local $0) ) - (i32.const 0) - (i32.const 0) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (i32.sub + (get_local $6) + (i32.add + (get_local $5) + (tee_local $5 + (i32.sub + (get_local $27) + (get_local $8) ) - (i32.const 32) ) ) - (drop - (call $___fwritex - (get_local $8) - (get_local $5) + ) + (i32.const 0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 8192) + (drop + (call $___fwritex + (get_local $8) + (get_local $5) + (get_local $0) ) ) - (br $do-once49 - (select - (get_local $15) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (br $do-once49 + (select + (get_local $15) + (get_local $7) + (i32.lt_s (get_local $7) - (i32.lt_s - (get_local $7) - (get_local $15) - ) + (get_local $15) ) ) ) ) - (set_local $16 - (if (result f64) - (get_local $5) - (block (result f64) - (i32.store - (get_local $20) - (tee_local $5 - (i32.add - (i32.load - (get_local $20) - ) - (i32.const -28) + ) + (set_local $16 + (if (result f64) + (get_local $5) + (block (result f64) + (i32.store + (get_local $20) + (tee_local $5 + (i32.add + (i32.load + (get_local $20) ) + (i32.const -28) ) ) - (f64.mul - (get_local $23) - (f64.const 268435456) - ) ) - (block (result f64) - (set_local $5 - (i32.load - (get_local $20) - ) - ) + (f64.mul (get_local $23) + (f64.const 268435456) ) ) - ) - (set_local $7 - (tee_local $8 - (select - (get_local $48) - (get_local $49) - (i32.lt_s - (get_local $5) - (i32.const 0) + (block (result f64) + (set_local $5 + (i32.load + (get_local $20) ) ) + (get_local $23) ) ) - (loop $while-in60 - (i32.store - (get_local $7) - (tee_local $5 - (i32.trunc_u/f64 - (get_local $16) - ) + ) + (set_local $7 + (tee_local $8 + (select + (get_local $48) + (get_local $49) + (i32.lt_s + (get_local $5) + (i32.const 0) ) ) - (set_local $7 - (i32.add - (get_local $7) - (i32.const 4) + ) + ) + (loop $while-in60 + (i32.store + (get_local $7) + (tee_local $5 + (i32.trunc_u/f64 + (get_local $16) ) ) - (br_if $while-in60 - (f64.ne - (tee_local $16 - (f64.mul - (f64.sub - (get_local $16) - (f64.convert_u/i32 - (get_local $5) - ) + ) + (set_local $7 + (i32.add + (get_local $7) + (i32.const 4) + ) + ) + (br_if $while-in60 + (f64.ne + (tee_local $16 + (f64.mul + (f64.sub + (get_local $16) + (f64.convert_u/i32 + (get_local $5) ) - (f64.const 1e9) ) + (f64.const 1e9) ) - (f64.const 0) ) + (f64.const 0) ) ) - (if - (i32.gt_s - (tee_local $9 - (i32.load - (get_local $20) - ) + ) + (if + (i32.gt_s + (tee_local $9 + (i32.load + (get_local $20) ) - (i32.const 0) ) - (block - (set_local $5 - (get_local $8) - ) - (loop $while-in62 - (set_local $13 - (select - (i32.const 29) + (i32.const 0) + ) + (block + (set_local $5 + (get_local $8) + ) + (loop $while-in62 + (set_local $13 + (select + (i32.const 29) + (get_local $9) + (i32.gt_s (get_local $9) - (i32.gt_s - (get_local $9) - (i32.const 29) + (i32.const 29) + ) + ) + ) + (if + (i32.ge_u + (tee_local $9 + (i32.add + (get_local $7) + (i32.const -4) ) ) + (get_local $5) ) (block $do-once63 - (if - (i32.ge_u - (tee_local $9 - (i32.add - (get_local $7) - (i32.const -4) - ) - ) - (get_local $5) - ) - (block - (set_local $12 - (i32.const 0) - ) - (loop $while-in66 - (i32.store - (get_local $9) - (call $___uremdi3 - (tee_local $12 - (call $_i64Add - (call $_bitshift64Shl - (i32.load - (get_local $9) - ) - (i32.const 0) - (get_local $13) - ) - (get_global $tempRet0) - (get_local $12) - (i32.const 0) + (set_local $12 + (i32.const 0) + ) + (loop $while-in66 + (i32.store + (get_local $9) + (call $___uremdi3 + (tee_local $12 + (call $_i64Add + (call $_bitshift64Shl + (i32.load + (get_local $9) ) + (i32.const 0) + (get_local $13) ) - (tee_local $18 - (get_global $tempRet0) - ) - (i32.const 1000000000) - ) - ) - (set_local $12 - (call $___udivdi3 + (get_global $tempRet0) (get_local $12) - (get_local $18) - (i32.const 1000000000) + (i32.const 0) ) ) - (br_if $while-in66 - (i32.ge_u - (tee_local $9 - (i32.add - (get_local $9) - (i32.const -4) - ) - ) - (get_local $5) - ) + (tee_local $18 + (get_global $tempRet0) ) + (i32.const 1000000000) ) - (br_if $do-once63 - (i32.eqz - (get_local $12) - ) + ) + (set_local $12 + (call $___udivdi3 + (get_local $12) + (get_local $18) + (i32.const 1000000000) ) - (i32.store - (tee_local $5 + ) + (br_if $while-in66 + (i32.ge_u + (tee_local $9 (i32.add - (get_local $5) + (get_local $9) (i32.const -4) ) ) - (get_local $12) + (get_local $5) + ) + ) + ) + (br_if $do-once63 + (i32.eqz + (get_local $12) + ) + ) + (i32.store + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) ) ) + (get_local $12) ) ) - (loop $while-in68 + ) + (loop $while-in68 + (if + (i32.gt_u + (get_local $7) + (get_local $5) + ) (if - (i32.gt_u - (get_local $7) - (get_local $5) - ) - (if - (i32.eqz - (i32.load - (tee_local $9 - (i32.add - (get_local $7) - (i32.const -4) - ) + (i32.eqz + (i32.load + (tee_local $9 + (i32.add + (get_local $7) + (i32.const -4) ) ) ) - (block - (set_local $7 - (get_local $9) - ) - (br $while-in68) + ) + (block + (set_local $7 + (get_local $9) ) + (br $while-in68) ) ) ) - (i32.store - (get_local $20) - (tee_local $9 - (i32.sub - (i32.load - (get_local $20) - ) - (get_local $13) + ) + (i32.store + (get_local $20) + (tee_local $9 + (i32.sub + (i32.load + (get_local $20) ) + (get_local $13) ) ) - (br_if $while-in62 - (i32.gt_s - (get_local $9) - (i32.const 0) - ) + ) + (br_if $while-in62 + (i32.gt_s + (get_local $9) + (i32.const 0) ) ) ) - (set_local $5 - (get_local $8) - ) ) - (set_local $18 - (select - (i32.const 6) - (get_local $6) - (i32.lt_s - (get_local $6) - (i32.const 0) - ) - ) + (set_local $5 + (get_local $8) ) - (if + ) + (set_local $18 + (select + (i32.const 6) + (get_local $6) (i32.lt_s - (get_local $9) + (get_local $6) (i32.const 0) ) - (block - (set_local $21 - (i32.add - (i32.div_s - (i32.add - (get_local $18) - (i32.const 25) + ) + ) + (if + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + (block + (set_local $21 + (i32.add + (i32.div_s + (i32.add + (get_local $18) + (i32.const 25) + ) + (i32.const 9) + ) + (i32.const 1) + ) + ) + (set_local $31 + (i32.eq + (get_local $24) + (i32.const 102) + ) + ) + (set_local $6 + (get_local $5) + ) + (set_local $5 + (get_local $7) + ) + (loop $while-in70 + (set_local $13 + (select + (i32.const 9) + (tee_local $7 + (i32.sub + (i32.const 0) + (get_local $9) ) + ) + (i32.gt_s + (get_local $7) (i32.const 9) ) - (i32.const 1) ) ) - (set_local $31 - (i32.eq - (get_local $24) - (i32.const 102) + (if + (i32.lt_u + (get_local $6) + (get_local $5) ) - ) - (set_local $6 - (get_local $5) - ) - (set_local $5 - (get_local $7) - ) - (loop $while-in70 - (set_local $13 - (select - (i32.const 9) - (tee_local $7 - (i32.sub - (i32.const 0) - (get_local $9) + (block $do-once71 + (set_local $12 + (i32.add + (i32.shl + (i32.const 1) + (get_local $13) ) - ) - (i32.gt_s - (get_local $7) - (i32.const 9) + (i32.const -1) ) ) - ) - (block $do-once71 - (if - (i32.lt_u - (get_local $6) - (get_local $5) + (set_local $38 + (i32.shr_u + (i32.const 1000000000) + (get_local $13) ) - (block - (set_local $12 - (i32.add - (i32.shl - (i32.const 1) - (get_local $13) - ) - (i32.const -1) - ) - ) - (set_local $38 + ) + (set_local $9 + (i32.const 0) + ) + (set_local $7 + (get_local $6) + ) + (loop $while-in74 + (i32.store + (get_local $7) + (i32.add (i32.shr_u - (i32.const 1000000000) - (get_local $13) - ) - ) - (set_local $9 - (i32.const 0) - ) - (set_local $7 - (get_local $6) - ) - (loop $while-in74 - (i32.store - (get_local $7) - (i32.add - (i32.shr_u - (tee_local $32 - (i32.load - (get_local $7) - ) - ) - (get_local $13) - ) - (get_local $9) - ) - ) - (set_local $9 - (i32.mul - (i32.and - (get_local $32) - (get_local $12) + (tee_local $32 + (i32.load + (get_local $7) ) - (get_local $38) ) + (get_local $13) ) - (br_if $while-in74 - (i32.lt_u - (tee_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - (get_local $5) - ) + (get_local $9) + ) + ) + (set_local $9 + (i32.mul + (i32.and + (get_local $32) + (get_local $12) ) + (get_local $38) ) - (set_local $7 - (select - (get_local $6) + ) + (br_if $while-in74 + (i32.lt_u + (tee_local $7 (i32.add - (get_local $6) + (get_local $7) (i32.const 4) ) - (i32.load - (get_local $6) - ) - ) - ) - (br_if $do-once71 - (i32.eqz - (get_local $9) ) - ) - (i32.store (get_local $5) - (get_local $9) - ) - (set_local $5 - (i32.add - (get_local $5) - (i32.const 4) - ) ) ) - (set_local $7 - (select + ) + (set_local $7 + (select + (get_local $6) + (i32.add + (get_local $6) + (i32.const 4) + ) + (i32.load (get_local $6) - (i32.add - (get_local $6) - (i32.const 4) - ) - (i32.load - (get_local $6) - ) ) ) ) - ) - (set_local $12 - (select - (i32.add - (tee_local $6 - (select - (get_local $8) - (get_local $7) - (get_local $31) - ) - ) - (i32.shl - (get_local $21) - (i32.const 2) - ) + (br_if $do-once71 + (i32.eqz + (get_local $9) ) + ) + (i32.store (get_local $5) - (i32.gt_s - (i32.shr_s - (i32.sub - (get_local $5) - (get_local $6) - ) - (i32.const 2) - ) - (get_local $21) + (get_local $9) + ) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 4) ) ) ) - (i32.store - (get_local $20) - (tee_local $9 + (set_local $7 + (select + (get_local $6) (i32.add - (i32.load - (get_local $20) - ) - (get_local $13) + (get_local $6) + (i32.const 4) + ) + (i32.load + (get_local $6) ) ) ) - (set_local $5 - (if (result i32) - (i32.lt_s - (get_local $9) - (i32.const 0) - ) - (block - (set_local $6 + ) + (set_local $12 + (select + (i32.add + (tee_local $6 + (select + (get_local $8) (get_local $7) + (get_local $31) ) - (set_local $5 - (get_local $12) - ) - (br $while-in70) ) - (block (result i32) - (set_local $9 - (get_local $12) - ) - (get_local $7) + (i32.shl + (get_local $21) + (i32.const 2) ) ) - ) - ) - ) - (set_local $9 - (get_local $7) - ) - ) - (set_local $21 - (get_local $8) - ) - (block $do-once75 - (if - (i32.lt_u - (get_local $5) - (get_local $9) - ) - (block - (set_local $7 - (i32.mul + (get_local $5) + (i32.gt_s (i32.shr_s (i32.sub - (get_local $21) (get_local $5) + (get_local $6) ) (i32.const 2) ) - (i32.const 9) + (get_local $21) ) ) - (br_if $do-once75 - (i32.lt_u - (tee_local $12 - (i32.load - (get_local $5) - ) + ) + (i32.store + (get_local $20) + (tee_local $9 + (i32.add + (i32.load + (get_local $20) ) - (i32.const 10) + (get_local $13) ) ) - (set_local $6 - (i32.const 10) - ) - (loop $while-in78 - (set_local $7 - (i32.add + ) + (set_local $5 + (if (result i32) + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + (block + (set_local $6 (get_local $7) - (i32.const 1) ) + (set_local $5 + (get_local $12) + ) + (br $while-in70) ) - (br_if $while-in78 - (i32.ge_u + (block (result i32) + (set_local $9 (get_local $12) - (tee_local $6 - (i32.mul - (get_local $6) - (i32.const 10) - ) - ) ) + (get_local $7) + ) + ) + ) + ) + ) + (set_local $9 + (get_local $7) + ) + ) + (set_local $21 + (get_local $8) + ) + (if + (i32.lt_u + (get_local $5) + (get_local $9) + ) + (block $do-once75 + (set_local $7 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $21) + (get_local $5) + ) + (i32.const 2) + ) + (i32.const 9) + ) + ) + (br_if $do-once75 + (i32.lt_u + (tee_local $12 + (i32.load + (get_local $5) ) ) + (i32.const 10) ) + ) + (set_local $6 + (i32.const 10) + ) + (loop $while-in78 (set_local $7 - (i32.const 0) + (i32.add + (get_local $7) + (i32.const 1) + ) + ) + (br_if $while-in78 + (i32.ge_u + (get_local $12) + (tee_local $6 + (i32.mul + (get_local $6) + (i32.const 10) + ) + ) + ) ) ) ) - (set_local $5 - (if (result i32) - (i32.lt_s - (tee_local $6 - (i32.add - (i32.sub - (get_local $18) - (select - (get_local $7) - (i32.const 0) - (i32.ne - (get_local $24) - (i32.const 102) - ) + (set_local $7 + (i32.const 0) + ) + ) + (set_local $5 + (if (result i32) + (i32.lt_s + (tee_local $6 + (i32.add + (i32.sub + (get_local $18) + (select + (get_local $7) + (i32.const 0) + (i32.ne + (get_local $24) + (i32.const 102) ) ) - (i32.shr_s - (i32.shl - (i32.and - (tee_local $31 - (i32.ne - (get_local $18) - (i32.const 0) - ) + ) + (i32.shr_s + (i32.shl + (i32.and + (tee_local $31 + (i32.ne + (get_local $18) + (i32.const 0) ) - (tee_local $38 - (i32.eq - (get_local $24) - (i32.const 103) - ) + ) + (tee_local $38 + (i32.eq + (get_local $24) + (i32.const 103) ) ) - (i32.const 31) ) (i32.const 31) ) + (i32.const 31) ) ) - (i32.add - (i32.mul - (i32.shr_s - (i32.sub - (get_local $9) - (get_local $21) - ) - (i32.const 2) + ) + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $9) + (get_local $21) ) - (i32.const 9) + (i32.const 2) ) - (i32.const -9) + (i32.const 9) ) + (i32.const -9) ) - (block (result i32) - (if - (i32.lt_s - (tee_local $6 - (i32.add - (i32.rem_s - (tee_local $13 - (i32.add - (get_local $6) - (i32.const 9216) - ) + ) + (block (result i32) + (if + (i32.lt_s + (tee_local $6 + (i32.add + (i32.rem_s + (tee_local $13 + (i32.add + (get_local $6) + (i32.const 9216) ) - (i32.const 9) ) - (i32.const 1) + (i32.const 9) ) + (i32.const 1) ) - (i32.const 9) ) - (block + (i32.const 9) + ) + (block + (set_local $12 + (i32.const 10) + ) + (loop $while-in80 (set_local $12 - (i32.const 10) - ) - (loop $while-in80 - (set_local $12 - (i32.mul - (get_local $12) - (i32.const 10) - ) + (i32.mul + (get_local $12) + (i32.const 10) ) - (br_if $while-in80 - (i32.ne - (tee_local $6 - (i32.add - (get_local $6) - (i32.const 1) - ) + ) + (br_if $while-in80 + (i32.ne + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 1) ) - (i32.const 9) ) + (i32.const 9) ) ) ) - (set_local $12 - (i32.const 10) - ) ) - (set_local $13 - (i32.rem_u - (tee_local $24 - (i32.load - (tee_local $6 + (set_local $12 + (i32.const 10) + ) + ) + (set_local $13 + (i32.rem_u + (tee_local $24 + (i32.load + (tee_local $6 + (i32.add (i32.add - (i32.add - (get_local $8) - (i32.shl - (i32.div_s - (get_local $13) - (i32.const 9) - ) - (i32.const 2) + (get_local $8) + (i32.shl + (i32.div_s + (get_local $13) + (i32.const 9) ) + (i32.const 2) ) - (i32.const -4092) ) + (i32.const -4092) ) ) ) - (get_local $12) ) + (get_local $12) ) - (block $do-once81 - (if + ) + (if + (i32.eqz + (i32.and + (tee_local $32 + (i32.eq + (i32.add + (get_local $6) + (i32.const 4) + ) + (get_local $9) + ) + ) (i32.eqz - (i32.and - (tee_local $32 + (get_local $13) + ) + ) + ) + (block $do-once81 + (set_local $16 + (if (result f64) + (i32.lt_u + (get_local $13) + (tee_local $50 + (i32.div_s + (get_local $12) + (i32.const 2) + ) + ) + ) + (f64.const 0.5) + (select + (f64.const 1) + (f64.const 1.5) + (i32.and + (get_local $32) (i32.eq - (i32.add - (get_local $6) - (i32.const 4) - ) - (get_local $9) + (get_local $13) + (get_local $50) ) ) - (i32.eqz - (get_local $13) + ) + ) + ) + (set_local $23 + (select + (f64.const 9007199254740994) + (f64.const 9007199254740992) + (i32.and + (i32.div_u + (get_local $24) + (get_local $12) ) + (i32.const 1) ) ) - (block - (set_local $16 - (if (result f64) - (i32.lt_u - (get_local $13) - (tee_local $50 - (i32.div_s - (get_local $12) - (i32.const 2) - ) - ) - ) - (f64.const 0.5) - (select - (f64.const 1) - (f64.const 1.5) - (i32.and - (get_local $32) - (i32.eq - (get_local $13) - (get_local $50) - ) - ) - ) + ) + (if + (get_local $26) + (if + (i32.eq + (i32.load8_s + (get_local $30) ) + (i32.const 45) ) - (set_local $23 - (select - (f64.const 9007199254740994) - (f64.const 9007199254740992) - (i32.and - (i32.div_u - (get_local $24) - (get_local $12) - ) - (i32.const 1) + (block + (set_local $23 + (f64.neg + (get_local $23) ) ) - ) - (block $do-once83 - (if - (get_local $26) - (block - (br_if $do-once83 - (i32.ne - (i32.load8_s - (get_local $30) - ) - (i32.const 45) - ) - ) - (set_local $23 - (f64.neg - (get_local $23) - ) - ) - (set_local $16 - (f64.neg - (get_local $16) - ) - ) + (set_local $16 + (f64.neg + (get_local $16) ) ) ) + ) + ) + (i32.store + (get_local $6) + (tee_local $13 + (i32.sub + (get_local $24) + (get_local $13) + ) + ) + ) + (br_if $do-once81 + (f64.eq + (f64.add + (get_local $23) + (get_local $16) + ) + (get_local $23) + ) + ) + (i32.store + (get_local $6) + (tee_local $7 + (i32.add + (get_local $13) + (get_local $12) + ) + ) + ) + (if + (i32.gt_u + (get_local $7) + (i32.const 999999999) + ) + (loop $while-in86 (i32.store (get_local $6) - (tee_local $13 - (i32.sub - (get_local $24) - (get_local $13) + (i32.const 0) + ) + (if + (i32.lt_u + (tee_local $6 + (i32.add + (get_local $6) + (i32.const -4) + ) ) + (get_local $5) ) - ) - (br_if $do-once81 - (f64.eq - (f64.add - (get_local $23) - (get_local $16) + (i32.store + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) + ) ) - (get_local $23) + (i32.const 0) ) ) (i32.store (get_local $6) (tee_local $7 (i32.add - (get_local $13) - (get_local $12) + (i32.load + (get_local $6) + ) + (i32.const 1) ) ) ) - (if + (br_if $while-in86 (i32.gt_u (get_local $7) (i32.const 999999999) ) - (loop $while-in86 - (i32.store - (get_local $6) - (i32.const 0) - ) - (if - (i32.lt_u - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -4) - ) - ) - (get_local $5) - ) - (i32.store - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -4) - ) - ) - (i32.const 0) - ) - ) - (i32.store - (get_local $6) - (tee_local $7 - (i32.add - (i32.load - (get_local $6) - ) - (i32.const 1) - ) - ) - ) - (br_if $while-in86 - (i32.gt_u - (get_local $7) - (i32.const 999999999) - ) - ) - ) ) - (set_local $7 - (i32.mul - (i32.shr_s - (i32.sub - (get_local $21) - (get_local $5) - ) - (i32.const 2) - ) - (i32.const 9) + ) + ) + (set_local $7 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $21) + (get_local $5) ) + (i32.const 2) ) - (br_if $do-once81 - (i32.lt_u - (tee_local $13 - (i32.load - (get_local $5) - ) - ) - (i32.const 10) + (i32.const 9) + ) + ) + (br_if $do-once81 + (i32.lt_u + (tee_local $13 + (i32.load + (get_local $5) ) ) - (set_local $12 - (i32.const 10) + (i32.const 10) + ) + ) + (set_local $12 + (i32.const 10) + ) + (loop $while-in88 + (set_local $7 + (i32.add + (get_local $7) + (i32.const 1) ) - (loop $while-in88 - (set_local $7 - (i32.add - (get_local $7) - (i32.const 1) - ) - ) - (br_if $while-in88 - (i32.ge_u - (get_local $13) - (tee_local $12 - (i32.mul - (get_local $12) - (i32.const 10) - ) - ) + ) + (br_if $while-in88 + (i32.ge_u + (get_local $13) + (tee_local $12 + (i32.mul + (get_local $12) + (i32.const 10) ) ) ) ) ) ) - (set_local $12 - (get_local $5) - ) - (set_local $13 - (get_local $7) - ) - (select - (tee_local $5 - (i32.add - (get_local $6) - (i32.const 4) - ) - ) - (get_local $9) - (i32.gt_u - (get_local $9) - (get_local $5) + ) + (set_local $12 + (get_local $5) + ) + (set_local $13 + (get_local $7) + ) + (select + (tee_local $5 + (i32.add + (get_local $6) + (i32.const 4) ) ) - ) - (block (result i32) - (set_local $12 + (get_local $9) + (i32.gt_u + (get_local $9) (get_local $5) ) - (set_local $13 - (get_local $7) - ) - (get_local $9) ) ) - ) - (set_local $32 - (i32.sub - (i32.const 0) - (get_local $13) + (block (result i32) + (set_local $12 + (get_local $5) + ) + (set_local $13 + (get_local $7) + ) + (get_local $9) ) ) - (set_local $9 - (loop $while-in90 (result i32) - (block $while-out89 (result i32) - (if - (i32.le_u + ) + (set_local $32 + (i32.sub + (i32.const 0) + (get_local $13) + ) + ) + (set_local $9 + (loop $while-in90 (result i32) + (block $while-out89 (result i32) + (if + (i32.le_u + (get_local $5) + (get_local $12) + ) + (block + (set_local $24 + (i32.const 0) + ) + (br $while-out89 (get_local $5) - (get_local $12) ) - (block - (set_local $24 - (i32.const 0) - ) - (br $while-out89 + ) + ) + (if (result i32) + (i32.load + (tee_local $7 + (i32.add (get_local $5) + (i32.const -4) ) ) ) - (if (result i32) - (i32.load - (tee_local $7 - (i32.add - (get_local $5) - (i32.const -4) - ) - ) - ) - (block (result i32) - (set_local $24 - (i32.const 1) - ) - (get_local $5) + (block (result i32) + (set_local $24 + (i32.const 1) ) - (block - (set_local $5 - (get_local $7) - ) - (br $while-in90) + (get_local $5) + ) + (block + (set_local $5 + (get_local $7) ) + (br $while-in90) ) ) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $13 + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $13 + (i32.add (i32.add (i32.add (i32.add - (i32.add - (get_local $26) - (i32.const 1) - ) - (tee_local $5 + (get_local $26) + (i32.const 1) + ) + (tee_local $5 + (if (result i32) + (get_local $38) (block $do-once91 (result i32) - (if (result i32) - (get_local $38) - (block (result i32) - (set_local $7 - (if (result i32) - (i32.and - (i32.gt_s - (tee_local $5 - (i32.add - (i32.xor - (get_local $31) - (i32.const 1) - ) - (get_local $18) - ) + (set_local $7 + (if (result i32) + (i32.and + (i32.gt_s + (tee_local $5 + (i32.add + (i32.xor + (get_local $31) + (i32.const 1) ) - (get_local $13) - ) - (i32.gt_s - (get_local $13) - (i32.const -5) + (get_local $18) ) ) - (block (result i32) - (set_local $18 - (i32.sub - (i32.add - (get_local $5) - (i32.const -1) - ) - (get_local $13) - ) - ) + (get_local $13) + ) + (i32.gt_s + (get_local $13) + (i32.const -5) + ) + ) + (block (result i32) + (set_local $18 + (i32.sub (i32.add - (get_local $19) + (get_local $5) (i32.const -1) ) + (get_local $13) ) - (block (result i32) - (set_local $18 - (i32.add - (get_local $5) - (i32.const -1) - ) - ) - (i32.add - (get_local $19) - (i32.const -2) - ) + ) + (i32.add + (get_local $19) + (i32.const -1) + ) + ) + (block (result i32) + (set_local $18 + (i32.add + (get_local $5) + (i32.const -1) ) ) + (i32.add + (get_local $19) + (i32.const -2) + ) + ) + ) + ) + (if + (tee_local $5 + (i32.and + (get_local $11) + (i32.const 8) + ) + ) + (block + (set_local $21 + (get_local $5) + ) + (br $do-once91 + (get_local $18) ) + ) + ) + (if + (get_local $24) + (block $do-once93 (if - (tee_local $5 - (i32.and - (get_local $11) - (i32.const 8) + (i32.eqz + (tee_local $19 + (i32.load + (i32.add + (get_local $9) + (i32.const -4) + ) + ) ) ) (block - (set_local $21 - (get_local $5) - ) - (br $do-once91 - (get_local $18) + (set_local $5 + (i32.const 9) ) + (br $do-once93) ) ) - (block $do-once93 - (if - (get_local $24) + (set_local $5 + (if (result i32) + (i32.rem_u + (get_local $19) + (i32.const 10) + ) (block - (if - (i32.eqz - (tee_local $19 - (i32.load - (i32.add - (get_local $9) - (i32.const -4) - ) - ) - ) - ) - (block - (set_local $5 - (i32.const 9) - ) - (br $do-once93) - ) - ) (set_local $5 - (if (result i32) - (i32.rem_u - (get_local $19) - (i32.const 10) - ) - (block - (set_local $5 - (i32.const 0) - ) - (br $do-once93) - ) - (block (result i32) - (set_local $6 - (i32.const 10) - ) - (i32.const 0) - ) - ) - ) - (loop $while-in96 - (set_local $5 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (br_if $while-in96 - (i32.eqz - (i32.rem_u - (get_local $19) - (tee_local $6 - (i32.mul - (get_local $6) - (i32.const 10) - ) - ) - ) - ) - ) + (i32.const 0) ) + (br $do-once93) ) - (set_local $5 - (i32.const 9) + (block (result i32) + (set_local $6 + (i32.const 10) + ) + (i32.const 0) ) ) ) - (set_local $6 - (i32.add - (i32.mul - (i32.shr_s - (i32.sub - (get_local $9) - (get_local $21) + (loop $while-in96 + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (br_if $while-in96 + (i32.eqz + (i32.rem_u + (get_local $19) + (tee_local $6 + (i32.mul + (get_local $6) + (i32.const 10) + ) ) - (i32.const 2) ) - (i32.const 9) ) - (i32.const -9) ) ) - (if (result i32) - (i32.eq - (i32.or - (get_local $7) - (i32.const 32) + ) + (set_local $5 + (i32.const 9) + ) + ) + (set_local $6 + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $9) + (get_local $21) ) - (i32.const 102) + (i32.const 2) ) - (block (result i32) - (set_local $21 - (i32.const 0) - ) + (i32.const 9) + ) + (i32.const -9) + ) + ) + (if (result i32) + (i32.eq + (i32.or + (get_local $7) + (i32.const 32) + ) + (i32.const 102) + ) + (block (result i32) + (set_local $21 + (i32.const 0) + ) + (select + (get_local $18) + (tee_local $5 (select - (get_local $18) + (i32.const 0) (tee_local $5 - (select - (i32.const 0) - (tee_local $5 - (i32.sub - (get_local $6) - (get_local $5) - ) - ) - (i32.lt_s - (get_local $5) - (i32.const 0) - ) + (i32.sub + (get_local $6) + (get_local $5) ) ) (i32.lt_s - (get_local $18) (get_local $5) + (i32.const 0) ) ) ) - (block (result i32) - (set_local $21 - (i32.const 0) - ) + (i32.lt_s + (get_local $18) + (get_local $5) + ) + ) + ) + (block (result i32) + (set_local $21 + (i32.const 0) + ) + (select + (get_local $18) + (tee_local $5 (select - (get_local $18) + (i32.const 0) (tee_local $5 - (select - (i32.const 0) - (tee_local $5 - (i32.sub - (i32.add - (get_local $6) - (get_local $13) - ) - (get_local $5) - ) - ) - (i32.lt_s - (get_local $5) - (i32.const 0) + (i32.sub + (i32.add + (get_local $6) + (get_local $13) ) + (get_local $5) ) ) (i32.lt_s - (get_local $18) (get_local $5) + (i32.const 0) ) ) ) - ) - ) - (block (result i32) - (set_local $21 - (i32.and - (get_local $11) - (i32.const 8) + (i32.lt_s + (get_local $18) + (get_local $5) ) ) - (set_local $7 - (get_local $19) - ) - (get_local $18) ) ) ) - ) - ) - (i32.ne - (tee_local $31 - (i32.or - (get_local $5) - (get_local $21) + (block (result i32) + (set_local $21 + (i32.and + (get_local $11) + (i32.const 8) + ) + ) + (set_local $7 + (get_local $19) + ) + (get_local $18) ) ) - (i32.const 0) ) ) - (if (result i32) - (tee_local $18 - (i32.eq - (i32.or - (get_local $7) - (i32.const 32) - ) - (i32.const 102) + (i32.ne + (tee_local $31 + (i32.or + (get_local $5) + (get_local $21) ) ) - (block (result i32) - (set_local $19 - (i32.const 0) + (i32.const 0) + ) + ) + (if (result i32) + (tee_local $18 + (i32.eq + (i32.or + (get_local $7) + (i32.const 32) ) - (select + (i32.const 102) + ) + ) + (block (result i32) + (set_local $19 + (i32.const 0) + ) + (select + (get_local $13) + (i32.const 0) + (i32.gt_s (get_local $13) (i32.const 0) - (i32.gt_s - (get_local $13) - (i32.const 0) - ) ) ) - (block (result i32) - (if - (i32.lt_s - (i32.sub - (get_local $27) - (tee_local $6 - (call $_fmt_u - (tee_local $6 - (select - (get_local $32) + ) + (block (result i32) + (if + (i32.lt_s + (i32.sub + (get_local $27) + (tee_local $6 + (call $_fmt_u + (tee_local $6 + (select + (get_local $32) + (get_local $13) + (i32.lt_s (get_local $13) - (i32.lt_s - (get_local $13) - (i32.const 0) - ) + (i32.const 0) ) ) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $6) - (i32.const 0) - ) - (i32.const 31) + ) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $6) + (i32.const 0) ) (i32.const 31) ) - (get_local $33) + (i32.const 31) ) + (get_local $33) ) ) - (i32.const 2) ) - (loop $while-in98 - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in98 - (i32.lt_s - (i32.sub - (get_local $27) - (get_local $6) - ) - (i32.const 2) + (i32.const 2) + ) + (loop $while-in98 + (i32.store8 + (tee_local $6 + (i32.add + (get_local $6) + (i32.const -1) ) ) + (i32.const 48) ) - ) - (i32.store8 - (i32.add - (get_local $6) - (i32.const -1) - ) - (i32.add - (i32.and - (i32.shr_s - (get_local $13) - (i32.const 31) + (br_if $while-in98 + (i32.lt_s + (i32.sub + (get_local $27) + (get_local $6) ) (i32.const 2) ) - (i32.const 43) ) ) - (i32.store8 - (tee_local $19 - (i32.add - (get_local $6) - (i32.const -2) + ) + (i32.store8 + (i32.add + (get_local $6) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_s + (get_local $13) + (i32.const 31) ) + (i32.const 2) ) - (get_local $7) + (i32.const 43) ) - (i32.sub - (get_local $27) - (get_local $19) + ) + (i32.store8 + (tee_local $19 + (i32.add + (get_local $6) + (i32.const -2) + ) ) + (get_local $7) + ) + (i32.sub + (get_local $27) + (get_local $19) ) ) ) ) - (get_local $11) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $30) - (get_local $26) + (get_local $11) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (get_local $15) - (get_local $13) - (i32.xor - (get_local $11) - (i32.const 65536) + (drop + (call $___fwritex + (get_local $30) + (get_local $26) + (get_local $0) ) ) - (block $do-once99 - (if - (get_local $18) - (block - (set_local $6 - (tee_local $12 - (select - (get_local $8) - (get_local $12) - (i32.gt_u - (get_local $12) - (get_local $8) - ) - ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (get_local $15) + (get_local $13) + (i32.xor + (get_local $11) + (i32.const 65536) + ) + ) + (if + (get_local $18) + (block + (set_local $6 + (tee_local $12 + (select + (get_local $8) + (get_local $12) + (i32.gt_u + (get_local $12) + (get_local $8) ) ) - (loop $while-in102 - (set_local $7 - (call $_fmt_u - (i32.load - (get_local $6) + ) + ) + (loop $while-in102 + (set_local $7 + (call $_fmt_u + (i32.load + (get_local $6) + ) + (i32.const 0) + (get_local $29) + ) + ) + (block $do-once103 + (if + (i32.eq + (get_local $6) + (get_local $12) + ) + (block + (br_if $do-once103 + (i32.ne + (get_local $7) + (get_local $29) ) - (i32.const 0) - (get_local $29) + ) + (i32.store8 + (get_local $34) + (i32.const 48) + ) + (set_local $7 + (get_local $34) ) ) - (block $do-once103 - (if - (i32.eq - (get_local $6) - (get_local $12) + (block + (br_if $do-once103 + (i32.le_u + (get_local $7) + (get_local $22) ) - (block - (br_if $do-once103 - (i32.ne + ) + (loop $while-in106 + (i32.store8 + (tee_local $7 + (i32.add (get_local $7) - (get_local $29) + (i32.const -1) ) ) - (i32.store8 - (get_local $34) - (i32.const 48) - ) - (set_local $7 - (get_local $34) - ) + (i32.const 48) ) - (block - (br_if $do-once103 - (i32.le_u - (get_local $7) - (get_local $22) - ) - ) - (loop $while-in106 - (i32.store8 - (tee_local $7 - (i32.add - (get_local $7) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in106 - (i32.gt_u - (get_local $7) - (get_local $22) - ) - ) + (br_if $while-in106 + (i32.gt_u + (get_local $7) + (get_local $22) ) ) ) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + ) + ) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) ) - (drop - (call $___fwritex - (get_local $7) - (i32.sub - (get_local $43) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $7) + (i32.sub + (get_local $43) + (get_local $7) + ) + (get_local $0) + ) + ) + ) + (if + (i32.le_u + (tee_local $7 + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + (get_local $8) + ) + (block + (set_local $6 + (get_local $7) + ) + (br $while-in102) + ) + ) + ) + (if + (get_local $31) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (i32.const 4143) + (i32.const 1) + (get_local $0) + ) + ) + ) + ) + (if + (i32.and + (i32.gt_s + (get_local $5) + (i32.const 0) + ) + (i32.lt_u + (get_local $7) + (get_local $9) + ) + ) + (loop $while-in110 + (if + (i32.gt_u + (tee_local $6 + (call $_fmt_u + (i32.load (get_local $7) ) - (get_local $0) + (i32.const 0) + (get_local $29) ) ) + (get_local $22) ) - (if - (i32.le_u - (tee_local $7 + (loop $while-in112 + (i32.store8 + (tee_local $6 (i32.add (get_local $6) - (i32.const 4) + (i32.const -1) ) ) - (get_local $8) + (i32.const 48) ) - (block - (set_local $6 - (get_local $7) + (br_if $while-in112 + (i32.gt_u + (get_local $6) + (get_local $22) ) - (br $while-in102) ) ) ) - (block $do-once107 - (if - (get_local $31) - (block - (br_if $do-once107 - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) ) - (drop - (call $___fwritex - (i32.const 4143) - (i32.const 1) - (get_local $0) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $6) + (select + (i32.const 9) + (get_local $5) + (i32.gt_s + (get_local $5) + (i32.const 9) ) ) + (get_local $0) ) ) ) - (if - (i32.and - (i32.gt_s - (get_local $5) - (i32.const 0) - ) - (i32.lt_u - (get_local $7) - (get_local $9) - ) + (set_local $6 + (i32.add + (get_local $5) + (i32.const -9) ) - (loop $while-in110 - (if - (i32.gt_u - (tee_local $6 - (call $_fmt_u - (i32.load - (get_local $7) - ) - (i32.const 0) - (get_local $29) - ) - ) - (get_local $22) - ) - (loop $while-in112 - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in112 - (i32.gt_u - (get_local $6) - (get_local $22) - ) - ) - ) - ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + ) + (set_local $5 + (if (result i32) + (i32.and + (i32.gt_s + (get_local $5) + (i32.const 9) ) - (drop - (call $___fwritex - (get_local $6) - (select - (i32.const 9) - (get_local $5) - (i32.gt_s - (get_local $5) - (i32.const 9) - ) + (i32.lt_u + (tee_local $7 + (i32.add + (get_local $7) + (i32.const 4) ) - (get_local $0) ) + (get_local $9) ) ) - (set_local $6 - (i32.add - (get_local $5) - (i32.const -9) - ) - ) - (set_local $5 - (if (result i32) - (i32.and - (i32.gt_s - (get_local $5) - (i32.const 9) - ) - (i32.lt_u - (tee_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - (get_local $9) - ) - ) - (block - (set_local $5 - (get_local $6) - ) - (br $while-in110) - ) + (block + (set_local $5 (get_local $6) ) + (br $while-in110) ) + (get_local $6) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.add - (get_local $5) - (i32.const 9) - ) - (i32.const 9) - (i32.const 0) + ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (i32.add + (get_local $5) + (i32.const 9) + ) + (i32.const 9) + (i32.const 0) + ) + ) + (block $do-once99 + (set_local $9 + (select + (get_local $9) + (i32.add + (get_local $12) + (i32.const 4) ) + (get_local $24) + ) + ) + (if + (i32.gt_s + (get_local $5) + (i32.const -1) ) (block - (set_local $9 - (select - (get_local $9) - (i32.add - (get_local $12) - (i32.const 4) - ) - (get_local $24) + (set_local $18 + (i32.eqz + (get_local $21) ) ) - (if - (i32.gt_s - (get_local $5) - (i32.const -1) - ) - (block - (set_local $18 - (i32.eqz - (get_local $21) + (set_local $6 + (get_local $12) + ) + (set_local $7 + (get_local $5) + ) + (loop $while-in114 + (if + (i32.eq + (tee_local $5 + (call $_fmt_u + (i32.load + (get_local $6) + ) + (i32.const 0) + (get_local $29) + ) ) + (get_local $29) ) - (set_local $6 - (get_local $12) - ) - (set_local $7 - (get_local $5) + (block + (i32.store8 + (get_local $34) + (i32.const 48) + ) + (set_local $5 + (get_local $34) + ) ) - (loop $while-in114 - (if - (i32.eq - (tee_local $5 - (call $_fmt_u + ) + (block $do-once115 + (if + (i32.eq + (get_local $6) + (get_local $12) + ) + (block + (if + (i32.eqz + (i32.and (i32.load - (get_local $6) + (get_local $0) ) - (i32.const 0) - (get_local $29) + (i32.const 32) ) ) - (get_local $29) - ) - (block - (i32.store8 - (get_local $34) - (i32.const 48) - ) - (set_local $5 - (get_local $34) + (drop + (call $___fwritex + (get_local $5) + (i32.const 1) + (get_local $0) + ) ) ) - ) - (block $do-once115 - (if - (i32.eq - (get_local $6) - (get_local $12) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) ) - (block - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $5) - (i32.const 1) - (get_local $0) - ) - ) - ) - (set_local $5 - (i32.add - (get_local $5) + ) + (br_if $do-once115 + (i32.or + (i32.and + (get_local $18) + (i32.lt_s + (get_local $7) (i32.const 1) ) ) - (br_if $do-once115 - (i32.or - (i32.and - (get_local $18) - (i32.lt_s - (get_local $7) - (i32.const 1) - ) - ) - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - ) - (drop - (call $___fwritex - (i32.const 4143) - (i32.const 1) + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (block - (br_if $do-once115 - (i32.le_u - (get_local $5) - (get_local $22) - ) - ) - (loop $while-in118 - (i32.store8 - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in118 - (i32.gt_u - (get_local $5) - (get_local $22) - ) - ) - ) - ) - ) - ) - (set_local $8 - (i32.sub - (get_local $43) - (get_local $5) - ) - ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) ) (drop (call $___fwritex - (get_local $5) - (select - (get_local $8) - (get_local $7) - (i32.gt_s - (get_local $7) - (get_local $8) - ) - ) + (i32.const 4143) + (i32.const 1) (get_local $0) ) ) ) - (br_if $while-in114 - (i32.and - (i32.lt_u - (tee_local $6 + (block + (br_if $do-once115 + (i32.le_u + (get_local $5) + (get_local $22) + ) + ) + (loop $while-in118 + (i32.store8 + (tee_local $5 (i32.add - (get_local $6) - (i32.const 4) + (get_local $5) + (i32.const -1) ) ) - (get_local $9) + (i32.const 48) ) - (i32.gt_s - (tee_local $7 - (i32.sub - (get_local $7) - (get_local $8) - ) + (br_if $while-in118 + (i32.gt_u + (get_local $5) + (get_local $22) ) - (i32.const -1) ) ) ) ) - (set_local $5 - (get_local $7) - ) ) - ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.add - (get_local $5) - (i32.const 18) + (set_local $8 + (i32.sub + (get_local $43) + (get_local $5) + ) ) - (i32.const 18) - (i32.const 0) - ) - (br_if $do-once99 - (i32.and - (i32.load - (get_local $0) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $5) + (select + (get_local $8) + (get_local $7) + (i32.gt_s + (get_local $7) + (get_local $8) + ) + ) + (get_local $0) + ) ) - (i32.const 32) ) - ) - (drop - (call $___fwritex - (get_local $19) - (i32.sub - (get_local $27) - (get_local $19) + (br_if $while-in114 + (i32.and + (i32.lt_u + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + (get_local $9) + ) + (i32.gt_s + (tee_local $7 + (i32.sub + (get_local $7) + (get_local $8) + ) + ) + (i32.const -1) + ) ) - (get_local $0) ) ) + (set_local $5 + (get_local $7) + ) ) ) - ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $13) - (i32.xor - (get_local $11) - (i32.const 8192) - ) - ) - (select - (get_local $15) - (get_local $13) - (i32.lt_s - (get_local $13) - (get_local $15) - ) - ) - ) - (block (result i32) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (tee_local $7 + (call $_pad + (get_local $0) + (i32.const 48) (i32.add - (tee_local $9 - (select - (i32.const 0) - (get_local $26) - (tee_local $6 - (f64.ne - (get_local $16) - (get_local $16) - ) - ) - ) - ) - (i32.const 3) + (get_local $5) + (i32.const 18) ) + (i32.const 18) + (i32.const 0) ) - (get_local $8) - ) - (if - (i32.eqz + (br_if $do-once99 (i32.and - (tee_local $5 - (i32.load - (get_local $0) - ) + (i32.load + (get_local $0) ) (i32.const 32) ) ) - (block - (drop - (call $___fwritex - (get_local $30) - (get_local $9) - (get_local $0) - ) - ) - (set_local $5 - (i32.load - (get_local $0) + (drop + (call $___fwritex + (get_local $19) + (i32.sub + (get_local $27) + (get_local $19) ) + (get_local $0) ) ) ) - (set_local $6 - (select - (select - (i32.const 4135) - (i32.const 4139) - (tee_local $8 - (i32.ne - (i32.and - (get_local $19) - (i32.const 32) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $13) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (select + (get_local $15) + (get_local $13) + (i32.lt_s + (get_local $13) + (get_local $15) + ) + ) + ) + (block (result i32) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (tee_local $7 + (i32.add + (tee_local $9 + (select + (i32.const 0) + (get_local $26) + (tee_local $6 + (f64.ne + (get_local $16) + (get_local $16) ) - (i32.const 0) ) ) ) - (select - (i32.const 4127) - (i32.const 4131) - (get_local $8) - ) - (get_local $6) + (i32.const 3) ) ) - (if - (i32.eqz - (i32.and - (get_local $5) - (i32.const 32) + (get_local $8) + ) + (if + (i32.eqz + (i32.and + (tee_local $5 + (i32.load + (get_local $0) + ) ) + (i32.const 32) ) + ) + (block (drop (call $___fwritex - (get_local $6) - (i32.const 3) + (get_local $30) + (get_local $9) (get_local $0) ) ) - ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $15) - (get_local $7) - (i32.xor - (get_local $11) - (i32.const 8192) + (set_local $5 + (i32.load + (get_local $0) + ) ) ) + ) + (set_local $6 (select - (get_local $15) - (get_local $7) - (i32.lt_s - (get_local $7) - (get_local $15) + (select + (i32.const 4135) + (i32.const 4139) + (tee_local $8 + (i32.ne + (i32.and + (get_local $19) + (i32.const 32) + ) + (i32.const 0) + ) + ) + ) + (select + (i32.const 4127) + (i32.const 4131) + (get_local $8) + ) + (get_local $6) + ) + ) + (if + (i32.eqz + (i32.and + (get_local $5) + (i32.const 32) ) ) + (drop + (call $___fwritex + (get_local $6) + (i32.const 3) + (get_local $0) + ) + ) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $15) + (get_local $7) + (i32.xor + (get_local $11) + (i32.const 8192) + ) + ) + (select + (get_local $15) + (get_local $7) + (i32.lt_s + (get_local $7) + (get_local $15) + ) ) ) ) @@ -6862,61 +6823,32 @@ (local $3 i32) (local $4 f64) (local $5 i32) - (block $label$break$L1 - (if - (i32.le_u - (get_local $1) - (i32.const 20) - ) - (block $switch-default - (block $switch-case9 - (block $switch-case8 - (block $switch-case7 - (block $switch-case6 - (block $switch-case5 - (block $switch-case4 - (block $switch-case3 - (block $switch-case2 - (block $switch-case1 - (block $switch-case - (br_table $switch-case $switch-case1 $switch-case2 $switch-case3 $switch-case4 $switch-case5 $switch-case6 $switch-case7 $switch-case8 $switch-case9 $switch-default - (i32.sub - (get_local $1) - (i32.const 9) - ) - ) - ) - (set_local $3 - (i32.load - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) - ) - (i32.const -4) - ) - ) - ) - ) - (i32.store - (get_local $2) - (i32.add + (if + (i32.le_u + (get_local $1) + (i32.const 20) + ) + (block $switch-default + (block $switch-case9 + (block $switch-case8 + (block $switch-case7 + (block $switch-case6 + (block $switch-case5 + (block $switch-case4 + (block $switch-case3 + (block $switch-case2 + (block $switch-case1 + (block $switch-case + (br_table $switch-case $switch-case1 $switch-case2 $switch-case3 $switch-case4 $switch-case5 $switch-case6 $switch-case7 $switch-case8 $switch-case9 $switch-default + (i32.sub (get_local $1) - (i32.const 4) + (i32.const 9) ) ) - (i32.store - (get_local $0) - (get_local $3) - ) - (br $label$break$L1) ) - (set_local $1 + (set_local $3 (i32.load - (tee_local $3 + (tee_local $1 (i32.and (i32.add (i32.load @@ -6932,32 +6864,19 @@ (i32.store (get_local $2) (i32.add - (get_local $3) + (get_local $1) (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $1) - ) - (i32.store offset=4 - (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (get_local $3) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $3 + (set_local $1 (i32.load - (tee_local $1 + (tee_local $3 (i32.and (i32.add (i32.load @@ -6973,110 +6892,99 @@ (i32.store (get_local $2) (i32.add - (get_local $1) + (get_local $3) (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $3) + (get_local $1) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $5 + (set_local $3 (i32.load - (tee_local $3 - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 7) + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) ) - (i32.const -8) + (i32.const 3) ) + (i32.const -4) ) ) ) ) - (set_local $3 - (i32.load offset=4 - (get_local $3) - ) - ) (i32.store (get_local $2) (i32.add (get_local $1) - (i32.const 8) + (i32.const 4) ) ) (i32.store (get_local $0) - (get_local $5) + (get_local $3) ) (i32.store offset=4 (get_local $0) - (get_local $3) + (i32.const 0) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $3 + (set_local $5 (i32.load - (tee_local $1 - (i32.and - (i32.add - (i32.load - (get_local $2) + (tee_local $3 + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) ) - (i32.const 3) + (i32.const -8) ) - (i32.const -4) ) ) ) ) + (set_local $3 + (i32.load offset=4 + (get_local $3) + ) + ) (i32.store (get_local $2) (i32.add (get_local $1) - (i32.const 4) + (i32.const 8) ) ) (i32.store (get_local $0) - (tee_local $1 - (i32.shr_s - (i32.shl - (i32.and - (get_local $3) - (i32.const 65535) - ) - (i32.const 16) - ) - (i32.const 16) - ) - ) + (get_local $5) ) (i32.store offset=4 (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (get_local $3) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7102,16 +7010,33 @@ ) (i32.store (get_local $0) - (i32.and - (get_local $3) - (i32.const 65535) + (tee_local $1 + (i32.shr_s + (i32.shl + (i32.and + (get_local $3) + (i32.const 65535) + ) + (i32.const 16) + ) + (i32.const 16) + ) ) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7137,33 +7062,16 @@ ) (i32.store (get_local $0) - (tee_local $1 - (i32.shr_s - (i32.shl - (i32.and - (get_local $3) - (i32.const 255) - ) - (i32.const 24) - ) - (i32.const 24) - ) + (i32.and + (get_local $3) + (i32.const 65535) ) ) (i32.store offset=4 (get_local $0) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $1) - (i32.const 0) - ) - (i32.const 31) - ) - (i32.const 31) - ) + (i32.const 0) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $3 (i32.load @@ -7189,28 +7097,45 @@ ) (i32.store (get_local $0) - (i32.and - (get_local $3) - (i32.const 255) + (tee_local $1 + (i32.shr_s + (i32.shl + (i32.and + (get_local $3) + (i32.const 255) + ) + (i32.const 24) + ) + (i32.const 24) + ) ) ) (i32.store offset=4 (get_local $0) - (i32.const 0) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $1) + (i32.const 0) + ) + (i32.const 31) + ) + (i32.const 31) + ) ) - (br $label$break$L1) + (br $switch-default) ) - (set_local $4 - (f64.load + (set_local $3 + (i32.load (tee_local $1 (i32.and (i32.add (i32.load (get_local $2) ) - (i32.const 7) + (i32.const 3) ) - (i32.const -8) + (i32.const -4) ) ) ) @@ -7219,14 +7144,21 @@ (get_local $2) (i32.add (get_local $1) - (i32.const 8) + (i32.const 4) ) ) - (f64.store + (i32.store (get_local $0) - (get_local $4) + (i32.and + (get_local $3) + (i32.const 255) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.const 0) ) - (br $label$break$L1) + (br $switch-default) ) (set_local $4 (f64.load @@ -7254,6 +7186,33 @@ (get_local $0) (get_local $4) ) + (br $switch-default) + ) + (set_local $4 + (f64.load + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) + ) + (i32.const -8) + ) + ) + ) + ) + (i32.store + (get_local $2) + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + (f64.store + (get_local $0) + (get_local $4) ) ) ) @@ -7401,106 +7360,90 @@ (set_local $6 (get_local $7) ) - (block $do-once - (if - (i32.and - (i32.gt_s - (get_local $2) - (get_local $3) - ) - (i32.eqz - (i32.and - (get_local $4) - (i32.const 73728) - ) + (if + (i32.and + (i32.gt_s + (get_local $2) + (get_local $3) + ) + (i32.eqz + (i32.and + (get_local $4) + (i32.const 73728) ) ) - (block - (drop - (call $_memset - (get_local $6) - (get_local $1) - (select - (i32.const 256) - (tee_local $5 - (i32.sub - (get_local $2) - (get_local $3) - ) - ) - (i32.gt_u - (get_local $5) - (i32.const 256) + ) + (block $do-once + (drop + (call $_memset + (get_local $6) + (get_local $1) + (select + (i32.const 256) + (tee_local $5 + (i32.sub + (get_local $2) + (get_local $3) ) ) + (i32.gt_u + (get_local $5) + (i32.const 256) + ) ) ) - (set_local $4 - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (get_local $0) - ) + ) + (set_local $4 + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (get_local $0) ) - (i32.const 32) ) + (i32.const 32) ) ) - (if - (i32.gt_u - (get_local $5) - (i32.const 255) - ) - (block - (loop $while-in - (if - (get_local $4) - (block - (drop - (call $___fwritex - (get_local $6) - (i32.const 256) - (get_local $0) - ) - ) - (set_local $1 - (i32.load - (get_local $0) - ) - ) - ) - ) - (set_local $4 - (i32.eqz - (i32.and - (get_local $1) - (i32.const 32) + ) + (if + (i32.gt_u + (get_local $5) + (i32.const 255) + ) + (block + (loop $while-in + (if + (get_local $4) + (block + (drop + (call $___fwritex + (get_local $6) + (i32.const 256) + (get_local $0) ) ) - ) - (br_if $while-in - (i32.gt_u - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -256) - ) + (set_local $1 + (i32.load + (get_local $0) ) - (i32.const 255) ) ) ) - (br_if $do-once + (set_local $4 (i32.eqz - (get_local $4) + (i32.and + (get_local $1) + (i32.const 32) + ) ) ) - (set_local $5 - (i32.and - (i32.sub - (get_local $2) - (get_local $3) + (br_if $while-in + (i32.gt_u + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -256) + ) ) (i32.const 255) ) @@ -7511,15 +7454,29 @@ (get_local $4) ) ) + (set_local $5 + (i32.and + (i32.sub + (get_local $2) + (get_local $3) + ) + (i32.const 255) + ) + ) ) - (drop - (call $___fwritex - (get_local $6) - (get_local $5) - (get_local $0) + (br_if $do-once + (i32.eqz + (get_local $4) ) ) ) + (drop + (call $___fwritex + (get_local $6) + (get_local $5) + (get_local $0) + ) + ) ) ) (set_global $STACKTOP @@ -7547,273 +7504,257 @@ (local $18 i32) (block $folding-inner0 (set_local $0 - (block $do-once (result i32) - (if (result i32) - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block (result i32) - (if - (i32.and - (tee_local $10 - (i32.shr_u - (tee_local $6 - (i32.load - (i32.const 176) - ) + (if (result i32) + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block (result i32) + (if + (i32.and + (tee_local $10 + (i32.shr_u + (tee_local $6 + (i32.load + (i32.const 176) ) - (tee_local $13 - (i32.shr_u - (tee_local $2 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $13 + (i32.shr_u + (tee_local $2 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $11 - (i32.load - (tee_local $1 - (i32.add - (tee_local $7 - (i32.load - (tee_local $3 - (i32.add - (tee_local $2 - (i32.add - (i32.shl - (tee_local $4 - (i32.add - (i32.xor - (i32.and - (get_local $10) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $11 + (i32.load + (tee_local $1 + (i32.add + (tee_local $7 + (i32.load + (tee_local $3 + (i32.add + (tee_local $2 + (i32.add + (i32.shl + (tee_local $4 + (i32.add + (i32.xor + (i32.and + (get_local $10) (i32.const 1) ) - (get_local $13) + (i32.const 1) ) + (get_local $13) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $2) - (get_local $11) - ) - (i32.store - (i32.const 176) - (i32.and - (get_local $6) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $4) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $2) + (get_local $11) + ) + (i32.store + (i32.const 176) + (i32.and + (get_local $6) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $4) ) + (i32.const -1) ) ) - (block - (if - (i32.lt_u - (get_local $11) - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $11) + (i32.const 12) ) ) - (get_local $7) - ) - (block - (i32.store - (get_local $0) - (get_local $2) - ) - (i32.store - (get_local $3) - (get_local $11) - ) ) - (call $_abort) + (get_local $7) ) - ) - ) - (i32.store offset=4 - (get_local $7) - (i32.or - (tee_local $0 - (i32.shl - (get_local $4) - (i32.const 3) + (block + (i32.store + (get_local $0) + (get_local $2) + ) + (i32.store + (get_local $3) + (get_local $11) ) ) - (i32.const 3) + (call $_abort) ) ) - (i32.store + ) + (i32.store offset=4 + (get_local $7) + (i32.or (tee_local $0 - (i32.add - (i32.add - (get_local $7) - (get_local $0) - ) - (i32.const 4) + (i32.shl + (get_local $4) + (i32.const 3) ) ) - (i32.or - (i32.load + (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $7) (get_local $0) ) - (i32.const 1) + (i32.const 4) ) ) - (return - (get_local $1) + (i32.or + (i32.load + (get_local $0) + ) + (i32.const 1) ) ) + (return + (get_local $1) + ) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (tee_local $0 - (i32.load - (i32.const 184) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $2) + (tee_local $0 + (i32.load + (i32.const 184) ) ) - (block (result i32) - (if - (get_local $10) - (block - (set_local $7 - (i32.and - (i32.shr_u - (tee_local $3 - (i32.add - (i32.and - (tee_local $3 - (i32.and - (i32.shl - (get_local $10) - (get_local $13) - ) - (i32.or - (tee_local $3 - (i32.shl - (i32.const 2) - (get_local $13) - ) - ) - (i32.sub - (i32.const 0) - (get_local $3) + ) + (block (result i32) + (if + (get_local $10) + (block + (set_local $7 + (i32.and + (i32.shr_u + (tee_local $3 + (i32.add + (i32.and + (tee_local $3 + (i32.and + (i32.shl + (get_local $10) + (get_local $13) + ) + (i32.or + (tee_local $3 + (i32.shl + (i32.const 2) + (get_local $13) ) ) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $3) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $3) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $10 - (i32.load - (tee_local $4 - (i32.add - (tee_local $8 - (i32.load - (tee_local $3 - (i32.add - (tee_local $7 - (i32.add - (i32.shl - (tee_local $11 - (i32.add + ) + (set_local $10 + (i32.load + (tee_local $4 + (i32.add + (tee_local $8 + (i32.load + (tee_local $3 + (i32.add + (tee_local $7 + (i32.add + (i32.shl + (tee_local $11 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $3 - (i32.and - (i32.shr_u - (tee_local $4 - (i32.shr_u - (get_local $3) - (get_local $7) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $7) - ) (tee_local $3 (i32.and (i32.shr_u (tee_local $4 (i32.shr_u - (get_local $4) (get_local $3) + (get_local $7) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $7) ) (tee_local $3 (i32.and @@ -7824,9 +7765,9 @@ (get_local $3) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -7841,310 +7782,310 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $4) - (get_local $3) + (tee_local $3 + (i32.and + (i32.shr_u + (tee_local $4 + (i32.shr_u + (get_local $4) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $4) + (get_local $3) + ) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $7) - (get_local $10) - ) - (block - (i32.store - (i32.const 176) - (i32.and - (get_local $6) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $11) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $7) + (get_local $10) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (get_local $6) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $11) ) + (i32.const -1) ) ) - (set_local $9 - (get_local $0) - ) ) - (block - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 192) - ) + (set_local $9 + (get_local $0) + ) + ) + (block + (if + (i32.lt_u + (get_local $10) + (i32.load + (i32.const 192) ) - (call $_abort) ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $10) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $10) + (i32.const 12) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $0) - (get_local $7) - ) - (i32.store - (get_local $3) - (get_local $10) - ) - (set_local $9 - (i32.load - (i32.const 184) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $0) + (get_local $7) + ) + (i32.store + (get_local $3) + (get_local $10) + ) + (set_local $9 + (i32.load + (i32.const 184) ) ) - (call $_abort) ) + (call $_abort) ) ) - (i32.store offset=4 - (get_local $8) - (i32.or + ) + (i32.store offset=4 + (get_local $8) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $7 + (i32.add + (get_local $8) (get_local $2) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $7 - (i32.add - (get_local $8) - (get_local $2) - ) - ) - (i32.or - (tee_local $11 - (i32.sub - (i32.shl - (get_local $11) - (i32.const 3) - ) - (get_local $2) + (i32.or + (tee_local $11 + (i32.sub + (i32.shl + (get_local $11) + (i32.const 3) ) + (get_local $2) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $7) - (get_local $11) - ) + ) + (i32.store + (i32.add + (get_local $7) (get_local $11) ) - (if - (get_local $9) - (block - (set_local $6 - (i32.load - (i32.const 196) - ) + (get_local $11) + ) + (if + (get_local $9) + (block + (set_local $6 + (i32.load + (i32.const 196) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $0 - (i32.shr_u - (get_local $9) - (i32.const 3) - ) + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $0 + (i32.shr_u + (get_local $9) + (i32.const 3) ) - (i32.const 3) ) - (i32.const 216) + (i32.const 3) ) + (i32.const 216) ) - (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 176) - ) + ) + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) + ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) ) ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $3 - (i32.add - (get_local $2) - (i32.const 8) - ) + ) + (if + (i32.lt_u + (tee_local $0 + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $5 - (get_local $3) - ) - (set_local $1 - (get_local $0) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $0) - ) - ) (set_local $5 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $3) ) (set_local $1 - (get_local $2) + (get_local $0) ) ) ) - (i32.store - (get_local $5) - (get_local $6) - ) - (i32.store offset=12 - (get_local $1) - (get_local $6) - ) - (i32.store offset=8 - (get_local $6) - (get_local $1) - ) - (i32.store offset=12 - (get_local $6) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $0) + ) + ) + (set_local $5 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $1 + (get_local $2) + ) ) ) + (i32.store + (get_local $5) + (get_local $6) + ) + (i32.store offset=12 + (get_local $1) + (get_local $6) + ) + (i32.store offset=8 + (get_local $6) + (get_local $1) + ) + (i32.store offset=12 + (get_local $6) + (get_local $2) + ) ) - (i32.store - (i32.const 184) - (get_local $11) - ) - (i32.store - (i32.const 196) - (get_local $7) - ) - (return - (get_local $4) - ) + ) + (i32.store + (i32.const 184) + (get_local $11) + ) + (i32.store + (i32.const 196) + (get_local $7) + ) + (return + (get_local $4) ) ) - (if (result i32) - (tee_local $0 - (i32.load - (i32.const 180) - ) + ) + (if (result i32) + (tee_local $0 + (i32.load + (i32.const 180) ) - (block - (set_local $7 - (i32.and - (i32.shr_u - (tee_local $0 - (i32.add - (i32.and + ) + (block + (set_local $7 + (i32.and + (i32.shr_u + (tee_local $0 + (i32.add + (i32.and + (get_local $0) + (i32.sub + (i32.const 0) (get_local $0) - (i32.sub - (i32.const 0) - (get_local $0) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $11 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $0 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $11 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $0 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (tee_local $1 - (i32.shr_u - (get_local $0) - (get_local $7) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $7) - ) (tee_local $0 (i32.and (i32.shr_u (tee_local $1 (i32.shr_u - (get_local $1) (get_local $0) + (get_local $7) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $7) ) (tee_local $0 (i32.and @@ -8155,9 +8096,9 @@ (get_local $0) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -8172,849 +8113,859 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $1) - (get_local $0) + (tee_local $0 + (i32.and + (i32.shr_u + (tee_local $1 + (i32.shr_u + (get_local $1) + (get_local $0) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $1) + (get_local $0) + ) ) + (i32.const 2) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (set_local $7 - (get_local $0) - ) - (loop $while-in - (block $while-out + ) + (set_local $7 + (get_local $0) + ) + (loop $while-in + (block $while-out + (if + (tee_local $1 + (i32.load offset=16 + (get_local $0) + ) + ) + (set_local $0 + (get_local $1) + ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $0) + (i32.eqz + (tee_local $0 + (i32.load offset=20 + (get_local $0) + ) ) ) - (set_local $0 - (get_local $1) - ) - (if - (i32.eqz - (tee_local $0 - (i32.load offset=20 - (get_local $0) - ) - ) + (block + (set_local $6 + (get_local $11) ) - (block - (set_local $6 - (get_local $11) - ) - (set_local $8 - (get_local $7) - ) - (br $while-out) + (set_local $8 + (get_local $7) ) + (br $while-out) ) ) - (set_local $6 - (i32.lt_u - (tee_local $1 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (set_local $6 + (i32.lt_u + (tee_local $1 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $0) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $11) ) + (get_local $11) ) - (set_local $11 - (select - (get_local $1) - (get_local $11) - (get_local $6) - ) + ) + (set_local $11 + (select + (get_local $1) + (get_local $11) + (get_local $6) ) - (set_local $7 - (select - (get_local $0) - (get_local $7) - (get_local $6) - ) + ) + (set_local $7 + (select + (get_local $0) + (get_local $7) + (get_local $6) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $8) - (tee_local $10 - (i32.load - (i32.const 192) - ) + ) + (if + (i32.lt_u + (get_local $8) + (tee_local $10 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $8) - (tee_local $5 - (i32.add - (get_local $8) - (get_local $2) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $8) + (tee_local $5 + (i32.add + (get_local $8) + (get_local $2) ) ) - (call $_abort) ) - (set_local $9 - (i32.load offset=24 - (get_local $8) + (call $_abort) + ) + (set_local $9 + (i32.load offset=24 + (get_local $8) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $8) + ) ) + (get_local $8) ) (block $do-once4 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $8) - ) - ) - (get_local $8) - ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 20) - ) - ) - ) - ) - ) - (br_if $do-once4 - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 16) - ) - ) - ) + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 20) ) ) ) ) - (loop $while-in7 - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 20) - ) + ) + (br_if $do-once4 + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 16) ) ) ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) - ) - (br $while-in7) - ) ) - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) + ) + ) + ) + (loop $while-in7 + (if + (tee_local $7 + (i32.load + (tee_local $11 + (i32.add + (get_local $1) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $0) - (get_local $10) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $4 - (get_local $1) - ) + (set_local $0 + (get_local $11) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $11 - (i32.load offset=8 - (get_local $8) + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $10) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $11) - (i32.const 12) - ) - ) - ) - (get_local $8) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) + (set_local $0 + (get_local $11) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (get_local $10) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $4 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $11 + (i32.load offset=8 (get_local $8) ) - (block - (i32.store - (get_local $7) - (get_local $0) - ) - (i32.store - (get_local $1) + ) + (get_local $10) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $11) + (i32.const 12) ) - (set_local $4 + ) + ) + (get_local $8) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 8) ) ) - (call $_abort) + ) + (get_local $8) + ) + (block + (i32.store + (get_local $7) + (get_local $0) + ) + (i32.store + (get_local $1) + (get_local $11) + ) + (set_local $4 + (get_local $0) ) ) + (call $_abort) ) ) + ) + (if + (get_local $9) (block $do-once8 (if - (get_local $9) - (block - (if - (i32.eq - (get_local $8) - (i32.load - (tee_local $0 - (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $8) - ) - ) - (i32.const 2) + (i32.eq + (get_local $8) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $8) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $0) - (get_local $4) - ) - (if - (i32.eqz - (get_local $4) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $0) + (get_local $4) + ) + (if + (i32.eqz + (get_local $4) ) (block - (if - (i32.lt_u - (get_local $9) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $9) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) - (get_local $8) - ) - (i32.store - (get_local $0) - (get_local $4) - ) - (i32.store offset=20 - (get_local $9) - (get_local $4) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $4) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $4) - (tee_local $0 - (i32.load - (i32.const 192) - ) + (get_local $9) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $4) - (get_local $9) - ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $8) - ) - ) - (if - (i32.lt_u - (get_local $1) - (get_local $0) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $4) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $4) + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $9) + (i32.const 16) + ) ) ) + (get_local $8) + ) + (i32.store + (get_local $0) + (get_local $4) + ) + (i32.store offset=20 + (get_local $9) + (get_local $4) ) ) - (if - (tee_local $0 - (i32.load offset=20 - (get_local $8) - ) + (br_if $do-once8 + (i32.eqz + (get_local $4) ) - (if - (i32.lt_u - (get_local $0) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $4) - (get_local $0) - ) - (i32.store offset=24 - (get_local $0) - (get_local $4) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $4) + (tee_local $0 + (i32.load + (i32.const 192) ) ) ) + (call $_abort) ) - ) - (if - (i32.lt_u - (get_local $6) - (i32.const 16) + (i32.store offset=24 + (get_local $4) + (get_local $9) ) - (block - (i32.store offset=4 - (get_local $8) - (i32.or - (tee_local $0 - (i32.add - (get_local $6) - (get_local $2) - ) - ) - (i32.const 3) + (if + (tee_local $1 + (i32.load offset=16 + (get_local $8) ) ) - (i32.store - (tee_local $0 - (i32.add - (i32.add - (get_local $8) - (get_local $0) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $1) + (get_local $0) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $4) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $4) ) ) - (i32.or + ) + ) + (if + (tee_local $0 + (i32.load offset=20 + (get_local $8) + ) + ) + (if + (i32.lt_u + (get_local $0) (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $4) (get_local $0) ) - (i32.const 1) + (i32.store offset=24 + (get_local $0) + (get_local $4) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $8) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $6) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $8) + (i32.or + (tee_local $0 + (i32.add + (get_local $6) + (get_local $2) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $6) - (i32.const 1) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $8) + (get_local $0) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $5) - (get_local $6) + (i32.or + (i32.load + (get_local $0) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $8) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or (get_local $6) + (i32.const 1) ) - (if - (tee_local $0 + ) + (i32.store + (i32.add + (get_local $5) + (get_local $6) + ) + (get_local $6) + ) + (if + (tee_local $0 + (i32.load + (i32.const 184) + ) + ) + (block + (set_local $4 (i32.load - (i32.const 184) + (i32.const 196) ) ) - (block - (set_local $4 - (i32.load - (i32.const 196) + (set_local $2 + (i32.add + (i32.shl + (tee_local $0 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 216) ) - (set_local $2 - (i32.add + ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) + ) + ) + (tee_local $0 (i32.shl - (tee_local $0 - (i32.shr_u - (get_local $0) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $0) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) + (i32.lt_u (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $2) - (i32.const 8) - ) + (i32.load + (tee_local $1 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $12 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) (set_local $12 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $1) ) (set_local $3 - (get_local $2) + (get_local $0) ) ) ) - (i32.store - (get_local $12) - (get_local $4) - ) - (i32.store offset=12 - (get_local $3) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $3) - ) - (i32.store offset=12 - (get_local $4) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) + ) + (set_local $12 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $3 + (get_local $2) + ) ) ) - ) - (i32.store - (i32.const 184) - (get_local $6) - ) - (i32.store - (i32.const 196) - (get_local $5) + (i32.store + (get_local $12) + (get_local $4) + ) + (i32.store offset=12 + (get_local $3) + (get_local $4) + ) + (i32.store offset=8 + (get_local $4) + (get_local $3) + ) + (i32.store offset=12 + (get_local $4) + (get_local $2) + ) ) ) - ) - (return - (i32.add - (get_local $8) - (i32.const 8) + (i32.store + (i32.const 184) + (get_local $6) + ) + (i32.store + (i32.const 196) + (get_local $5) ) ) ) - (get_local $2) + (return + (i32.add + (get_local $8) + (i32.const 8) + ) + ) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) - (if (result i32) - (i32.gt_u - (get_local $0) - (i32.const -65) - ) - (i32.const -1) - (block (result i32) - (set_local $2 - (i32.and - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 11) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const -65) + ) + (i32.const -1) + (block $do-once (result i32) + (set_local $2 + (i32.and + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 11) ) - (i32.const -8) ) + (i32.const -8) ) - (if (result i32) - (tee_local $18 - (i32.load - (i32.const 180) - ) + ) + (if (result i32) + (tee_local $18 + (i32.load + (i32.const 180) ) - (block (result i32) - (set_local $14 + ) + (block (result i32) + (set_local $14 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $0) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $0) - (i32.const 8) - ) + (i32.gt_u + (get_local $2) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $2) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $2) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $2) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $3) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) + (get_local $3) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (set_local $3 - (i32.sub - (i32.const 0) - (get_local $2) - ) + ) + (set_local $3 + (i32.sub + (i32.const 0) + (get_local $2) ) - (block $__rjto$3 - (block $__rjti$3 - (if - (tee_local $0 - (i32.load offset=480 - (i32.shl - (get_local $14) - (i32.const 2) - ) + ) + (block $__rjto$3 + (block $__rjti$3 + (if + (tee_local $0 + (i32.load offset=480 + (i32.shl + (get_local $14) + (i32.const 2) ) ) - (block - (set_local $9 - (i32.shl - (get_local $2) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $14) - (i32.const 1) - ) - ) - (i32.eq + ) + (block + (set_local $9 + (i32.shl + (get_local $2) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $14) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $14) + (i32.const 31) + ) ) ) - (set_local $1 - (i32.const 0) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $4 - (i32.sub - (tee_local $12 - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (set_local $1 + (i32.const 0) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $4 + (i32.sub + (tee_local $12 + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (get_local $2) ) + (get_local $2) ) - (get_local $3) ) - (set_local $1 - (if (result i32) - (i32.eq - (get_local $12) - (get_local $2) - ) - (block - (set_local $1 - (get_local $4) - ) - (set_local $3 - (get_local $0) - ) - (br $__rjti$3) + (get_local $3) + ) + (set_local $1 + (if (result i32) + (i32.eq + (get_local $12) + (get_local $2) + ) + (block + (set_local $1 + (get_local $4) ) - (block (result i32) - (set_local $3 - (get_local $4) - ) + (set_local $3 (get_local $0) ) + (br $__rjti$3) + ) + (block (result i32) + (set_local $3 + (get_local $4) + ) + (get_local $0) ) ) ) - (set_local $0 - (select - (get_local $5) - (tee_local $4 - (i32.load offset=20 - (get_local $0) - ) + ) + (set_local $0 + (select + (get_local $5) + (tee_local $4 + (i32.load offset=20 + (get_local $0) ) - (i32.or - (i32.eqz - (get_local $4) - ) - (i32.eq - (get_local $4) - (tee_local $12 - (i32.load + ) + (i32.or + (i32.eqz + (get_local $4) + ) + (i32.eq + (get_local $4) + (tee_local $12 + (i32.load + (i32.add (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $9) - (i32.const 31) - ) - (i32.const 2) + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $9) + (i32.const 31) ) + (i32.const 2) ) ) ) @@ -9022,138 +8973,124 @@ ) ) ) - (set_local $4 - (i32.shl - (get_local $9) - (i32.xor - (tee_local $5 - (i32.eqz - (get_local $12) - ) + ) + (set_local $4 + (i32.shl + (get_local $9) + (i32.xor + (tee_local $5 + (i32.eqz + (get_local $12) ) - (i32.const 1) ) + (i32.const 1) ) ) - (set_local $0 - (if (result i32) - (get_local $5) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $1) + ) + (set_local $0 + (if (result i32) + (get_local $5) + (block (result i32) + (set_local $4 + (get_local $0) ) - (block - (set_local $5 - (get_local $0) - ) - (set_local $9 - (get_local $4) - ) - (set_local $0 - (get_local $12) - ) - (br $while-in14) + (get_local $1) + ) + (block + (set_local $5 + (get_local $0) + ) + (set_local $9 + (get_local $4) ) + (set_local $0 + (get_local $12) + ) + (br $while-in14) ) ) ) ) - (set_local $0 - (i32.const 0) - ) ) - (if - (i32.eqz - (i32.or - (get_local $4) - (get_local $0) - ) + (set_local $0 + (i32.const 0) + ) + ) + (if + (i32.eqz + (i32.or + (get_local $4) + (get_local $0) ) - (block - (drop - (br_if $do-once - (get_local $2) - (i32.eqz - (tee_local $1 - (i32.and - (get_local $18) - (i32.or - (tee_local $1 - (i32.shl - (i32.const 2) - (get_local $14) - ) - ) - (i32.sub - (i32.const 0) - (get_local $1) + ) + (block + (drop + (br_if $do-once + (get_local $2) + (i32.eqz + (tee_local $1 + (i32.and + (get_local $18) + (i32.or + (tee_local $1 + (i32.shl + (i32.const 2) + (get_local $14) ) ) + (i32.sub + (i32.const 0) + (get_local $1) + ) ) ) ) ) ) - (set_local $12 - (i32.and - (i32.shr_u - (tee_local $1 - (i32.add - (i32.and + ) + (set_local $12 + (i32.and + (i32.shr_u + (tee_local $1 + (i32.add + (i32.and + (get_local $1) + (i32.sub + (i32.const 0) (get_local $1) - (i32.sub - (i32.const 0) - (get_local $1) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $4 - (i32.load offset=480 - (i32.shl - (i32.add + ) + (set_local $4 + (i32.load offset=480 + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $1 - (i32.and - (i32.shr_u - (tee_local $4 - (i32.shr_u - (get_local $1) - (get_local $12) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $12) - ) (tee_local $1 (i32.and (i32.shr_u (tee_local $4 (i32.shr_u - (get_local $4) (get_local $1) + (get_local $12) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $12) ) (tee_local $1 (i32.and @@ -9164,9 +9101,9 @@ (get_local $1) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) @@ -9181,763 +9118,876 @@ ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $4) - (get_local $1) + (tee_local $1 + (i32.and + (i32.shr_u + (tee_local $4 + (i32.shr_u + (get_local $4) + (get_local $1) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $4) + (get_local $1) + ) ) + (i32.const 2) ) ) ) ) - (set_local $4 - (if (result i32) - (get_local $4) - (block - (set_local $1 - (get_local $3) - ) - (set_local $3 - (get_local $4) - ) - (br $__rjti$3) + ) + (set_local $4 + (if (result i32) + (get_local $4) + (block + (set_local $1 + (get_local $3) ) - (get_local $0) + (set_local $3 + (get_local $4) + ) + (br $__rjti$3) ) + (get_local $0) ) - (br $__rjto$3) ) - (loop $while-in16 - (set_local $12 - (i32.lt_u - (tee_local $4 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $3) - ) - (i32.const -8) + (br $__rjto$3) + ) + (loop $while-in16 + (set_local $12 + (i32.lt_u + (tee_local $4 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $3) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $1) ) + (get_local $1) ) - (set_local $1 - (select - (get_local $4) - (get_local $1) - (get_local $12) - ) + ) + (set_local $1 + (select + (get_local $4) + (get_local $1) + (get_local $12) ) - (set_local $0 - (select + ) + (set_local $0 + (select + (get_local $3) + (get_local $0) + (get_local $12) + ) + ) + (if + (tee_local $4 + (i32.load offset=16 (get_local $3) - (get_local $0) - (get_local $12) ) ) - (if - (tee_local $4 - (i32.load offset=16 - (get_local $3) - ) - ) - (block - (set_local $3 - (get_local $4) - ) - (br $while-in16) + (block + (set_local $3 + (get_local $4) ) + (br $while-in16) ) - (br_if $while-in16 - (tee_local $3 - (i32.load offset=20 - (get_local $3) - ) + ) + (br_if $while-in16 + (tee_local $3 + (i32.load offset=20 + (get_local $3) ) ) ) - (set_local $4 - (get_local $0) - ) - (set_local $3 - (get_local $1) - ) ) + (set_local $4 + (get_local $0) + ) + (set_local $3 + (get_local $1) + ) + ) + (if (result i32) + (get_local $4) (if (result i32) - (get_local $4) - (if (result i32) - (i32.lt_u - (get_local $3) - (i32.sub - (i32.load - (i32.const 184) - ) - (get_local $2) + (i32.lt_u + (get_local $3) + (i32.sub + (i32.load + (i32.const 184) ) + (get_local $2) ) - (block - (if - (i32.lt_u - (get_local $4) - (tee_local $8 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.lt_u + (get_local $4) + (tee_local $8 + (i32.load + (i32.const 192) ) ) - (call $_abort) ) - (if - (i32.ge_u - (get_local $4) - (tee_local $5 - (i32.add - (get_local $4) - (get_local $2) - ) + (call $_abort) + ) + (if + (i32.ge_u + (get_local $4) + (tee_local $5 + (i32.add + (get_local $4) + (get_local $2) ) ) - (call $_abort) ) - (set_local $12 - (i32.load offset=24 - (get_local $4) + (call $_abort) + ) + (set_local $12 + (i32.load offset=24 + (get_local $4) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $4) + ) ) + (get_local $4) ) (block $do-once17 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $4) - ) - ) - (get_local $4) - ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 20) - ) - ) - ) - ) - ) - (br_if $do-once17 - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 16) - ) - ) - ) + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 20) ) ) ) ) - (loop $while-in20 - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 20) - ) + ) + (br_if $do-once17 + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 16) ) ) ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) - ) - (br $while-in20) - ) ) - (if - (tee_local $7 - (i32.load - (tee_local $11 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $7) - ) - (set_local $0 - (get_local $11) + ) + ) + ) + (loop $while-in20 + (if + (tee_local $7 + (i32.load + (tee_local $11 + (i32.add + (get_local $1) + (i32.const 20) ) - (br $while-in20) ) ) ) - (if - (i32.lt_u - (get_local $0) - (get_local $8) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $10 - (get_local $1) - ) + (set_local $0 + (get_local $11) ) + (br $while-in20) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $7 + (i32.load (tee_local $11 - (i32.load offset=8 - (get_local $4) + (i32.add + (get_local $1) + (i32.const 16) ) ) - (get_local $8) ) - (call $_abort) ) - (if - (i32.ne - (i32.load - (tee_local $7 - (i32.add - (get_local $11) - (i32.const 12) - ) - ) - ) - (get_local $4) + (block + (set_local $1 + (get_local $7) ) - (call $_abort) + (set_local $0 + (get_local $11) + ) + (br $while-in20) ) - (if - (i32.eq - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (get_local $8) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $10 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $11 + (i32.load offset=8 (get_local $4) ) - (block - (i32.store - (get_local $7) - (get_local $0) - ) - (i32.store - (get_local $1) + ) + (get_local $8) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $7 + (i32.add (get_local $11) + (i32.const 12) ) - (set_local $10 + ) + ) + (get_local $4) + ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $1 + (i32.add (get_local $0) + (i32.const 8) ) ) - (call $_abort) ) + (get_local $4) ) + (block + (i32.store + (get_local $7) + (get_local $0) + ) + (i32.store + (get_local $1) + (get_local $11) + ) + (set_local $10 + (get_local $0) + ) + ) + (call $_abort) ) ) + ) + (if + (get_local $12) (block $do-once21 (if - (get_local $12) - (block - (if - (i32.eq - (get_local $4) - (i32.load - (tee_local $0 - (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $4) - ) - ) - (i32.const 2) + (i32.eq + (get_local $4) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $4) ) - (i32.const 480) ) + (i32.const 2) ) + (i32.const 480) ) ) - (block - (i32.store - (get_local $0) - (get_local $10) - ) - (if - (i32.eqz - (get_local $10) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) - ) - (br $do-once21) - ) - ) + ) + ) + (block + (i32.store + (get_local $0) + (get_local $10) + ) + (if + (i32.eqz + (get_local $10) ) (block - (if - (i32.lt_u - (get_local $12) + (i32.store + (i32.const 180) + (i32.and (i32.load - (i32.const 192) + (i32.const 180) ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $12) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) - (get_local $4) - ) - (i32.store - (get_local $0) - (get_local $10) - ) - (i32.store offset=20 - (get_local $12) - (get_local $10) - ) - ) - (br_if $do-once21 - (i32.eqz - (get_local $10) ) ) + (br $do-once21) ) ) + ) + (block (if (i32.lt_u - (get_local $10) - (tee_local $0 - (i32.load - (i32.const 192) - ) + (get_local $12) + (i32.load + (i32.const 192) ) ) (call $_abort) ) - (i32.store offset=24 - (get_local $10) - (get_local $12) - ) (if - (tee_local $1 - (i32.load offset=16 - (get_local $4) - ) - ) - (if - (i32.lt_u - (get_local $1) - (get_local $0) - ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $10) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $10) + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $12) + (i32.const 16) + ) ) ) + (get_local $4) ) - ) - (if - (tee_local $0 - (i32.load offset=20 - (get_local $4) - ) + (i32.store + (get_local $0) + (get_local $10) ) - (if - (i32.lt_u - (get_local $0) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $10) - (get_local $0) - ) - (i32.store offset=24 - (get_local $0) - (get_local $10) - ) - ) + (i32.store offset=20 + (get_local $12) + (get_local $10) + ) + ) + (br_if $do-once21 + (i32.eqz + (get_local $10) ) ) ) ) - ) - (block $do-once25 (if (i32.lt_u - (get_local $3) - (i32.const 16) + (get_local $10) + (tee_local $0 + (i32.load + (i32.const 192) + ) + ) ) - (block - (i32.store offset=4 + (call $_abort) + ) + (i32.store offset=24 + (get_local $10) + (get_local $12) + ) + (if + (tee_local $1 + (i32.load offset=16 (get_local $4) - (i32.or - (tee_local $0 - (i32.add - (get_local $3) - (get_local $2) - ) - ) - (i32.const 3) - ) ) - (i32.store - (tee_local $0 - (i32.add - (i32.add - (get_local $4) - (get_local $0) - ) - (i32.const 4) - ) + ) + (if + (i32.lt_u + (get_local $1) + (get_local $0) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $10) + (get_local $1) ) - (i32.or - (i32.load - (get_local $0) - ) - (i32.const 1) + (i32.store offset=24 + (get_local $1) + (get_local $10) ) ) ) - (block - (i32.store offset=4 + ) + (if + (tee_local $0 + (i32.load offset=20 (get_local $4) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) ) ) - (i32.store offset=4 - (get_local $5) - (i32.or - (get_local $3) - (i32.const 1) + (call $_abort) + (block + (i32.store offset=20 + (get_local $10) + (get_local $0) + ) + (i32.store offset=24 + (get_local $0) + (get_local $10) ) ) - (i32.store + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $3) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $4) + (i32.or + (tee_local $0 (i32.add - (get_local $5) (get_local $3) + (get_local $2) ) - (get_local $3) ) - (set_local $0 - (i32.shr_u - (get_local $3) - (i32.const 3) + (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (i32.add + (get_local $4) + (get_local $0) ) + (i32.const 4) ) - (if - (i32.lt_u - (get_local $3) - (i32.const 256) + ) + (i32.or + (i32.load + (get_local $0) + ) + (i32.const 1) + ) + ) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $5) + (i32.or + (get_local $3) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $5) + (get_local $3) + ) + (get_local $3) + ) + (set_local $0 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $3) + (i32.const 256) + ) + (block + (set_local $3 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 216) ) - (block - (set_local $3 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 216) + ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) ) ) - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) + ) + ) + (if + (i32.lt_u + (tee_local $0 + (i32.load + (tee_local $1 + (i32.add + (get_local $3) + (i32.const 8) ) ) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (set_local $13 - (get_local $1) - ) - (set_local $6 - (get_local $0) - ) ) ) - (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) - (set_local $13 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - (set_local $6 - (get_local $3) - ) + (i32.load + (i32.const 192) ) ) - (i32.store - (get_local $13) - (get_local $5) + (call $_abort) + (block + (set_local $13 + (get_local $1) + ) + (set_local $6 + (get_local $0) + ) ) - (i32.store offset=12 - (get_local $6) - (get_local $5) + ) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $5) - (get_local $6) + (set_local $13 + (i32.add + (get_local $3) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $5) + (set_local $6 (get_local $3) ) - (br $do-once25) ) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $7 - (if (result i32) - (tee_local $0 + (i32.store + (get_local $13) + (get_local $5) + ) + (i32.store offset=12 + (get_local $6) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $6) + ) + (i32.store offset=12 + (get_local $5) + (get_local $3) + ) + (br $do-once25) + ) + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $7 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $3) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u (get_local $3) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u - (get_local $3) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $3) + (i32.add + (tee_local $0 (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $2) + (i32.const 4) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) - ) - (i32.const 245760) + ) + (get_local $2) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $5) + (get_local $7) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $5) - (get_local $7) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) + ) + ) (tee_local $0 - (i32.add - (get_local $5) - (i32.const 16) + (i32.shl + (i32.const 1) + (get_local $7) ) ) - (i32.const 0) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) + ) ) (i32.store - (get_local $0) + (get_local $2) + (get_local $5) + ) + (i32.store offset=24 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $5) + ) + (br $do-once25) + ) + ) + (set_local $7 + (i32.shl + (get_local $3) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $7) + (i32.const 1) + ) + ) + (i32.eq + (get_local $7) + (i32.const 31) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) + ) + ) + (set_local $0 + (i32.load + (get_local $2) + ) + ) + (block $__rjto$1 + (block $__rjti$1 + (loop $while-in28 + (br_if $__rjti$1 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $7) + (get_local $3) + ) + ) + (set_local $2 + (i32.shl + (get_local $7) + (i32.const 1) + ) + ) + (if + (tee_local $1 + (i32.load + (tee_local $7 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $7) + (i32.const 31) + ) + (i32.const 2) + ) + ) ) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or + (block + (set_local $7 + (get_local $2) + ) + (set_local $0 (get_local $1) - (get_local $0) ) + (br $while-in28) + ) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $2) + (get_local $7) (get_local $5) ) (i32.store offset=24 (get_local $5) - (get_local $2) + (get_local $0) ) (i32.store offset=12 (get_local $5) @@ -9950,177 +10000,72 @@ (br $do-once25) ) ) - (set_local $7 - (i32.shl - (get_local $3) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $7) - (i32.const 1) + (br $__rjto$1) + ) + (if + (i32.and + (i32.ge_u + (tee_local $2 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) + ) ) ) - (i32.eq - (get_local $7) - (i32.const 31) + ) + (tee_local $1 + (i32.load + (i32.const 192) ) ) ) + (i32.ge_u + (get_local $0) + (get_local $1) + ) ) - (set_local $0 - (i32.load + (block + (i32.store offset=12 (get_local $2) + (get_local $5) ) - ) - (block $__rjto$1 - (block $__rjti$1 - (loop $while-in28 - (br_if $__rjti$1 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $3) - ) - ) - (set_local $2 - (i32.shl - (get_local $7) - (i32.const 1) - ) - ) - (if - (tee_local $1 - (i32.load - (tee_local $7 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $7 - (get_local $2) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in28) - ) - ) - ) - (if - (i32.lt_u - (get_local $7) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $7) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $0) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $5) - ) - (br $do-once25) - ) - ) - (br $__rjto$1) + (i32.store + (get_local $3) + (get_local $5) ) - (if - (i32.and - (i32.ge_u - (tee_local $2 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $2) - (get_local $5) - ) - (i32.store - (get_local $3) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $2) - ) - (i32.store offset=12 - (get_local $5) - (get_local $0) - ) - (i32.store offset=24 - (get_local $5) - (i32.const 0) - ) - ) - (call $_abort) + (i32.store offset=8 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $0) + ) + (i32.store offset=24 + (get_local $5) + (i32.const 0) ) ) + (call $_abort) ) ) ) - (return - (i32.add - (get_local $4) - (i32.const 8) - ) + ) + (return + (i32.add + (get_local $4) + (i32.const 8) ) ) - (get_local $2) ) (get_local $2) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) ) ) @@ -10761,248 +10706,277 @@ (get_local $2) ) ) - (block $do-once40 - (if - (tee_local $5 - (i32.load - (i32.const 200) - ) + (if + (tee_local $5 + (i32.load + (i32.const 200) ) - (block - (set_local $2 - (i32.const 624) - ) - (block $__rjto$10 - (block $__rjti$10 - (loop $while-in45 - (br_if $__rjti$10 - (i32.eq - (get_local $1) - (i32.add - (tee_local $10 - (i32.load - (get_local $2) - ) + ) + (block $do-once40 + (set_local $2 + (i32.const 624) + ) + (block $__rjto$10 + (block $__rjti$10 + (loop $while-in45 + (br_if $__rjti$10 + (i32.eq + (get_local $1) + (i32.add + (tee_local $10 + (i32.load + (get_local $2) ) - (tee_local $6 - (i32.load - (tee_local $4 - (i32.add - (get_local $2) - (i32.const 4) - ) + ) + (tee_local $6 + (i32.load + (tee_local $4 + (i32.add + (get_local $2) + (i32.const 4) ) ) ) ) ) ) - (br_if $while-in45 - (tee_local $2 - (i32.load offset=8 - (get_local $2) - ) + ) + (br_if $while-in45 + (tee_local $2 + (i32.load offset=8 + (get_local $2) ) ) ) - (br $__rjto$10) + ) + (br $__rjto$10) + ) + (if + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $2) + ) + (i32.const 8) + ) ) (if - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $2) - ) - (i32.const 8) + (i32.and + (i32.lt_u + (get_local $5) + (get_local $1) + ) + (i32.ge_u + (get_local $5) + (get_local $10) ) ) - (if - (i32.and - (i32.lt_u - (get_local $5) - (get_local $1) - ) - (i32.ge_u - (get_local $5) - (get_local $10) + (block + (i32.store + (get_local $4) + (i32.add + (get_local $6) + (get_local $3) ) ) - (block - (i32.store - (get_local $4) - (i32.add - (get_local $6) - (get_local $3) - ) - ) - (set_local $2 - (i32.add - (get_local $5) - (tee_local $1 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $5) - (i32.const 8) - ) + (set_local $2 + (i32.add + (get_local $5) + (tee_local $1 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $5) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) - (set_local $1 - (i32.add - (i32.sub - (get_local $3) - (get_local $1) - ) - (i32.load - (i32.const 188) - ) + ) + (set_local $1 + (i32.add + (i32.sub + (get_local $3) + (get_local $1) + ) + (i32.load + (i32.const 188) ) ) - (i32.store - (i32.const 200) - (get_local $2) - ) - (i32.store - (i32.const 188) + ) + (i32.store + (i32.const 200) + (get_local $2) + ) + (i32.store + (i32.const 188) + (get_local $1) + ) + (i32.store offset=4 + (get_local $2) + (i32.or (get_local $1) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $2) - (i32.or - (get_local $1) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 40) + (get_local $1) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (br $do-once40) ) + (br $do-once40) ) ) ) - (if - (i32.lt_u - (get_local $1) - (tee_local $4 - (i32.load - (i32.const 192) - ) - ) - ) - (block - (i32.store + ) + (if + (i32.lt_u + (get_local $1) + (tee_local $4 + (i32.load (i32.const 192) - (get_local $1) - ) - (set_local $4 - (get_local $1) ) ) ) - (set_local $10 - (i32.add + (block + (i32.store + (i32.const 192) + (get_local $1) + ) + (set_local $4 (get_local $1) - (get_local $3) ) ) - (set_local $2 - (i32.const 624) + ) + (set_local $10 + (i32.add + (get_local $1) + (get_local $3) ) - (block $__rjto$11 - (block $__rjti$11 - (loop $while-in47 - (if - (i32.eq - (i32.load - (get_local $2) - ) - (get_local $10) - ) - (block - (set_local $6 - (get_local $2) - ) - (br $__rjti$11) + ) + (set_local $2 + (i32.const 624) + ) + (block $__rjto$11 + (block $__rjti$11 + (loop $while-in47 + (if + (i32.eq + (i32.load + (get_local $2) ) + (get_local $10) ) - (br_if $while-in47 - (tee_local $2 - (i32.load offset=8 - (get_local $2) - ) + (block + (set_local $6 + (get_local $2) ) + (br $__rjti$11) ) ) - (set_local $4 - (i32.const 624) + (br_if $while-in47 + (tee_local $2 + (i32.load offset=8 + (get_local $2) + ) + ) ) - (br $__rjto$11) ) (set_local $4 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $2) - ) - (i32.const 8) + (i32.const 624) + ) + (br $__rjto$11) + ) + (set_local $4 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $2) ) - (i32.const 624) - (block - (i32.store - (get_local $6) - (get_local $1) + (i32.const 8) + ) + (i32.const 624) + (block + (i32.store + (get_local $6) + (get_local $1) + ) + (i32.store + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 4) + ) ) - (i32.store - (tee_local $2 - (i32.add - (get_local $2) - (i32.const 4) - ) + (i32.add + (i32.load + (get_local $2) ) - (i32.add - (i32.load - (get_local $2) + (get_local $3) + ) + ) + (set_local $9 + (i32.add + (tee_local $12 + (i32.add + (get_local $1) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) + ) + ) ) - (get_local $3) ) + (get_local $0) ) - (set_local $9 - (i32.add - (tee_local $12 + ) + (set_local $7 + (i32.sub + (i32.sub + (tee_local $6 (i32.add - (get_local $1) + (get_local $10) (select (i32.and (i32.sub (i32.const 0) (tee_local $1 (i32.add - (get_local $1) + (get_local $10) (i32.const 8) ) ) @@ -11017,68 +10991,69 @@ ) ) ) - (get_local $0) + (get_local $12) ) + (get_local $0) ) - (set_local $7 - (i32.sub - (i32.sub - (tee_local $6 - (i32.add - (get_local $10) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $10) - (i32.const 8) - ) - ) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) - ) - ) + ) + (i32.store offset=4 + (get_local $12) + (i32.or + (get_local $0) + (i32.const 3) + ) + ) + (if + (i32.eq + (get_local $6) + (get_local $5) + ) + (block + (i32.store + (i32.const 188) + (tee_local $0 + (i32.add + (i32.load + (i32.const 188) ) + (get_local $7) ) - (get_local $12) ) - (get_local $0) ) - ) - (i32.store offset=4 - (get_local $12) - (i32.or - (get_local $0) - (i32.const 3) + (i32.store + (i32.const 200) + (get_local $9) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $0) + (i32.const 1) + ) ) ) (block $do-once48 (if (i32.eq (get_local $6) - (get_local $5) + (i32.load + (i32.const 196) + ) ) (block (i32.store - (i32.const 188) + (i32.const 184) (tee_local $0 (i32.add (i32.load - (i32.const 188) + (i32.const 184) ) (get_local $7) ) ) ) (i32.store - (i32.const 200) + (i32.const 196) (get_local $9) ) (i32.store offset=4 @@ -11088,835 +11063,890 @@ (i32.const 1) ) ) - ) - (block - (if - (i32.eq - (get_local $6) - (i32.load - (i32.const 196) - ) + (i32.store + (i32.add + (get_local $9) + (get_local $0) ) - (block - (i32.store - (i32.const 184) - (tee_local $0 - (i32.add - (i32.load - (i32.const 184) + (get_local $0) + ) + (br $do-once48) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (tee_local $0 + (if (result i32) + (i32.eq + (i32.and + (tee_local $0 + (i32.load offset=4 + (get_local $6) + ) ) - (get_local $7) + (i32.const 3) ) - ) - ) - (i32.store - (i32.const 196) - (get_local $9) - ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $0) (i32.const 1) ) - ) - (i32.store - (i32.add - (get_local $9) - (get_local $0) - ) - (get_local $0) - ) - (br $do-once48) - ) - ) - (i32.store - (tee_local $0 - (i32.add - (tee_local $0 - (if (result i32) - (i32.eq - (i32.and - (tee_local $0 - (i32.load offset=4 - (get_local $6) - ) - ) - (i32.const 3) - ) - (i32.const 1) + (block (result i32) + (set_local $10 + (i32.and + (get_local $0) + (i32.const -8) ) - (block (result i32) - (set_local $10 - (i32.and - (get_local $0) - (i32.const -8) - ) + ) + (set_local $1 + (i32.shr_u + (get_local $0) + (i32.const 3) + ) + ) + (block $label$break$L331 + (if + (i32.lt_u + (get_local $0) + (i32.const 256) ) - (set_local $1 - (i32.shr_u - (get_local $0) - (i32.const 3) + (block + (set_local $2 + (i32.load offset=12 + (get_local $6) + ) ) - ) - (block $label$break$L331 (if - (i32.lt_u - (get_local $0) - (i32.const 256) - ) - (block - (set_local $2 - (i32.load offset=12 + (i32.ne + (tee_local $3 + (i32.load offset=8 (get_local $6) ) ) - (block $do-once51 - (if - (i32.ne - (tee_local $3 - (i32.load offset=8 - (get_local $6) - ) - ) - (tee_local $0 - (i32.add - (i32.shl - (get_local $1) - (i32.const 3) - ) - (i32.const 216) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $3) - (get_local $4) - ) - (call $_abort) - ) - (br_if $do-once51 - (i32.eq - (i32.load offset=12 - (get_local $3) - ) - (get_local $6) - ) - ) - (call $_abort) + (tee_local $0 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) ) + (i32.const 216) ) ) + ) + (block $do-once51 (if - (i32.eq - (get_local $2) + (i32.lt_u (get_local $3) + (get_local $4) ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) - ) - ) + (call $_abort) + ) + (br_if $do-once51 + (i32.eq + (i32.load offset=12 + (get_local $3) ) - (br $label$break$L331) + (get_local $6) ) ) - (block $do-once53 - (if - (i32.eq - (get_local $2) - (get_local $0) - ) - (set_local $15 - (i32.add - (get_local $2) - (i32.const 8) - ) + (call $_abort) + ) + ) + (if + (i32.eq + (get_local $2) + (get_local $3) + ) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) ) - (block - (if - (i32.lt_u - (get_local $2) - (get_local $4) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - ) - (get_local $6) - ) - (block - (set_local $15 - (get_local $0) - ) - (br $do-once53) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) - (call $_abort) + (i32.const -1) ) ) ) - (i32.store offset=12 - (get_local $3) + (br $label$break$L331) + ) + ) + (if + (i32.eq + (get_local $2) + (get_local $0) + ) + (set_local $15 + (i32.add (get_local $2) - ) - (i32.store - (get_local $15) - (get_local $3) + (i32.const 8) ) ) - (block - (set_local $5 - (i32.load offset=24 - (get_local $6) + (block $do-once53 + (if + (i32.lt_u + (get_local $2) + (get_local $4) ) + (call $_abort) ) - (block $do-once55 - (if - (i32.eq + (if + (i32.eq + (i32.load (tee_local $0 - (i32.load offset=12 - (get_local $6) + (i32.add + (get_local $2) + (i32.const 8) ) ) - (get_local $6) ) - (block - (if - (i32.eqz - (tee_local $1 - (i32.load - (tee_local $0 - (i32.add - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - ) - (block - (br_if $do-once55 - (i32.eqz - (tee_local $1 - (i32.load - (get_local $3) - ) - ) - ) - ) - (set_local $0 - (get_local $3) - ) - ) - ) - (loop $while-in58 - (if - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $3) - ) - (set_local $0 - (get_local $2) - ) - (br $while-in58) - ) - ) - (if - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $1 - (get_local $3) - ) - (set_local $0 - (get_local $2) - ) - (br $while-in58) - ) - ) - ) - (if - (i32.lt_u - (get_local $0) - (get_local $4) - ) - (call $_abort) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $8 - (get_local $1) - ) - ) - ) + (get_local $6) + ) + (block + (set_local $15 + (get_local $0) ) - (block - (if - (i32.lt_u - (tee_local $2 - (i32.load offset=8 - (get_local $6) - ) - ) - (get_local $4) - ) - (call $_abort) - ) - (if - (i32.ne - (i32.load + (br $do-once53) + ) + ) + (call $_abort) + ) + ) + (i32.store offset=12 + (get_local $3) + (get_local $2) + ) + (i32.store + (get_local $15) + (get_local $3) + ) + ) + (block + (set_local $5 + (i32.load offset=24 + (get_local $6) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $6) + ) + ) + (get_local $6) + ) + (block $do-once55 + (if + (i32.eqz + (tee_local $1 + (i32.load + (tee_local $0 + (i32.add (tee_local $3 (i32.add - (get_local $2) - (i32.const 12) + (get_local $6) + (i32.const 16) ) ) + (i32.const 4) ) - (get_local $6) ) - (call $_abort) ) - (if - (i32.eq + ) + ) + (block + (br_if $do-once55 + (i32.eqz + (tee_local $1 (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $6) - ) - (block - (i32.store (get_local $3) - (get_local $0) - ) - (i32.store - (get_local $1) - (get_local $2) - ) - (set_local $8 - (get_local $0) ) ) - (call $_abort) ) ) + (set_local $0 + (get_local $3) + ) ) ) - (br_if $label$break$L331 - (i32.eqz - (get_local $5) - ) - ) - (block $do-once59 + (loop $while-in58 (if - (i32.eq - (get_local $6) + (tee_local $3 (i32.load - (tee_local $0 + (tee_local $2 (i32.add - (i32.shl - (tee_local $1 - (i32.load offset=28 - (get_local $6) - ) - ) - (i32.const 2) - ) - (i32.const 480) + (get_local $1) + (i32.const 20) ) ) ) ) (block - (i32.store - (get_local $0) - (get_local $8) + (set_local $1 + (get_local $3) ) - (br_if $do-once59 - (get_local $8) + (set_local $0 + (get_local $2) ) - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $1) - ) - (i32.const -1) + (br $while-in58) + ) + ) + (if + (tee_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $1) + (i32.const 16) ) ) ) - (br $label$break$L331) ) (block - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $5) - (i32.const 16) - ) - ) - ) - (get_local $6) - ) - (i32.store - (get_local $0) - (get_local $8) - ) - (i32.store offset=20 - (get_local $5) - (get_local $8) - ) + (set_local $1 + (get_local $3) ) - (br_if $label$break$L331 - (i32.eqz - (get_local $8) - ) + (set_local $0 + (get_local $2) ) + (br $while-in58) ) ) ) (if (i32.lt_u - (get_local $8) - (tee_local $1 - (i32.load - (i32.const 192) + (get_local $0) + (get_local $4) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $8 + (get_local $1) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $2 + (i32.load offset=8 + (get_local $6) ) ) + (get_local $4) ) (call $_abort) ) - (i32.store offset=24 - (get_local $8) - (get_local $5) + (if + (i32.ne + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 12) + ) + ) + ) + (get_local $6) + ) + (call $_abort) ) (if - (tee_local $3 + (i32.eq (i32.load - (tee_local $0 + (tee_local $1 (i32.add - (get_local $6) - (i32.const 16) + (get_local $0) + (i32.const 8) ) ) ) + (get_local $6) ) - (if - (i32.lt_u + (block + (i32.store (get_local $3) + (get_local $0) + ) + (i32.store (get_local $1) + (get_local $2) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $8) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $8) + (set_local $8 + (get_local $0) + ) + ) + (call $_abort) + ) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $5) + ) + ) + (if + (i32.eq + (get_local $6) + (i32.load + (tee_local $0 + (i32.add + (i32.shl + (tee_local $1 + (i32.load offset=28 + (get_local $6) + ) + ) + (i32.const 2) ) + (i32.const 480) ) ) ) - (br_if $label$break$L331 - (i32.eqz - (tee_local $0 - (i32.load offset=4 - (get_local $0) + ) + (block $do-once59 + (i32.store + (get_local $0) + (get_local $8) + ) + (br_if $do-once59 + (get_local $8) + ) + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $1) ) + (i32.const -1) ) ) ) + (br $label$break$L331) + ) + (block (if (i32.lt_u - (get_local $0) + (get_local $5) (i32.load (i32.const 192) ) ) (call $_abort) - (block - (i32.store offset=20 - (get_local $8) - (get_local $0) + ) + (if + (i32.eq + (i32.load + (tee_local $0 + (i32.add + (get_local $5) + (i32.const 16) + ) + ) ) - (i32.store offset=24 - (get_local $0) - (get_local $8) + (get_local $6) + ) + (i32.store + (get_local $0) + (get_local $8) + ) + (i32.store offset=20 + (get_local $5) + (get_local $8) + ) + ) + (br_if $label$break$L331 + (i32.eqz + (get_local $8) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $8) + (tee_local $1 + (i32.load + (i32.const 192) + ) + ) + ) + (call $_abort) + ) + (i32.store offset=24 + (get_local $8) + (get_local $5) + ) + (if + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (get_local $6) + (i32.const 16) ) ) ) ) + (if + (i32.lt_u + (get_local $3) + (get_local $1) + ) + (call $_abort) + (block + (i32.store offset=16 + (get_local $8) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $8) + ) + ) + ) ) - ) - (set_local $7 - (i32.add - (get_local $10) - (get_local $7) + (br_if $label$break$L331 + (i32.eqz + (tee_local $0 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store offset=20 + (get_local $8) + (get_local $0) + ) + (i32.store offset=24 + (get_local $0) + (get_local $8) + ) + ) ) ) - (i32.add - (get_local $6) - (get_local $10) - ) ) + ) + (set_local $7 + (i32.add + (get_local $10) + (get_local $7) + ) + ) + (i32.add (get_local $6) + (get_local $10) ) ) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $0) + (get_local $6) ) - (i32.const -2) ) + (i32.const 4) ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $7) - (i32.const 1) - ) + ) + (i32.and + (i32.load + (get_local $0) ) - (i32.store + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $7) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $9) + (get_local $7) + ) + (get_local $7) + ) + (set_local $0 + (i32.shr_u + (get_local $7) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.const 256) + ) + (block + (set_local $3 (i32.add - (get_local $9) - (get_local $7) - ) - (get_local $7) - ) - (set_local $0 - (i32.shr_u - (get_local $7) - (i32.const 3) + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 216) ) ) (if - (i32.lt_u - (get_local $7) - (i32.const 256) - ) - (block - (set_local $3 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 216) + (i32.and + (tee_local $1 + (i32.load + (i32.const 176) ) ) - (block $do-once63 - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 176) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (block - (if - (i32.ge_u - (tee_local $0 - (i32.load - (tee_local $1 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 192) - ) - ) - (block - (set_local $16 - (get_local $1) - ) - (set_local $11 - (get_local $0) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) + ) + ) + ) + (block $do-once63 + (if + (i32.ge_u + (tee_local $0 + (i32.load + (tee_local $1 + (i32.add + (get_local $3) + (i32.const 8) ) - (br $do-once63) ) ) - (call $_abort) ) - (block - (i32.store - (i32.const 176) - (i32.or - (get_local $1) - (get_local $0) - ) - ) - (set_local $16 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - (set_local $11 - (get_local $3) - ) + (i32.load + (i32.const 192) ) ) + (block + (set_local $16 + (get_local $1) + ) + (set_local $11 + (get_local $0) + ) + (br $do-once63) + ) ) + (call $_abort) + ) + (block (i32.store - (get_local $16) - (get_local $9) - ) - (i32.store offset=12 - (get_local $11) - (get_local $9) + (i32.const 176) + (i32.or + (get_local $1) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $9) - (get_local $11) + (set_local $16 + (i32.add + (get_local $3) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $9) + (set_local $11 (get_local $3) ) - (br $do-once48) ) ) - (set_local $3 - (i32.add - (i32.shl - (tee_local $2 - (block $do-once65 (result i32) - (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $7) - (i32.const 8) - ) - ) - (block (result i32) - (drop - (br_if $do-once65 - (i32.const 31) - (i32.gt_u - (get_local $7) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $7) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $0) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + (i32.store + (get_local $16) + (get_local $9) + ) + (i32.store offset=12 + (get_local $11) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $11) + ) + (i32.store offset=12 + (get_local $9) + (get_local $3) + ) + (br $do-once48) + ) + ) + (set_local $3 + (i32.add + (i32.shl + (tee_local $2 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $7) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $7) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $7) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $0) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $3) + (i32.const 16) ) - (tee_local $0 - (i32.and - (i32.shr_u - (i32.add - (tee_local $1 - (i32.shl - (get_local $1) - (get_local $0) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $3) + ) + (tee_local $0 + (i32.and + (i32.shr_u + (i32.add + (tee_local $1 + (i32.shl + (get_local $1) + (get_local $0) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $1) - (get_local $0) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $1) + (get_local $0) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 480) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 480) + ) + ) + (i32.store offset=28 + (get_local $9) + (get_local $2) + ) + (i32.store offset=4 + (tee_local $0 + (i32.add (get_local $9) - (get_local $2) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) + ) + ) (tee_local $0 - (i32.add - (get_local $9) - (i32.const 16) + (i32.shl + (i32.const 1) + (get_local $2) ) ) - (i32.const 0) ) + ) + (block (i32.store - (get_local $0) + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) + ) + ) + (i32.store + (get_local $3) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $3) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + (br $do-once48) + ) + ) + (set_local $2 + (i32.shl + (get_local $7) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $2) + (i32.const 1) + ) + ) + (i32.eq + (get_local $2) + (i32.const 31) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) + ) + ) + (set_local $0 + (i32.load + (get_local $3) + ) + ) + (block $__rjto$7 + (block $__rjti$7 + (loop $while-in68 + (br_if $__rjti$7 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) + (i32.const -8) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $2) + (get_local $7) + ) + ) + (set_local $3 + (i32.shl + (get_local $2) + (i32.const 1) + ) + ) + (if + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $2) + (i32.const 31) + ) + (i32.const 2) + ) + ) ) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or + (block + (set_local $2 + (get_local $3) + ) + (set_local $0 (get_local $1) - (get_local $0) ) + (br $while-in68) + ) + ) + ) + (if + (i32.lt_u + (get_local $2) + (i32.load + (i32.const 192) ) + ) + (call $_abort) + (block (i32.store - (get_local $3) + (get_local $2) (get_local $9) ) (i32.store offset=24 (get_local $9) - (get_local $3) + (get_local $0) ) (i32.store offset=12 (get_local $9) @@ -11929,972 +11959,867 @@ (br $do-once48) ) ) - (set_local $2 - (i32.shl - (get_local $7) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $2) - (i32.const 1) + (br $__rjto$7) + ) + (if + (i32.and + (i32.ge_u + (tee_local $2 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) + ) ) ) - (i32.eq - (get_local $2) - (i32.const 31) + ) + (tee_local $1 + (i32.load + (i32.const 192) ) ) ) + (i32.ge_u + (get_local $0) + (get_local $1) + ) ) - (set_local $0 - (i32.load + (block + (i32.store offset=12 + (get_local $2) + (get_local $9) + ) + (i32.store (get_local $3) + (get_local $9) ) - ) - (block $__rjto$7 - (block $__rjti$7 - (loop $while-in68 - (br_if $__rjti$7 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) - ) - (get_local $7) - ) - ) - (set_local $3 - (i32.shl - (get_local $2) - (i32.const 1) - ) - ) - (if - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $2) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in68) - ) - ) - ) - (if - (i32.lt_u - (get_local $2) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) - (block - (i32.store - (get_local $2) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $0) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - (br $do-once48) - ) - ) - (br $__rjto$7) + (i32.store offset=8 + (get_local $9) + (get_local $2) ) - (if - (i32.and - (i32.ge_u - (tee_local $2 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $2) - (get_local $9) - ) - (i32.store - (get_local $3) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $2) - ) - (i32.store offset=12 - (get_local $9) - (get_local $0) - ) - (i32.store offset=24 - (get_local $9) - (i32.const 0) - ) - ) - (call $_abort) + (i32.store offset=12 + (get_local $9) + (get_local $0) + ) + (i32.store offset=24 + (get_local $9) + (i32.const 0) ) ) + (call $_abort) ) ) ) - (return - (i32.add - (get_local $12) - (i32.const 8) - ) + ) + (return + (i32.add + (get_local $12) + (i32.const 8) ) ) ) ) ) - (loop $while-in70 - (block $while-out69 - (if - (i32.le_u - (tee_local $2 - (i32.load - (get_local $4) - ) + ) + (loop $while-in70 + (block $while-out69 + (if + (i32.le_u + (tee_local $2 + (i32.load + (get_local $4) ) - (get_local $5) ) - (br_if $while-out69 - (i32.gt_u - (tee_local $2 - (i32.add - (get_local $2) - (i32.load offset=4 - (get_local $4) - ) + (get_local $5) + ) + (br_if $while-out69 + (i32.gt_u + (tee_local $2 + (i32.add + (get_local $2) + (i32.load offset=4 + (get_local $4) ) ) - (get_local $5) ) + (get_local $5) ) ) - (set_local $4 - (i32.load offset=8 - (get_local $4) - ) + ) + (set_local $4 + (i32.load offset=8 + (get_local $4) ) - (br $while-in70) ) + (br $while-in70) ) - (set_local $11 - (i32.add - (tee_local $4 - (i32.add - (get_local $2) - (i32.const -47) - ) + ) + (set_local $11 + (i32.add + (tee_local $4 + (i32.add + (get_local $2) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $8 - (i32.add - (tee_local $10 - (select - (get_local $5) - (tee_local $4 - (i32.add - (get_local $4) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $11) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $8 + (i32.add + (tee_local $10 + (select + (get_local $5) + (tee_local $4 + (i32.add + (get_local $4) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $11) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $11) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $4) - (tee_local $11 - (i32.add - (get_local $5) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $4) + (tee_local $11 + (i32.add + (get_local $5) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 200) - (tee_local $6 - (i32.add - (get_local $1) - (tee_local $4 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $6 + (i32.add + (get_local $1) + (tee_local $4 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $4 - (i32.sub - (i32.add - (get_local $3) - (i32.const -40) - ) - (get_local $4) - ) - ) - ) - (i32.store offset=4 - (get_local $6) - (i32.or - (get_local $4) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $6) - (get_local $4) - ) - (i32.const 40) - ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) - ) - (i32.store - (tee_local $4 + ) + (i32.store + (i32.const 188) + (tee_local $4 + (i32.sub (i32.add - (get_local $10) - (i32.const 4) + (get_local $3) + (i32.const -40) ) + (get_local $4) ) - (i32.const 27) ) - (i32.store - (get_local $8) - (i32.load - (i32.const 624) - ) + ) + (i32.store offset=4 + (get_local $6) + (i32.or + (get_local $4) + (i32.const 1) ) - (i32.store offset=4 - (get_local $8) - (i32.load - (i32.const 628) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $6) + (get_local $4) ) - (i32.store offset=8 - (get_local $8) - (i32.load - (i32.const 632) - ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) - (i32.store offset=12 - (get_local $8) - (i32.load - (i32.const 636) + ) + (i32.store + (tee_local $4 + (i32.add + (get_local $10) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $8) + (i32.load (i32.const 624) - (get_local $1) ) - (i32.store + ) + (i32.store offset=4 + (get_local $8) + (i32.load (i32.const 628) - (get_local $3) ) - (i32.store + ) + (i32.store offset=8 + (get_local $8) + (i32.load + (i32.const 632) + ) + ) + (i32.store offset=12 + (get_local $8) + (i32.load (i32.const 636) - (i32.const 0) ) + ) + (i32.store + (i32.const 624) + (get_local $1) + ) + (i32.store + (i32.const 628) + (get_local $3) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 632) + (get_local $8) + ) + (set_local $1 + (i32.add + (get_local $10) + (i32.const 24) + ) + ) + (loop $while-in72 (i32.store - (i32.const 632) - (get_local $8) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $1 - (i32.add - (get_local $10) - (i32.const 24) + (br_if $while-in72 + (i32.lt_u + (i32.add + (get_local $1) + (i32.const 4) + ) + (get_local $2) ) ) - (loop $while-in72 + ) + (if + (i32.ne + (get_local $10) + (get_local $5) + ) + (block (i32.store - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 4) + (get_local $4) + (i32.and + (i32.load + (get_local $4) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $while-in72 - (i32.lt_u - (i32.add - (get_local $1) - (i32.const 4) + (i32.store offset=4 + (get_local $5) + (i32.or + (tee_local $6 + (i32.sub + (get_local $10) + (get_local $5) + ) ) - (get_local $2) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $10) - (get_local $5) + (get_local $6) ) - (block - (i32.store - (get_local $4) - (i32.and - (i32.load - (get_local $4) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $5) - (i32.or - (tee_local $6 - (i32.sub - (get_local $10) - (get_local $5) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $10) + (set_local $1 + (i32.shr_u (get_local $6) + (i32.const 3) ) - (set_local $1 - (i32.shr_u - (get_local $6) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $6) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $6) - (i32.const 256) + (block + (set_local $2 + (i32.add + (i32.shl + (get_local $1) + (i32.const 3) + ) + (i32.const 216) + ) ) - (block - (set_local $2 - (i32.add + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 176) + ) + ) + (tee_local $1 (i32.shl + (i32.const 1) (get_local $1) - (i32.const 3) ) - (i32.const 216) ) ) (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 176) - ) - ) + (i32.lt_u (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $1) - ) - ) - ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $3 - (i32.add - (get_local $2) - (i32.const 8) - ) + (i32.load + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 8) ) ) ) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (set_local $17 - (get_local $3) - ) - (set_local $7 - (get_local $1) - ) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store - (i32.const 176) - (i32.or - (get_local $3) - (get_local $1) - ) - ) (set_local $17 - (i32.add - (get_local $2) - (i32.const 8) - ) + (get_local $3) ) (set_local $7 - (get_local $2) + (get_local $1) ) ) ) - (i32.store - (get_local $17) - (get_local $5) - ) - (i32.store offset=12 - (get_local $7) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $7) - ) - (i32.store offset=12 - (get_local $5) - (get_local $2) + (block + (i32.store + (i32.const 176) + (i32.or + (get_local $3) + (get_local $1) + ) + ) + (set_local $17 + (i32.add + (get_local $2) + (i32.const 8) + ) + ) + (set_local $7 + (get_local $2) + ) ) - (br $do-once40) ) + (i32.store + (get_local $17) + (get_local $5) + ) + (i32.store offset=12 + (get_local $7) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $7) + ) + (i32.store offset=12 + (get_local $5) + (get_local $2) + ) + (br $do-once40) ) - (set_local $2 - (i32.add - (i32.shl - (tee_local $4 + ) + (set_local $2 + (i32.add + (i32.shl + (tee_local $4 + (if (result i32) + (tee_local $1 + (i32.shr_u + (get_local $6) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $1 - (i32.shr_u - (get_local $6) - (i32.const 8) - ) + (i32.gt_u + (get_local $6) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $6) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $6) - (i32.add - (tee_local $1 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $6) + (i32.add + (tee_local $1 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $1 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $1) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $1) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $1 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $1) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $1) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $2) ) - (tee_local $1 - (i32.and - (i32.shr_u - (i32.add - (tee_local $3 - (i32.shl - (get_local $3) - (get_local $1) - ) + (get_local $2) + ) + (tee_local $1 + (i32.and + (i32.shr_u + (i32.add + (tee_local $3 + (i32.shl + (get_local $3) + (get_local $1) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $3) - (get_local $1) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $3) + (get_local $1) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $1) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $1) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 480) + (i32.const 2) ) + (i32.const 480) ) - (i32.store offset=28 - (get_local $5) - (get_local $4) - ) - (i32.store offset=20 - (get_local $5) - (i32.const 0) - ) - (i32.store - (get_local $11) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $3 - (i32.load - (i32.const 180) - ) - ) - (tee_local $1 - (i32.shl - (i32.const 1) - (get_local $4) - ) + ) + (i32.store offset=28 + (get_local $5) + (get_local $4) + ) + (i32.store offset=20 + (get_local $5) + (i32.const 0) + ) + (i32.store + (get_local $11) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $3 + (i32.load + (i32.const 180) ) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $3) - (get_local $1) + (tee_local $1 + (i32.shl + (i32.const 1) + (get_local $4) ) ) - (i32.store - (get_local $2) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $2) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) - ) - (i32.store offset=8 - (get_local $5) - (get_local $5) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $3) + (get_local $1) ) - (br $do-once40) ) + (i32.store + (get_local $2) + (get_local $5) + ) + (i32.store offset=24 + (get_local $5) + (get_local $2) + ) + (i32.store offset=12 + (get_local $5) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $5) + ) + (br $do-once40) ) - (set_local $4 - (i32.shl - (get_local $6) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $4) - (i32.const 1) - ) - ) - (i32.eq + ) + (set_local $4 + (i32.shl + (get_local $6) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $4) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $4) + (i32.const 31) + ) ) ) - (set_local $1 - (i32.load - (get_local $2) - ) + ) + (set_local $1 + (i32.load + (get_local $2) ) - (block $__rjto$9 - (block $__rjti$9 - (loop $while-in74 - (br_if $__rjti$9 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $1) - ) - (i32.const -8) + ) + (block $__rjto$9 + (block $__rjti$9 + (loop $while-in74 + (br_if $__rjti$9 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $1) ) - (get_local $6) + (i32.const -8) ) + (get_local $6) ) - (set_local $2 - (i32.shl - (get_local $4) - (i32.const 1) - ) + ) + (set_local $2 + (i32.shl + (get_local $4) + (i32.const 1) ) - (if - (tee_local $3 - (i32.load - (tee_local $4 + ) + (if + (tee_local $3 + (i32.load + (tee_local $4 + (i32.add (i32.add - (i32.add - (get_local $1) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $4) - (i32.const 31) - ) - (i32.const 2) + (get_local $1) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $4) + (i32.const 31) ) + (i32.const 2) ) ) ) ) - (block - (set_local $4 - (get_local $2) - ) - (set_local $1 - (get_local $3) - ) - (br $while-in74) - ) - ) - ) - (if - (i32.lt_u - (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) (block - (i32.store - (get_local $4) - (get_local $5) - ) - (i32.store offset=24 - (get_local $5) - (get_local $1) - ) - (i32.store offset=12 - (get_local $5) - (get_local $5) + (set_local $4 + (get_local $2) ) - (i32.store offset=8 - (get_local $5) - (get_local $5) + (set_local $1 + (get_local $3) ) - (br $do-once40) + (br $while-in74) ) ) - (br $__rjto$9) ) (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $2 - (i32.add - (get_local $1) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $1) - (get_local $3) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store offset=12 - (get_local $4) - (get_local $5) - ) (i32.store - (get_local $2) + (get_local $4) (get_local $5) ) - (i32.store offset=8 + (i32.store offset=24 (get_local $5) - (get_local $4) + (get_local $1) ) (i32.store offset=12 (get_local $5) - (get_local $1) + (get_local $5) ) - (i32.store offset=24 + (i32.store offset=8 + (get_local $5) (get_local $5) - (i32.const 0) ) + (br $do-once40) + ) + ) + (br $__rjto$9) + ) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $2 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + ) + ) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (i32.ge_u + (get_local $1) + (get_local $3) + ) + ) + (block + (i32.store offset=12 + (get_local $4) + (get_local $5) + ) + (i32.store + (get_local $2) + (get_local $5) + ) + (i32.store offset=8 + (get_local $5) + (get_local $4) + ) + (i32.store offset=12 + (get_local $5) + (get_local $1) + ) + (i32.store offset=24 + (get_local $5) + (i32.const 0) ) - (call $_abort) ) + (call $_abort) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $2 - (i32.load - (i32.const 192) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $2 + (i32.load + (i32.const 192) ) ) - (i32.lt_u - (get_local $1) - (get_local $2) - ) ) - (i32.store - (i32.const 192) + (i32.lt_u (get_local $1) + (get_local $2) ) ) (i32.store - (i32.const 624) + (i32.const 192) (get_local $1) ) - (i32.store - (i32.const 628) - (get_local $3) - ) - (i32.store - (i32.const 636) - (i32.const 0) + ) + (i32.store + (i32.const 624) + (get_local $1) + ) + (i32.store + (i32.const 628) + (get_local $3) + ) + (i32.store + (i32.const 636) + (i32.const 0) + ) + (i32.store + (i32.const 212) + (i32.load + (i32.const 648) ) - (i32.store - (i32.const 212) - (i32.load - (i32.const 648) + ) + (i32.store + (i32.const 208) + (i32.const -1) + ) + (set_local $2 + (i32.const 0) + ) + (loop $while-in43 + (i32.store offset=12 + (tee_local $4 + (i32.add + (i32.shl + (get_local $2) + (i32.const 3) + ) + (i32.const 216) + ) ) + (get_local $4) ) - (i32.store - (i32.const 208) - (i32.const -1) - ) - (set_local $2 - (i32.const 0) + (i32.store offset=8 + (get_local $4) + (get_local $4) ) - (loop $while-in43 - (i32.store offset=12 - (tee_local $4 + (br_if $while-in43 + (i32.ne + (tee_local $2 (i32.add - (i32.shl - (get_local $2) - (i32.const 3) - ) - (i32.const 216) - ) - ) - (get_local $4) - ) - (i32.store offset=8 - (get_local $4) - (get_local $4) - ) - (br_if $while-in43 - (i32.ne - (tee_local $2 - (i32.add - (get_local $2) - (i32.const 1) - ) + (get_local $2) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 200) - (tee_local $2 - (i32.add - (get_local $1) - (tee_local $1 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 8) - ) + ) + (i32.store + (i32.const 200) + (tee_local $2 + (i32.add + (get_local $1) + (tee_local $1 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 188) - (tee_local $1 - (i32.sub - (i32.add - (get_local $3) - (i32.const -40) - ) - (get_local $1) + ) + (i32.store + (i32.const 188) + (tee_local $1 + (i32.sub + (i32.add + (get_local $3) + (i32.const -40) ) - ) - ) - (i32.store offset=4 - (get_local $2) - (i32.or (get_local $1) - (i32.const 1) ) ) - (i32.store offset=4 - (i32.add - (get_local $2) - (get_local $1) - ) - (i32.const 40) + ) + (i32.store offset=4 + (get_local $2) + (i32.or + (get_local $1) + (i32.const 1) ) - (i32.store - (i32.const 204) - (i32.load - (i32.const 664) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $2) + (get_local $1) + ) + (i32.const 40) + ) + (i32.store + (i32.const 204) + (i32.load + (i32.const 664) ) ) ) @@ -13027,596 +12952,584 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $8) - (i32.const 1) + (if + (i32.and + (get_local $8) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 - (get_local $1) + (set_local $3 + (get_local $0) + ) + ) + (block $do-once + (if + (i32.eqz + (get_local $5) ) - (set_local $3 + (return) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (tee_local $8 + (i32.load + (get_local $1) + ) + ) + ) + ) + (get_local $11) + ) + (call $_abort) + ) + (set_local $0 + (i32.add + (get_local $8) (get_local $0) ) ) - (block - (if - (i32.eqz - (get_local $5) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 196) ) - (return) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub - (get_local $1) - (tee_local $8 + (block + (if + (i32.ne + (i32.and + (tee_local $3 (i32.load - (get_local $1) + (tee_local $2 + (i32.add + (get_local $7) + (i32.const 4) + ) + ) ) ) + (i32.const 3) ) + (i32.const 3) + ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) + (br $do-once) ) - (get_local $11) ) - (call $_abort) - ) - (set_local $0 - (i32.add - (get_local $8) + (i32.store + (i32.const 184) (get_local $0) ) - ) - (if - (i32.eq + (i32.store + (get_local $2) + (i32.and + (get_local $3) + (i32.const -2) + ) + ) + (i32.store offset=4 (get_local $1) - (i32.load - (i32.const 196) + (i32.or + (get_local $0) + (i32.const 1) ) ) - (block - (if - (i32.ne - (i32.and - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - ) + (i32.store + (i32.add + (get_local $1) + (get_local $0) + ) + (get_local $0) + ) + (return) + ) + ) + (set_local $5 + (i32.shr_u + (get_local $8) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $8) + (i32.const 256) + ) + (block + (set_local $6 + (i32.load offset=12 + (get_local $1) + ) + ) + (if + (i32.ne + (tee_local $2 + (i32.load offset=8 + (get_local $1) + ) + ) + (tee_local $3 + (i32.add + (i32.shl + (get_local $5) + (i32.const 3) ) - (i32.const 3) + (i32.const 216) ) - (i32.const 3) ) - (block - (set_local $2 - (get_local $1) + ) + (block + (if + (i32.lt_u + (get_local $2) + (get_local $11) ) - (set_local $3 - (get_local $0) + (call $_abort) + ) + (if + (i32.ne + (i32.load offset=12 + (get_local $2) + ) + (get_local $1) ) - (br $do-once) + (call $_abort) ) ) - (i32.store - (i32.const 184) - (get_local $0) - ) - (i32.store + ) + (if + (i32.eq + (get_local $6) (get_local $2) - (i32.and - (get_local $3) - (i32.const -2) - ) ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $0) - (i32.const 1) + (block + (i32.store + (i32.const 176) + (i32.and + (i32.load + (i32.const 176) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $5) + ) + (i32.const -1) + ) + ) ) - ) - (i32.store - (i32.add + (set_local $2 (get_local $1) + ) + (set_local $3 (get_local $0) ) - (get_local $0) + (br $do-once) ) - (return) - ) - ) - (set_local $5 - (i32.shr_u - (get_local $8) - (i32.const 3) - ) - ) - (if - (i32.lt_u - (get_local $8) - (i32.const 256) ) - (block - (set_local $6 - (i32.load offset=12 - (get_local $1) + (if + (i32.eq + (get_local $6) + (get_local $3) + ) + (set_local $4 + (i32.add + (get_local $6) + (i32.const 8) ) ) - (if - (i32.ne - (tee_local $2 - (i32.load offset=8 - (get_local $1) - ) + (block + (if + (i32.lt_u + (get_local $6) + (get_local $11) ) - (tee_local $3 - (i32.add - (i32.shl - (get_local $5) - (i32.const 3) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 8) + ) ) - (i32.const 216) ) + (get_local $1) + ) + (set_local $4 + (get_local $3) ) + (call $_abort) ) - (block - (if - (i32.lt_u - (get_local $2) - (get_local $11) + ) + ) + (i32.store offset=12 + (get_local $2) + (get_local $6) + ) + (i32.store + (get_local $4) + (get_local $2) + ) + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) + (br $do-once) + ) + ) + (set_local $12 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $4 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) + ) + (block $do-once0 + (if + (i32.eqz + (tee_local $5 + (i32.load + (tee_local $4 + (i32.add + (tee_local $8 + (i32.add + (get_local $1) + (i32.const 16) + ) + ) + (i32.const 4) + ) ) - (call $_abort) ) - (if - (i32.ne - (i32.load offset=12 - (get_local $2) + ) + ) + (block + (br_if $do-once0 + (i32.eqz + (tee_local $5 + (i32.load + (get_local $8) ) - (get_local $1) ) - (call $_abort) ) ) + (set_local $4 + (get_local $8) + ) ) + ) + (loop $while-in (if - (i32.eq - (get_local $6) - (get_local $2) - ) - (block - (i32.store - (i32.const 176) - (i32.and - (i32.load - (i32.const 176) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $5) - ) - (i32.const -1) + (tee_local $8 + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 20) ) ) ) - (set_local $2 - (get_local $1) + ) + (block + (set_local $5 + (get_local $8) ) - (set_local $3 - (get_local $0) + (set_local $4 + (get_local $10) ) - (br $do-once) + (br $while-in) ) ) (if - (i32.eq - (get_local $6) - (get_local $3) - ) - (set_local $4 - (i32.add - (get_local $6) - (i32.const 8) + (tee_local $8 + (i32.load + (tee_local $10 + (i32.add + (get_local $5) + (i32.const 16) + ) + ) ) ) (block - (if - (i32.lt_u - (get_local $6) - (get_local $11) - ) - (call $_abort) + (set_local $5 + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) - ) - (get_local $1) - ) - (set_local $4 - (get_local $3) - ) - (call $_abort) + (set_local $4 + (get_local $10) ) + (br $while-in) ) ) - (i32.store offset=12 - (get_local $2) - (get_local $6) - ) - (i32.store + ) + (if + (i32.lt_u (get_local $4) - (get_local $2) - ) - (set_local $2 - (get_local $1) + (get_local $11) ) - (set_local $3 - (get_local $0) + (call $_abort) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $6 + (get_local $5) + ) ) - (br $do-once) ) ) - (set_local $12 - (i32.load offset=24 - (get_local $1) - ) - ) - (block $do-once0 + (block (if - (i32.eq - (tee_local $4 - (i32.load offset=12 + (i32.lt_u + (tee_local $10 + (i32.load offset=8 (get_local $1) ) ) + (get_local $11) + ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $8 + (i32.add + (get_local $10) + (i32.const 12) + ) + ) + ) (get_local $1) ) - (block - (if - (i32.eqz - (tee_local $5 - (i32.load - (tee_local $4 - (i32.add - (tee_local $8 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add + (get_local $4) + (i32.const 8) ) ) - (block - (br_if $do-once0 - (i32.eqz + ) + (get_local $1) + ) + (block + (i32.store + (get_local $8) + (get_local $4) + ) + (i32.store + (get_local $5) + (get_local $10) + ) + (set_local $6 + (get_local $4) + ) + ) + (call $_abort) + ) + ) + ) + (if + (get_local $12) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $4 + (i32.add + (i32.shl (tee_local $5 - (i32.load - (get_local $8) + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - ) - (set_local $4 - (get_local $8) + (i32.const 480) ) ) ) - (loop $while-in - (if - (tee_local $8 - (i32.load - (tee_local $10 - (i32.add - (get_local $5) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $5 - (get_local $8) - ) - (set_local $4 - (get_local $10) - ) - (br $while-in) - ) + ) + (block + (i32.store + (get_local $4) + (get_local $6) + ) + (if + (i32.eqz + (get_local $6) ) - (if - (tee_local $8 - (i32.load - (tee_local $10 - (i32.add + (block + (i32.store + (i32.const 180) + (i32.and + (i32.load + (i32.const 180) + ) + (i32.xor + (i32.shl + (i32.const 1) (get_local $5) - (i32.const 16) ) + (i32.const -1) ) ) ) - (block - (set_local $5 - (get_local $8) - ) - (set_local $4 - (get_local $10) - ) - (br $while-in) - ) - ) - ) - (if - (i32.lt_u - (get_local $4) - (get_local $11) - ) - (call $_abort) - (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $2 + (get_local $1) ) - (set_local $6 - (get_local $5) + (set_local $3 + (get_local $0) ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $10 - (i32.load offset=8 - (get_local $1) - ) - ) - (get_local $11) - ) - (call $_abort) - ) - (if - (i32.ne + (get_local $12) (i32.load - (tee_local $8 - (i32.add - (get_local $10) - (i32.const 12) - ) - ) + (i32.const 192) ) - (get_local $1) ) (call $_abort) ) (if (i32.eq (i32.load - (tee_local $5 + (tee_local $4 (i32.add - (get_local $4) - (i32.const 8) + (get_local $12) + (i32.const 16) ) ) ) (get_local $1) ) - (block - (i32.store - (get_local $8) - (get_local $4) - ) - (i32.store - (get_local $5) - (get_local $10) - ) - (set_local $6 - (get_local $4) - ) - ) - (call $_abort) - ) - ) - ) - ) - (if - (get_local $12) - (block - (if - (i32.eq - (get_local $1) - (i32.load - (tee_local $4 - (i32.add - (i32.shl - (tee_local $5 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 480) - ) - ) - ) - ) - (block (i32.store (get_local $4) (get_local $6) ) - (if - (i32.eqz - (get_local $6) - ) - (block - (i32.store - (i32.const 180) - (i32.and - (i32.load - (i32.const 180) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $5) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) - (br $do-once) - ) + (i32.store offset=20 + (get_local $12) + (get_local $6) ) ) - (block - (if - (i32.lt_u - (get_local $12) - (i32.load - (i32.const 192) - ) - ) - (call $_abort) + (if + (i32.eqz + (get_local $6) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $12) - (i32.const 16) - ) - ) - ) + (block + (set_local $2 (get_local $1) ) - (i32.store - (get_local $4) - (get_local $6) - ) - (i32.store offset=20 - (get_local $12) - (get_local $6) + (set_local $3 + (get_local $0) ) + (br $do-once) ) - (if - (i32.eqz - (get_local $6) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) - (br $do-once) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $6) + (tee_local $5 + (i32.load + (i32.const 192) ) ) ) - (if - (i32.lt_u - (get_local $6) - (tee_local $5 - (i32.load - (i32.const 192) + (call $_abort) + ) + (i32.store offset=24 + (get_local $6) + (get_local $12) + ) + (if + (tee_local $8 + (i32.load + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) ) ) ) - (call $_abort) - ) - (i32.store offset=24 - (get_local $6) - (get_local $12) ) (if - (tee_local $8 - (i32.load - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) + (i32.lt_u + (get_local $8) + (get_local $5) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=16 + (get_local $6) (get_local $8) - (get_local $5) ) - (call $_abort) - (block - (i32.store offset=16 - (get_local $6) - (get_local $8) - ) - (i32.store offset=24 - (get_local $8) - (get_local $6) - ) + (i32.store offset=24 + (get_local $8) + (get_local $6) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $4) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $4) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 192) ) ) - (if - (i32.lt_u + (call $_abort) + (block + (i32.store offset=20 + (get_local $6) (get_local $4) - (i32.load - (i32.const 192) - ) ) - (call $_abort) - (block - (i32.store offset=20 - (get_local $6) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $6) - ) - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) - ) + (i32.store offset=24 + (get_local $4) + (get_local $6) ) - ) - (block (set_local $2 (get_local $1) ) @@ -13625,16 +13538,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $3 - (get_local $0) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $3 + (get_local $0) + ) + ) ) ) ) @@ -13926,168 +13847,166 @@ (get_local $7) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $7) - ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $7) ) - (get_local $7) ) - (block - (if - (i32.eqz - (tee_local $3 - (i32.load - (tee_local $0 - (i32.add - (tee_local $1 - (i32.add - (get_local $7) - (i32.const 16) - ) + (get_local $7) + ) + (block $do-once6 + (if + (i32.eqz + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (tee_local $1 + (i32.add + (get_local $7) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) ) - (block - (br_if $do-once6 - (i32.eqz - (tee_local $3 - (i32.load - (get_local $1) - ) + ) + (block + (br_if $do-once6 + (i32.eqz + (tee_local $3 + (i32.load + (get_local $1) ) ) ) - (set_local $0 - (get_local $1) - ) + ) + (set_local $0 + (get_local $1) ) ) - (loop $while-in9 - (if - (tee_local $1 - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 20) - ) + ) + (loop $while-in9 + (if + (tee_local $1 + (i32.load + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 20) ) ) ) - (block - (set_local $3 - (get_local $1) - ) - (set_local $0 - (get_local $4) - ) - (br $while-in9) - ) ) - (if - (tee_local $1 - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 16) - ) - ) - ) + (block + (set_local $3 + (get_local $1) ) - (block - (set_local $3 - (get_local $1) - ) - (set_local $0 - (get_local $4) - ) - (br $while-in9) + (set_local $0 + (get_local $4) ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $0) + (tee_local $1 (i32.load - (i32.const 192) + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 16) + ) + ) ) ) - (call $_abort) (block - (i32.store - (get_local $0) - (i32.const 0) + (set_local $3 + (get_local $1) ) - (set_local $9 - (get_local $3) + (set_local $0 + (get_local $4) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $4 - (i32.load offset=8 - (get_local $7) - ) - ) - (i32.load - (i32.const 192) + (if + (i32.lt_u + (get_local $0) + (i32.load + (i32.const 192) + ) + ) + (call $_abort) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $9 + (get_local $3) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $4 + (i32.load offset=8 + (get_local $7) ) ) - (call $_abort) + (i32.load + (i32.const 192) + ) ) - (if - (i32.ne - (i32.load - (tee_local $1 - (i32.add - (get_local $4) - (i32.const 12) - ) + (call $_abort) + ) + (if + (i32.ne + (i32.load + (tee_local $1 + (i32.add + (get_local $4) + (i32.const 12) ) ) - (get_local $7) ) - (call $_abort) + (get_local $7) ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 8) - ) + (call $_abort) + ) + (if + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (get_local $7) ) - (block - (i32.store - (get_local $1) - (get_local $0) - ) - (i32.store - (get_local $3) - (get_local $4) - ) - (set_local $9 - (get_local $0) - ) + (get_local $7) + ) + (block + (i32.store + (get_local $1) + (get_local $0) + ) + (i32.store + (get_local $3) + (get_local $4) + ) + (set_local $9 + (get_local $0) ) - (call $_abort) ) + (call $_abort) ) ) ) @@ -14505,202 +14424,200 @@ (get_local $2) (i32.const 0) ) - (block $do-once12 - (if - (i32.and - (tee_local $1 - (i32.load - (i32.const 180) - ) + (if + (i32.and + (tee_local $1 + (i32.load + (i32.const 180) ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $5) - ) + ) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $5) ) ) - (block - (set_local $5 - (i32.shl - (get_local $3) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $5) - (i32.const 1) - ) - ) - (i32.eq + ) + (block $do-once12 + (set_local $5 + (i32.shl + (get_local $3) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u (get_local $5) - (i32.const 31) + (i32.const 1) ) ) + (i32.eq + (get_local $5) + (i32.const 31) + ) ) ) - (set_local $0 - (i32.load - (get_local $4) - ) + ) + (set_local $0 + (i32.load + (get_local $4) ) - (block $__rjto$1 - (block $__rjti$1 - (loop $while-in15 - (br_if $__rjti$1 - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $0) - ) - (i32.const -8) + ) + (block $__rjto$1 + (block $__rjti$1 + (loop $while-in15 + (br_if $__rjti$1 + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $0) ) - (get_local $3) + (i32.const -8) ) + (get_local $3) ) - (set_local $4 - (i32.shl - (get_local $5) - (i32.const 1) - ) + ) + (set_local $4 + (i32.shl + (get_local $5) + (i32.const 1) ) - (if - (tee_local $1 - (i32.load - (tee_local $5 + ) + (if + (tee_local $1 + (i32.load + (tee_local $5 + (i32.add (i32.add - (i32.add - (get_local $0) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $5) - (i32.const 31) - ) - (i32.const 2) + (get_local $0) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $5) + (i32.const 31) ) + (i32.const 2) ) ) ) ) - (block - (set_local $5 - (get_local $4) - ) - (set_local $0 - (get_local $1) - ) - (br $while-in15) - ) - ) - ) - (if - (i32.lt_u - (get_local $5) - (i32.load - (i32.const 192) - ) ) - (call $_abort) (block - (i32.store - (get_local $5) - (get_local $2) - ) - (i32.store offset=24 - (get_local $2) - (get_local $0) - ) - (i32.store offset=12 - (get_local $2) - (get_local $2) + (set_local $5 + (get_local $4) ) - (i32.store offset=8 - (get_local $2) - (get_local $2) + (set_local $0 + (get_local $1) ) - (br $do-once12) + (br $while-in15) ) ) - (br $__rjto$1) ) (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $1 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 192) - ) - ) - ) - (i32.ge_u - (get_local $0) - (get_local $3) + (i32.lt_u + (get_local $5) + (i32.load + (i32.const 192) ) ) + (call $_abort) (block - (i32.store offset=12 - (get_local $4) - (get_local $2) - ) (i32.store - (get_local $1) + (get_local $5) (get_local $2) ) - (i32.store offset=8 + (i32.store offset=24 (get_local $2) - (get_local $4) + (get_local $0) ) (i32.store offset=12 (get_local $2) - (get_local $0) + (get_local $2) ) - (i32.store offset=24 + (i32.store offset=8 + (get_local $2) (get_local $2) - (i32.const 0) ) + (br $do-once12) ) - (call $_abort) ) + (br $__rjto$1) ) - ) - (block - (i32.store - (i32.const 180) - (i32.or - (get_local $1) - (get_local $0) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $1 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + ) + ) + (tee_local $3 + (i32.load + (i32.const 192) + ) + ) + ) + (i32.ge_u + (get_local $0) + (get_local $3) + ) ) + (block + (i32.store offset=12 + (get_local $4) + (get_local $2) + ) + (i32.store + (get_local $1) + (get_local $2) + ) + (i32.store offset=8 + (get_local $2) + (get_local $4) + ) + (i32.store offset=12 + (get_local $2) + (get_local $0) + ) + (i32.store offset=24 + (get_local $2) + (i32.const 0) + ) + ) + (call $_abort) ) - (i32.store - (get_local $4) - (get_local $2) - ) - (i32.store offset=24 - (get_local $2) - (get_local $4) - ) - (i32.store offset=12 - (get_local $2) - (get_local $2) - ) - (i32.store offset=8 - (get_local $2) - (get_local $2) + ) + ) + (block + (i32.store + (i32.const 180) + (i32.or + (get_local $1) + (get_local $0) ) ) + (i32.store + (get_local $4) + (get_local $2) + ) + (i32.store offset=24 + (get_local $2) + (get_local $4) + ) + (i32.store offset=12 + (get_local $2) + (get_local $2) + ) + (i32.store offset=8 + (get_local $2) + (get_local $2) + ) ) ) (i32.store diff --git a/test/memorygrowth.fromasm b/test/memorygrowth.fromasm index cd7014f8c..5a8a49d8f 100644 --- a/test/memorygrowth.fromasm +++ b/test/memorygrowth.fromasm @@ -124,1769 +124,1782 @@ (get_local $25) ) (set_local $6 - (block $do-once (result i32) - (if (result i32) - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block (result i32) - (if - (i32.and - (tee_local $6 - (i32.shr_u - (tee_local $5 - (i32.load - (i32.const 1208) - ) + (if (result i32) + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block (result i32) + (if + (i32.and + (tee_local $6 + (i32.shr_u + (tee_local $5 + (i32.load + (i32.const 1208) ) - (tee_local $0 - (i32.shr_u - (tee_local $2 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $0 + (i32.shr_u + (tee_local $2 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $7 - (i32.load - (tee_local $2 - (i32.add - (tee_local $13 - (i32.load - (tee_local $16 - (i32.add - (tee_local $9 - (i32.add - (i32.shl - (tee_local $0 - (i32.add - (i32.xor - (i32.and - (get_local $6) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $7 + (i32.load + (tee_local $2 + (i32.add + (tee_local $13 + (i32.load + (tee_local $16 + (i32.add + (tee_local $9 + (i32.add + (i32.shl + (tee_local $0 + (i32.add + (i32.xor + (i32.and + (get_local $6) (i32.const 1) ) - (get_local $0) + (i32.const 1) ) + (get_local $0) ) - (i32.const 3) ) - (i32.const 1248) + (i32.const 3) ) + (i32.const 1248) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $9) - (get_local $7) - ) - (i32.store - (i32.const 1208) - (i32.and - (get_local $5) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $9) + (get_local $7) + ) + (i32.store + (i32.const 1208) + (i32.and + (get_local $5) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) + (i32.const -1) ) ) - (block - (if - (i32.lt_u - (get_local $7) - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.lt_u + (get_local $7) + (i32.load + (i32.const 1224) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $7) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $8 + (i32.add + (get_local $7) + (i32.const 12) ) ) - (get_local $13) ) - (block - (i32.store - (get_local $8) - (get_local $9) - ) - (i32.store - (get_local $16) - (get_local $7) - ) + (get_local $13) + ) + (block + (i32.store + (get_local $8) + (get_local $9) + ) + (i32.store + (get_local $16) + (get_local $7) ) - (call $qa) ) + (call $qa) ) ) - (i32.store offset=4 - (get_local $13) - (i32.or - (tee_local $7 - (i32.shl - (get_local $0) - (i32.const 3) - ) + ) + (i32.store offset=4 + (get_local $13) + (i32.or + (tee_local $7 + (i32.shl + (get_local $0) + (i32.const 3) ) - (i32.const 3) ) + (i32.const 3) ) - (i32.store - (tee_local $16 + ) + (i32.store + (tee_local $16 + (i32.add (i32.add - (i32.add - (get_local $13) - (get_local $7) - ) - (i32.const 4) - ) - ) - (i32.or - (i32.load - (get_local $16) + (get_local $13) + (get_local $7) ) - (i32.const 1) + (i32.const 4) ) ) - (set_global $r - (get_local $25) - ) - (return - (get_local $2) + (i32.or + (i32.load + (get_local $16) + ) + (i32.const 1) ) ) - ) - (if (result i32) - (i32.gt_u + (set_global $r + (get_local $25) + ) + (return (get_local $2) - (tee_local $16 - (i32.load - (i32.const 1216) - ) + ) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $2) + (tee_local $16 + (i32.load + (i32.const 1216) ) ) - (block (result i32) - (if - (get_local $6) - (block - (set_local $9 - (i32.and - (i32.shr_u - (tee_local $7 - (i32.add - (i32.and - (tee_local $9 - (i32.and - (i32.shl - (get_local $6) - (get_local $0) - ) - (i32.or - (tee_local $7 - (i32.shl - (i32.const 2) - (get_local $0) - ) - ) - (i32.sub - (i32.const 0) - (get_local $7) + ) + (block (result i32) + (if + (get_local $6) + (block + (set_local $9 + (i32.and + (i32.shr_u + (tee_local $7 + (i32.add + (i32.and + (tee_local $9 + (i32.and + (i32.shl + (get_local $6) + (get_local $0) + ) + (i32.or + (tee_local $7 + (i32.shl + (i32.const 2) + (get_local $0) ) ) + (i32.sub + (i32.const 0) + (get_local $7) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $9) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $9) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $9 - (i32.load - (tee_local $8 - (i32.add - (tee_local $10 - (i32.load - (tee_local $13 - (i32.add - (tee_local $3 - (i32.add - (i32.shl - (tee_local $4 - (i32.add + ) + (set_local $9 + (i32.load + (tee_local $8 + (i32.add + (tee_local $10 + (i32.load + (tee_local $13 + (i32.add + (tee_local $3 + (i32.add + (i32.shl + (tee_local $4 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (tee_local $8 - (i32.shr_u - (get_local $7) - (get_local $9) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $9) - ) - (tee_local $8 + (tee_local $7 (i32.and (i32.shr_u - (tee_local $10 + (tee_local $8 (i32.shr_u - (get_local $8) (get_local $7) + (get_local $9) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $9) ) - (tee_local $10 + (tee_local $8 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $10 (i32.shr_u - (get_local $10) (get_local $8) + (get_local $7) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $3 + (tee_local $10 (i32.and (i32.shr_u - (tee_local $13 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $10) + (get_local $8) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $13) - (get_local $3) + (tee_local $3 + (i32.and + (i32.shr_u + (tee_local $13 + (i32.shr_u + (get_local $3) + (get_local $10) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $13) + (get_local $3) + ) ) - (i32.const 3) ) - (i32.const 1248) + (i32.const 3) ) + (i32.const 1248) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $3) - (get_local $9) - ) - (block - (i32.store - (i32.const 1208) - (i32.and - (get_local $5) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $4) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $3) + (get_local $9) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (get_local $5) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $4) ) + (i32.const -1) ) ) - (set_local $34 - (get_local $16) - ) ) - (block - (if - (i32.lt_u - (get_local $9) - (i32.load - (i32.const 1224) - ) + (set_local $34 + (get_local $16) + ) + ) + (block + (if + (i32.lt_u + (get_local $9) + (i32.load + (i32.const 1224) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $7 - (i32.add - (get_local $9) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $7 + (i32.add + (get_local $9) + (i32.const 12) ) ) - (get_local $10) ) - (block - (i32.store - (get_local $7) - (get_local $3) - ) - (i32.store - (get_local $13) - (get_local $9) - ) - (set_local $34 - (i32.load - (i32.const 1216) - ) + (get_local $10) + ) + (block + (i32.store + (get_local $7) + (get_local $3) + ) + (i32.store + (get_local $13) + (get_local $9) + ) + (set_local $34 + (i32.load + (i32.const 1216) ) ) - (call $qa) ) + (call $qa) ) ) - (i32.store offset=4 - (get_local $10) - (i32.or + ) + (i32.store offset=4 + (get_local $10) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $13 + (i32.add + (get_local $10) (get_local $2) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $13 - (i32.add - (get_local $10) - (get_local $2) - ) - ) - (i32.or - (tee_local $9 - (i32.sub - (i32.shl - (get_local $4) - (i32.const 3) - ) - (get_local $2) + (i32.or + (tee_local $9 + (i32.sub + (i32.shl + (get_local $4) + (i32.const 3) ) + (get_local $2) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $13) - (get_local $9) - ) + ) + (i32.store + (i32.add + (get_local $13) (get_local $9) ) - (if - (get_local $34) - (block - (set_local $3 - (i32.load - (i32.const 1228) + (get_local $9) + ) + (if + (get_local $34) + (block + (set_local $3 + (i32.load + (i32.const 1228) + ) + ) + (set_local $5 + (i32.add + (i32.shl + (tee_local $16 + (i32.shr_u + (get_local $34) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 1248) ) - (set_local $5 - (i32.add + ) + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $6 (i32.shl - (tee_local $16 - (i32.shr_u - (get_local $34) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $16) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $0 (i32.load - (i32.const 1208) - ) - ) - (tee_local $6 - (i32.shl - (i32.const 1) - (get_local $16) - ) - ) - ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $6 - (i32.add - (get_local $5) - (i32.const 8) - ) + (tee_local $6 + (i32.add + (get_local $5) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $40 - (get_local $6) - ) - (set_local $35 - (get_local $0) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $0) - (get_local $6) - ) - ) (set_local $40 - (i32.add - (get_local $5) - (i32.const 8) - ) + (get_local $6) ) (set_local $35 - (get_local $5) + (get_local $0) ) ) ) - (i32.store - (get_local $40) - (get_local $3) - ) - (i32.store offset=12 - (get_local $35) - (get_local $3) - ) - (i32.store offset=8 - (get_local $3) - (get_local $35) - ) - (i32.store offset=12 - (get_local $3) - (get_local $5) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $0) + (get_local $6) + ) + ) + (set_local $40 + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + (set_local $35 + (get_local $5) + ) ) ) + (i32.store + (get_local $40) + (get_local $3) + ) + (i32.store offset=12 + (get_local $35) + (get_local $3) + ) + (i32.store offset=8 + (get_local $3) + (get_local $35) + ) + (i32.store offset=12 + (get_local $3) + (get_local $5) + ) ) - (i32.store - (i32.const 1216) - (get_local $9) - ) - (i32.store - (i32.const 1228) - (get_local $13) - ) - (set_global $r - (get_local $25) - ) - (return - (get_local $8) - ) + ) + (i32.store + (i32.const 1216) + (get_local $9) + ) + (i32.store + (i32.const 1228) + (get_local $13) + ) + (set_global $r + (get_local $25) + ) + (return + (get_local $8) ) ) - (if (result i32) - (tee_local $13 - (i32.load - (i32.const 1212) - ) + ) + (if (result i32) + (tee_local $13 + (i32.load + (i32.const 1212) ) - (block - (set_local $13 - (i32.and - (i32.shr_u - (tee_local $9 - (i32.add - (i32.and + ) + (block + (set_local $13 + (i32.and + (i32.shr_u + (tee_local $9 + (i32.add + (i32.and + (get_local $13) + (i32.sub + (i32.const 0) (get_local $13) - (i32.sub - (i32.const 0) - (get_local $13) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $0 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $16 - (i32.load - (i32.add - (i32.shl - (i32.add + ) + (set_local $0 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $16 + (i32.load + (i32.add + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $9 - (i32.and - (i32.shr_u - (tee_local $5 - (i32.shr_u - (get_local $9) - (get_local $13) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $13) - ) - (tee_local $5 + (tee_local $9 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $5 (i32.shr_u - (get_local $5) (get_local $9) + (get_local $13) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $13) ) - (tee_local $3 + (tee_local $5 (i32.and (i32.shr_u - (tee_local $0 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $5) + (get_local $9) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $0 + (tee_local $3 (i32.and (i32.shr_u - (tee_local $6 + (tee_local $0 (i32.shr_u - (get_local $0) (get_local $3) + (get_local $5) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $6) - (get_local $0) + (tee_local $0 + (i32.and + (i32.shr_u + (tee_local $6 + (i32.shr_u + (get_local $0) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $6) + (get_local $0) + ) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (set_local $3 - (tee_local $6 - (get_local $16) - ) + ) + (set_local $3 + (tee_local $6 + (get_local $16) ) - (loop $while-in - (block $while-out - (set_local $5 - (i32.lt_u - (tee_local $16 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $6 + ) + (loop $while-in + (block $while-out + (set_local $5 + (i32.lt_u + (tee_local $16 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $6 + (if (result i32) + (tee_local $16 + (i32.load offset=16 + (get_local $6) + ) + ) + (get_local $16) (if (result i32) - (tee_local $16 - (i32.load offset=16 + (tee_local $5 + (i32.load offset=20 (get_local $6) ) ) - (get_local $16) - (if (result i32) - (tee_local $5 - (i32.load offset=20 - (get_local $6) - ) + (get_local $5) + (block + (set_local $7 + (get_local $0) ) - (get_local $5) - (block - (set_local $7 - (get_local $0) - ) - (set_local $1 - (get_local $3) - ) - (br $while-out) + (set_local $1 + (get_local $3) ) + (br $while-out) ) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $0) ) + (get_local $0) ) - (set_local $0 - (select - (get_local $16) - (get_local $0) - (get_local $5) - ) + ) + (set_local $0 + (select + (get_local $16) + (get_local $0) + (get_local $5) ) - (set_local $3 - (select - (get_local $6) - (get_local $3) - (get_local $5) - ) + ) + (set_local $3 + (select + (get_local $6) + (get_local $3) + (get_local $5) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $1) - (tee_local $3 - (i32.load - (i32.const 1224) - ) + ) + (if + (i32.lt_u + (get_local $1) + (tee_local $3 + (i32.load + (i32.const 1224) ) ) - (call $qa) ) - (if - (i32.ge_u - (get_local $1) - (tee_local $6 - (i32.add - (get_local $1) - (get_local $2) - ) + (call $qa) + ) + (if + (i32.ge_u + (get_local $1) + (tee_local $6 + (i32.add + (get_local $1) + (get_local $2) ) ) - (call $qa) ) - (set_local $0 - (i32.load offset=24 - (get_local $1) + (call $qa) + ) + (set_local $0 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $8 + (i32.load offset=12 + (get_local $1) + ) ) + (get_local $1) ) (block $do-once4 (if - (i32.eq - (tee_local $8 - (i32.load offset=12 - (get_local $1) + (tee_local $4 + (i32.load + (tee_local $10 + (i32.add + (get_local $1) + (i32.const 20) + ) ) ) - (get_local $1) ) (block - (if - (tee_local $4 + (set_local $16 + (get_local $4) + ) + (set_local $5 + (get_local $10) + ) + ) + (br_if $do-once4 + (i32.eqz + (tee_local $16 (i32.load - (tee_local $10 + (tee_local $5 (i32.add (get_local $1) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) - ) - ) - (br_if $do-once4 - (i32.eqz - (tee_local $16 - (i32.load - (tee_local $5 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) + (i32.const 16) ) ) ) ) ) - (loop $while-in7 - (if - (tee_local $4 - (i32.load - (tee_local $10 - (i32.add - (get_local $16) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) - ) - (br $while-in7) - ) - ) - (if - (tee_local $4 - (i32.load - (tee_local $10 - (i32.add - (get_local $16) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) + ) + ) + (loop $while-in7 + (if + (tee_local $4 + (i32.load + (tee_local $10 + (i32.add + (get_local $16) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $5) - (get_local $3) + (block + (set_local $16 + (get_local $4) ) - (call $qa) - (block - (i32.store - (get_local $5) - (i32.const 0) - ) - (set_local $23 - (get_local $16) - ) + (set_local $5 + (get_local $10) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $4 + (i32.load (tee_local $10 - (i32.load offset=8 - (get_local $1) + (i32.add + (get_local $16) + (i32.const 16) ) ) - (get_local $3) ) - (call $qa) ) - (if - (i32.ne - (i32.load - (tee_local $4 - (i32.add - (get_local $10) - (i32.const 12) - ) - ) - ) - (get_local $1) + (block + (set_local $16 + (get_local $4) ) - (call $qa) + (set_local $5 + (get_local $10) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $5 - (i32.add - (get_local $8) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $5) + (get_local $3) + ) + (call $qa) + (block + (i32.store + (get_local $5) + (i32.const 0) + ) + (set_local $23 + (get_local $16) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $10 + (i32.load offset=8 (get_local $1) ) - (block - (i32.store - (get_local $4) - (get_local $8) - ) - (i32.store - (get_local $5) + ) + (get_local $3) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $4 + (i32.add (get_local $10) + (i32.const 12) ) - (set_local $23 + ) + ) + (get_local $1) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add (get_local $8) + (i32.const 8) ) ) - (call $qa) ) + (get_local $1) ) + (block + (i32.store + (get_local $4) + (get_local $8) + ) + (i32.store + (get_local $5) + (get_local $10) + ) + (set_local $23 + (get_local $8) + ) + ) + (call $qa) ) ) + ) + (if + (get_local $0) (block $do-once8 (if - (get_local $0) - (block - (if - (i32.eq - (get_local $1) - (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $8 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) + (i32.eq + (get_local $1) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $8 + (i32.load offset=28 + (get_local $1) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) ) - (block - (i32.store - (get_local $3) - (get_local $23) - ) - (if - (i32.eqz - (get_local $23) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $8) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $3) + (get_local $23) + ) + (if + (i32.eqz + (get_local $23) ) (block - (if - (i32.lt_u - (get_local $0) + (i32.store + (i32.const 1212) + (i32.and (i32.load - (i32.const 1224) + (i32.const 1212) ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $0) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $8) ) + (i32.const -1) ) - (get_local $1) - ) - (i32.store - (get_local $8) - (get_local $23) - ) - (i32.store offset=20 - (get_local $0) - (get_local $23) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $23) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $23) - (tee_local $8 - (i32.load - (i32.const 1224) - ) + (get_local $0) + (i32.load + (i32.const 1224) ) ) (call $qa) ) - (i32.store offset=24 - (get_local $23) - (get_local $0) - ) (if - (tee_local $3 - (i32.load offset=16 - (get_local $1) - ) - ) - (if - (i32.lt_u - (get_local $3) - (get_local $8) - ) - (call $qa) - (block - (i32.store offset=16 - (get_local $23) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $23) + (i32.eq + (i32.load + (tee_local $8 + (i32.add + (get_local $0) + (i32.const 16) + ) ) ) + (get_local $1) + ) + (i32.store + (get_local $8) + (get_local $23) + ) + (i32.store offset=20 + (get_local $0) + (get_local $23) ) ) - (if - (tee_local $3 - (i32.load offset=20 - (get_local $1) - ) + (br_if $do-once8 + (i32.eqz + (get_local $23) ) - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store offset=20 - (get_local $23) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $23) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $23) + (tee_local $8 + (i32.load + (i32.const 1224) ) ) ) + (call $qa) ) - ) - (if - (i32.lt_u - (get_local $7) - (i32.const 16) + (i32.store offset=24 + (get_local $23) + (get_local $0) ) - (block - (i32.store offset=4 - (get_local $1) - (i32.or - (tee_local $0 - (i32.add - (get_local $7) - (get_local $2) - ) - ) - (i32.const 3) + (if + (tee_local $3 + (i32.load offset=16 + (get_local $1) ) ) - (i32.store - (tee_local $3 - (i32.add - (i32.add - (get_local $1) - (get_local $0) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $3) + (get_local $8) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $23) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $23) ) ) - (i32.or + ) + ) + (if + (tee_local $3 + (i32.load offset=20 + (get_local $1) + ) + ) + (if + (i32.lt_u + (get_local $3) (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store offset=20 + (get_local $23) (get_local $3) ) - (i32.const 1) + (i32.store offset=24 + (get_local $3) + (get_local $23) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $1) + (i32.or + (tee_local $0 + (i32.add + (get_local $7) + (get_local $2) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $6) - (i32.or - (get_local $7) - (i32.const 1) + ) + (i32.store + (tee_local $3 + (i32.add + (i32.add + (get_local $1) + (get_local $0) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $6) - (get_local $7) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $6) + (i32.or (get_local $7) + (i32.const 1) ) - (if - (tee_local $3 + ) + (i32.store + (i32.add + (get_local $6) + (get_local $7) + ) + (get_local $7) + ) + (if + (tee_local $3 + (i32.load + (i32.const 1216) + ) + ) + (block + (set_local $0 (i32.load - (i32.const 1216) + (i32.const 1228) ) ) - (block - (set_local $0 - (i32.load - (i32.const 1228) + (set_local $3 + (i32.add + (i32.shl + (tee_local $8 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 1248) ) - (set_local $3 - (i32.add + ) + (if + (i32.and + (tee_local $10 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $5 (i32.shl - (tee_local $8 - (i32.shr_u - (get_local $3) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $8) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $10 (i32.load - (i32.const 1208) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $8) - ) - ) - ) - (if - (i32.lt_u - (tee_local $10 - (i32.load - (tee_local $5 - (i32.add - (get_local $3) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $3) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $41 - (get_local $5) - ) - (set_local $27 - (get_local $10) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $10) - (get_local $5) - ) - ) (set_local $41 - (i32.add - (get_local $3) - (i32.const 8) - ) + (get_local $5) ) (set_local $27 - (get_local $3) + (get_local $10) ) ) ) - (i32.store - (get_local $41) - (get_local $0) - ) - (i32.store offset=12 - (get_local $27) - (get_local $0) - ) - (i32.store offset=8 - (get_local $0) - (get_local $27) - ) - (i32.store offset=12 - (get_local $0) - (get_local $3) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $10) + (get_local $5) + ) + ) + (set_local $41 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + (set_local $27 + (get_local $3) + ) ) ) - ) - (i32.store - (i32.const 1216) - (get_local $7) - ) - (i32.store - (i32.const 1228) - (get_local $6) + (i32.store + (get_local $41) + (get_local $0) + ) + (i32.store offset=12 + (get_local $27) + (get_local $0) + ) + (i32.store offset=8 + (get_local $0) + (get_local $27) + ) + (i32.store offset=12 + (get_local $0) + (get_local $3) + ) ) ) - ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $1) - (i32.const 8) + (i32.store + (i32.const 1216) + (get_local $7) + ) + (i32.store + (i32.const 1228) + (get_local $6) ) ) ) - (get_local $2) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $1) + (i32.const 8) + ) + ) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) - (if (result i32) - (i32.gt_u - (get_local $0) - (i32.const -65) - ) - (i32.const -1) - (block (result i32) - (set_local $0 - (i32.and - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 11) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const -65) + ) + (i32.const -1) + (block $do-once (result i32) + (set_local $0 + (i32.and + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 11) ) - (i32.const -8) ) + (i32.const -8) ) - (if (result i32) - (tee_local $10 - (i32.load - (i32.const 1212) - ) + ) + (if (result i32) + (tee_local $10 + (i32.load + (i32.const 1212) ) - (block (result i32) - (set_local $5 - (i32.sub - (i32.const 0) - (get_local $0) - ) + ) + (block (result i32) + (set_local $5 + (i32.sub + (i32.const 0) + (get_local $0) ) - (block $label$break$a - (if - (tee_local $13 - (i32.load - (i32.add - (i32.shl - (tee_local $27 - (if (result i32) - (tee_local $8 + ) + (if + (tee_local $13 + (i32.load + (i32.add + (i32.shl + (tee_local $27 + (if (result i32) + (tee_local $8 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u - (get_local $3) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u (get_local $0) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $0) + (i32.add + (tee_local $13 (i32.add - (tee_local $13 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $8 - (i32.and - (i32.shr_u - (i32.add - (tee_local $4 - (i32.shl - (get_local $8) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $8) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $8 + (i32.and + (i32.shr_u + (i32.add + (tee_local $4 + (i32.shl + (get_local $8) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $8) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $3) + (i32.const 4) ) - (tee_local $4 - (i32.and - (i32.shr_u - (i32.add - (tee_local $16 - (i32.shl - (get_local $4) - (get_local $8) - ) - ) - (i32.const 245760) + ) + (get_local $3) + ) + (tee_local $4 + (i32.and + (i32.shr_u + (i32.add + (tee_local $16 + (i32.shl + (get_local $4) + (get_local $8) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $16) - (get_local $4) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $16) + (get_local $4) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $13) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $13) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) - (block - (set_local $4 - (get_local $5) - ) - (set_local $16 + ) + ) + (block $label$break$a + (set_local $4 + (get_local $5) + ) + (set_local $16 + (i32.const 0) + ) + (set_local $3 + (i32.shl + (get_local $0) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $27) + (i32.const 1) + ) + ) + (i32.eq + (get_local $27) + (i32.const 31) + ) ) - (set_local $3 - (i32.shl - (get_local $0) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $27) - (i32.const 1) + ) + ) + (set_local $8 + (get_local $13) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $13 + (i32.sub + (tee_local $2 + (i32.and + (i32.load offset=4 + (get_local $8) + ) + (i32.const -8) ) ) - (i32.eq - (get_local $27) - (i32.const 31) - ) + (get_local $0) ) ) + (get_local $4) ) - (set_local $8 - (get_local $13) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $13 - (i32.sub - (tee_local $2 - (i32.and - (i32.load offset=4 - (get_local $8) - ) - (i32.const -8) - ) - ) - (get_local $0) - ) + (set_local $4 + (if (result i32) + (i32.eq + (get_local $2) + (get_local $0) + ) + (block + (set_local $29 + (get_local $13) ) - (get_local $4) + (set_local $28 + (get_local $8) + ) + (set_local $32 + (get_local $8) + ) + (set_local $8 + (i32.const 90) + ) + (br $label$break$a) ) - (set_local $4 - (if (result i32) - (i32.eq - (get_local $2) - (get_local $0) - ) - (block - (set_local $29 - (get_local $13) - ) - (set_local $28 - (get_local $8) - ) - (set_local $32 - (get_local $8) - ) - (set_local $8 - (i32.const 90) - ) - (br $label$break$a) - ) - (block (result i32) - (set_local $9 - (get_local $8) - ) - (get_local $13) - ) + (block (result i32) + (set_local $9 + (get_local $8) ) + (get_local $13) ) ) - (set_local $2 - (select - (get_local $16) - (tee_local $13 - (i32.load offset=20 - (get_local $8) - ) - ) - (i32.or - (i32.eqz - (get_local $13) - ) - (i32.eq - (get_local $13) - (tee_local $8 - (i32.load - (i32.add - (i32.add - (get_local $8) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $3) - (i32.const 31) - ) - (i32.const 2) - ) + ) + ) + (set_local $2 + (select + (get_local $16) + (tee_local $13 + (i32.load offset=20 + (get_local $8) + ) + ) + (i32.or + (i32.eqz + (get_local $13) + ) + (i32.eq + (get_local $13) + (tee_local $8 + (i32.load + (i32.add + (i32.add + (get_local $8) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $3) + (i32.const 31) ) + (i32.const 2) ) ) ) ) ) ) - (set_local $6 - (if (result i32) - (tee_local $13 - (i32.eqz - (get_local $8) - ) - ) - (block (result i32) - (set_local $36 - (get_local $4) - ) - (set_local $33 - (get_local $9) - ) - (set_local $8 - (i32.const 86) - ) - (get_local $2) - ) - (block - (set_local $16 - (get_local $2) - ) - (set_local $3 - (i32.shl - (get_local $3) - (i32.xor - (i32.and - (get_local $13) - (i32.const 1) - ) - (i32.const 1) - ) + ) + ) + (set_local $6 + (if (result i32) + (tee_local $13 + (i32.eqz + (get_local $8) + ) + ) + (block (result i32) + (set_local $36 + (get_local $4) + ) + (set_local $33 + (get_local $9) + ) + (set_local $8 + (i32.const 86) + ) + (get_local $2) + ) + (block + (set_local $16 + (get_local $2) + ) + (set_local $3 + (i32.shl + (get_local $3) + (i32.xor + (i32.and + (get_local $13) + (i32.const 1) ) + (i32.const 1) ) - (br $while-in14) ) ) + (br $while-in14) ) ) ) - (block - (set_local $36 - (get_local $5) - ) - (set_local $8 - (i32.const 86) - ) - ) ) ) - (if - (i32.eq - (get_local $8) + (block + (set_local $36 + (get_local $5) + ) + (set_local $8 (i32.const 86) ) - (if - (tee_local $2 - (if (result i32) - (i32.or - (get_local $6) - (get_local $33) - ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 86) + ) + (if + (tee_local $2 + (if (result i32) + (i32.or (get_local $6) - (block (result i32) - (drop - (br_if $do-once - (get_local $0) - (i32.eqz - (tee_local $5 - (i32.and - (get_local $10) - (i32.or - (tee_local $13 - (i32.shl - (i32.const 2) - (get_local $27) - ) - ) - (i32.sub - (i32.const 0) - (get_local $13) + (get_local $33) + ) + (get_local $6) + (block (result i32) + (drop + (br_if $do-once + (get_local $0) + (i32.eqz + (tee_local $5 + (i32.and + (get_local $10) + (i32.or + (tee_local $13 + (i32.shl + (i32.const 2) + (get_local $27) ) ) + (i32.sub + (i32.const 0) + (get_local $13) + ) ) ) ) ) ) - (set_local $5 - (i32.and - (i32.shr_u - (tee_local $13 - (i32.add - (i32.and + ) + (set_local $5 + (i32.and + (i32.shr_u + (tee_local $13 + (i32.add + (i32.and + (get_local $5) + (i32.sub + (i32.const 0) (get_local $5) - (i32.sub - (i32.const 0) - (get_local $5) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (i32.load - (i32.add - (i32.shl - (i32.add + ) + (i32.load + (i32.add + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $13 - (i32.and - (i32.shr_u - (tee_local $2 - (i32.shr_u - (get_local $13) - (get_local $5) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $5) - ) - (tee_local $2 + (tee_local $13 (i32.and (i32.shr_u - (tee_local $6 + (tee_local $2 (i32.shr_u - (get_local $2) (get_local $13) + (get_local $5) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $5) ) - (tee_local $6 + (tee_local $2 (i32.and (i32.shr_u - (tee_local $9 + (tee_local $6 (i32.shr_u - (get_local $6) (get_local $2) + (get_local $13) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $9 + (tee_local $6 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $9 (i32.shr_u - (get_local $9) (get_local $6) + (get_local $2) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $3) - (get_local $9) + (tee_local $9 + (i32.and + (i32.shr_u + (tee_local $3 + (i32.shr_u + (get_local $9) + (get_local $6) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $3) + (get_local $9) + ) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) ) ) ) - (block - (set_local $29 - (get_local $36) - ) - (set_local $28 - (get_local $2) - ) - (set_local $32 - (get_local $33) - ) - (set_local $8 - (i32.const 90) - ) + ) + (block + (set_local $29 + (get_local $36) ) - (block - (set_local $18 - (get_local $36) - ) - (set_local $11 - (get_local $33) - ) + (set_local $28 + (get_local $2) + ) + (set_local $32 + (get_local $33) + ) + (set_local $8 + (i32.const 90) + ) + ) + (block + (set_local $18 + (get_local $36) + ) + (set_local $11 + (get_local $33) ) ) ) - (if - (i32.eq - (get_local $8) - (i32.const 90) + ) + (if + (i32.eq + (get_local $8) + (i32.const 90) + ) + (loop $while-in16 + (set_local $8 + (i32.const 0) ) - (loop $while-in16 - (set_local $8 - (i32.const 0) - ) - (set_local $3 - (i32.lt_u - (tee_local $9 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $28) - ) - (i32.const -8) + (set_local $3 + (i32.lt_u + (tee_local $9 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $28) ) - (get_local $0) + (i32.const -8) ) + (get_local $0) ) - (get_local $29) ) + (get_local $29) ) - (set_local $6 - (select - (get_local $9) - (get_local $29) - (get_local $3) - ) + ) + (set_local $6 + (select + (get_local $9) + (get_local $29) + (get_local $3) ) - (set_local $9 - (select + ) + (set_local $9 + (select + (get_local $28) + (get_local $32) + (get_local $3) + ) + ) + (if + (tee_local $3 + (i32.load offset=16 (get_local $28) - (get_local $32) + ) + ) + (block + (set_local $29 + (get_local $6) + ) + (set_local $28 (get_local $3) ) + (set_local $32 + (get_local $9) + ) + (br $while-in16) ) - (if - (tee_local $3 - (i32.load offset=16 + ) + (set_local $18 + (if (result i32) + (tee_local $28 + (i32.load offset=20 (get_local $28) ) ) @@ -1894,922 +1907,895 @@ (set_local $29 (get_local $6) ) - (set_local $28 - (get_local $3) - ) (set_local $32 (get_local $9) ) (br $while-in16) ) - ) - (set_local $18 - (if (result i32) - (tee_local $28 - (i32.load offset=20 - (get_local $28) - ) - ) - (block - (set_local $29 - (get_local $6) - ) - (set_local $32 - (get_local $9) - ) - (br $while-in16) - ) - (block (result i32) - (set_local $11 - (get_local $9) - ) - (get_local $6) + (block (result i32) + (set_local $11 + (get_local $9) ) + (get_local $6) ) ) ) ) + ) + (if (result i32) + (get_local $11) (if (result i32) - (get_local $11) - (if (result i32) - (i32.lt_u - (get_local $18) - (i32.sub - (i32.load - (i32.const 1216) - ) - (get_local $0) + (i32.lt_u + (get_local $18) + (i32.sub + (i32.load + (i32.const 1216) ) + (get_local $0) ) - (block - (if - (i32.lt_u - (get_local $11) - (tee_local $10 - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (tee_local $10 + (i32.load + (i32.const 1224) ) ) - (call $qa) ) - (if - (i32.ge_u - (get_local $11) - (tee_local $9 - (i32.add - (get_local $11) - (get_local $0) - ) + (call $qa) + ) + (if + (i32.ge_u + (get_local $11) + (tee_local $9 + (i32.add + (get_local $11) + (get_local $0) ) ) - (call $qa) ) - (set_local $6 - (i32.load offset=24 - (get_local $11) - ) + (call $qa) + ) + (set_local $6 + (i32.load offset=24 + (get_local $11) ) - (block $do-once17 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $11) - ) - ) + ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 (get_local $11) ) - (block - (set_local $4 - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $11) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $16 - (get_local $5) - ) - (get_local $2) - ) - (if (result i32) - (tee_local $16 - (i32.load - (tee_local $13 - (i32.add - (get_local $11) - (i32.const 16) - ) - ) - ) + ) + (get_local $11) + ) + (block $do-once17 + (set_local $4 + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (get_local $11) + (i32.const 20) ) - (get_local $13) - (br $do-once17) ) ) ) - (loop $while-in20 - (if - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $16) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $5) - ) - (set_local $4 - (get_local $2) - ) - (br $while-in20) - ) + (block (result i32) + (set_local $16 + (get_local $5) ) - (if - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $16) - (i32.const 16) - ) + (get_local $2) + ) + (if (result i32) + (tee_local $16 + (i32.load + (tee_local $13 + (i32.add + (get_local $11) + (i32.const 16) ) ) ) - (block - (set_local $16 - (get_local $5) - ) - (set_local $4 - (get_local $2) + ) + (get_local $13) + (br $do-once17) + ) + ) + ) + (loop $while-in20 + (if + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (get_local $16) + (i32.const 20) ) - (br $while-in20) ) ) ) - (if - (i32.lt_u - (get_local $4) - (get_local $10) + (block + (set_local $16 + (get_local $5) ) - (call $qa) - (block - (i32.store - (get_local $4) - (i32.const 0) - ) - (set_local $22 - (get_local $16) - ) + (set_local $4 + (get_local $2) ) + (br $while-in20) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $5 + (i32.load (tee_local $2 - (i32.load offset=8 - (get_local $11) + (i32.add + (get_local $16) + (i32.const 16) ) ) - (get_local $10) ) - (call $qa) ) - (if - (i32.ne - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 12) - ) - ) - ) - (get_local $11) + (block + (set_local $16 + (get_local $5) ) - (call $qa) + (set_local $4 + (get_local $2) + ) + (br $while-in20) ) - (if - (i32.eq - (i32.load - (tee_local $13 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $4) + (get_local $10) + ) + (call $qa) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $22 + (get_local $16) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $2 + (i32.load offset=8 (get_local $11) ) - (block - (i32.store - (get_local $5) - (get_local $3) - ) - (i32.store - (get_local $13) + ) + (get_local $10) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $5 + (i32.add (get_local $2) + (i32.const 12) ) - (set_local $22 + ) + ) + (get_local $11) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $13 + (i32.add (get_local $3) + (i32.const 8) ) ) - (call $qa) + ) + (get_local $11) + ) + (block + (i32.store + (get_local $5) + (get_local $3) + ) + (i32.store + (get_local $13) + (get_local $2) + ) + (set_local $22 + (get_local $3) ) ) + (call $qa) ) ) + ) + (if + (get_local $6) (block $do-once21 (if - (get_local $6) - (block - (if - (i32.eq - (get_local $11) - (i32.load - (tee_local $10 - (i32.add - (i32.shl - (tee_local $3 - (i32.load offset=28 - (get_local $11) - ) - ) - (i32.const 2) + (i32.eq + (get_local $11) + (i32.load + (tee_local $10 + (i32.add + (i32.shl + (tee_local $3 + (i32.load offset=28 + (get_local $11) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) ) - (block - (i32.store - (get_local $10) - (get_local $22) - ) - (if - (i32.eqz - (get_local $22) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) - ) - ) - ) - (br $do-once21) - ) - ) + ) + ) + (block + (i32.store + (get_local $10) + (get_local $22) + ) + (if + (i32.eqz + (get_local $22) ) (block - (if - (i32.lt_u - (get_local $6) + (i32.store + (i32.const 1212) + (i32.and (i32.load - (i32.const 1224) + (i32.const 1212) ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) - (get_local $11) - ) - (i32.store - (get_local $3) - (get_local $22) - ) - (i32.store offset=20 - (get_local $6) - (get_local $22) - ) - ) - (br_if $do-once21 - (i32.eqz - (get_local $22) ) ) + (br $do-once21) ) ) + ) + (block (if (i32.lt_u - (get_local $22) - (tee_local $3 - (i32.load - (i32.const 1224) - ) + (get_local $6) + (i32.load + (i32.const 1224) ) ) (call $qa) ) - (i32.store offset=24 - (get_local $22) - (get_local $6) - ) (if - (tee_local $10 - (i32.load offset=16 - (get_local $11) - ) - ) - (if - (i32.lt_u - (get_local $10) - (get_local $3) - ) - (call $qa) - (block - (i32.store offset=16 - (get_local $22) - (get_local $10) - ) - (i32.store offset=24 - (get_local $10) - (get_local $22) + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 16) + ) ) ) + (get_local $11) ) - ) - (if - (tee_local $10 - (i32.load offset=20 - (get_local $11) - ) + (i32.store + (get_local $3) + (get_local $22) ) - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store offset=20 - (get_local $22) - (get_local $10) - ) - (i32.store offset=24 - (get_local $10) - (get_local $22) - ) - ) + (i32.store offset=20 + (get_local $6) + (get_local $22) + ) + ) + (br_if $do-once21 + (i32.eqz + (get_local $22) ) ) ) ) - ) - (block $do-once25 (if (i32.lt_u - (get_local $18) - (i32.const 16) + (get_local $22) + (tee_local $3 + (i32.load + (i32.const 1224) + ) + ) ) - (block - (i32.store offset=4 + (call $qa) + ) + (i32.store offset=24 + (get_local $22) + (get_local $6) + ) + (if + (tee_local $10 + (i32.load offset=16 (get_local $11) - (i32.or - (tee_local $6 - (i32.add - (get_local $18) - (get_local $0) - ) - ) - (i32.const 3) - ) ) - (i32.store - (tee_local $10 - (i32.add - (i32.add - (get_local $11) - (get_local $6) - ) - (i32.const 4) - ) + ) + (if + (i32.lt_u + (get_local $10) + (get_local $3) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $22) + (get_local $10) ) - (i32.or - (i32.load - (get_local $10) - ) - (i32.const 1) + (i32.store offset=24 + (get_local $10) + (get_local $22) ) ) ) - (block - (i32.store offset=4 + ) + (if + (tee_local $10 + (i32.load offset=20 (get_local $11) - (i32.or - (get_local $0) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $10) + (i32.load + (i32.const 1224) ) ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $18) - (i32.const 1) + (call $qa) + (block + (i32.store offset=20 + (get_local $22) + (get_local $10) + ) + (i32.store offset=24 + (get_local $10) + (get_local $22) ) ) - (i32.store + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $18) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $11) + (i32.or + (tee_local $6 (i32.add - (get_local $9) (get_local $18) + (get_local $0) ) - (get_local $18) ) - (set_local $10 - (i32.shr_u - (get_local $18) - (i32.const 3) + (i32.const 3) + ) + ) + (i32.store + (tee_local $10 + (i32.add + (i32.add + (get_local $11) + (get_local $6) ) + (i32.const 4) ) - (if - (i32.lt_u - (get_local $18) - (i32.const 256) + ) + (i32.or + (i32.load + (get_local $10) + ) + (i32.const 1) + ) + ) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $11) + (i32.or + (get_local $0) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $18) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $9) + (get_local $18) + ) + (get_local $18) + ) + (set_local $10 + (i32.shr_u + (get_local $18) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $18) + (i32.const 256) + ) + (block + (set_local $6 + (i32.add + (i32.shl + (get_local $10) + (i32.const 3) + ) + (i32.const 1248) ) - (block - (set_local $6 - (i32.add - (i32.shl - (get_local $10) - (i32.const 3) - ) - (i32.const 1248) + ) + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 1208) ) ) - (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 1208) - ) - ) - (tee_local $2 - (i32.shl - (i32.const 1) - (get_local $10) - ) - ) + (tee_local $2 + (i32.shl + (i32.const 1) + (get_local $10) ) - (if - (i32.lt_u - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) + ) + ) + (if + (i32.lt_u + (tee_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $6) + (i32.const 8) ) ) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (set_local $19 - (get_local $2) - ) - (set_local $7 - (get_local $3) - ) ) ) - (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $3) - (get_local $2) - ) - ) - (set_local $19 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) - (set_local $7 - (get_local $6) - ) + (i32.load + (i32.const 1224) ) ) - (i32.store - (get_local $19) - (get_local $9) + (call $qa) + (block + (set_local $19 + (get_local $2) + ) + (set_local $7 + (get_local $3) + ) ) - (i32.store offset=12 - (get_local $7) - (get_local $9) + ) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $3) + (get_local $2) + ) ) - (i32.store offset=8 - (get_local $9) - (get_local $7) + (set_local $19 + (i32.add + (get_local $6) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $9) + (set_local $7 (get_local $6) ) - (br $do-once25) ) ) - (set_local $13 - (i32.add - (i32.shl - (tee_local $3 - (if (result i32) - (tee_local $6 + (i32.store + (get_local $19) + (get_local $9) + ) + (i32.store offset=12 + (get_local $7) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $7) + ) + (i32.store offset=12 + (get_local $9) + (get_local $6) + ) + (br $do-once25) + ) + ) + (set_local $13 + (i32.add + (i32.shl + (tee_local $3 + (if (result i32) + (tee_local $6 + (i32.shr_u + (get_local $18) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $18) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u (get_local $18) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u - (get_local $18) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $18) + (i32.add + (tee_local $13 (i32.add - (tee_local $13 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $6 - (i32.and - (i32.shr_u - (i32.add - (tee_local $2 - (i32.shl - (get_local $6) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $6) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $6 + (i32.and + (i32.shr_u + (i32.add + (tee_local $2 + (i32.shl + (get_local $6) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $6) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $3) + (i32.const 4) ) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (tee_local $10 - (i32.shl - (get_local $2) - (get_local $6) - ) - ) - (i32.const 245760) + ) + (get_local $3) + ) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (tee_local $10 + (i32.shl + (get_local $2) + (get_local $6) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $10) - (get_local $2) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $10) + (get_local $2) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $13) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $13) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 1512) + ) + ) + (i32.store offset=28 + (get_local $9) + (get_local $3) + ) + (i32.store offset=4 + (tee_local $2 + (i32.add (get_local $9) - (get_local $3) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $2 - (i32.add - (get_local $9) - (i32.const 16) + (i32.load + (i32.const 1212) ) ) - (i32.const 0) - ) - (i32.store - (get_local $2) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $2 - (i32.load - (i32.const 1212) - ) - ) - (tee_local $10 - (i32.shl - (i32.const 1) - (get_local $3) - ) - ) + (tee_local $10 + (i32.shl + (i32.const 1) + (get_local $3) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $2) - (get_local $10) - ) - ) - (i32.store - (get_local $13) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $13) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - (br $do-once25) + ) + ) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $2) + (get_local $10) ) ) - (set_local $10 - (i32.shl - (get_local $18) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $3) - (i32.const 1) - ) - ) - (i32.eq - (get_local $3) - (i32.const 31) - ) + (i32.store + (get_local $13) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $13) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + (br $do-once25) + ) + ) + (set_local $10 + (i32.shl + (get_local $18) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $3) + (i32.const 1) ) ) - ) - (set_local $2 - (i32.load - (get_local $13) + (i32.eq + (get_local $3) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $8 - (loop $while-in28 (result i32) - (block $while-out27 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $2) - ) - (i32.const -8) - ) - (get_local $18) - ) - (block - (set_local $17 - (get_local $2) - ) - (br $while-out27 - (i32.const 148) - ) + ) + ) + (set_local $2 + (i32.load + (get_local $13) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in28 (result i32) + (block $while-out27 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $2) ) + (i32.const -8) ) - (if (result i32) - (tee_local $3 - (i32.load - (tee_local $13 - (i32.add - (i32.add - (get_local $2) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $10) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $18) + ) + (block + (set_local $17 + (get_local $2) + ) + (br $while-out27 + (i32.const 148) + ) + ) + ) + (if (result i32) + (tee_local $3 + (i32.load + (tee_local $13 + (i32.add + (i32.add + (get_local $2) + (i32.const 16) ) - ) - ) - (block - (set_local $10 (i32.shl - (get_local $10) - (i32.const 1) + (i32.shr_u + (get_local $10) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $2 - (get_local $3) - ) - (br $while-in28) ) - (block (result i32) - (set_local $21 - (get_local $13) - ) - (set_local $15 - (get_local $2) - ) - (i32.const 145) + ) + ) + (block + (set_local $10 + (i32.shl + (get_local $10) + (i32.const 1) ) ) + (set_local $2 + (get_local $3) + ) + (br $while-in28) + ) + (block (result i32) + (set_local $21 + (get_local $13) + ) + (set_local $15 + (get_local $2) + ) + (i32.const 145) ) ) ) - (i32.const 145) ) - (if - (i32.lt_u - (get_local $21) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store - (get_local $21) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $15) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - ) + ) + (i32.const 145) + ) + (if + (i32.lt_u + (get_local $21) + (i32.load + (i32.const 1224) ) - (if - (i32.eq - (get_local $8) - (i32.const 148) - ) - (if - (i32.and - (i32.ge_u - (tee_local $10 - (i32.load - (tee_local $2 - (i32.add - (get_local $17) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 1224) + ) + (call $qa) + (block + (i32.store + (get_local $21) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $15) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 148) + ) + (if + (i32.and + (i32.ge_u + (tee_local $10 + (i32.load + (tee_local $2 + (i32.add + (get_local $17) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $17) - (get_local $3) - ) ) - (block - (i32.store offset=12 - (get_local $10) - (get_local $9) - ) - (i32.store - (get_local $2) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $10) - ) - (i32.store offset=12 - (get_local $9) - (get_local $17) - ) - (i32.store offset=24 - (get_local $9) - (i32.const 0) + (tee_local $3 + (i32.load + (i32.const 1224) ) ) - (call $qa) + ) + (i32.ge_u + (get_local $17) + (get_local $3) + ) + ) + (block + (i32.store offset=12 + (get_local $10) + (get_local $9) + ) + (i32.store + (get_local $2) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $10) + ) + (i32.store offset=12 + (get_local $9) + (get_local $17) + ) + (i32.store offset=24 + (get_local $9) + (i32.const 0) ) ) + (call $qa) ) ) ) ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $11) - (i32.const 8) - ) + ) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $11) + (i32.const 8) ) ) - (get_local $0) ) (get_local $0) ) + (get_local $0) ) - (get_local $0) ) + (get_local $0) ) ) ) @@ -3106,257 +3092,253 @@ ) ) (block - (block $label$break$c - (if - (tee_local $18 - (i32.load - (i32.const 1232) - ) + (if + (tee_local $18 + (i32.load + (i32.const 1232) ) - (block - (set_local $7 - (i32.const 1656) - ) - (loop $while-in32 - (block $while-out31 - (if - (i32.le_u - (tee_local $3 - (i32.load - (get_local $7) - ) + ) + (block $label$break$c + (set_local $7 + (i32.const 1656) + ) + (loop $while-in32 + (block $while-out31 + (if + (i32.le_u + (tee_local $3 + (i32.load + (get_local $7) ) - (get_local $18) ) - (if - (i32.gt_u - (i32.add - (get_local $3) - (i32.load - (tee_local $19 - (i32.add - (get_local $7) - (i32.const 4) - ) + (get_local $18) + ) + (if + (i32.gt_u + (i32.add + (get_local $3) + (i32.load + (tee_local $19 + (i32.add + (get_local $7) + (i32.const 4) ) ) ) - (get_local $18) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $5 - (get_local $19) - ) - (br $while-out31) ) + (get_local $18) ) - ) - (br_if $while-in32 - (tee_local $7 - (i32.load offset=8 + (block + (set_local $0 (get_local $7) ) + (set_local $5 + (get_local $19) + ) + (br $while-out31) ) ) - (set_local $8 - (i32.const 171) - ) - (br $label$break$c) ) - ) - (if - (i32.lt_u + (br_if $while-in32 (tee_local $7 - (i32.and - (i32.sub - (get_local $11) - (i32.load - (i32.const 1220) - ) - ) - (get_local $21) + (i32.load offset=8 + (get_local $7) ) ) - (i32.const 2147483647) ) - (if - (i32.eq - (tee_local $19 - (call $ta - (get_local $7) - ) - ) - (i32.add - (i32.load - (get_local $0) - ) + (set_local $8 + (i32.const 171) + ) + (br $label$break$c) + ) + ) + (if + (i32.lt_u + (tee_local $7 + (i32.and + (i32.sub + (get_local $11) (i32.load - (get_local $5) + (i32.const 1220) ) ) + (get_local $21) ) - (if - (i32.ne - (get_local $19) - (i32.const -1) + ) + (i32.const 2147483647) + ) + (if + (i32.eq + (tee_local $19 + (call $ta + (get_local $7) ) - (block - (set_local $20 - (get_local $19) - ) - (set_local $26 - (get_local $7) - ) - (br $label$break$b - (i32.const 191) - ) + ) + (i32.add + (i32.load + (get_local $0) ) + (i32.load + (get_local $5) + ) + ) + ) + (if + (i32.ne + (get_local $19) + (i32.const -1) ) (block - (set_local $12 + (set_local $20 (get_local $19) ) - (set_local $1 + (set_local $26 (get_local $7) ) - (set_local $8 - (i32.const 181) + (br $label$break$b + (i32.const 191) ) ) ) + (block + (set_local $12 + (get_local $19) + ) + (set_local $1 + (get_local $7) + ) + (set_local $8 + (i32.const 181) + ) + ) ) ) - (set_local $8 - (i32.const 171) - ) + ) + (set_local $8 + (i32.const 171) ) ) - (block $do-once33 + (if + (i32.eq + (get_local $8) + (i32.const 171) + ) (if - (i32.eq - (get_local $8) - (i32.const 171) - ) - (if - (i32.ne - (tee_local $18 - (call $ta - (i32.const 0) - ) + (i32.ne + (tee_local $18 + (call $ta + (i32.const 0) ) - (i32.const -1) ) - (block - (set_local $2 - (if (result i32) - (i32.and - (tee_local $19 - (i32.add - (tee_local $7 - (i32.load - (i32.const 1684) - ) + (i32.const -1) + ) + (block $do-once33 + (set_local $2 + (if (result i32) + (i32.and + (tee_local $19 + (i32.add + (tee_local $7 + (i32.load + (i32.const 1684) ) - (i32.const -1) ) - ) - (tee_local $0 - (get_local $18) + (i32.const -1) ) ) - (i32.add - (i32.sub - (get_local $14) + (tee_local $0 + (get_local $18) + ) + ) + (i32.add + (i32.sub + (get_local $14) + (get_local $0) + ) + (i32.and + (i32.add + (get_local $19) (get_local $0) ) - (i32.and - (i32.add - (get_local $19) - (get_local $0) - ) - (i32.sub - (i32.const 0) - (get_local $7) - ) + (i32.sub + (i32.const 0) + (get_local $7) ) ) - (get_local $14) ) + (get_local $14) ) - (set_local $0 - (i32.add - (tee_local $7 - (i32.load - (i32.const 1640) - ) + ) + (set_local $0 + (i32.add + (tee_local $7 + (i32.load + (i32.const 1640) ) + ) + (get_local $2) + ) + ) + (if + (i32.and + (i32.gt_u + (get_local $2) + (get_local $6) + ) + (i32.lt_u (get_local $2) + (i32.const 2147483647) ) ) - (if - (i32.and - (i32.gt_u - (get_local $2) - (get_local $6) - ) - (i32.lt_u - (get_local $2) - (i32.const 2147483647) + (block + (if + (tee_local $19 + (i32.load + (i32.const 1648) + ) ) - ) - (block - (if - (tee_local $19 - (i32.load - (i32.const 1648) + (br_if $do-once33 + (i32.or + (i32.le_u + (get_local $0) + (get_local $7) ) - ) - (br_if $do-once33 - (i32.or - (i32.le_u - (get_local $0) - (get_local $7) - ) - (i32.gt_u - (get_local $0) - (get_local $19) - ) + (i32.gt_u + (get_local $0) + (get_local $19) ) ) ) - (set_local $1 - (if (result i32) - (i32.eq - (tee_local $19 - (call $ta - (get_local $2) - ) - ) - (get_local $18) - ) - (block - (set_local $20 - (get_local $18) - ) - (set_local $26 + ) + (set_local $1 + (if (result i32) + (i32.eq + (tee_local $19 + (call $ta (get_local $2) ) - (br $label$break$b - (i32.const 191) - ) ) - (block (result i32) - (set_local $12 - (get_local $19) - ) - (set_local $8 - (i32.const 181) - ) + (get_local $18) + ) + (block + (set_local $20 + (get_local $18) + ) + (set_local $26 (get_local $2) ) + (br $label$break$b + (i32.const 191) + ) + ) + (block (result i32) + (set_local $12 + (get_local $19) + ) + (set_local $8 + (i32.const 181) + ) + (get_local $2) ) ) ) @@ -3365,100 +3347,98 @@ ) ) ) - (block $label$break$d - (if - (i32.eq - (get_local $8) - (i32.const 181) - ) - (block - (set_local $19 - (i32.sub - (i32.const 0) - (get_local $1) - ) + (if + (i32.eq + (get_local $8) + (i32.const 181) + ) + (block $label$break$d + (set_local $19 + (i32.sub + (i32.const 0) + (get_local $1) ) - (set_local $4 - (if (result i32) + ) + (set_local $4 + (if (result i32) + (i32.and + (i32.gt_u + (get_local $15) + (get_local $1) + ) (i32.and - (i32.gt_u - (get_local $15) + (i32.lt_u (get_local $1) + (i32.const 2147483647) ) - (i32.and - (i32.lt_u - (get_local $1) - (i32.const 2147483647) - ) - (i32.ne - (get_local $12) - (i32.const -1) - ) + (i32.ne + (get_local $12) + (i32.const -1) ) ) - (if (result i32) - (i32.lt_u - (tee_local $0 - (i32.and - (i32.add - (i32.sub - (get_local $17) - (get_local $1) - ) - (tee_local $18 - (i32.load - (i32.const 1688) - ) - ) - ) + ) + (if (result i32) + (i32.lt_u + (tee_local $0 + (i32.and + (i32.add (i32.sub - (i32.const 0) - (get_local $18) + (get_local $17) + (get_local $1) + ) + (tee_local $18 + (i32.load + (i32.const 1688) + ) ) ) + (i32.sub + (i32.const 0) + (get_local $18) + ) ) - (i32.const 2147483647) ) - (if (result i32) - (i32.eq - (call $ta - (get_local $0) - ) - (i32.const -1) + (i32.const 2147483647) + ) + (if (result i32) + (i32.eq + (call $ta + (get_local $0) ) - (block - (drop - (call $ta - (get_local $19) - ) + (i32.const -1) + ) + (block + (drop + (call $ta + (get_local $19) ) - (br $label$break$d) - ) - (i32.add - (get_local $0) - (get_local $1) ) + (br $label$break$d) + ) + (i32.add + (get_local $0) + (get_local $1) ) - (get_local $1) ) (get_local $1) ) + (get_local $1) ) - (if - (i32.ne + ) + (if + (i32.ne + (get_local $12) + (i32.const -1) + ) + (block + (set_local $20 (get_local $12) - (i32.const -1) ) - (block - (set_local $20 - (get_local $12) - ) - (set_local $26 - (get_local $4) - ) - (br $label$break$b - (i32.const 191) - ) + (set_local $26 + (get_local $4) + ) + (br $label$break$b + (i32.const 191) ) ) ) @@ -3567,357 +3547,387 @@ (get_local $12) ) ) - (block $do-once38 - (if - (tee_local $12 - (i32.load - (i32.const 1232) - ) + (if + (tee_local $12 + (i32.load + (i32.const 1232) ) - (block - (set_local $1 - (i32.const 1656) - ) - (loop $do-in41 - (block $do-out40 - (if - (i32.eq - (get_local $20) - (i32.add - (tee_local $4 - (i32.load - (get_local $1) - ) + ) + (block $do-once38 + (set_local $1 + (i32.const 1656) + ) + (loop $do-in41 + (block $do-out40 + (if + (i32.eq + (get_local $20) + (i32.add + (tee_local $4 + (i32.load + (get_local $1) ) - (tee_local $17 - (i32.load - (tee_local $14 - (i32.add - (get_local $1) - (i32.const 4) - ) + ) + (tee_local $17 + (i32.load + (tee_local $14 + (i32.add + (get_local $1) + (i32.const 4) ) ) ) ) ) - (block - (set_local $48 - (get_local $4) - ) - (set_local $49 - (get_local $14) - ) - (set_local $50 - (get_local $17) - ) - (set_local $51 - (get_local $1) - ) - (set_local $8 - (i32.const 201) - ) - (br $do-out40) + ) + (block + (set_local $48 + (get_local $4) + ) + (set_local $49 + (get_local $14) + ) + (set_local $50 + (get_local $17) + ) + (set_local $51 + (get_local $1) + ) + (set_local $8 + (i32.const 201) ) + (br $do-out40) ) - (br_if $do-in41 - (tee_local $1 - (i32.load offset=8 - (get_local $1) - ) + ) + (br_if $do-in41 + (tee_local $1 + (i32.load offset=8 + (get_local $1) ) ) ) ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 201) + ) (if - (i32.eq - (get_local $8) - (i32.const 201) + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $51) + ) + (i32.const 8) + ) ) (if - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $51) - ) - (i32.const 8) + (i32.and + (i32.lt_u + (get_local $12) + (get_local $20) + ) + (i32.ge_u + (get_local $12) + (get_local $48) ) ) - (if - (i32.and - (i32.lt_u - (get_local $12) - (get_local $20) - ) - (i32.ge_u - (get_local $12) - (get_local $48) + (block + (i32.store + (get_local $49) + (i32.add + (get_local $50) + (get_local $26) ) ) - (block - (i32.store - (get_local $49) - (i32.add - (get_local $50) - (get_local $26) - ) - ) - (set_local $1 - (i32.add - (get_local $12) - (tee_local $17 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $12) - (i32.const 8) - ) + (set_local $1 + (i32.add + (get_local $12) + (tee_local $17 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $12) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) - (set_local $14 - (i32.add - (i32.sub - (get_local $26) - (get_local $17) - ) - (i32.load - (i32.const 1220) - ) + ) + (set_local $14 + (i32.add + (i32.sub + (get_local $26) + (get_local $17) + ) + (i32.load + (i32.const 1220) ) ) - (i32.store - (i32.const 1232) - (get_local $1) - ) - (i32.store - (i32.const 1220) + ) + (i32.store + (i32.const 1232) + (get_local $1) + ) + (i32.store + (i32.const 1220) + (get_local $14) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $14) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $1) - (i32.or - (get_local $14) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $1) - (get_local $14) - ) - (i32.const 40) - ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) + (get_local $14) ) - (br $do-once38) + (i32.const 40) ) - ) - ) - ) - (set_local $16 - (if (result i32) - (i32.lt_u - (get_local $20) - (tee_local $14 + (i32.store + (i32.const 1236) (i32.load - (i32.const 1224) + (i32.const 1696) ) ) + (br $do-once38) ) - (block (result i32) - (i32.store + ) + ) + ) + (set_local $16 + (if (result i32) + (i32.lt_u + (get_local $20) + (tee_local $14 + (i32.load (i32.const 1224) - (get_local $20) ) - (get_local $20) ) - (get_local $14) ) - ) - (set_local $14 - (i32.add + (block (result i32) + (i32.store + (i32.const 1224) + (get_local $20) + ) (get_local $20) - (get_local $26) ) + (get_local $14) ) - (set_local $1 - (i32.const 1656) + ) + (set_local $14 + (i32.add + (get_local $20) + (get_local $26) ) - (loop $while-in43 - (block $while-out42 - (if - (i32.eq - (i32.load - (get_local $1) - ) - (get_local $14) - ) - (block - (set_local $52 - (get_local $1) - ) - (set_local $42 - (get_local $1) - ) - (set_local $8 - (i32.const 209) - ) - (br $while-out42) + ) + (set_local $1 + (i32.const 1656) + ) + (loop $while-in43 + (block $while-out42 + (if + (i32.eq + (i32.load + (get_local $1) ) + (get_local $14) ) - (br_if $while-in43 - (tee_local $1 - (i32.load offset=8 - (get_local $1) - ) + (block + (set_local $52 + (get_local $1) ) - ) - (set_local $30 - (i32.const 1656) + (set_local $42 + (get_local $1) + ) + (set_local $8 + (i32.const 209) + ) + (br $while-out42) ) ) - ) - (if - (i32.eq - (get_local $8) - (i32.const 209) + (br_if $while-in43 + (tee_local $1 + (i32.load offset=8 + (get_local $1) + ) + ) ) (set_local $30 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $42) - ) - (i32.const 8) + (i32.const 1656) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 209) + ) + (set_local $30 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $42) ) - (i32.const 1656) - (block - (i32.store - (get_local $52) - (get_local $20) - ) - (i32.store - (tee_local $1 - (i32.add - (get_local $42) - (i32.const 4) - ) - ) + (i32.const 8) + ) + (i32.const 1656) + (block + (i32.store + (get_local $52) + (get_local $20) + ) + (i32.store + (tee_local $1 (i32.add - (i32.load - (get_local $1) - ) - (get_local $26) + (get_local $42) + (i32.const 4) ) ) - (set_local $17 - (i32.add - (get_local $20) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $20) - (i32.const 8) - ) + (i32.add + (i32.load + (get_local $1) + ) + (get_local $26) + ) + ) + (set_local $17 + (i32.add + (get_local $20) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) - (set_local $4 - (i32.add - (get_local $14) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $14) - (i32.const 8) - ) + ) + (set_local $4 + (i32.add + (get_local $14) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $14) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) - (set_local $1 - (i32.add + ) + (set_local $1 + (i32.add + (get_local $17) + (get_local $6) + ) + ) + (set_local $15 + (i32.sub + (i32.sub + (get_local $4) (get_local $17) - (get_local $6) ) + (get_local $6) ) - (set_local $15 - (i32.sub - (i32.sub - (get_local $4) - (get_local $17) + ) + (i32.store offset=4 + (get_local $17) + (i32.or + (get_local $6) + (i32.const 3) + ) + ) + (if + (i32.eq + (get_local $4) + (get_local $12) + ) + (block + (i32.store + (i32.const 1220) + (tee_local $2 + (i32.add + (i32.load + (i32.const 1220) + ) + (get_local $15) + ) ) - (get_local $6) ) - ) - (i32.store offset=4 - (get_local $17) - (i32.or - (get_local $6) - (i32.const 3) + (i32.store + (i32.const 1232) + (get_local $1) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $2) + (i32.const 1) + ) ) ) (block $do-once44 (if (i32.eq (get_local $4) - (get_local $12) + (i32.load + (i32.const 1228) + ) ) (block (i32.store - (i32.const 1220) + (i32.const 1216) (tee_local $2 (i32.add (i32.load - (i32.const 1220) + (i32.const 1216) ) (get_local $15) ) ) ) (i32.store - (i32.const 1232) + (i32.const 1228) (get_local $1) ) (i32.store offset=4 @@ -3927,1548 +3937,1622 @@ (i32.const 1) ) ) + (i32.store + (i32.add + (get_local $1) + (get_local $2) + ) + (get_local $2) + ) + (br $do-once44) ) - (block - (if - (i32.eq - (get_local $4) - (i32.load - (i32.const 1228) + ) + (if + (i32.eq + (i32.and + (tee_local $2 + (i32.load offset=4 + (get_local $4) ) ) - (block - (i32.store - (i32.const 1216) - (tee_local $2 - (i32.add - (i32.load - (i32.const 1216) - ) - (get_local $15) - ) - ) - ) - (i32.store - (i32.const 1228) - (get_local $1) - ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $2) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $1) - (get_local $2) - ) - (get_local $2) - ) - (br $do-once44) + (i32.const 3) + ) + (i32.const 1) + ) + (block + (set_local $5 + (i32.and + (get_local $2) + (i32.const -8) ) ) - (if - (i32.eq - (i32.and - (tee_local $2 - (i32.load offset=4 - (get_local $4) - ) - ) - (i32.const 3) - ) - (i32.const 1) + (set_local $0 + (i32.shr_u + (get_local $2) + (i32.const 3) ) - (block - (set_local $5 - (i32.and - (get_local $2) - (i32.const -8) - ) + ) + (block $label$break$e + (if + (i32.lt_u + (get_local $2) + (i32.const 256) ) - (set_local $0 - (i32.shr_u - (get_local $2) - (i32.const 3) + (block + (set_local $11 + (i32.load offset=12 + (get_local $4) + ) ) - ) - (block $label$break$e (if - (i32.lt_u - (get_local $2) - (i32.const 256) - ) - (block - (set_local $11 - (i32.load offset=12 + (i32.ne + (tee_local $21 + (i32.load offset=8 (get_local $4) ) ) - (block $do-once47 - (if - (i32.ne - (tee_local $21 - (i32.load offset=8 - (get_local $4) - ) - ) - (tee_local $19 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 1248) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $21) - (get_local $16) - ) - (call $qa) - ) - (br_if $do-once47 - (i32.eq - (i32.load offset=12 - (get_local $21) - ) - (get_local $4) - ) - ) - (call $qa) + (tee_local $19 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) ) + (i32.const 1248) ) ) + ) + (block $do-once47 (if - (i32.eq - (get_local $11) + (i32.lt_u (get_local $21) + (get_local $16) ) - (block - (i32.store - (i32.const 1208) - (i32.and - (i32.load - (i32.const 1208) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) + (call $qa) + ) + (br_if $do-once47 + (i32.eq + (i32.load offset=12 + (get_local $21) ) - (br $label$break$e) + (get_local $4) ) ) - (block $do-once49 - (if - (i32.eq - (get_local $11) - (get_local $19) - ) - (set_local $43 - (i32.add - (get_local $11) - (i32.const 8) - ) + (call $qa) + ) + ) + (if + (i32.eq + (get_local $11) + (get_local $21) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (i32.load + (i32.const 1208) ) - (block - (if - (i32.lt_u - (get_local $11) - (get_local $16) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 8) - ) - ) - ) - (get_local $4) - ) - (block - (set_local $43 - (get_local $0) - ) - (br $do-once49) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) - (call $qa) + (i32.const -1) ) ) ) - (i32.store offset=12 - (get_local $21) + (br $label$break$e) + ) + ) + (if + (i32.eq + (get_local $11) + (get_local $19) + ) + (set_local $43 + (i32.add (get_local $11) - ) - (i32.store - (get_local $43) - (get_local $21) + (i32.const 8) ) ) - (block - (set_local $19 - (i32.load offset=24 - (get_local $4) + (block $do-once49 + (if + (i32.lt_u + (get_local $11) + (get_local $16) ) + (call $qa) ) - (block $do-once51 - (if - (i32.eq + (if + (i32.eq + (i32.load (tee_local $0 - (i32.load offset=12 - (get_local $4) + (i32.add + (get_local $11) + (i32.const 8) ) ) - (get_local $4) ) - (block - (set_local $0 - (if (result i32) - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (tee_local $18 - (i32.add - (get_local $4) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - (block (result i32) - (set_local $2 - (get_local $3) - ) - (get_local $7) - ) - (if (result i32) - (tee_local $22 - (i32.load - (get_local $18) - ) - ) - (block (result i32) - (set_local $2 - (get_local $22) - ) - (get_local $18) - ) - (br $do-once51) - ) - ) - ) - (loop $while-in54 - (if - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (get_local $2) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $7) - ) - (br $while-in54) - ) - ) - (if - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (get_local $2) - (i32.const 16) - ) + (get_local $4) + ) + (block + (set_local $43 + (get_local $0) + ) + (br $do-once49) + ) + ) + (call $qa) + ) + ) + (i32.store offset=12 + (get_local $21) + (get_local $11) + ) + (i32.store + (get_local $43) + (get_local $21) + ) + ) + (block + (set_local $19 + (i32.load offset=24 + (get_local $4) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $4) + ) + ) + (get_local $4) + ) + (block $do-once51 + (set_local $0 + (if (result i32) + (tee_local $3 + (i32.load + (tee_local $7 + (i32.add + (tee_local $18 + (i32.add + (get_local $4) + (i32.const 16) ) ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $7) - ) - (br $while-in54) - ) - ) - ) - (if - (i32.lt_u - (get_local $0) - (get_local $16) - ) - (call $qa) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $24 - (get_local $2) + (i32.const 4) ) ) ) ) - (block - (if - (i32.lt_u - (tee_local $7 - (i32.load offset=8 - (get_local $4) - ) - ) - (get_local $16) - ) - (call $qa) + (block (result i32) + (set_local $2 + (get_local $3) ) - (if - (i32.ne - (i32.load - (tee_local $3 - (i32.add - (get_local $7) - (i32.const 12) - ) - ) - ) - (get_local $4) + (get_local $7) + ) + (if (result i32) + (tee_local $22 + (i32.load + (get_local $18) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $18 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $4) - ) - (block - (i32.store - (get_local $3) - (get_local $0) - ) - (i32.store - (get_local $18) - (get_local $7) - ) - (set_local $24 - (get_local $0) - ) + (block (result i32) + (set_local $2 + (get_local $22) ) - (call $qa) + (get_local $18) ) + (br $do-once51) ) ) ) - (br_if $label$break$e - (i32.eqz - (get_local $19) - ) - ) - (block $do-once55 + (loop $while-in54 (if - (i32.eq - (get_local $4) + (tee_local $3 (i32.load - (tee_local $21 + (tee_local $7 (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $4) - ) - ) - (i32.const 2) - ) - (i32.const 1512) + (get_local $2) + (i32.const 20) ) ) ) ) (block - (i32.store - (get_local $21) - (get_local $24) + (set_local $2 + (get_local $3) ) - (br_if $do-once55 - (get_local $24) + (set_local $0 + (get_local $7) ) - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) + (br $while-in54) + ) + ) + (if + (tee_local $3 + (i32.load + (tee_local $7 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (br $label$break$e) ) (block - (if - (i32.lt_u - (get_local $19) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $11 - (i32.add - (get_local $19) - (i32.const 16) - ) - ) - ) - (get_local $4) - ) - (i32.store - (get_local $11) - (get_local $24) - ) - (i32.store offset=20 - (get_local $19) - (get_local $24) - ) + (set_local $2 + (get_local $3) ) - (br_if $label$break$e - (i32.eqz - (get_local $24) - ) + (set_local $0 + (get_local $7) ) + (br $while-in54) ) ) ) (if (i32.lt_u - (get_local $24) - (tee_local $0 - (i32.load - (i32.const 1224) + (get_local $0) + (get_local $16) + ) + (call $qa) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $24 + (get_local $2) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $7 + (i32.load offset=8 + (get_local $4) ) ) + (get_local $16) ) (call $qa) ) - (i32.store offset=24 - (get_local $24) - (get_local $19) + (if + (i32.ne + (i32.load + (tee_local $3 + (i32.add + (get_local $7) + (i32.const 12) + ) + ) + ) + (get_local $4) + ) + (call $qa) ) (if - (tee_local $11 + (i32.eq (i32.load - (tee_local $21 + (tee_local $18 (i32.add - (get_local $4) - (i32.const 16) + (get_local $0) + (i32.const 8) ) ) ) + (get_local $4) ) - (if - (i32.lt_u - (get_local $11) + (block + (i32.store + (get_local $3) (get_local $0) ) - (call $qa) - (block - (i32.store offset=16 - (get_local $24) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $24) + (i32.store + (get_local $18) + (get_local $7) + ) + (set_local $24 + (get_local $0) + ) + ) + (call $qa) + ) + ) + ) + (br_if $label$break$e + (i32.eqz + (get_local $19) + ) + ) + (if + (i32.eq + (get_local $4) + (i32.load + (tee_local $21 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $4) + ) + ) + (i32.const 2) ) + (i32.const 1512) ) ) ) - (br_if $label$break$e - (i32.eqz - (tee_local $11 - (i32.load offset=4 - (get_local $21) + ) + (block $do-once55 + (i32.store + (get_local $21) + (get_local $24) + ) + (br_if $do-once55 + (get_local $24) + ) + (i32.store + (i32.const 1212) + (i32.and + (i32.load + (i32.const 1212) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) + (i32.const -1) ) ) ) + (br $label$break$e) + ) + (block (if (i32.lt_u - (get_local $11) + (get_local $19) (i32.load (i32.const 1224) ) ) (call $qa) - (block - (i32.store offset=20 - (get_local $24) - (get_local $11) + ) + (if + (i32.eq + (i32.load + (tee_local $11 + (i32.add + (get_local $19) + (i32.const 16) + ) + ) ) - (i32.store offset=24 - (get_local $11) - (get_local $24) + (get_local $4) + ) + (i32.store + (get_local $11) + (get_local $24) + ) + (i32.store offset=20 + (get_local $19) + (get_local $24) + ) + ) + (br_if $label$break$e + (i32.eqz + (get_local $24) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $24) + (tee_local $0 + (i32.load + (i32.const 1224) + ) + ) + ) + (call $qa) + ) + (i32.store offset=24 + (get_local $24) + (get_local $19) + ) + (if + (tee_local $11 + (i32.load + (tee_local $21 + (i32.add + (get_local $4) + (i32.const 16) ) ) ) ) + (if + (i32.lt_u + (get_local $11) + (get_local $0) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $24) + (get_local $11) + ) + (i32.store offset=24 + (get_local $11) + (get_local $24) + ) + ) + ) ) - ) - (set_local $4 - (i32.add - (get_local $4) - (get_local $5) + (br_if $label$break$e + (i32.eqz + (tee_local $11 + (i32.load offset=4 + (get_local $21) + ) + ) + ) ) - ) - (set_local $15 - (i32.add - (get_local $5) - (get_local $15) + (if + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store offset=20 + (get_local $24) + (get_local $11) + ) + (i32.store offset=24 + (get_local $11) + (get_local $24) + ) + ) ) ) ) ) - (i32.store - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $0) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $15) - (i32.const 1) + (set_local $4 + (i32.add + (get_local $4) + (get_local $5) ) ) - (i32.store + (set_local $15 (i32.add - (get_local $1) + (get_local $5) (get_local $15) ) - (get_local $15) ) - (set_local $0 - (i32.shr_u - (get_local $15) - (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 4) + ) + ) + (i32.and + (i32.load + (get_local $0) + ) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $15) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $1) + (get_local $15) + ) + (get_local $15) + ) + (set_local $0 + (i32.shr_u + (get_local $15) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $15) + (i32.const 256) + ) + (block + (set_local $2 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 1248) ) ) (if - (i32.lt_u - (get_local $15) - (i32.const 256) - ) - (block - (set_local $2 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 1248) + (i32.and + (tee_local $11 + (i32.load + (i32.const 1208) ) ) - (block $do-once59 - (if - (i32.and - (tee_local $11 - (i32.load - (i32.const 1208) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (block - (if - (i32.ge_u - (tee_local $19 - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 1224) - ) - ) - (block - (set_local $44 - (get_local $0) - ) - (set_local $37 - (get_local $19) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) + ) + ) + ) + (block $do-once59 + (if + (i32.ge_u + (tee_local $19 + (i32.load + (tee_local $0 + (i32.add + (get_local $2) + (i32.const 8) ) - (br $do-once59) ) ) - (call $qa) ) - (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $11) - (get_local $0) - ) - ) - (set_local $44 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - (set_local $37 - (get_local $2) - ) + (i32.load + (i32.const 1224) + ) + ) + (block + (set_local $44 + (get_local $0) + ) + (set_local $37 + (get_local $19) ) + (br $do-once59) ) ) + (call $qa) + ) + (block (i32.store - (get_local $44) - (get_local $1) - ) - (i32.store offset=12 - (get_local $37) - (get_local $1) + (i32.const 1208) + (i32.or + (get_local $11) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $1) - (get_local $37) + (set_local $44 + (i32.add + (get_local $2) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $1) + (set_local $37 (get_local $2) ) - (br $do-once44) ) ) - (set_local $0 - (i32.add - (i32.shl - (tee_local $5 - (block $do-once61 (result i32) - (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $15) - (i32.const 8) - ) - ) - (block (result i32) - (drop - (br_if $do-once61 - (i32.const 31) - (i32.gt_u - (get_local $15) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $15) - (i32.add - (tee_local $7 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $19 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $0) - (tee_local $11 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + (i32.store + (get_local $44) + (get_local $1) + ) + (i32.store offset=12 + (get_local $37) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $37) + ) + (i32.store offset=12 + (get_local $1) + (get_local $2) + ) + (br $do-once44) + ) + ) + (set_local $0 + (i32.add + (i32.shl + (tee_local $5 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $15) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $15) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $15) + (i32.add + (tee_local $7 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $19 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $0) + (tee_local $11 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $11) + (i32.const 16) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $0 - (i32.shl - (get_local $5) - (get_local $19) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $11) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $0 + (i32.shl + (get_local $5) + (get_local $19) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $0) - (get_local $5) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $0) + (get_local $5) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $7) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $7) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 1512) + ) + ) + (i32.store offset=28 + (get_local $1) + (get_local $5) + ) + (i32.store offset=4 + (tee_local $2 + (i32.add (get_local $1) - (get_local $5) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $2 - (i32.add - (get_local $1) - (i32.const 16) + (i32.load + (i32.const 1212) ) ) - (i32.const 0) - ) - (i32.store - (get_local $2) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $2 - (i32.load - (i32.const 1212) - ) - ) - (tee_local $7 - (i32.shl - (i32.const 1) - (get_local $5) - ) - ) + (tee_local $7 + (i32.shl + (i32.const 1) + (get_local $5) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $2) - (get_local $7) - ) - ) - (i32.store - (get_local $0) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $0) - ) - (i32.store offset=12 - (get_local $1) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $1) - ) - (br $do-once44) + ) + ) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $2) + (get_local $7) ) ) - (set_local $7 - (i32.shl - (get_local $15) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $5) - (i32.const 1) - ) - ) - (i32.eq - (get_local $5) - (i32.const 31) - ) + (i32.store + (get_local $0) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $0) + ) + (i32.store offset=12 + (get_local $1) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $1) + ) + (br $do-once44) + ) + ) + (set_local $7 + (i32.shl + (get_local $15) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $5) + (i32.const 1) ) ) - ) - (set_local $2 - (i32.load - (get_local $0) + (i32.eq + (get_local $5) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $8 - (loop $while-in64 (result i32) - (block $while-out63 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $2) - ) - (i32.const -8) - ) - (get_local $15) - ) - (block - (set_local $38 - (get_local $2) - ) - (br $while-out63 - (i32.const 279) - ) + ) + ) + (set_local $2 + (i32.load + (get_local $0) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in64 (result i32) + (block $while-out63 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $2) ) + (i32.const -8) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $0 - (i32.add - (i32.add - (get_local $2) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $15) + ) + (block + (set_local $38 + (get_local $2) + ) + (br $while-out63 + (i32.const 279) + ) + ) + ) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $0 + (i32.add + (i32.add + (get_local $2) + (i32.const 16) ) - ) - ) - (block - (set_local $7 (i32.shl - (get_local $7) - (i32.const 1) + (i32.shr_u + (get_local $7) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $2 - (get_local $5) - ) - (br $while-in64) ) - (block (result i32) - (set_local $45 - (get_local $0) - ) - (set_local $53 - (get_local $2) - ) - (i32.const 276) + ) + ) + (block + (set_local $7 + (i32.shl + (get_local $7) + (i32.const 1) ) ) + (set_local $2 + (get_local $5) + ) + (br $while-in64) + ) + (block (result i32) + (set_local $45 + (get_local $0) + ) + (set_local $53 + (get_local $2) + ) + (i32.const 276) ) ) ) - (i32.const 276) ) - (if - (i32.lt_u - (get_local $45) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store - (get_local $45) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $53) - ) - (i32.store offset=12 - (get_local $1) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $1) - ) - ) + ) + (i32.const 276) + ) + (if + (i32.lt_u + (get_local $45) + (i32.load + (i32.const 1224) ) - (if - (i32.eq - (get_local $8) - (i32.const 279) - ) - (if - (i32.and - (i32.ge_u - (tee_local $7 - (i32.load - (tee_local $2 - (i32.add - (get_local $38) - (i32.const 8) - ) - ) - ) - ) - (tee_local $5 - (i32.load - (i32.const 1224) + ) + (call $qa) + (block + (i32.store + (get_local $45) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $53) + ) + (i32.store offset=12 + (get_local $1) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $1) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 279) + ) + (if + (i32.and + (i32.ge_u + (tee_local $7 + (i32.load + (tee_local $2 + (i32.add + (get_local $38) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $38) - (get_local $5) - ) ) - (block - (i32.store offset=12 - (get_local $7) - (get_local $1) - ) - (i32.store - (get_local $2) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $7) - ) - (i32.store offset=12 - (get_local $1) - (get_local $38) - ) - (i32.store offset=24 - (get_local $1) - (i32.const 0) + (tee_local $5 + (i32.load + (i32.const 1224) ) ) - (call $qa) + ) + (i32.ge_u + (get_local $38) + (get_local $5) ) ) + (block + (i32.store offset=12 + (get_local $7) + (get_local $1) + ) + (i32.store + (get_local $2) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $7) + ) + (i32.store offset=12 + (get_local $1) + (get_local $38) + ) + (i32.store offset=24 + (get_local $1) + (i32.const 0) + ) + ) + (call $qa) ) ) ) ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $17) - (i32.const 8) - ) + ) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $17) + (i32.const 8) ) ) ) ) ) - (loop $while-in66 - (block $while-out65 - (if - (i32.le_u - (tee_local $1 - (i32.load - (get_local $30) - ) + ) + (loop $while-in66 + (block $while-out65 + (if + (i32.le_u + (tee_local $1 + (i32.load + (get_local $30) ) - (get_local $12) ) - (if - (i32.gt_u - (tee_local $15 - (i32.add - (get_local $1) - (i32.load offset=4 - (get_local $30) - ) + (get_local $12) + ) + (if + (i32.gt_u + (tee_local $15 + (i32.add + (get_local $1) + (i32.load offset=4 + (get_local $30) ) ) - (get_local $12) ) - (block - (set_local $0 - (get_local $15) - ) - (br $while-out65) + (get_local $12) + ) + (block + (set_local $0 + (get_local $15) ) + (br $while-out65) ) ) - (set_local $30 - (i32.load offset=8 - (get_local $30) - ) + ) + (set_local $30 + (i32.load offset=8 + (get_local $30) ) - (br $while-in66) ) + (br $while-in66) ) - (set_local $15 - (i32.add - (tee_local $17 - (i32.add - (get_local $0) - (i32.const -47) - ) + ) + (set_local $15 + (i32.add + (tee_local $17 + (i32.add + (get_local $0) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $1 - (i32.add - (tee_local $17 - (select - (get_local $12) - (tee_local $1 - (i32.add - (get_local $17) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $15) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $1 + (i32.add + (tee_local $17 + (select + (get_local $12) + (tee_local $1 + (i32.add + (get_local $17) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $15) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $15) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $1) - (tee_local $15 - (i32.add - (get_local $12) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $1) + (tee_local $15 + (i32.add + (get_local $12) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 1232) - (tee_local $4 - (i32.add - (get_local $20) - (tee_local $14 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $20) - (i32.const 8) - ) + ) + (i32.store + (i32.const 1232) + (tee_local $4 + (i32.add + (get_local $20) + (tee_local $14 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 1220) - (tee_local $7 - (i32.sub - (i32.add - (get_local $26) - (i32.const -40) - ) - (get_local $14) - ) - ) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $7) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $7) - ) - (i32.const 40) - ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) - ) - (i32.store - (tee_local $7 + ) + (i32.store + (i32.const 1220) + (tee_local $7 + (i32.sub (i32.add - (get_local $17) - (i32.const 4) + (get_local $26) + (i32.const -40) ) + (get_local $14) ) - (i32.const 27) ) - (i32.store - (get_local $1) - (i32.load - (i32.const 1656) - ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $7) + (i32.const 1) ) - (i32.store offset=4 - (get_local $1) - (i32.load - (i32.const 1660) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $4) + (get_local $7) ) - (i32.store offset=8 - (get_local $1) - (i32.load - (i32.const 1664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 1236) + (i32.load + (i32.const 1696) ) - (i32.store offset=12 - (get_local $1) - (i32.load - (i32.const 1668) + ) + (i32.store + (tee_local $7 + (i32.add + (get_local $17) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $1) + (i32.load (i32.const 1656) - (get_local $20) ) - (i32.store + ) + (i32.store offset=4 + (get_local $1) + (i32.load (i32.const 1660) - (get_local $26) ) - (i32.store + ) + (i32.store offset=8 + (get_local $1) + (i32.load + (i32.const 1664) + ) + ) + (i32.store offset=12 + (get_local $1) + (i32.load (i32.const 1668) - (i32.const 0) ) + ) + (i32.store + (i32.const 1656) + (get_local $20) + ) + (i32.store + (i32.const 1660) + (get_local $26) + ) + (i32.store + (i32.const 1668) + (i32.const 0) + ) + (i32.store + (i32.const 1664) + (get_local $1) + ) + (set_local $1 + (i32.add + (get_local $17) + (i32.const 24) + ) + ) + (loop $do-in68 (i32.store - (i32.const 1664) - (get_local $1) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $1 - (i32.add - (get_local $17) - (i32.const 24) + (br_if $do-in68 + (i32.lt_u + (i32.add + (get_local $1) + (i32.const 4) + ) + (get_local $0) ) ) - (loop $do-in68 + ) + (if + (i32.ne + (get_local $17) + (get_local $12) + ) + (block (i32.store - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 4) + (get_local $7) + (i32.and + (i32.load + (get_local $7) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $do-in68 - (i32.lt_u - (i32.add - (get_local $1) - (i32.const 4) + (i32.store offset=4 + (get_local $12) + (i32.or + (tee_local $1 + (i32.sub + (get_local $17) + (get_local $12) + ) ) - (get_local $0) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $17) - (get_local $12) + (get_local $1) ) - (block - (i32.store - (get_local $7) - (i32.and - (i32.load - (get_local $7) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $12) - (i32.or - (tee_local $1 - (i32.sub - (get_local $17) - (get_local $12) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $17) + (set_local $4 + (i32.shr_u (get_local $1) + (i32.const 3) ) - (set_local $4 - (i32.shr_u - (get_local $1) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $1) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $1) - (i32.const 256) + (block + (set_local $14 + (i32.add + (i32.shl + (get_local $4) + (i32.const 3) + ) + (i32.const 1248) + ) ) - (block - (set_local $14 - (i32.add + (if + (i32.and + (tee_local $2 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $5 (i32.shl + (i32.const 1) (get_local $4) - (i32.const 3) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $2 (i32.load - (i32.const 1208) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $4) - ) - ) - ) - (if - (i32.lt_u - (tee_local $2 - (i32.load - (tee_local $5 - (i32.add - (get_local $14) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $14) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $46 - (get_local $5) - ) - (set_local $39 - (get_local $2) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $2) - (get_local $5) - ) - ) (set_local $46 - (i32.add - (get_local $14) - (i32.const 8) - ) + (get_local $5) ) (set_local $39 - (get_local $14) + (get_local $2) ) ) ) - (i32.store - (get_local $46) - (get_local $12) - ) - (i32.store offset=12 - (get_local $39) - (get_local $12) - ) - (i32.store offset=8 - (get_local $12) - (get_local $39) - ) - (i32.store offset=12 - (get_local $12) - (get_local $14) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $2) + (get_local $5) + ) + ) + (set_local $46 + (i32.add + (get_local $14) + (i32.const 8) + ) + ) + (set_local $39 + (get_local $14) + ) ) - (br $do-once38) ) + (i32.store + (get_local $46) + (get_local $12) + ) + (i32.store offset=12 + (get_local $39) + (get_local $12) + ) + (i32.store offset=8 + (get_local $12) + (get_local $39) + ) + (i32.store offset=12 + (get_local $12) + (get_local $14) + ) + (br $do-once38) ) - (set_local $0 - (i32.add - (i32.shl - (tee_local $2 + ) + (set_local $0 + (i32.add + (i32.shl + (tee_local $2 + (if (result i32) + (tee_local $14 + (i32.shr_u + (get_local $1) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $14 - (i32.shr_u - (get_local $1) - (i32.const 8) - ) + (i32.gt_u + (get_local $1) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $1) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $14 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $14) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $14) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $14 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $14) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $14) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $2) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $4 - (i32.shl - (get_local $5) - (get_local $14) - ) + (get_local $2) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $4 + (i32.shl + (get_local $5) + (get_local $14) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $4) - (get_local $5) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $4) + (get_local $5) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) - (i32.store offset=28 - (get_local $12) - (get_local $2) + ) + (i32.store offset=28 + (get_local $12) + (get_local $2) + ) + (i32.store offset=20 + (get_local $12) + (i32.const 0) + ) + (i32.store + (get_local $15) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $5 + (i32.load + (i32.const 1212) + ) + ) + (tee_local $4 + (i32.shl + (i32.const 1) + (get_local $2) + ) + ) + ) ) - (i32.store offset=20 - (get_local $12) - (i32.const 0) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $5) + (get_local $4) + ) + ) + (i32.store + (get_local $0) + (get_local $12) + ) + (i32.store offset=24 + (get_local $12) + (get_local $0) + ) + (i32.store offset=12 + (get_local $12) + (get_local $12) + ) + (i32.store offset=8 + (get_local $12) + (get_local $12) + ) + (br $do-once38) ) - (i32.store - (get_local $15) - (i32.const 0) + ) + (set_local $4 + (i32.shl + (get_local $1) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $2) + (i32.const 1) + ) + ) + (i32.eq + (get_local $2) + (i32.const 31) + ) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $5 - (i32.load - (i32.const 1212) + ) + (set_local $5 + (i32.load + (get_local $0) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in70 (result i32) + (block $while-out69 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $5) + ) + (i32.const -8) + ) + (get_local $1) + ) + (block + (set_local $31 + (get_local $5) + ) + (br $while-out69 + (i32.const 305) + ) + ) ) - ) - (tee_local $4 - (i32.shl - (i32.const 1) - (get_local $2) + (if (result i32) + (tee_local $2 + (i32.load + (tee_local $0 + (i32.add + (i32.add + (get_local $5) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $4) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $4 + (i32.shl + (get_local $4) + (i32.const 1) + ) + ) + (set_local $5 + (get_local $2) + ) + (br $while-in70) + ) + (block (result i32) + (set_local $47 + (get_local $0) + ) + (set_local $54 + (get_local $5) + ) + (i32.const 302) + ) ) ) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $5) - (get_local $4) - ) + (i32.const 302) + ) + (if + (i32.lt_u + (get_local $47) + (i32.load + (i32.const 1224) ) + ) + (call $qa) + (block (i32.store - (get_local $0) + (get_local $47) (get_local $12) ) (i32.store offset=24 (get_local $12) - (get_local $0) + (get_local $54) ) (i32.store offset=12 (get_local $12) @@ -5478,323 +5562,199 @@ (get_local $12) (get_local $12) ) - (br $do-once38) - ) - ) - (set_local $4 - (i32.shl - (get_local $1) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $2) - (i32.const 1) - ) - ) - (i32.eq - (get_local $2) - (i32.const 31) - ) - ) - ) - ) - (set_local $5 - (i32.load - (get_local $0) ) ) (if (i32.eq - (tee_local $8 - (loop $while-in70 (result i32) - (block $while-out69 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $5) - ) - (i32.const -8) - ) - (get_local $1) - ) - (block - (set_local $31 - (get_local $5) - ) - (br $while-out69 - (i32.const 305) + (get_local $8) + (i32.const 305) + ) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $5 + (i32.add + (get_local $31) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $2 - (i32.load - (tee_local $0 - (i32.add - (i32.add - (get_local $5) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $4) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $4 - (i32.shl - (get_local $4) - (i32.const 1) - ) - ) - (set_local $5 - (get_local $2) - ) - (br $while-in70) - ) - (block (result i32) - (set_local $47 - (get_local $0) - ) - (set_local $54 - (get_local $5) - ) - (i32.const 302) - ) + ) + (tee_local $1 + (i32.load + (i32.const 1224) ) ) ) - ) - (i32.const 302) - ) - (if - (i32.lt_u - (get_local $47) - (i32.load - (i32.const 1224) + (i32.ge_u + (get_local $31) + (get_local $1) ) ) - (call $qa) (block + (i32.store offset=12 + (get_local $4) + (get_local $12) + ) (i32.store - (get_local $47) + (get_local $5) (get_local $12) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $12) - (get_local $54) + (get_local $4) ) (i32.store offset=12 (get_local $12) - (get_local $12) + (get_local $31) ) - (i32.store offset=8 - (get_local $12) + (i32.store offset=24 (get_local $12) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $8) - (i32.const 305) - ) - (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $5 - (i32.add - (get_local $31) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 1224) - ) - ) - ) - (i32.ge_u - (get_local $31) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $4) - (get_local $12) - ) - (i32.store - (get_local $5) - (get_local $12) - ) - (i32.store offset=8 - (get_local $12) - (get_local $4) - ) - (i32.store offset=12 - (get_local $12) - (get_local $31) - ) - (i32.store offset=24 - (get_local $12) - (i32.const 0) - ) - ) - (call $qa) - ) + (call $qa) ) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $4 - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $4 + (i32.load + (i32.const 1224) ) ) - (i32.lt_u - (get_local $20) - (get_local $4) - ) ) - (i32.store - (i32.const 1224) + (i32.lt_u (get_local $20) + (get_local $4) ) ) (i32.store - (i32.const 1656) + (i32.const 1224) (get_local $20) ) - (i32.store - (i32.const 1660) - (get_local $26) - ) - (i32.store - (i32.const 1668) - (i32.const 0) + ) + (i32.store + (i32.const 1656) + (get_local $20) + ) + (i32.store + (i32.const 1660) + (get_local $26) + ) + (i32.store + (i32.const 1668) + (i32.const 0) + ) + (i32.store + (i32.const 1244) + (i32.load + (i32.const 1680) ) - (i32.store - (i32.const 1244) - (i32.load - (i32.const 1680) + ) + (i32.store + (i32.const 1240) + (i32.const -1) + ) + (set_local $4 + (i32.const 0) + ) + (loop $do-in + (i32.store offset=12 + (tee_local $14 + (i32.add + (i32.shl + (get_local $4) + (i32.const 3) + ) + (i32.const 1248) + ) ) + (get_local $14) ) - (i32.store - (i32.const 1240) - (i32.const -1) - ) - (set_local $4 - (i32.const 0) + (i32.store offset=8 + (get_local $14) + (get_local $14) ) - (loop $do-in - (i32.store offset=12 - (tee_local $14 + (br_if $do-in + (i32.ne + (tee_local $4 (i32.add - (i32.shl - (get_local $4) - (i32.const 3) - ) - (i32.const 1248) - ) - ) - (get_local $14) - ) - (i32.store offset=8 - (get_local $14) - (get_local $14) - ) - (br_if $do-in - (i32.ne - (tee_local $4 - (i32.add - (get_local $4) - (i32.const 1) - ) + (get_local $4) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 1232) - (tee_local $4 - (i32.add - (get_local $20) - (tee_local $14 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $20) - (i32.const 8) - ) + ) + (i32.store + (i32.const 1232) + (tee_local $4 + (i32.add + (get_local $20) + (tee_local $14 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 1220) - (tee_local $1 - (i32.sub - (i32.add - (get_local $26) - (i32.const -40) - ) - (get_local $14) + ) + (i32.store + (i32.const 1220) + (tee_local $1 + (i32.sub + (i32.add + (get_local $26) + (i32.const -40) ) + (get_local $14) ) ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $1) - (i32.const 1) - ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $1) + (i32.const 1) ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $1) - ) - (i32.const 40) + ) + (i32.store offset=4 + (i32.add + (get_local $4) + (get_local $1) ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) + (i32.const 40) + ) + (i32.store + (i32.const 1236) + (i32.load + (i32.const 1696) ) ) ) @@ -5949,279 +5909,329 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $4) - (i32.const 1) + (if + (i32.and + (get_local $4) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 + (set_local $7 + (get_local $6) + ) + ) + (block $do-once + (set_local $10 + (i32.load (get_local $1) ) - (set_local $7 - (get_local $6) - ) ) - (block - (set_local $10 - (i32.load - (get_local $1) - ) - ) - (if - (i32.eqz - (get_local $0) - ) - (return) + (if + (i32.eqz + (get_local $0) ) - (set_local $6 - (i32.add - (get_local $10) - (get_local $6) - ) + (return) + ) + (set_local $6 + (i32.add + (get_local $10) + (get_local $6) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub - (get_local $1) - (get_local $10) - ) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (get_local $10) ) - (get_local $14) ) - (call $qa) + (get_local $14) ) - (if - (i32.eq - (get_local $1) - (i32.load - (i32.const 1228) - ) + (call $qa) + ) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 1228) ) - (block - (if - (i32.ne - (i32.and - (tee_local $3 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 4) - ) + ) + (block + (if + (i32.ne + (i32.and + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 4) ) ) ) - (i32.const 3) ) (i32.const 3) ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) - ) - ) - (i32.store - (i32.const 1216) - (get_local $6) + (i32.const 3) ) - (i32.store - (get_local $0) - (i32.and - (get_local $3) - (i32.const -2) + (block + (set_local $2 + (get_local $1) ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or + (set_local $7 (get_local $6) - (i32.const 1) ) + (br $do-once) ) - (i32.store - (i32.add - (get_local $1) - (get_local $6) - ) + ) + (i32.store + (i32.const 1216) + (get_local $6) + ) + (i32.store + (get_local $0) + (i32.and + (get_local $3) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $6) + (i32.const 1) ) - (return) ) - ) - (set_local $3 - (i32.shr_u - (get_local $10) - (i32.const 3) + (i32.store + (i32.add + (get_local $1) + (get_local $6) + ) + (get_local $6) ) + (return) ) - (if - (i32.lt_u - (get_local $10) - (i32.const 256) + ) + (set_local $3 + (i32.shr_u + (get_local $10) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $10) + (i32.const 256) + ) + (block + (set_local $0 + (i32.load offset=12 + (get_local $1) + ) ) - (block - (set_local $0 - (i32.load offset=12 - (get_local $1) + (if + (i32.ne + (tee_local $10 + (i32.load offset=8 + (get_local $1) + ) ) - ) - (if - (i32.ne - (tee_local $10 - (i32.load offset=8 - (get_local $1) + (tee_local $4 + (i32.add + (i32.shl + (get_local $3) + (i32.const 3) ) + (i32.const 1248) ) - (tee_local $4 - (i32.add - (i32.shl - (get_local $3) - (i32.const 3) - ) - (i32.const 1248) - ) + ) + ) + (block + (if + (i32.lt_u + (get_local $10) + (get_local $14) ) + (call $qa) ) - (block - (if - (i32.lt_u + (if + (i32.ne + (i32.load offset=12 (get_local $10) - (get_local $14) - ) - (call $qa) - ) - (if - (i32.ne - (i32.load offset=12 - (get_local $10) - ) - (get_local $1) ) - (call $qa) + (get_local $1) ) + (call $qa) ) ) - (if - (i32.eq - (get_local $0) - (get_local $10) - ) - (block - (i32.store - (i32.const 1208) - (i32.and - (i32.load - (i32.const 1208) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $0) + (get_local $10) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (i32.load + (i32.const 1208) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) ) + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) + (br $do-once) ) - (if - (i32.eq + ) + (if + (i32.eq + (get_local $0) + (get_local $4) + ) + (set_local $9 + (i32.add (get_local $0) - (get_local $4) + (i32.const 8) ) - (set_local $9 - (i32.add + ) + (block + (if + (i32.lt_u (get_local $0) - (i32.const 8) + (get_local $14) ) + (call $qa) ) - (block - (if - (i32.lt_u - (get_local $0) - (get_local $14) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (get_local $1) - ) - (set_local $9 - (get_local $4) ) - (call $qa) + (get_local $1) + ) + (set_local $9 + (get_local $4) ) + (call $qa) ) ) - (i32.store offset=12 - (get_local $10) - (get_local $0) - ) - (i32.store - (get_local $9) - (get_local $10) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) ) - ) - (set_local $10 - (i32.load offset=24 + (i32.store offset=12 + (get_local $10) + (get_local $0) + ) + (i32.store + (get_local $9) + (get_local $10) + ) + (set_local $2 (get_local $1) ) + (set_local $7 + (get_local $6) + ) + (br $do-once) + ) + ) + (set_local $10 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) ) (block $do-once0 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $1) + (tee_local $9 + (i32.load + (tee_local $3 + (i32.add + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) + ) + ) + (i32.const 4) + ) ) ) - (get_local $1) ) (block - (if + (set_local $0 + (get_local $9) + ) + (set_local $4 + (get_local $3) + ) + ) + (br_if $do-once0 + (i32.eqz + (tee_local $0 + (i32.load + (get_local $4) + ) + ) + ) + ) + ) + (loop $while-in + (if + (tee_local $9 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 20) + ) + ) + ) + ) + (block + (set_local $0 + (get_local $9) + ) + (set_local $4 + (get_local $3) + ) + (br $while-in) + ) + ) + (set_local $3 + (if (result i32) (tee_local $9 (i32.load (tee_local $3 (i32.add - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) + (get_local $0) + (i32.const 16) ) ) ) @@ -6233,322 +6243,260 @@ (set_local $4 (get_local $3) ) + (br $while-in) ) - (br_if $do-once0 - (i32.eqz - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + (block (result i32) + (set_local $12 + (get_local $0) ) + (get_local $4) ) ) - (loop $while-in - (if - (tee_local $9 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $3) + (get_local $14) + ) + (call $qa) + (block + (i32.store + (get_local $3) + (i32.const 0) + ) + (set_local $5 + (get_local $12) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $3 + (i32.load offset=8 + (get_local $1) + ) + ) + (get_local $14) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $9 + (i32.add + (get_local $3) + (i32.const 12) ) - (block - (set_local $0 - (get_local $9) - ) - (set_local $4 - (get_local $3) - ) - (br $while-in) + ) + ) + (get_local $1) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (set_local $3 - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 16) - ) + ) + (get_local $1) + ) + (block + (i32.store + (get_local $9) + (get_local $0) + ) + (i32.store + (get_local $4) + (get_local $3) + ) + (set_local $5 + (get_local $0) + ) + ) + (call $qa) + ) + ) + ) + (if + (get_local $10) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - (block - (set_local $0 - (get_local $9) - ) - (set_local $4 - (get_local $3) - ) - (br $while-in) - ) - (block (result i32) - (set_local $12 - (get_local $0) - ) - (get_local $4) - ) + (i32.const 1512) ) ) ) + ) + (block + (i32.store + (get_local $3) + (get_local $5) + ) (if - (i32.lt_u - (get_local $3) - (get_local $14) + (i32.eqz + (get_local $5) ) - (call $qa) (block (i32.store - (get_local $3) - (i32.const 0) + (i32.const 1212) + (i32.and + (i32.load + (i32.const 1212) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) + ) + (i32.const -1) + ) + ) ) - (set_local $5 - (get_local $12) + (set_local $2 + (get_local $1) ) + (set_local $7 + (get_local $6) + ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $3 - (i32.load offset=8 - (get_local $1) - ) + (get_local $10) + (i32.load + (i32.const 1224) ) - (get_local $14) ) (call $qa) ) (if - (i32.ne + (i32.eq (i32.load - (tee_local $9 + (tee_local $0 (i32.add - (get_local $3) - (i32.const 12) + (get_local $10) + (i32.const 16) ) ) ) (get_local $1) ) - (call $qa) + (i32.store + (get_local $0) + (get_local $5) + ) + (i32.store offset=20 + (get_local $10) + (get_local $5) + ) ) (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $1) + (i32.eqz + (get_local $5) ) (block - (i32.store - (get_local $9) - (get_local $0) - ) - (i32.store - (get_local $4) - (get_local $3) + (set_local $2 + (get_local $1) ) - (set_local $5 - (get_local $0) + (set_local $7 + (get_local $6) ) + (br $do-once) ) - (call $qa) ) ) ) - ) - (if - (get_local $10) - (block - (if - (i32.eq - (get_local $1) + (if + (i32.lt_u + (get_local $5) + (tee_local $0 (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 1512) - ) - ) - ) - ) - (block - (i32.store - (get_local $3) - (get_local $5) - ) - (if - (i32.eqz - (get_local $5) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) - ) + (i32.const 1224) ) ) - (block - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $10) - (i32.const 16) - ) - ) - ) + ) + (call $qa) + ) + (i32.store offset=24 + (get_local $5) + (get_local $10) + ) + (if + (tee_local $4 + (i32.load + (tee_local $3 + (i32.add (get_local $1) - ) - (i32.store - (get_local $0) - (get_local $5) - ) - (i32.store offset=20 - (get_local $10) - (get_local $5) - ) - ) - (if - (i32.eqz - (get_local $5) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) + (i32.const 16) ) ) ) ) (if (i32.lt_u - (get_local $5) - (tee_local $0 - (i32.load - (i32.const 1224) - ) - ) + (get_local $4) + (get_local $0) ) (call $qa) - ) - (i32.store offset=24 - (get_local $5) - (get_local $10) - ) - (if - (tee_local $4 - (i32.load - (tee_local $3 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (if - (i32.lt_u + (block + (i32.store offset=16 + (get_local $5) (get_local $4) - (get_local $0) ) - (call $qa) - (block - (i32.store offset=16 - (get_local $5) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $5) - ) + (i32.store offset=24 + (get_local $4) + (get_local $5) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $3) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $3) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 1224) ) ) - (if - (i32.lt_u + (call $qa) + (block + (i32.store offset=20 + (get_local $5) (get_local $4) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (i32.store offset=20 - (get_local $5) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $5) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) + (i32.store offset=24 + (get_local $4) + (get_local $5) ) - ) - (block (set_local $2 (get_local $1) ) @@ -6557,16 +6505,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) + (block + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) + ) ) ) ) @@ -6862,169 +6818,167 @@ (get_local $8) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $8) - ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 + (get_local $8) ) - (get_local $8) ) - (block - (set_local $7 - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $0 - (i32.add - (tee_local $4 - (i32.add - (get_local $8) - (i32.const 16) - ) + (get_local $8) + ) + (block $do-once6 + (set_local $7 + (if (result i32) + (tee_local $9 + (i32.load + (tee_local $0 + (i32.add + (tee_local $4 + (i32.add + (get_local $8) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $9) - ) - (if (result i32) - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + ) + (block (result i32) + (set_local $4 (get_local $0) - (br $do-once6) ) + (get_local $9) ) - ) - (loop $while-in9 - (if - (tee_local $9 + (if (result i32) + (tee_local $0 (i32.load - (tee_local $0 - (i32.add - (get_local $7) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $7 - (get_local $9) - ) - (set_local $4 - (get_local $0) + (get_local $4) ) - (br $while-in9) ) + (get_local $0) + (br $do-once6) ) - (if - (tee_local $9 - (i32.load - (tee_local $0 - (i32.add - (get_local $7) - (i32.const 16) - ) + ) + ) + (loop $while-in9 + (if + (tee_local $9 + (i32.load + (tee_local $0 + (i32.add + (get_local $7) + (i32.const 20) ) ) ) - (block - (set_local $7 - (get_local $9) - ) - (set_local $4 - (get_local $0) - ) - (br $while-in9) + ) + (block + (set_local $7 + (get_local $9) + ) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $4) + (tee_local $9 (i32.load - (i32.const 1224) + (tee_local $0 + (i32.add + (get_local $7) + (i32.const 16) + ) + ) ) ) - (call $qa) (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $7 + (get_local $9) ) - (set_local $11 - (get_local $7) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $0 - (i32.load offset=8 - (get_local $8) - ) - ) - (i32.load - (i32.const 1224) + (if + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $11 + (get_local $7) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 + (get_local $8) ) ) - (call $qa) + (i32.load + (i32.const 1224) + ) ) - (if - (i32.ne - (i32.load - (tee_local $9 - (i32.add - (get_local $0) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $9 + (i32.add + (get_local $0) + (i32.const 12) ) ) - (get_local $8) ) - (call $qa) + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 8) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 8) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $9) - (get_local $3) - ) - (i32.store - (get_local $4) - (get_local $0) - ) - (set_local $11 - (get_local $3) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $9) + (get_local $3) + ) + (i32.store + (get_local $4) + (get_local $0) + ) + (set_local $11 + (get_local $3) ) - (call $qa) ) + (call $qa) ) ) ) @@ -8115,169 +8069,165 @@ ) ) ) - (block $label$break$a - (if - (i32.eq - (get_local $7) - (i32.const 5) - ) - (block - (if - (i32.lt_u - (i32.sub - (get_local $6) - (tee_local $3 - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 5) + ) + (block $label$break$a + (if + (i32.lt_u + (i32.sub + (get_local $6) + (tee_local $3 + (i32.load + (tee_local $5 + (i32.add + (get_local $2) + (i32.const 20) ) ) ) ) - (get_local $1) ) - (block - (set_local $4 - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 3) + (get_local $1) + ) + (block + (set_local $4 + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 3) ) + (i32.const 2) ) ) - (br $label$break$a) ) + (br $label$break$a) ) - (set_local $4 - (get_local $3) + ) + (set_local $4 + (get_local $3) + ) + (if + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) + ) + (i32.const -1) ) (block $label$break$b - (if - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) - ) - (block - (set_local $3 - (get_local $1) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (if + (i32.eqz + (get_local $3) ) - (loop $while-in - (if - (i32.eqz - (get_local $3) - ) - (block - (set_local $3 - (i32.const 0) - ) - (br $label$break$b) - ) - ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) - ) - ) - ) - (i32.const 10) - ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) - ) + (block + (set_local $3 + (i32.const 0) ) + (br $label$break$b) ) - (if - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) + ) + (if + (i32.ne + (i32.load8_s + (i32.add (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 3) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) - (i32.const 2) ) ) - (get_local $3) - ) - (block - (set_local $4 - (get_local $3) - ) - (br $label$break$a) ) + (i32.const 10) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) - (set_local $0 + ) + ) + (if + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) (i32.add - (get_local $0) - (get_local $3) + (i32.and + (i32.load offset=36 + (get_local $2) + ) + (i32.const 3) + ) + (i32.const 2) ) ) + (get_local $3) + ) + (block (set_local $4 - (i32.load - (get_local $5) - ) + (get_local $3) ) + (br $label$break$a) ) - (set_local $3 - (i32.const 0) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) ) - ) - (drop - (call $jb - (get_local $4) - (get_local $0) - (get_local $1) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) + ) ) - ) - (i32.store - (get_local $5) - (i32.add + (set_local $4 (i32.load (get_local $5) ) - (get_local $1) ) ) - (set_local $4 - (i32.add - (get_local $3) - (get_local $1) + (set_local $3 + (i32.const 0) + ) + ) + (drop + (call $jb + (get_local $4) + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $5) + (i32.add + (i32.load + (get_local $5) ) + (get_local $1) + ) + ) + (set_local $4 + (i32.add + (get_local $3) + (get_local $1) ) ) ) @@ -8290,60 +8240,58 @@ (local $3 i32) (local $4 i32) (local $5 i32) - (block $label$break$a - (if - (i32.and - (tee_local $3 - (get_local $0) - ) - (i32.const 3) + (if + (i32.and + (tee_local $3 + (get_local $0) ) - (block - (set_local $4 - (get_local $3) - ) - (loop $while-in - (if - (i32.eqz - (i32.load8_s - (get_local $0) - ) + (i32.const 3) + ) + (block $label$break$a + (set_local $4 + (get_local $3) + ) + (loop $while-in + (if + (i32.eqz + (i32.load8_s + (get_local $0) ) - (block - (set_local $5 - (get_local $4) - ) - (br $label$break$a) + ) + (block + (set_local $5 + (get_local $4) ) + (br $label$break$a) ) - (br_if $while-in - (i32.and - (tee_local $4 - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + ) + (br_if $while-in + (i32.and + (tee_local $4 + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) - (i32.const 3) ) + (i32.const 3) ) ) - (set_local $2 - (i32.const 4) - ) - (set_local $1 - (get_local $0) - ) ) - (block - (set_local $1 - (get_local $0) - ) - (set_local $2 - (i32.const 4) - ) + (set_local $2 + (i32.const 4) + ) + (set_local $1 + (get_local $0) + ) + ) + (block + (set_local $1 + (get_local $0) + ) + (set_local $2 + (i32.const 4) ) ) ) @@ -8432,102 +8380,100 @@ (local $1 i32) (local $2 i32) (tee_local $1 - (block $do-once (result i32) - (if (result i32) - (get_local $0) - (block (result i32) - (if - (i32.le_s - (i32.load offset=76 - (get_local $0) - ) - (i32.const -1) - ) - (br $do-once - (call $$a - (get_local $0) - ) + (if (result i32) + (get_local $0) + (block $do-once (result i32) + (if + (i32.le_s + (i32.load offset=76 + (get_local $0) ) + (i32.const -1) ) - (call $$a - (get_local $0) + (br $do-once + (call $$a + (get_local $0) + ) ) ) - (block (result i32) - (set_local $0 - (if (result i32) + (call $$a + (get_local $0) + ) + ) + (block (result i32) + (set_local $0 + (if (result i32) + (i32.load + (i32.const 1140) + ) + (call $_a (i32.load (i32.const 1140) ) - (call $_a - (i32.load - (i32.const 1140) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $pa - (i32.const 1188) + ) + (call $pa + (i32.const 1188) + ) + (if + (tee_local $2 + (i32.load + (i32.const 1184) + ) ) - (if - (tee_local $2 - (i32.load - (i32.const 1184) - ) + (block + (set_local $1 + (get_local $2) ) - (block - (set_local $1 - (get_local $2) + (set_local $2 + (get_local $0) + ) + (loop $while-in + (drop + (i32.load offset=76 + (get_local $1) + ) ) - (set_local $2 - (get_local $0) + (set_local $0 + (i32.const 0) ) - (loop $while-in - (drop - (i32.load offset=76 + (if + (i32.gt_u + (i32.load offset=20 + (get_local $1) + ) + (i32.load offset=28 (get_local $1) ) ) - (set_local $0 - (i32.const 0) - ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $1) - ) - (i32.load offset=28 + (set_local $2 + (i32.or + (call $$a (get_local $1) ) - ) - (set_local $2 - (i32.or - (call $$a - (get_local $1) - ) - (get_local $2) - ) + (get_local $2) ) ) - (br_if $while-in - (tee_local $1 - (i32.load offset=56 - (get_local $1) - ) + ) + (br_if $while-in + (tee_local $1 + (i32.load offset=56 + (get_local $1) ) ) ) ) - (set_local $2 - (get_local $0) - ) ) - (call $xa - (i32.const 1188) + (set_local $2 + (get_local $0) ) - (get_local $2) ) + (call $xa + (i32.const 1188) + ) + (get_local $2) ) ) ) @@ -8593,76 +8539,74 @@ ) ) ) - (block $do-once - (if - (i32.eq - (get_local $7) - (i32.const 4) - ) - (block - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 4) + ) + (block $do-once + (if + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (get_local $6) ) - (if - (i32.ne - (tee_local $3 - (i32.const 10) - ) - (i32.load8_s offset=75 - (get_local $0) - ) + (get_local $6) + ) + (if + (i32.ne + (tee_local $3 + (i32.const 10) ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) - ) - (i32.store8 + (i32.load8_s offset=75 + (get_local $0) + ) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) + (i32.const 1) ) - (br $do-once) ) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once) ) ) - (set_local $3 - (if (result i32) - (i32.eq - (call_indirect (type $FUNCSIG$iiii) - (get_local $0) - (get_local $5) - (i32.const 1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $0) - ) - (i32.const 3) + ) + (set_local $3 + (if (result i32) + (i32.eq + (call_indirect (type $FUNCSIG$iiii) + (get_local $0) + (get_local $5) + (i32.const 1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $0) ) - (i32.const 2) + (i32.const 3) ) + (i32.const 2) ) - (i32.const 1) ) - (i32.load8_u - (get_local $5) - ) - (i32.const -1) + (i32.const 1) ) + (i32.load8_u + (get_local $5) + ) + (i32.const -1) ) ) ) @@ -9111,70 +9055,68 @@ (i32.shr_s (i32.shl (tee_local $1 - (block $do-once (result i32) - (if (result i32) - (i32.lt_s - (i32.add - (call $bb + (if (result i32) + (i32.lt_s + (i32.add + (call $bb + (i32.const 1144) + (call $Za (i32.const 1144) - (call $Za - (i32.const 1144) - ) - (get_local $0) ) - (i32.const -1) + (get_local $0) ) - (i32.const 0) + (i32.const -1) ) - (i32.const 1) - (block (result i32) - (if - (i32.ne - (i32.load8_s offset=75 - (get_local $0) - ) - (i32.const 10) + (i32.const 0) + ) + (i32.const 1) + (block $do-once (result i32) + (if + (i32.ne + (i32.load8_s offset=75 + (get_local $0) ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (i32.const 10) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (i32.load offset=16 - (get_local $0) - ) ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) - ) - (i32.store8 + (i32.load offset=16 + (get_local $0) + ) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) - ) - (br $do-once - (i32.const 0) + (i32.const 1) ) ) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once + (i32.const 0) + ) ) ) - (i32.lt_s - (call $ab - (get_local $0) - ) - (i32.const 0) + ) + (i32.lt_s + (call $ab + (get_local $0) ) + (i32.const 0) ) ) ) diff --git a/test/memorygrowth.fromasm.clamp b/test/memorygrowth.fromasm.clamp index cd7014f8c..5a8a49d8f 100644 --- a/test/memorygrowth.fromasm.clamp +++ b/test/memorygrowth.fromasm.clamp @@ -124,1769 +124,1782 @@ (get_local $25) ) (set_local $6 - (block $do-once (result i32) - (if (result i32) - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block (result i32) - (if - (i32.and - (tee_local $6 - (i32.shr_u - (tee_local $5 - (i32.load - (i32.const 1208) - ) + (if (result i32) + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block (result i32) + (if + (i32.and + (tee_local $6 + (i32.shr_u + (tee_local $5 + (i32.load + (i32.const 1208) ) - (tee_local $0 - (i32.shr_u - (tee_local $2 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $0 + (i32.shr_u + (tee_local $2 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $7 - (i32.load - (tee_local $2 - (i32.add - (tee_local $13 - (i32.load - (tee_local $16 - (i32.add - (tee_local $9 - (i32.add - (i32.shl - (tee_local $0 - (i32.add - (i32.xor - (i32.and - (get_local $6) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $7 + (i32.load + (tee_local $2 + (i32.add + (tee_local $13 + (i32.load + (tee_local $16 + (i32.add + (tee_local $9 + (i32.add + (i32.shl + (tee_local $0 + (i32.add + (i32.xor + (i32.and + (get_local $6) (i32.const 1) ) - (get_local $0) + (i32.const 1) ) + (get_local $0) ) - (i32.const 3) ) - (i32.const 1248) + (i32.const 3) ) + (i32.const 1248) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $9) - (get_local $7) - ) - (i32.store - (i32.const 1208) - (i32.and - (get_local $5) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $9) + (get_local $7) + ) + (i32.store + (i32.const 1208) + (i32.and + (get_local $5) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) + (i32.const -1) ) ) - (block - (if - (i32.lt_u - (get_local $7) - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.lt_u + (get_local $7) + (i32.load + (i32.const 1224) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $7) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $8 + (i32.add + (get_local $7) + (i32.const 12) ) ) - (get_local $13) ) - (block - (i32.store - (get_local $8) - (get_local $9) - ) - (i32.store - (get_local $16) - (get_local $7) - ) + (get_local $13) + ) + (block + (i32.store + (get_local $8) + (get_local $9) + ) + (i32.store + (get_local $16) + (get_local $7) ) - (call $qa) ) + (call $qa) ) ) - (i32.store offset=4 - (get_local $13) - (i32.or - (tee_local $7 - (i32.shl - (get_local $0) - (i32.const 3) - ) + ) + (i32.store offset=4 + (get_local $13) + (i32.or + (tee_local $7 + (i32.shl + (get_local $0) + (i32.const 3) ) - (i32.const 3) ) + (i32.const 3) ) - (i32.store - (tee_local $16 + ) + (i32.store + (tee_local $16 + (i32.add (i32.add - (i32.add - (get_local $13) - (get_local $7) - ) - (i32.const 4) - ) - ) - (i32.or - (i32.load - (get_local $16) + (get_local $13) + (get_local $7) ) - (i32.const 1) + (i32.const 4) ) ) - (set_global $r - (get_local $25) - ) - (return - (get_local $2) + (i32.or + (i32.load + (get_local $16) + ) + (i32.const 1) ) ) - ) - (if (result i32) - (i32.gt_u + (set_global $r + (get_local $25) + ) + (return (get_local $2) - (tee_local $16 - (i32.load - (i32.const 1216) - ) + ) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $2) + (tee_local $16 + (i32.load + (i32.const 1216) ) ) - (block (result i32) - (if - (get_local $6) - (block - (set_local $9 - (i32.and - (i32.shr_u - (tee_local $7 - (i32.add - (i32.and - (tee_local $9 - (i32.and - (i32.shl - (get_local $6) - (get_local $0) - ) - (i32.or - (tee_local $7 - (i32.shl - (i32.const 2) - (get_local $0) - ) - ) - (i32.sub - (i32.const 0) - (get_local $7) + ) + (block (result i32) + (if + (get_local $6) + (block + (set_local $9 + (i32.and + (i32.shr_u + (tee_local $7 + (i32.add + (i32.and + (tee_local $9 + (i32.and + (i32.shl + (get_local $6) + (get_local $0) + ) + (i32.or + (tee_local $7 + (i32.shl + (i32.const 2) + (get_local $0) ) ) + (i32.sub + (i32.const 0) + (get_local $7) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $9) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $9) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $9 - (i32.load - (tee_local $8 - (i32.add - (tee_local $10 - (i32.load - (tee_local $13 - (i32.add - (tee_local $3 - (i32.add - (i32.shl - (tee_local $4 - (i32.add + ) + (set_local $9 + (i32.load + (tee_local $8 + (i32.add + (tee_local $10 + (i32.load + (tee_local $13 + (i32.add + (tee_local $3 + (i32.add + (i32.shl + (tee_local $4 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (tee_local $8 - (i32.shr_u - (get_local $7) - (get_local $9) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $9) - ) - (tee_local $8 + (tee_local $7 (i32.and (i32.shr_u - (tee_local $10 + (tee_local $8 (i32.shr_u - (get_local $8) (get_local $7) + (get_local $9) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $9) ) - (tee_local $10 + (tee_local $8 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $10 (i32.shr_u - (get_local $10) (get_local $8) + (get_local $7) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $3 + (tee_local $10 (i32.and (i32.shr_u - (tee_local $13 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $10) + (get_local $8) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $13) - (get_local $3) + (tee_local $3 + (i32.and + (i32.shr_u + (tee_local $13 + (i32.shr_u + (get_local $3) + (get_local $10) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $13) + (get_local $3) + ) ) - (i32.const 3) ) - (i32.const 1248) + (i32.const 3) ) + (i32.const 1248) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $3) - (get_local $9) - ) - (block - (i32.store - (i32.const 1208) - (i32.and - (get_local $5) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $4) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $3) + (get_local $9) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (get_local $5) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $4) ) + (i32.const -1) ) ) - (set_local $34 - (get_local $16) - ) ) - (block - (if - (i32.lt_u - (get_local $9) - (i32.load - (i32.const 1224) - ) + (set_local $34 + (get_local $16) + ) + ) + (block + (if + (i32.lt_u + (get_local $9) + (i32.load + (i32.const 1224) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $7 - (i32.add - (get_local $9) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $7 + (i32.add + (get_local $9) + (i32.const 12) ) ) - (get_local $10) ) - (block - (i32.store - (get_local $7) - (get_local $3) - ) - (i32.store - (get_local $13) - (get_local $9) - ) - (set_local $34 - (i32.load - (i32.const 1216) - ) + (get_local $10) + ) + (block + (i32.store + (get_local $7) + (get_local $3) + ) + (i32.store + (get_local $13) + (get_local $9) + ) + (set_local $34 + (i32.load + (i32.const 1216) ) ) - (call $qa) ) + (call $qa) ) ) - (i32.store offset=4 - (get_local $10) - (i32.or + ) + (i32.store offset=4 + (get_local $10) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $13 + (i32.add + (get_local $10) (get_local $2) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $13 - (i32.add - (get_local $10) - (get_local $2) - ) - ) - (i32.or - (tee_local $9 - (i32.sub - (i32.shl - (get_local $4) - (i32.const 3) - ) - (get_local $2) + (i32.or + (tee_local $9 + (i32.sub + (i32.shl + (get_local $4) + (i32.const 3) ) + (get_local $2) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $13) - (get_local $9) - ) + ) + (i32.store + (i32.add + (get_local $13) (get_local $9) ) - (if - (get_local $34) - (block - (set_local $3 - (i32.load - (i32.const 1228) + (get_local $9) + ) + (if + (get_local $34) + (block + (set_local $3 + (i32.load + (i32.const 1228) + ) + ) + (set_local $5 + (i32.add + (i32.shl + (tee_local $16 + (i32.shr_u + (get_local $34) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 1248) ) - (set_local $5 - (i32.add + ) + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $6 (i32.shl - (tee_local $16 - (i32.shr_u - (get_local $34) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $16) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $0 (i32.load - (i32.const 1208) - ) - ) - (tee_local $6 - (i32.shl - (i32.const 1) - (get_local $16) - ) - ) - ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $6 - (i32.add - (get_local $5) - (i32.const 8) - ) + (tee_local $6 + (i32.add + (get_local $5) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $40 - (get_local $6) - ) - (set_local $35 - (get_local $0) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $0) - (get_local $6) - ) - ) (set_local $40 - (i32.add - (get_local $5) - (i32.const 8) - ) + (get_local $6) ) (set_local $35 - (get_local $5) + (get_local $0) ) ) ) - (i32.store - (get_local $40) - (get_local $3) - ) - (i32.store offset=12 - (get_local $35) - (get_local $3) - ) - (i32.store offset=8 - (get_local $3) - (get_local $35) - ) - (i32.store offset=12 - (get_local $3) - (get_local $5) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $0) + (get_local $6) + ) + ) + (set_local $40 + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + (set_local $35 + (get_local $5) + ) ) ) + (i32.store + (get_local $40) + (get_local $3) + ) + (i32.store offset=12 + (get_local $35) + (get_local $3) + ) + (i32.store offset=8 + (get_local $3) + (get_local $35) + ) + (i32.store offset=12 + (get_local $3) + (get_local $5) + ) ) - (i32.store - (i32.const 1216) - (get_local $9) - ) - (i32.store - (i32.const 1228) - (get_local $13) - ) - (set_global $r - (get_local $25) - ) - (return - (get_local $8) - ) + ) + (i32.store + (i32.const 1216) + (get_local $9) + ) + (i32.store + (i32.const 1228) + (get_local $13) + ) + (set_global $r + (get_local $25) + ) + (return + (get_local $8) ) ) - (if (result i32) - (tee_local $13 - (i32.load - (i32.const 1212) - ) + ) + (if (result i32) + (tee_local $13 + (i32.load + (i32.const 1212) ) - (block - (set_local $13 - (i32.and - (i32.shr_u - (tee_local $9 - (i32.add - (i32.and + ) + (block + (set_local $13 + (i32.and + (i32.shr_u + (tee_local $9 + (i32.add + (i32.and + (get_local $13) + (i32.sub + (i32.const 0) (get_local $13) - (i32.sub - (i32.const 0) - (get_local $13) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $0 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $16 - (i32.load - (i32.add - (i32.shl - (i32.add + ) + (set_local $0 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $16 + (i32.load + (i32.add + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $9 - (i32.and - (i32.shr_u - (tee_local $5 - (i32.shr_u - (get_local $9) - (get_local $13) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $13) - ) - (tee_local $5 + (tee_local $9 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $5 (i32.shr_u - (get_local $5) (get_local $9) + (get_local $13) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $13) ) - (tee_local $3 + (tee_local $5 (i32.and (i32.shr_u - (tee_local $0 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $5) + (get_local $9) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $0 + (tee_local $3 (i32.and (i32.shr_u - (tee_local $6 + (tee_local $0 (i32.shr_u - (get_local $0) (get_local $3) + (get_local $5) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $6) - (get_local $0) + (tee_local $0 + (i32.and + (i32.shr_u + (tee_local $6 + (i32.shr_u + (get_local $0) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $6) + (get_local $0) + ) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (set_local $3 - (tee_local $6 - (get_local $16) - ) + ) + (set_local $3 + (tee_local $6 + (get_local $16) ) - (loop $while-in - (block $while-out - (set_local $5 - (i32.lt_u - (tee_local $16 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $6 + ) + (loop $while-in + (block $while-out + (set_local $5 + (i32.lt_u + (tee_local $16 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $6 + (if (result i32) + (tee_local $16 + (i32.load offset=16 + (get_local $6) + ) + ) + (get_local $16) (if (result i32) - (tee_local $16 - (i32.load offset=16 + (tee_local $5 + (i32.load offset=20 (get_local $6) ) ) - (get_local $16) - (if (result i32) - (tee_local $5 - (i32.load offset=20 - (get_local $6) - ) + (get_local $5) + (block + (set_local $7 + (get_local $0) ) - (get_local $5) - (block - (set_local $7 - (get_local $0) - ) - (set_local $1 - (get_local $3) - ) - (br $while-out) + (set_local $1 + (get_local $3) ) + (br $while-out) ) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $0) ) + (get_local $0) ) - (set_local $0 - (select - (get_local $16) - (get_local $0) - (get_local $5) - ) + ) + (set_local $0 + (select + (get_local $16) + (get_local $0) + (get_local $5) ) - (set_local $3 - (select - (get_local $6) - (get_local $3) - (get_local $5) - ) + ) + (set_local $3 + (select + (get_local $6) + (get_local $3) + (get_local $5) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $1) - (tee_local $3 - (i32.load - (i32.const 1224) - ) + ) + (if + (i32.lt_u + (get_local $1) + (tee_local $3 + (i32.load + (i32.const 1224) ) ) - (call $qa) ) - (if - (i32.ge_u - (get_local $1) - (tee_local $6 - (i32.add - (get_local $1) - (get_local $2) - ) + (call $qa) + ) + (if + (i32.ge_u + (get_local $1) + (tee_local $6 + (i32.add + (get_local $1) + (get_local $2) ) ) - (call $qa) ) - (set_local $0 - (i32.load offset=24 - (get_local $1) + (call $qa) + ) + (set_local $0 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $8 + (i32.load offset=12 + (get_local $1) + ) ) + (get_local $1) ) (block $do-once4 (if - (i32.eq - (tee_local $8 - (i32.load offset=12 - (get_local $1) + (tee_local $4 + (i32.load + (tee_local $10 + (i32.add + (get_local $1) + (i32.const 20) + ) ) ) - (get_local $1) ) (block - (if - (tee_local $4 + (set_local $16 + (get_local $4) + ) + (set_local $5 + (get_local $10) + ) + ) + (br_if $do-once4 + (i32.eqz + (tee_local $16 (i32.load - (tee_local $10 + (tee_local $5 (i32.add (get_local $1) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) - ) - ) - (br_if $do-once4 - (i32.eqz - (tee_local $16 - (i32.load - (tee_local $5 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) + (i32.const 16) ) ) ) ) ) - (loop $while-in7 - (if - (tee_local $4 - (i32.load - (tee_local $10 - (i32.add - (get_local $16) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) - ) - (br $while-in7) - ) - ) - (if - (tee_local $4 - (i32.load - (tee_local $10 - (i32.add - (get_local $16) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) + ) + ) + (loop $while-in7 + (if + (tee_local $4 + (i32.load + (tee_local $10 + (i32.add + (get_local $16) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $5) - (get_local $3) + (block + (set_local $16 + (get_local $4) ) - (call $qa) - (block - (i32.store - (get_local $5) - (i32.const 0) - ) - (set_local $23 - (get_local $16) - ) + (set_local $5 + (get_local $10) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $4 + (i32.load (tee_local $10 - (i32.load offset=8 - (get_local $1) + (i32.add + (get_local $16) + (i32.const 16) ) ) - (get_local $3) ) - (call $qa) ) - (if - (i32.ne - (i32.load - (tee_local $4 - (i32.add - (get_local $10) - (i32.const 12) - ) - ) - ) - (get_local $1) + (block + (set_local $16 + (get_local $4) ) - (call $qa) + (set_local $5 + (get_local $10) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $5 - (i32.add - (get_local $8) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $5) + (get_local $3) + ) + (call $qa) + (block + (i32.store + (get_local $5) + (i32.const 0) + ) + (set_local $23 + (get_local $16) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $10 + (i32.load offset=8 (get_local $1) ) - (block - (i32.store - (get_local $4) - (get_local $8) - ) - (i32.store - (get_local $5) + ) + (get_local $3) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $4 + (i32.add (get_local $10) + (i32.const 12) ) - (set_local $23 + ) + ) + (get_local $1) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add (get_local $8) + (i32.const 8) ) ) - (call $qa) ) + (get_local $1) ) + (block + (i32.store + (get_local $4) + (get_local $8) + ) + (i32.store + (get_local $5) + (get_local $10) + ) + (set_local $23 + (get_local $8) + ) + ) + (call $qa) ) ) + ) + (if + (get_local $0) (block $do-once8 (if - (get_local $0) - (block - (if - (i32.eq - (get_local $1) - (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $8 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) + (i32.eq + (get_local $1) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $8 + (i32.load offset=28 + (get_local $1) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) ) - (block - (i32.store - (get_local $3) - (get_local $23) - ) - (if - (i32.eqz - (get_local $23) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $8) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $3) + (get_local $23) + ) + (if + (i32.eqz + (get_local $23) ) (block - (if - (i32.lt_u - (get_local $0) + (i32.store + (i32.const 1212) + (i32.and (i32.load - (i32.const 1224) + (i32.const 1212) ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $0) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $8) ) + (i32.const -1) ) - (get_local $1) - ) - (i32.store - (get_local $8) - (get_local $23) - ) - (i32.store offset=20 - (get_local $0) - (get_local $23) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $23) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $23) - (tee_local $8 - (i32.load - (i32.const 1224) - ) + (get_local $0) + (i32.load + (i32.const 1224) ) ) (call $qa) ) - (i32.store offset=24 - (get_local $23) - (get_local $0) - ) (if - (tee_local $3 - (i32.load offset=16 - (get_local $1) - ) - ) - (if - (i32.lt_u - (get_local $3) - (get_local $8) - ) - (call $qa) - (block - (i32.store offset=16 - (get_local $23) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $23) + (i32.eq + (i32.load + (tee_local $8 + (i32.add + (get_local $0) + (i32.const 16) + ) ) ) + (get_local $1) + ) + (i32.store + (get_local $8) + (get_local $23) + ) + (i32.store offset=20 + (get_local $0) + (get_local $23) ) ) - (if - (tee_local $3 - (i32.load offset=20 - (get_local $1) - ) + (br_if $do-once8 + (i32.eqz + (get_local $23) ) - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store offset=20 - (get_local $23) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $23) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $23) + (tee_local $8 + (i32.load + (i32.const 1224) ) ) ) + (call $qa) ) - ) - (if - (i32.lt_u - (get_local $7) - (i32.const 16) + (i32.store offset=24 + (get_local $23) + (get_local $0) ) - (block - (i32.store offset=4 - (get_local $1) - (i32.or - (tee_local $0 - (i32.add - (get_local $7) - (get_local $2) - ) - ) - (i32.const 3) + (if + (tee_local $3 + (i32.load offset=16 + (get_local $1) ) ) - (i32.store - (tee_local $3 - (i32.add - (i32.add - (get_local $1) - (get_local $0) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $3) + (get_local $8) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $23) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $23) ) ) - (i32.or + ) + ) + (if + (tee_local $3 + (i32.load offset=20 + (get_local $1) + ) + ) + (if + (i32.lt_u + (get_local $3) (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store offset=20 + (get_local $23) (get_local $3) ) - (i32.const 1) + (i32.store offset=24 + (get_local $3) + (get_local $23) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $1) + (i32.or + (tee_local $0 + (i32.add + (get_local $7) + (get_local $2) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $6) - (i32.or - (get_local $7) - (i32.const 1) + ) + (i32.store + (tee_local $3 + (i32.add + (i32.add + (get_local $1) + (get_local $0) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $6) - (get_local $7) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $6) + (i32.or (get_local $7) + (i32.const 1) ) - (if - (tee_local $3 + ) + (i32.store + (i32.add + (get_local $6) + (get_local $7) + ) + (get_local $7) + ) + (if + (tee_local $3 + (i32.load + (i32.const 1216) + ) + ) + (block + (set_local $0 (i32.load - (i32.const 1216) + (i32.const 1228) ) ) - (block - (set_local $0 - (i32.load - (i32.const 1228) + (set_local $3 + (i32.add + (i32.shl + (tee_local $8 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 1248) ) - (set_local $3 - (i32.add + ) + (if + (i32.and + (tee_local $10 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $5 (i32.shl - (tee_local $8 - (i32.shr_u - (get_local $3) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $8) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $10 (i32.load - (i32.const 1208) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $8) - ) - ) - ) - (if - (i32.lt_u - (tee_local $10 - (i32.load - (tee_local $5 - (i32.add - (get_local $3) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $3) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $41 - (get_local $5) - ) - (set_local $27 - (get_local $10) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $10) - (get_local $5) - ) - ) (set_local $41 - (i32.add - (get_local $3) - (i32.const 8) - ) + (get_local $5) ) (set_local $27 - (get_local $3) + (get_local $10) ) ) ) - (i32.store - (get_local $41) - (get_local $0) - ) - (i32.store offset=12 - (get_local $27) - (get_local $0) - ) - (i32.store offset=8 - (get_local $0) - (get_local $27) - ) - (i32.store offset=12 - (get_local $0) - (get_local $3) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $10) + (get_local $5) + ) + ) + (set_local $41 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + (set_local $27 + (get_local $3) + ) ) ) - ) - (i32.store - (i32.const 1216) - (get_local $7) - ) - (i32.store - (i32.const 1228) - (get_local $6) + (i32.store + (get_local $41) + (get_local $0) + ) + (i32.store offset=12 + (get_local $27) + (get_local $0) + ) + (i32.store offset=8 + (get_local $0) + (get_local $27) + ) + (i32.store offset=12 + (get_local $0) + (get_local $3) + ) ) ) - ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $1) - (i32.const 8) + (i32.store + (i32.const 1216) + (get_local $7) + ) + (i32.store + (i32.const 1228) + (get_local $6) ) ) ) - (get_local $2) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $1) + (i32.const 8) + ) + ) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) - (if (result i32) - (i32.gt_u - (get_local $0) - (i32.const -65) - ) - (i32.const -1) - (block (result i32) - (set_local $0 - (i32.and - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 11) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const -65) + ) + (i32.const -1) + (block $do-once (result i32) + (set_local $0 + (i32.and + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 11) ) - (i32.const -8) ) + (i32.const -8) ) - (if (result i32) - (tee_local $10 - (i32.load - (i32.const 1212) - ) + ) + (if (result i32) + (tee_local $10 + (i32.load + (i32.const 1212) ) - (block (result i32) - (set_local $5 - (i32.sub - (i32.const 0) - (get_local $0) - ) + ) + (block (result i32) + (set_local $5 + (i32.sub + (i32.const 0) + (get_local $0) ) - (block $label$break$a - (if - (tee_local $13 - (i32.load - (i32.add - (i32.shl - (tee_local $27 - (if (result i32) - (tee_local $8 + ) + (if + (tee_local $13 + (i32.load + (i32.add + (i32.shl + (tee_local $27 + (if (result i32) + (tee_local $8 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u - (get_local $3) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u (get_local $0) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $0) + (i32.add + (tee_local $13 (i32.add - (tee_local $13 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $8 - (i32.and - (i32.shr_u - (i32.add - (tee_local $4 - (i32.shl - (get_local $8) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $8) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $8 + (i32.and + (i32.shr_u + (i32.add + (tee_local $4 + (i32.shl + (get_local $8) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $8) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $3) + (i32.const 4) ) - (tee_local $4 - (i32.and - (i32.shr_u - (i32.add - (tee_local $16 - (i32.shl - (get_local $4) - (get_local $8) - ) - ) - (i32.const 245760) + ) + (get_local $3) + ) + (tee_local $4 + (i32.and + (i32.shr_u + (i32.add + (tee_local $16 + (i32.shl + (get_local $4) + (get_local $8) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $16) - (get_local $4) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $16) + (get_local $4) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $13) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $13) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) - (block - (set_local $4 - (get_local $5) - ) - (set_local $16 + ) + ) + (block $label$break$a + (set_local $4 + (get_local $5) + ) + (set_local $16 + (i32.const 0) + ) + (set_local $3 + (i32.shl + (get_local $0) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $27) + (i32.const 1) + ) + ) + (i32.eq + (get_local $27) + (i32.const 31) + ) ) - (set_local $3 - (i32.shl - (get_local $0) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $27) - (i32.const 1) + ) + ) + (set_local $8 + (get_local $13) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $13 + (i32.sub + (tee_local $2 + (i32.and + (i32.load offset=4 + (get_local $8) + ) + (i32.const -8) ) ) - (i32.eq - (get_local $27) - (i32.const 31) - ) + (get_local $0) ) ) + (get_local $4) ) - (set_local $8 - (get_local $13) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $13 - (i32.sub - (tee_local $2 - (i32.and - (i32.load offset=4 - (get_local $8) - ) - (i32.const -8) - ) - ) - (get_local $0) - ) + (set_local $4 + (if (result i32) + (i32.eq + (get_local $2) + (get_local $0) + ) + (block + (set_local $29 + (get_local $13) ) - (get_local $4) + (set_local $28 + (get_local $8) + ) + (set_local $32 + (get_local $8) + ) + (set_local $8 + (i32.const 90) + ) + (br $label$break$a) ) - (set_local $4 - (if (result i32) - (i32.eq - (get_local $2) - (get_local $0) - ) - (block - (set_local $29 - (get_local $13) - ) - (set_local $28 - (get_local $8) - ) - (set_local $32 - (get_local $8) - ) - (set_local $8 - (i32.const 90) - ) - (br $label$break$a) - ) - (block (result i32) - (set_local $9 - (get_local $8) - ) - (get_local $13) - ) + (block (result i32) + (set_local $9 + (get_local $8) ) + (get_local $13) ) ) - (set_local $2 - (select - (get_local $16) - (tee_local $13 - (i32.load offset=20 - (get_local $8) - ) - ) - (i32.or - (i32.eqz - (get_local $13) - ) - (i32.eq - (get_local $13) - (tee_local $8 - (i32.load - (i32.add - (i32.add - (get_local $8) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $3) - (i32.const 31) - ) - (i32.const 2) - ) + ) + ) + (set_local $2 + (select + (get_local $16) + (tee_local $13 + (i32.load offset=20 + (get_local $8) + ) + ) + (i32.or + (i32.eqz + (get_local $13) + ) + (i32.eq + (get_local $13) + (tee_local $8 + (i32.load + (i32.add + (i32.add + (get_local $8) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $3) + (i32.const 31) ) + (i32.const 2) ) ) ) ) ) ) - (set_local $6 - (if (result i32) - (tee_local $13 - (i32.eqz - (get_local $8) - ) - ) - (block (result i32) - (set_local $36 - (get_local $4) - ) - (set_local $33 - (get_local $9) - ) - (set_local $8 - (i32.const 86) - ) - (get_local $2) - ) - (block - (set_local $16 - (get_local $2) - ) - (set_local $3 - (i32.shl - (get_local $3) - (i32.xor - (i32.and - (get_local $13) - (i32.const 1) - ) - (i32.const 1) - ) + ) + ) + (set_local $6 + (if (result i32) + (tee_local $13 + (i32.eqz + (get_local $8) + ) + ) + (block (result i32) + (set_local $36 + (get_local $4) + ) + (set_local $33 + (get_local $9) + ) + (set_local $8 + (i32.const 86) + ) + (get_local $2) + ) + (block + (set_local $16 + (get_local $2) + ) + (set_local $3 + (i32.shl + (get_local $3) + (i32.xor + (i32.and + (get_local $13) + (i32.const 1) ) + (i32.const 1) ) - (br $while-in14) ) ) + (br $while-in14) ) ) ) - (block - (set_local $36 - (get_local $5) - ) - (set_local $8 - (i32.const 86) - ) - ) ) ) - (if - (i32.eq - (get_local $8) + (block + (set_local $36 + (get_local $5) + ) + (set_local $8 (i32.const 86) ) - (if - (tee_local $2 - (if (result i32) - (i32.or - (get_local $6) - (get_local $33) - ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 86) + ) + (if + (tee_local $2 + (if (result i32) + (i32.or (get_local $6) - (block (result i32) - (drop - (br_if $do-once - (get_local $0) - (i32.eqz - (tee_local $5 - (i32.and - (get_local $10) - (i32.or - (tee_local $13 - (i32.shl - (i32.const 2) - (get_local $27) - ) - ) - (i32.sub - (i32.const 0) - (get_local $13) + (get_local $33) + ) + (get_local $6) + (block (result i32) + (drop + (br_if $do-once + (get_local $0) + (i32.eqz + (tee_local $5 + (i32.and + (get_local $10) + (i32.or + (tee_local $13 + (i32.shl + (i32.const 2) + (get_local $27) ) ) + (i32.sub + (i32.const 0) + (get_local $13) + ) ) ) ) ) ) - (set_local $5 - (i32.and - (i32.shr_u - (tee_local $13 - (i32.add - (i32.and + ) + (set_local $5 + (i32.and + (i32.shr_u + (tee_local $13 + (i32.add + (i32.and + (get_local $5) + (i32.sub + (i32.const 0) (get_local $5) - (i32.sub - (i32.const 0) - (get_local $5) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (i32.load - (i32.add - (i32.shl - (i32.add + ) + (i32.load + (i32.add + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $13 - (i32.and - (i32.shr_u - (tee_local $2 - (i32.shr_u - (get_local $13) - (get_local $5) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $5) - ) - (tee_local $2 + (tee_local $13 (i32.and (i32.shr_u - (tee_local $6 + (tee_local $2 (i32.shr_u - (get_local $2) (get_local $13) + (get_local $5) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $5) ) - (tee_local $6 + (tee_local $2 (i32.and (i32.shr_u - (tee_local $9 + (tee_local $6 (i32.shr_u - (get_local $6) (get_local $2) + (get_local $13) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $9 + (tee_local $6 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $9 (i32.shr_u - (get_local $9) (get_local $6) + (get_local $2) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $3) - (get_local $9) + (tee_local $9 + (i32.and + (i32.shr_u + (tee_local $3 + (i32.shr_u + (get_local $9) + (get_local $6) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $3) + (get_local $9) + ) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) ) ) ) - (block - (set_local $29 - (get_local $36) - ) - (set_local $28 - (get_local $2) - ) - (set_local $32 - (get_local $33) - ) - (set_local $8 - (i32.const 90) - ) + ) + (block + (set_local $29 + (get_local $36) ) - (block - (set_local $18 - (get_local $36) - ) - (set_local $11 - (get_local $33) - ) + (set_local $28 + (get_local $2) + ) + (set_local $32 + (get_local $33) + ) + (set_local $8 + (i32.const 90) + ) + ) + (block + (set_local $18 + (get_local $36) + ) + (set_local $11 + (get_local $33) ) ) ) - (if - (i32.eq - (get_local $8) - (i32.const 90) + ) + (if + (i32.eq + (get_local $8) + (i32.const 90) + ) + (loop $while-in16 + (set_local $8 + (i32.const 0) ) - (loop $while-in16 - (set_local $8 - (i32.const 0) - ) - (set_local $3 - (i32.lt_u - (tee_local $9 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $28) - ) - (i32.const -8) + (set_local $3 + (i32.lt_u + (tee_local $9 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $28) ) - (get_local $0) + (i32.const -8) ) + (get_local $0) ) - (get_local $29) ) + (get_local $29) ) - (set_local $6 - (select - (get_local $9) - (get_local $29) - (get_local $3) - ) + ) + (set_local $6 + (select + (get_local $9) + (get_local $29) + (get_local $3) ) - (set_local $9 - (select + ) + (set_local $9 + (select + (get_local $28) + (get_local $32) + (get_local $3) + ) + ) + (if + (tee_local $3 + (i32.load offset=16 (get_local $28) - (get_local $32) + ) + ) + (block + (set_local $29 + (get_local $6) + ) + (set_local $28 (get_local $3) ) + (set_local $32 + (get_local $9) + ) + (br $while-in16) ) - (if - (tee_local $3 - (i32.load offset=16 + ) + (set_local $18 + (if (result i32) + (tee_local $28 + (i32.load offset=20 (get_local $28) ) ) @@ -1894,922 +1907,895 @@ (set_local $29 (get_local $6) ) - (set_local $28 - (get_local $3) - ) (set_local $32 (get_local $9) ) (br $while-in16) ) - ) - (set_local $18 - (if (result i32) - (tee_local $28 - (i32.load offset=20 - (get_local $28) - ) - ) - (block - (set_local $29 - (get_local $6) - ) - (set_local $32 - (get_local $9) - ) - (br $while-in16) - ) - (block (result i32) - (set_local $11 - (get_local $9) - ) - (get_local $6) + (block (result i32) + (set_local $11 + (get_local $9) ) + (get_local $6) ) ) ) ) + ) + (if (result i32) + (get_local $11) (if (result i32) - (get_local $11) - (if (result i32) - (i32.lt_u - (get_local $18) - (i32.sub - (i32.load - (i32.const 1216) - ) - (get_local $0) + (i32.lt_u + (get_local $18) + (i32.sub + (i32.load + (i32.const 1216) ) + (get_local $0) ) - (block - (if - (i32.lt_u - (get_local $11) - (tee_local $10 - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (tee_local $10 + (i32.load + (i32.const 1224) ) ) - (call $qa) ) - (if - (i32.ge_u - (get_local $11) - (tee_local $9 - (i32.add - (get_local $11) - (get_local $0) - ) + (call $qa) + ) + (if + (i32.ge_u + (get_local $11) + (tee_local $9 + (i32.add + (get_local $11) + (get_local $0) ) ) - (call $qa) ) - (set_local $6 - (i32.load offset=24 - (get_local $11) - ) + (call $qa) + ) + (set_local $6 + (i32.load offset=24 + (get_local $11) ) - (block $do-once17 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $11) - ) - ) + ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 (get_local $11) ) - (block - (set_local $4 - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $11) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $16 - (get_local $5) - ) - (get_local $2) - ) - (if (result i32) - (tee_local $16 - (i32.load - (tee_local $13 - (i32.add - (get_local $11) - (i32.const 16) - ) - ) - ) + ) + (get_local $11) + ) + (block $do-once17 + (set_local $4 + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (get_local $11) + (i32.const 20) ) - (get_local $13) - (br $do-once17) ) ) ) - (loop $while-in20 - (if - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $16) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $5) - ) - (set_local $4 - (get_local $2) - ) - (br $while-in20) - ) + (block (result i32) + (set_local $16 + (get_local $5) ) - (if - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $16) - (i32.const 16) - ) + (get_local $2) + ) + (if (result i32) + (tee_local $16 + (i32.load + (tee_local $13 + (i32.add + (get_local $11) + (i32.const 16) ) ) ) - (block - (set_local $16 - (get_local $5) - ) - (set_local $4 - (get_local $2) + ) + (get_local $13) + (br $do-once17) + ) + ) + ) + (loop $while-in20 + (if + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (get_local $16) + (i32.const 20) ) - (br $while-in20) ) ) ) - (if - (i32.lt_u - (get_local $4) - (get_local $10) + (block + (set_local $16 + (get_local $5) ) - (call $qa) - (block - (i32.store - (get_local $4) - (i32.const 0) - ) - (set_local $22 - (get_local $16) - ) + (set_local $4 + (get_local $2) ) + (br $while-in20) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $5 + (i32.load (tee_local $2 - (i32.load offset=8 - (get_local $11) + (i32.add + (get_local $16) + (i32.const 16) ) ) - (get_local $10) ) - (call $qa) ) - (if - (i32.ne - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 12) - ) - ) - ) - (get_local $11) + (block + (set_local $16 + (get_local $5) ) - (call $qa) + (set_local $4 + (get_local $2) + ) + (br $while-in20) ) - (if - (i32.eq - (i32.load - (tee_local $13 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $4) + (get_local $10) + ) + (call $qa) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $22 + (get_local $16) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $2 + (i32.load offset=8 (get_local $11) ) - (block - (i32.store - (get_local $5) - (get_local $3) - ) - (i32.store - (get_local $13) + ) + (get_local $10) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $5 + (i32.add (get_local $2) + (i32.const 12) ) - (set_local $22 + ) + ) + (get_local $11) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $13 + (i32.add (get_local $3) + (i32.const 8) ) ) - (call $qa) + ) + (get_local $11) + ) + (block + (i32.store + (get_local $5) + (get_local $3) + ) + (i32.store + (get_local $13) + (get_local $2) + ) + (set_local $22 + (get_local $3) ) ) + (call $qa) ) ) + ) + (if + (get_local $6) (block $do-once21 (if - (get_local $6) - (block - (if - (i32.eq - (get_local $11) - (i32.load - (tee_local $10 - (i32.add - (i32.shl - (tee_local $3 - (i32.load offset=28 - (get_local $11) - ) - ) - (i32.const 2) + (i32.eq + (get_local $11) + (i32.load + (tee_local $10 + (i32.add + (i32.shl + (tee_local $3 + (i32.load offset=28 + (get_local $11) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) ) - (block - (i32.store - (get_local $10) - (get_local $22) - ) - (if - (i32.eqz - (get_local $22) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) - ) - ) - ) - (br $do-once21) - ) - ) + ) + ) + (block + (i32.store + (get_local $10) + (get_local $22) + ) + (if + (i32.eqz + (get_local $22) ) (block - (if - (i32.lt_u - (get_local $6) + (i32.store + (i32.const 1212) + (i32.and (i32.load - (i32.const 1224) + (i32.const 1212) ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) - (get_local $11) - ) - (i32.store - (get_local $3) - (get_local $22) - ) - (i32.store offset=20 - (get_local $6) - (get_local $22) - ) - ) - (br_if $do-once21 - (i32.eqz - (get_local $22) ) ) + (br $do-once21) ) ) + ) + (block (if (i32.lt_u - (get_local $22) - (tee_local $3 - (i32.load - (i32.const 1224) - ) + (get_local $6) + (i32.load + (i32.const 1224) ) ) (call $qa) ) - (i32.store offset=24 - (get_local $22) - (get_local $6) - ) (if - (tee_local $10 - (i32.load offset=16 - (get_local $11) - ) - ) - (if - (i32.lt_u - (get_local $10) - (get_local $3) - ) - (call $qa) - (block - (i32.store offset=16 - (get_local $22) - (get_local $10) - ) - (i32.store offset=24 - (get_local $10) - (get_local $22) + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 16) + ) ) ) + (get_local $11) ) - ) - (if - (tee_local $10 - (i32.load offset=20 - (get_local $11) - ) + (i32.store + (get_local $3) + (get_local $22) ) - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store offset=20 - (get_local $22) - (get_local $10) - ) - (i32.store offset=24 - (get_local $10) - (get_local $22) - ) - ) + (i32.store offset=20 + (get_local $6) + (get_local $22) + ) + ) + (br_if $do-once21 + (i32.eqz + (get_local $22) ) ) ) ) - ) - (block $do-once25 (if (i32.lt_u - (get_local $18) - (i32.const 16) + (get_local $22) + (tee_local $3 + (i32.load + (i32.const 1224) + ) + ) ) - (block - (i32.store offset=4 + (call $qa) + ) + (i32.store offset=24 + (get_local $22) + (get_local $6) + ) + (if + (tee_local $10 + (i32.load offset=16 (get_local $11) - (i32.or - (tee_local $6 - (i32.add - (get_local $18) - (get_local $0) - ) - ) - (i32.const 3) - ) ) - (i32.store - (tee_local $10 - (i32.add - (i32.add - (get_local $11) - (get_local $6) - ) - (i32.const 4) - ) + ) + (if + (i32.lt_u + (get_local $10) + (get_local $3) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $22) + (get_local $10) ) - (i32.or - (i32.load - (get_local $10) - ) - (i32.const 1) + (i32.store offset=24 + (get_local $10) + (get_local $22) ) ) ) - (block - (i32.store offset=4 + ) + (if + (tee_local $10 + (i32.load offset=20 (get_local $11) - (i32.or - (get_local $0) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $10) + (i32.load + (i32.const 1224) ) ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $18) - (i32.const 1) + (call $qa) + (block + (i32.store offset=20 + (get_local $22) + (get_local $10) + ) + (i32.store offset=24 + (get_local $10) + (get_local $22) ) ) - (i32.store + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $18) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $11) + (i32.or + (tee_local $6 (i32.add - (get_local $9) (get_local $18) + (get_local $0) ) - (get_local $18) ) - (set_local $10 - (i32.shr_u - (get_local $18) - (i32.const 3) + (i32.const 3) + ) + ) + (i32.store + (tee_local $10 + (i32.add + (i32.add + (get_local $11) + (get_local $6) ) + (i32.const 4) ) - (if - (i32.lt_u - (get_local $18) - (i32.const 256) + ) + (i32.or + (i32.load + (get_local $10) + ) + (i32.const 1) + ) + ) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $11) + (i32.or + (get_local $0) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $18) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $9) + (get_local $18) + ) + (get_local $18) + ) + (set_local $10 + (i32.shr_u + (get_local $18) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $18) + (i32.const 256) + ) + (block + (set_local $6 + (i32.add + (i32.shl + (get_local $10) + (i32.const 3) + ) + (i32.const 1248) ) - (block - (set_local $6 - (i32.add - (i32.shl - (get_local $10) - (i32.const 3) - ) - (i32.const 1248) + ) + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 1208) ) ) - (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 1208) - ) - ) - (tee_local $2 - (i32.shl - (i32.const 1) - (get_local $10) - ) - ) + (tee_local $2 + (i32.shl + (i32.const 1) + (get_local $10) ) - (if - (i32.lt_u - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) + ) + ) + (if + (i32.lt_u + (tee_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $6) + (i32.const 8) ) ) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (set_local $19 - (get_local $2) - ) - (set_local $7 - (get_local $3) - ) ) ) - (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $3) - (get_local $2) - ) - ) - (set_local $19 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) - (set_local $7 - (get_local $6) - ) + (i32.load + (i32.const 1224) ) ) - (i32.store - (get_local $19) - (get_local $9) + (call $qa) + (block + (set_local $19 + (get_local $2) + ) + (set_local $7 + (get_local $3) + ) ) - (i32.store offset=12 - (get_local $7) - (get_local $9) + ) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $3) + (get_local $2) + ) ) - (i32.store offset=8 - (get_local $9) - (get_local $7) + (set_local $19 + (i32.add + (get_local $6) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $9) + (set_local $7 (get_local $6) ) - (br $do-once25) ) ) - (set_local $13 - (i32.add - (i32.shl - (tee_local $3 - (if (result i32) - (tee_local $6 + (i32.store + (get_local $19) + (get_local $9) + ) + (i32.store offset=12 + (get_local $7) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $7) + ) + (i32.store offset=12 + (get_local $9) + (get_local $6) + ) + (br $do-once25) + ) + ) + (set_local $13 + (i32.add + (i32.shl + (tee_local $3 + (if (result i32) + (tee_local $6 + (i32.shr_u + (get_local $18) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $18) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u (get_local $18) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u - (get_local $18) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $18) + (i32.add + (tee_local $13 (i32.add - (tee_local $13 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $6 - (i32.and - (i32.shr_u - (i32.add - (tee_local $2 - (i32.shl - (get_local $6) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $6) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $6 + (i32.and + (i32.shr_u + (i32.add + (tee_local $2 + (i32.shl + (get_local $6) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $6) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $3) + (i32.const 4) ) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (tee_local $10 - (i32.shl - (get_local $2) - (get_local $6) - ) - ) - (i32.const 245760) + ) + (get_local $3) + ) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (tee_local $10 + (i32.shl + (get_local $2) + (get_local $6) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $10) - (get_local $2) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $10) + (get_local $2) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $13) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $13) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 1512) + ) + ) + (i32.store offset=28 + (get_local $9) + (get_local $3) + ) + (i32.store offset=4 + (tee_local $2 + (i32.add (get_local $9) - (get_local $3) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $2 - (i32.add - (get_local $9) - (i32.const 16) + (i32.load + (i32.const 1212) ) ) - (i32.const 0) - ) - (i32.store - (get_local $2) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $2 - (i32.load - (i32.const 1212) - ) - ) - (tee_local $10 - (i32.shl - (i32.const 1) - (get_local $3) - ) - ) + (tee_local $10 + (i32.shl + (i32.const 1) + (get_local $3) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $2) - (get_local $10) - ) - ) - (i32.store - (get_local $13) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $13) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - (br $do-once25) + ) + ) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $2) + (get_local $10) ) ) - (set_local $10 - (i32.shl - (get_local $18) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $3) - (i32.const 1) - ) - ) - (i32.eq - (get_local $3) - (i32.const 31) - ) + (i32.store + (get_local $13) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $13) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + (br $do-once25) + ) + ) + (set_local $10 + (i32.shl + (get_local $18) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $3) + (i32.const 1) ) ) - ) - (set_local $2 - (i32.load - (get_local $13) + (i32.eq + (get_local $3) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $8 - (loop $while-in28 (result i32) - (block $while-out27 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $2) - ) - (i32.const -8) - ) - (get_local $18) - ) - (block - (set_local $17 - (get_local $2) - ) - (br $while-out27 - (i32.const 148) - ) + ) + ) + (set_local $2 + (i32.load + (get_local $13) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in28 (result i32) + (block $while-out27 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $2) ) + (i32.const -8) ) - (if (result i32) - (tee_local $3 - (i32.load - (tee_local $13 - (i32.add - (i32.add - (get_local $2) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $10) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $18) + ) + (block + (set_local $17 + (get_local $2) + ) + (br $while-out27 + (i32.const 148) + ) + ) + ) + (if (result i32) + (tee_local $3 + (i32.load + (tee_local $13 + (i32.add + (i32.add + (get_local $2) + (i32.const 16) ) - ) - ) - (block - (set_local $10 (i32.shl - (get_local $10) - (i32.const 1) + (i32.shr_u + (get_local $10) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $2 - (get_local $3) - ) - (br $while-in28) ) - (block (result i32) - (set_local $21 - (get_local $13) - ) - (set_local $15 - (get_local $2) - ) - (i32.const 145) + ) + ) + (block + (set_local $10 + (i32.shl + (get_local $10) + (i32.const 1) ) ) + (set_local $2 + (get_local $3) + ) + (br $while-in28) + ) + (block (result i32) + (set_local $21 + (get_local $13) + ) + (set_local $15 + (get_local $2) + ) + (i32.const 145) ) ) ) - (i32.const 145) ) - (if - (i32.lt_u - (get_local $21) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store - (get_local $21) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $15) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - ) + ) + (i32.const 145) + ) + (if + (i32.lt_u + (get_local $21) + (i32.load + (i32.const 1224) ) - (if - (i32.eq - (get_local $8) - (i32.const 148) - ) - (if - (i32.and - (i32.ge_u - (tee_local $10 - (i32.load - (tee_local $2 - (i32.add - (get_local $17) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 1224) + ) + (call $qa) + (block + (i32.store + (get_local $21) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $15) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 148) + ) + (if + (i32.and + (i32.ge_u + (tee_local $10 + (i32.load + (tee_local $2 + (i32.add + (get_local $17) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $17) - (get_local $3) - ) ) - (block - (i32.store offset=12 - (get_local $10) - (get_local $9) - ) - (i32.store - (get_local $2) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $10) - ) - (i32.store offset=12 - (get_local $9) - (get_local $17) - ) - (i32.store offset=24 - (get_local $9) - (i32.const 0) + (tee_local $3 + (i32.load + (i32.const 1224) ) ) - (call $qa) + ) + (i32.ge_u + (get_local $17) + (get_local $3) + ) + ) + (block + (i32.store offset=12 + (get_local $10) + (get_local $9) + ) + (i32.store + (get_local $2) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $10) + ) + (i32.store offset=12 + (get_local $9) + (get_local $17) + ) + (i32.store offset=24 + (get_local $9) + (i32.const 0) ) ) + (call $qa) ) ) ) ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $11) - (i32.const 8) - ) + ) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $11) + (i32.const 8) ) ) - (get_local $0) ) (get_local $0) ) + (get_local $0) ) - (get_local $0) ) + (get_local $0) ) ) ) @@ -3106,257 +3092,253 @@ ) ) (block - (block $label$break$c - (if - (tee_local $18 - (i32.load - (i32.const 1232) - ) + (if + (tee_local $18 + (i32.load + (i32.const 1232) ) - (block - (set_local $7 - (i32.const 1656) - ) - (loop $while-in32 - (block $while-out31 - (if - (i32.le_u - (tee_local $3 - (i32.load - (get_local $7) - ) + ) + (block $label$break$c + (set_local $7 + (i32.const 1656) + ) + (loop $while-in32 + (block $while-out31 + (if + (i32.le_u + (tee_local $3 + (i32.load + (get_local $7) ) - (get_local $18) ) - (if - (i32.gt_u - (i32.add - (get_local $3) - (i32.load - (tee_local $19 - (i32.add - (get_local $7) - (i32.const 4) - ) + (get_local $18) + ) + (if + (i32.gt_u + (i32.add + (get_local $3) + (i32.load + (tee_local $19 + (i32.add + (get_local $7) + (i32.const 4) ) ) ) - (get_local $18) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $5 - (get_local $19) - ) - (br $while-out31) ) + (get_local $18) ) - ) - (br_if $while-in32 - (tee_local $7 - (i32.load offset=8 + (block + (set_local $0 (get_local $7) ) + (set_local $5 + (get_local $19) + ) + (br $while-out31) ) ) - (set_local $8 - (i32.const 171) - ) - (br $label$break$c) ) - ) - (if - (i32.lt_u + (br_if $while-in32 (tee_local $7 - (i32.and - (i32.sub - (get_local $11) - (i32.load - (i32.const 1220) - ) - ) - (get_local $21) + (i32.load offset=8 + (get_local $7) ) ) - (i32.const 2147483647) ) - (if - (i32.eq - (tee_local $19 - (call $ta - (get_local $7) - ) - ) - (i32.add - (i32.load - (get_local $0) - ) + (set_local $8 + (i32.const 171) + ) + (br $label$break$c) + ) + ) + (if + (i32.lt_u + (tee_local $7 + (i32.and + (i32.sub + (get_local $11) (i32.load - (get_local $5) + (i32.const 1220) ) ) + (get_local $21) ) - (if - (i32.ne - (get_local $19) - (i32.const -1) + ) + (i32.const 2147483647) + ) + (if + (i32.eq + (tee_local $19 + (call $ta + (get_local $7) ) - (block - (set_local $20 - (get_local $19) - ) - (set_local $26 - (get_local $7) - ) - (br $label$break$b - (i32.const 191) - ) + ) + (i32.add + (i32.load + (get_local $0) ) + (i32.load + (get_local $5) + ) + ) + ) + (if + (i32.ne + (get_local $19) + (i32.const -1) ) (block - (set_local $12 + (set_local $20 (get_local $19) ) - (set_local $1 + (set_local $26 (get_local $7) ) - (set_local $8 - (i32.const 181) + (br $label$break$b + (i32.const 191) ) ) ) + (block + (set_local $12 + (get_local $19) + ) + (set_local $1 + (get_local $7) + ) + (set_local $8 + (i32.const 181) + ) + ) ) ) - (set_local $8 - (i32.const 171) - ) + ) + (set_local $8 + (i32.const 171) ) ) - (block $do-once33 + (if + (i32.eq + (get_local $8) + (i32.const 171) + ) (if - (i32.eq - (get_local $8) - (i32.const 171) - ) - (if - (i32.ne - (tee_local $18 - (call $ta - (i32.const 0) - ) + (i32.ne + (tee_local $18 + (call $ta + (i32.const 0) ) - (i32.const -1) ) - (block - (set_local $2 - (if (result i32) - (i32.and - (tee_local $19 - (i32.add - (tee_local $7 - (i32.load - (i32.const 1684) - ) + (i32.const -1) + ) + (block $do-once33 + (set_local $2 + (if (result i32) + (i32.and + (tee_local $19 + (i32.add + (tee_local $7 + (i32.load + (i32.const 1684) ) - (i32.const -1) ) - ) - (tee_local $0 - (get_local $18) + (i32.const -1) ) ) - (i32.add - (i32.sub - (get_local $14) + (tee_local $0 + (get_local $18) + ) + ) + (i32.add + (i32.sub + (get_local $14) + (get_local $0) + ) + (i32.and + (i32.add + (get_local $19) (get_local $0) ) - (i32.and - (i32.add - (get_local $19) - (get_local $0) - ) - (i32.sub - (i32.const 0) - (get_local $7) - ) + (i32.sub + (i32.const 0) + (get_local $7) ) ) - (get_local $14) ) + (get_local $14) ) - (set_local $0 - (i32.add - (tee_local $7 - (i32.load - (i32.const 1640) - ) + ) + (set_local $0 + (i32.add + (tee_local $7 + (i32.load + (i32.const 1640) ) + ) + (get_local $2) + ) + ) + (if + (i32.and + (i32.gt_u + (get_local $2) + (get_local $6) + ) + (i32.lt_u (get_local $2) + (i32.const 2147483647) ) ) - (if - (i32.and - (i32.gt_u - (get_local $2) - (get_local $6) - ) - (i32.lt_u - (get_local $2) - (i32.const 2147483647) + (block + (if + (tee_local $19 + (i32.load + (i32.const 1648) + ) ) - ) - (block - (if - (tee_local $19 - (i32.load - (i32.const 1648) + (br_if $do-once33 + (i32.or + (i32.le_u + (get_local $0) + (get_local $7) ) - ) - (br_if $do-once33 - (i32.or - (i32.le_u - (get_local $0) - (get_local $7) - ) - (i32.gt_u - (get_local $0) - (get_local $19) - ) + (i32.gt_u + (get_local $0) + (get_local $19) ) ) ) - (set_local $1 - (if (result i32) - (i32.eq - (tee_local $19 - (call $ta - (get_local $2) - ) - ) - (get_local $18) - ) - (block - (set_local $20 - (get_local $18) - ) - (set_local $26 + ) + (set_local $1 + (if (result i32) + (i32.eq + (tee_local $19 + (call $ta (get_local $2) ) - (br $label$break$b - (i32.const 191) - ) ) - (block (result i32) - (set_local $12 - (get_local $19) - ) - (set_local $8 - (i32.const 181) - ) + (get_local $18) + ) + (block + (set_local $20 + (get_local $18) + ) + (set_local $26 (get_local $2) ) + (br $label$break$b + (i32.const 191) + ) + ) + (block (result i32) + (set_local $12 + (get_local $19) + ) + (set_local $8 + (i32.const 181) + ) + (get_local $2) ) ) ) @@ -3365,100 +3347,98 @@ ) ) ) - (block $label$break$d - (if - (i32.eq - (get_local $8) - (i32.const 181) - ) - (block - (set_local $19 - (i32.sub - (i32.const 0) - (get_local $1) - ) + (if + (i32.eq + (get_local $8) + (i32.const 181) + ) + (block $label$break$d + (set_local $19 + (i32.sub + (i32.const 0) + (get_local $1) ) - (set_local $4 - (if (result i32) + ) + (set_local $4 + (if (result i32) + (i32.and + (i32.gt_u + (get_local $15) + (get_local $1) + ) (i32.and - (i32.gt_u - (get_local $15) + (i32.lt_u (get_local $1) + (i32.const 2147483647) ) - (i32.and - (i32.lt_u - (get_local $1) - (i32.const 2147483647) - ) - (i32.ne - (get_local $12) - (i32.const -1) - ) + (i32.ne + (get_local $12) + (i32.const -1) ) ) - (if (result i32) - (i32.lt_u - (tee_local $0 - (i32.and - (i32.add - (i32.sub - (get_local $17) - (get_local $1) - ) - (tee_local $18 - (i32.load - (i32.const 1688) - ) - ) - ) + ) + (if (result i32) + (i32.lt_u + (tee_local $0 + (i32.and + (i32.add (i32.sub - (i32.const 0) - (get_local $18) + (get_local $17) + (get_local $1) + ) + (tee_local $18 + (i32.load + (i32.const 1688) + ) ) ) + (i32.sub + (i32.const 0) + (get_local $18) + ) ) - (i32.const 2147483647) ) - (if (result i32) - (i32.eq - (call $ta - (get_local $0) - ) - (i32.const -1) + (i32.const 2147483647) + ) + (if (result i32) + (i32.eq + (call $ta + (get_local $0) ) - (block - (drop - (call $ta - (get_local $19) - ) + (i32.const -1) + ) + (block + (drop + (call $ta + (get_local $19) ) - (br $label$break$d) - ) - (i32.add - (get_local $0) - (get_local $1) ) + (br $label$break$d) + ) + (i32.add + (get_local $0) + (get_local $1) ) - (get_local $1) ) (get_local $1) ) + (get_local $1) ) - (if - (i32.ne + ) + (if + (i32.ne + (get_local $12) + (i32.const -1) + ) + (block + (set_local $20 (get_local $12) - (i32.const -1) ) - (block - (set_local $20 - (get_local $12) - ) - (set_local $26 - (get_local $4) - ) - (br $label$break$b - (i32.const 191) - ) + (set_local $26 + (get_local $4) + ) + (br $label$break$b + (i32.const 191) ) ) ) @@ -3567,357 +3547,387 @@ (get_local $12) ) ) - (block $do-once38 - (if - (tee_local $12 - (i32.load - (i32.const 1232) - ) + (if + (tee_local $12 + (i32.load + (i32.const 1232) ) - (block - (set_local $1 - (i32.const 1656) - ) - (loop $do-in41 - (block $do-out40 - (if - (i32.eq - (get_local $20) - (i32.add - (tee_local $4 - (i32.load - (get_local $1) - ) + ) + (block $do-once38 + (set_local $1 + (i32.const 1656) + ) + (loop $do-in41 + (block $do-out40 + (if + (i32.eq + (get_local $20) + (i32.add + (tee_local $4 + (i32.load + (get_local $1) ) - (tee_local $17 - (i32.load - (tee_local $14 - (i32.add - (get_local $1) - (i32.const 4) - ) + ) + (tee_local $17 + (i32.load + (tee_local $14 + (i32.add + (get_local $1) + (i32.const 4) ) ) ) ) ) - (block - (set_local $48 - (get_local $4) - ) - (set_local $49 - (get_local $14) - ) - (set_local $50 - (get_local $17) - ) - (set_local $51 - (get_local $1) - ) - (set_local $8 - (i32.const 201) - ) - (br $do-out40) + ) + (block + (set_local $48 + (get_local $4) + ) + (set_local $49 + (get_local $14) + ) + (set_local $50 + (get_local $17) + ) + (set_local $51 + (get_local $1) + ) + (set_local $8 + (i32.const 201) ) + (br $do-out40) ) - (br_if $do-in41 - (tee_local $1 - (i32.load offset=8 - (get_local $1) - ) + ) + (br_if $do-in41 + (tee_local $1 + (i32.load offset=8 + (get_local $1) ) ) ) ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 201) + ) (if - (i32.eq - (get_local $8) - (i32.const 201) + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $51) + ) + (i32.const 8) + ) ) (if - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $51) - ) - (i32.const 8) + (i32.and + (i32.lt_u + (get_local $12) + (get_local $20) + ) + (i32.ge_u + (get_local $12) + (get_local $48) ) ) - (if - (i32.and - (i32.lt_u - (get_local $12) - (get_local $20) - ) - (i32.ge_u - (get_local $12) - (get_local $48) + (block + (i32.store + (get_local $49) + (i32.add + (get_local $50) + (get_local $26) ) ) - (block - (i32.store - (get_local $49) - (i32.add - (get_local $50) - (get_local $26) - ) - ) - (set_local $1 - (i32.add - (get_local $12) - (tee_local $17 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $12) - (i32.const 8) - ) + (set_local $1 + (i32.add + (get_local $12) + (tee_local $17 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $12) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) - (set_local $14 - (i32.add - (i32.sub - (get_local $26) - (get_local $17) - ) - (i32.load - (i32.const 1220) - ) + ) + (set_local $14 + (i32.add + (i32.sub + (get_local $26) + (get_local $17) + ) + (i32.load + (i32.const 1220) ) ) - (i32.store - (i32.const 1232) - (get_local $1) - ) - (i32.store - (i32.const 1220) + ) + (i32.store + (i32.const 1232) + (get_local $1) + ) + (i32.store + (i32.const 1220) + (get_local $14) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $14) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $1) - (i32.or - (get_local $14) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $1) - (get_local $14) - ) - (i32.const 40) - ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) + (get_local $14) ) - (br $do-once38) + (i32.const 40) ) - ) - ) - ) - (set_local $16 - (if (result i32) - (i32.lt_u - (get_local $20) - (tee_local $14 + (i32.store + (i32.const 1236) (i32.load - (i32.const 1224) + (i32.const 1696) ) ) + (br $do-once38) ) - (block (result i32) - (i32.store + ) + ) + ) + (set_local $16 + (if (result i32) + (i32.lt_u + (get_local $20) + (tee_local $14 + (i32.load (i32.const 1224) - (get_local $20) ) - (get_local $20) ) - (get_local $14) ) - ) - (set_local $14 - (i32.add + (block (result i32) + (i32.store + (i32.const 1224) + (get_local $20) + ) (get_local $20) - (get_local $26) ) + (get_local $14) ) - (set_local $1 - (i32.const 1656) + ) + (set_local $14 + (i32.add + (get_local $20) + (get_local $26) ) - (loop $while-in43 - (block $while-out42 - (if - (i32.eq - (i32.load - (get_local $1) - ) - (get_local $14) - ) - (block - (set_local $52 - (get_local $1) - ) - (set_local $42 - (get_local $1) - ) - (set_local $8 - (i32.const 209) - ) - (br $while-out42) + ) + (set_local $1 + (i32.const 1656) + ) + (loop $while-in43 + (block $while-out42 + (if + (i32.eq + (i32.load + (get_local $1) ) + (get_local $14) ) - (br_if $while-in43 - (tee_local $1 - (i32.load offset=8 - (get_local $1) - ) + (block + (set_local $52 + (get_local $1) ) - ) - (set_local $30 - (i32.const 1656) + (set_local $42 + (get_local $1) + ) + (set_local $8 + (i32.const 209) + ) + (br $while-out42) ) ) - ) - (if - (i32.eq - (get_local $8) - (i32.const 209) + (br_if $while-in43 + (tee_local $1 + (i32.load offset=8 + (get_local $1) + ) + ) ) (set_local $30 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $42) - ) - (i32.const 8) + (i32.const 1656) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 209) + ) + (set_local $30 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $42) ) - (i32.const 1656) - (block - (i32.store - (get_local $52) - (get_local $20) - ) - (i32.store - (tee_local $1 - (i32.add - (get_local $42) - (i32.const 4) - ) - ) + (i32.const 8) + ) + (i32.const 1656) + (block + (i32.store + (get_local $52) + (get_local $20) + ) + (i32.store + (tee_local $1 (i32.add - (i32.load - (get_local $1) - ) - (get_local $26) + (get_local $42) + (i32.const 4) ) ) - (set_local $17 - (i32.add - (get_local $20) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $20) - (i32.const 8) - ) + (i32.add + (i32.load + (get_local $1) + ) + (get_local $26) + ) + ) + (set_local $17 + (i32.add + (get_local $20) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) - (set_local $4 - (i32.add - (get_local $14) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $14) - (i32.const 8) - ) + ) + (set_local $4 + (i32.add + (get_local $14) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $14) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) - (set_local $1 - (i32.add + ) + (set_local $1 + (i32.add + (get_local $17) + (get_local $6) + ) + ) + (set_local $15 + (i32.sub + (i32.sub + (get_local $4) (get_local $17) - (get_local $6) ) + (get_local $6) ) - (set_local $15 - (i32.sub - (i32.sub - (get_local $4) - (get_local $17) + ) + (i32.store offset=4 + (get_local $17) + (i32.or + (get_local $6) + (i32.const 3) + ) + ) + (if + (i32.eq + (get_local $4) + (get_local $12) + ) + (block + (i32.store + (i32.const 1220) + (tee_local $2 + (i32.add + (i32.load + (i32.const 1220) + ) + (get_local $15) + ) ) - (get_local $6) ) - ) - (i32.store offset=4 - (get_local $17) - (i32.or - (get_local $6) - (i32.const 3) + (i32.store + (i32.const 1232) + (get_local $1) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $2) + (i32.const 1) + ) ) ) (block $do-once44 (if (i32.eq (get_local $4) - (get_local $12) + (i32.load + (i32.const 1228) + ) ) (block (i32.store - (i32.const 1220) + (i32.const 1216) (tee_local $2 (i32.add (i32.load - (i32.const 1220) + (i32.const 1216) ) (get_local $15) ) ) ) (i32.store - (i32.const 1232) + (i32.const 1228) (get_local $1) ) (i32.store offset=4 @@ -3927,1548 +3937,1622 @@ (i32.const 1) ) ) + (i32.store + (i32.add + (get_local $1) + (get_local $2) + ) + (get_local $2) + ) + (br $do-once44) ) - (block - (if - (i32.eq - (get_local $4) - (i32.load - (i32.const 1228) + ) + (if + (i32.eq + (i32.and + (tee_local $2 + (i32.load offset=4 + (get_local $4) ) ) - (block - (i32.store - (i32.const 1216) - (tee_local $2 - (i32.add - (i32.load - (i32.const 1216) - ) - (get_local $15) - ) - ) - ) - (i32.store - (i32.const 1228) - (get_local $1) - ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $2) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $1) - (get_local $2) - ) - (get_local $2) - ) - (br $do-once44) + (i32.const 3) + ) + (i32.const 1) + ) + (block + (set_local $5 + (i32.and + (get_local $2) + (i32.const -8) ) ) - (if - (i32.eq - (i32.and - (tee_local $2 - (i32.load offset=4 - (get_local $4) - ) - ) - (i32.const 3) - ) - (i32.const 1) + (set_local $0 + (i32.shr_u + (get_local $2) + (i32.const 3) ) - (block - (set_local $5 - (i32.and - (get_local $2) - (i32.const -8) - ) + ) + (block $label$break$e + (if + (i32.lt_u + (get_local $2) + (i32.const 256) ) - (set_local $0 - (i32.shr_u - (get_local $2) - (i32.const 3) + (block + (set_local $11 + (i32.load offset=12 + (get_local $4) + ) ) - ) - (block $label$break$e (if - (i32.lt_u - (get_local $2) - (i32.const 256) - ) - (block - (set_local $11 - (i32.load offset=12 + (i32.ne + (tee_local $21 + (i32.load offset=8 (get_local $4) ) ) - (block $do-once47 - (if - (i32.ne - (tee_local $21 - (i32.load offset=8 - (get_local $4) - ) - ) - (tee_local $19 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 1248) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $21) - (get_local $16) - ) - (call $qa) - ) - (br_if $do-once47 - (i32.eq - (i32.load offset=12 - (get_local $21) - ) - (get_local $4) - ) - ) - (call $qa) + (tee_local $19 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) ) + (i32.const 1248) ) ) + ) + (block $do-once47 (if - (i32.eq - (get_local $11) + (i32.lt_u (get_local $21) + (get_local $16) ) - (block - (i32.store - (i32.const 1208) - (i32.and - (i32.load - (i32.const 1208) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) + (call $qa) + ) + (br_if $do-once47 + (i32.eq + (i32.load offset=12 + (get_local $21) ) - (br $label$break$e) + (get_local $4) ) ) - (block $do-once49 - (if - (i32.eq - (get_local $11) - (get_local $19) - ) - (set_local $43 - (i32.add - (get_local $11) - (i32.const 8) - ) + (call $qa) + ) + ) + (if + (i32.eq + (get_local $11) + (get_local $21) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (i32.load + (i32.const 1208) ) - (block - (if - (i32.lt_u - (get_local $11) - (get_local $16) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 8) - ) - ) - ) - (get_local $4) - ) - (block - (set_local $43 - (get_local $0) - ) - (br $do-once49) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) - (call $qa) + (i32.const -1) ) ) ) - (i32.store offset=12 - (get_local $21) + (br $label$break$e) + ) + ) + (if + (i32.eq + (get_local $11) + (get_local $19) + ) + (set_local $43 + (i32.add (get_local $11) - ) - (i32.store - (get_local $43) - (get_local $21) + (i32.const 8) ) ) - (block - (set_local $19 - (i32.load offset=24 - (get_local $4) + (block $do-once49 + (if + (i32.lt_u + (get_local $11) + (get_local $16) ) + (call $qa) ) - (block $do-once51 - (if - (i32.eq + (if + (i32.eq + (i32.load (tee_local $0 - (i32.load offset=12 - (get_local $4) + (i32.add + (get_local $11) + (i32.const 8) ) ) - (get_local $4) ) - (block - (set_local $0 - (if (result i32) - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (tee_local $18 - (i32.add - (get_local $4) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - (block (result i32) - (set_local $2 - (get_local $3) - ) - (get_local $7) - ) - (if (result i32) - (tee_local $22 - (i32.load - (get_local $18) - ) - ) - (block (result i32) - (set_local $2 - (get_local $22) - ) - (get_local $18) - ) - (br $do-once51) - ) - ) - ) - (loop $while-in54 - (if - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (get_local $2) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $7) - ) - (br $while-in54) - ) - ) - (if - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (get_local $2) - (i32.const 16) - ) + (get_local $4) + ) + (block + (set_local $43 + (get_local $0) + ) + (br $do-once49) + ) + ) + (call $qa) + ) + ) + (i32.store offset=12 + (get_local $21) + (get_local $11) + ) + (i32.store + (get_local $43) + (get_local $21) + ) + ) + (block + (set_local $19 + (i32.load offset=24 + (get_local $4) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $4) + ) + ) + (get_local $4) + ) + (block $do-once51 + (set_local $0 + (if (result i32) + (tee_local $3 + (i32.load + (tee_local $7 + (i32.add + (tee_local $18 + (i32.add + (get_local $4) + (i32.const 16) ) ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $7) - ) - (br $while-in54) - ) - ) - ) - (if - (i32.lt_u - (get_local $0) - (get_local $16) - ) - (call $qa) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $24 - (get_local $2) + (i32.const 4) ) ) ) ) - (block - (if - (i32.lt_u - (tee_local $7 - (i32.load offset=8 - (get_local $4) - ) - ) - (get_local $16) - ) - (call $qa) + (block (result i32) + (set_local $2 + (get_local $3) ) - (if - (i32.ne - (i32.load - (tee_local $3 - (i32.add - (get_local $7) - (i32.const 12) - ) - ) - ) - (get_local $4) + (get_local $7) + ) + (if (result i32) + (tee_local $22 + (i32.load + (get_local $18) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $18 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $4) - ) - (block - (i32.store - (get_local $3) - (get_local $0) - ) - (i32.store - (get_local $18) - (get_local $7) - ) - (set_local $24 - (get_local $0) - ) + (block (result i32) + (set_local $2 + (get_local $22) ) - (call $qa) + (get_local $18) ) + (br $do-once51) ) ) ) - (br_if $label$break$e - (i32.eqz - (get_local $19) - ) - ) - (block $do-once55 + (loop $while-in54 (if - (i32.eq - (get_local $4) + (tee_local $3 (i32.load - (tee_local $21 + (tee_local $7 (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $4) - ) - ) - (i32.const 2) - ) - (i32.const 1512) + (get_local $2) + (i32.const 20) ) ) ) ) (block - (i32.store - (get_local $21) - (get_local $24) + (set_local $2 + (get_local $3) ) - (br_if $do-once55 - (get_local $24) + (set_local $0 + (get_local $7) ) - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) + (br $while-in54) + ) + ) + (if + (tee_local $3 + (i32.load + (tee_local $7 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (br $label$break$e) ) (block - (if - (i32.lt_u - (get_local $19) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $11 - (i32.add - (get_local $19) - (i32.const 16) - ) - ) - ) - (get_local $4) - ) - (i32.store - (get_local $11) - (get_local $24) - ) - (i32.store offset=20 - (get_local $19) - (get_local $24) - ) + (set_local $2 + (get_local $3) ) - (br_if $label$break$e - (i32.eqz - (get_local $24) - ) + (set_local $0 + (get_local $7) ) + (br $while-in54) ) ) ) (if (i32.lt_u - (get_local $24) - (tee_local $0 - (i32.load - (i32.const 1224) + (get_local $0) + (get_local $16) + ) + (call $qa) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $24 + (get_local $2) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $7 + (i32.load offset=8 + (get_local $4) ) ) + (get_local $16) ) (call $qa) ) - (i32.store offset=24 - (get_local $24) - (get_local $19) + (if + (i32.ne + (i32.load + (tee_local $3 + (i32.add + (get_local $7) + (i32.const 12) + ) + ) + ) + (get_local $4) + ) + (call $qa) ) (if - (tee_local $11 + (i32.eq (i32.load - (tee_local $21 + (tee_local $18 (i32.add - (get_local $4) - (i32.const 16) + (get_local $0) + (i32.const 8) ) ) ) + (get_local $4) ) - (if - (i32.lt_u - (get_local $11) + (block + (i32.store + (get_local $3) (get_local $0) ) - (call $qa) - (block - (i32.store offset=16 - (get_local $24) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $24) + (i32.store + (get_local $18) + (get_local $7) + ) + (set_local $24 + (get_local $0) + ) + ) + (call $qa) + ) + ) + ) + (br_if $label$break$e + (i32.eqz + (get_local $19) + ) + ) + (if + (i32.eq + (get_local $4) + (i32.load + (tee_local $21 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $4) + ) + ) + (i32.const 2) ) + (i32.const 1512) ) ) ) - (br_if $label$break$e - (i32.eqz - (tee_local $11 - (i32.load offset=4 - (get_local $21) + ) + (block $do-once55 + (i32.store + (get_local $21) + (get_local $24) + ) + (br_if $do-once55 + (get_local $24) + ) + (i32.store + (i32.const 1212) + (i32.and + (i32.load + (i32.const 1212) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) + (i32.const -1) ) ) ) + (br $label$break$e) + ) + (block (if (i32.lt_u - (get_local $11) + (get_local $19) (i32.load (i32.const 1224) ) ) (call $qa) - (block - (i32.store offset=20 - (get_local $24) - (get_local $11) + ) + (if + (i32.eq + (i32.load + (tee_local $11 + (i32.add + (get_local $19) + (i32.const 16) + ) + ) ) - (i32.store offset=24 - (get_local $11) - (get_local $24) + (get_local $4) + ) + (i32.store + (get_local $11) + (get_local $24) + ) + (i32.store offset=20 + (get_local $19) + (get_local $24) + ) + ) + (br_if $label$break$e + (i32.eqz + (get_local $24) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $24) + (tee_local $0 + (i32.load + (i32.const 1224) + ) + ) + ) + (call $qa) + ) + (i32.store offset=24 + (get_local $24) + (get_local $19) + ) + (if + (tee_local $11 + (i32.load + (tee_local $21 + (i32.add + (get_local $4) + (i32.const 16) ) ) ) ) + (if + (i32.lt_u + (get_local $11) + (get_local $0) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $24) + (get_local $11) + ) + (i32.store offset=24 + (get_local $11) + (get_local $24) + ) + ) + ) ) - ) - (set_local $4 - (i32.add - (get_local $4) - (get_local $5) + (br_if $label$break$e + (i32.eqz + (tee_local $11 + (i32.load offset=4 + (get_local $21) + ) + ) + ) ) - ) - (set_local $15 - (i32.add - (get_local $5) - (get_local $15) + (if + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store offset=20 + (get_local $24) + (get_local $11) + ) + (i32.store offset=24 + (get_local $11) + (get_local $24) + ) + ) ) ) ) ) - (i32.store - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $0) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $15) - (i32.const 1) + (set_local $4 + (i32.add + (get_local $4) + (get_local $5) ) ) - (i32.store + (set_local $15 (i32.add - (get_local $1) + (get_local $5) (get_local $15) ) - (get_local $15) ) - (set_local $0 - (i32.shr_u - (get_local $15) - (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 4) + ) + ) + (i32.and + (i32.load + (get_local $0) + ) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $15) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $1) + (get_local $15) + ) + (get_local $15) + ) + (set_local $0 + (i32.shr_u + (get_local $15) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $15) + (i32.const 256) + ) + (block + (set_local $2 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 1248) ) ) (if - (i32.lt_u - (get_local $15) - (i32.const 256) - ) - (block - (set_local $2 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 1248) + (i32.and + (tee_local $11 + (i32.load + (i32.const 1208) ) ) - (block $do-once59 - (if - (i32.and - (tee_local $11 - (i32.load - (i32.const 1208) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (block - (if - (i32.ge_u - (tee_local $19 - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 1224) - ) - ) - (block - (set_local $44 - (get_local $0) - ) - (set_local $37 - (get_local $19) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) + ) + ) + ) + (block $do-once59 + (if + (i32.ge_u + (tee_local $19 + (i32.load + (tee_local $0 + (i32.add + (get_local $2) + (i32.const 8) ) - (br $do-once59) ) ) - (call $qa) ) - (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $11) - (get_local $0) - ) - ) - (set_local $44 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - (set_local $37 - (get_local $2) - ) + (i32.load + (i32.const 1224) + ) + ) + (block + (set_local $44 + (get_local $0) + ) + (set_local $37 + (get_local $19) ) + (br $do-once59) ) ) + (call $qa) + ) + (block (i32.store - (get_local $44) - (get_local $1) - ) - (i32.store offset=12 - (get_local $37) - (get_local $1) + (i32.const 1208) + (i32.or + (get_local $11) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $1) - (get_local $37) + (set_local $44 + (i32.add + (get_local $2) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $1) + (set_local $37 (get_local $2) ) - (br $do-once44) ) ) - (set_local $0 - (i32.add - (i32.shl - (tee_local $5 - (block $do-once61 (result i32) - (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $15) - (i32.const 8) - ) - ) - (block (result i32) - (drop - (br_if $do-once61 - (i32.const 31) - (i32.gt_u - (get_local $15) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $15) - (i32.add - (tee_local $7 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $19 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $0) - (tee_local $11 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + (i32.store + (get_local $44) + (get_local $1) + ) + (i32.store offset=12 + (get_local $37) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $37) + ) + (i32.store offset=12 + (get_local $1) + (get_local $2) + ) + (br $do-once44) + ) + ) + (set_local $0 + (i32.add + (i32.shl + (tee_local $5 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $15) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $15) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $15) + (i32.add + (tee_local $7 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $19 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $0) + (tee_local $11 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $11) + (i32.const 16) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $0 - (i32.shl - (get_local $5) - (get_local $19) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $11) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $0 + (i32.shl + (get_local $5) + (get_local $19) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $0) - (get_local $5) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $0) + (get_local $5) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $7) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $7) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 1512) + ) + ) + (i32.store offset=28 + (get_local $1) + (get_local $5) + ) + (i32.store offset=4 + (tee_local $2 + (i32.add (get_local $1) - (get_local $5) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $2 - (i32.add - (get_local $1) - (i32.const 16) + (i32.load + (i32.const 1212) ) ) - (i32.const 0) - ) - (i32.store - (get_local $2) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $2 - (i32.load - (i32.const 1212) - ) - ) - (tee_local $7 - (i32.shl - (i32.const 1) - (get_local $5) - ) - ) + (tee_local $7 + (i32.shl + (i32.const 1) + (get_local $5) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $2) - (get_local $7) - ) - ) - (i32.store - (get_local $0) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $0) - ) - (i32.store offset=12 - (get_local $1) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $1) - ) - (br $do-once44) + ) + ) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $2) + (get_local $7) ) ) - (set_local $7 - (i32.shl - (get_local $15) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $5) - (i32.const 1) - ) - ) - (i32.eq - (get_local $5) - (i32.const 31) - ) + (i32.store + (get_local $0) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $0) + ) + (i32.store offset=12 + (get_local $1) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $1) + ) + (br $do-once44) + ) + ) + (set_local $7 + (i32.shl + (get_local $15) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $5) + (i32.const 1) ) ) - ) - (set_local $2 - (i32.load - (get_local $0) + (i32.eq + (get_local $5) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $8 - (loop $while-in64 (result i32) - (block $while-out63 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $2) - ) - (i32.const -8) - ) - (get_local $15) - ) - (block - (set_local $38 - (get_local $2) - ) - (br $while-out63 - (i32.const 279) - ) + ) + ) + (set_local $2 + (i32.load + (get_local $0) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in64 (result i32) + (block $while-out63 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $2) ) + (i32.const -8) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $0 - (i32.add - (i32.add - (get_local $2) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $15) + ) + (block + (set_local $38 + (get_local $2) + ) + (br $while-out63 + (i32.const 279) + ) + ) + ) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $0 + (i32.add + (i32.add + (get_local $2) + (i32.const 16) ) - ) - ) - (block - (set_local $7 (i32.shl - (get_local $7) - (i32.const 1) + (i32.shr_u + (get_local $7) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $2 - (get_local $5) - ) - (br $while-in64) ) - (block (result i32) - (set_local $45 - (get_local $0) - ) - (set_local $53 - (get_local $2) - ) - (i32.const 276) + ) + ) + (block + (set_local $7 + (i32.shl + (get_local $7) + (i32.const 1) ) ) + (set_local $2 + (get_local $5) + ) + (br $while-in64) + ) + (block (result i32) + (set_local $45 + (get_local $0) + ) + (set_local $53 + (get_local $2) + ) + (i32.const 276) ) ) ) - (i32.const 276) ) - (if - (i32.lt_u - (get_local $45) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store - (get_local $45) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $53) - ) - (i32.store offset=12 - (get_local $1) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $1) - ) - ) + ) + (i32.const 276) + ) + (if + (i32.lt_u + (get_local $45) + (i32.load + (i32.const 1224) ) - (if - (i32.eq - (get_local $8) - (i32.const 279) - ) - (if - (i32.and - (i32.ge_u - (tee_local $7 - (i32.load - (tee_local $2 - (i32.add - (get_local $38) - (i32.const 8) - ) - ) - ) - ) - (tee_local $5 - (i32.load - (i32.const 1224) + ) + (call $qa) + (block + (i32.store + (get_local $45) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $53) + ) + (i32.store offset=12 + (get_local $1) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $1) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 279) + ) + (if + (i32.and + (i32.ge_u + (tee_local $7 + (i32.load + (tee_local $2 + (i32.add + (get_local $38) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $38) - (get_local $5) - ) ) - (block - (i32.store offset=12 - (get_local $7) - (get_local $1) - ) - (i32.store - (get_local $2) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $7) - ) - (i32.store offset=12 - (get_local $1) - (get_local $38) - ) - (i32.store offset=24 - (get_local $1) - (i32.const 0) + (tee_local $5 + (i32.load + (i32.const 1224) ) ) - (call $qa) + ) + (i32.ge_u + (get_local $38) + (get_local $5) ) ) + (block + (i32.store offset=12 + (get_local $7) + (get_local $1) + ) + (i32.store + (get_local $2) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $7) + ) + (i32.store offset=12 + (get_local $1) + (get_local $38) + ) + (i32.store offset=24 + (get_local $1) + (i32.const 0) + ) + ) + (call $qa) ) ) ) ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $17) - (i32.const 8) - ) + ) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $17) + (i32.const 8) ) ) ) ) ) - (loop $while-in66 - (block $while-out65 - (if - (i32.le_u - (tee_local $1 - (i32.load - (get_local $30) - ) + ) + (loop $while-in66 + (block $while-out65 + (if + (i32.le_u + (tee_local $1 + (i32.load + (get_local $30) ) - (get_local $12) ) - (if - (i32.gt_u - (tee_local $15 - (i32.add - (get_local $1) - (i32.load offset=4 - (get_local $30) - ) + (get_local $12) + ) + (if + (i32.gt_u + (tee_local $15 + (i32.add + (get_local $1) + (i32.load offset=4 + (get_local $30) ) ) - (get_local $12) ) - (block - (set_local $0 - (get_local $15) - ) - (br $while-out65) + (get_local $12) + ) + (block + (set_local $0 + (get_local $15) ) + (br $while-out65) ) ) - (set_local $30 - (i32.load offset=8 - (get_local $30) - ) + ) + (set_local $30 + (i32.load offset=8 + (get_local $30) ) - (br $while-in66) ) + (br $while-in66) ) - (set_local $15 - (i32.add - (tee_local $17 - (i32.add - (get_local $0) - (i32.const -47) - ) + ) + (set_local $15 + (i32.add + (tee_local $17 + (i32.add + (get_local $0) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $1 - (i32.add - (tee_local $17 - (select - (get_local $12) - (tee_local $1 - (i32.add - (get_local $17) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $15) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $1 + (i32.add + (tee_local $17 + (select + (get_local $12) + (tee_local $1 + (i32.add + (get_local $17) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $15) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $15) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $1) - (tee_local $15 - (i32.add - (get_local $12) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $1) + (tee_local $15 + (i32.add + (get_local $12) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 1232) - (tee_local $4 - (i32.add - (get_local $20) - (tee_local $14 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $20) - (i32.const 8) - ) + ) + (i32.store + (i32.const 1232) + (tee_local $4 + (i32.add + (get_local $20) + (tee_local $14 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 1220) - (tee_local $7 - (i32.sub - (i32.add - (get_local $26) - (i32.const -40) - ) - (get_local $14) - ) - ) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $7) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $7) - ) - (i32.const 40) - ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) - ) - (i32.store - (tee_local $7 + ) + (i32.store + (i32.const 1220) + (tee_local $7 + (i32.sub (i32.add - (get_local $17) - (i32.const 4) + (get_local $26) + (i32.const -40) ) + (get_local $14) ) - (i32.const 27) ) - (i32.store - (get_local $1) - (i32.load - (i32.const 1656) - ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $7) + (i32.const 1) ) - (i32.store offset=4 - (get_local $1) - (i32.load - (i32.const 1660) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $4) + (get_local $7) ) - (i32.store offset=8 - (get_local $1) - (i32.load - (i32.const 1664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 1236) + (i32.load + (i32.const 1696) ) - (i32.store offset=12 - (get_local $1) - (i32.load - (i32.const 1668) + ) + (i32.store + (tee_local $7 + (i32.add + (get_local $17) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $1) + (i32.load (i32.const 1656) - (get_local $20) ) - (i32.store + ) + (i32.store offset=4 + (get_local $1) + (i32.load (i32.const 1660) - (get_local $26) ) - (i32.store + ) + (i32.store offset=8 + (get_local $1) + (i32.load + (i32.const 1664) + ) + ) + (i32.store offset=12 + (get_local $1) + (i32.load (i32.const 1668) - (i32.const 0) ) + ) + (i32.store + (i32.const 1656) + (get_local $20) + ) + (i32.store + (i32.const 1660) + (get_local $26) + ) + (i32.store + (i32.const 1668) + (i32.const 0) + ) + (i32.store + (i32.const 1664) + (get_local $1) + ) + (set_local $1 + (i32.add + (get_local $17) + (i32.const 24) + ) + ) + (loop $do-in68 (i32.store - (i32.const 1664) - (get_local $1) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $1 - (i32.add - (get_local $17) - (i32.const 24) + (br_if $do-in68 + (i32.lt_u + (i32.add + (get_local $1) + (i32.const 4) + ) + (get_local $0) ) ) - (loop $do-in68 + ) + (if + (i32.ne + (get_local $17) + (get_local $12) + ) + (block (i32.store - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 4) + (get_local $7) + (i32.and + (i32.load + (get_local $7) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $do-in68 - (i32.lt_u - (i32.add - (get_local $1) - (i32.const 4) + (i32.store offset=4 + (get_local $12) + (i32.or + (tee_local $1 + (i32.sub + (get_local $17) + (get_local $12) + ) ) - (get_local $0) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $17) - (get_local $12) + (get_local $1) ) - (block - (i32.store - (get_local $7) - (i32.and - (i32.load - (get_local $7) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $12) - (i32.or - (tee_local $1 - (i32.sub - (get_local $17) - (get_local $12) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $17) + (set_local $4 + (i32.shr_u (get_local $1) + (i32.const 3) ) - (set_local $4 - (i32.shr_u - (get_local $1) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $1) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $1) - (i32.const 256) + (block + (set_local $14 + (i32.add + (i32.shl + (get_local $4) + (i32.const 3) + ) + (i32.const 1248) + ) ) - (block - (set_local $14 - (i32.add + (if + (i32.and + (tee_local $2 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $5 (i32.shl + (i32.const 1) (get_local $4) - (i32.const 3) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $2 (i32.load - (i32.const 1208) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $4) - ) - ) - ) - (if - (i32.lt_u - (tee_local $2 - (i32.load - (tee_local $5 - (i32.add - (get_local $14) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $14) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $46 - (get_local $5) - ) - (set_local $39 - (get_local $2) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $2) - (get_local $5) - ) - ) (set_local $46 - (i32.add - (get_local $14) - (i32.const 8) - ) + (get_local $5) ) (set_local $39 - (get_local $14) + (get_local $2) ) ) ) - (i32.store - (get_local $46) - (get_local $12) - ) - (i32.store offset=12 - (get_local $39) - (get_local $12) - ) - (i32.store offset=8 - (get_local $12) - (get_local $39) - ) - (i32.store offset=12 - (get_local $12) - (get_local $14) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $2) + (get_local $5) + ) + ) + (set_local $46 + (i32.add + (get_local $14) + (i32.const 8) + ) + ) + (set_local $39 + (get_local $14) + ) ) - (br $do-once38) ) + (i32.store + (get_local $46) + (get_local $12) + ) + (i32.store offset=12 + (get_local $39) + (get_local $12) + ) + (i32.store offset=8 + (get_local $12) + (get_local $39) + ) + (i32.store offset=12 + (get_local $12) + (get_local $14) + ) + (br $do-once38) ) - (set_local $0 - (i32.add - (i32.shl - (tee_local $2 + ) + (set_local $0 + (i32.add + (i32.shl + (tee_local $2 + (if (result i32) + (tee_local $14 + (i32.shr_u + (get_local $1) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $14 - (i32.shr_u - (get_local $1) - (i32.const 8) - ) + (i32.gt_u + (get_local $1) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $1) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $14 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $14) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $14) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $14 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $14) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $14) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $2) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $4 - (i32.shl - (get_local $5) - (get_local $14) - ) + (get_local $2) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $4 + (i32.shl + (get_local $5) + (get_local $14) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $4) - (get_local $5) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $4) + (get_local $5) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) - (i32.store offset=28 - (get_local $12) - (get_local $2) + ) + (i32.store offset=28 + (get_local $12) + (get_local $2) + ) + (i32.store offset=20 + (get_local $12) + (i32.const 0) + ) + (i32.store + (get_local $15) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $5 + (i32.load + (i32.const 1212) + ) + ) + (tee_local $4 + (i32.shl + (i32.const 1) + (get_local $2) + ) + ) + ) ) - (i32.store offset=20 - (get_local $12) - (i32.const 0) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $5) + (get_local $4) + ) + ) + (i32.store + (get_local $0) + (get_local $12) + ) + (i32.store offset=24 + (get_local $12) + (get_local $0) + ) + (i32.store offset=12 + (get_local $12) + (get_local $12) + ) + (i32.store offset=8 + (get_local $12) + (get_local $12) + ) + (br $do-once38) ) - (i32.store - (get_local $15) - (i32.const 0) + ) + (set_local $4 + (i32.shl + (get_local $1) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $2) + (i32.const 1) + ) + ) + (i32.eq + (get_local $2) + (i32.const 31) + ) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $5 - (i32.load - (i32.const 1212) + ) + (set_local $5 + (i32.load + (get_local $0) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in70 (result i32) + (block $while-out69 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $5) + ) + (i32.const -8) + ) + (get_local $1) + ) + (block + (set_local $31 + (get_local $5) + ) + (br $while-out69 + (i32.const 305) + ) + ) ) - ) - (tee_local $4 - (i32.shl - (i32.const 1) - (get_local $2) + (if (result i32) + (tee_local $2 + (i32.load + (tee_local $0 + (i32.add + (i32.add + (get_local $5) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $4) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $4 + (i32.shl + (get_local $4) + (i32.const 1) + ) + ) + (set_local $5 + (get_local $2) + ) + (br $while-in70) + ) + (block (result i32) + (set_local $47 + (get_local $0) + ) + (set_local $54 + (get_local $5) + ) + (i32.const 302) + ) ) ) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $5) - (get_local $4) - ) + (i32.const 302) + ) + (if + (i32.lt_u + (get_local $47) + (i32.load + (i32.const 1224) ) + ) + (call $qa) + (block (i32.store - (get_local $0) + (get_local $47) (get_local $12) ) (i32.store offset=24 (get_local $12) - (get_local $0) + (get_local $54) ) (i32.store offset=12 (get_local $12) @@ -5478,323 +5562,199 @@ (get_local $12) (get_local $12) ) - (br $do-once38) - ) - ) - (set_local $4 - (i32.shl - (get_local $1) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $2) - (i32.const 1) - ) - ) - (i32.eq - (get_local $2) - (i32.const 31) - ) - ) - ) - ) - (set_local $5 - (i32.load - (get_local $0) ) ) (if (i32.eq - (tee_local $8 - (loop $while-in70 (result i32) - (block $while-out69 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $5) - ) - (i32.const -8) - ) - (get_local $1) - ) - (block - (set_local $31 - (get_local $5) - ) - (br $while-out69 - (i32.const 305) + (get_local $8) + (i32.const 305) + ) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $5 + (i32.add + (get_local $31) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $2 - (i32.load - (tee_local $0 - (i32.add - (i32.add - (get_local $5) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $4) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $4 - (i32.shl - (get_local $4) - (i32.const 1) - ) - ) - (set_local $5 - (get_local $2) - ) - (br $while-in70) - ) - (block (result i32) - (set_local $47 - (get_local $0) - ) - (set_local $54 - (get_local $5) - ) - (i32.const 302) - ) + ) + (tee_local $1 + (i32.load + (i32.const 1224) ) ) ) - ) - (i32.const 302) - ) - (if - (i32.lt_u - (get_local $47) - (i32.load - (i32.const 1224) + (i32.ge_u + (get_local $31) + (get_local $1) ) ) - (call $qa) (block + (i32.store offset=12 + (get_local $4) + (get_local $12) + ) (i32.store - (get_local $47) + (get_local $5) (get_local $12) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $12) - (get_local $54) + (get_local $4) ) (i32.store offset=12 (get_local $12) - (get_local $12) + (get_local $31) ) - (i32.store offset=8 - (get_local $12) + (i32.store offset=24 (get_local $12) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $8) - (i32.const 305) - ) - (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $5 - (i32.add - (get_local $31) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 1224) - ) - ) - ) - (i32.ge_u - (get_local $31) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $4) - (get_local $12) - ) - (i32.store - (get_local $5) - (get_local $12) - ) - (i32.store offset=8 - (get_local $12) - (get_local $4) - ) - (i32.store offset=12 - (get_local $12) - (get_local $31) - ) - (i32.store offset=24 - (get_local $12) - (i32.const 0) - ) - ) - (call $qa) - ) + (call $qa) ) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $4 - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $4 + (i32.load + (i32.const 1224) ) ) - (i32.lt_u - (get_local $20) - (get_local $4) - ) ) - (i32.store - (i32.const 1224) + (i32.lt_u (get_local $20) + (get_local $4) ) ) (i32.store - (i32.const 1656) + (i32.const 1224) (get_local $20) ) - (i32.store - (i32.const 1660) - (get_local $26) - ) - (i32.store - (i32.const 1668) - (i32.const 0) + ) + (i32.store + (i32.const 1656) + (get_local $20) + ) + (i32.store + (i32.const 1660) + (get_local $26) + ) + (i32.store + (i32.const 1668) + (i32.const 0) + ) + (i32.store + (i32.const 1244) + (i32.load + (i32.const 1680) ) - (i32.store - (i32.const 1244) - (i32.load - (i32.const 1680) + ) + (i32.store + (i32.const 1240) + (i32.const -1) + ) + (set_local $4 + (i32.const 0) + ) + (loop $do-in + (i32.store offset=12 + (tee_local $14 + (i32.add + (i32.shl + (get_local $4) + (i32.const 3) + ) + (i32.const 1248) + ) ) + (get_local $14) ) - (i32.store - (i32.const 1240) - (i32.const -1) - ) - (set_local $4 - (i32.const 0) + (i32.store offset=8 + (get_local $14) + (get_local $14) ) - (loop $do-in - (i32.store offset=12 - (tee_local $14 + (br_if $do-in + (i32.ne + (tee_local $4 (i32.add - (i32.shl - (get_local $4) - (i32.const 3) - ) - (i32.const 1248) - ) - ) - (get_local $14) - ) - (i32.store offset=8 - (get_local $14) - (get_local $14) - ) - (br_if $do-in - (i32.ne - (tee_local $4 - (i32.add - (get_local $4) - (i32.const 1) - ) + (get_local $4) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 1232) - (tee_local $4 - (i32.add - (get_local $20) - (tee_local $14 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $20) - (i32.const 8) - ) + ) + (i32.store + (i32.const 1232) + (tee_local $4 + (i32.add + (get_local $20) + (tee_local $14 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 1220) - (tee_local $1 - (i32.sub - (i32.add - (get_local $26) - (i32.const -40) - ) - (get_local $14) + ) + (i32.store + (i32.const 1220) + (tee_local $1 + (i32.sub + (i32.add + (get_local $26) + (i32.const -40) ) + (get_local $14) ) ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $1) - (i32.const 1) - ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $1) + (i32.const 1) ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $1) - ) - (i32.const 40) + ) + (i32.store offset=4 + (i32.add + (get_local $4) + (get_local $1) ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) + (i32.const 40) + ) + (i32.store + (i32.const 1236) + (i32.load + (i32.const 1696) ) ) ) @@ -5949,279 +5909,329 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $4) - (i32.const 1) + (if + (i32.and + (get_local $4) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 + (set_local $7 + (get_local $6) + ) + ) + (block $do-once + (set_local $10 + (i32.load (get_local $1) ) - (set_local $7 - (get_local $6) - ) ) - (block - (set_local $10 - (i32.load - (get_local $1) - ) - ) - (if - (i32.eqz - (get_local $0) - ) - (return) + (if + (i32.eqz + (get_local $0) ) - (set_local $6 - (i32.add - (get_local $10) - (get_local $6) - ) + (return) + ) + (set_local $6 + (i32.add + (get_local $10) + (get_local $6) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub - (get_local $1) - (get_local $10) - ) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (get_local $10) ) - (get_local $14) ) - (call $qa) + (get_local $14) ) - (if - (i32.eq - (get_local $1) - (i32.load - (i32.const 1228) - ) + (call $qa) + ) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 1228) ) - (block - (if - (i32.ne - (i32.and - (tee_local $3 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 4) - ) + ) + (block + (if + (i32.ne + (i32.and + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 4) ) ) ) - (i32.const 3) ) (i32.const 3) ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) - ) - ) - (i32.store - (i32.const 1216) - (get_local $6) + (i32.const 3) ) - (i32.store - (get_local $0) - (i32.and - (get_local $3) - (i32.const -2) + (block + (set_local $2 + (get_local $1) ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or + (set_local $7 (get_local $6) - (i32.const 1) ) + (br $do-once) ) - (i32.store - (i32.add - (get_local $1) - (get_local $6) - ) + ) + (i32.store + (i32.const 1216) + (get_local $6) + ) + (i32.store + (get_local $0) + (i32.and + (get_local $3) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $6) + (i32.const 1) ) - (return) ) - ) - (set_local $3 - (i32.shr_u - (get_local $10) - (i32.const 3) + (i32.store + (i32.add + (get_local $1) + (get_local $6) + ) + (get_local $6) ) + (return) ) - (if - (i32.lt_u - (get_local $10) - (i32.const 256) + ) + (set_local $3 + (i32.shr_u + (get_local $10) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $10) + (i32.const 256) + ) + (block + (set_local $0 + (i32.load offset=12 + (get_local $1) + ) ) - (block - (set_local $0 - (i32.load offset=12 - (get_local $1) + (if + (i32.ne + (tee_local $10 + (i32.load offset=8 + (get_local $1) + ) ) - ) - (if - (i32.ne - (tee_local $10 - (i32.load offset=8 - (get_local $1) + (tee_local $4 + (i32.add + (i32.shl + (get_local $3) + (i32.const 3) ) + (i32.const 1248) ) - (tee_local $4 - (i32.add - (i32.shl - (get_local $3) - (i32.const 3) - ) - (i32.const 1248) - ) + ) + ) + (block + (if + (i32.lt_u + (get_local $10) + (get_local $14) ) + (call $qa) ) - (block - (if - (i32.lt_u + (if + (i32.ne + (i32.load offset=12 (get_local $10) - (get_local $14) - ) - (call $qa) - ) - (if - (i32.ne - (i32.load offset=12 - (get_local $10) - ) - (get_local $1) ) - (call $qa) + (get_local $1) ) + (call $qa) ) ) - (if - (i32.eq - (get_local $0) - (get_local $10) - ) - (block - (i32.store - (i32.const 1208) - (i32.and - (i32.load - (i32.const 1208) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $0) + (get_local $10) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (i32.load + (i32.const 1208) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) ) + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) + (br $do-once) ) - (if - (i32.eq + ) + (if + (i32.eq + (get_local $0) + (get_local $4) + ) + (set_local $9 + (i32.add (get_local $0) - (get_local $4) + (i32.const 8) ) - (set_local $9 - (i32.add + ) + (block + (if + (i32.lt_u (get_local $0) - (i32.const 8) + (get_local $14) ) + (call $qa) ) - (block - (if - (i32.lt_u - (get_local $0) - (get_local $14) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (get_local $1) - ) - (set_local $9 - (get_local $4) ) - (call $qa) + (get_local $1) + ) + (set_local $9 + (get_local $4) ) + (call $qa) ) ) - (i32.store offset=12 - (get_local $10) - (get_local $0) - ) - (i32.store - (get_local $9) - (get_local $10) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) ) - ) - (set_local $10 - (i32.load offset=24 + (i32.store offset=12 + (get_local $10) + (get_local $0) + ) + (i32.store + (get_local $9) + (get_local $10) + ) + (set_local $2 (get_local $1) ) + (set_local $7 + (get_local $6) + ) + (br $do-once) + ) + ) + (set_local $10 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) ) (block $do-once0 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $1) + (tee_local $9 + (i32.load + (tee_local $3 + (i32.add + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) + ) + ) + (i32.const 4) + ) ) ) - (get_local $1) ) (block - (if + (set_local $0 + (get_local $9) + ) + (set_local $4 + (get_local $3) + ) + ) + (br_if $do-once0 + (i32.eqz + (tee_local $0 + (i32.load + (get_local $4) + ) + ) + ) + ) + ) + (loop $while-in + (if + (tee_local $9 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 20) + ) + ) + ) + ) + (block + (set_local $0 + (get_local $9) + ) + (set_local $4 + (get_local $3) + ) + (br $while-in) + ) + ) + (set_local $3 + (if (result i32) (tee_local $9 (i32.load (tee_local $3 (i32.add - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) + (get_local $0) + (i32.const 16) ) ) ) @@ -6233,322 +6243,260 @@ (set_local $4 (get_local $3) ) + (br $while-in) ) - (br_if $do-once0 - (i32.eqz - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + (block (result i32) + (set_local $12 + (get_local $0) ) + (get_local $4) ) ) - (loop $while-in - (if - (tee_local $9 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $3) + (get_local $14) + ) + (call $qa) + (block + (i32.store + (get_local $3) + (i32.const 0) + ) + (set_local $5 + (get_local $12) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $3 + (i32.load offset=8 + (get_local $1) + ) + ) + (get_local $14) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $9 + (i32.add + (get_local $3) + (i32.const 12) ) - (block - (set_local $0 - (get_local $9) - ) - (set_local $4 - (get_local $3) - ) - (br $while-in) + ) + ) + (get_local $1) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (set_local $3 - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 16) - ) + ) + (get_local $1) + ) + (block + (i32.store + (get_local $9) + (get_local $0) + ) + (i32.store + (get_local $4) + (get_local $3) + ) + (set_local $5 + (get_local $0) + ) + ) + (call $qa) + ) + ) + ) + (if + (get_local $10) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - (block - (set_local $0 - (get_local $9) - ) - (set_local $4 - (get_local $3) - ) - (br $while-in) - ) - (block (result i32) - (set_local $12 - (get_local $0) - ) - (get_local $4) - ) + (i32.const 1512) ) ) ) + ) + (block + (i32.store + (get_local $3) + (get_local $5) + ) (if - (i32.lt_u - (get_local $3) - (get_local $14) + (i32.eqz + (get_local $5) ) - (call $qa) (block (i32.store - (get_local $3) - (i32.const 0) + (i32.const 1212) + (i32.and + (i32.load + (i32.const 1212) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) + ) + (i32.const -1) + ) + ) ) - (set_local $5 - (get_local $12) + (set_local $2 + (get_local $1) ) + (set_local $7 + (get_local $6) + ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $3 - (i32.load offset=8 - (get_local $1) - ) + (get_local $10) + (i32.load + (i32.const 1224) ) - (get_local $14) ) (call $qa) ) (if - (i32.ne + (i32.eq (i32.load - (tee_local $9 + (tee_local $0 (i32.add - (get_local $3) - (i32.const 12) + (get_local $10) + (i32.const 16) ) ) ) (get_local $1) ) - (call $qa) + (i32.store + (get_local $0) + (get_local $5) + ) + (i32.store offset=20 + (get_local $10) + (get_local $5) + ) ) (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $1) + (i32.eqz + (get_local $5) ) (block - (i32.store - (get_local $9) - (get_local $0) - ) - (i32.store - (get_local $4) - (get_local $3) + (set_local $2 + (get_local $1) ) - (set_local $5 - (get_local $0) + (set_local $7 + (get_local $6) ) + (br $do-once) ) - (call $qa) ) ) ) - ) - (if - (get_local $10) - (block - (if - (i32.eq - (get_local $1) + (if + (i32.lt_u + (get_local $5) + (tee_local $0 (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 1512) - ) - ) - ) - ) - (block - (i32.store - (get_local $3) - (get_local $5) - ) - (if - (i32.eqz - (get_local $5) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) - ) + (i32.const 1224) ) ) - (block - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $10) - (i32.const 16) - ) - ) - ) + ) + (call $qa) + ) + (i32.store offset=24 + (get_local $5) + (get_local $10) + ) + (if + (tee_local $4 + (i32.load + (tee_local $3 + (i32.add (get_local $1) - ) - (i32.store - (get_local $0) - (get_local $5) - ) - (i32.store offset=20 - (get_local $10) - (get_local $5) - ) - ) - (if - (i32.eqz - (get_local $5) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) + (i32.const 16) ) ) ) ) (if (i32.lt_u - (get_local $5) - (tee_local $0 - (i32.load - (i32.const 1224) - ) - ) + (get_local $4) + (get_local $0) ) (call $qa) - ) - (i32.store offset=24 - (get_local $5) - (get_local $10) - ) - (if - (tee_local $4 - (i32.load - (tee_local $3 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (if - (i32.lt_u + (block + (i32.store offset=16 + (get_local $5) (get_local $4) - (get_local $0) ) - (call $qa) - (block - (i32.store offset=16 - (get_local $5) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $5) - ) + (i32.store offset=24 + (get_local $4) + (get_local $5) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $3) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $3) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 1224) ) ) - (if - (i32.lt_u + (call $qa) + (block + (i32.store offset=20 + (get_local $5) (get_local $4) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (i32.store offset=20 - (get_local $5) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $5) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) + (i32.store offset=24 + (get_local $4) + (get_local $5) ) - ) - (block (set_local $2 (get_local $1) ) @@ -6557,16 +6505,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) + (block + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) + ) ) ) ) @@ -6862,169 +6818,167 @@ (get_local $8) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $8) - ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 + (get_local $8) ) - (get_local $8) ) - (block - (set_local $7 - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $0 - (i32.add - (tee_local $4 - (i32.add - (get_local $8) - (i32.const 16) - ) + (get_local $8) + ) + (block $do-once6 + (set_local $7 + (if (result i32) + (tee_local $9 + (i32.load + (tee_local $0 + (i32.add + (tee_local $4 + (i32.add + (get_local $8) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $9) - ) - (if (result i32) - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + ) + (block (result i32) + (set_local $4 (get_local $0) - (br $do-once6) ) + (get_local $9) ) - ) - (loop $while-in9 - (if - (tee_local $9 + (if (result i32) + (tee_local $0 (i32.load - (tee_local $0 - (i32.add - (get_local $7) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $7 - (get_local $9) - ) - (set_local $4 - (get_local $0) + (get_local $4) ) - (br $while-in9) ) + (get_local $0) + (br $do-once6) ) - (if - (tee_local $9 - (i32.load - (tee_local $0 - (i32.add - (get_local $7) - (i32.const 16) - ) + ) + ) + (loop $while-in9 + (if + (tee_local $9 + (i32.load + (tee_local $0 + (i32.add + (get_local $7) + (i32.const 20) ) ) ) - (block - (set_local $7 - (get_local $9) - ) - (set_local $4 - (get_local $0) - ) - (br $while-in9) + ) + (block + (set_local $7 + (get_local $9) + ) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $4) + (tee_local $9 (i32.load - (i32.const 1224) + (tee_local $0 + (i32.add + (get_local $7) + (i32.const 16) + ) + ) ) ) - (call $qa) (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $7 + (get_local $9) ) - (set_local $11 - (get_local $7) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $0 - (i32.load offset=8 - (get_local $8) - ) - ) - (i32.load - (i32.const 1224) + (if + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $11 + (get_local $7) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 + (get_local $8) ) ) - (call $qa) + (i32.load + (i32.const 1224) + ) ) - (if - (i32.ne - (i32.load - (tee_local $9 - (i32.add - (get_local $0) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $9 + (i32.add + (get_local $0) + (i32.const 12) ) ) - (get_local $8) ) - (call $qa) + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 8) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 8) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $9) - (get_local $3) - ) - (i32.store - (get_local $4) - (get_local $0) - ) - (set_local $11 - (get_local $3) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $9) + (get_local $3) + ) + (i32.store + (get_local $4) + (get_local $0) + ) + (set_local $11 + (get_local $3) ) - (call $qa) ) + (call $qa) ) ) ) @@ -8115,169 +8069,165 @@ ) ) ) - (block $label$break$a - (if - (i32.eq - (get_local $7) - (i32.const 5) - ) - (block - (if - (i32.lt_u - (i32.sub - (get_local $6) - (tee_local $3 - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 5) + ) + (block $label$break$a + (if + (i32.lt_u + (i32.sub + (get_local $6) + (tee_local $3 + (i32.load + (tee_local $5 + (i32.add + (get_local $2) + (i32.const 20) ) ) ) ) - (get_local $1) ) - (block - (set_local $4 - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 3) + (get_local $1) + ) + (block + (set_local $4 + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 3) ) + (i32.const 2) ) ) - (br $label$break$a) ) + (br $label$break$a) ) - (set_local $4 - (get_local $3) + ) + (set_local $4 + (get_local $3) + ) + (if + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) + ) + (i32.const -1) ) (block $label$break$b - (if - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) - ) - (block - (set_local $3 - (get_local $1) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (if + (i32.eqz + (get_local $3) ) - (loop $while-in - (if - (i32.eqz - (get_local $3) - ) - (block - (set_local $3 - (i32.const 0) - ) - (br $label$break$b) - ) - ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) - ) - ) - ) - (i32.const 10) - ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) - ) + (block + (set_local $3 + (i32.const 0) ) + (br $label$break$b) ) - (if - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) + ) + (if + (i32.ne + (i32.load8_s + (i32.add (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 3) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) - (i32.const 2) ) ) - (get_local $3) - ) - (block - (set_local $4 - (get_local $3) - ) - (br $label$break$a) ) + (i32.const 10) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) - (set_local $0 + ) + ) + (if + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) (i32.add - (get_local $0) - (get_local $3) + (i32.and + (i32.load offset=36 + (get_local $2) + ) + (i32.const 3) + ) + (i32.const 2) ) ) + (get_local $3) + ) + (block (set_local $4 - (i32.load - (get_local $5) - ) + (get_local $3) ) + (br $label$break$a) ) - (set_local $3 - (i32.const 0) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) ) - ) - (drop - (call $jb - (get_local $4) - (get_local $0) - (get_local $1) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) + ) ) - ) - (i32.store - (get_local $5) - (i32.add + (set_local $4 (i32.load (get_local $5) ) - (get_local $1) ) ) - (set_local $4 - (i32.add - (get_local $3) - (get_local $1) + (set_local $3 + (i32.const 0) + ) + ) + (drop + (call $jb + (get_local $4) + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $5) + (i32.add + (i32.load + (get_local $5) ) + (get_local $1) + ) + ) + (set_local $4 + (i32.add + (get_local $3) + (get_local $1) ) ) ) @@ -8290,60 +8240,58 @@ (local $3 i32) (local $4 i32) (local $5 i32) - (block $label$break$a - (if - (i32.and - (tee_local $3 - (get_local $0) - ) - (i32.const 3) + (if + (i32.and + (tee_local $3 + (get_local $0) ) - (block - (set_local $4 - (get_local $3) - ) - (loop $while-in - (if - (i32.eqz - (i32.load8_s - (get_local $0) - ) + (i32.const 3) + ) + (block $label$break$a + (set_local $4 + (get_local $3) + ) + (loop $while-in + (if + (i32.eqz + (i32.load8_s + (get_local $0) ) - (block - (set_local $5 - (get_local $4) - ) - (br $label$break$a) + ) + (block + (set_local $5 + (get_local $4) ) + (br $label$break$a) ) - (br_if $while-in - (i32.and - (tee_local $4 - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + ) + (br_if $while-in + (i32.and + (tee_local $4 + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) - (i32.const 3) ) + (i32.const 3) ) ) - (set_local $2 - (i32.const 4) - ) - (set_local $1 - (get_local $0) - ) ) - (block - (set_local $1 - (get_local $0) - ) - (set_local $2 - (i32.const 4) - ) + (set_local $2 + (i32.const 4) + ) + (set_local $1 + (get_local $0) + ) + ) + (block + (set_local $1 + (get_local $0) + ) + (set_local $2 + (i32.const 4) ) ) ) @@ -8432,102 +8380,100 @@ (local $1 i32) (local $2 i32) (tee_local $1 - (block $do-once (result i32) - (if (result i32) - (get_local $0) - (block (result i32) - (if - (i32.le_s - (i32.load offset=76 - (get_local $0) - ) - (i32.const -1) - ) - (br $do-once - (call $$a - (get_local $0) - ) + (if (result i32) + (get_local $0) + (block $do-once (result i32) + (if + (i32.le_s + (i32.load offset=76 + (get_local $0) ) + (i32.const -1) ) - (call $$a - (get_local $0) + (br $do-once + (call $$a + (get_local $0) + ) ) ) - (block (result i32) - (set_local $0 - (if (result i32) + (call $$a + (get_local $0) + ) + ) + (block (result i32) + (set_local $0 + (if (result i32) + (i32.load + (i32.const 1140) + ) + (call $_a (i32.load (i32.const 1140) ) - (call $_a - (i32.load - (i32.const 1140) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $pa - (i32.const 1188) + ) + (call $pa + (i32.const 1188) + ) + (if + (tee_local $2 + (i32.load + (i32.const 1184) + ) ) - (if - (tee_local $2 - (i32.load - (i32.const 1184) - ) + (block + (set_local $1 + (get_local $2) ) - (block - (set_local $1 - (get_local $2) + (set_local $2 + (get_local $0) + ) + (loop $while-in + (drop + (i32.load offset=76 + (get_local $1) + ) ) - (set_local $2 - (get_local $0) + (set_local $0 + (i32.const 0) ) - (loop $while-in - (drop - (i32.load offset=76 + (if + (i32.gt_u + (i32.load offset=20 + (get_local $1) + ) + (i32.load offset=28 (get_local $1) ) ) - (set_local $0 - (i32.const 0) - ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $1) - ) - (i32.load offset=28 + (set_local $2 + (i32.or + (call $$a (get_local $1) ) - ) - (set_local $2 - (i32.or - (call $$a - (get_local $1) - ) - (get_local $2) - ) + (get_local $2) ) ) - (br_if $while-in - (tee_local $1 - (i32.load offset=56 - (get_local $1) - ) + ) + (br_if $while-in + (tee_local $1 + (i32.load offset=56 + (get_local $1) ) ) ) ) - (set_local $2 - (get_local $0) - ) ) - (call $xa - (i32.const 1188) + (set_local $2 + (get_local $0) ) - (get_local $2) ) + (call $xa + (i32.const 1188) + ) + (get_local $2) ) ) ) @@ -8593,76 +8539,74 @@ ) ) ) - (block $do-once - (if - (i32.eq - (get_local $7) - (i32.const 4) - ) - (block - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 4) + ) + (block $do-once + (if + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (get_local $6) ) - (if - (i32.ne - (tee_local $3 - (i32.const 10) - ) - (i32.load8_s offset=75 - (get_local $0) - ) + (get_local $6) + ) + (if + (i32.ne + (tee_local $3 + (i32.const 10) ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) - ) - (i32.store8 + (i32.load8_s offset=75 + (get_local $0) + ) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) + (i32.const 1) ) - (br $do-once) ) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once) ) ) - (set_local $3 - (if (result i32) - (i32.eq - (call_indirect (type $FUNCSIG$iiii) - (get_local $0) - (get_local $5) - (i32.const 1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $0) - ) - (i32.const 3) + ) + (set_local $3 + (if (result i32) + (i32.eq + (call_indirect (type $FUNCSIG$iiii) + (get_local $0) + (get_local $5) + (i32.const 1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $0) ) - (i32.const 2) + (i32.const 3) ) + (i32.const 2) ) - (i32.const 1) ) - (i32.load8_u - (get_local $5) - ) - (i32.const -1) + (i32.const 1) ) + (i32.load8_u + (get_local $5) + ) + (i32.const -1) ) ) ) @@ -9111,70 +9055,68 @@ (i32.shr_s (i32.shl (tee_local $1 - (block $do-once (result i32) - (if (result i32) - (i32.lt_s - (i32.add - (call $bb + (if (result i32) + (i32.lt_s + (i32.add + (call $bb + (i32.const 1144) + (call $Za (i32.const 1144) - (call $Za - (i32.const 1144) - ) - (get_local $0) ) - (i32.const -1) + (get_local $0) ) - (i32.const 0) + (i32.const -1) ) - (i32.const 1) - (block (result i32) - (if - (i32.ne - (i32.load8_s offset=75 - (get_local $0) - ) - (i32.const 10) + (i32.const 0) + ) + (i32.const 1) + (block $do-once (result i32) + (if + (i32.ne + (i32.load8_s offset=75 + (get_local $0) ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (i32.const 10) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (i32.load offset=16 - (get_local $0) - ) ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) - ) - (i32.store8 + (i32.load offset=16 + (get_local $0) + ) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) - ) - (br $do-once - (i32.const 0) + (i32.const 1) ) ) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once + (i32.const 0) + ) ) ) - (i32.lt_s - (call $ab - (get_local $0) - ) - (i32.const 0) + ) + (i32.lt_s + (call $ab + (get_local $0) ) + (i32.const 0) ) ) ) diff --git a/test/memorygrowth.fromasm.imprecise b/test/memorygrowth.fromasm.imprecise index 25a491209..77af5f25a 100644 --- a/test/memorygrowth.fromasm.imprecise +++ b/test/memorygrowth.fromasm.imprecise @@ -122,1769 +122,1782 @@ (get_local $25) ) (set_local $6 - (block $do-once (result i32) - (if (result i32) - (i32.lt_u - (get_local $0) - (i32.const 245) - ) - (block (result i32) - (if - (i32.and - (tee_local $6 - (i32.shr_u - (tee_local $5 - (i32.load - (i32.const 1208) - ) + (if (result i32) + (i32.lt_u + (get_local $0) + (i32.const 245) + ) + (block (result i32) + (if + (i32.and + (tee_local $6 + (i32.shr_u + (tee_local $5 + (i32.load + (i32.const 1208) ) - (tee_local $0 - (i32.shr_u - (tee_local $2 - (select - (i32.const 16) - (i32.and - (i32.add - (get_local $0) - (i32.const 11) - ) - (i32.const -8) - ) - (i32.lt_u + ) + (tee_local $0 + (i32.shr_u + (tee_local $2 + (select + (i32.const 16) + (i32.and + (i32.add (get_local $0) (i32.const 11) ) + (i32.const -8) + ) + (i32.lt_u + (get_local $0) + (i32.const 11) ) ) - (i32.const 3) ) + (i32.const 3) ) ) ) - (i32.const 3) ) - (block - (set_local $7 - (i32.load - (tee_local $2 - (i32.add - (tee_local $13 - (i32.load - (tee_local $16 - (i32.add - (tee_local $9 - (i32.add - (i32.shl - (tee_local $0 - (i32.add - (i32.xor - (i32.and - (get_local $6) - (i32.const 1) - ) + (i32.const 3) + ) + (block + (set_local $7 + (i32.load + (tee_local $2 + (i32.add + (tee_local $13 + (i32.load + (tee_local $16 + (i32.add + (tee_local $9 + (i32.add + (i32.shl + (tee_local $0 + (i32.add + (i32.xor + (i32.and + (get_local $6) (i32.const 1) ) - (get_local $0) + (i32.const 1) ) + (get_local $0) ) - (i32.const 3) ) - (i32.const 1248) + (i32.const 3) ) + (i32.const 1248) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $9) - (get_local $7) - ) - (i32.store - (i32.const 1208) - (i32.and - (get_local $5) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $9) + (get_local $7) + ) + (i32.store + (i32.const 1208) + (i32.and + (get_local $5) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) + (i32.const -1) ) ) - (block - (if - (i32.lt_u - (get_local $7) - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.lt_u + (get_local $7) + (i32.load + (i32.const 1224) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $7) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $8 + (i32.add + (get_local $7) + (i32.const 12) ) ) - (get_local $13) ) - (block - (i32.store - (get_local $8) - (get_local $9) - ) - (i32.store - (get_local $16) - (get_local $7) - ) + (get_local $13) + ) + (block + (i32.store + (get_local $8) + (get_local $9) + ) + (i32.store + (get_local $16) + (get_local $7) ) - (call $qa) ) + (call $qa) ) ) - (i32.store offset=4 - (get_local $13) - (i32.or - (tee_local $7 - (i32.shl - (get_local $0) - (i32.const 3) - ) + ) + (i32.store offset=4 + (get_local $13) + (i32.or + (tee_local $7 + (i32.shl + (get_local $0) + (i32.const 3) ) - (i32.const 3) ) + (i32.const 3) ) - (i32.store - (tee_local $16 + ) + (i32.store + (tee_local $16 + (i32.add (i32.add - (i32.add - (get_local $13) - (get_local $7) - ) - (i32.const 4) - ) - ) - (i32.or - (i32.load - (get_local $16) + (get_local $13) + (get_local $7) ) - (i32.const 1) + (i32.const 4) ) ) - (set_global $r - (get_local $25) - ) - (return - (get_local $2) + (i32.or + (i32.load + (get_local $16) + ) + (i32.const 1) ) ) - ) - (if (result i32) - (i32.gt_u + (set_global $r + (get_local $25) + ) + (return (get_local $2) - (tee_local $16 - (i32.load - (i32.const 1216) - ) + ) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $2) + (tee_local $16 + (i32.load + (i32.const 1216) ) ) - (block (result i32) - (if - (get_local $6) - (block - (set_local $9 - (i32.and - (i32.shr_u - (tee_local $7 - (i32.add - (i32.and - (tee_local $9 - (i32.and - (i32.shl - (get_local $6) - (get_local $0) - ) - (i32.or - (tee_local $7 - (i32.shl - (i32.const 2) - (get_local $0) - ) - ) - (i32.sub - (i32.const 0) - (get_local $7) + ) + (block (result i32) + (if + (get_local $6) + (block + (set_local $9 + (i32.and + (i32.shr_u + (tee_local $7 + (i32.add + (i32.and + (tee_local $9 + (i32.and + (i32.shl + (get_local $6) + (get_local $0) + ) + (i32.or + (tee_local $7 + (i32.shl + (i32.const 2) + (get_local $0) ) ) + (i32.sub + (i32.const 0) + (get_local $7) + ) ) ) - (i32.sub - (i32.const 0) - (get_local $9) - ) ) - (i32.const -1) + (i32.sub + (i32.const 0) + (get_local $9) + ) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $9 - (i32.load - (tee_local $8 - (i32.add - (tee_local $10 - (i32.load - (tee_local $13 - (i32.add - (tee_local $3 - (i32.add - (i32.shl - (tee_local $4 - (i32.add + ) + (set_local $9 + (i32.load + (tee_local $8 + (i32.add + (tee_local $10 + (i32.load + (tee_local $13 + (i32.add + (tee_local $3 + (i32.add + (i32.shl + (tee_local $4 + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $7 - (i32.and - (i32.shr_u - (tee_local $8 - (i32.shr_u - (get_local $7) - (get_local $9) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $9) - ) - (tee_local $8 + (tee_local $7 (i32.and (i32.shr_u - (tee_local $10 + (tee_local $8 (i32.shr_u - (get_local $8) (get_local $7) + (get_local $9) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $9) ) - (tee_local $10 + (tee_local $8 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $10 (i32.shr_u - (get_local $10) (get_local $8) + (get_local $7) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $3 + (tee_local $10 (i32.and (i32.shr_u - (tee_local $13 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $10) + (get_local $8) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $13) - (get_local $3) + (tee_local $3 + (i32.and + (i32.shr_u + (tee_local $13 + (i32.shr_u + (get_local $3) + (get_local $10) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) + (i32.shr_u + (get_local $13) + (get_local $3) + ) ) - (i32.const 3) ) - (i32.const 1248) + (i32.const 3) ) + (i32.const 1248) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (i32.const 8) ) + (i32.const 8) ) ) ) - (if - (i32.eq - (get_local $3) - (get_local $9) - ) - (block - (i32.store - (i32.const 1208) - (i32.and - (get_local $5) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $4) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $3) + (get_local $9) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (get_local $5) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $4) ) + (i32.const -1) ) ) - (set_local $34 - (get_local $16) - ) ) - (block - (if - (i32.lt_u - (get_local $9) - (i32.load - (i32.const 1224) - ) + (set_local $34 + (get_local $16) + ) + ) + (block + (if + (i32.lt_u + (get_local $9) + (i32.load + (i32.const 1224) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $7 - (i32.add - (get_local $9) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $7 + (i32.add + (get_local $9) + (i32.const 12) ) ) - (get_local $10) ) - (block - (i32.store - (get_local $7) - (get_local $3) - ) - (i32.store - (get_local $13) - (get_local $9) - ) - (set_local $34 - (i32.load - (i32.const 1216) - ) + (get_local $10) + ) + (block + (i32.store + (get_local $7) + (get_local $3) + ) + (i32.store + (get_local $13) + (get_local $9) + ) + (set_local $34 + (i32.load + (i32.const 1216) ) ) - (call $qa) ) + (call $qa) ) ) - (i32.store offset=4 - (get_local $10) - (i32.or + ) + (i32.store offset=4 + (get_local $10) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (tee_local $13 + (i32.add + (get_local $10) (get_local $2) - (i32.const 3) ) ) - (i32.store offset=4 - (tee_local $13 - (i32.add - (get_local $10) - (get_local $2) - ) - ) - (i32.or - (tee_local $9 - (i32.sub - (i32.shl - (get_local $4) - (i32.const 3) - ) - (get_local $2) + (i32.or + (tee_local $9 + (i32.sub + (i32.shl + (get_local $4) + (i32.const 3) ) + (get_local $2) ) - (i32.const 1) ) + (i32.const 1) ) - (i32.store - (i32.add - (get_local $13) - (get_local $9) - ) + ) + (i32.store + (i32.add + (get_local $13) (get_local $9) ) - (if - (get_local $34) - (block - (set_local $3 - (i32.load - (i32.const 1228) + (get_local $9) + ) + (if + (get_local $34) + (block + (set_local $3 + (i32.load + (i32.const 1228) + ) + ) + (set_local $5 + (i32.add + (i32.shl + (tee_local $16 + (i32.shr_u + (get_local $34) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 1248) ) - (set_local $5 - (i32.add + ) + (if + (i32.and + (tee_local $0 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $6 (i32.shl - (tee_local $16 - (i32.shr_u - (get_local $34) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $16) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $0 (i32.load - (i32.const 1208) - ) - ) - (tee_local $6 - (i32.shl - (i32.const 1) - (get_local $16) - ) - ) - ) - (if - (i32.lt_u - (tee_local $0 - (i32.load - (tee_local $6 - (i32.add - (get_local $5) - (i32.const 8) - ) + (tee_local $6 + (i32.add + (get_local $5) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $40 - (get_local $6) - ) - (set_local $35 - (get_local $0) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $0) - (get_local $6) - ) - ) (set_local $40 - (i32.add - (get_local $5) - (i32.const 8) - ) + (get_local $6) ) (set_local $35 - (get_local $5) + (get_local $0) ) ) ) - (i32.store - (get_local $40) - (get_local $3) - ) - (i32.store offset=12 - (get_local $35) - (get_local $3) - ) - (i32.store offset=8 - (get_local $3) - (get_local $35) - ) - (i32.store offset=12 - (get_local $3) - (get_local $5) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $0) + (get_local $6) + ) + ) + (set_local $40 + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + (set_local $35 + (get_local $5) + ) ) ) + (i32.store + (get_local $40) + (get_local $3) + ) + (i32.store offset=12 + (get_local $35) + (get_local $3) + ) + (i32.store offset=8 + (get_local $3) + (get_local $35) + ) + (i32.store offset=12 + (get_local $3) + (get_local $5) + ) ) - (i32.store - (i32.const 1216) - (get_local $9) - ) - (i32.store - (i32.const 1228) - (get_local $13) - ) - (set_global $r - (get_local $25) - ) - (return - (get_local $8) - ) + ) + (i32.store + (i32.const 1216) + (get_local $9) + ) + (i32.store + (i32.const 1228) + (get_local $13) + ) + (set_global $r + (get_local $25) + ) + (return + (get_local $8) ) ) - (if (result i32) - (tee_local $13 - (i32.load - (i32.const 1212) - ) + ) + (if (result i32) + (tee_local $13 + (i32.load + (i32.const 1212) ) - (block - (set_local $13 - (i32.and - (i32.shr_u - (tee_local $9 - (i32.add - (i32.and + ) + (block + (set_local $13 + (i32.and + (i32.shr_u + (tee_local $9 + (i32.add + (i32.and + (get_local $13) + (i32.sub + (i32.const 0) (get_local $13) - (i32.sub - (i32.const 0) - (get_local $13) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (set_local $0 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $16 - (i32.load - (i32.add - (i32.shl - (i32.add + ) + (set_local $0 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $16 + (i32.load + (i32.add + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $9 - (i32.and - (i32.shr_u - (tee_local $5 - (i32.shr_u - (get_local $9) - (get_local $13) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $13) - ) - (tee_local $5 + (tee_local $9 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $5 (i32.shr_u - (get_local $5) (get_local $9) + (get_local $13) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $13) ) - (tee_local $3 + (tee_local $5 (i32.and (i32.shr_u - (tee_local $0 + (tee_local $3 (i32.shr_u - (get_local $3) (get_local $5) + (get_local $9) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $0 + (tee_local $3 (i32.and (i32.shr_u - (tee_local $6 + (tee_local $0 (i32.shr_u - (get_local $0) (get_local $3) + (get_local $5) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $6) - (get_local $0) + (tee_local $0 + (i32.and + (i32.shr_u + (tee_local $6 + (i32.shr_u + (get_local $0) + (get_local $3) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $6) + (get_local $0) + ) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (set_local $3 - (tee_local $6 - (get_local $16) - ) + ) + (set_local $3 + (tee_local $6 + (get_local $16) ) - (loop $while-in - (block $while-out - (set_local $5 - (i32.lt_u - (tee_local $16 - (i32.sub - (i32.and - (i32.load offset=4 - (tee_local $6 + ) + (loop $while-in + (block $while-out + (set_local $5 + (i32.lt_u + (tee_local $16 + (i32.sub + (i32.and + (i32.load offset=4 + (tee_local $6 + (if (result i32) + (tee_local $16 + (i32.load offset=16 + (get_local $6) + ) + ) + (get_local $16) (if (result i32) - (tee_local $16 - (i32.load offset=16 + (tee_local $5 + (i32.load offset=20 (get_local $6) ) ) - (get_local $16) - (if (result i32) - (tee_local $5 - (i32.load offset=20 - (get_local $6) - ) + (get_local $5) + (block + (set_local $7 + (get_local $0) ) - (get_local $5) - (block - (set_local $7 - (get_local $0) - ) - (set_local $1 - (get_local $3) - ) - (br $while-out) + (set_local $1 + (get_local $3) ) + (br $while-out) ) ) ) ) - (i32.const -8) ) - (get_local $2) + (i32.const -8) ) + (get_local $2) ) - (get_local $0) ) + (get_local $0) ) - (set_local $0 - (select - (get_local $16) - (get_local $0) - (get_local $5) - ) + ) + (set_local $0 + (select + (get_local $16) + (get_local $0) + (get_local $5) ) - (set_local $3 - (select - (get_local $6) - (get_local $3) - (get_local $5) - ) + ) + (set_local $3 + (select + (get_local $6) + (get_local $3) + (get_local $5) ) - (br $while-in) ) + (br $while-in) ) - (if - (i32.lt_u - (get_local $1) - (tee_local $3 - (i32.load - (i32.const 1224) - ) + ) + (if + (i32.lt_u + (get_local $1) + (tee_local $3 + (i32.load + (i32.const 1224) ) ) - (call $qa) ) - (if - (i32.ge_u - (get_local $1) - (tee_local $6 - (i32.add - (get_local $1) - (get_local $2) - ) + (call $qa) + ) + (if + (i32.ge_u + (get_local $1) + (tee_local $6 + (i32.add + (get_local $1) + (get_local $2) ) ) - (call $qa) ) - (set_local $0 - (i32.load offset=24 - (get_local $1) + (call $qa) + ) + (set_local $0 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $8 + (i32.load offset=12 + (get_local $1) + ) ) + (get_local $1) ) (block $do-once4 (if - (i32.eq - (tee_local $8 - (i32.load offset=12 - (get_local $1) + (tee_local $4 + (i32.load + (tee_local $10 + (i32.add + (get_local $1) + (i32.const 20) + ) ) ) - (get_local $1) ) (block - (if - (tee_local $4 + (set_local $16 + (get_local $4) + ) + (set_local $5 + (get_local $10) + ) + ) + (br_if $do-once4 + (i32.eqz + (tee_local $16 (i32.load - (tee_local $10 + (tee_local $5 (i32.add (get_local $1) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) - ) - ) - (br_if $do-once4 - (i32.eqz - (tee_local $16 - (i32.load - (tee_local $5 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) + (i32.const 16) ) ) ) ) ) - (loop $while-in7 - (if - (tee_local $4 - (i32.load - (tee_local $10 - (i32.add - (get_local $16) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) - ) - (br $while-in7) - ) - ) - (if - (tee_local $4 - (i32.load - (tee_local $10 - (i32.add - (get_local $16) - (i32.const 16) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $4) - ) - (set_local $5 - (get_local $10) + ) + ) + (loop $while-in7 + (if + (tee_local $4 + (i32.load + (tee_local $10 + (i32.add + (get_local $16) + (i32.const 20) ) - (br $while-in7) ) ) ) - (if - (i32.lt_u - (get_local $5) - (get_local $3) + (block + (set_local $16 + (get_local $4) ) - (call $qa) - (block - (i32.store - (get_local $5) - (i32.const 0) - ) - (set_local $23 - (get_local $16) - ) + (set_local $5 + (get_local $10) ) + (br $while-in7) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $4 + (i32.load (tee_local $10 - (i32.load offset=8 - (get_local $1) + (i32.add + (get_local $16) + (i32.const 16) ) ) - (get_local $3) ) - (call $qa) ) - (if - (i32.ne - (i32.load - (tee_local $4 - (i32.add - (get_local $10) - (i32.const 12) - ) - ) - ) - (get_local $1) + (block + (set_local $16 + (get_local $4) ) - (call $qa) + (set_local $5 + (get_local $10) + ) + (br $while-in7) ) - (if - (i32.eq - (i32.load - (tee_local $5 - (i32.add - (get_local $8) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $5) + (get_local $3) + ) + (call $qa) + (block + (i32.store + (get_local $5) + (i32.const 0) + ) + (set_local $23 + (get_local $16) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $10 + (i32.load offset=8 (get_local $1) ) - (block - (i32.store - (get_local $4) - (get_local $8) - ) - (i32.store - (get_local $5) + ) + (get_local $3) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $4 + (i32.add (get_local $10) + (i32.const 12) ) - (set_local $23 + ) + ) + (get_local $1) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $5 + (i32.add (get_local $8) + (i32.const 8) ) ) - (call $qa) ) + (get_local $1) ) + (block + (i32.store + (get_local $4) + (get_local $8) + ) + (i32.store + (get_local $5) + (get_local $10) + ) + (set_local $23 + (get_local $8) + ) + ) + (call $qa) ) ) + ) + (if + (get_local $0) (block $do-once8 (if - (get_local $0) - (block - (if - (i32.eq - (get_local $1) - (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $8 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) + (i32.eq + (get_local $1) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $8 + (i32.load offset=28 + (get_local $1) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) ) - (block - (i32.store - (get_local $3) - (get_local $23) - ) - (if - (i32.eqz - (get_local $23) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $8) - ) - (i32.const -1) - ) - ) - ) - (br $do-once8) - ) - ) + ) + ) + (block + (i32.store + (get_local $3) + (get_local $23) + ) + (if + (i32.eqz + (get_local $23) ) (block - (if - (i32.lt_u - (get_local $0) + (i32.store + (i32.const 1212) + (i32.and (i32.load - (i32.const 1224) + (i32.const 1212) ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $8 - (i32.add - (get_local $0) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $8) ) + (i32.const -1) ) - (get_local $1) - ) - (i32.store - (get_local $8) - (get_local $23) - ) - (i32.store offset=20 - (get_local $0) - (get_local $23) - ) - ) - (br_if $do-once8 - (i32.eqz - (get_local $23) ) ) + (br $do-once8) ) ) + ) + (block (if (i32.lt_u - (get_local $23) - (tee_local $8 - (i32.load - (i32.const 1224) - ) + (get_local $0) + (i32.load + (i32.const 1224) ) ) (call $qa) ) - (i32.store offset=24 - (get_local $23) - (get_local $0) - ) (if - (tee_local $3 - (i32.load offset=16 - (get_local $1) - ) - ) - (if - (i32.lt_u - (get_local $3) - (get_local $8) - ) - (call $qa) - (block - (i32.store offset=16 - (get_local $23) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $23) + (i32.eq + (i32.load + (tee_local $8 + (i32.add + (get_local $0) + (i32.const 16) + ) ) ) + (get_local $1) + ) + (i32.store + (get_local $8) + (get_local $23) + ) + (i32.store offset=20 + (get_local $0) + (get_local $23) ) ) - (if - (tee_local $3 - (i32.load offset=20 - (get_local $1) - ) + (br_if $do-once8 + (i32.eqz + (get_local $23) ) - (if - (i32.lt_u - (get_local $3) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store offset=20 - (get_local $23) - (get_local $3) - ) - (i32.store offset=24 - (get_local $3) - (get_local $23) - ) - ) + ) + ) + ) + (if + (i32.lt_u + (get_local $23) + (tee_local $8 + (i32.load + (i32.const 1224) ) ) ) + (call $qa) ) - ) - (if - (i32.lt_u - (get_local $7) - (i32.const 16) + (i32.store offset=24 + (get_local $23) + (get_local $0) ) - (block - (i32.store offset=4 - (get_local $1) - (i32.or - (tee_local $0 - (i32.add - (get_local $7) - (get_local $2) - ) - ) - (i32.const 3) + (if + (tee_local $3 + (i32.load offset=16 + (get_local $1) ) ) - (i32.store - (tee_local $3 - (i32.add - (i32.add - (get_local $1) - (get_local $0) - ) - (i32.const 4) + (if + (i32.lt_u + (get_local $3) + (get_local $8) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $23) + (get_local $3) + ) + (i32.store offset=24 + (get_local $3) + (get_local $23) ) ) - (i32.or + ) + ) + (if + (tee_local $3 + (i32.load offset=20 + (get_local $1) + ) + ) + (if + (i32.lt_u + (get_local $3) (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store offset=20 + (get_local $23) (get_local $3) ) - (i32.const 1) + (i32.store offset=24 + (get_local $3) + (get_local $23) + ) ) ) ) - (block - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $2) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $7) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $1) + (i32.or + (tee_local $0 + (i32.add + (get_local $7) + (get_local $2) + ) ) + (i32.const 3) ) - (i32.store offset=4 - (get_local $6) - (i32.or - (get_local $7) - (i32.const 1) + ) + (i32.store + (tee_local $3 + (i32.add + (i32.add + (get_local $1) + (get_local $0) + ) + (i32.const 4) ) ) - (i32.store - (i32.add - (get_local $6) - (get_local $7) + (i32.or + (i32.load + (get_local $3) ) + (i32.const 1) + ) + ) + ) + (block + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $2) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $6) + (i32.or (get_local $7) + (i32.const 1) ) - (if - (tee_local $3 + ) + (i32.store + (i32.add + (get_local $6) + (get_local $7) + ) + (get_local $7) + ) + (if + (tee_local $3 + (i32.load + (i32.const 1216) + ) + ) + (block + (set_local $0 (i32.load - (i32.const 1216) + (i32.const 1228) ) ) - (block - (set_local $0 - (i32.load - (i32.const 1228) + (set_local $3 + (i32.add + (i32.shl + (tee_local $8 + (i32.shr_u + (get_local $3) + (i32.const 3) + ) + ) + (i32.const 3) ) + (i32.const 1248) ) - (set_local $3 - (i32.add + ) + (if + (i32.and + (tee_local $10 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $5 (i32.shl - (tee_local $8 - (i32.shr_u - (get_local $3) - (i32.const 3) - ) - ) - (i32.const 3) + (i32.const 1) + (get_local $8) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $10 (i32.load - (i32.const 1208) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $8) - ) - ) - ) - (if - (i32.lt_u - (tee_local $10 - (i32.load - (tee_local $5 - (i32.add - (get_local $3) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $3) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $41 - (get_local $5) - ) - (set_local $27 - (get_local $10) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $10) - (get_local $5) - ) - ) (set_local $41 - (i32.add - (get_local $3) - (i32.const 8) - ) + (get_local $5) ) (set_local $27 - (get_local $3) + (get_local $10) ) ) ) - (i32.store - (get_local $41) - (get_local $0) - ) - (i32.store offset=12 - (get_local $27) - (get_local $0) - ) - (i32.store offset=8 - (get_local $0) - (get_local $27) - ) - (i32.store offset=12 - (get_local $0) - (get_local $3) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $10) + (get_local $5) + ) + ) + (set_local $41 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + (set_local $27 + (get_local $3) + ) ) ) - ) - (i32.store - (i32.const 1216) - (get_local $7) - ) - (i32.store - (i32.const 1228) - (get_local $6) + (i32.store + (get_local $41) + (get_local $0) + ) + (i32.store offset=12 + (get_local $27) + (get_local $0) + ) + (i32.store offset=8 + (get_local $0) + (get_local $27) + ) + (i32.store offset=12 + (get_local $0) + (get_local $3) + ) ) ) - ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $1) - (i32.const 8) + (i32.store + (i32.const 1216) + (get_local $7) + ) + (i32.store + (i32.const 1228) + (get_local $6) ) ) ) - (get_local $2) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $1) + (i32.const 8) + ) + ) ) + (get_local $2) ) - (get_local $2) ) + (get_local $2) ) - (if (result i32) - (i32.gt_u - (get_local $0) - (i32.const -65) - ) - (i32.const -1) - (block (result i32) - (set_local $0 - (i32.and - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 11) - ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const -65) + ) + (i32.const -1) + (block $do-once (result i32) + (set_local $0 + (i32.and + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 11) ) - (i32.const -8) ) + (i32.const -8) ) - (if (result i32) - (tee_local $10 - (i32.load - (i32.const 1212) - ) + ) + (if (result i32) + (tee_local $10 + (i32.load + (i32.const 1212) ) - (block (result i32) - (set_local $5 - (i32.sub - (i32.const 0) - (get_local $0) - ) + ) + (block (result i32) + (set_local $5 + (i32.sub + (i32.const 0) + (get_local $0) ) - (block $label$break$a - (if - (tee_local $13 - (i32.load - (i32.add - (i32.shl - (tee_local $27 - (if (result i32) - (tee_local $8 + ) + (if + (tee_local $13 + (i32.load + (i32.add + (i32.shl + (tee_local $27 + (if (result i32) + (tee_local $8 + (i32.shr_u + (get_local $3) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $0) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u - (get_local $3) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u (get_local $0) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $0) + (i32.add + (tee_local $13 (i32.add - (tee_local $13 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $8 - (i32.and - (i32.shr_u - (i32.add - (tee_local $4 - (i32.shl - (get_local $8) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $8) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $8 + (i32.and + (i32.shr_u + (i32.add + (tee_local $4 + (i32.shl + (get_local $8) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $8) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $3) + (i32.const 4) ) - (tee_local $4 - (i32.and - (i32.shr_u - (i32.add - (tee_local $16 - (i32.shl - (get_local $4) - (get_local $8) - ) - ) - (i32.const 245760) + ) + (get_local $3) + ) + (tee_local $4 + (i32.and + (i32.shr_u + (i32.add + (tee_local $16 + (i32.shl + (get_local $4) + (get_local $8) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $16) - (get_local $4) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $16) + (get_local $4) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $13) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $13) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) - (block - (set_local $4 - (get_local $5) - ) - (set_local $16 + ) + ) + (block $label$break$a + (set_local $4 + (get_local $5) + ) + (set_local $16 + (i32.const 0) + ) + (set_local $3 + (i32.shl + (get_local $0) + (select (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $27) + (i32.const 1) + ) + ) + (i32.eq + (get_local $27) + (i32.const 31) + ) ) - (set_local $3 - (i32.shl - (get_local $0) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $27) - (i32.const 1) + ) + ) + (set_local $8 + (get_local $13) + ) + (loop $while-in14 + (if + (i32.lt_u + (tee_local $13 + (i32.sub + (tee_local $2 + (i32.and + (i32.load offset=4 + (get_local $8) + ) + (i32.const -8) ) ) - (i32.eq - (get_local $27) - (i32.const 31) - ) + (get_local $0) ) ) + (get_local $4) ) - (set_local $8 - (get_local $13) - ) - (loop $while-in14 - (if - (i32.lt_u - (tee_local $13 - (i32.sub - (tee_local $2 - (i32.and - (i32.load offset=4 - (get_local $8) - ) - (i32.const -8) - ) - ) - (get_local $0) - ) + (set_local $4 + (if (result i32) + (i32.eq + (get_local $2) + (get_local $0) + ) + (block + (set_local $29 + (get_local $13) ) - (get_local $4) + (set_local $28 + (get_local $8) + ) + (set_local $32 + (get_local $8) + ) + (set_local $8 + (i32.const 90) + ) + (br $label$break$a) ) - (set_local $4 - (if (result i32) - (i32.eq - (get_local $2) - (get_local $0) - ) - (block - (set_local $29 - (get_local $13) - ) - (set_local $28 - (get_local $8) - ) - (set_local $32 - (get_local $8) - ) - (set_local $8 - (i32.const 90) - ) - (br $label$break$a) - ) - (block (result i32) - (set_local $9 - (get_local $8) - ) - (get_local $13) - ) + (block (result i32) + (set_local $9 + (get_local $8) ) + (get_local $13) ) ) - (set_local $2 - (select - (get_local $16) - (tee_local $13 - (i32.load offset=20 - (get_local $8) - ) - ) - (i32.or - (i32.eqz - (get_local $13) - ) - (i32.eq - (get_local $13) - (tee_local $8 - (i32.load - (i32.add - (i32.add - (get_local $8) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $3) - (i32.const 31) - ) - (i32.const 2) - ) + ) + ) + (set_local $2 + (select + (get_local $16) + (tee_local $13 + (i32.load offset=20 + (get_local $8) + ) + ) + (i32.or + (i32.eqz + (get_local $13) + ) + (i32.eq + (get_local $13) + (tee_local $8 + (i32.load + (i32.add + (i32.add + (get_local $8) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $3) + (i32.const 31) ) + (i32.const 2) ) ) ) ) ) ) - (set_local $6 - (if (result i32) - (tee_local $13 - (i32.eqz - (get_local $8) - ) - ) - (block (result i32) - (set_local $36 - (get_local $4) - ) - (set_local $33 - (get_local $9) - ) - (set_local $8 - (i32.const 86) - ) - (get_local $2) - ) - (block - (set_local $16 - (get_local $2) - ) - (set_local $3 - (i32.shl - (get_local $3) - (i32.xor - (i32.and - (get_local $13) - (i32.const 1) - ) - (i32.const 1) - ) + ) + ) + (set_local $6 + (if (result i32) + (tee_local $13 + (i32.eqz + (get_local $8) + ) + ) + (block (result i32) + (set_local $36 + (get_local $4) + ) + (set_local $33 + (get_local $9) + ) + (set_local $8 + (i32.const 86) + ) + (get_local $2) + ) + (block + (set_local $16 + (get_local $2) + ) + (set_local $3 + (i32.shl + (get_local $3) + (i32.xor + (i32.and + (get_local $13) + (i32.const 1) ) + (i32.const 1) ) - (br $while-in14) ) ) + (br $while-in14) ) ) ) - (block - (set_local $36 - (get_local $5) - ) - (set_local $8 - (i32.const 86) - ) - ) ) ) - (if - (i32.eq - (get_local $8) + (block + (set_local $36 + (get_local $5) + ) + (set_local $8 (i32.const 86) ) - (if - (tee_local $2 - (if (result i32) - (i32.or - (get_local $6) - (get_local $33) - ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 86) + ) + (if + (tee_local $2 + (if (result i32) + (i32.or (get_local $6) - (block (result i32) - (drop - (br_if $do-once - (get_local $0) - (i32.eqz - (tee_local $5 - (i32.and - (get_local $10) - (i32.or - (tee_local $13 - (i32.shl - (i32.const 2) - (get_local $27) - ) - ) - (i32.sub - (i32.const 0) - (get_local $13) + (get_local $33) + ) + (get_local $6) + (block (result i32) + (drop + (br_if $do-once + (get_local $0) + (i32.eqz + (tee_local $5 + (i32.and + (get_local $10) + (i32.or + (tee_local $13 + (i32.shl + (i32.const 2) + (get_local $27) ) ) + (i32.sub + (i32.const 0) + (get_local $13) + ) ) ) ) ) ) - (set_local $5 - (i32.and - (i32.shr_u - (tee_local $13 - (i32.add - (i32.and + ) + (set_local $5 + (i32.and + (i32.shr_u + (tee_local $13 + (i32.add + (i32.and + (get_local $5) + (i32.sub + (i32.const 0) (get_local $5) - (i32.sub - (i32.const 0) - (get_local $5) - ) ) - (i32.const -1) ) + (i32.const -1) ) - (i32.const 12) ) - (i32.const 16) + (i32.const 12) ) + (i32.const 16) ) - (i32.load - (i32.add - (i32.shl - (i32.add + ) + (i32.load + (i32.add + (i32.shl + (i32.add + (i32.or (i32.or (i32.or (i32.or - (i32.or - (tee_local $13 - (i32.and - (i32.shr_u - (tee_local $2 - (i32.shr_u - (get_local $13) - (get_local $5) - ) - ) - (i32.const 5) - ) - (i32.const 8) - ) - ) - (get_local $5) - ) - (tee_local $2 + (tee_local $13 (i32.and (i32.shr_u - (tee_local $6 + (tee_local $2 (i32.shr_u - (get_local $2) (get_local $13) + (get_local $5) ) ) - (i32.const 2) + (i32.const 5) ) - (i32.const 4) + (i32.const 8) ) ) + (get_local $5) ) - (tee_local $6 + (tee_local $2 (i32.and (i32.shr_u - (tee_local $9 + (tee_local $6 (i32.shr_u - (get_local $6) (get_local $2) + (get_local $13) ) ) - (i32.const 1) + (i32.const 2) ) - (i32.const 2) + (i32.const 4) ) ) ) - (tee_local $9 + (tee_local $6 (i32.and (i32.shr_u - (tee_local $3 + (tee_local $9 (i32.shr_u - (get_local $9) (get_local $6) + (get_local $2) ) ) (i32.const 1) ) - (i32.const 1) + (i32.const 2) ) ) ) - (i32.shr_u - (get_local $3) - (get_local $9) + (tee_local $9 + (i32.and + (i32.shr_u + (tee_local $3 + (i32.shr_u + (get_local $9) + (get_local $6) + ) + ) + (i32.const 1) + ) + (i32.const 1) + ) ) ) - (i32.const 2) + (i32.shr_u + (get_local $3) + (get_local $9) + ) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) ) ) ) - (block - (set_local $29 - (get_local $36) - ) - (set_local $28 - (get_local $2) - ) - (set_local $32 - (get_local $33) - ) - (set_local $8 - (i32.const 90) - ) + ) + (block + (set_local $29 + (get_local $36) ) - (block - (set_local $18 - (get_local $36) - ) - (set_local $11 - (get_local $33) - ) + (set_local $28 + (get_local $2) + ) + (set_local $32 + (get_local $33) + ) + (set_local $8 + (i32.const 90) + ) + ) + (block + (set_local $18 + (get_local $36) + ) + (set_local $11 + (get_local $33) ) ) ) - (if - (i32.eq - (get_local $8) - (i32.const 90) + ) + (if + (i32.eq + (get_local $8) + (i32.const 90) + ) + (loop $while-in16 + (set_local $8 + (i32.const 0) ) - (loop $while-in16 - (set_local $8 - (i32.const 0) - ) - (set_local $3 - (i32.lt_u - (tee_local $9 - (i32.sub - (i32.and - (i32.load offset=4 - (get_local $28) - ) - (i32.const -8) + (set_local $3 + (i32.lt_u + (tee_local $9 + (i32.sub + (i32.and + (i32.load offset=4 + (get_local $28) ) - (get_local $0) + (i32.const -8) ) + (get_local $0) ) - (get_local $29) ) + (get_local $29) ) - (set_local $6 - (select - (get_local $9) - (get_local $29) - (get_local $3) - ) + ) + (set_local $6 + (select + (get_local $9) + (get_local $29) + (get_local $3) ) - (set_local $9 - (select + ) + (set_local $9 + (select + (get_local $28) + (get_local $32) + (get_local $3) + ) + ) + (if + (tee_local $3 + (i32.load offset=16 (get_local $28) - (get_local $32) + ) + ) + (block + (set_local $29 + (get_local $6) + ) + (set_local $28 (get_local $3) ) + (set_local $32 + (get_local $9) + ) + (br $while-in16) ) - (if - (tee_local $3 - (i32.load offset=16 + ) + (set_local $18 + (if (result i32) + (tee_local $28 + (i32.load offset=20 (get_local $28) ) ) @@ -1892,922 +1905,895 @@ (set_local $29 (get_local $6) ) - (set_local $28 - (get_local $3) - ) (set_local $32 (get_local $9) ) (br $while-in16) ) - ) - (set_local $18 - (if (result i32) - (tee_local $28 - (i32.load offset=20 - (get_local $28) - ) - ) - (block - (set_local $29 - (get_local $6) - ) - (set_local $32 - (get_local $9) - ) - (br $while-in16) - ) - (block (result i32) - (set_local $11 - (get_local $9) - ) - (get_local $6) + (block (result i32) + (set_local $11 + (get_local $9) ) + (get_local $6) ) ) ) ) + ) + (if (result i32) + (get_local $11) (if (result i32) - (get_local $11) - (if (result i32) - (i32.lt_u - (get_local $18) - (i32.sub - (i32.load - (i32.const 1216) - ) - (get_local $0) + (i32.lt_u + (get_local $18) + (i32.sub + (i32.load + (i32.const 1216) ) + (get_local $0) ) - (block - (if - (i32.lt_u - (get_local $11) - (tee_local $10 - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.lt_u + (get_local $11) + (tee_local $10 + (i32.load + (i32.const 1224) ) ) - (call $qa) ) - (if - (i32.ge_u - (get_local $11) - (tee_local $9 - (i32.add - (get_local $11) - (get_local $0) - ) + (call $qa) + ) + (if + (i32.ge_u + (get_local $11) + (tee_local $9 + (i32.add + (get_local $11) + (get_local $0) ) ) - (call $qa) ) - (set_local $6 - (i32.load offset=24 - (get_local $11) - ) + (call $qa) + ) + (set_local $6 + (i32.load offset=24 + (get_local $11) ) - (block $do-once17 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $11) - ) - ) + ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 (get_local $11) ) - (block - (set_local $4 - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $11) - (i32.const 20) - ) - ) - ) - ) - (block (result i32) - (set_local $16 - (get_local $5) - ) - (get_local $2) - ) - (if (result i32) - (tee_local $16 - (i32.load - (tee_local $13 - (i32.add - (get_local $11) - (i32.const 16) - ) - ) - ) + ) + (get_local $11) + ) + (block $do-once17 + (set_local $4 + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (get_local $11) + (i32.const 20) ) - (get_local $13) - (br $do-once17) ) ) ) - (loop $while-in20 - (if - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $16) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $16 - (get_local $5) - ) - (set_local $4 - (get_local $2) - ) - (br $while-in20) - ) + (block (result i32) + (set_local $16 + (get_local $5) ) - (if - (tee_local $5 - (i32.load - (tee_local $2 - (i32.add - (get_local $16) - (i32.const 16) - ) + (get_local $2) + ) + (if (result i32) + (tee_local $16 + (i32.load + (tee_local $13 + (i32.add + (get_local $11) + (i32.const 16) ) ) ) - (block - (set_local $16 - (get_local $5) - ) - (set_local $4 - (get_local $2) + ) + (get_local $13) + (br $do-once17) + ) + ) + ) + (loop $while-in20 + (if + (tee_local $5 + (i32.load + (tee_local $2 + (i32.add + (get_local $16) + (i32.const 20) ) - (br $while-in20) ) ) ) - (if - (i32.lt_u - (get_local $4) - (get_local $10) + (block + (set_local $16 + (get_local $5) ) - (call $qa) - (block - (i32.store - (get_local $4) - (i32.const 0) - ) - (set_local $22 - (get_local $16) - ) + (set_local $4 + (get_local $2) ) + (br $while-in20) ) ) - (block - (if - (i32.lt_u + (if + (tee_local $5 + (i32.load (tee_local $2 - (i32.load offset=8 - (get_local $11) + (i32.add + (get_local $16) + (i32.const 16) ) ) - (get_local $10) ) - (call $qa) ) - (if - (i32.ne - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 12) - ) - ) - ) - (get_local $11) + (block + (set_local $16 + (get_local $5) ) - (call $qa) + (set_local $4 + (get_local $2) + ) + (br $while-in20) ) - (if - (i32.eq - (i32.load - (tee_local $13 - (i32.add - (get_local $3) - (i32.const 8) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $4) + (get_local $10) + ) + (call $qa) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $22 + (get_local $16) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $2 + (i32.load offset=8 (get_local $11) ) - (block - (i32.store - (get_local $5) - (get_local $3) - ) - (i32.store - (get_local $13) + ) + (get_local $10) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $5 + (i32.add (get_local $2) + (i32.const 12) ) - (set_local $22 + ) + ) + (get_local $11) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $13 + (i32.add (get_local $3) + (i32.const 8) ) ) - (call $qa) + ) + (get_local $11) + ) + (block + (i32.store + (get_local $5) + (get_local $3) + ) + (i32.store + (get_local $13) + (get_local $2) + ) + (set_local $22 + (get_local $3) ) ) + (call $qa) ) ) + ) + (if + (get_local $6) (block $do-once21 (if - (get_local $6) - (block - (if - (i32.eq - (get_local $11) - (i32.load - (tee_local $10 - (i32.add - (i32.shl - (tee_local $3 - (i32.load offset=28 - (get_local $11) - ) - ) - (i32.const 2) + (i32.eq + (get_local $11) + (i32.load + (tee_local $10 + (i32.add + (i32.shl + (tee_local $3 + (i32.load offset=28 + (get_local $11) ) - (i32.const 1512) ) + (i32.const 2) ) + (i32.const 1512) ) ) - (block - (i32.store - (get_local $10) - (get_local $22) - ) - (if - (i32.eqz - (get_local $22) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) - ) - ) - ) - (br $do-once21) - ) - ) + ) + ) + (block + (i32.store + (get_local $10) + (get_local $22) + ) + (if + (i32.eqz + (get_local $22) ) (block - (if - (i32.lt_u - (get_local $6) + (i32.store + (i32.const 1212) + (i32.and (i32.load - (i32.const 1224) + (i32.const 1212) ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $3 - (i32.add - (get_local $6) - (i32.const 16) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) - (get_local $11) - ) - (i32.store - (get_local $3) - (get_local $22) - ) - (i32.store offset=20 - (get_local $6) - (get_local $22) - ) - ) - (br_if $do-once21 - (i32.eqz - (get_local $22) ) ) + (br $do-once21) ) ) + ) + (block (if (i32.lt_u - (get_local $22) - (tee_local $3 - (i32.load - (i32.const 1224) - ) + (get_local $6) + (i32.load + (i32.const 1224) ) ) (call $qa) ) - (i32.store offset=24 - (get_local $22) - (get_local $6) - ) (if - (tee_local $10 - (i32.load offset=16 - (get_local $11) - ) - ) - (if - (i32.lt_u - (get_local $10) - (get_local $3) - ) - (call $qa) - (block - (i32.store offset=16 - (get_local $22) - (get_local $10) - ) - (i32.store offset=24 - (get_local $10) - (get_local $22) + (i32.eq + (i32.load + (tee_local $3 + (i32.add + (get_local $6) + (i32.const 16) + ) ) ) + (get_local $11) ) - ) - (if - (tee_local $10 - (i32.load offset=20 - (get_local $11) - ) + (i32.store + (get_local $3) + (get_local $22) ) - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store offset=20 - (get_local $22) - (get_local $10) - ) - (i32.store offset=24 - (get_local $10) - (get_local $22) - ) - ) + (i32.store offset=20 + (get_local $6) + (get_local $22) + ) + ) + (br_if $do-once21 + (i32.eqz + (get_local $22) ) ) ) ) - ) - (block $do-once25 (if (i32.lt_u - (get_local $18) - (i32.const 16) + (get_local $22) + (tee_local $3 + (i32.load + (i32.const 1224) + ) + ) ) - (block - (i32.store offset=4 + (call $qa) + ) + (i32.store offset=24 + (get_local $22) + (get_local $6) + ) + (if + (tee_local $10 + (i32.load offset=16 (get_local $11) - (i32.or - (tee_local $6 - (i32.add - (get_local $18) - (get_local $0) - ) - ) - (i32.const 3) - ) ) - (i32.store - (tee_local $10 - (i32.add - (i32.add - (get_local $11) - (get_local $6) - ) - (i32.const 4) - ) + ) + (if + (i32.lt_u + (get_local $10) + (get_local $3) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $22) + (get_local $10) ) - (i32.or - (i32.load - (get_local $10) - ) - (i32.const 1) + (i32.store offset=24 + (get_local $10) + (get_local $22) ) ) ) - (block - (i32.store offset=4 + ) + (if + (tee_local $10 + (i32.load offset=20 (get_local $11) - (i32.or - (get_local $0) - (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $10) + (i32.load + (i32.const 1224) ) ) - (i32.store offset=4 - (get_local $9) - (i32.or - (get_local $18) - (i32.const 1) + (call $qa) + (block + (i32.store offset=20 + (get_local $22) + (get_local $10) + ) + (i32.store offset=24 + (get_local $10) + (get_local $22) ) ) - (i32.store + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $18) + (i32.const 16) + ) + (block + (i32.store offset=4 + (get_local $11) + (i32.or + (tee_local $6 (i32.add - (get_local $9) (get_local $18) + (get_local $0) ) - (get_local $18) ) - (set_local $10 - (i32.shr_u - (get_local $18) - (i32.const 3) + (i32.const 3) + ) + ) + (i32.store + (tee_local $10 + (i32.add + (i32.add + (get_local $11) + (get_local $6) ) + (i32.const 4) ) - (if - (i32.lt_u - (get_local $18) - (i32.const 256) + ) + (i32.or + (i32.load + (get_local $10) + ) + (i32.const 1) + ) + ) + ) + (block $do-once25 + (i32.store offset=4 + (get_local $11) + (i32.or + (get_local $0) + (i32.const 3) + ) + ) + (i32.store offset=4 + (get_local $9) + (i32.or + (get_local $18) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $9) + (get_local $18) + ) + (get_local $18) + ) + (set_local $10 + (i32.shr_u + (get_local $18) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $18) + (i32.const 256) + ) + (block + (set_local $6 + (i32.add + (i32.shl + (get_local $10) + (i32.const 3) + ) + (i32.const 1248) ) - (block - (set_local $6 - (i32.add - (i32.shl - (get_local $10) - (i32.const 3) - ) - (i32.const 1248) + ) + (if + (i32.and + (tee_local $3 + (i32.load + (i32.const 1208) ) ) - (if - (i32.and - (tee_local $3 - (i32.load - (i32.const 1208) - ) - ) - (tee_local $2 - (i32.shl - (i32.const 1) - (get_local $10) - ) - ) + (tee_local $2 + (i32.shl + (i32.const 1) + (get_local $10) ) - (if - (i32.lt_u - (tee_local $3 - (i32.load - (tee_local $2 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) + ) + ) + (if + (i32.lt_u + (tee_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $6) + (i32.const 8) ) ) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (set_local $19 - (get_local $2) - ) - (set_local $7 - (get_local $3) - ) ) ) - (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $3) - (get_local $2) - ) - ) - (set_local $19 - (i32.add - (get_local $6) - (i32.const 8) - ) - ) - (set_local $7 - (get_local $6) - ) + (i32.load + (i32.const 1224) ) ) - (i32.store - (get_local $19) - (get_local $9) + (call $qa) + (block + (set_local $19 + (get_local $2) + ) + (set_local $7 + (get_local $3) + ) ) - (i32.store offset=12 - (get_local $7) - (get_local $9) + ) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $3) + (get_local $2) + ) ) - (i32.store offset=8 - (get_local $9) - (get_local $7) + (set_local $19 + (i32.add + (get_local $6) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $9) + (set_local $7 (get_local $6) ) - (br $do-once25) ) ) - (set_local $13 - (i32.add - (i32.shl - (tee_local $3 - (if (result i32) - (tee_local $6 + (i32.store + (get_local $19) + (get_local $9) + ) + (i32.store offset=12 + (get_local $7) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $7) + ) + (i32.store offset=12 + (get_local $9) + (get_local $6) + ) + (br $do-once25) + ) + ) + (set_local $13 + (i32.add + (i32.shl + (tee_local $3 + (if (result i32) + (tee_local $6 + (i32.shr_u + (get_local $18) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $18) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and (i32.shr_u (get_local $18) - (i32.const 8) - ) - ) - (if (result i32) - (i32.gt_u - (get_local $18) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $18) + (i32.add + (tee_local $13 (i32.add - (tee_local $13 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $6 - (i32.and - (i32.shr_u - (i32.add - (tee_local $2 - (i32.shl - (get_local $6) - (tee_local $3 - (i32.and - (i32.shr_u - (i32.add - (get_local $6) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $6 + (i32.and + (i32.shr_u + (i32.add + (tee_local $2 + (i32.shl + (get_local $6) + (tee_local $3 + (i32.and + (i32.shr_u + (i32.add + (get_local $6) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) + (i32.const 520192) ) + (i32.const 16) ) - (get_local $3) + (i32.const 4) ) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (tee_local $10 - (i32.shl - (get_local $2) - (get_local $6) - ) - ) - (i32.const 245760) + ) + (get_local $3) + ) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (tee_local $10 + (i32.shl + (get_local $2) + (get_local $6) ) - (i32.const 16) ) - (i32.const 2) + (i32.const 245760) ) + (i32.const 16) ) + (i32.const 2) ) ) - (i32.shr_u - (i32.shl - (get_local $10) - (get_local $2) - ) - (i32.const 15) - ) ) ) - (i32.const 7) + (i32.shr_u + (i32.shl + (get_local $10) + (get_local $2) + ) + (i32.const 15) + ) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $13) - (i32.const 1) + (i32.const 7) ) ) + (i32.const 1) + ) + (i32.shl + (get_local $13) + (i32.const 1) ) - (i32.const 0) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 1512) + ) + ) + (i32.store offset=28 + (get_local $9) + (get_local $3) + ) + (i32.store offset=4 + (tee_local $2 + (i32.add (get_local $9) - (get_local $3) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $2 - (i32.add - (get_local $9) - (i32.const 16) + (i32.load + (i32.const 1212) ) ) - (i32.const 0) - ) - (i32.store - (get_local $2) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $2 - (i32.load - (i32.const 1212) - ) - ) - (tee_local $10 - (i32.shl - (i32.const 1) - (get_local $3) - ) - ) + (tee_local $10 + (i32.shl + (i32.const 1) + (get_local $3) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $2) - (get_local $10) - ) - ) - (i32.store - (get_local $13) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $13) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - (br $do-once25) + ) + ) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $2) + (get_local $10) ) ) - (set_local $10 - (i32.shl - (get_local $18) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $3) - (i32.const 1) - ) - ) - (i32.eq - (get_local $3) - (i32.const 31) - ) + (i32.store + (get_local $13) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $13) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + (br $do-once25) + ) + ) + (set_local $10 + (i32.shl + (get_local $18) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $3) + (i32.const 1) ) ) - ) - (set_local $2 - (i32.load - (get_local $13) + (i32.eq + (get_local $3) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $8 - (loop $while-in28 (result i32) - (block $while-out27 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $2) - ) - (i32.const -8) - ) - (get_local $18) - ) - (block - (set_local $17 - (get_local $2) - ) - (br $while-out27 - (i32.const 148) - ) + ) + ) + (set_local $2 + (i32.load + (get_local $13) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in28 (result i32) + (block $while-out27 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $2) ) + (i32.const -8) ) - (if (result i32) - (tee_local $3 - (i32.load - (tee_local $13 - (i32.add - (i32.add - (get_local $2) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $10) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $18) + ) + (block + (set_local $17 + (get_local $2) + ) + (br $while-out27 + (i32.const 148) + ) + ) + ) + (if (result i32) + (tee_local $3 + (i32.load + (tee_local $13 + (i32.add + (i32.add + (get_local $2) + (i32.const 16) ) - ) - ) - (block - (set_local $10 (i32.shl - (get_local $10) - (i32.const 1) + (i32.shr_u + (get_local $10) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $2 - (get_local $3) - ) - (br $while-in28) ) - (block (result i32) - (set_local $21 - (get_local $13) - ) - (set_local $15 - (get_local $2) - ) - (i32.const 145) + ) + ) + (block + (set_local $10 + (i32.shl + (get_local $10) + (i32.const 1) ) ) + (set_local $2 + (get_local $3) + ) + (br $while-in28) + ) + (block (result i32) + (set_local $21 + (get_local $13) + ) + (set_local $15 + (get_local $2) + ) + (i32.const 145) ) ) ) - (i32.const 145) ) - (if - (i32.lt_u - (get_local $21) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store - (get_local $21) - (get_local $9) - ) - (i32.store offset=24 - (get_local $9) - (get_local $15) - ) - (i32.store offset=12 - (get_local $9) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $9) - ) - ) + ) + (i32.const 145) + ) + (if + (i32.lt_u + (get_local $21) + (i32.load + (i32.const 1224) ) - (if - (i32.eq - (get_local $8) - (i32.const 148) - ) - (if - (i32.and - (i32.ge_u - (tee_local $10 - (i32.load - (tee_local $2 - (i32.add - (get_local $17) - (i32.const 8) - ) - ) - ) - ) - (tee_local $3 - (i32.load - (i32.const 1224) + ) + (call $qa) + (block + (i32.store + (get_local $21) + (get_local $9) + ) + (i32.store offset=24 + (get_local $9) + (get_local $15) + ) + (i32.store offset=12 + (get_local $9) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $9) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 148) + ) + (if + (i32.and + (i32.ge_u + (tee_local $10 + (i32.load + (tee_local $2 + (i32.add + (get_local $17) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $17) - (get_local $3) - ) ) - (block - (i32.store offset=12 - (get_local $10) - (get_local $9) - ) - (i32.store - (get_local $2) - (get_local $9) - ) - (i32.store offset=8 - (get_local $9) - (get_local $10) - ) - (i32.store offset=12 - (get_local $9) - (get_local $17) - ) - (i32.store offset=24 - (get_local $9) - (i32.const 0) + (tee_local $3 + (i32.load + (i32.const 1224) ) ) - (call $qa) + ) + (i32.ge_u + (get_local $17) + (get_local $3) ) ) + (block + (i32.store offset=12 + (get_local $10) + (get_local $9) + ) + (i32.store + (get_local $2) + (get_local $9) + ) + (i32.store offset=8 + (get_local $9) + (get_local $10) + ) + (i32.store offset=12 + (get_local $9) + (get_local $17) + ) + (i32.store offset=24 + (get_local $9) + (i32.const 0) + ) + ) + (call $qa) ) ) ) ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $11) - (i32.const 8) - ) + ) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $11) + (i32.const 8) ) ) - (get_local $0) ) (get_local $0) ) + (get_local $0) ) - (get_local $0) ) + (get_local $0) ) ) ) @@ -3104,257 +3090,253 @@ ) ) (block - (block $label$break$c - (if - (tee_local $18 - (i32.load - (i32.const 1232) - ) + (if + (tee_local $18 + (i32.load + (i32.const 1232) ) - (block - (set_local $7 - (i32.const 1656) - ) - (loop $while-in32 - (block $while-out31 - (if - (i32.le_u - (tee_local $3 - (i32.load - (get_local $7) - ) + ) + (block $label$break$c + (set_local $7 + (i32.const 1656) + ) + (loop $while-in32 + (block $while-out31 + (if + (i32.le_u + (tee_local $3 + (i32.load + (get_local $7) ) - (get_local $18) ) - (if - (i32.gt_u - (i32.add - (get_local $3) - (i32.load - (tee_local $19 - (i32.add - (get_local $7) - (i32.const 4) - ) + (get_local $18) + ) + (if + (i32.gt_u + (i32.add + (get_local $3) + (i32.load + (tee_local $19 + (i32.add + (get_local $7) + (i32.const 4) ) ) ) - (get_local $18) - ) - (block - (set_local $0 - (get_local $7) - ) - (set_local $5 - (get_local $19) - ) - (br $while-out31) ) + (get_local $18) ) - ) - (br_if $while-in32 - (tee_local $7 - (i32.load offset=8 + (block + (set_local $0 (get_local $7) ) + (set_local $5 + (get_local $19) + ) + (br $while-out31) ) ) - (set_local $8 - (i32.const 171) - ) - (br $label$break$c) ) - ) - (if - (i32.lt_u + (br_if $while-in32 (tee_local $7 - (i32.and - (i32.sub - (get_local $11) - (i32.load - (i32.const 1220) - ) - ) - (get_local $21) + (i32.load offset=8 + (get_local $7) ) ) - (i32.const 2147483647) ) - (if - (i32.eq - (tee_local $19 - (call $ta - (get_local $7) - ) - ) - (i32.add - (i32.load - (get_local $0) - ) + (set_local $8 + (i32.const 171) + ) + (br $label$break$c) + ) + ) + (if + (i32.lt_u + (tee_local $7 + (i32.and + (i32.sub + (get_local $11) (i32.load - (get_local $5) + (i32.const 1220) ) ) + (get_local $21) ) - (if - (i32.ne - (get_local $19) - (i32.const -1) + ) + (i32.const 2147483647) + ) + (if + (i32.eq + (tee_local $19 + (call $ta + (get_local $7) ) - (block - (set_local $20 - (get_local $19) - ) - (set_local $26 - (get_local $7) - ) - (br $label$break$b - (i32.const 191) - ) + ) + (i32.add + (i32.load + (get_local $0) ) + (i32.load + (get_local $5) + ) + ) + ) + (if + (i32.ne + (get_local $19) + (i32.const -1) ) (block - (set_local $12 + (set_local $20 (get_local $19) ) - (set_local $1 + (set_local $26 (get_local $7) ) - (set_local $8 - (i32.const 181) + (br $label$break$b + (i32.const 191) ) ) ) + (block + (set_local $12 + (get_local $19) + ) + (set_local $1 + (get_local $7) + ) + (set_local $8 + (i32.const 181) + ) + ) ) ) - (set_local $8 - (i32.const 171) - ) + ) + (set_local $8 + (i32.const 171) ) ) - (block $do-once33 + (if + (i32.eq + (get_local $8) + (i32.const 171) + ) (if - (i32.eq - (get_local $8) - (i32.const 171) - ) - (if - (i32.ne - (tee_local $18 - (call $ta - (i32.const 0) - ) + (i32.ne + (tee_local $18 + (call $ta + (i32.const 0) ) - (i32.const -1) ) - (block - (set_local $2 - (if (result i32) - (i32.and - (tee_local $19 - (i32.add - (tee_local $7 - (i32.load - (i32.const 1684) - ) + (i32.const -1) + ) + (block $do-once33 + (set_local $2 + (if (result i32) + (i32.and + (tee_local $19 + (i32.add + (tee_local $7 + (i32.load + (i32.const 1684) ) - (i32.const -1) ) - ) - (tee_local $0 - (get_local $18) + (i32.const -1) ) ) - (i32.add - (i32.sub - (get_local $14) + (tee_local $0 + (get_local $18) + ) + ) + (i32.add + (i32.sub + (get_local $14) + (get_local $0) + ) + (i32.and + (i32.add + (get_local $19) (get_local $0) ) - (i32.and - (i32.add - (get_local $19) - (get_local $0) - ) - (i32.sub - (i32.const 0) - (get_local $7) - ) + (i32.sub + (i32.const 0) + (get_local $7) ) ) - (get_local $14) ) + (get_local $14) ) - (set_local $0 - (i32.add - (tee_local $7 - (i32.load - (i32.const 1640) - ) + ) + (set_local $0 + (i32.add + (tee_local $7 + (i32.load + (i32.const 1640) ) + ) + (get_local $2) + ) + ) + (if + (i32.and + (i32.gt_u + (get_local $2) + (get_local $6) + ) + (i32.lt_u (get_local $2) + (i32.const 2147483647) ) ) - (if - (i32.and - (i32.gt_u - (get_local $2) - (get_local $6) - ) - (i32.lt_u - (get_local $2) - (i32.const 2147483647) + (block + (if + (tee_local $19 + (i32.load + (i32.const 1648) + ) ) - ) - (block - (if - (tee_local $19 - (i32.load - (i32.const 1648) + (br_if $do-once33 + (i32.or + (i32.le_u + (get_local $0) + (get_local $7) ) - ) - (br_if $do-once33 - (i32.or - (i32.le_u - (get_local $0) - (get_local $7) - ) - (i32.gt_u - (get_local $0) - (get_local $19) - ) + (i32.gt_u + (get_local $0) + (get_local $19) ) ) ) - (set_local $1 - (if (result i32) - (i32.eq - (tee_local $19 - (call $ta - (get_local $2) - ) - ) - (get_local $18) - ) - (block - (set_local $20 - (get_local $18) - ) - (set_local $26 + ) + (set_local $1 + (if (result i32) + (i32.eq + (tee_local $19 + (call $ta (get_local $2) ) - (br $label$break$b - (i32.const 191) - ) ) - (block (result i32) - (set_local $12 - (get_local $19) - ) - (set_local $8 - (i32.const 181) - ) + (get_local $18) + ) + (block + (set_local $20 + (get_local $18) + ) + (set_local $26 (get_local $2) ) + (br $label$break$b + (i32.const 191) + ) + ) + (block (result i32) + (set_local $12 + (get_local $19) + ) + (set_local $8 + (i32.const 181) + ) + (get_local $2) ) ) ) @@ -3363,100 +3345,98 @@ ) ) ) - (block $label$break$d - (if - (i32.eq - (get_local $8) - (i32.const 181) - ) - (block - (set_local $19 - (i32.sub - (i32.const 0) - (get_local $1) - ) + (if + (i32.eq + (get_local $8) + (i32.const 181) + ) + (block $label$break$d + (set_local $19 + (i32.sub + (i32.const 0) + (get_local $1) ) - (set_local $4 - (if (result i32) + ) + (set_local $4 + (if (result i32) + (i32.and + (i32.gt_u + (get_local $15) + (get_local $1) + ) (i32.and - (i32.gt_u - (get_local $15) + (i32.lt_u (get_local $1) + (i32.const 2147483647) ) - (i32.and - (i32.lt_u - (get_local $1) - (i32.const 2147483647) - ) - (i32.ne - (get_local $12) - (i32.const -1) - ) + (i32.ne + (get_local $12) + (i32.const -1) ) ) - (if (result i32) - (i32.lt_u - (tee_local $0 - (i32.and - (i32.add - (i32.sub - (get_local $17) - (get_local $1) - ) - (tee_local $18 - (i32.load - (i32.const 1688) - ) - ) - ) + ) + (if (result i32) + (i32.lt_u + (tee_local $0 + (i32.and + (i32.add (i32.sub - (i32.const 0) - (get_local $18) + (get_local $17) + (get_local $1) + ) + (tee_local $18 + (i32.load + (i32.const 1688) + ) ) ) + (i32.sub + (i32.const 0) + (get_local $18) + ) ) - (i32.const 2147483647) ) - (if (result i32) - (i32.eq - (call $ta - (get_local $0) - ) - (i32.const -1) + (i32.const 2147483647) + ) + (if (result i32) + (i32.eq + (call $ta + (get_local $0) ) - (block - (drop - (call $ta - (get_local $19) - ) + (i32.const -1) + ) + (block + (drop + (call $ta + (get_local $19) ) - (br $label$break$d) - ) - (i32.add - (get_local $0) - (get_local $1) ) + (br $label$break$d) + ) + (i32.add + (get_local $0) + (get_local $1) ) - (get_local $1) ) (get_local $1) ) + (get_local $1) ) - (if - (i32.ne + ) + (if + (i32.ne + (get_local $12) + (i32.const -1) + ) + (block + (set_local $20 (get_local $12) - (i32.const -1) ) - (block - (set_local $20 - (get_local $12) - ) - (set_local $26 - (get_local $4) - ) - (br $label$break$b - (i32.const 191) - ) + (set_local $26 + (get_local $4) + ) + (br $label$break$b + (i32.const 191) ) ) ) @@ -3565,357 +3545,387 @@ (get_local $12) ) ) - (block $do-once38 - (if - (tee_local $12 - (i32.load - (i32.const 1232) - ) + (if + (tee_local $12 + (i32.load + (i32.const 1232) ) - (block - (set_local $1 - (i32.const 1656) - ) - (loop $do-in41 - (block $do-out40 - (if - (i32.eq - (get_local $20) - (i32.add - (tee_local $4 - (i32.load - (get_local $1) - ) + ) + (block $do-once38 + (set_local $1 + (i32.const 1656) + ) + (loop $do-in41 + (block $do-out40 + (if + (i32.eq + (get_local $20) + (i32.add + (tee_local $4 + (i32.load + (get_local $1) ) - (tee_local $17 - (i32.load - (tee_local $14 - (i32.add - (get_local $1) - (i32.const 4) - ) + ) + (tee_local $17 + (i32.load + (tee_local $14 + (i32.add + (get_local $1) + (i32.const 4) ) ) ) ) ) - (block - (set_local $48 - (get_local $4) - ) - (set_local $49 - (get_local $14) - ) - (set_local $50 - (get_local $17) - ) - (set_local $51 - (get_local $1) - ) - (set_local $8 - (i32.const 201) - ) - (br $do-out40) + ) + (block + (set_local $48 + (get_local $4) + ) + (set_local $49 + (get_local $14) + ) + (set_local $50 + (get_local $17) + ) + (set_local $51 + (get_local $1) + ) + (set_local $8 + (i32.const 201) ) + (br $do-out40) ) - (br_if $do-in41 - (tee_local $1 - (i32.load offset=8 - (get_local $1) - ) + ) + (br_if $do-in41 + (tee_local $1 + (i32.load offset=8 + (get_local $1) ) ) ) ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 201) + ) (if - (i32.eq - (get_local $8) - (i32.const 201) + (i32.eqz + (i32.and + (i32.load offset=12 + (get_local $51) + ) + (i32.const 8) + ) ) (if - (i32.eqz - (i32.and - (i32.load offset=12 - (get_local $51) - ) - (i32.const 8) + (i32.and + (i32.lt_u + (get_local $12) + (get_local $20) + ) + (i32.ge_u + (get_local $12) + (get_local $48) ) ) - (if - (i32.and - (i32.lt_u - (get_local $12) - (get_local $20) - ) - (i32.ge_u - (get_local $12) - (get_local $48) + (block + (i32.store + (get_local $49) + (i32.add + (get_local $50) + (get_local $26) ) ) - (block - (i32.store - (get_local $49) - (i32.add - (get_local $50) - (get_local $26) - ) - ) - (set_local $1 - (i32.add - (get_local $12) - (tee_local $17 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $12) - (i32.const 8) - ) + (set_local $1 + (i32.add + (get_local $12) + (tee_local $17 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $12) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) ) - (set_local $14 - (i32.add - (i32.sub - (get_local $26) - (get_local $17) - ) - (i32.load - (i32.const 1220) - ) + ) + (set_local $14 + (i32.add + (i32.sub + (get_local $26) + (get_local $17) + ) + (i32.load + (i32.const 1220) ) ) - (i32.store - (i32.const 1232) - (get_local $1) - ) - (i32.store - (i32.const 1220) + ) + (i32.store + (i32.const 1232) + (get_local $1) + ) + (i32.store + (i32.const 1220) + (get_local $14) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $14) + (i32.const 1) ) - (i32.store offset=4 + ) + (i32.store offset=4 + (i32.add (get_local $1) - (i32.or - (get_local $14) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $1) - (get_local $14) - ) - (i32.const 40) - ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) + (get_local $14) ) - (br $do-once38) + (i32.const 40) ) - ) - ) - ) - (set_local $16 - (if (result i32) - (i32.lt_u - (get_local $20) - (tee_local $14 + (i32.store + (i32.const 1236) (i32.load - (i32.const 1224) + (i32.const 1696) ) ) + (br $do-once38) ) - (block (result i32) - (i32.store + ) + ) + ) + (set_local $16 + (if (result i32) + (i32.lt_u + (get_local $20) + (tee_local $14 + (i32.load (i32.const 1224) - (get_local $20) ) - (get_local $20) ) - (get_local $14) ) - ) - (set_local $14 - (i32.add + (block (result i32) + (i32.store + (i32.const 1224) + (get_local $20) + ) (get_local $20) - (get_local $26) ) + (get_local $14) ) - (set_local $1 - (i32.const 1656) + ) + (set_local $14 + (i32.add + (get_local $20) + (get_local $26) ) - (loop $while-in43 - (block $while-out42 - (if - (i32.eq - (i32.load - (get_local $1) - ) - (get_local $14) - ) - (block - (set_local $52 - (get_local $1) - ) - (set_local $42 - (get_local $1) - ) - (set_local $8 - (i32.const 209) - ) - (br $while-out42) + ) + (set_local $1 + (i32.const 1656) + ) + (loop $while-in43 + (block $while-out42 + (if + (i32.eq + (i32.load + (get_local $1) ) + (get_local $14) ) - (br_if $while-in43 - (tee_local $1 - (i32.load offset=8 - (get_local $1) - ) + (block + (set_local $52 + (get_local $1) ) - ) - (set_local $30 - (i32.const 1656) + (set_local $42 + (get_local $1) + ) + (set_local $8 + (i32.const 209) + ) + (br $while-out42) ) ) - ) - (if - (i32.eq - (get_local $8) - (i32.const 209) + (br_if $while-in43 + (tee_local $1 + (i32.load offset=8 + (get_local $1) + ) + ) ) (set_local $30 - (if (result i32) - (i32.and - (i32.load offset=12 - (get_local $42) - ) - (i32.const 8) + (i32.const 1656) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 209) + ) + (set_local $30 + (if (result i32) + (i32.and + (i32.load offset=12 + (get_local $42) ) - (i32.const 1656) - (block - (i32.store - (get_local $52) - (get_local $20) - ) - (i32.store - (tee_local $1 - (i32.add - (get_local $42) - (i32.const 4) - ) - ) + (i32.const 8) + ) + (i32.const 1656) + (block + (i32.store + (get_local $52) + (get_local $20) + ) + (i32.store + (tee_local $1 (i32.add - (i32.load - (get_local $1) - ) - (get_local $26) + (get_local $42) + (i32.const 4) ) ) - (set_local $17 - (i32.add - (get_local $20) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $20) - (i32.const 8) - ) + (i32.add + (i32.load + (get_local $1) + ) + (get_local $26) + ) + ) + (set_local $17 + (i32.add + (get_local $20) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) - (set_local $4 - (i32.add - (get_local $14) - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $1 - (i32.add - (get_local $14) - (i32.const 8) - ) + ) + (set_local $4 + (i32.add + (get_local $14) + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $1 + (i32.add + (get_local $14) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $1) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $1) + (i32.const 7) ) ) ) - (set_local $1 - (i32.add + ) + (set_local $1 + (i32.add + (get_local $17) + (get_local $6) + ) + ) + (set_local $15 + (i32.sub + (i32.sub + (get_local $4) (get_local $17) - (get_local $6) ) + (get_local $6) ) - (set_local $15 - (i32.sub - (i32.sub - (get_local $4) - (get_local $17) + ) + (i32.store offset=4 + (get_local $17) + (i32.or + (get_local $6) + (i32.const 3) + ) + ) + (if + (i32.eq + (get_local $4) + (get_local $12) + ) + (block + (i32.store + (i32.const 1220) + (tee_local $2 + (i32.add + (i32.load + (i32.const 1220) + ) + (get_local $15) + ) ) - (get_local $6) ) - ) - (i32.store offset=4 - (get_local $17) - (i32.or - (get_local $6) - (i32.const 3) + (i32.store + (i32.const 1232) + (get_local $1) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $2) + (i32.const 1) + ) ) ) (block $do-once44 (if (i32.eq (get_local $4) - (get_local $12) + (i32.load + (i32.const 1228) + ) ) (block (i32.store - (i32.const 1220) + (i32.const 1216) (tee_local $2 (i32.add (i32.load - (i32.const 1220) + (i32.const 1216) ) (get_local $15) ) ) ) (i32.store - (i32.const 1232) + (i32.const 1228) (get_local $1) ) (i32.store offset=4 @@ -3925,1548 +3935,1622 @@ (i32.const 1) ) ) + (i32.store + (i32.add + (get_local $1) + (get_local $2) + ) + (get_local $2) + ) + (br $do-once44) ) - (block - (if - (i32.eq - (get_local $4) - (i32.load - (i32.const 1228) + ) + (if + (i32.eq + (i32.and + (tee_local $2 + (i32.load offset=4 + (get_local $4) ) ) - (block - (i32.store - (i32.const 1216) - (tee_local $2 - (i32.add - (i32.load - (i32.const 1216) - ) - (get_local $15) - ) - ) - ) - (i32.store - (i32.const 1228) - (get_local $1) - ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $2) - (i32.const 1) - ) - ) - (i32.store - (i32.add - (get_local $1) - (get_local $2) - ) - (get_local $2) - ) - (br $do-once44) + (i32.const 3) + ) + (i32.const 1) + ) + (block + (set_local $5 + (i32.and + (get_local $2) + (i32.const -8) ) ) - (if - (i32.eq - (i32.and - (tee_local $2 - (i32.load offset=4 - (get_local $4) - ) - ) - (i32.const 3) - ) - (i32.const 1) + (set_local $0 + (i32.shr_u + (get_local $2) + (i32.const 3) ) - (block - (set_local $5 - (i32.and - (get_local $2) - (i32.const -8) - ) + ) + (block $label$break$e + (if + (i32.lt_u + (get_local $2) + (i32.const 256) ) - (set_local $0 - (i32.shr_u - (get_local $2) - (i32.const 3) + (block + (set_local $11 + (i32.load offset=12 + (get_local $4) + ) ) - ) - (block $label$break$e (if - (i32.lt_u - (get_local $2) - (i32.const 256) - ) - (block - (set_local $11 - (i32.load offset=12 + (i32.ne + (tee_local $21 + (i32.load offset=8 (get_local $4) ) ) - (block $do-once47 - (if - (i32.ne - (tee_local $21 - (i32.load offset=8 - (get_local $4) - ) - ) - (tee_local $19 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 1248) - ) - ) - ) - (block - (if - (i32.lt_u - (get_local $21) - (get_local $16) - ) - (call $qa) - ) - (br_if $do-once47 - (i32.eq - (i32.load offset=12 - (get_local $21) - ) - (get_local $4) - ) - ) - (call $qa) + (tee_local $19 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) ) + (i32.const 1248) ) ) + ) + (block $do-once47 (if - (i32.eq - (get_local $11) + (i32.lt_u (get_local $21) + (get_local $16) ) - (block - (i32.store - (i32.const 1208) - (i32.and - (i32.load - (i32.const 1208) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) + (call $qa) + ) + (br_if $do-once47 + (i32.eq + (i32.load offset=12 + (get_local $21) ) - (br $label$break$e) + (get_local $4) ) ) - (block $do-once49 - (if - (i32.eq - (get_local $11) - (get_local $19) - ) - (set_local $43 - (i32.add - (get_local $11) - (i32.const 8) - ) + (call $qa) + ) + ) + (if + (i32.eq + (get_local $11) + (get_local $21) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (i32.load + (i32.const 1208) ) - (block - (if - (i32.lt_u - (get_local $11) - (get_local $16) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $11) - (i32.const 8) - ) - ) - ) - (get_local $4) - ) - (block - (set_local $43 - (get_local $0) - ) - (br $do-once49) - ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) - (call $qa) + (i32.const -1) ) ) ) - (i32.store offset=12 - (get_local $21) + (br $label$break$e) + ) + ) + (if + (i32.eq + (get_local $11) + (get_local $19) + ) + (set_local $43 + (i32.add (get_local $11) - ) - (i32.store - (get_local $43) - (get_local $21) + (i32.const 8) ) ) - (block - (set_local $19 - (i32.load offset=24 - (get_local $4) + (block $do-once49 + (if + (i32.lt_u + (get_local $11) + (get_local $16) ) + (call $qa) ) - (block $do-once51 - (if - (i32.eq + (if + (i32.eq + (i32.load (tee_local $0 - (i32.load offset=12 - (get_local $4) + (i32.add + (get_local $11) + (i32.const 8) ) ) - (get_local $4) ) - (block - (set_local $0 - (if (result i32) - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (tee_local $18 - (i32.add - (get_local $4) - (i32.const 16) - ) - ) - (i32.const 4) - ) - ) - ) - ) - (block (result i32) - (set_local $2 - (get_local $3) - ) - (get_local $7) - ) - (if (result i32) - (tee_local $22 - (i32.load - (get_local $18) - ) - ) - (block (result i32) - (set_local $2 - (get_local $22) - ) - (get_local $18) - ) - (br $do-once51) - ) - ) - ) - (loop $while-in54 - (if - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (get_local $2) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $7) - ) - (br $while-in54) - ) - ) - (if - (tee_local $3 - (i32.load - (tee_local $7 - (i32.add - (get_local $2) - (i32.const 16) - ) + (get_local $4) + ) + (block + (set_local $43 + (get_local $0) + ) + (br $do-once49) + ) + ) + (call $qa) + ) + ) + (i32.store offset=12 + (get_local $21) + (get_local $11) + ) + (i32.store + (get_local $43) + (get_local $21) + ) + ) + (block + (set_local $19 + (i32.load offset=24 + (get_local $4) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $4) + ) + ) + (get_local $4) + ) + (block $do-once51 + (set_local $0 + (if (result i32) + (tee_local $3 + (i32.load + (tee_local $7 + (i32.add + (tee_local $18 + (i32.add + (get_local $4) + (i32.const 16) ) ) - ) - (block - (set_local $2 - (get_local $3) - ) - (set_local $0 - (get_local $7) - ) - (br $while-in54) - ) - ) - ) - (if - (i32.lt_u - (get_local $0) - (get_local $16) - ) - (call $qa) - (block - (i32.store - (get_local $0) - (i32.const 0) - ) - (set_local $24 - (get_local $2) + (i32.const 4) ) ) ) ) - (block - (if - (i32.lt_u - (tee_local $7 - (i32.load offset=8 - (get_local $4) - ) - ) - (get_local $16) - ) - (call $qa) + (block (result i32) + (set_local $2 + (get_local $3) ) - (if - (i32.ne - (i32.load - (tee_local $3 - (i32.add - (get_local $7) - (i32.const 12) - ) - ) - ) - (get_local $4) + (get_local $7) + ) + (if (result i32) + (tee_local $22 + (i32.load + (get_local $18) ) - (call $qa) ) - (if - (i32.eq - (i32.load - (tee_local $18 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $4) - ) - (block - (i32.store - (get_local $3) - (get_local $0) - ) - (i32.store - (get_local $18) - (get_local $7) - ) - (set_local $24 - (get_local $0) - ) + (block (result i32) + (set_local $2 + (get_local $22) ) - (call $qa) + (get_local $18) ) + (br $do-once51) ) ) ) - (br_if $label$break$e - (i32.eqz - (get_local $19) - ) - ) - (block $do-once55 + (loop $while-in54 (if - (i32.eq - (get_local $4) + (tee_local $3 (i32.load - (tee_local $21 + (tee_local $7 (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $4) - ) - ) - (i32.const 2) - ) - (i32.const 1512) + (get_local $2) + (i32.const 20) ) ) ) ) (block - (i32.store - (get_local $21) - (get_local $24) + (set_local $2 + (get_local $3) ) - (br_if $do-once55 - (get_local $24) + (set_local $0 + (get_local $7) ) - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) + (br $while-in54) + ) + ) + (if + (tee_local $3 + (i32.load + (tee_local $7 + (i32.add + (get_local $2) + (i32.const 16) ) ) ) - (br $label$break$e) ) (block - (if - (i32.lt_u - (get_local $19) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $11 - (i32.add - (get_local $19) - (i32.const 16) - ) - ) - ) - (get_local $4) - ) - (i32.store - (get_local $11) - (get_local $24) - ) - (i32.store offset=20 - (get_local $19) - (get_local $24) - ) + (set_local $2 + (get_local $3) ) - (br_if $label$break$e - (i32.eqz - (get_local $24) - ) + (set_local $0 + (get_local $7) ) + (br $while-in54) ) ) ) (if (i32.lt_u - (get_local $24) - (tee_local $0 - (i32.load - (i32.const 1224) + (get_local $0) + (get_local $16) + ) + (call $qa) + (block + (i32.store + (get_local $0) + (i32.const 0) + ) + (set_local $24 + (get_local $2) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $7 + (i32.load offset=8 + (get_local $4) ) ) + (get_local $16) ) (call $qa) ) - (i32.store offset=24 - (get_local $24) - (get_local $19) + (if + (i32.ne + (i32.load + (tee_local $3 + (i32.add + (get_local $7) + (i32.const 12) + ) + ) + ) + (get_local $4) + ) + (call $qa) ) (if - (tee_local $11 + (i32.eq (i32.load - (tee_local $21 + (tee_local $18 (i32.add - (get_local $4) - (i32.const 16) + (get_local $0) + (i32.const 8) ) ) ) + (get_local $4) ) - (if - (i32.lt_u - (get_local $11) + (block + (i32.store + (get_local $3) (get_local $0) ) - (call $qa) - (block - (i32.store offset=16 - (get_local $24) - (get_local $11) - ) - (i32.store offset=24 - (get_local $11) - (get_local $24) + (i32.store + (get_local $18) + (get_local $7) + ) + (set_local $24 + (get_local $0) + ) + ) + (call $qa) + ) + ) + ) + (br_if $label$break$e + (i32.eqz + (get_local $19) + ) + ) + (if + (i32.eq + (get_local $4) + (i32.load + (tee_local $21 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $4) + ) + ) + (i32.const 2) ) + (i32.const 1512) ) ) ) - (br_if $label$break$e - (i32.eqz - (tee_local $11 - (i32.load offset=4 - (get_local $21) + ) + (block $do-once55 + (i32.store + (get_local $21) + (get_local $24) + ) + (br_if $do-once55 + (get_local $24) + ) + (i32.store + (i32.const 1212) + (i32.and + (i32.load + (i32.const 1212) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) ) + (i32.const -1) ) ) ) + (br $label$break$e) + ) + (block (if (i32.lt_u - (get_local $11) + (get_local $19) (i32.load (i32.const 1224) ) ) (call $qa) - (block - (i32.store offset=20 - (get_local $24) - (get_local $11) + ) + (if + (i32.eq + (i32.load + (tee_local $11 + (i32.add + (get_local $19) + (i32.const 16) + ) + ) ) - (i32.store offset=24 - (get_local $11) - (get_local $24) + (get_local $4) + ) + (i32.store + (get_local $11) + (get_local $24) + ) + (i32.store offset=20 + (get_local $19) + (get_local $24) + ) + ) + (br_if $label$break$e + (i32.eqz + (get_local $24) + ) + ) + ) + ) + (if + (i32.lt_u + (get_local $24) + (tee_local $0 + (i32.load + (i32.const 1224) + ) + ) + ) + (call $qa) + ) + (i32.store offset=24 + (get_local $24) + (get_local $19) + ) + (if + (tee_local $11 + (i32.load + (tee_local $21 + (i32.add + (get_local $4) + (i32.const 16) ) ) ) ) + (if + (i32.lt_u + (get_local $11) + (get_local $0) + ) + (call $qa) + (block + (i32.store offset=16 + (get_local $24) + (get_local $11) + ) + (i32.store offset=24 + (get_local $11) + (get_local $24) + ) + ) + ) ) - ) - (set_local $4 - (i32.add - (get_local $4) - (get_local $5) + (br_if $label$break$e + (i32.eqz + (tee_local $11 + (i32.load offset=4 + (get_local $21) + ) + ) + ) ) - ) - (set_local $15 - (i32.add - (get_local $5) - (get_local $15) + (if + (i32.lt_u + (get_local $11) + (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store offset=20 + (get_local $24) + (get_local $11) + ) + (i32.store offset=24 + (get_local $11) + (get_local $24) + ) + ) ) ) ) ) - (i32.store - (tee_local $0 - (i32.add - (get_local $4) - (i32.const 4) - ) - ) - (i32.and - (i32.load - (get_local $0) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or - (get_local $15) - (i32.const 1) + (set_local $4 + (i32.add + (get_local $4) + (get_local $5) ) ) - (i32.store + (set_local $15 (i32.add - (get_local $1) + (get_local $5) (get_local $15) ) - (get_local $15) ) - (set_local $0 - (i32.shr_u - (get_local $15) - (i32.const 3) + ) + ) + (i32.store + (tee_local $0 + (i32.add + (get_local $4) + (i32.const 4) + ) + ) + (i32.and + (i32.load + (get_local $0) + ) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or + (get_local $15) + (i32.const 1) + ) + ) + (i32.store + (i32.add + (get_local $1) + (get_local $15) + ) + (get_local $15) + ) + (set_local $0 + (i32.shr_u + (get_local $15) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $15) + (i32.const 256) + ) + (block + (set_local $2 + (i32.add + (i32.shl + (get_local $0) + (i32.const 3) + ) + (i32.const 1248) ) ) (if - (i32.lt_u - (get_local $15) - (i32.const 256) - ) - (block - (set_local $2 - (i32.add - (i32.shl - (get_local $0) - (i32.const 3) - ) - (i32.const 1248) + (i32.and + (tee_local $11 + (i32.load + (i32.const 1208) ) ) - (block $do-once59 - (if - (i32.and - (tee_local $11 - (i32.load - (i32.const 1208) - ) - ) - (tee_local $0 - (i32.shl - (i32.const 1) - (get_local $0) - ) - ) - ) - (block - (if - (i32.ge_u - (tee_local $19 - (i32.load - (tee_local $0 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - ) - ) - (i32.load - (i32.const 1224) - ) - ) - (block - (set_local $44 - (get_local $0) - ) - (set_local $37 - (get_local $19) + (tee_local $0 + (i32.shl + (i32.const 1) + (get_local $0) + ) + ) + ) + (block $do-once59 + (if + (i32.ge_u + (tee_local $19 + (i32.load + (tee_local $0 + (i32.add + (get_local $2) + (i32.const 8) ) - (br $do-once59) ) ) - (call $qa) ) - (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $11) - (get_local $0) - ) - ) - (set_local $44 - (i32.add - (get_local $2) - (i32.const 8) - ) - ) - (set_local $37 - (get_local $2) - ) + (i32.load + (i32.const 1224) + ) + ) + (block + (set_local $44 + (get_local $0) + ) + (set_local $37 + (get_local $19) ) + (br $do-once59) ) ) + (call $qa) + ) + (block (i32.store - (get_local $44) - (get_local $1) - ) - (i32.store offset=12 - (get_local $37) - (get_local $1) + (i32.const 1208) + (i32.or + (get_local $11) + (get_local $0) + ) ) - (i32.store offset=8 - (get_local $1) - (get_local $37) + (set_local $44 + (i32.add + (get_local $2) + (i32.const 8) + ) ) - (i32.store offset=12 - (get_local $1) + (set_local $37 (get_local $2) ) - (br $do-once44) ) ) - (set_local $0 - (i32.add - (i32.shl - (tee_local $5 - (block $do-once61 (result i32) - (if (result i32) - (tee_local $0 - (i32.shr_u - (get_local $15) - (i32.const 8) - ) - ) - (block (result i32) - (drop - (br_if $do-once61 - (i32.const 31) - (i32.gt_u - (get_local $15) - (i32.const 16777215) - ) - ) - ) - (i32.or - (i32.and - (i32.shr_u - (get_local $15) - (i32.add - (tee_local $7 - (i32.add - (i32.sub - (i32.const 14) - (i32.or - (i32.or - (tee_local $19 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $0) - (tee_local $11 - (i32.and - (i32.shr_u - (i32.add - (get_local $0) - (i32.const 1048320) - ) - (i32.const 16) - ) - (i32.const 8) - ) + (i32.store + (get_local $44) + (get_local $1) + ) + (i32.store offset=12 + (get_local $37) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $37) + ) + (i32.store offset=12 + (get_local $1) + (get_local $2) + ) + (br $do-once44) + ) + ) + (set_local $0 + (i32.add + (i32.shl + (tee_local $5 + (if (result i32) + (tee_local $0 + (i32.shr_u + (get_local $15) + (i32.const 8) + ) + ) + (if (result i32) + (i32.gt_u + (get_local $15) + (i32.const 16777215) + ) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $15) + (i32.add + (tee_local $7 + (i32.add + (i32.sub + (i32.const 14) + (i32.or + (i32.or + (tee_local $19 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $0) + (tee_local $11 + (i32.and + (i32.shr_u + (i32.add + (get_local $0) + (i32.const 1048320) ) + (i32.const 16) ) + (i32.const 8) ) - (i32.const 520192) ) - (i32.const 16) ) - (i32.const 4) ) + (i32.const 520192) ) - (get_local $11) + (i32.const 16) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $0 - (i32.shl - (get_local $5) - (get_local $19) - ) - ) - (i32.const 245760) - ) - (i32.const 16) + (i32.const 4) + ) + ) + (get_local $11) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $0 + (i32.shl + (get_local $5) + (get_local $19) ) - (i32.const 2) ) + (i32.const 245760) ) + (i32.const 16) ) - ) - (i32.shr_u - (i32.shl - (get_local $0) - (get_local $5) - ) - (i32.const 15) + (i32.const 2) ) ) ) - (i32.const 7) + ) + (i32.shr_u + (i32.shl + (get_local $0) + (get_local $5) + ) + (i32.const 15) ) ) - (i32.const 1) - ) - (i32.shl - (get_local $7) - (i32.const 1) ) + (i32.const 7) ) ) - (i32.const 0) + (i32.const 1) + ) + (i32.shl + (get_local $7) + (i32.const 1) ) ) ) - (i32.const 2) + (i32.const 0) ) - (i32.const 1512) ) + (i32.const 2) ) - (i32.store offset=28 + (i32.const 1512) + ) + ) + (i32.store offset=28 + (get_local $1) + (get_local $5) + ) + (i32.store offset=4 + (tee_local $2 + (i32.add (get_local $1) - (get_local $5) + (i32.const 16) ) - (i32.store offset=4 + ) + (i32.const 0) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and (tee_local $2 - (i32.add - (get_local $1) - (i32.const 16) + (i32.load + (i32.const 1212) ) ) - (i32.const 0) - ) - (i32.store - (get_local $2) - (i32.const 0) - ) - (if - (i32.eqz - (i32.and - (tee_local $2 - (i32.load - (i32.const 1212) - ) - ) - (tee_local $7 - (i32.shl - (i32.const 1) - (get_local $5) - ) - ) + (tee_local $7 + (i32.shl + (i32.const 1) + (get_local $5) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $2) - (get_local $7) - ) - ) - (i32.store - (get_local $0) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $0) - ) - (i32.store offset=12 - (get_local $1) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $1) - ) - (br $do-once44) + ) + ) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $2) + (get_local $7) ) ) - (set_local $7 - (i32.shl - (get_local $15) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $5) - (i32.const 1) - ) - ) - (i32.eq - (get_local $5) - (i32.const 31) - ) + (i32.store + (get_local $0) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $0) + ) + (i32.store offset=12 + (get_local $1) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $1) + ) + (br $do-once44) + ) + ) + (set_local $7 + (i32.shl + (get_local $15) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $5) + (i32.const 1) ) ) - ) - (set_local $2 - (i32.load - (get_local $0) + (i32.eq + (get_local $5) + (i32.const 31) ) ) - (if - (i32.eq - (tee_local $8 - (loop $while-in64 (result i32) - (block $while-out63 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $2) - ) - (i32.const -8) - ) - (get_local $15) - ) - (block - (set_local $38 - (get_local $2) - ) - (br $while-out63 - (i32.const 279) - ) + ) + ) + (set_local $2 + (i32.load + (get_local $0) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in64 (result i32) + (block $while-out63 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $2) ) + (i32.const -8) ) - (if (result i32) - (tee_local $5 - (i32.load - (tee_local $0 - (i32.add - (i32.add - (get_local $2) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - ) + (get_local $15) + ) + (block + (set_local $38 + (get_local $2) + ) + (br $while-out63 + (i32.const 279) + ) + ) + ) + (if (result i32) + (tee_local $5 + (i32.load + (tee_local $0 + (i32.add + (i32.add + (get_local $2) + (i32.const 16) ) - ) - ) - (block - (set_local $7 (i32.shl - (get_local $7) - (i32.const 1) + (i32.shr_u + (get_local $7) + (i32.const 31) + ) + (i32.const 2) ) ) - (set_local $2 - (get_local $5) - ) - (br $while-in64) ) - (block (result i32) - (set_local $45 - (get_local $0) - ) - (set_local $53 - (get_local $2) - ) - (i32.const 276) + ) + ) + (block + (set_local $7 + (i32.shl + (get_local $7) + (i32.const 1) ) ) + (set_local $2 + (get_local $5) + ) + (br $while-in64) + ) + (block (result i32) + (set_local $45 + (get_local $0) + ) + (set_local $53 + (get_local $2) + ) + (i32.const 276) ) ) ) - (i32.const 276) ) - (if - (i32.lt_u - (get_local $45) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - (block - (i32.store - (get_local $45) - (get_local $1) - ) - (i32.store offset=24 - (get_local $1) - (get_local $53) - ) - (i32.store offset=12 - (get_local $1) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $1) - ) - ) + ) + (i32.const 276) + ) + (if + (i32.lt_u + (get_local $45) + (i32.load + (i32.const 1224) ) - (if - (i32.eq - (get_local $8) - (i32.const 279) - ) - (if - (i32.and - (i32.ge_u - (tee_local $7 - (i32.load - (tee_local $2 - (i32.add - (get_local $38) - (i32.const 8) - ) - ) - ) - ) - (tee_local $5 - (i32.load - (i32.const 1224) + ) + (call $qa) + (block + (i32.store + (get_local $45) + (get_local $1) + ) + (i32.store offset=24 + (get_local $1) + (get_local $53) + ) + (i32.store offset=12 + (get_local $1) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $1) + ) + ) + ) + (if + (i32.eq + (get_local $8) + (i32.const 279) + ) + (if + (i32.and + (i32.ge_u + (tee_local $7 + (i32.load + (tee_local $2 + (i32.add + (get_local $38) + (i32.const 8) ) ) ) - (i32.ge_u - (get_local $38) - (get_local $5) - ) ) - (block - (i32.store offset=12 - (get_local $7) - (get_local $1) - ) - (i32.store - (get_local $2) - (get_local $1) - ) - (i32.store offset=8 - (get_local $1) - (get_local $7) - ) - (i32.store offset=12 - (get_local $1) - (get_local $38) - ) - (i32.store offset=24 - (get_local $1) - (i32.const 0) + (tee_local $5 + (i32.load + (i32.const 1224) ) ) - (call $qa) + ) + (i32.ge_u + (get_local $38) + (get_local $5) ) ) + (block + (i32.store offset=12 + (get_local $7) + (get_local $1) + ) + (i32.store + (get_local $2) + (get_local $1) + ) + (i32.store offset=8 + (get_local $1) + (get_local $7) + ) + (i32.store offset=12 + (get_local $1) + (get_local $38) + ) + (i32.store offset=24 + (get_local $1) + (i32.const 0) + ) + ) + (call $qa) ) ) ) ) - (set_global $r - (get_local $25) - ) - (return - (i32.add - (get_local $17) - (i32.const 8) - ) + ) + (set_global $r + (get_local $25) + ) + (return + (i32.add + (get_local $17) + (i32.const 8) ) ) ) ) ) - (loop $while-in66 - (block $while-out65 - (if - (i32.le_u - (tee_local $1 - (i32.load - (get_local $30) - ) + ) + (loop $while-in66 + (block $while-out65 + (if + (i32.le_u + (tee_local $1 + (i32.load + (get_local $30) ) - (get_local $12) ) - (if - (i32.gt_u - (tee_local $15 - (i32.add - (get_local $1) - (i32.load offset=4 - (get_local $30) - ) + (get_local $12) + ) + (if + (i32.gt_u + (tee_local $15 + (i32.add + (get_local $1) + (i32.load offset=4 + (get_local $30) ) ) - (get_local $12) ) - (block - (set_local $0 - (get_local $15) - ) - (br $while-out65) + (get_local $12) + ) + (block + (set_local $0 + (get_local $15) ) + (br $while-out65) ) ) - (set_local $30 - (i32.load offset=8 - (get_local $30) - ) + ) + (set_local $30 + (i32.load offset=8 + (get_local $30) ) - (br $while-in66) ) + (br $while-in66) ) - (set_local $15 - (i32.add - (tee_local $17 - (i32.add - (get_local $0) - (i32.const -47) - ) + ) + (set_local $15 + (i32.add + (tee_local $17 + (i32.add + (get_local $0) + (i32.const -47) ) - (i32.const 8) ) + (i32.const 8) ) - (set_local $1 - (i32.add - (tee_local $17 - (select - (get_local $12) - (tee_local $1 - (i32.add - (get_local $17) - (select - (i32.and - (i32.sub - (i32.const 0) - (get_local $15) - ) - (i32.const 7) - ) - (i32.const 0) - (i32.and + ) + (set_local $1 + (i32.add + (tee_local $17 + (select + (get_local $12) + (tee_local $1 + (i32.add + (get_local $17) + (select + (i32.and + (i32.sub + (i32.const 0) (get_local $15) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $15) + (i32.const 7) ) ) ) - (i32.lt_u - (get_local $1) - (tee_local $15 - (i32.add - (get_local $12) - (i32.const 16) - ) + ) + (i32.lt_u + (get_local $1) + (tee_local $15 + (i32.add + (get_local $12) + (i32.const 16) ) ) ) ) - (i32.const 8) ) + (i32.const 8) ) - (i32.store - (i32.const 1232) - (tee_local $4 - (i32.add - (get_local $20) - (tee_local $14 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $20) - (i32.const 8) - ) + ) + (i32.store + (i32.const 1232) + (tee_local $4 + (i32.add + (get_local $20) + (tee_local $14 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 1220) - (tee_local $7 - (i32.sub - (i32.add - (get_local $26) - (i32.const -40) - ) - (get_local $14) - ) - ) - ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $7) - (i32.const 1) - ) - ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $7) - ) - (i32.const 40) - ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) - ) - (i32.store - (tee_local $7 + ) + (i32.store + (i32.const 1220) + (tee_local $7 + (i32.sub (i32.add - (get_local $17) - (i32.const 4) + (get_local $26) + (i32.const -40) ) + (get_local $14) ) - (i32.const 27) ) - (i32.store - (get_local $1) - (i32.load - (i32.const 1656) - ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $7) + (i32.const 1) ) - (i32.store offset=4 - (get_local $1) - (i32.load - (i32.const 1660) - ) + ) + (i32.store offset=4 + (i32.add + (get_local $4) + (get_local $7) ) - (i32.store offset=8 - (get_local $1) - (i32.load - (i32.const 1664) - ) + (i32.const 40) + ) + (i32.store + (i32.const 1236) + (i32.load + (i32.const 1696) ) - (i32.store offset=12 - (get_local $1) - (i32.load - (i32.const 1668) + ) + (i32.store + (tee_local $7 + (i32.add + (get_local $17) + (i32.const 4) ) ) - (i32.store + (i32.const 27) + ) + (i32.store + (get_local $1) + (i32.load (i32.const 1656) - (get_local $20) ) - (i32.store + ) + (i32.store offset=4 + (get_local $1) + (i32.load (i32.const 1660) - (get_local $26) ) - (i32.store + ) + (i32.store offset=8 + (get_local $1) + (i32.load + (i32.const 1664) + ) + ) + (i32.store offset=12 + (get_local $1) + (i32.load (i32.const 1668) - (i32.const 0) ) + ) + (i32.store + (i32.const 1656) + (get_local $20) + ) + (i32.store + (i32.const 1660) + (get_local $26) + ) + (i32.store + (i32.const 1668) + (i32.const 0) + ) + (i32.store + (i32.const 1664) + (get_local $1) + ) + (set_local $1 + (i32.add + (get_local $17) + (i32.const 24) + ) + ) + (loop $do-in68 (i32.store - (i32.const 1664) - (get_local $1) + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + (i32.const 7) ) - (set_local $1 - (i32.add - (get_local $17) - (i32.const 24) + (br_if $do-in68 + (i32.lt_u + (i32.add + (get_local $1) + (i32.const 4) + ) + (get_local $0) ) ) - (loop $do-in68 + ) + (if + (i32.ne + (get_local $17) + (get_local $12) + ) + (block (i32.store - (tee_local $1 - (i32.add - (get_local $1) - (i32.const 4) + (get_local $7) + (i32.and + (i32.load + (get_local $7) ) + (i32.const -2) ) - (i32.const 7) ) - (br_if $do-in68 - (i32.lt_u - (i32.add - (get_local $1) - (i32.const 4) + (i32.store offset=4 + (get_local $12) + (i32.or + (tee_local $1 + (i32.sub + (get_local $17) + (get_local $12) + ) ) - (get_local $0) + (i32.const 1) ) ) - ) - (if - (i32.ne + (i32.store (get_local $17) - (get_local $12) + (get_local $1) ) - (block - (i32.store - (get_local $7) - (i32.and - (i32.load - (get_local $7) - ) - (i32.const -2) - ) - ) - (i32.store offset=4 - (get_local $12) - (i32.or - (tee_local $1 - (i32.sub - (get_local $17) - (get_local $12) - ) - ) - (i32.const 1) - ) - ) - (i32.store - (get_local $17) + (set_local $4 + (i32.shr_u (get_local $1) + (i32.const 3) ) - (set_local $4 - (i32.shr_u - (get_local $1) - (i32.const 3) - ) + ) + (if + (i32.lt_u + (get_local $1) + (i32.const 256) ) - (if - (i32.lt_u - (get_local $1) - (i32.const 256) + (block + (set_local $14 + (i32.add + (i32.shl + (get_local $4) + (i32.const 3) + ) + (i32.const 1248) + ) ) - (block - (set_local $14 - (i32.add + (if + (i32.and + (tee_local $2 + (i32.load + (i32.const 1208) + ) + ) + (tee_local $5 (i32.shl + (i32.const 1) (get_local $4) - (i32.const 3) ) - (i32.const 1248) ) ) (if - (i32.and + (i32.lt_u (tee_local $2 (i32.load - (i32.const 1208) - ) - ) - (tee_local $5 - (i32.shl - (i32.const 1) - (get_local $4) - ) - ) - ) - (if - (i32.lt_u - (tee_local $2 - (i32.load - (tee_local $5 - (i32.add - (get_local $14) - (i32.const 8) - ) + (tee_local $5 + (i32.add + (get_local $14) + (i32.const 8) ) ) ) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (set_local $46 - (get_local $5) - ) - (set_local $39 - (get_local $2) - ) + (i32.load + (i32.const 1224) ) ) + (call $qa) (block - (i32.store - (i32.const 1208) - (i32.or - (get_local $2) - (get_local $5) - ) - ) (set_local $46 - (i32.add - (get_local $14) - (i32.const 8) - ) + (get_local $5) ) (set_local $39 - (get_local $14) + (get_local $2) ) ) ) - (i32.store - (get_local $46) - (get_local $12) - ) - (i32.store offset=12 - (get_local $39) - (get_local $12) - ) - (i32.store offset=8 - (get_local $12) - (get_local $39) - ) - (i32.store offset=12 - (get_local $12) - (get_local $14) + (block + (i32.store + (i32.const 1208) + (i32.or + (get_local $2) + (get_local $5) + ) + ) + (set_local $46 + (i32.add + (get_local $14) + (i32.const 8) + ) + ) + (set_local $39 + (get_local $14) + ) ) - (br $do-once38) ) + (i32.store + (get_local $46) + (get_local $12) + ) + (i32.store offset=12 + (get_local $39) + (get_local $12) + ) + (i32.store offset=8 + (get_local $12) + (get_local $39) + ) + (i32.store offset=12 + (get_local $12) + (get_local $14) + ) + (br $do-once38) ) - (set_local $0 - (i32.add - (i32.shl - (tee_local $2 + ) + (set_local $0 + (i32.add + (i32.shl + (tee_local $2 + (if (result i32) + (tee_local $14 + (i32.shr_u + (get_local $1) + (i32.const 8) + ) + ) (if (result i32) - (tee_local $14 - (i32.shr_u - (get_local $1) - (i32.const 8) - ) + (i32.gt_u + (get_local $1) + (i32.const 16777215) ) - (if (result i32) - (i32.gt_u - (get_local $1) - (i32.const 16777215) - ) - (i32.const 31) - (i32.or - (i32.and - (i32.shr_u - (get_local $1) - (i32.add - (tee_local $0 - (i32.add - (i32.sub - (i32.const 14) + (i32.const 31) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.add + (tee_local $0 + (i32.add + (i32.sub + (i32.const 14) + (i32.or (i32.or - (i32.or - (tee_local $14 - (i32.and - (i32.shr_u - (i32.add - (tee_local $5 - (i32.shl - (get_local $14) - (tee_local $2 - (i32.and - (i32.shr_u - (i32.add - (get_local $14) - (i32.const 1048320) - ) - (i32.const 16) + (tee_local $14 + (i32.and + (i32.shr_u + (i32.add + (tee_local $5 + (i32.shl + (get_local $14) + (tee_local $2 + (i32.and + (i32.shr_u + (i32.add + (get_local $14) + (i32.const 1048320) ) - (i32.const 8) + (i32.const 16) ) + (i32.const 8) ) ) ) - (i32.const 520192) ) - (i32.const 16) + (i32.const 520192) ) - (i32.const 4) + (i32.const 16) ) + (i32.const 4) ) - (get_local $2) ) - (tee_local $5 - (i32.and - (i32.shr_u - (i32.add - (tee_local $4 - (i32.shl - (get_local $5) - (get_local $14) - ) + (get_local $2) + ) + (tee_local $5 + (i32.and + (i32.shr_u + (i32.add + (tee_local $4 + (i32.shl + (get_local $5) + (get_local $14) ) - (i32.const 245760) ) - (i32.const 16) + (i32.const 245760) ) - (i32.const 2) + (i32.const 16) ) + (i32.const 2) ) ) ) - (i32.shr_u - (i32.shl - (get_local $4) - (get_local $5) - ) - (i32.const 15) + ) + (i32.shr_u + (i32.shl + (get_local $4) + (get_local $5) ) + (i32.const 15) ) ) - (i32.const 7) ) + (i32.const 7) ) - (i32.const 1) - ) - (i32.shl - (get_local $0) - (i32.const 1) ) + (i32.const 1) + ) + (i32.shl + (get_local $0) + (i32.const 1) ) ) - (i32.const 0) ) + (i32.const 0) ) - (i32.const 2) ) - (i32.const 1512) + (i32.const 2) ) + (i32.const 1512) ) - (i32.store offset=28 - (get_local $12) - (get_local $2) + ) + (i32.store offset=28 + (get_local $12) + (get_local $2) + ) + (i32.store offset=20 + (get_local $12) + (i32.const 0) + ) + (i32.store + (get_local $15) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (tee_local $5 + (i32.load + (i32.const 1212) + ) + ) + (tee_local $4 + (i32.shl + (i32.const 1) + (get_local $2) + ) + ) + ) ) - (i32.store offset=20 - (get_local $12) - (i32.const 0) + (block + (i32.store + (i32.const 1212) + (i32.or + (get_local $5) + (get_local $4) + ) + ) + (i32.store + (get_local $0) + (get_local $12) + ) + (i32.store offset=24 + (get_local $12) + (get_local $0) + ) + (i32.store offset=12 + (get_local $12) + (get_local $12) + ) + (i32.store offset=8 + (get_local $12) + (get_local $12) + ) + (br $do-once38) ) - (i32.store - (get_local $15) - (i32.const 0) + ) + (set_local $4 + (i32.shl + (get_local $1) + (select + (i32.const 0) + (i32.sub + (i32.const 25) + (i32.shr_u + (get_local $2) + (i32.const 1) + ) + ) + (i32.eq + (get_local $2) + (i32.const 31) + ) + ) ) - (if - (i32.eqz - (i32.and - (tee_local $5 - (i32.load - (i32.const 1212) + ) + (set_local $5 + (i32.load + (get_local $0) + ) + ) + (if + (i32.eq + (tee_local $8 + (loop $while-in70 (result i32) + (block $while-out69 (result i32) + (if + (i32.eq + (i32.and + (i32.load offset=4 + (get_local $5) + ) + (i32.const -8) + ) + (get_local $1) + ) + (block + (set_local $31 + (get_local $5) + ) + (br $while-out69 + (i32.const 305) + ) + ) ) - ) - (tee_local $4 - (i32.shl - (i32.const 1) - (get_local $2) + (if (result i32) + (tee_local $2 + (i32.load + (tee_local $0 + (i32.add + (i32.add + (get_local $5) + (i32.const 16) + ) + (i32.shl + (i32.shr_u + (get_local $4) + (i32.const 31) + ) + (i32.const 2) + ) + ) + ) + ) + ) + (block + (set_local $4 + (i32.shl + (get_local $4) + (i32.const 1) + ) + ) + (set_local $5 + (get_local $2) + ) + (br $while-in70) + ) + (block (result i32) + (set_local $47 + (get_local $0) + ) + (set_local $54 + (get_local $5) + ) + (i32.const 302) + ) ) ) ) ) - (block - (i32.store - (i32.const 1212) - (i32.or - (get_local $5) - (get_local $4) - ) + (i32.const 302) + ) + (if + (i32.lt_u + (get_local $47) + (i32.load + (i32.const 1224) ) + ) + (call $qa) + (block (i32.store - (get_local $0) + (get_local $47) (get_local $12) ) (i32.store offset=24 (get_local $12) - (get_local $0) + (get_local $54) ) (i32.store offset=12 (get_local $12) @@ -5476,323 +5560,199 @@ (get_local $12) (get_local $12) ) - (br $do-once38) - ) - ) - (set_local $4 - (i32.shl - (get_local $1) - (select - (i32.const 0) - (i32.sub - (i32.const 25) - (i32.shr_u - (get_local $2) - (i32.const 1) - ) - ) - (i32.eq - (get_local $2) - (i32.const 31) - ) - ) - ) - ) - (set_local $5 - (i32.load - (get_local $0) ) ) (if (i32.eq - (tee_local $8 - (loop $while-in70 (result i32) - (block $while-out69 (result i32) - (if - (i32.eq - (i32.and - (i32.load offset=4 - (get_local $5) - ) - (i32.const -8) - ) - (get_local $1) - ) - (block - (set_local $31 - (get_local $5) - ) - (br $while-out69 - (i32.const 305) + (get_local $8) + (i32.const 305) + ) + (if + (i32.and + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $5 + (i32.add + (get_local $31) + (i32.const 8) ) ) ) - (if (result i32) - (tee_local $2 - (i32.load - (tee_local $0 - (i32.add - (i32.add - (get_local $5) - (i32.const 16) - ) - (i32.shl - (i32.shr_u - (get_local $4) - (i32.const 31) - ) - (i32.const 2) - ) - ) - ) - ) - ) - (block - (set_local $4 - (i32.shl - (get_local $4) - (i32.const 1) - ) - ) - (set_local $5 - (get_local $2) - ) - (br $while-in70) - ) - (block (result i32) - (set_local $47 - (get_local $0) - ) - (set_local $54 - (get_local $5) - ) - (i32.const 302) - ) + ) + (tee_local $1 + (i32.load + (i32.const 1224) ) ) ) - ) - (i32.const 302) - ) - (if - (i32.lt_u - (get_local $47) - (i32.load - (i32.const 1224) + (i32.ge_u + (get_local $31) + (get_local $1) ) ) - (call $qa) (block + (i32.store offset=12 + (get_local $4) + (get_local $12) + ) (i32.store - (get_local $47) + (get_local $5) (get_local $12) ) - (i32.store offset=24 + (i32.store offset=8 (get_local $12) - (get_local $54) + (get_local $4) ) (i32.store offset=12 (get_local $12) - (get_local $12) + (get_local $31) ) - (i32.store offset=8 - (get_local $12) + (i32.store offset=24 (get_local $12) + (i32.const 0) ) ) - ) - (if - (i32.eq - (get_local $8) - (i32.const 305) - ) - (if - (i32.and - (i32.ge_u - (tee_local $4 - (i32.load - (tee_local $5 - (i32.add - (get_local $31) - (i32.const 8) - ) - ) - ) - ) - (tee_local $1 - (i32.load - (i32.const 1224) - ) - ) - ) - (i32.ge_u - (get_local $31) - (get_local $1) - ) - ) - (block - (i32.store offset=12 - (get_local $4) - (get_local $12) - ) - (i32.store - (get_local $5) - (get_local $12) - ) - (i32.store offset=8 - (get_local $12) - (get_local $4) - ) - (i32.store offset=12 - (get_local $12) - (get_local $31) - ) - (i32.store offset=24 - (get_local $12) - (i32.const 0) - ) - ) - (call $qa) - ) + (call $qa) ) ) ) ) ) - (block - (if - (i32.or - (i32.eqz - (tee_local $4 - (i32.load - (i32.const 1224) - ) + ) + (block + (if + (i32.or + (i32.eqz + (tee_local $4 + (i32.load + (i32.const 1224) ) ) - (i32.lt_u - (get_local $20) - (get_local $4) - ) ) - (i32.store - (i32.const 1224) + (i32.lt_u (get_local $20) + (get_local $4) ) ) (i32.store - (i32.const 1656) + (i32.const 1224) (get_local $20) ) - (i32.store - (i32.const 1660) - (get_local $26) - ) - (i32.store - (i32.const 1668) - (i32.const 0) + ) + (i32.store + (i32.const 1656) + (get_local $20) + ) + (i32.store + (i32.const 1660) + (get_local $26) + ) + (i32.store + (i32.const 1668) + (i32.const 0) + ) + (i32.store + (i32.const 1244) + (i32.load + (i32.const 1680) ) - (i32.store - (i32.const 1244) - (i32.load - (i32.const 1680) + ) + (i32.store + (i32.const 1240) + (i32.const -1) + ) + (set_local $4 + (i32.const 0) + ) + (loop $do-in + (i32.store offset=12 + (tee_local $14 + (i32.add + (i32.shl + (get_local $4) + (i32.const 3) + ) + (i32.const 1248) + ) ) + (get_local $14) ) - (i32.store - (i32.const 1240) - (i32.const -1) - ) - (set_local $4 - (i32.const 0) + (i32.store offset=8 + (get_local $14) + (get_local $14) ) - (loop $do-in - (i32.store offset=12 - (tee_local $14 + (br_if $do-in + (i32.ne + (tee_local $4 (i32.add - (i32.shl - (get_local $4) - (i32.const 3) - ) - (i32.const 1248) - ) - ) - (get_local $14) - ) - (i32.store offset=8 - (get_local $14) - (get_local $14) - ) - (br_if $do-in - (i32.ne - (tee_local $4 - (i32.add - (get_local $4) - (i32.const 1) - ) + (get_local $4) + (i32.const 1) ) - (i32.const 32) ) + (i32.const 32) ) ) - (i32.store - (i32.const 1232) - (tee_local $4 - (i32.add - (get_local $20) - (tee_local $14 - (select - (i32.and - (i32.sub - (i32.const 0) - (tee_local $4 - (i32.add - (get_local $20) - (i32.const 8) - ) + ) + (i32.store + (i32.const 1232) + (tee_local $4 + (i32.add + (get_local $20) + (tee_local $14 + (select + (i32.and + (i32.sub + (i32.const 0) + (tee_local $4 + (i32.add + (get_local $20) + (i32.const 8) ) ) - (i32.const 7) - ) - (i32.const 0) - (i32.and - (get_local $4) - (i32.const 7) ) + (i32.const 7) + ) + (i32.const 0) + (i32.and + (get_local $4) + (i32.const 7) ) ) ) ) ) - (i32.store - (i32.const 1220) - (tee_local $1 - (i32.sub - (i32.add - (get_local $26) - (i32.const -40) - ) - (get_local $14) + ) + (i32.store + (i32.const 1220) + (tee_local $1 + (i32.sub + (i32.add + (get_local $26) + (i32.const -40) ) + (get_local $14) ) ) - (i32.store offset=4 - (get_local $4) - (i32.or - (get_local $1) - (i32.const 1) - ) + ) + (i32.store offset=4 + (get_local $4) + (i32.or + (get_local $1) + (i32.const 1) ) - (i32.store offset=4 - (i32.add - (get_local $4) - (get_local $1) - ) - (i32.const 40) + ) + (i32.store offset=4 + (i32.add + (get_local $4) + (get_local $1) ) - (i32.store - (i32.const 1236) - (i32.load - (i32.const 1696) - ) + (i32.const 40) + ) + (i32.store + (i32.const 1236) + (i32.load + (i32.const 1696) ) ) ) @@ -5947,279 +5907,329 @@ ) ) ) - (block $do-once - (if - (i32.and - (get_local $4) - (i32.const 1) + (if + (i32.and + (get_local $4) + (i32.const 1) + ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 + (set_local $7 + (get_local $6) + ) + ) + (block $do-once + (set_local $10 + (i32.load (get_local $1) ) - (set_local $7 - (get_local $6) - ) ) - (block - (set_local $10 - (i32.load - (get_local $1) - ) - ) - (if - (i32.eqz - (get_local $0) - ) - (return) + (if + (i32.eqz + (get_local $0) ) - (set_local $6 - (i32.add - (get_local $10) - (get_local $6) - ) + (return) + ) + (set_local $6 + (i32.add + (get_local $10) + (get_local $6) ) - (if - (i32.lt_u - (tee_local $1 - (i32.sub - (get_local $1) - (get_local $10) - ) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.sub + (get_local $1) + (get_local $10) ) - (get_local $14) ) - (call $qa) + (get_local $14) ) - (if - (i32.eq - (get_local $1) - (i32.load - (i32.const 1228) - ) + (call $qa) + ) + (if + (i32.eq + (get_local $1) + (i32.load + (i32.const 1228) ) - (block - (if - (i32.ne - (i32.and - (tee_local $3 - (i32.load - (tee_local $0 - (i32.add - (get_local $8) - (i32.const 4) - ) + ) + (block + (if + (i32.ne + (i32.and + (tee_local $3 + (i32.load + (tee_local $0 + (i32.add + (get_local $8) + (i32.const 4) ) ) ) - (i32.const 3) ) (i32.const 3) ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) - ) - ) - (i32.store - (i32.const 1216) - (get_local $6) + (i32.const 3) ) - (i32.store - (get_local $0) - (i32.and - (get_local $3) - (i32.const -2) + (block + (set_local $2 + (get_local $1) ) - ) - (i32.store offset=4 - (get_local $1) - (i32.or + (set_local $7 (get_local $6) - (i32.const 1) ) + (br $do-once) ) - (i32.store - (i32.add - (get_local $1) - (get_local $6) - ) + ) + (i32.store + (i32.const 1216) + (get_local $6) + ) + (i32.store + (get_local $0) + (i32.and + (get_local $3) + (i32.const -2) + ) + ) + (i32.store offset=4 + (get_local $1) + (i32.or (get_local $6) + (i32.const 1) ) - (return) ) - ) - (set_local $3 - (i32.shr_u - (get_local $10) - (i32.const 3) + (i32.store + (i32.add + (get_local $1) + (get_local $6) + ) + (get_local $6) ) + (return) ) - (if - (i32.lt_u - (get_local $10) - (i32.const 256) + ) + (set_local $3 + (i32.shr_u + (get_local $10) + (i32.const 3) + ) + ) + (if + (i32.lt_u + (get_local $10) + (i32.const 256) + ) + (block + (set_local $0 + (i32.load offset=12 + (get_local $1) + ) ) - (block - (set_local $0 - (i32.load offset=12 - (get_local $1) + (if + (i32.ne + (tee_local $10 + (i32.load offset=8 + (get_local $1) + ) ) - ) - (if - (i32.ne - (tee_local $10 - (i32.load offset=8 - (get_local $1) + (tee_local $4 + (i32.add + (i32.shl + (get_local $3) + (i32.const 3) ) + (i32.const 1248) ) - (tee_local $4 - (i32.add - (i32.shl - (get_local $3) - (i32.const 3) - ) - (i32.const 1248) - ) + ) + ) + (block + (if + (i32.lt_u + (get_local $10) + (get_local $14) ) + (call $qa) ) - (block - (if - (i32.lt_u + (if + (i32.ne + (i32.load offset=12 (get_local $10) - (get_local $14) - ) - (call $qa) - ) - (if - (i32.ne - (i32.load offset=12 - (get_local $10) - ) - (get_local $1) ) - (call $qa) + (get_local $1) ) + (call $qa) ) ) - (if - (i32.eq - (get_local $0) - (get_local $10) - ) - (block - (i32.store - (i32.const 1208) - (i32.and - (i32.load - (i32.const 1208) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $3) - ) - (i32.const -1) + ) + (if + (i32.eq + (get_local $0) + (get_local $10) + ) + (block + (i32.store + (i32.const 1208) + (i32.and + (i32.load + (i32.const 1208) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $3) ) + (i32.const -1) ) ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) ) + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) + (br $do-once) ) - (if - (i32.eq + ) + (if + (i32.eq + (get_local $0) + (get_local $4) + ) + (set_local $9 + (i32.add (get_local $0) - (get_local $4) + (i32.const 8) ) - (set_local $9 - (i32.add + ) + (block + (if + (i32.lt_u (get_local $0) - (i32.const 8) + (get_local $14) ) + (call $qa) ) - (block - (if - (i32.lt_u - (get_local $0) - (get_local $14) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (get_local $1) ) - (set_local $9 - (get_local $4) - ) - (call $qa) + (get_local $1) ) + (set_local $9 + (get_local $4) + ) + (call $qa) ) ) - (i32.store offset=12 - (get_local $10) - (get_local $0) - ) - (i32.store - (get_local $9) - (get_local $10) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) ) - ) - (set_local $10 - (i32.load offset=24 + (i32.store offset=12 + (get_local $10) + (get_local $0) + ) + (i32.store + (get_local $9) + (get_local $10) + ) + (set_local $2 (get_local $1) ) + (set_local $7 + (get_local $6) + ) + (br $do-once) + ) + ) + (set_local $10 + (i32.load offset=24 + (get_local $1) + ) + ) + (if + (i32.eq + (tee_local $0 + (i32.load offset=12 + (get_local $1) + ) + ) + (get_local $1) ) (block $do-once0 (if - (i32.eq - (tee_local $0 - (i32.load offset=12 - (get_local $1) + (tee_local $9 + (i32.load + (tee_local $3 + (i32.add + (tee_local $4 + (i32.add + (get_local $1) + (i32.const 16) + ) + ) + (i32.const 4) + ) ) ) - (get_local $1) ) (block - (if + (set_local $0 + (get_local $9) + ) + (set_local $4 + (get_local $3) + ) + ) + (br_if $do-once0 + (i32.eqz + (tee_local $0 + (i32.load + (get_local $4) + ) + ) + ) + ) + ) + (loop $while-in + (if + (tee_local $9 + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 20) + ) + ) + ) + ) + (block + (set_local $0 + (get_local $9) + ) + (set_local $4 + (get_local $3) + ) + (br $while-in) + ) + ) + (set_local $3 + (if (result i32) (tee_local $9 (i32.load (tee_local $3 (i32.add - (tee_local $4 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - (i32.const 4) + (get_local $0) + (i32.const 16) ) ) ) @@ -6231,322 +6241,260 @@ (set_local $4 (get_local $3) ) + (br $while-in) ) - (br_if $do-once0 - (i32.eqz - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + (block (result i32) + (set_local $12 + (get_local $0) ) + (get_local $4) ) ) - (loop $while-in - (if - (tee_local $9 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 20) - ) - ) - ) + ) + ) + (if + (i32.lt_u + (get_local $3) + (get_local $14) + ) + (call $qa) + (block + (i32.store + (get_local $3) + (i32.const 0) + ) + (set_local $5 + (get_local $12) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $3 + (i32.load offset=8 + (get_local $1) + ) + ) + (get_local $14) + ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $9 + (i32.add + (get_local $3) + (i32.const 12) ) - (block - (set_local $0 - (get_local $9) - ) - (set_local $4 - (get_local $3) - ) - (br $while-in) + ) + ) + (get_local $1) + ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $0) + (i32.const 8) ) ) - (set_local $3 - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $3 - (i32.add - (get_local $0) - (i32.const 16) - ) + ) + (get_local $1) + ) + (block + (i32.store + (get_local $9) + (get_local $0) + ) + (i32.store + (get_local $4) + (get_local $3) + ) + (set_local $5 + (get_local $0) + ) + ) + (call $qa) + ) + ) + ) + (if + (get_local $10) + (block + (if + (i32.eq + (get_local $1) + (i32.load + (tee_local $3 + (i32.add + (i32.shl + (tee_local $0 + (i32.load offset=28 + (get_local $1) ) ) + (i32.const 2) ) - (block - (set_local $0 - (get_local $9) - ) - (set_local $4 - (get_local $3) - ) - (br $while-in) - ) - (block (result i32) - (set_local $12 - (get_local $0) - ) - (get_local $4) - ) + (i32.const 1512) ) ) ) + ) + (block + (i32.store + (get_local $3) + (get_local $5) + ) (if - (i32.lt_u - (get_local $3) - (get_local $14) + (i32.eqz + (get_local $5) ) - (call $qa) (block (i32.store - (get_local $3) - (i32.const 0) + (i32.const 1212) + (i32.and + (i32.load + (i32.const 1212) + ) + (i32.xor + (i32.shl + (i32.const 1) + (get_local $0) + ) + (i32.const -1) + ) + ) ) - (set_local $5 - (get_local $12) + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) ) + (br $do-once) ) ) ) (block (if (i32.lt_u - (tee_local $3 - (i32.load offset=8 - (get_local $1) - ) + (get_local $10) + (i32.load + (i32.const 1224) ) - (get_local $14) ) (call $qa) ) (if - (i32.ne + (i32.eq (i32.load - (tee_local $9 + (tee_local $0 (i32.add - (get_local $3) - (i32.const 12) + (get_local $10) + (i32.const 16) ) ) ) (get_local $1) ) - (call $qa) + (i32.store + (get_local $0) + (get_local $5) + ) + (i32.store offset=20 + (get_local $10) + (get_local $5) + ) ) (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $0) - (i32.const 8) - ) - ) - ) - (get_local $1) + (i32.eqz + (get_local $5) ) (block - (i32.store - (get_local $9) - (get_local $0) - ) - (i32.store - (get_local $4) - (get_local $3) + (set_local $2 + (get_local $1) ) - (set_local $5 - (get_local $0) + (set_local $7 + (get_local $6) ) + (br $do-once) ) - (call $qa) ) ) ) - ) - (if - (get_local $10) - (block - (if - (i32.eq - (get_local $1) + (if + (i32.lt_u + (get_local $5) + (tee_local $0 (i32.load - (tee_local $3 - (i32.add - (i32.shl - (tee_local $0 - (i32.load offset=28 - (get_local $1) - ) - ) - (i32.const 2) - ) - (i32.const 1512) - ) - ) - ) - ) - (block - (i32.store - (get_local $3) - (get_local $5) - ) - (if - (i32.eqz - (get_local $5) - ) - (block - (i32.store - (i32.const 1212) - (i32.and - (i32.load - (i32.const 1212) - ) - (i32.xor - (i32.shl - (i32.const 1) - (get_local $0) - ) - (i32.const -1) - ) - ) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) - ) + (i32.const 1224) ) ) - (block - (if - (i32.lt_u - (get_local $10) - (i32.load - (i32.const 1224) - ) - ) - (call $qa) - ) - (if - (i32.eq - (i32.load - (tee_local $0 - (i32.add - (get_local $10) - (i32.const 16) - ) - ) - ) + ) + (call $qa) + ) + (i32.store offset=24 + (get_local $5) + (get_local $10) + ) + (if + (tee_local $4 + (i32.load + (tee_local $3 + (i32.add (get_local $1) - ) - (i32.store - (get_local $0) - (get_local $5) - ) - (i32.store offset=20 - (get_local $10) - (get_local $5) - ) - ) - (if - (i32.eqz - (get_local $5) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) - (br $do-once) + (i32.const 16) ) ) ) ) (if (i32.lt_u - (get_local $5) - (tee_local $0 - (i32.load - (i32.const 1224) - ) - ) + (get_local $4) + (get_local $0) ) (call $qa) - ) - (i32.store offset=24 - (get_local $5) - (get_local $10) - ) - (if - (tee_local $4 - (i32.load - (tee_local $3 - (i32.add - (get_local $1) - (i32.const 16) - ) - ) - ) - ) - (if - (i32.lt_u + (block + (i32.store offset=16 + (get_local $5) (get_local $4) - (get_local $0) ) - (call $qa) - (block - (i32.store offset=16 - (get_local $5) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $5) - ) + (i32.store offset=24 + (get_local $4) + (get_local $5) ) ) ) + ) + (if + (tee_local $4 + (i32.load offset=4 + (get_local $3) + ) + ) (if - (tee_local $4 - (i32.load offset=4 - (get_local $3) + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 1224) ) ) - (if - (i32.lt_u + (call $qa) + (block + (i32.store offset=20 + (get_local $5) (get_local $4) - (i32.load - (i32.const 1224) - ) ) - (call $qa) - (block - (i32.store offset=20 - (get_local $5) - (get_local $4) - ) - (i32.store offset=24 - (get_local $4) - (get_local $5) - ) - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) - ) + (i32.store offset=24 + (get_local $4) + (get_local $5) ) - ) - (block (set_local $2 (get_local $1) ) @@ -6555,16 +6503,24 @@ ) ) ) - ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $7 - (get_local $6) + (block + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) ) ) ) + (block + (set_local $2 + (get_local $1) + ) + (set_local $7 + (get_local $6) + ) + ) ) ) ) @@ -6860,169 +6816,167 @@ (get_local $8) ) ) - (block $do-once6 - (if - (i32.eq - (tee_local $3 - (i32.load offset=12 - (get_local $8) - ) + (if + (i32.eq + (tee_local $3 + (i32.load offset=12 + (get_local $8) ) - (get_local $8) ) - (block - (set_local $7 - (if (result i32) - (tee_local $9 - (i32.load - (tee_local $0 - (i32.add - (tee_local $4 - (i32.add - (get_local $8) - (i32.const 16) - ) + (get_local $8) + ) + (block $do-once6 + (set_local $7 + (if (result i32) + (tee_local $9 + (i32.load + (tee_local $0 + (i32.add + (tee_local $4 + (i32.add + (get_local $8) + (i32.const 16) ) - (i32.const 4) ) + (i32.const 4) ) ) ) - (block (result i32) - (set_local $4 - (get_local $0) - ) - (get_local $9) - ) - (if (result i32) - (tee_local $0 - (i32.load - (get_local $4) - ) - ) + ) + (block (result i32) + (set_local $4 (get_local $0) - (br $do-once6) ) + (get_local $9) ) - ) - (loop $while-in9 - (if - (tee_local $9 + (if (result i32) + (tee_local $0 (i32.load - (tee_local $0 - (i32.add - (get_local $7) - (i32.const 20) - ) - ) - ) - ) - (block - (set_local $7 - (get_local $9) - ) - (set_local $4 - (get_local $0) + (get_local $4) ) - (br $while-in9) ) + (get_local $0) + (br $do-once6) ) - (if - (tee_local $9 - (i32.load - (tee_local $0 - (i32.add - (get_local $7) - (i32.const 16) - ) + ) + ) + (loop $while-in9 + (if + (tee_local $9 + (i32.load + (tee_local $0 + (i32.add + (get_local $7) + (i32.const 20) ) ) ) - (block - (set_local $7 - (get_local $9) - ) - (set_local $4 - (get_local $0) - ) - (br $while-in9) + ) + (block + (set_local $7 + (get_local $9) ) + (set_local $4 + (get_local $0) + ) + (br $while-in9) ) ) (if - (i32.lt_u - (get_local $4) + (tee_local $9 (i32.load - (i32.const 1224) + (tee_local $0 + (i32.add + (get_local $7) + (i32.const 16) + ) + ) ) ) - (call $qa) (block - (i32.store - (get_local $4) - (i32.const 0) + (set_local $7 + (get_local $9) ) - (set_local $11 - (get_local $7) + (set_local $4 + (get_local $0) ) + (br $while-in9) ) ) ) - (block - (if - (i32.lt_u - (tee_local $0 - (i32.load offset=8 - (get_local $8) - ) - ) - (i32.load - (i32.const 1224) + (if + (i32.lt_u + (get_local $4) + (i32.load + (i32.const 1224) + ) + ) + (call $qa) + (block + (i32.store + (get_local $4) + (i32.const 0) + ) + (set_local $11 + (get_local $7) + ) + ) + ) + ) + (block + (if + (i32.lt_u + (tee_local $0 + (i32.load offset=8 + (get_local $8) ) ) - (call $qa) + (i32.load + (i32.const 1224) + ) ) - (if - (i32.ne - (i32.load - (tee_local $9 - (i32.add - (get_local $0) - (i32.const 12) - ) + (call $qa) + ) + (if + (i32.ne + (i32.load + (tee_local $9 + (i32.add + (get_local $0) + (i32.const 12) ) ) - (get_local $8) ) - (call $qa) + (get_local $8) ) - (if - (i32.eq - (i32.load - (tee_local $4 - (i32.add - (get_local $3) - (i32.const 8) - ) + (call $qa) + ) + (if + (i32.eq + (i32.load + (tee_local $4 + (i32.add + (get_local $3) + (i32.const 8) ) ) - (get_local $8) ) - (block - (i32.store - (get_local $9) - (get_local $3) - ) - (i32.store - (get_local $4) - (get_local $0) - ) - (set_local $11 - (get_local $3) - ) + (get_local $8) + ) + (block + (i32.store + (get_local $9) + (get_local $3) + ) + (i32.store + (get_local $4) + (get_local $0) + ) + (set_local $11 + (get_local $3) ) - (call $qa) ) + (call $qa) ) ) ) @@ -8113,169 +8067,165 @@ ) ) ) - (block $label$break$a - (if - (i32.eq - (get_local $7) - (i32.const 5) - ) - (block - (if - (i32.lt_u - (i32.sub - (get_local $6) - (tee_local $3 - (i32.load - (tee_local $5 - (i32.add - (get_local $2) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 5) + ) + (block $label$break$a + (if + (i32.lt_u + (i32.sub + (get_local $6) + (tee_local $3 + (i32.load + (tee_local $5 + (i32.add + (get_local $2) + (i32.const 20) ) ) ) ) - (get_local $1) ) - (block - (set_local $4 - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) - (get_local $0) - (get_local $1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 3) + (get_local $1) + ) + (block + (set_local $4 + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $2) ) - (i32.const 2) + (i32.const 3) ) + (i32.const 2) ) ) - (br $label$break$a) ) + (br $label$break$a) ) - (set_local $4 - (get_local $3) + ) + (set_local $4 + (get_local $3) + ) + (if + (i32.gt_s + (i32.load8_s offset=75 + (get_local $2) + ) + (i32.const -1) ) (block $label$break$b - (if - (i32.gt_s - (i32.load8_s offset=75 - (get_local $2) - ) - (i32.const -1) - ) - (block - (set_local $3 - (get_local $1) + (set_local $3 + (get_local $1) + ) + (loop $while-in + (if + (i32.eqz + (get_local $3) ) - (loop $while-in - (if - (i32.eqz - (get_local $3) - ) - (block - (set_local $3 - (i32.const 0) - ) - (br $label$break$b) - ) - ) - (if - (i32.ne - (i32.load8_s - (i32.add - (get_local $0) - (tee_local $6 - (i32.add - (get_local $3) - (i32.const -1) - ) - ) - ) - ) - (i32.const 10) - ) - (block - (set_local $3 - (get_local $6) - ) - (br $while-in) - ) + (block + (set_local $3 + (i32.const 0) ) + (br $label$break$b) ) - (if - (i32.lt_u - (call_indirect (type $FUNCSIG$iiii) - (get_local $2) + ) + (if + (i32.ne + (i32.load8_s + (i32.add (get_local $0) - (get_local $3) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $2) - ) - (i32.const 3) + (tee_local $6 + (i32.add + (get_local $3) + (i32.const -1) ) - (i32.const 2) ) ) - (get_local $3) - ) - (block - (set_local $4 - (get_local $3) - ) - (br $label$break$a) ) + (i32.const 10) ) - (set_local $1 - (i32.sub - (get_local $1) - (get_local $3) + (block + (set_local $3 + (get_local $6) ) + (br $while-in) ) - (set_local $0 + ) + ) + (if + (i32.lt_u + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $3) (i32.add - (get_local $0) - (get_local $3) + (i32.and + (i32.load offset=36 + (get_local $2) + ) + (i32.const 3) + ) + (i32.const 2) ) ) + (get_local $3) + ) + (block (set_local $4 - (i32.load - (get_local $5) - ) + (get_local $3) ) + (br $label$break$a) ) - (set_local $3 - (i32.const 0) + ) + (set_local $1 + (i32.sub + (get_local $1) + (get_local $3) ) ) - ) - (drop - (call $jb - (get_local $4) - (get_local $0) - (get_local $1) + (set_local $0 + (i32.add + (get_local $0) + (get_local $3) + ) ) - ) - (i32.store - (get_local $5) - (i32.add + (set_local $4 (i32.load (get_local $5) ) - (get_local $1) ) ) - (set_local $4 - (i32.add - (get_local $3) - (get_local $1) + (set_local $3 + (i32.const 0) + ) + ) + (drop + (call $jb + (get_local $4) + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (get_local $5) + (i32.add + (i32.load + (get_local $5) ) + (get_local $1) + ) + ) + (set_local $4 + (i32.add + (get_local $3) + (get_local $1) ) ) ) @@ -8288,60 +8238,58 @@ (local $3 i32) (local $4 i32) (local $5 i32) - (block $label$break$a - (if - (i32.and - (tee_local $3 - (get_local $0) - ) - (i32.const 3) + (if + (i32.and + (tee_local $3 + (get_local $0) ) - (block - (set_local $4 - (get_local $3) - ) - (loop $while-in - (if - (i32.eqz - (i32.load8_s - (get_local $0) - ) + (i32.const 3) + ) + (block $label$break$a + (set_local $4 + (get_local $3) + ) + (loop $while-in + (if + (i32.eqz + (i32.load8_s + (get_local $0) ) - (block - (set_local $5 - (get_local $4) - ) - (br $label$break$a) + ) + (block + (set_local $5 + (get_local $4) ) + (br $label$break$a) ) - (br_if $while-in - (i32.and - (tee_local $4 - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + ) + (br_if $while-in + (i32.and + (tee_local $4 + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) - (i32.const 3) ) + (i32.const 3) ) ) - (set_local $2 - (i32.const 4) - ) - (set_local $1 - (get_local $0) - ) ) - (block - (set_local $1 - (get_local $0) - ) - (set_local $2 - (i32.const 4) - ) + (set_local $2 + (i32.const 4) + ) + (set_local $1 + (get_local $0) + ) + ) + (block + (set_local $1 + (get_local $0) + ) + (set_local $2 + (i32.const 4) ) ) ) @@ -8430,97 +8378,95 @@ (local $1 i32) (local $2 i32) (tee_local $2 - (block $do-once (result i32) - (if (result i32) - (get_local $0) - (block (result i32) - (if - (i32.le_s - (i32.load offset=76 - (get_local $0) - ) - (i32.const -1) - ) - (br $do-once - (call $$a - (get_local $0) - ) + (if (result i32) + (get_local $0) + (block $do-once (result i32) + (if + (i32.le_s + (i32.load offset=76 + (get_local $0) ) + (i32.const -1) ) - (call $$a - (get_local $0) + (br $do-once + (call $$a + (get_local $0) + ) ) ) - (block (result i32) - (set_local $0 - (if (result i32) + (call $$a + (get_local $0) + ) + ) + (block (result i32) + (set_local $0 + (if (result i32) + (i32.load + (i32.const 1140) + ) + (call $_a (i32.load (i32.const 1140) ) - (call $_a - (i32.load - (i32.const 1140) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $pa - (i32.const 1188) + ) + (call $pa + (i32.const 1188) + ) + (if + (tee_local $1 + (i32.load + (i32.const 1184) + ) ) - (if - (tee_local $1 - (i32.load - (i32.const 1184) - ) + (block + (set_local $2 + (get_local $1) ) - (block - (set_local $2 - (get_local $1) - ) - (set_local $1 - (get_local $0) + (set_local $1 + (get_local $0) + ) + (loop $while-in + (set_local $0 + (i32.const 0) ) - (loop $while-in - (set_local $0 - (i32.const 0) - ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $2) - ) - (i32.load offset=28 - (get_local $2) - ) + (if + (i32.gt_u + (i32.load offset=20 + (get_local $2) ) - (set_local $1 - (i32.or - (call $$a - (get_local $2) - ) - (get_local $1) - ) + (i32.load offset=28 + (get_local $2) ) ) - (br_if $while-in - (tee_local $2 - (i32.load offset=56 + (set_local $1 + (i32.or + (call $$a (get_local $2) ) + (get_local $1) + ) + ) + ) + (br_if $while-in + (tee_local $2 + (i32.load offset=56 + (get_local $2) ) ) ) - ) - (set_local $1 - (get_local $0) ) ) - (call $xa - (i32.const 1188) + (set_local $1 + (get_local $0) ) - (get_local $1) ) + (call $xa + (i32.const 1188) + ) + (get_local $1) ) ) ) @@ -8586,76 +8532,74 @@ ) ) ) - (block $do-once - (if - (i32.eq - (get_local $7) - (i32.const 4) - ) - (block - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (if + (i32.eq + (get_local $7) + (i32.const 4) + ) + (block $do-once + (if + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (get_local $6) ) - (if - (i32.ne - (tee_local $3 - (i32.const 10) - ) - (i32.load8_s offset=75 - (get_local $0) - ) + (get_local $6) + ) + (if + (i32.ne + (tee_local $3 + (i32.const 10) ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) - ) - (i32.store8 + (i32.load8_s offset=75 + (get_local $0) + ) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) + (i32.const 1) ) - (br $do-once) ) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once) ) ) - (set_local $3 - (if (result i32) - (i32.eq - (call_indirect (type $FUNCSIG$iiii) - (get_local $0) - (get_local $5) - (i32.const 1) - (i32.add - (i32.and - (i32.load offset=36 - (get_local $0) - ) - (i32.const 3) + ) + (set_local $3 + (if (result i32) + (i32.eq + (call_indirect (type $FUNCSIG$iiii) + (get_local $0) + (get_local $5) + (i32.const 1) + (i32.add + (i32.and + (i32.load offset=36 + (get_local $0) ) - (i32.const 2) + (i32.const 3) ) + (i32.const 2) ) - (i32.const 1) ) - (i32.load8_u - (get_local $5) - ) - (i32.const -1) + (i32.const 1) ) + (i32.load8_u + (get_local $5) + ) + (i32.const -1) ) ) ) @@ -9104,70 +9048,68 @@ (i32.shr_s (i32.shl (tee_local $1 - (block $do-once (result i32) - (if (result i32) - (i32.lt_s - (i32.add - (call $bb + (if (result i32) + (i32.lt_s + (i32.add + (call $bb + (i32.const 1144) + (call $Za (i32.const 1144) - (call $Za - (i32.const 1144) - ) - (get_local $0) ) - (i32.const -1) + (get_local $0) ) - (i32.const 0) + (i32.const -1) ) - (i32.const 1) - (block (result i32) - (if - (i32.ne - (i32.load8_s offset=75 - (get_local $0) - ) - (i32.const 10) + (i32.const 0) + ) + (i32.const 1) + (block $do-once (result i32) + (if + (i32.ne + (i32.load8_s offset=75 + (get_local $0) ) - (if - (i32.lt_u - (tee_local $1 - (i32.load - (tee_local $2 - (i32.add - (get_local $0) - (i32.const 20) - ) + (i32.const 10) + ) + (if + (i32.lt_u + (tee_local $1 + (i32.load + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 20) ) ) ) - (i32.load offset=16 - (get_local $0) - ) ) - (block - (i32.store - (get_local $2) - (i32.add - (get_local $1) - (i32.const 1) - ) - ) - (i32.store8 + (i32.load offset=16 + (get_local $0) + ) + ) + (block + (i32.store + (get_local $2) + (i32.add (get_local $1) - (i32.const 10) - ) - (br $do-once - (i32.const 0) + (i32.const 1) ) ) + (i32.store8 + (get_local $1) + (i32.const 10) + ) + (br $do-once + (i32.const 0) + ) ) ) - (i32.lt_s - (call $ab - (get_local $0) - ) - (i32.const 0) + ) + (i32.lt_s + (call $ab + (get_local $0) ) + (i32.const 0) ) ) ) diff --git a/test/passes/converge_O3_metrics.bin.txt b/test/passes/converge_O3_metrics.bin.txt index 39a6c635d..f873e68ab 100644 --- a/test/passes/converge_O3_metrics.bin.txt +++ b/test/passes/converge_O3_metrics.bin.txt @@ -96,31 +96,31 @@ total ) ) ) - (block $label$2 - (if - (block (result i32) - (set_local $0 - (i32.const 10888) - ) - (loop $label$3 - (br_if $label$3 - (i32.load8_s - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + (if + (block (result i32) + (set_local $0 + (i32.const 10888) + ) + (loop $label$3 + (br_if $label$3 + (i32.load8_s + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) ) ) - (tee_local $0 - (i32.sub - (get_local $0) - (i32.const 10888) - ) + ) + (tee_local $0 + (i32.sub + (get_local $0) + (i32.const 10888) ) ) + ) + (block $label$2 (br_if $label$2 (call_indirect (type $1) (get_local $1) @@ -338,31 +338,31 @@ total ) ) ) - (block $label$2 - (if - (block (result i32) - (set_local $0 - (i32.const 10888) - ) - (loop $label$3 - (br_if $label$3 - (i32.load8_s - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + (if + (block (result i32) + (set_local $0 + (i32.const 10888) + ) + (loop $label$3 + (br_if $label$3 + (i32.load8_s + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) ) ) - (tee_local $0 - (i32.sub - (get_local $0) - (i32.const 10888) - ) + ) + (tee_local $0 + (i32.sub + (get_local $0) + (i32.const 10888) ) ) + ) + (block $label$2 (br_if $label$2 (call_indirect (type $1) (get_local $1) @@ -580,31 +580,31 @@ total ) ) ) - (block $label$2 - (if - (block (result i32) - (set_local $0 - (i32.const 10888) - ) - (loop $label$3 - (br_if $label$3 - (i32.load8_s - (tee_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + (if + (block (result i32) + (set_local $0 + (i32.const 10888) + ) + (loop $label$3 + (br_if $label$3 + (i32.load8_s + (tee_local $0 + (i32.add + (get_local $0) + (i32.const 1) ) ) ) ) - (tee_local $0 - (i32.sub - (get_local $0) - (i32.const 10888) - ) + ) + (tee_local $0 + (i32.sub + (get_local $0) + (i32.const 10888) ) ) + ) + (block $label$2 (br_if $label$2 (call_indirect (type $1) (get_local $1) diff --git a/test/passes/inlining-optimizing_optimize-level=3.txt b/test/passes/inlining-optimizing_optimize-level=3.txt index 12675acef..a8a8a24f9 100644 --- a/test/passes/inlining-optimizing_optimize-level=3.txt +++ b/test/passes/inlining-optimizing_optimize-level=3.txt @@ -554,94 +554,92 @@ (func $_fflush (; 32 ;) (type $FUNCSIG$ii) (param $0 i32) (result i32) (local $1 i32) (local $2 i32) - (block $do-once - (if - (get_local $0) - (block - (if - (i32.le_s - (i32.load offset=76 - (get_local $0) - ) - (i32.const -1) - ) - (block - (set_local $0 - (call $___fflush_unlocked - (get_local $0) - ) - ) - (br $do-once) + (if + (get_local $0) + (block $do-once + (if + (i32.le_s + (i32.load offset=76 + (get_local $0) ) + (i32.const -1) ) - (set_local $1 - (call $___fflush_unlocked - (get_local $0) + (block + (set_local $0 + (call $___fflush_unlocked + (get_local $0) + ) ) + (br $do-once) ) - (set_local $0 - (get_local $1) + ) + (set_local $1 + (call $___fflush_unlocked + (get_local $0) ) ) - (block - (set_local $0 - (if (result i32) + (set_local $0 + (get_local $1) + ) + ) + (block + (set_local $0 + (if (result i32) + (i32.load + (i32.const 12) + ) + (call $_fflush (i32.load (i32.const 12) ) - (call $_fflush - (i32.load - (i32.const 12) - ) - ) - (i32.const 0) ) + (i32.const 0) ) - (call $___lock - (i32.const 44) + ) + (call $___lock + (i32.const 44) + ) + (if + (tee_local $1 + (i32.load + (i32.const 40) + ) ) - (if - (tee_local $1 - (i32.load - (i32.const 40) + (loop $while-in + (drop + (i32.load offset=76 + (get_local $1) ) ) - (loop $while-in - (drop - (i32.load offset=76 + (if + (i32.gt_u + (i32.load offset=20 + (get_local $1) + ) + (i32.load offset=28 (get_local $1) ) ) - (if - (i32.gt_u - (i32.load offset=20 - (get_local $1) - ) - (i32.load offset=28 + (set_local $0 + (i32.or + (call $___fflush_unlocked (get_local $1) ) - ) - (set_local $0 - (i32.or - (call $___fflush_unlocked - (get_local $1) - ) - (get_local $0) - ) + (get_local $0) ) ) - (br_if $while-in - (tee_local $1 - (i32.load offset=56 - (get_local $1) - ) + ) + (br_if $while-in + (tee_local $1 + (i32.load offset=56 + (get_local $1) ) ) ) ) - (call $___unlock - (i32.const 44) - ) + ) + (call $___unlock + (i32.const 44) ) ) ) @@ -2544,574 +2542,568 @@ ) ) ) - (block $label$break$L25 - (if - (i32.eq - (i32.and - (tee_local $12 - (i32.shr_s - (i32.shl - (get_local $6) - (i32.const 24) - ) + (if + (i32.eq + (i32.and + (tee_local $12 + (i32.shr_s + (i32.shl + (get_local $6) (i32.const 24) ) + (i32.const 24) ) - (i32.const -32) ) - (i32.const 32) + (i32.const -32) ) - (block - (set_local $1 - (get_local $6) - ) - (set_local $6 - (get_local $12) - ) - (set_local $12 - (i32.const 0) - ) - (loop $while-in4 - (if - (i32.eqz - (i32.and - (i32.shl - (i32.const 1) - (i32.add - (get_local $6) - (i32.const -32) - ) + (i32.const 32) + ) + (block $label$break$L25 + (set_local $1 + (get_local $6) + ) + (set_local $6 + (get_local $12) + ) + (set_local $12 + (i32.const 0) + ) + (loop $while-in4 + (if + (i32.eqz + (i32.and + (i32.shl + (i32.const 1) + (i32.add + (get_local $6) + (i32.const -32) ) - (i32.const 75913) ) + (i32.const 75913) ) - (block - (set_local $6 - (get_local $1) - ) - (set_local $1 - (get_local $12) - ) - (br $label$break$L25) + ) + (block + (set_local $6 + (get_local $1) ) + (set_local $1 + (get_local $12) + ) + (br $label$break$L25) ) - (set_local $12 - (i32.or - (i32.shl - (i32.const 1) - (i32.add - (i32.shr_s - (i32.shl - (get_local $1) - (i32.const 24) - ) + ) + (set_local $12 + (i32.or + (i32.shl + (i32.const 1) + (i32.add + (i32.shr_s + (i32.shl + (get_local $1) (i32.const 24) ) - (i32.const -32) + (i32.const 24) ) + (i32.const -32) ) - (get_local $12) ) + (get_local $12) ) - (br_if $while-in4 - (i32.eq - (i32.and - (tee_local $6 - (tee_local $1 - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (br_if $while-in4 + (i32.eq + (i32.and + (tee_local $6 + (tee_local $1 + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) ) ) - (i32.const -32) ) - (i32.const 32) + (i32.const -32) ) + (i32.const 32) ) ) - (set_local $6 - (get_local $1) - ) - (set_local $1 - (get_local $12) - ) + ) + (set_local $6 + (get_local $1) ) (set_local $1 - (i32.const 0) + (get_local $12) ) ) + (set_local $1 + (i32.const 0) + ) ) (set_local $1 - (block $do-once5 (result i32) - (if (result i32) - (i32.eq - (i32.and - (get_local $6) - (i32.const 255) - ) - (i32.const 42) + (if (result i32) + (i32.eq + (i32.and + (get_local $6) + (i32.const 255) ) - (block (result i32) - (set_local $10 - (block $__rjto$0 (result i32) - (block $__rjti$0 - (br_if $__rjti$0 - (i32.ge_u - (tee_local $12 - (i32.add - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const 42) + ) + (block $do-once5 (result i32) + (set_local $10 + (block $__rjto$0 (result i32) + (block $__rjti$0 + (br_if $__rjti$0 + (i32.ge_u + (tee_local $12 + (i32.add + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) + (i32.const 10) ) - (br_if $__rjti$0 - (i32.ne - (i32.load8_s offset=2 - (get_local $10) - ) - (i32.const 36) + ) + (br_if $__rjti$0 + (i32.ne + (i32.load8_s offset=2 + (get_local $10) ) + (i32.const 36) ) - (i32.store - (i32.add - (get_local $4) - (i32.shl - (get_local $12) - (i32.const 2) - ) + ) + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $12) + (i32.const 2) ) - (i32.const 10) ) - (drop - (i32.load offset=4 - (tee_local $6 - (i32.add - (get_local $3) - (i32.shl - (i32.add - (i32.load8_s - (get_local $6) - ) - (i32.const -48) + (i32.const 10) + ) + (drop + (i32.load offset=4 + (tee_local $6 + (i32.add + (get_local $3) + (i32.shl + (i32.add + (i32.load8_s + (get_local $6) ) - (i32.const 3) + (i32.const -48) ) + (i32.const 3) ) ) ) ) - (set_local $8 - (i32.const 1) - ) - (set_local $16 - (i32.load - (get_local $6) - ) - ) - (br $__rjto$0 - (i32.add - (get_local $10) - (i32.const 3) - ) - ) - ) - (if - (get_local $8) - (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) - ) ) - (if - (i32.eqz - (get_local $28) - ) - (block - (set_local $12 - (get_local $1) - ) - (set_local $10 - (get_local $6) - ) - (set_local $16 - (i32.const 0) - ) - (br $do-once5 - (i32.const 0) - ) - ) + (set_local $8 + (i32.const 1) ) (set_local $16 (i32.load - (tee_local $10 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) - ) - (i32.const -4) - ) - ) + (get_local $6) ) ) - (i32.store - (get_local $2) + (br $__rjto$0 (i32.add (get_local $10) - (i32.const 4) + (i32.const 3) ) ) - (set_local $8 - (i32.const 0) + ) + (if + (get_local $8) + (block + (set_local $17 + (i32.const -1) + ) + (br $label$break$L1) ) - (get_local $6) ) - ) - (set_local $12 - (if (result i32) - (i32.lt_s - (get_local $16) - (i32.const 0) + (if + (i32.eqz + (get_local $28) ) - (block (result i32) + (block + (set_local $12 + (get_local $1) + ) + (set_local $10 + (get_local $6) + ) (set_local $16 - (i32.sub - (i32.const 0) - (get_local $16) - ) + (i32.const 0) ) - (i32.or - (get_local $1) - (i32.const 8192) + (br $do-once5 + (i32.const 0) ) ) - (get_local $1) ) - ) - (get_local $8) - ) - (if (result i32) - (i32.lt_u - (tee_local $6 - (i32.add - (i32.shr_s - (i32.shl - (get_local $6) - (i32.const 24) + (set_local $16 + (i32.load + (tee_local $10 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 3) + ) + (i32.const -4) ) - (i32.const 24) ) - (i32.const -48) ) ) - (i32.const 10) + (i32.store + (get_local $2) + (i32.add + (get_local $10) + (i32.const 4) + ) + ) + (set_local $8 + (i32.const 0) + ) + (get_local $6) ) - (block (result i32) - (set_local $12 + ) + (set_local $12 + (if (result i32) + (i32.lt_s + (get_local $16) (i32.const 0) ) - (loop $while-in8 - (set_local $6 - (i32.add - (i32.mul - (get_local $12) - (i32.const 10) - ) + (block (result i32) + (set_local $16 + (i32.sub + (i32.const 0) + (get_local $16) + ) + ) + (i32.or + (get_local $1) + (i32.const 8192) + ) + ) + (get_local $1) + ) + ) + (get_local $8) + ) + (if (result i32) + (i32.lt_u + (tee_local $6 + (i32.add + (i32.shr_s + (i32.shl (get_local $6) + (i32.const 24) ) + (i32.const 24) ) - (if - (i32.lt_u - (tee_local $9 - (i32.add - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const -48) + ) + ) + (i32.const 10) + ) + (block (result i32) + (set_local $12 + (i32.const 0) + ) + (loop $while-in8 + (set_local $6 + (i32.add + (i32.mul + (get_local $12) + (i32.const 10) + ) + (get_local $6) + ) + ) + (if + (i32.lt_u + (tee_local $9 + (i32.add + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (block - (set_local $12 - (get_local $6) - ) - (set_local $6 - (get_local $9) - ) - (br $while-in8) - ) - ) - ) - (if (result i32) - (i32.lt_s - (get_local $6) - (i32.const 0) + (i32.const 10) ) (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) - ) - (block (result i32) (set_local $12 - (get_local $1) - ) - (set_local $16 (get_local $6) ) - (get_local $8) + (set_local $6 + (get_local $9) + ) + (br $while-in8) ) ) ) - (block (result i32) - (set_local $12 - (get_local $1) - ) - (set_local $16 + (if (result i32) + (i32.lt_s + (get_local $6) (i32.const 0) ) - (get_local $8) + (block + (set_local $17 + (i32.const -1) + ) + (br $label$break$L1) + ) + (block (result i32) + (set_local $12 + (get_local $1) + ) + (set_local $16 + (get_local $6) + ) + (get_local $8) + ) + ) + ) + (block (result i32) + (set_local $12 + (get_local $1) + ) + (set_local $16 + (i32.const 0) ) + (get_local $8) ) ) ) ) (set_local $6 - (block $label$break$L46 (result i32) - (if (result i32) - (i32.eq - (i32.load8_s - (get_local $10) - ) - (i32.const 46) + (if (result i32) + (i32.eq + (i32.load8_s + (get_local $10) ) - (block (result i32) - (if - (i32.ne - (tee_local $8 - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 1) - ) + (i32.const 46) + ) + (block $label$break$L46 (result i32) + (if + (i32.ne + (tee_local $8 + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 1) ) ) ) - (i32.const 42) ) - (block - (set_local $6 - (if (result i32) - (i32.lt_u - (tee_local $9 - (i32.add - (get_local $8) - (i32.const -48) - ) + (i32.const 42) + ) + (block + (set_local $6 + (if (result i32) + (i32.lt_u + (tee_local $9 + (i32.add + (get_local $8) + (i32.const -48) ) - (i32.const 10) ) - (block (result i32) - (set_local $10 - (get_local $6) - ) - (set_local $8 - (i32.const 0) - ) - (get_local $9) + (i32.const 10) + ) + (block (result i32) + (set_local $10 + (get_local $6) ) - (block - (set_local $10 - (get_local $6) - ) - (br $label$break$L46 - (i32.const 0) - ) + (set_local $8 + (i32.const 0) + ) + (get_local $9) + ) + (block + (set_local $10 + (get_local $6) + ) + (br $label$break$L46 + (i32.const 0) ) ) ) - (loop $while-in11 - (drop - (br_if $label$break$L46 - (tee_local $6 - (i32.add - (i32.mul - (get_local $8) - (i32.const 10) - ) - (get_local $6) + ) + (loop $while-in11 + (drop + (br_if $label$break$L46 + (tee_local $6 + (i32.add + (i32.mul + (get_local $8) + (i32.const 10) ) + (get_local $6) ) - (i32.ge_u - (tee_local $9 - (i32.add - (i32.load8_s - (tee_local $10 - (i32.add - (get_local $10) - (i32.const 1) - ) + ) + (i32.ge_u + (tee_local $9 + (i32.add + (i32.load8_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) + (i32.const 10) ) ) - (set_local $8 - (get_local $6) - ) - (set_local $6 - (get_local $9) - ) - (br $while-in11) ) + (set_local $8 + (get_local $6) + ) + (set_local $6 + (get_local $9) + ) + (br $while-in11) ) ) - (if - (i32.lt_u - (tee_local $8 - (i32.add - (i32.load8_s - (tee_local $6 - (i32.add - (get_local $10) - (i32.const 2) - ) + ) + (if + (i32.lt_u + (tee_local $8 + (i32.add + (i32.load8_s + (tee_local $6 + (i32.add + (get_local $10) + (i32.const 2) ) ) - (i32.const -48) ) + (i32.const -48) ) - (i32.const 10) ) - (if - (i32.eq - (i32.load8_s offset=3 - (get_local $10) - ) - (i32.const 36) + (i32.const 10) + ) + (if + (i32.eq + (i32.load8_s offset=3 + (get_local $10) ) - (block - (i32.store - (i32.add - (get_local $4) - (i32.shl - (get_local $8) - (i32.const 2) - ) + (i32.const 36) + ) + (block + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $8) + (i32.const 2) ) - (i32.const 10) ) - (drop - (i32.load offset=4 - (tee_local $6 - (i32.add - (get_local $3) - (i32.shl - (i32.add - (i32.load8_s - (get_local $6) - ) - (i32.const -48) + (i32.const 10) + ) + (drop + (i32.load offset=4 + (tee_local $6 + (i32.add + (get_local $3) + (i32.shl + (i32.add + (i32.load8_s + (get_local $6) ) - (i32.const 3) + (i32.const -48) ) + (i32.const 3) ) ) ) ) - (set_local $10 - (i32.add - (get_local $10) - (i32.const 4) - ) + ) + (set_local $10 + (i32.add + (get_local $10) + (i32.const 4) ) - (br $label$break$L46 - (i32.load - (get_local $6) - ) + ) + (br $label$break$L46 + (i32.load + (get_local $6) ) ) ) ) - (if - (get_local $1) - (block - (set_local $17 - (i32.const -1) - ) - (br $label$break$L1) + ) + (if + (get_local $1) + (block + (set_local $17 + (i32.const -1) ) + (br $label$break$L1) ) - (if (result i32) - (get_local $28) - (block (result i32) - (set_local $8 - (i32.load - (tee_local $10 - (i32.and - (i32.add - (i32.load - (get_local $2) - ) - (i32.const 3) + ) + (if (result i32) + (get_local $28) + (block (result i32) + (set_local $8 + (i32.load + (tee_local $10 + (i32.and + (i32.add + (i32.load + (get_local $2) ) - (i32.const -4) + (i32.const 3) ) + (i32.const -4) ) ) ) - (i32.store - (get_local $2) - (i32.add - (get_local $10) - (i32.const 4) - ) - ) - (set_local $10 - (get_local $6) - ) - (get_local $8) ) - (block (result i32) - (set_local $10 - (get_local $6) + (i32.store + (get_local $2) + (i32.add + (get_local $10) + (i32.const 4) ) - (i32.const 0) ) + (set_local $10 + (get_local $6) + ) + (get_local $8) + ) + (block (result i32) + (set_local $10 + (get_local $6) + ) + (i32.const 0) ) ) - (i32.const -1) ) + (i32.const -1) ) ) (set_local $8 @@ -3920,2250 +3912,2178 @@ ) ) (set_local $7 - (block $do-once49 (result i32) - (if (result i32) - (i32.lt_u - (i32.and - (i32.load offset=4 - (get_global $tempDoublePtr) - ) - (i32.const 2146435072) + (if (result i32) + (i32.lt_u + (i32.and + (i32.load offset=4 + (get_global $tempDoublePtr) ) (i32.const 2146435072) ) - (block (result i32) - (if - (tee_local $5 - (f64.ne - (tee_local $23 - (f64.mul - (call $_frexp - (get_local $15) - (get_local $21) - ) - (f64.const 2) + (i32.const 2146435072) + ) + (block $do-once49 (result i32) + (if + (tee_local $5 + (f64.ne + (tee_local $23 + (f64.mul + (call $_frexp + (get_local $15) + (get_local $21) ) + (f64.const 2) ) - (f64.const 0) ) + (f64.const 0) ) - (i32.store - (get_local $21) - (i32.add - (i32.load - (get_local $21) - ) - (i32.const -1) + ) + (i32.store + (get_local $21) + (i32.add + (i32.load + (get_local $21) ) + (i32.const -1) ) ) - (if - (i32.eq - (tee_local $24 - (i32.or - (get_local $19) - (i32.const 32) - ) + ) + (if + (i32.eq + (tee_local $24 + (i32.or + (get_local $19) + (i32.const 32) ) - (i32.const 97) ) - (block - (set_local $9 - (select - (i32.add - (get_local $30) - (i32.const 9) - ) + (i32.const 97) + ) + (block + (set_local $9 + (select + (i32.add (get_local $30) - (tee_local $13 - (i32.and - (get_local $19) - (i32.const 32) - ) + (i32.const 9) + ) + (get_local $30) + (tee_local $13 + (i32.and + (get_local $19) + (i32.const 32) ) ) ) - (set_local $15 - (if (result f64) - (i32.or - (i32.gt_u - (get_local $6) - (i32.const 11) - ) - (i32.eqz - (tee_local $5 - (i32.sub - (i32.const 12) - (get_local $6) - ) + ) + (set_local $15 + (if (result f64) + (i32.or + (i32.gt_u + (get_local $6) + (i32.const 11) + ) + (i32.eqz + (tee_local $5 + (i32.sub + (i32.const 12) + (get_local $6) ) ) ) - (get_local $23) - (block (result f64) + ) + (get_local $23) + (block (result f64) + (set_local $15 + (f64.const 8) + ) + (loop $while-in54 (set_local $15 - (f64.const 8) - ) - (loop $while-in54 - (set_local $15 - (f64.mul - (get_local $15) - (f64.const 16) - ) + (f64.mul + (get_local $15) + (f64.const 16) ) - (br_if $while-in54 - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -1) - ) + ) + (br_if $while-in54 + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -1) ) ) ) - (if (result f64) - (i32.eq - (i32.load8_s - (get_local $9) - ) - (i32.const 45) + ) + (if (result f64) + (i32.eq + (i32.load8_s + (get_local $9) ) - (f64.neg - (f64.add - (get_local $15) - (f64.sub - (f64.neg - (get_local $23) - ) - (get_local $15) + (i32.const 45) + ) + (f64.neg + (f64.add + (get_local $15) + (f64.sub + (f64.neg + (get_local $23) ) - ) - ) - (f64.sub - (f64.add - (get_local $23) (get_local $15) ) + ) + ) + (f64.sub + (f64.add + (get_local $23) (get_local $15) ) + (get_local $15) ) ) ) ) - (if - (i32.eq - (tee_local $5 - (call $_fmt_u - (tee_local $5 - (select - (i32.sub - (i32.const 0) - (tee_local $7 - (i32.load - (get_local $21) - ) + ) + (if + (i32.eq + (tee_local $5 + (call $_fmt_u + (tee_local $5 + (select + (i32.sub + (i32.const 0) + (tee_local $7 + (i32.load + (get_local $21) ) ) + ) + (get_local $7) + (i32.lt_s (get_local $7) - (i32.lt_s - (get_local $7) - (i32.const 0) - ) + (i32.const 0) ) ) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $5) - (i32.const 0) - ) - (i32.const 31) + ) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $5) + (i32.const 0) ) (i32.const 31) ) - (get_local $26) + (i32.const 31) ) + (get_local $26) ) - (get_local $26) ) - (block - (i32.store8 - (get_local $42) - (i32.const 48) - ) - (set_local $5 - (get_local $42) - ) + (get_local $26) + ) + (block + (i32.store8 + (get_local $42) + (i32.const 48) + ) + (set_local $5 + (get_local $42) ) ) - (set_local $11 - (i32.or - (get_local $27) + ) + (set_local $11 + (i32.or + (get_local $27) + (i32.const 2) + ) + ) + (i32.store8 + (i32.add + (get_local $5) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_s + (get_local $7) + (i32.const 31) + ) (i32.const 2) ) + (i32.const 43) ) - (i32.store8 + ) + (i32.store8 + (tee_local $8 (i32.add (get_local $5) - (i32.const -1) - ) - (i32.add - (i32.and - (i32.shr_s - (get_local $7) - (i32.const 31) - ) - (i32.const 2) - ) - (i32.const 43) + (i32.const -2) ) ) - (i32.store8 - (tee_local $8 - (i32.add - (get_local $5) - (i32.const -2) - ) - ) - (i32.add - (get_local $19) - (i32.const 15) - ) + (i32.add + (get_local $19) + (i32.const 15) ) - (set_local $19 - (i32.lt_s - (get_local $6) - (i32.const 1) - ) + ) + (set_local $19 + (i32.lt_s + (get_local $6) + (i32.const 1) ) - (set_local $18 - (i32.eqz - (i32.and - (get_local $12) - (i32.const 8) - ) + ) + (set_local $18 + (i32.eqz + (i32.and + (get_local $12) + (i32.const 8) ) ) - (set_local $5 - (get_local $22) - ) - (loop $while-in56 - (i32.store8 - (get_local $5) - (i32.or - (i32.load8_u - (i32.add - (tee_local $7 + ) + (set_local $5 + (get_local $22) + ) + (loop $while-in56 + (i32.store8 + (get_local $5) + (i32.or + (i32.load8_u + (i32.add + (tee_local $7 + (if (result i32) + (f64.ne + (get_local $15) + (get_local $15) + ) + (i32.const -2147483648) (if (result i32) - (f64.ne - (get_local $15) + (f64.ge (get_local $15) + (f64.const 2147483648) ) (i32.const -2147483648) (if (result i32) - (f64.ge + (f64.le (get_local $15) - (f64.const 2147483648) + (f64.const -2147483649) ) (i32.const -2147483648) - (if (result i32) - (f64.le - (get_local $15) - (f64.const -2147483649) - ) - (i32.const -2147483648) - (i32.trunc_s/f64 - (get_local $15) - ) + (i32.trunc_s/f64 + (get_local $15) ) ) ) ) - (i32.const 4075) ) + (i32.const 4075) ) - (get_local $13) ) + (get_local $13) ) - (set_local $15 - (f64.mul - (f64.sub - (get_local $15) - (f64.convert_s/i32 - (get_local $7) - ) + ) + (set_local $15 + (f64.mul + (f64.sub + (get_local $15) + (f64.convert_s/i32 + (get_local $7) ) - (f64.const 16) ) + (f64.const 16) ) - (set_local $5 - (block $do-once57 (result i32) - (if (result i32) - (i32.eq - (i32.sub - (tee_local $7 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (get_local $36) - ) - (i32.const 1) - ) - (block (result i32) - (drop - (br_if $do-once57 - (get_local $7) - (i32.and - (get_local $18) - (i32.and - (get_local $19) - (f64.eq - (get_local $15) - (f64.const 0) - ) - ) - ) - ) - ) - (i32.store8 - (get_local $7) - (i32.const 46) - ) + ) + (set_local $5 + (if (result i32) + (i32.eq + (i32.sub + (tee_local $7 (i32.add (get_local $5) - (i32.const 2) + (i32.const 1) ) ) - (get_local $7) + (get_local $36) ) + (i32.const 1) ) - ) - (br_if $while-in56 - (f64.ne - (get_local $15) - (f64.const 0) + (if (result i32) + (i32.and + (get_local $18) + (i32.and + (get_local $19) + (f64.eq + (get_local $15) + (f64.const 0) + ) + ) + ) + (get_local $7) + (block (result i32) + (i32.store8 + (get_local $7) + (i32.const 46) + ) + (i32.add + (get_local $5) + (i32.const 2) + ) + ) ) + (get_local $7) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $16) - (tee_local $7 - (i32.add - (tee_local $6 - (select + (br_if $while-in56 + (f64.ne + (get_local $15) + (f64.const 0) + ) + ) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $16) + (tee_local $7 + (i32.add + (tee_local $6 + (select + (i32.sub + (i32.add + (get_local $47) + (get_local $6) + ) + (get_local $8) + ) + (i32.add (i32.sub - (i32.add - (get_local $47) - (get_local $6) - ) + (get_local $45) (get_local $8) ) - (i32.add - (i32.sub - (get_local $45) - (get_local $8) - ) - (get_local $5) + (get_local $5) + ) + (i32.and + (i32.ne + (get_local $6) + (i32.const 0) ) - (i32.and - (i32.ne - (get_local $6) - (i32.const 0) - ) - (i32.lt_s - (i32.add - (get_local $46) - (get_local $5) - ) - (get_local $6) + (i32.lt_s + (i32.add + (get_local $46) + (get_local $5) ) + (get_local $6) ) ) ) - (get_local $11) ) + (get_local $11) ) - (get_local $12) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $9) - (get_local $11) + (get_local $12) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (get_local $16) - (get_local $7) - (i32.xor - (get_local $12) - (i32.const 65536) + (drop + (call $___fwritex + (get_local $9) + (get_local $11) + (get_local $0) ) ) - (set_local $5 - (i32.sub - (get_local $5) - (get_local $36) - ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (get_local $16) + (get_local $7) + (i32.xor + (get_local $12) + (i32.const 65536) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $22) - (get_local $5) + ) + (set_local $5 + (i32.sub + (get_local $5) + (get_local $36) + ) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.sub - (get_local $6) - (i32.add - (get_local $5) - (tee_local $5 - (i32.sub - (get_local $26) - (get_local $8) - ) - ) - ) + (drop + (call $___fwritex + (get_local $22) + (get_local $5) + (get_local $0) ) - (i32.const 0) - (i32.const 0) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (i32.sub + (get_local $6) + (i32.add + (get_local $5) + (tee_local $5 + (i32.sub + (get_local $26) + (get_local $8) ) - (i32.const 32) ) ) - (drop - (call $___fwritex - (get_local $8) - (get_local $5) + ) + (i32.const 0) + (i32.const 0) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $16) - (get_local $7) - (i32.xor - (get_local $12) - (i32.const 8192) + (drop + (call $___fwritex + (get_local $8) + (get_local $5) + (get_local $0) ) ) - (br $do-once49 - (select - (get_local $16) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $16) + (get_local $7) + (i32.xor + (get_local $12) + (i32.const 8192) + ) + ) + (br $do-once49 + (select + (get_local $16) + (get_local $7) + (i32.lt_s (get_local $7) - (i32.lt_s - (get_local $7) - (get_local $16) - ) + (get_local $16) ) ) ) ) - (set_local $15 - (if (result f64) - (get_local $5) - (block (result f64) - (i32.store - (get_local $21) - (tee_local $5 - (i32.add - (i32.load - (get_local $21) - ) - (i32.const -28) + ) + (set_local $15 + (if (result f64) + (get_local $5) + (block (result f64) + (i32.store + (get_local $21) + (tee_local $5 + (i32.add + (i32.load + (get_local $21) ) + (i32.const -28) ) ) - (f64.mul - (get_local $23) - (f64.const 268435456) - ) ) - (block (result f64) - (set_local $5 - (i32.load - (get_local $21) - ) - ) + (f64.mul (get_local $23) + (f64.const 268435456) ) ) - ) - (set_local $7 - (tee_local $8 - (select - (get_local $48) - (get_local $49) - (i32.lt_s - (get_local $5) - (i32.const 0) + (block (result f64) + (set_local $5 + (i32.load + (get_local $21) ) ) + (get_local $23) ) ) - (loop $while-in60 - (i32.store - (get_local $7) - (tee_local $5 + ) + (set_local $7 + (tee_local $8 + (select + (get_local $48) + (get_local $49) + (i32.lt_s + (get_local $5) + (i32.const 0) + ) + ) + ) + ) + (loop $while-in60 + (i32.store + (get_local $7) + (tee_local $5 + (if (result i32) + (f64.ne + (get_local $15) + (get_local $15) + ) + (i32.const -2147483648) (if (result i32) - (f64.ne - (get_local $15) + (f64.ge (get_local $15) + (f64.const 2147483648) ) (i32.const -2147483648) (if (result i32) - (f64.ge + (f64.le (get_local $15) - (f64.const 2147483648) + (f64.const -2147483649) ) (i32.const -2147483648) - (if (result i32) - (f64.le - (get_local $15) - (f64.const -2147483649) - ) - (i32.const -2147483648) - (i32.trunc_s/f64 - (get_local $15) - ) + (i32.trunc_s/f64 + (get_local $15) ) ) ) ) ) - (set_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) + ) + (set_local $7 + (i32.add + (get_local $7) + (i32.const 4) ) - (br_if $while-in60 - (f64.ne - (tee_local $15 - (f64.mul - (f64.sub - (get_local $15) - (f64.convert_u/i32 - (get_local $5) - ) + ) + (br_if $while-in60 + (f64.ne + (tee_local $15 + (f64.mul + (f64.sub + (get_local $15) + (f64.convert_u/i32 + (get_local $5) ) - (f64.const 1e9) ) + (f64.const 1e9) ) - (f64.const 0) ) + (f64.const 0) ) ) - (if - (i32.gt_s - (tee_local $9 - (i32.load - (get_local $21) - ) + ) + (if + (i32.gt_s + (tee_local $9 + (i32.load + (get_local $21) ) - (i32.const 0) ) - (block - (set_local $5 - (get_local $8) - ) - (loop $while-in62 - (set_local $13 - (select - (i32.const 29) + (i32.const 0) + ) + (block + (set_local $5 + (get_local $8) + ) + (loop $while-in62 + (set_local $13 + (select + (i32.const 29) + (get_local $9) + (i32.gt_s (get_local $9) - (i32.gt_s - (get_local $9) - (i32.const 29) + (i32.const 29) + ) + ) + ) + (if + (i32.ge_u + (tee_local $9 + (i32.add + (get_local $7) + (i32.const -4) ) ) + (get_local $5) ) (block $do-once63 - (if - (i32.ge_u - (tee_local $9 - (i32.add - (get_local $7) - (i32.const -4) - ) - ) - (get_local $5) - ) - (block - (set_local $11 - (i32.const 0) - ) - (loop $while-in66 - (i32.store - (get_local $9) - (call $___uremdi3 - (block (result i32) - (set_local $20 - (call $_bitshift64Shl - (i32.load - (get_local $9) - ) - (i32.const 0) - (get_local $13) - ) + (set_local $11 + (i32.const 0) + ) + (loop $while-in66 + (i32.store + (get_local $9) + (call $___uremdi3 + (block (result i32) + (set_local $20 + (call $_bitshift64Shl + (i32.load + (get_local $9) ) - (set_global $tempRet0 - (i32.add - (get_global $tempRet0) - (i32.lt_u - (tee_local $11 - (i32.add - (get_local $20) - (get_local $11) - ) - ) + (i32.const 0) + (get_local $13) + ) + ) + (set_global $tempRet0 + (i32.add + (get_global $tempRet0) + (i32.lt_u + (tee_local $11 + (i32.add (get_local $20) + (get_local $11) ) ) + (get_local $20) ) - (get_local $11) ) - (tee_local $18 - (get_global $tempRet0) - ) - (i32.const 1000000000) - (i32.const 0) ) + (get_local $11) ) - (set_local $11 - (call $___udivdi3 - (get_local $11) - (get_local $18) - (i32.const 1000000000) - (i32.const 0) - ) - ) - (br_if $while-in66 - (i32.ge_u - (tee_local $9 - (i32.add - (get_local $9) - (i32.const -4) - ) - ) - (get_local $5) - ) + (tee_local $18 + (get_global $tempRet0) ) + (i32.const 1000000000) + (i32.const 0) ) - (br_if $do-once63 - (i32.eqz - (get_local $11) - ) + ) + (set_local $11 + (call $___udivdi3 + (get_local $11) + (get_local $18) + (i32.const 1000000000) + (i32.const 0) ) - (i32.store - (tee_local $5 + ) + (br_if $while-in66 + (i32.ge_u + (tee_local $9 (i32.add - (get_local $5) + (get_local $9) (i32.const -4) ) ) - (get_local $11) + (get_local $5) ) ) ) + (br_if $do-once63 + (i32.eqz + (get_local $11) + ) + ) + (i32.store + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) + ) + ) + (get_local $11) + ) ) - (loop $while-in68 + ) + (loop $while-in68 + (if + (i32.gt_u + (get_local $7) + (get_local $5) + ) (if - (i32.gt_u - (get_local $7) - (get_local $5) - ) - (if - (i32.eqz - (i32.load - (tee_local $9 - (i32.add - (get_local $7) - (i32.const -4) - ) + (i32.eqz + (i32.load + (tee_local $9 + (i32.add + (get_local $7) + (i32.const -4) ) ) ) - (block - (set_local $7 - (get_local $9) - ) - (br $while-in68) + ) + (block + (set_local $7 + (get_local $9) ) + (br $while-in68) ) ) ) - (i32.store - (get_local $21) - (tee_local $9 - (i32.sub - (i32.load - (get_local $21) - ) - (get_local $13) + ) + (i32.store + (get_local $21) + (tee_local $9 + (i32.sub + (i32.load + (get_local $21) ) + (get_local $13) ) ) - (br_if $while-in62 - (i32.gt_s - (get_local $9) - (i32.const 0) - ) + ) + (br_if $while-in62 + (i32.gt_s + (get_local $9) + (i32.const 0) ) ) ) - (set_local $5 - (get_local $8) - ) ) - (set_local $18 - (select - (i32.const 6) - (get_local $6) - (i32.lt_s - (get_local $6) - (i32.const 0) - ) - ) + (set_local $5 + (get_local $8) ) - (if + ) + (set_local $18 + (select + (i32.const 6) + (get_local $6) (i32.lt_s - (get_local $9) + (get_local $6) (i32.const 0) ) - (block - (set_local $20 - (i32.add - (i32.div_s - (tee_local $6 - (i32.add - (get_local $18) - (i32.const 25) - ) + ) + ) + (if + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + (block + (set_local $20 + (i32.add + (i32.div_s + (tee_local $6 + (i32.add + (get_local $18) + (i32.const 25) ) - (i32.const 9) ) - (i32.const 1) - ) - ) - (set_local $31 - (i32.eq - (get_local $24) - (i32.const 102) + (i32.const 9) ) + (i32.const 1) ) - (set_local $6 - (get_local $5) - ) - (set_local $5 - (get_local $7) + ) + (set_local $31 + (i32.eq + (get_local $24) + (i32.const 102) ) - (loop $while-in70 - (set_local $13 - (select - (i32.const 9) - (tee_local $7 - (i32.sub - (i32.const 0) - (get_local $9) - ) - ) - (i32.gt_s - (get_local $7) - (i32.const 9) + ) + (set_local $6 + (get_local $5) + ) + (set_local $5 + (get_local $7) + ) + (loop $while-in70 + (set_local $13 + (select + (i32.const 9) + (tee_local $7 + (i32.sub + (i32.const 0) + (get_local $9) ) ) + (i32.gt_s + (get_local $7) + (i32.const 9) + ) + ) + ) + (if + (i32.lt_u + (get_local $6) + (get_local $5) ) (block $do-once71 - (if - (i32.lt_u - (get_local $6) - (get_local $5) - ) - (block - (set_local $11 - (i32.add - (i32.shl - (i32.const 1) - (get_local $13) - ) - (i32.const -1) - ) + (set_local $11 + (i32.add + (i32.shl + (i32.const 1) + (get_local $13) ) - (set_local $37 + (i32.const -1) + ) + ) + (set_local $37 + (i32.shr_u + (i32.const 1000000000) + (get_local $13) + ) + ) + (set_local $9 + (i32.const 0) + ) + (set_local $7 + (get_local $6) + ) + (loop $while-in74 + (i32.store + (get_local $7) + (i32.add (i32.shr_u - (i32.const 1000000000) - (get_local $13) - ) - ) - (set_local $9 - (i32.const 0) - ) - (set_local $7 - (get_local $6) - ) - (loop $while-in74 - (i32.store - (get_local $7) - (i32.add - (i32.shr_u - (tee_local $32 - (i32.load - (get_local $7) - ) - ) - (get_local $13) - ) - (get_local $9) - ) - ) - (set_local $9 - (i32.mul - (i32.and - (get_local $32) - (get_local $11) + (tee_local $32 + (i32.load + (get_local $7) ) - (get_local $37) ) + (get_local $13) ) - (br_if $while-in74 - (i32.lt_u - (tee_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - (get_local $5) - ) + (get_local $9) + ) + ) + (set_local $9 + (i32.mul + (i32.and + (get_local $32) + (get_local $11) ) + (get_local $37) ) - (set_local $7 - (select - (get_local $6) + ) + (br_if $while-in74 + (i32.lt_u + (tee_local $7 (i32.add - (get_local $6) + (get_local $7) (i32.const 4) ) - (i32.load - (get_local $6) - ) ) - ) - (br_if $do-once71 - (i32.eqz - (get_local $9) - ) - ) - (i32.store (get_local $5) - (get_local $9) - ) - (set_local $5 - (i32.add - (get_local $5) - (i32.const 4) - ) ) ) - (set_local $7 - (select + ) + (set_local $7 + (select + (get_local $6) + (i32.add + (get_local $6) + (i32.const 4) + ) + (i32.load (get_local $6) - (i32.add - (get_local $6) - (i32.const 4) - ) - (i32.load - (get_local $6) - ) ) ) ) - ) - (set_local $11 - (select - (i32.add - (tee_local $6 - (select - (get_local $8) - (get_local $7) - (get_local $31) - ) - ) - (i32.shl - (get_local $20) - (i32.const 2) - ) + (br_if $do-once71 + (i32.eqz + (get_local $9) ) + ) + (i32.store (get_local $5) - (i32.gt_s - (i32.shr_s - (i32.sub - (get_local $5) - (get_local $6) - ) - (i32.const 2) - ) - (get_local $20) + (get_local $9) + ) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 4) ) ) ) - (i32.store - (get_local $21) - (tee_local $9 + (set_local $7 + (select + (get_local $6) (i32.add - (i32.load - (get_local $21) - ) - (get_local $13) + (get_local $6) + (i32.const 4) + ) + (i32.load + (get_local $6) ) ) ) - (set_local $5 - (if (result i32) - (i32.lt_s - (get_local $9) - (i32.const 0) - ) - (block - (set_local $6 + ) + (set_local $11 + (select + (i32.add + (tee_local $6 + (select + (get_local $8) (get_local $7) + (get_local $31) ) - (set_local $5 - (get_local $11) - ) - (br $while-in70) ) - (block (result i32) - (set_local $9 - (get_local $11) - ) - (get_local $7) + (i32.shl + (get_local $20) + (i32.const 2) ) ) - ) - ) - ) - (set_local $9 - (get_local $7) - ) - ) - (set_local $20 - (get_local $8) - ) - (block $do-once75 - (if - (i32.lt_u - (get_local $5) - (get_local $9) - ) - (block - (set_local $7 - (i32.mul + (get_local $5) + (i32.gt_s (i32.shr_s (i32.sub - (get_local $20) (get_local $5) + (get_local $6) ) (i32.const 2) ) - (i32.const 9) + (get_local $20) ) ) - (br_if $do-once75 - (i32.lt_u - (tee_local $11 - (i32.load - (get_local $5) - ) + ) + (i32.store + (get_local $21) + (tee_local $9 + (i32.add + (i32.load + (get_local $21) ) - (i32.const 10) + (get_local $13) ) ) - (set_local $6 - (i32.const 10) - ) - (loop $while-in78 - (set_local $7 - (i32.add + ) + (set_local $5 + (if (result i32) + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + (block + (set_local $6 (get_local $7) - (i32.const 1) ) + (set_local $5 + (get_local $11) + ) + (br $while-in70) ) - (br_if $while-in78 - (i32.ge_u + (block (result i32) + (set_local $9 (get_local $11) - (tee_local $6 - (i32.mul - (get_local $6) - (i32.const 10) - ) - ) ) + (get_local $7) + ) + ) + ) + ) + ) + (set_local $9 + (get_local $7) + ) + ) + (set_local $20 + (get_local $8) + ) + (if + (i32.lt_u + (get_local $5) + (get_local $9) + ) + (block $do-once75 + (set_local $7 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $20) + (get_local $5) ) + (i32.const 2) ) + (i32.const 9) ) + ) + (br_if $do-once75 + (i32.lt_u + (tee_local $11 + (i32.load + (get_local $5) + ) + ) + (i32.const 10) + ) + ) + (set_local $6 + (i32.const 10) + ) + (loop $while-in78 (set_local $7 - (i32.const 0) + (i32.add + (get_local $7) + (i32.const 1) + ) + ) + (br_if $while-in78 + (i32.ge_u + (get_local $11) + (tee_local $6 + (i32.mul + (get_local $6) + (i32.const 10) + ) + ) + ) ) ) ) - (set_local $5 - (if (result i32) - (i32.lt_s - (tee_local $6 - (i32.add - (i32.sub - (get_local $18) - (select - (get_local $7) - (i32.const 0) - (i32.ne - (get_local $24) - (i32.const 102) - ) + (set_local $7 + (i32.const 0) + ) + ) + (set_local $5 + (if (result i32) + (i32.lt_s + (tee_local $6 + (i32.add + (i32.sub + (get_local $18) + (select + (get_local $7) + (i32.const 0) + (i32.ne + (get_local $24) + (i32.const 102) ) ) - (i32.shr_s - (i32.shl - (i32.and - (tee_local $31 - (i32.ne - (get_local $18) - (i32.const 0) - ) + ) + (i32.shr_s + (i32.shl + (i32.and + (tee_local $31 + (i32.ne + (get_local $18) + (i32.const 0) ) - (tee_local $37 - (i32.eq - (get_local $24) - (i32.const 103) - ) + ) + (tee_local $37 + (i32.eq + (get_local $24) + (i32.const 103) ) ) - (i32.const 31) ) (i32.const 31) ) + (i32.const 31) ) ) - (i32.add - (i32.mul - (i32.shr_s - (i32.sub - (get_local $9) - (get_local $20) - ) - (i32.const 2) + ) + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $9) + (get_local $20) ) - (i32.const 9) + (i32.const 2) ) - (i32.const -9) + (i32.const 9) ) + (i32.const -9) ) - (block (result i32) - (set_local $13 - (i32.div_s - (tee_local $11 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const 9216) - ) + ) + (block (result i32) + (set_local $13 + (i32.div_s + (tee_local $11 + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 9216) ) ) - (i32.const 9) ) + (i32.const 9) ) - (if - (i32.lt_s - (tee_local $6 - (i32.add - (i32.rem_s - (get_local $6) - (i32.const 9) - ) - (i32.const 1) + ) + (if + (i32.lt_s + (tee_local $6 + (i32.add + (i32.rem_s + (get_local $6) + (i32.const 9) ) + (i32.const 1) ) - (i32.const 9) ) - (block + (i32.const 9) + ) + (block + (set_local $11 + (i32.const 10) + ) + (loop $while-in80 (set_local $11 - (i32.const 10) - ) - (loop $while-in80 - (set_local $11 - (i32.mul - (get_local $11) - (i32.const 10) - ) + (i32.mul + (get_local $11) + (i32.const 10) ) - (br_if $while-in80 - (i32.ne - (tee_local $6 - (i32.add - (get_local $6) - (i32.const 1) - ) + ) + (br_if $while-in80 + (i32.ne + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 1) ) - (i32.const 9) ) + (i32.const 9) ) ) ) - (set_local $11 - (i32.const 10) - ) ) - (set_local $13 - (tee_local $24 - (i32.load - (tee_local $6 + (set_local $11 + (i32.const 10) + ) + ) + (set_local $13 + (tee_local $24 + (i32.load + (tee_local $6 + (i32.add (i32.add - (i32.add - (get_local $8) - (i32.shl - (get_local $13) - (i32.const 2) - ) + (get_local $8) + (i32.shl + (get_local $13) + (i32.const 2) ) - (i32.const -4092) ) + (i32.const -4092) ) ) ) ) - (set_local $13 - (if (result i32) + ) + (set_local $13 + (if (result i32) + (get_local $11) + (i32.rem_u + (get_local $13) (get_local $11) - (i32.rem_u + ) + (i32.const 0) + ) + ) + (if + (i32.eqz + (i32.and + (tee_local $32 + (i32.eq + (i32.add + (get_local $6) + (i32.const 4) + ) + (get_local $9) + ) + ) + (i32.eqz (get_local $13) - (get_local $11) ) - (i32.const 0) ) ) (block $do-once81 - (if - (i32.eqz - (i32.and - (tee_local $32 - (i32.eq - (i32.add - (get_local $6) - (i32.const 4) - ) - (get_local $9) - ) - ) - (i32.eqz - (get_local $13) - ) + (set_local $50 + (if (result i32) + (get_local $11) + (i32.div_u + (get_local $24) + (get_local $11) ) + (i32.const 0) ) - (block - (set_local $50 - (if (result i32) - (get_local $11) - (i32.div_u - (get_local $24) + ) + (set_local $15 + (if (result f64) + (i32.lt_u + (get_local $13) + (tee_local $38 + (i32.div_s (get_local $11) + (i32.const 2) ) - (i32.const 0) ) ) - (set_local $15 - (if (result f64) - (i32.lt_u + (f64.const 0.5) + (select + (f64.const 1) + (f64.const 1.5) + (i32.and + (get_local $32) + (i32.eq (get_local $13) - (tee_local $38 - (i32.div_s - (get_local $11) - (i32.const 2) - ) - ) - ) - (f64.const 0.5) - (select - (f64.const 1) - (f64.const 1.5) - (i32.and - (get_local $32) - (i32.eq - (get_local $13) - (get_local $38) - ) - ) + (get_local $38) ) ) ) - (set_local $23 - (select - (f64.const 9007199254740994) - (f64.const 9007199254740992) - (i32.and - (get_local $50) - (i32.const 1) - ) + ) + ) + (set_local $23 + (select + (f64.const 9007199254740994) + (f64.const 9007199254740992) + (i32.and + (get_local $50) + (i32.const 1) + ) + ) + ) + (if + (get_local $27) + (if + (i32.eq + (i32.load8_s + (get_local $30) ) + (i32.const 45) ) - (block $do-once83 - (if - (get_local $27) - (block - (br_if $do-once83 - (i32.ne - (i32.load8_s - (get_local $30) - ) - (i32.const 45) - ) - ) - (set_local $23 - (f64.neg - (get_local $23) - ) - ) - (set_local $15 - (f64.neg - (get_local $15) - ) - ) + (block + (set_local $23 + (f64.neg + (get_local $23) ) ) + (set_local $15 + (f64.neg + (get_local $15) + ) + ) + ) + ) + ) + (i32.store + (get_local $6) + (tee_local $13 + (i32.sub + (get_local $24) + (get_local $13) ) + ) + ) + (br_if $do-once81 + (f64.eq + (f64.add + (get_local $23) + (get_local $15) + ) + (get_local $23) + ) + ) + (i32.store + (get_local $6) + (tee_local $7 + (i32.add + (get_local $13) + (get_local $11) + ) + ) + ) + (if + (i32.gt_u + (get_local $7) + (i32.const 999999999) + ) + (loop $while-in86 (i32.store (get_local $6) - (tee_local $13 - (i32.sub - (get_local $24) - (get_local $13) + (i32.const 0) + ) + (if + (i32.lt_u + (tee_local $6 + (i32.add + (get_local $6) + (i32.const -4) + ) ) + (get_local $5) ) - ) - (br_if $do-once81 - (f64.eq - (f64.add - (get_local $23) - (get_local $15) + (i32.store + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) + ) ) - (get_local $23) + (i32.const 0) ) ) (i32.store (get_local $6) (tee_local $7 (i32.add - (get_local $13) - (get_local $11) + (i32.load + (get_local $6) + ) + (i32.const 1) ) ) ) - (if + (br_if $while-in86 (i32.gt_u (get_local $7) (i32.const 999999999) ) - (loop $while-in86 - (i32.store - (get_local $6) - (i32.const 0) - ) - (if - (i32.lt_u - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -4) - ) - ) - (get_local $5) - ) - (i32.store - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -4) - ) - ) - (i32.const 0) - ) - ) - (i32.store - (get_local $6) - (tee_local $7 - (i32.add - (i32.load - (get_local $6) - ) - (i32.const 1) - ) - ) - ) - (br_if $while-in86 - (i32.gt_u - (get_local $7) - (i32.const 999999999) - ) - ) - ) ) - (set_local $7 - (i32.mul - (i32.shr_s - (i32.sub - (get_local $20) - (get_local $5) - ) - (i32.const 2) - ) - (i32.const 9) + ) + ) + (set_local $7 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $20) + (get_local $5) ) + (i32.const 2) ) - (br_if $do-once81 - (i32.lt_u - (tee_local $13 - (i32.load - (get_local $5) - ) - ) - (i32.const 10) + (i32.const 9) + ) + ) + (br_if $do-once81 + (i32.lt_u + (tee_local $13 + (i32.load + (get_local $5) ) ) - (set_local $11 - (i32.const 10) + (i32.const 10) + ) + ) + (set_local $11 + (i32.const 10) + ) + (loop $while-in88 + (set_local $7 + (i32.add + (get_local $7) + (i32.const 1) ) - (loop $while-in88 - (set_local $7 - (i32.add - (get_local $7) - (i32.const 1) - ) - ) - (br_if $while-in88 - (i32.ge_u - (get_local $13) - (tee_local $11 - (i32.mul - (get_local $11) - (i32.const 10) - ) - ) + ) + (br_if $while-in88 + (i32.ge_u + (get_local $13) + (tee_local $11 + (i32.mul + (get_local $11) + (i32.const 10) ) ) ) ) ) ) - (set_local $11 - (get_local $5) - ) - (set_local $13 - (get_local $7) - ) - (select - (tee_local $5 - (i32.add - (get_local $6) - (i32.const 4) - ) - ) - (get_local $9) - (i32.gt_u - (get_local $9) - (get_local $5) + ) + (set_local $11 + (get_local $5) + ) + (set_local $13 + (get_local $7) + ) + (select + (tee_local $5 + (i32.add + (get_local $6) + (i32.const 4) ) ) - ) - (block (result i32) - (set_local $11 + (get_local $9) + (i32.gt_u + (get_local $9) (get_local $5) ) - (set_local $13 - (get_local $7) - ) - (get_local $9) ) ) - ) - (set_local $32 - (i32.sub - (i32.const 0) - (get_local $13) + (block (result i32) + (set_local $11 + (get_local $5) + ) + (set_local $13 + (get_local $7) + ) + (get_local $9) ) ) - (set_local $9 - (loop $while-in90 (result i32) - (block $while-out89 (result i32) - (if - (i32.le_u + ) + (set_local $32 + (i32.sub + (i32.const 0) + (get_local $13) + ) + ) + (set_local $9 + (loop $while-in90 (result i32) + (block $while-out89 (result i32) + (if + (i32.le_u + (get_local $5) + (get_local $11) + ) + (block + (set_local $24 + (i32.const 0) + ) + (br $while-out89 (get_local $5) - (get_local $11) ) - (block - (set_local $24 - (i32.const 0) - ) - (br $while-out89 + ) + ) + (if (result i32) + (i32.load + (tee_local $7 + (i32.add (get_local $5) + (i32.const -4) ) ) ) - (if (result i32) - (i32.load - (tee_local $7 - (i32.add - (get_local $5) - (i32.const -4) - ) - ) - ) - (block (result i32) - (set_local $24 - (i32.const 1) - ) - (get_local $5) + (block (result i32) + (set_local $24 + (i32.const 1) ) - (block - (set_local $5 - (get_local $7) - ) - (br $while-in90) + (get_local $5) + ) + (block + (set_local $5 + (get_local $7) ) + (br $while-in90) ) ) ) ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $16) - (tee_local $13 + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $16) + (tee_local $13 + (i32.add (i32.add (i32.add (i32.add - (i32.add - (get_local $27) - (i32.const 1) - ) - (tee_local $5 + (get_local $27) + (i32.const 1) + ) + (tee_local $5 + (if (result i32) + (get_local $37) (block $do-once91 (result i32) - (if (result i32) - (get_local $37) - (block (result i32) - (set_local $7 - (if (result i32) - (i32.and - (i32.gt_s - (tee_local $5 - (i32.add - (i32.xor - (get_local $31) - (i32.const 1) - ) - (get_local $18) - ) + (set_local $7 + (if (result i32) + (i32.and + (i32.gt_s + (tee_local $5 + (i32.add + (i32.xor + (get_local $31) + (i32.const 1) ) - (get_local $13) - ) - (i32.gt_s - (get_local $13) - (i32.const -5) + (get_local $18) ) ) - (block (result i32) - (set_local $18 - (i32.sub - (i32.add - (get_local $5) - (i32.const -1) - ) - (get_local $13) - ) - ) + (get_local $13) + ) + (i32.gt_s + (get_local $13) + (i32.const -5) + ) + ) + (block (result i32) + (set_local $18 + (i32.sub (i32.add - (get_local $19) + (get_local $5) (i32.const -1) ) + (get_local $13) ) - (block (result i32) - (set_local $18 - (i32.add - (get_local $5) - (i32.const -1) - ) - ) - (i32.add - (get_local $19) - (i32.const -2) - ) + ) + (i32.add + (get_local $19) + (i32.const -1) + ) + ) + (block (result i32) + (set_local $18 + (i32.add + (get_local $5) + (i32.const -1) ) ) + (i32.add + (get_local $19) + (i32.const -2) + ) + ) + ) + ) + (if + (tee_local $5 + (i32.and + (get_local $12) + (i32.const 8) ) + ) + (block + (set_local $20 + (get_local $5) + ) + (br $do-once91 + (get_local $18) + ) + ) + ) + (if + (get_local $24) + (block $do-once93 (if - (tee_local $5 - (i32.and - (get_local $12) - (i32.const 8) + (i32.eqz + (tee_local $19 + (i32.load + (i32.add + (get_local $9) + (i32.const -4) + ) + ) ) ) (block - (set_local $20 - (get_local $5) - ) - (br $do-once91 - (get_local $18) + (set_local $5 + (i32.const 9) ) + (br $do-once93) ) ) - (block $do-once93 - (if - (get_local $24) + (set_local $5 + (if (result i32) + (i32.rem_u + (get_local $19) + (i32.const 10) + ) (block - (if - (i32.eqz - (tee_local $19 - (i32.load - (i32.add - (get_local $9) - (i32.const -4) - ) - ) - ) - ) - (block - (set_local $5 - (i32.const 9) - ) - (br $do-once93) - ) - ) (set_local $5 - (if (result i32) - (i32.rem_u - (get_local $19) - (i32.const 10) - ) - (block - (set_local $5 - (i32.const 0) - ) - (br $do-once93) - ) - (block (result i32) - (set_local $6 - (i32.const 10) - ) - (i32.const 0) - ) - ) - ) - (loop $while-in96 - (set_local $5 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (br_if $while-in96 - (i32.eqz - (if (result i32) - (tee_local $38 - (tee_local $6 - (i32.mul - (get_local $6) - (i32.const 10) - ) - ) - ) - (i32.rem_u - (get_local $19) - (get_local $38) - ) - (i32.const 0) - ) - ) - ) + (i32.const 0) ) + (br $do-once93) ) - (set_local $5 - (i32.const 9) + (block (result i32) + (set_local $6 + (i32.const 10) + ) + (i32.const 0) ) ) ) - (set_local $6 - (i32.add - (i32.mul - (i32.shr_s - (i32.sub - (get_local $9) - (get_local $20) + (loop $while-in96 + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (br_if $while-in96 + (i32.eqz + (if (result i32) + (tee_local $38 + (tee_local $6 + (i32.mul + (get_local $6) + (i32.const 10) + ) + ) ) - (i32.const 2) + (i32.rem_u + (get_local $19) + (get_local $38) + ) + (i32.const 0) ) - (i32.const 9) ) - (i32.const -9) ) ) - (if (result i32) - (i32.eq - (i32.or - (get_local $7) - (i32.const 32) + ) + (set_local $5 + (i32.const 9) + ) + ) + (set_local $6 + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $9) + (get_local $20) ) - (i32.const 102) + (i32.const 2) ) - (block (result i32) - (set_local $20 - (i32.const 0) - ) + (i32.const 9) + ) + (i32.const -9) + ) + ) + (if (result i32) + (i32.eq + (i32.or + (get_local $7) + (i32.const 32) + ) + (i32.const 102) + ) + (block (result i32) + (set_local $20 + (i32.const 0) + ) + (select + (get_local $18) + (tee_local $5 (select - (get_local $18) + (i32.const 0) (tee_local $5 - (select - (i32.const 0) - (tee_local $5 - (i32.sub - (get_local $6) - (get_local $5) - ) - ) - (i32.lt_s - (get_local $5) - (i32.const 0) - ) + (i32.sub + (get_local $6) + (get_local $5) ) ) (i32.lt_s - (get_local $18) (get_local $5) + (i32.const 0) ) ) ) - (block (result i32) - (set_local $20 - (i32.const 0) - ) + (i32.lt_s + (get_local $18) + (get_local $5) + ) + ) + ) + (block (result i32) + (set_local $20 + (i32.const 0) + ) + (select + (get_local $18) + (tee_local $5 (select - (get_local $18) + (i32.const 0) (tee_local $5 - (select - (i32.const 0) - (tee_local $5 - (i32.sub - (i32.add - (get_local $6) - (get_local $13) - ) - (get_local $5) - ) - ) - (i32.lt_s - (get_local $5) - (i32.const 0) + (i32.sub + (i32.add + (get_local $6) + (get_local $13) ) + (get_local $5) ) ) (i32.lt_s - (get_local $18) (get_local $5) + (i32.const 0) ) ) ) - ) - ) - (block (result i32) - (set_local $20 - (i32.and - (get_local $12) - (i32.const 8) + (i32.lt_s + (get_local $18) + (get_local $5) ) ) - (set_local $7 - (get_local $19) - ) - (get_local $18) ) ) ) - ) - ) - (i32.ne - (tee_local $31 - (i32.or - (get_local $5) - (get_local $20) + (block (result i32) + (set_local $20 + (i32.and + (get_local $12) + (i32.const 8) + ) + ) + (set_local $7 + (get_local $19) + ) + (get_local $18) ) ) - (i32.const 0) ) ) - (if (result i32) - (tee_local $18 - (i32.eq - (i32.or - (get_local $7) - (i32.const 32) - ) - (i32.const 102) + (i32.ne + (tee_local $31 + (i32.or + (get_local $5) + (get_local $20) ) ) - (block (result i32) - (set_local $19 - (i32.const 0) + (i32.const 0) + ) + ) + (if (result i32) + (tee_local $18 + (i32.eq + (i32.or + (get_local $7) + (i32.const 32) ) - (select + (i32.const 102) + ) + ) + (block (result i32) + (set_local $19 + (i32.const 0) + ) + (select + (get_local $13) + (i32.const 0) + (i32.gt_s (get_local $13) (i32.const 0) - (i32.gt_s - (get_local $13) - (i32.const 0) - ) ) ) - (block (result i32) - (if - (i32.lt_s - (i32.sub - (get_local $26) - (tee_local $6 - (call $_fmt_u - (tee_local $6 - (select - (get_local $32) + ) + (block (result i32) + (if + (i32.lt_s + (i32.sub + (get_local $26) + (tee_local $6 + (call $_fmt_u + (tee_local $6 + (select + (get_local $32) + (get_local $13) + (i32.lt_s (get_local $13) - (i32.lt_s - (get_local $13) - (i32.const 0) - ) + (i32.const 0) ) ) - (i32.shr_s - (i32.shl - (i32.lt_s - (get_local $6) - (i32.const 0) - ) - (i32.const 31) + ) + (i32.shr_s + (i32.shl + (i32.lt_s + (get_local $6) + (i32.const 0) ) (i32.const 31) ) - (get_local $26) + (i32.const 31) ) + (get_local $26) ) ) - (i32.const 2) ) - (loop $while-in98 - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in98 - (i32.lt_s - (i32.sub - (get_local $26) - (get_local $6) - ) - (i32.const 2) + (i32.const 2) + ) + (loop $while-in98 + (i32.store8 + (tee_local $6 + (i32.add + (get_local $6) + (i32.const -1) ) ) + (i32.const 48) ) - ) - (i32.store8 - (i32.add - (get_local $6) - (i32.const -1) - ) - (i32.add - (i32.and - (i32.shr_s - (get_local $13) - (i32.const 31) + (br_if $while-in98 + (i32.lt_s + (i32.sub + (get_local $26) + (get_local $6) ) (i32.const 2) ) - (i32.const 43) ) ) - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -2) + ) + (i32.store8 + (i32.add + (get_local $6) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_s + (get_local $13) + (i32.const 31) ) + (i32.const 2) ) - (get_local $7) + (i32.const 43) ) - (i32.sub - (get_local $26) - (tee_local $19 + ) + (i32.store8 + (tee_local $6 + (i32.add (get_local $6) + (i32.const -2) ) ) + (get_local $7) + ) + (i32.sub + (get_local $26) + (tee_local $19 + (get_local $6) + ) ) ) ) ) - (get_local $12) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $30) - (get_local $27) + (get_local $12) + ) + (if + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (get_local $16) - (get_local $13) - (i32.xor - (get_local $12) - (i32.const 65536) + (drop + (call $___fwritex + (get_local $30) + (get_local $27) + (get_local $0) ) ) - (block $do-once99 - (if - (get_local $18) - (block - (set_local $6 - (tee_local $11 - (select - (get_local $8) - (get_local $11) - (i32.gt_u - (get_local $11) - (get_local $8) - ) - ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (get_local $16) + (get_local $13) + (i32.xor + (get_local $12) + (i32.const 65536) + ) + ) + (if + (get_local $18) + (block + (set_local $6 + (tee_local $11 + (select + (get_local $8) + (get_local $11) + (i32.gt_u + (get_local $11) + (get_local $8) ) ) - (loop $while-in102 - (set_local $7 - (call $_fmt_u - (i32.load - (get_local $6) + ) + ) + (loop $while-in102 + (set_local $7 + (call $_fmt_u + (i32.load + (get_local $6) + ) + (i32.const 0) + (get_local $29) + ) + ) + (block $do-once103 + (if + (i32.eq + (get_local $6) + (get_local $11) + ) + (block + (br_if $do-once103 + (i32.ne + (get_local $7) + (get_local $29) ) - (i32.const 0) - (get_local $29) + ) + (i32.store8 + (get_local $33) + (i32.const 48) + ) + (set_local $7 + (get_local $33) ) ) - (block $do-once103 - (if - (i32.eq - (get_local $6) - (get_local $11) + (block + (br_if $do-once103 + (i32.le_u + (get_local $7) + (get_local $22) ) - (block - (br_if $do-once103 - (i32.ne + ) + (loop $while-in106 + (i32.store8 + (tee_local $7 + (i32.add (get_local $7) - (get_local $29) + (i32.const -1) ) ) - (i32.store8 - (get_local $33) - (i32.const 48) - ) - (set_local $7 - (get_local $33) - ) + (i32.const 48) ) - (block - (br_if $do-once103 - (i32.le_u - (get_local $7) - (get_local $22) - ) - ) - (loop $while-in106 - (i32.store8 - (tee_local $7 - (i32.add - (get_local $7) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in106 - (i32.gt_u - (get_local $7) - (get_local $22) - ) - ) + (br_if $while-in106 + (i32.gt_u + (get_local $7) + (get_local $22) ) ) ) ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + ) + ) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) ) - (drop - (call $___fwritex - (get_local $7) - (i32.sub - (get_local $43) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $7) + (i32.sub + (get_local $43) + (get_local $7) + ) + (get_local $0) + ) + ) + ) + (if + (i32.le_u + (tee_local $7 + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + (get_local $8) + ) + (block + (set_local $6 + (get_local $7) + ) + (br $while-in102) + ) + ) + ) + (if + (get_local $31) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (i32.const 4143) + (i32.const 1) + (get_local $0) + ) + ) + ) + ) + (if + (i32.and + (i32.gt_s + (get_local $5) + (i32.const 0) + ) + (i32.lt_u + (get_local $7) + (get_local $9) + ) + ) + (loop $while-in110 + (if + (i32.gt_u + (tee_local $6 + (call $_fmt_u + (i32.load (get_local $7) ) - (get_local $0) + (i32.const 0) + (get_local $29) ) ) + (get_local $22) ) - (if - (i32.le_u - (tee_local $7 + (loop $while-in112 + (i32.store8 + (tee_local $6 (i32.add (get_local $6) - (i32.const 4) + (i32.const -1) ) ) - (get_local $8) + (i32.const 48) ) - (block - (set_local $6 - (get_local $7) + (br_if $while-in112 + (i32.gt_u + (get_local $6) + (get_local $22) ) - (br $while-in102) ) ) ) - (block $do-once107 - (if - (get_local $31) - (block - (br_if $do-once107 - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) ) - (drop - (call $___fwritex - (i32.const 4143) - (i32.const 1) - (get_local $0) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $6) + (select + (i32.const 9) + (get_local $5) + (i32.gt_s + (get_local $5) + (i32.const 9) ) ) + (get_local $0) ) ) ) - (if - (i32.and - (i32.gt_s - (get_local $5) - (i32.const 0) - ) - (i32.lt_u - (get_local $7) - (get_local $9) - ) + (set_local $6 + (i32.add + (get_local $5) + (i32.const -9) ) - (loop $while-in110 - (if - (i32.gt_u - (tee_local $6 - (call $_fmt_u - (i32.load - (get_local $7) - ) - (i32.const 0) - (get_local $29) - ) - ) - (get_local $22) - ) - (loop $while-in112 - (i32.store8 - (tee_local $6 - (i32.add - (get_local $6) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in112 - (i32.gt_u - (get_local $6) - (get_local $22) - ) - ) - ) - ) - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) + ) + (set_local $5 + (if (result i32) + (i32.and + (i32.gt_s + (get_local $5) + (i32.const 9) ) - (drop - (call $___fwritex - (get_local $6) - (select - (i32.const 9) - (get_local $5) - (i32.gt_s - (get_local $5) - (i32.const 9) - ) + (i32.lt_u + (tee_local $7 + (i32.add + (get_local $7) + (i32.const 4) ) - (get_local $0) ) + (get_local $9) ) ) - (set_local $6 - (i32.add - (get_local $5) - (i32.const -9) - ) - ) - (set_local $5 - (if (result i32) - (i32.and - (i32.gt_s - (get_local $5) - (i32.const 9) - ) - (i32.lt_u - (tee_local $7 - (i32.add - (get_local $7) - (i32.const 4) - ) - ) - (get_local $9) - ) - ) - (block - (set_local $5 - (get_local $6) - ) - (br $while-in110) - ) + (block + (set_local $5 (get_local $6) ) + (br $while-in110) ) + (get_local $6) ) ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.add - (get_local $5) - (i32.const 9) - ) - (i32.const 9) - (i32.const 0) + ) + ) + (call $_pad + (get_local $0) + (i32.const 48) + (i32.add + (get_local $5) + (i32.const 9) + ) + (i32.const 9) + (i32.const 0) + ) + ) + (block $do-once99 + (set_local $9 + (select + (get_local $9) + (i32.add + (get_local $11) + (i32.const 4) ) + (get_local $24) + ) + ) + (if + (i32.gt_s + (get_local $5) + (i32.const -1) ) (block - (set_local $9 - (select - (get_local $9) - (i32.add - (get_local $11) - (i32.const 4) - ) - (get_local $24) + (set_local $18 + (i32.eqz + (get_local $20) ) ) - (if - (i32.gt_s - (get_local $5) - (i32.const -1) - ) - (block - (set_local $18 - (i32.eqz - (get_local $20) - ) - ) - (set_local $6 - (get_local $11) - ) - (set_local $7 - (get_local $5) - ) - (loop $while-in114 - (if - (i32.eq - (tee_local $5 - (call $_fmt_u - (i32.load - (get_local $6) - ) - (i32.const 0) - (get_local $29) - ) + (set_local $6 + (get_local $11) + ) + (set_local $7 + (get_local $5) + ) + (loop $while-in114 + (if + (i32.eq + (tee_local $5 + (call $_fmt_u + (i32.load + (get_local $6) ) + (i32.const 0) (get_local $29) ) - (block - (i32.store8 - (get_local $33) - (i32.const 48) - ) - (set_local $5 - (get_local $33) - ) - ) ) - (block $do-once115 + (get_local $29) + ) + (block + (i32.store8 + (get_local $33) + (i32.const 48) + ) + (set_local $5 + (get_local $33) + ) + ) + ) + (block $do-once115 + (if + (i32.eq + (get_local $6) + (get_local $11) + ) + (block (if - (i32.eq - (get_local $6) - (get_local $11) - ) - (block - (if - (i32.eqz - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (get_local $5) - (i32.const 1) - (get_local $0) - ) - ) - ) - (set_local $5 - (i32.add - (get_local $5) - (i32.const 1) - ) - ) - (br_if $do-once115 - (i32.and - (get_local $18) - (i32.lt_s - (get_local $7) - (i32.const 1) - ) - ) - ) - (br_if $do-once115 - (i32.and - (i32.load - (get_local $0) - ) - (i32.const 32) - ) - ) - (drop - (call $___fwritex - (i32.const 4143) - (i32.const 1) + (i32.eqz + (i32.and + (i32.load (get_local $0) ) + (i32.const 32) ) ) - (block - (br_if $do-once115 - (i32.le_u - (get_local $5) - (get_local $22) - ) - ) - (loop $while-in118 - (i32.store8 - (tee_local $5 - (i32.add - (get_local $5) - (i32.const -1) - ) - ) - (i32.const 48) - ) - (br_if $while-in118 - (i32.gt_u - (get_local $5) - (get_local $22) - ) - ) + (drop + (call $___fwritex + (get_local $5) + (i32.const 1) + (get_local $0) ) ) ) - ) - (set_local $8 - (i32.sub - (get_local $43) - (get_local $5) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) ) - ) - (if - (i32.eqz + (br_if $do-once115 + (i32.and + (get_local $18) + (i32.lt_s + (get_local $7) + (i32.const 1) + ) + ) + ) + (br_if $do-once115 (i32.and (i32.load (get_local $0) @@ -6173,202 +6093,250 @@ ) (drop (call $___fwritex - (get_local $5) - (select - (get_local $8) - (get_local $7) - (i32.gt_s - (get_local $7) - (get_local $8) - ) - ) + (i32.const 4143) + (i32.const 1) (get_local $0) ) ) ) - (br_if $while-in114 - (i32.and - (i32.lt_u - (tee_local $6 + (block + (br_if $do-once115 + (i32.le_u + (get_local $5) + (get_local $22) + ) + ) + (loop $while-in118 + (i32.store8 + (tee_local $5 (i32.add - (get_local $6) - (i32.const 4) + (get_local $5) + (i32.const -1) ) ) - (get_local $9) + (i32.const 48) ) - (i32.gt_s - (tee_local $7 - (i32.sub - (get_local $7) - (get_local $8) - ) + (br_if $while-in118 + (i32.gt_u + (get_local $5) + (get_local $22) ) - (i32.const -1) ) ) ) ) - (set_local $5 - (get_local $7) - ) ) - ) - (call $_pad - (get_local $0) - (i32.const 48) - (i32.add - (get_local $5) - (i32.const 18) + (set_local $8 + (i32.sub + (get_local $43) + (get_local $5) + ) ) - (i32.const 18) - (i32.const 0) - ) - (br_if $do-once99 - (i32.and - (i32.load - (get_local $0) + (if + (i32.eqz + (i32.and + (i32.load + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $5) + (select + (get_local $8) + (get_local $7) + (i32.gt_s + (get_local $7) + (get_local $8) + ) + ) + (get_local $0) + ) ) - (i32.const 32) ) - ) - (drop - (call $___fwritex - (get_local $19) - (i32.sub - (get_local $26) - (get_local $19) + (br_if $while-in114 + (i32.and + (i32.lt_u + (tee_local $6 + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + (get_local $9) + ) + (i32.gt_s + (tee_local $7 + (i32.sub + (get_local $7) + (get_local $8) + ) + ) + (i32.const -1) + ) ) - (get_local $0) ) ) + (set_local $5 + (get_local $7) + ) ) ) - ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $16) - (get_local $13) - (i32.xor - (get_local $12) - (i32.const 8192) - ) - ) - (select - (get_local $16) - (get_local $13) - (i32.lt_s - (get_local $13) - (get_local $16) - ) - ) - ) - (block (result i32) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $16) - (tee_local $7 + (call $_pad + (get_local $0) + (i32.const 48) (i32.add - (tee_local $9 - (select - (i32.const 0) - (get_local $27) - (tee_local $6 - (f64.ne - (get_local $15) - (get_local $15) - ) - ) - ) - ) - (i32.const 3) + (get_local $5) + (i32.const 18) ) + (i32.const 18) + (i32.const 0) ) - (get_local $8) - ) - (if - (i32.eqz + (br_if $do-once99 (i32.and - (tee_local $5 - (i32.load - (get_local $0) - ) + (i32.load + (get_local $0) ) (i32.const 32) ) ) - (block - (drop - (call $___fwritex - (get_local $30) - (get_local $9) - (get_local $0) - ) - ) - (set_local $5 - (i32.load - (get_local $0) + (drop + (call $___fwritex + (get_local $19) + (i32.sub + (get_local $26) + (get_local $19) ) + (get_local $0) ) ) ) - (set_local $6 - (select - (select - (i32.const 4135) - (i32.const 4139) - (tee_local $8 - (i32.ne - (i32.and - (get_local $19) - (i32.const 32) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $16) + (get_local $13) + (i32.xor + (get_local $12) + (i32.const 8192) + ) + ) + (select + (get_local $16) + (get_local $13) + (i32.lt_s + (get_local $13) + (get_local $16) + ) + ) + ) + (block (result i32) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $16) + (tee_local $7 + (i32.add + (tee_local $9 + (select + (i32.const 0) + (get_local $27) + (tee_local $6 + (f64.ne + (get_local $15) + (get_local $15) ) - (i32.const 0) ) ) ) - (select - (i32.const 4127) - (i32.const 4131) - (get_local $8) - ) - (get_local $6) + (i32.const 3) ) ) - (if - (i32.eqz - (i32.and - (get_local $5) - (i32.const 32) + (get_local $8) + ) + (if + (i32.eqz + (i32.and + (tee_local $5 + (i32.load + (get_local $0) + ) ) + (i32.const 32) ) + ) + (block (drop (call $___fwritex - (get_local $6) - (i32.const 3) + (get_local $30) + (get_local $9) (get_local $0) ) ) - ) - (call $_pad - (get_local $0) - (i32.const 32) - (get_local $16) - (get_local $7) - (i32.xor - (get_local $12) - (i32.const 8192) + (set_local $5 + (i32.load + (get_local $0) + ) ) ) + ) + (set_local $6 (select - (get_local $16) - (get_local $7) - (i32.lt_s - (get_local $7) - (get_local $16) + (select + (i32.const 4135) + (i32.const 4139) + (tee_local $8 + (i32.ne + (i32.and + (get_local $19) + (i32.const 32) + ) + (i32.const 0) + ) + ) + ) + (select + (i32.const 4127) + (i32.const 4131) + (get_local $8) ) + (get_local $6) + ) + ) + (if + (i32.eqz + (i32.and + (get_local $5) + (i32.const 32) + ) + ) + (drop + (call $___fwritex + (get_local $6) + (i32.const 3) + (get_local $0) + ) + ) + ) + (call $_pad + (get_local $0) + (i32.const 32) + (get_local $16) + (get_local $7) + (i32.xor + (get_local $12) + (i32.const 8192) + ) + ) + (select + (get_local $16) + (get_local $7) + (i32.lt_s + (get_local $7) + (get_local $16) ) ) ) diff --git a/test/passes/merge-blocks.txt b/test/passes/merge-blocks.txt index 908339b37..1a2ee186c 100644 --- a/test/passes/merge-blocks.txt +++ b/test/passes/merge-blocks.txt @@ -129,4 +129,112 @@ ) ) ) + (func $if-block (; 9 ;) (type $0) + (if + (i32.const 1) + (block $label + (block $block + (drop + (i32.const 2) + ) + (drop + (i32.const 3) + ) + ) + ) + ) + ) + (func $if-block-bad (; 10 ;) (type $0) + (block $label + (if + (br $label) + (block $block + (drop + (i32.const 2) + ) + (drop + (i32.const 3) + ) + ) + ) + ) + ) + (func $if-block-br (; 11 ;) (type $0) + (if + (i32.const 1) + (block $label + (br $label) + ) + ) + ) + (func $if-block-br-1 (; 12 ;) (type $0) + (if + (i32.const 1) + (block $label + (br $label) + ) + (drop + (i32.const 3) + ) + ) + ) + (func $if-block-br-2 (; 13 ;) (type $0) + (if + (i32.const 1) + (drop + (i32.const 3) + ) + (block $label + (br $label) + ) + ) + ) + (func $if-block-br-3 (; 14 ;) (type $0) + (block $label + (if + (i32.const 1) + (br $label) + (br $label) + ) + ) + ) + (func $if-block-br-4-eithre (; 15 ;) (type $0) + (if + (i32.const 1) + (block $label + (drop + (i32.const 2) + ) + ) + (drop + (i32.const 3) + ) + ) + ) + (func $if-block-br-5-value (; 16 ;) (type $2) (result i32) + (if (result i32) + (i32.const 1) + (block $label (result i32) + (i32.const 2) + ) + (i32.const 3) + ) + ) + (func $restructure-if-outerType-change (; 17 ;) (type $0) + (loop $label$1 + (br_if $label$1 + (block $label$2 + (if + (block $label$4 + (unreachable) + ) + (block $label$3 + (br $label$3) + ) + ) + (unreachable) + ) + ) + ) + ) ) diff --git a/test/passes/merge-blocks.wast b/test/passes/merge-blocks.wast index 7cba9bf90..2fe784b18 100644 --- a/test/passes/merge-blocks.wast +++ b/test/passes/merge-blocks.wast @@ -108,5 +108,97 @@ ) ) ) + (func $if-block + (block $label + (if + (i32.const 1) + (block + (drop (i32.const 2)) + (drop (i32.const 3)) + ) + ) + ) + ) + (func $if-block-bad + (block $label + (if + (br $label) ;; use outside of arm + (block + (drop (i32.const 2)) + (drop (i32.const 3)) + ) + ) + ) + ) + (func $if-block-br + (block $label + (if + (i32.const 1) + (br $label) + ) + ) + ) + (func $if-block-br-1 + (block $label + (if + (i32.const 1) + (br $label) + (drop (i32.const 3)) + ) + ) + ) + (func $if-block-br-2 + (block $label + (if + (i32.const 1) + (drop (i32.const 3)) + (br $label) + ) + ) + ) + (func $if-block-br-3 + (block $label + (if + (i32.const 1) + (br $label) + (br $label) + ) + ) + ) + (func $if-block-br-4-eithre + (block $label + (if + (i32.const 1) + (drop (i32.const 2)) + (drop (i32.const 3)) + ) + ) + ) + (func $if-block-br-5-value (result i32) + (block $label (result i32) + (if (result i32) + (i32.const 1) + (i32.const 2) + (i32.const 3) + ) + ) + ) + (func $restructure-if-outerType-change + (loop $label$1 + (br_if $label$1 + (block $label$2 + (block $label$3 + (if + (block $label$4 + (unreachable) + ) + (br $label$3) + ) + ) + (unreachable) + ) + ) + ) + ) ) diff --git a/test/unit.fromasm b/test/unit.fromasm index 4a018a780..cd623d401 100644 --- a/test/unit.fromasm +++ b/test/unit.fromasm @@ -538,19 +538,18 @@ (i32.const 50) ) (func $breakThroughMany (; 32 ;) (; has Stack IR ;) (param $0 i32) - (block $label$break$L1 - (if - (get_local $0) - (loop $while-in - (br_if $label$break$L1 - (i32.eqz - (get_local $0) + (if + (get_local $0) + (loop $while-in + (if + (get_local $0) + (block + (call $zeroInit + (i32.const 0) ) + (br $while-in) ) - (call $zeroInit - (i32.const 0) - ) - (br $while-in) + (nop) ) ) ) diff --git a/test/unit.fromasm.clamp b/test/unit.fromasm.clamp index fa1965d6a..b840f615e 100644 --- a/test/unit.fromasm.clamp +++ b/test/unit.fromasm.clamp @@ -588,19 +588,18 @@ (i32.const 50) ) (func $breakThroughMany (; 33 ;) (; has Stack IR ;) (param $0 i32) - (block $label$break$L1 - (if - (get_local $0) - (loop $while-in - (br_if $label$break$L1 - (i32.eqz - (get_local $0) + (if + (get_local $0) + (loop $while-in + (if + (get_local $0) + (block + (call $zeroInit + (i32.const 0) ) + (br $while-in) ) - (call $zeroInit - (i32.const 0) - ) - (br $while-in) + (nop) ) ) ) diff --git a/test/unit.fromasm.imprecise b/test/unit.fromasm.imprecise index 7c581ba3e..d4f3115a8 100644 --- a/test/unit.fromasm.imprecise +++ b/test/unit.fromasm.imprecise @@ -537,19 +537,18 @@ (i32.const 50) ) (func $breakThroughMany (; 31 ;) (; has Stack IR ;) (param $0 i32) - (block $label$break$L1 - (if - (get_local $0) - (loop $while-in - (br_if $label$break$L1 - (i32.eqz - (get_local $0) + (if + (get_local $0) + (loop $while-in + (if + (get_local $0) + (block + (call $zeroInit + (i32.const 0) ) + (br $while-in) ) - (call $zeroInit - (i32.const 0) - ) - (br $while-in) + (nop) ) ) ) |