TW
Tripwire
Find contracts. Test them. Review real vulns.

Analysis Run

8c723dea-9a76-42bc-8152-e233146514eb

failed
Chain ID
1
Address
Block Number
Created
Fri, Jan 2, 2026 9:52 PM
Review Summary

What survived the funnel

Open this run to answer one question: is this real attacker-relevant behavior with real impact, or just normal contract plumbing?

Confirmed
0
Validated
0
Source
Verified
Review Backing
Not yet
Best current signal
Untrusted CALL target/value reachable
crit 0 high 0 proxy context implementation known
Review Checklist
1. Read the findings table first. Ignore raw jobs until the result looks real.
2. Confirm attacker control, not just the existence of a sink.
3. Confirm money or privilege impact.
4. Keep it if the behavior is real. Kill it if this is normal proxy, admin, or upgrade plumbing.

Processing Jobs

Status & attempts
ID Type Status Attempts Heartbeat
31354 report.consolidate complete 1 / 1 3 months ago
111122 artifact.fetch failed 1 / 3 1 week ago
111123 tool.cast_disasm complete 1 / 3 1 week ago
111124 analysis.bundle complete 1 / 3 1 week ago
111125 capability.graph complete 1 / 3 1 week ago
111126 detector.run complete 1 / 3 1 week ago
111127 validation.fork complete 1 / 3 1 week ago

Artifact

Runtime bytecode: available
Creation TX:
Deployer:
Proxy: yes
Verified Source: yes

Slither

tool.slither

No slither job recorded yet.

Codex

report.consolidate
Job Status
complete
Attempts
1 / 1
Findings
0
No findings?
yes
Summary
No concrete, exploitable paths to extract value identified in the provided sources.
View stderr
[codex:852870] OpenAI Codex v0.77.0 (research preview)
[codex:852870] --------
[codex:852870] workdir: /tmp/codex-multi-mn3cqd_9
[codex:852870] model: gpt-5.2-codex
[codex:852870] provider: openai
[codex:852870] approval: never
[codex:852870] sandbox: read-only
[codex:852870] reasoning effort: xhigh
[codex:852870] reasoning summaries: auto
[codex:852870] session id: 019b80b0-f424-7242-8e0c-55624d8a238b
[codex:852870] --------
[codex:852870] user
[codex:852870] You are a profit-focused exploit hunter. Your ONLY goal is finding ways to extract value (ETH, tokens, NFTs) from this contract.
[codex:852870] 
[codex:852870] Read `AUDIT_BUNDLE.txt` completely before concluding. Treat `lib/` and `@openzeppelin/` as trusted unless misused.
[codex:852870] 
[codex:852870] ONLY REPORT if you find a CONCRETE, EXPLOITABLE path to profit. We do NOT care about:
[codex:852870] - Gas inefficiency, code quality, naming, or best practices
[codex:852870] - Theoretical vulnerabilities without a clear extraction path
[codex:852870] - Centralization risks (admin can rug) - assume admin keys are secure
[codex:852870] - Front-running unless it enables theft beyond MEV
[codex:852870] - DoS, griefing, or issues that don't result in attacker profit
[codex:852870] - Missing events, view function issues, or informational findings
[codex:852870] 
[codex:852870] HIGH-VALUE PATTERNS TO HUNT:
[codex:852870] - Reentrancy: external calls before state updates that allow double-withdrawal
[codex:852870] - Access control: missing/bypassable auth on withdraw, transfer, or mint functions
[codex:852870] - Flash loan attacks: borrow -> manipulate -> profit in single tx
[codex:852870] - Price oracle manipulation: TWAP with short window, spot price reads, stale prices
[codex:852870] - Signature replay: missing nonce, chainId, or deadline in permit/meta-tx
[codex:852870] - Proxy hijacking: unprotected initialize(), storage collision, UUPS without auth
[codex:852870] - Accounting errors: rounding that favors attacker, share inflation, first depositor attacks
[codex:852870] - Unchecked external calls: return value ignored on token transfers enabling fake tokens
[codex:852870] - Cross-function reentrancy: state read in function A, modified via reentrant call, used stale in A
[codex:852870] 
[codex:852870] For each finding, you MUST provide:
[codex:852870] 1. Exact file and line numbers of vulnerable code
[codex:852870] 2. Step-by-step exploit transaction sequence
[codex:852870] 3. Estimated profit potential (order of magnitude: contract balance, LP reserves, etc.)
[codex:852870] 
[codex:852870] If no concrete profit path exists: set no_findings=true. Do NOT pad with low-severity noise.
[codex:852870] 
[codex:852870] Output MUST be valid JSON matching the provided schema.
[codex:852870] - severity: info, low, medium, high, critical (use high/critical ONLY for clear extraction paths)
[codex:852870] - category: access_control, reentrancy, math, oracle, upgradeability, auth, other
[codex:852870] mcp startup: no servers
[codex:852870] 
[codex:852870] thinking
[codex:852870] **Preparing to review instructions and skills**
[codex:852870] exec
[codex:852870] /bin/bash -lc ls in /tmp/codex-multi-mn3cqd_9 succeeded in 5ms:
[codex:852870] AUDIT_BUNDLE.txt
[codex:852870] codex-output-schema.json
[codex:852870] contracts
[codex:852870] 
[codex:852870] thinking
[codex:852870] **Checking AUDIT_BUNDLE**
[codex:852870] exec
[codex:852870] /bin/bash -lc 'cat AUDIT_BUNDLE.txt' in /tmp/codex-multi-mn3cqd_9 succeeded in 5ms:
[codex:852870] This file concatenates first-party Solidity sources only (lib/@openzeppelin excluded).
[codex:852870] 
[codex:852870] ================================================================================
[codex:852870] FILE: contracts/Contract.sol
[codex:852870] ================================================================================
[codex:852870] # @version 0.3.7
[codex:852870] """
[codex:852870] @title StableSwap
[codex:852870] @author Curve.Fi
[codex:852870] @license Copyright (c) Curve.Fi, 2020-2021 - all rights reserved
[codex:852870] @notice 2 coin pool implementation with no lending
[codex:852870] @dev ERC20 support for return True/revert, return True/False, return None
[codex:852870]      Uses native Ether as coins[0]
[codex:852870] """
[codex:852870] 
[codex:852870] from vyper.interfaces import ERC20
[codex:852870] 
[codex:852870] interface Factory:
[codex:852870]     def convert_fees() -> bool: nonpayable
[codex:852870]     def get_fee_receiver(_pool: address) -> address: view
[codex:852870] 
[codex:852870] 
[codex:852870] thinking
[codex:852870] **Analyzing potential reentrancy and proxy initialization risks**
[codex:852870] thinking
[codex:852870] **Concluding no exploitable vulnerabilities**
[codex:852870] 
[codex:852870] I'll produce a JSON summary reporting no concrete exploitable paths for profit extraction found after analyzing reentrancy, initialization, and other potential issues in the contract.
[codex:852870] codex
[codex:852870] {"no_findings":true,"summary":"No concrete, exploitable paths to extract value identified in the provided sources.","findings":[]}
[codex:852870] tokens used
[codex:852870] 21,233
[codex:852870] {"no_findings":true,"summary":"No concrete, exploitable paths to extract value identified in the provided sources.","findings":[]}
Metadata
{
    "codex": {
        "ran_at": "2026-01-02T21:52:45.820615+00:00",
        "returncode": 0
    },
    "summary": "No concrete, exploitable paths to extract value identified in the provided sources.",
    "raw_final": {
        "summary": "No concrete, exploitable paths to extract value identified in the provided sources.",
        "findings": [],
        "no_findings": true
    },
    "no_findings": true,
    "schema_version": 1
}

Opcode Heuristics

tool.cast_disasm
Delegatecall
0
Selfdestruct
0
CREATE2
0
CALL-family (heavy)
26
EXT*/BALANCE
8
Total opcodes
10226
Flags
heavy_ext_balance_usage call_family_heavy
View cast disassembly output
00000000: PUSH1 0x03
00000002: CALLDATASIZE
00000003: GT
00000004: PUSH2 0x000c
00000007: JUMPI
00000008: PUSH2 0x3057
0000000b: JUMP
0000000c: JUMPDEST
0000000d: PUSH1 0x00
0000000f: CALLDATALOAD
00000010: PUSH1 0xe0
00000012: SHR
00000013: PUSH4 0x0b4c7e4d
00000018: DUP2
00000019: XOR
0000001a: PUSH2 0x002f
0000001d: JUMPI
0000001e: PUSH1 0x64
00000020: CALLDATASIZE
00000021: LT
00000022: PUSH2 0x4490
00000025: JUMPI
00000026: CALLER
00000027: PUSH2 0x0320
0000002a: MSTORE
0000002b: PUSH2 0x0052
0000002e: JUMP
0000002f: JUMPDEST
00000030: PUSH4 0x0c3e4b54
00000035: DUP2
00000036: XOR
00000037: PUSH2 0x0608
0000003a: JUMPI
0000003b: PUSH1 0x84
0000003d: CALLDATASIZE
0000003e: LT
0000003f: PUSH2 0x4490
00000042: JUMPI
00000043: PUSH1 0x64
00000045: CALLDATALOAD
00000046: DUP1
00000047: PUSH1 0xa0
00000049: SHR
0000004a: PUSH2 0x4490
0000004d: JUMPI
0000004e: PUSH2 0x0320
00000051: MSTORE
00000052: JUMPDEST
00000053: PUSH1 0x00
00000055: SLOAD
00000056: PUSH1 0x02
00000058: EQ
00000059: PUSH2 0x4490
0000005c: JUMPI
0000005d: PUSH1 0x02
0000005f: PUSH1 0x00
00000061: SSTORE
00000062: PUSH2 0x006c
00000065: PUSH2 0x0360
00000068: PUSH2 0x3121
0000006b: JUMP
0000006c: JUMPDEST
0000006d: PUSH2 0x0360
00000070: MLOAD
00000071: PUSH2 0x0340
00000074: MSTORE
00000075: PUSH1 0x04
00000077: SLOAD
00000078: PUSH2 0x0360
0000007b: MSTORE
0000007c: PUSH1 0x05
0000007e: SLOAD
0000007f: PUSH2 0x0380
00000082: MSTORE
00000083: PUSH1 0x0d
00000085: SLOAD
00000086: PUSH2 0x03a0
00000089: MSTORE
0000008a: PUSH1 0x0e
0000008c: SLOAD
0000008d: PUSH2 0x03c0
00000090: MSTORE
00000091: PUSH2 0x03a0
00000094: MLOAD
00000095: PUSH2 0x0160
00000098: MSTORE
00000099: PUSH2 0x03c0
0000009c: MLOAD
0000009d: PUSH2 0x0180
000000a0: MSTORE
000000a1: PUSH2 0x0360
000000a4: MLOAD
000000a5: PUSH2 0x01a0
000000a8: MSTORE
000000a9: PUSH2 0x0380
000000ac: MLOAD
000000ad: PUSH2 0x01c0
000000b0: MSTORE
000000b1: PUSH2 0x0340
000000b4: MLOAD
000000b5: PUSH2 0x01e0
000000b8: MSTORE
000000b9: PUSH2 0x00c3
000000bc: PUSH2 0x0400
000000bf: PUSH2 0x34ce
000000c2: JUMP
000000c3: JUMPDEST
000000c4: PUSH2 0x0400
000000c7: MLOAD
000000c8: PUSH2 0x03e0
000000cb: MSTORE
000000cc: PUSH1 0x16
000000ce: SLOAD
000000cf: PUSH2 0x0400
000000d2: MSTORE
000000d3: PUSH2 0x0360
000000d6: MLOAD
000000d7: PUSH2 0x0420
000000da: MSTORE
000000db: PUSH2 0x0380
000000de: MLOAD
000000df: PUSH2 0x0440
000000e2: MSTORE
000000e3: PUSH1 0x00
000000e5: PUSH1 0x02
000000e7: SWAP1
000000e8: JUMPDEST
000000e9: DUP1
000000ea: PUSH2 0x0460
000000ed: MSTORE
000000ee: PUSH2 0x0460
000000f1: MLOAD
000000f2: PUSH1 0x01
000000f4: DUP2
000000f5: GT
000000f6: PUSH2 0x4490
000000f9: JUMPI
000000fa: PUSH1 0x05
000000fc: SHL
000000fd: PUSH1 0x04
000000ff: ADD
00000100: CALLDATALOAD
00000101: PUSH2 0x0480
00000104: MSTORE
00000105: PUSH2 0x0400
00000108: MLOAD
00000109: PUSH2 0x0116
0000010c: JUMPI
0000010d: PUSH2 0x0480
00000110: MLOAD
00000111: ISZERO
00000112: PUSH2 0x4490
00000115: JUMPI
00000116: JUMPDEST
00000117: PUSH2 0x0460
0000011a: MLOAD
0000011b: PUSH1 0x01
0000011d: DUP2
0000011e: GT
0000011f: PUSH2 0x4490
00000122: JUMPI
00000123: PUSH1 0x05
00000125: SHL
00000126: PUSH2 0x0420
00000129: ADD
0000012a: DUP1
0000012b: MLOAD
0000012c: PUSH2 0x0480
0000012f: MLOAD
00000130: DUP1
00000131: DUP3
00000132: ADD
00000133: DUP3
00000134: DUP2
00000135: LT
00000136: PUSH2 0x4490
00000139: JUMPI
0000013a: SWAP1
0000013b: POP
0000013c: SWAP1
0000013d: POP
0000013e: DUP2
0000013f: MSTORE
00000140: POP
00000141: PUSH1 0x01
00000143: ADD
00000144: DUP2
00000145: DUP2
00000146: XOR
00000147: PUSH2 0x00e8
0000014a: JUMPI
0000014b: POP
0000014c: POP
0000014d: PUSH2 0x03a0
00000150: MLOAD
00000151: PUSH2 0x0160
00000154: MSTORE
00000155: PUSH2 0x03c0
00000158: MLOAD
00000159: PUSH2 0x0180
0000015c: MSTORE
0000015d: PUSH2 0x0420
00000160: MLOAD
00000161: PUSH2 0x01a0
00000164: MSTORE
00000165: PUSH2 0x0440
00000168: MLOAD
00000169: PUSH2 0x01c0
0000016c: MSTORE
0000016d: PUSH2 0x0340
00000170: MLOAD
00000171: PUSH2 0x01e0
00000174: MSTORE
00000175: PUSH2 0x017f
00000178: PUSH2 0x0480
0000017b: PUSH2 0x34ce
0000017e: JUMP
0000017f: JUMPDEST
00000180: PUSH2 0x0480
00000183: MLOAD
00000184: PUSH2 0x0460
00000187: MSTORE
00000188: PUSH2 0x03e0
0000018b: MLOAD
0000018c: PUSH2 0x0460
0000018f: MLOAD
00000190: GT
00000191: ISZERO
00000192: PUSH2 0x4490
00000195: JUMPI
00000196: PUSH1 0x60
00000198: CALLDATASIZE
00000199: PUSH2 0x0480
0000019c: CALLDATACOPY
0000019d: PUSH2 0x0400
000001a0: MLOAD
000001a1: ISZERO
000001a2: PUSH2 0x041c
000001a5: JUMPI
000001a6: PUSH1 0x06
000001a8: SLOAD
000001a9: DUP1
000001aa: PUSH1 0x01
000001ac: SHL
000001ad: DUP2
000001ae: DUP2
000001af: PUSH1 0x01
000001b1: SHR
000001b2: XOR
000001b3: PUSH2 0x4490
000001b6: JUMPI
000001b7: SWAP1
000001b8: POP
000001b9: DUP1
000001ba: PUSH1 0x02
000001bc: SHR
000001bd: SWAP1
000001be: POP
000001bf: PUSH2 0x04e0
000001c2: MSTORE
000001c3: PUSH1 0x00
000001c5: PUSH1 0x02
000001c7: SWAP1
000001c8: JUMPDEST
000001c9: DUP1
000001ca: PUSH2 0x0500
000001cd: MSTORE
000001ce: PUSH2 0x0460
000001d1: MLOAD
000001d2: PUSH2 0x0500
000001d5: MLOAD
000001d6: PUSH1 0x01
000001d8: DUP2
000001d9: GT
000001da: PUSH2 0x4490
000001dd: JUMPI
000001de: PUSH1 0x05
000001e0: SHL
000001e1: PUSH2 0x0360
000001e4: ADD
000001e5: MLOAD
000001e6: DUP1
000001e7: DUP3
000001e8: MUL
000001e9: DUP2
000001ea: ISZERO
000001eb: DUP4
000001ec: DUP4
000001ed: DUP4
000001ee: DIV
000001ef: EQ
000001f0: OR
000001f1: ISZERO
000001f2: PUSH2 0x4490
000001f5: JUMPI
000001f6: SWAP1
000001f7: POP
000001f8: SWAP1
000001f9: POP
000001fa: PUSH2 0x03e0
000001fd: MLOAD
000001fe: DUP1
000001ff: ISZERO
00000200: PUSH2 0x4490
00000203: JUMPI
00000204: DUP1
00000205: DUP3
00000206: DIV
00000207: SWAP1
00000208: POP
00000209: SWAP1
0000020a: POP
0000020b: PUSH2 0x0520
0000020e: MSTORE
0000020f: PUSH1 0x00
00000211: PUSH2 0x0540
00000214: MSTORE
00000215: PUSH2 0x0500
00000218: MLOAD
00000219: PUSH1 0x01
0000021b: DUP2
0000021c: GT
0000021d: PUSH2 0x4490
00000220: JUMPI
00000221: PUSH1 0x05
00000223: SHL
00000224: PUSH2 0x0420
00000227: ADD
00000228: MLOAD
00000229: PUSH2 0x0560
0000022c: MSTORE
0000022d: PUSH2 0x0560
00000230: MLOAD
00000231: PUSH2 0x0520
00000234: MLOAD
00000235: GT
00000236: PUSH2 0x0258
00000239: JUMPI
0000023a: PUSH2 0x0560
0000023d: MLOAD
0000023e: PUSH2 0x0520
00000241: MLOAD
00000242: DUP1
00000243: DUP3
00000244: SUB
00000245: DUP3
00000246: DUP2
00000247: GT
00000248: PUSH2 0x4490
0000024b: JUMPI
0000024c: SWAP1
0000024d: POP
0000024e: SWAP1
0000024f: POP
00000250: PUSH2 0x0540
00000253: MSTORE
00000254: PUSH2 0x0273
00000257: JUMP
00000258: JUMPDEST
00000259: PUSH2 0x0520
0000025c: MLOAD
0000025d: PUSH2 0x0560
00000260: MLOAD
00000261: DUP1
00000262: DUP3
00000263: SUB
00000264: DUP3
00000265: DUP2
00000266: GT
00000267: PUSH2 0x4490
0000026a: JUMPI
0000026b: SWAP1
0000026c: POP
0000026d: SWAP1
0000026e: POP
0000026f: PUSH2 0x0540
00000272: MSTORE
00000273: JUMPDEST
00000274: PUSH2 0x04e0
00000277: MLOAD
00000278: PUSH2 0x0540
0000027b: MLOAD
0000027c: DUP1
0000027d: DUP3
0000027e: MUL
0000027f: DUP2
00000280: ISZERO
00000281: DUP4
00000282: DUP4
00000283: DUP4
00000284: DIV
00000285: EQ
00000286: OR
00000287: ISZERO
00000288: PUSH2 0x4490
0000028b: JUMPI
0000028c: SWAP1
0000028d: POP
0000028e: SWAP1
0000028f: POP
00000290: PUSH5 0x02540be400
00000296: DUP2
00000297: DIV
00000298: SWAP1
00000299: POP
0000029a: PUSH2 0x0500
0000029d: MLOAD
0000029e: PUSH1 0x01
000002a0: DUP2
000002a1: GT
000002a2: PUSH2 0x4490
000002a5: JUMPI
000002a6: PUSH1 0x05
000002a8: SHL
000002a9: PUSH2 0x0480
000002ac: ADD
000002ad: MSTORE
000002ae: PUSH2 0x0560
000002b1: MLOAD
000002b2: PUSH2 0x0500
000002b5: MLOAD
000002b6: PUSH1 0x01
000002b8: DUP2
000002b9: GT
000002ba: PUSH2 0x4490
000002bd: JUMPI
000002be: PUSH1 0x05
000002c0: SHL
000002c1: PUSH2 0x0480
000002c4: ADD
000002c5: MLOAD
000002c6: PUSH5 0x012a05f200
000002cc: DUP2
000002cd: MUL
000002ce: DUP2
000002cf: PUSH5 0x012a05f200
000002d5: DUP3
000002d6: DIV
000002d7: XOR
000002d8: PUSH2 0x4490
000002db: JUMPI
000002dc: SWAP1
000002dd: POP
000002de: PUSH5 0x02540be400
000002e4: DUP2
000002e5: DIV
000002e6: SWAP1
000002e7: POP
000002e8: DUP1
000002e9: DUP3
000002ea: SUB
000002eb: DUP3
000002ec: DUP2
000002ed: GT
000002ee: PUSH2 0x4490
000002f1: JUMPI
000002f2: SWAP1
000002f3: POP
000002f4: SWAP1
000002f5: POP
000002f6: PUSH2 0x0500
000002f9: MLOAD
000002fa: PUSH1 0x01
000002fc: DUP2
000002fd: GT
000002fe: PUSH2 0x4490
00000301: JUMPI
00000302: PUSH1 0x04
00000304: ADD
00000305: SSTORE
00000306: PUSH2 0x0500
00000309: MLOAD
0000030a: PUSH1 0x01
0000030c: DUP2
0000030d: GT
0000030e: PUSH2 0x4490
00000311: JUMPI
00000312: PUSH1 0x05
00000314: SHL
00000315: PUSH2 0x0420
00000318: ADD
00000319: DUP1
0000031a: MLOAD
0000031b: PUSH2 0x0500
0000031e: MLOAD
0000031f: PUSH1 0x01
00000321: DUP2
00000322: GT
00000323: PUSH2 0x4490
00000326: JUMPI
00000327: PUSH1 0x05
00000329: SHL
0000032a: PUSH2 0x0480
0000032d: ADD
0000032e: MLOAD
0000032f: DUP1
00000330: DUP3
00000331: SUB
00000332: DUP3
00000333: DUP2
00000334: GT
00000335: PUSH2 0x4490
00000338: JUMPI
00000339: SWAP1
0000033a: POP
0000033b: SWAP1
0000033c: POP
0000033d: DUP2
0000033e: MSTORE
0000033f: POP
00000340: PUSH1 0x01
00000342: ADD
00000343: DUP2
00000344: DUP2
00000345: XOR
00000346: PUSH2 0x01c8
00000349: JUMPI
0000034a: POP
0000034b: POP
0000034c: PUSH2 0x03a0
0000034f: MLOAD
00000350: PUSH1 0x40
00000352: MSTORE
00000353: PUSH2 0x03c0
00000356: MLOAD
00000357: PUSH1 0x60
00000359: MSTORE
0000035a: PUSH2 0x0420
0000035d: MLOAD
0000035e: PUSH1 0x80
00000360: MSTORE
00000361: PUSH2 0x0440
00000364: MLOAD
00000365: PUSH1 0xa0
00000367: MSTORE
00000368: PUSH2 0x0372
0000036b: PUSH2 0x0540
0000036e: PUSH2 0x3246
00000371: JUMP
00000372: JUMPDEST
00000373: PUSH2 0x0540
00000376: DUP1
00000377: MLOAD
00000378: PUSH2 0x0500
0000037b: MSTORE
0000037c: PUSH1 0x20
0000037e: DUP2
0000037f: ADD
00000380: MLOAD
00000381: PUSH2 0x0520
00000384: MSTORE
00000385: POP
00000386: PUSH2 0x0500
00000389: MLOAD
0000038a: PUSH1 0x40
0000038c: MSTORE
0000038d: PUSH2 0x0520
00000390: MLOAD
00000391: PUSH1 0x60
00000393: MSTORE
00000394: PUSH2 0x0340
00000397: MLOAD
00000398: PUSH1 0x80
0000039a: MSTORE
0000039b: PUSH2 0x03a5
0000039e: PUSH2 0x0560
000003a1: PUSH2 0x32cd
000003a4: JUMP
000003a5: JUMPDEST
000003a6: PUSH2 0x0560
000003a9: MLOAD
000003aa: PUSH2 0x0540
000003ad: MSTORE
000003ae: PUSH2 0x0400
000003b1: MLOAD
000003b2: PUSH2 0x0540
000003b5: MLOAD
000003b6: PUSH2 0x03e0
000003b9: MLOAD
000003ba: DUP1
000003bb: DUP3
000003bc: SUB
000003bd: DUP3
000003be: DUP2
000003bf: GT
000003c0: PUSH2 0x4490
000003c3: JUMPI
000003c4: SWAP1
000003c5: POP
000003c6: SWAP1
000003c7: POP
000003c8: DUP1
000003c9: DUP3
000003ca: MUL
000003cb: DUP2
000003cc: ISZERO
000003cd: DUP4
000003ce: DUP4
000003cf: DUP4
000003d0: DIV
000003d1: EQ
000003d2: OR
000003d3: ISZERO
000003d4: PUSH2 0x4490
000003d7: JUMPI
000003d8: SWAP1
000003d9: POP
000003da: SWAP1
000003db: POP
000003dc: PUSH2 0x03e0
000003df: MLOAD
000003e0: DUP1
000003e1: ISZERO
000003e2: PUSH2 0x4490
000003e5: JUMPI
000003e6: DUP1
000003e7: DUP3
000003e8: DIV
000003e9: SWAP1
000003ea: POP
000003eb: SWAP1
000003ec: POP
000003ed: PUSH2 0x04c0
000003f0: MSTORE
000003f1: PUSH2 0x0500
000003f4: MLOAD
000003f5: PUSH2 0x0260
000003f8: MSTORE
000003f9: PUSH2 0x0520
000003fc: MLOAD
000003fd: PUSH2 0x0280
00000400: MSTORE
00000401: PUSH2 0x0340
00000404: MLOAD
00000405: PUSH2 0x02a0
00000408: MSTORE
00000409: PUSH2 0x0540
0000040c: MLOAD
0000040d: PUSH2 0x02c0
00000410: MSTORE
00000411: PUSH2 0x0433
00000414: PUSH2 0x3b07
00000417: JUMP
00000418: PUSH2 0x0433
0000041b: JUMP
0000041c: JUMPDEST
0000041d: PUSH2 0x0420
00000420: MLOAD
00000421: PUSH1 0x04
00000423: SSTORE
00000424: PUSH2 0x0440
00000427: MLOAD
00000428: PUSH1 0x05
0000042a: SSTORE
0000042b: PUSH2 0x0460
0000042e: MLOAD
0000042f: PUSH2 0x04c0
00000432: MSTORE
00000433: JUMPDEST
00000434: PUSH1 0x44
00000436: CALLDATALOAD
00000437: PUSH2 0x04c0
0000043a: MLOAD
0000043b: LT
0000043c: ISZERO
0000043d: PUSH2 0x04a6
00000440: JUMPI
00000441: PUSH1 0x14
00000443: PUSH2 0x04e0
00000446: MSTORE
00000447: PUSH32 0x536c697070616765207363726577656420796f75000000000000000000000000
00000468: PUSH2 0x0500
0000046b: MSTORE
0000046c: PUSH2 0x04e0
0000046f: POP
00000470: PUSH2 0x04e0
00000473: MLOAD
00000474: DUP1
00000475: PUSH2 0x0500
00000478: ADD
00000479: PUSH1 0x1f
0000047b: DUP3
0000047c: PUSH1 0x00
0000047e: SUB
0000047f: AND
00000480: CALLDATASIZE
00000481: DUP3
00000482: CALLDATACOPY
00000483: POP
00000484: POP
00000485: PUSH4 0x08c379a0
0000048a: PUSH2 0x04a0
0000048d: MSTORE
0000048e: PUSH1 0x20
00000490: PUSH2 0x04c0
00000493: MSTORE
00000494: PUSH1 0x1f
00000496: NOT
00000497: PUSH1 0x1f
00000499: PUSH2 0x04e0
0000049c: MLOAD
0000049d: ADD
0000049e: AND
0000049f: PUSH1 0x44
000004a1: ADD
000004a2: PUSH2 0x04bc
000004a5: REVERT
000004a6: JUMPDEST
000004a7: PUSH1 0x04
000004a9: CALLDATALOAD
000004aa: CALLVALUE
000004ab: XOR
000004ac: PUSH2 0x4490
000004af: JUMPI
000004b0: PUSH1 0x24
000004b2: CALLDATALOAD
000004b3: ISZERO
000004b4: PUSH2 0x052e
000004b7: JUMPI
000004b8: PUSH1 0x03
000004ba: SLOAD
000004bb: PUSH4 0x23b872dd
000004c0: PUSH2 0x04e0
000004c3: MSTORE
000004c4: CALLER
000004c5: PUSH2 0x0500
000004c8: MSTORE
000004c9: ADDRESS
000004ca: PUSH2 0x0520
000004cd: MSTORE
000004ce: PUSH1 0x24
000004d0: CALLDATALOAD
000004d1: PUSH2 0x0540
000004d4: MSTORE
000004d5: PUSH1 0x20
000004d7: PUSH2 0x04e0
000004da: PUSH1 0x64
000004dc: PUSH2 0x04fc
000004df: PUSH1 0x00
000004e1: DUP6
000004e2: GAS
000004e3: CALL
000004e4: PUSH2 0x04f2
000004e7: JUMPI
000004e8: RETURNDATASIZE
000004e9: PUSH1 0x00
000004eb: PUSH1 0x00
000004ed: RETURNDATACOPY
000004ee: RETURNDATASIZE
000004ef: PUSH1 0x00
000004f1: REVERT
000004f2: JUMPDEST
000004f3: RETURNDATASIZE
000004f4: PUSH2 0x0509
000004f7: JUMPI
000004f8: DUP1
000004f9: EXTCODESIZE
000004fa: ISZERO
000004fb: PUSH2 0x4490
000004fe: JUMPI
000004ff: PUSH1 0x01
00000501: PUSH2 0x0560
00000504: MSTORE
00000505: PUSH2 0x0522
00000508: JUMP
00000509: JUMPDEST
0000050a: PUSH1 0x20
0000050c: RETURNDATASIZE
0000050d: LT
0000050e: PUSH2 0x4490
00000511: JUMPI
00000512: PUSH2 0x04e0
00000515: MLOAD
00000516: DUP1
00000517: PUSH1 0x01
00000519: SHR
0000051a: PUSH2 0x4490
0000051d: JUMPI
0000051e: PUSH2 0x0560
00000521: MSTORE
00000522: JUMPDEST
00000523: PUSH2 0x0560
00000526: SWAP1
00000527: POP
00000528: MLOAD
00000529: ISZERO
0000052a: PUSH2 0x4490
0000052d: JUMPI
0000052e: JUMPDEST
0000052f: PUSH2 0x0400
00000532: MLOAD
00000533: PUSH2 0x04c0
00000536: MLOAD
00000537: DUP1
00000538: DUP3
00000539: ADD
0000053a: DUP3
0000053b: DUP2
0000053c: LT
0000053d: PUSH2 0x4490
00000540: JUMPI
00000541: SWAP1
00000542: POP
00000543: SWAP1
00000544: POP
00000545: PUSH2 0x0400
00000548: MSTORE
00000549: PUSH1 0x14
0000054b: PUSH2 0x0320
0000054e: MLOAD
0000054f: PUSH1 0x20
00000551: MSTORE
00000552: PUSH1 0x00
00000554: MSTORE
00000555: PUSH1 0x40
00000557: PUSH1 0x00
00000559: KECCAK256
0000055a: DUP1
0000055b: SLOAD
0000055c: PUSH2 0x04c0
0000055f: MLOAD
00000560: DUP1
00000561: DUP3
00000562: ADD
00000563: DUP3
00000564: DUP2
00000565: LT
00000566: PUSH2 0x4490
00000569: JUMPI
0000056a: SWAP1
0000056b: POP
0000056c: SWAP1
0000056d: POP
0000056e: DUP2
0000056f: SSTORE
00000570: POP
00000571: PUSH2 0x0400
00000574: MLOAD
00000575: PUSH1 0x16
00000577: SSTORE
00000578: PUSH2 0x0320
0000057b: MLOAD
0000057c: PUSH1 0x00
0000057e: PUSH32 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
0000059f: PUSH2 0x04c0
000005a2: MLOAD
000005a3: PUSH2 0x04e0
000005a6: MSTORE
000005a7: PUSH1 0x20
000005a9: PUSH2 0x04e0
000005ac: LOG3
000005ad: CALLER
000005ae: PUSH32 0x26f55a85081d24974e85c6c00045d0f0453991e95873f52bff0d21af4079a768
000005cf: PUSH1 0x40
000005d1: PUSH1 0x04
000005d3: PUSH2 0x04e0
000005d6: CALLDATACOPY
000005d7: PUSH2 0x0480
000005da: MLOAD
000005db: PUSH2 0x0520
000005de: MSTORE
000005df: PUSH2 0x04a0
000005e2: MLOAD
000005e3: PUSH2 0x0540
000005e6: MSTORE
000005e7: PUSH2 0x0460
000005ea: MLOAD
000005eb: PUSH2 0x0560
000005ee: MSTORE
000005ef: PUSH2 0x0400
000005f2: MLOAD
000005f3: PUSH2 0x0580
000005f6: MSTORE
000005f7: PUSH1 0xc0
000005f9: PUSH2 0x04e0
000005fc: LOG2
000005fd: PUSH1 0x20
000005ff: PUSH2 0x04c0
00000602: PUSH1 0x03
00000604: PUSH1 0x00
00000606: SSTORE
00000607: RETURN
00000608: JUMPDEST
00000609: PUSH4 0x3df02124
0000060e: DUP2
0000060f: XOR
00000610: PUSH2 0x0625
00000613: JUMPI
00000614: PUSH1 0x84
00000616: CALLDATASIZE
00000617: LT
00000618: PUSH2 0x4490
0000061b: JUMPI
0000061c: CALLER
0000061d: PUSH2 0x03c0
00000620: MSTORE
00000621: PUSH2 0x0648
00000624: JUMP
00000625: JUMPDEST
00000626: PUSH4 0xddc1f59d
0000062b: DUP2
0000062c: XOR
0000062d: PUSH2 0x0bda
00000630: JUMPI
00000631: PUSH1 0xa4
00000633: CALLDATASIZE
00000634: LT
00000635: PUSH2 0x4490
00000638: JUMPI
00000639: PUSH1 0x84
0000063b: CALLDATALOAD
0000063c: DUP1
0000063d: PUSH1 0xa0
0000063f: SHR
00000640: PUSH2 0x4490
00000643: JUMPI
00000644: PUSH2 0x03c0
00000647: MSTORE
00000648: JUMPDEST
00000649: PUSH1 0x04
0000064b: CALLDATALOAD
0000064c: DUP1
0000064d: PUSH1 0x0f
0000064f: SIGNEXTEND
00000650: DUP2
00000651: XOR
00000652: PUSH2 0x4490
00000655: JUMPI
00000656: PUSH2 0x0380
00000659: MSTORE
0000065a: PUSH1 0x24
0000065c: CALLDATALOAD
0000065d: DUP1
0000065e: PUSH1 0x0f
00000660: SIGNEXTEND
00000661: DUP2
00000662: XOR
00000663: PUSH2 0x4490
00000666: JUMPI
00000667: PUSH2 0x03a0
0000066a: MSTORE
0000066b: PUSH1 0x00
0000066d: SLOAD
0000066e: PUSH1 0x02
00000670: EQ
00000671: PUSH2 0x4490
00000674: JUMPI
00000675: PUSH1 0x02
00000677: PUSH1 0x00
00000679: SSTORE
0000067a: PUSH1 0x0d
0000067c: SLOAD
0000067d: PUSH2 0x03e0
00000680: MSTORE
00000681: PUSH1 0x0e
00000683: SLOAD
00000684: PUSH2 0x0400
00000687: MSTORE
00000688: PUSH1 0x04
0000068a: SLOAD
0000068b: PUSH2 0x0420
0000068e: MSTORE
0000068f: PUSH1 0x05
00000691: SLOAD
00000692: PUSH2 0x0440
00000695: MSTORE
00000696: PUSH2 0x03e0
00000699: MLOAD
0000069a: PUSH1 0x40
0000069c: MSTORE
0000069d: PUSH2 0x0400
000006a0: MLOAD
000006a1: PUSH1 0x60
000006a3: MSTORE
000006a4: PUSH2 0x0420
000006a7: MLOAD
000006a8: PUSH1 0x80
000006aa: MSTORE
000006ab: PUSH2 0x0440
000006ae: MLOAD
000006af: PUSH1 0xa0
000006b1: MSTORE
000006b2: PUSH2 0x06bc
000006b5: PUSH2 0x04a0
000006b8: PUSH2 0x3246
000006bb: JUMP
000006bc: JUMPDEST
000006bd: PUSH2 0x04a0
000006c0: DUP1
000006c1: MLOAD
000006c2: PUSH2 0x0460
000006c5: MSTORE
000006c6: PUSH1 0x20
000006c8: DUP2
000006c9: ADD
000006ca: MLOAD
000006cb: PUSH2 0x0480
000006ce: MSTORE
000006cf: POP
000006d0: PUSH2 0x0380
000006d3: MLOAD
000006d4: PUSH1 0x01
000006d6: DUP2
000006d7: GT
000006d8: PUSH2 0x4490
000006db: JUMPI
000006dc: PUSH1 0x05
000006de: SHL
000006df: PUSH2 0x0460
000006e2: ADD
000006e3: MLOAD
000006e4: PUSH1 0x44
000006e6: CALLDATALOAD
000006e7: PUSH2 0x0380
000006ea: MLOAD
000006eb: PUSH1 0x01
000006ed: DUP2
000006ee: GT
000006ef: PUSH2 0x4490
000006f2: JUMPI
000006f3: PUSH1 0x05
000006f5: SHL
000006f6: PUSH2 0x03e0
000006f9: ADD
000006fa: MLOAD
000006fb: DUP1
000006fc: DUP3
000006fd: MUL
000006fe: DUP2
000006ff: ISZERO
00000700: DUP4
00000701: DUP4
00000702: DUP4
00000703: DIV
00000704: EQ
00000705: OR
00000706: ISZERO
00000707: PUSH2 0x4490
0000070a: JUMPI
0000070b: SWAP1
0000070c: POP
0000070d: SWAP1
0000070e: POP
0000070f: PUSH8 0x0de0b6b3a7640000
00000718: DUP2
00000719: DIV
0000071a: SWAP1
0000071b: POP
0000071c: DUP1
0000071d: DUP3
0000071e: ADD
0000071f: DUP3
00000720: DUP2
00000721: LT
00000722: PUSH2 0x4490
00000725: JUMPI
00000726: SWAP1
00000727: POP
00000728: SWAP1
00000729: POP
0000072a: PUSH2 0x04a0
0000072d: MSTORE
0000072e: PUSH2 0x0738
00000731: PUSH2 0x04e0
00000734: PUSH2 0x3121
00000737: JUMP
00000738: JUMPDEST
00000739: PUSH2 0x04e0
0000073c: MLOAD
0000073d: PUSH2 0x04c0
00000740: MSTORE
00000741: PUSH2 0x0460
00000744: MLOAD
00000745: PUSH1 0x40
00000747: MSTORE
00000748: PUSH2 0x0480
0000074b: MLOAD
0000074c: PUSH1 0x60
0000074e: MSTORE
0000074f: PUSH2 0x04c0
00000752: MLOAD
00000753: PUSH1 0x80
00000755: MSTORE
00000756: PUSH2 0x0760
00000759: PUSH2 0x0500
0000075c: PUSH2 0x32cd
0000075f: JUMP
00000760: JUMPDEST
00000761: PUSH2 0x0500
00000764: MLOAD
00000765: PUSH2 0x04e0
00000768: MSTORE
00000769: PUSH2 0x0380
0000076c: MLOAD
0000076d: PUSH2 0x0160
00000770: MSTORE
00000771: PUSH2 0x03a0
00000774: MLOAD
00000775: PUSH2 0x0180
00000778: MSTORE
00000779: PUSH2 0x04a0
0000077c: MLOAD
0000077d: PUSH2 0x01a0
00000780: MSTORE
00000781: PUSH2 0x0460
00000784: MLOAD
00000785: PUSH2 0x01c0
00000788: MSTORE
00000789: PUSH2 0x0480
0000078c: MLOAD
0000078d: PUSH2 0x01e0
00000790: MSTORE
00000791: PUSH2 0x04c0
00000794: MLOAD
00000795: PUSH2 0x0200
00000798: MSTORE
00000799: PUSH2 0x04e0
0000079c: MLOAD
0000079d: PUSH2 0x0220
000007a0: MSTORE
000007a1: PUSH2 0x07ab
000007a4: PUSH2 0x0520
000007a7: PUSH2 0x3b48
000007aa: JUMP
000007ab: JUMPDEST
000007ac: PUSH2 0x0520
000007af: MLOAD
000007b0: PUSH2 0x0500
000007b3: MSTORE
000007b4: PUSH2 0x03a0
000007b7: MLOAD
000007b8: PUSH1 0x01
000007ba: DUP2
000007bb: GT
000007bc: PUSH2 0x4490
000007bf: JUMPI
000007c0: PUSH1 0x05
000007c2: SHL
000007c3: PUSH2 0x0460
000007c6: ADD
000007c7: MLOAD
000007c8: PUSH2 0x0500
000007cb: MLOAD
000007cc: DUP1
000007cd: DUP3
000007ce: SUB
000007cf: DUP3
000007d0: DUP2
000007d1: GT
000007d2: PUSH2 0x4490
000007d5: JUMPI
000007d6: SWAP1
000007d7: POP
000007d8: SWAP1
000007d9: POP
000007da: PUSH1 0x01
000007dc: DUP2
000007dd: SUB
000007de: DUP2
000007df: DUP2
000007e0: GT
000007e1: PUSH2 0x4490
000007e4: JUMPI
000007e5: SWAP1
000007e6: POP
000007e7: PUSH2 0x0520
000007ea: MSTORE
000007eb: PUSH2 0x0520
000007ee: MLOAD
000007ef: PUSH1 0x06
000007f1: SLOAD
000007f2: DUP1
000007f3: DUP3
000007f4: MUL
000007f5: DUP2
000007f6: ISZERO
000007f7: DUP4
000007f8: DUP4
000007f9: DUP4
000007fa: DIV
000007fb: EQ
000007fc: OR
000007fd: ISZERO
000007fe: PUSH2 0x4490
00000801: JUMPI
00000802: SWAP1
00000803: POP
00000804: SWAP1
00000805: POP
00000806: PUSH5 0x02540be400
0000080c: DUP2
0000080d: DIV
0000080e: SWAP1
0000080f: POP
00000810: PUSH2 0x0540
00000813: MSTORE
00000814: PUSH2 0x0520
00000817: MLOAD
00000818: PUSH2 0x0540
0000081b: MLOAD
0000081c: DUP1
0000081d: DUP3
0000081e: SUB
0000081f: DUP3
00000820: DUP2
00000821: GT
00000822: PUSH2 0x4490
00000825: JUMPI
00000826: SWAP1
00000827: POP
00000828: SWAP1
00000829: POP
0000082a: PUSH8 0x0de0b6b3a7640000
00000833: DUP2
00000834: MUL
00000835: DUP2
00000836: PUSH8 0x0de0b6b3a7640000
0000083f: DUP3
00000840: DIV
00000841: XOR
00000842: PUSH2 0x4490
00000845: JUMPI
00000846: SWAP1
00000847: POP
00000848: PUSH2 0x03a0
0000084b: MLOAD
0000084c: PUSH1 0x01
0000084e: DUP2
0000084f: GT
00000850: PUSH2 0x4490
00000853: JUMPI
00000854: PUSH1 0x05
00000856: SHL
00000857: PUSH2 0x03e0
0000085a: ADD
0000085b: MLOAD
0000085c: DUP1
0000085d: ISZERO
0000085e: PUSH2 0x4490
00000861: JUMPI
00000862: DUP1
00000863: DUP3
00000864: DIV
00000865: SWAP1
00000866: POP
00000867: SWAP1
00000868: POP
00000869: PUSH2 0x0520
0000086c: MSTORE
0000086d: PUSH1 0x64
0000086f: CALLDATALOAD
00000870: PUSH2 0x0520
00000873: MLOAD
00000874: LT
00000875: ISZERO
00000876: PUSH2 0x0904
00000879: JUMPI
0000087a: PUSH1 0x2e
0000087c: PUSH2 0x0560
0000087f: MSTORE
00000880: PUSH32 0x45786368616e676520726573756c74656420696e20666577657220636f696e73
000008a1: PUSH2 0x0580
000008a4: MSTORE
000008a5: PUSH32 0x207468616e206578706563746564000000000000000000000000000000000000
000008c6: PUSH2 0x05a0
000008c9: MSTORE
000008ca: PUSH2 0x0560
000008cd: POP
000008ce: PUSH2 0x0560
000008d1: MLOAD
000008d2: DUP1
000008d3: PUSH2 0x0580
000008d6: ADD
000008d7: PUSH1 0x1f
000008d9: DUP3
000008da: PUSH1 0x00
000008dc: SUB
000008dd: AND
000008de: CALLDATASIZE
000008df: DUP3
000008e0: CALLDATACOPY
000008e1: POP
000008e2: POP
000008e3: PUSH4 0x08c379a0
000008e8: PUSH2 0x0520
000008eb: MSTORE
000008ec: PUSH1 0x20
000008ee: PUSH2 0x0540
000008f1: MSTORE
000008f2: PUSH1 0x1f
000008f4: NOT
000008f5: PUSH1 0x1f
000008f7: PUSH2 0x0560
000008fa: MLOAD
000008fb: ADD
000008fc: AND
000008fd: PUSH1 0x44
000008ff: ADD
00000900: PUSH2 0x053c
00000903: REVERT
00000904: JUMPDEST
00000905: PUSH2 0x04a0
00000908: MLOAD
00000909: PUSH2 0x0380
0000090c: MLOAD
0000090d: PUSH1 0x01
0000090f: DUP2
00000910: GT
00000911: PUSH2 0x4490
00000914: JUMPI
00000915: PUSH1 0x05
00000917: SHL
00000918: PUSH2 0x0460
0000091b: ADD
0000091c: MSTORE
0000091d: PUSH2 0x0500
00000920: MLOAD
00000921: PUSH2 0x03a0
00000924: MLOAD
00000925: PUSH1 0x01
00000927: DUP2
00000928: GT
00000929: PUSH2 0x4490
0000092c: JUMPI
0000092d: PUSH1 0x05
0000092f: SHL
00000930: PUSH2 0x0460
00000933: ADD
00000934: MSTORE
00000935: PUSH2 0x0460
00000938: MLOAD
00000939: PUSH2 0x0260
0000093c: MSTORE
0000093d: PUSH2 0x0480
00000940: MLOAD
00000941: PUSH2 0x0280
00000944: MSTORE
00000945: PUSH2 0x04c0
00000948: MLOAD
00000949: PUSH2 0x02a0
0000094c: MSTORE
0000094d: PUSH2 0x04e0
00000950: MLOAD
00000951: PUSH2 0x02c0
00000954: MSTORE
00000955: PUSH2 0x095c
00000958: PUSH2 0x3b07
0000095b: JUMP
0000095c: JUMPDEST
0000095d: PUSH2 0x0540
00000960: MLOAD
00000961: PUSH5 0x012a05f200
00000967: DUP2
00000968: MUL
00000969: DUP2
0000096a: PUSH5 0x012a05f200
00000970: DUP3
00000971: DIV
00000972: XOR
00000973: PUSH2 0x4490
00000976: JUMPI
00000977: SWAP1
00000978: POP
00000979: PUSH5 0x02540be400
0000097f: DUP2
00000980: DIV
00000981: SWAP1
00000982: POP
00000983: PUSH2 0x0560
00000986: MSTORE
00000987: PUSH2 0x0560
0000098a: MLOAD
0000098b: PUSH8 0x0de0b6b3a7640000
00000994: DUP2
00000995: MUL
00000996: DUP2
00000997: PUSH8 0x0de0b6b3a7640000
000009a0: DUP3
000009a1: DIV
000009a2: XOR
000009a3: PUSH2 0x4490
000009a6: JUMPI
000009a7: SWAP1
000009a8: POP
000009a9: PUSH2 0x03a0
000009ac: MLOAD
000009ad: PUSH1 0x01
000009af: DUP2
000009b0: GT
000009b1: PUSH2 0x4490
000009b4: JUMPI
000009b5: PUSH1 0x05
000009b7: SHL
000009b8: PUSH2 0x03e0
000009bb: ADD
000009bc: MLOAD
000009bd: DUP1
000009be: ISZERO
000009bf: PUSH2 0x4490
000009c2: JUMPI
000009c3: DUP1
000009c4: DUP3
000009c5: DIV
000009c6: SWAP1
000009c7: POP
000009c8: SWAP1
000009c9: POP
000009ca: PUSH2 0x0560
000009cd: MSTORE
000009ce: PUSH2 0x0380
000009d1: MLOAD
000009d2: PUSH1 0x01
000009d4: DUP2
000009d5: GT
000009d6: PUSH2 0x4490
000009d9: JUMPI
000009da: PUSH1 0x05
000009dc: SHL
000009dd: PUSH2 0x0420
000009e0: ADD
000009e1: MLOAD
000009e2: PUSH1 0x44
000009e4: CALLDATALOAD
000009e5: DUP1
000009e6: DUP3
000009e7: ADD
000009e8: DUP3
000009e9: DUP2
000009ea: LT
000009eb: PUSH2 0x4490
000009ee: JUMPI
000009ef: SWAP1
000009f0: POP
000009f1: SWAP1
000009f2: POP
000009f3: PUSH2 0x0380
000009f6: MLOAD
000009f7: PUSH1 0x01
000009f9: DUP2
000009fa: GT
000009fb: PUSH2 0x4490
000009fe: JUMPI
000009ff: PUSH1 0x04
00000a01: ADD
00000a02: SSTORE
00000a03: PUSH2 0x03a0
00000a06: MLOAD
00000a07: PUSH1 0x01
00000a09: DUP2
00000a0a: GT
00000a0b: PUSH2 0x4490
00000a0e: JUMPI
00000a0f: PUSH1 0x05
00000a11: SHL
00000a12: PUSH2 0x0420
00000a15: ADD
00000a16: MLOAD
00000a17: PUSH2 0x0520
00000a1a: MLOAD
00000a1b: DUP1
00000a1c: DUP3
00000a1d: SUB
00000a1e: DUP3
00000a1f: DUP2
00000a20: GT
00000a21: PUSH2 0x4490
00000a24: JUMPI
00000a25: SWAP1
00000a26: POP
00000a27: SWAP1
00000a28: POP
00000a29: PUSH2 0x0560
00000a2c: MLOAD
00000a2d: DUP1
00000a2e: DUP3
00000a2f: SUB
00000a30: DUP3
00000a31: DUP2
00000a32: GT
00000a33: PUSH2 0x4490
00000a36: JUMPI
00000a37: SWAP1
00000a38: POP
00000a39: SWAP1
00000a3a: POP
00000a3b: PUSH2 0x03a0
00000a3e: MLOAD
00000a3f: PUSH1 0x01
00000a41: DUP2
00000a42: GT
00000a43: PUSH2 0x4490
00000a46: JUMPI
00000a47: PUSH1 0x04
00000a49: ADD
00000a4a: SSTORE
00000a4b: PUSH1 0x03
00000a4d: SLOAD
00000a4e: PUSH2 0x0580
00000a51: MSTORE
00000a52: PUSH2 0x0380
00000a55: MLOAD
00000a56: PUSH2 0x0add
00000a59: JUMPI
00000a5a: PUSH1 0x44
00000a5c: CALLDATALOAD
00000a5d: CALLVALUE
00000a5e: XOR
00000a5f: PUSH2 0x4490
00000a62: JUMPI
00000a63: PUSH2 0x0580
00000a66: MLOAD
00000a67: PUSH4 0xa9059cbb
00000a6c: PUSH2 0x05a0
00000a6f: MSTORE
00000a70: PUSH2 0x03c0
00000a73: MLOAD
00000a74: PUSH2 0x05c0
00000a77: MSTORE
00000a78: PUSH2 0x0520
00000a7b: MLOAD
00000a7c: PUSH2 0x05e0
00000a7f: MSTORE
00000a80: PUSH1 0x20
00000a82: PUSH2 0x05a0
00000a85: PUSH1 0x44
00000a87: PUSH2 0x05bc
00000a8a: PUSH1 0x00
00000a8c: DUP6
00000a8d: GAS
00000a8e: CALL
00000a8f: PUSH2 0x0a9d
00000a92: JUMPI
00000a93: RETURNDATASIZE
00000a94: PUSH1 0x00
00000a96: PUSH1 0x00
00000a98: RETURNDATACOPY
00000a99: RETURNDATASIZE
00000a9a: PUSH1 0x00
00000a9c: REVERT
00000a9d: JUMPDEST
00000a9e: RETURNDATASIZE
00000a9f: PUSH2 0x0ab4
00000aa2: JUMPI
00000aa3: DUP1
00000aa4: EXTCODESIZE
00000aa5: ISZERO
00000aa6: PUSH2 0x4490
00000aa9: JUMPI
00000aaa: PUSH1 0x01
00000aac: PUSH2 0x0600
00000aaf: MSTORE
00000ab0: PUSH2 0x0acd
00000ab3: JUMP
00000ab4: JUMPDEST
00000ab5: PUSH1 0x20
00000ab7: RETURNDATASIZE
00000ab8: LT
00000ab9: PUSH2 0x4490
00000abc: JUMPI
00000abd: PUSH2 0x05a0
00000ac0: MLOAD
00000ac1: DUP1
00000ac2: PUSH1 0x01
00000ac4: SHR
00000ac5: PUSH2 0x4490
00000ac8: JUMPI
00000ac9: PUSH2 0x0600
00000acc: MSTORE
00000acd: JUMPDEST
00000ace: PUSH2 0x0600
00000ad1: SWAP1
00000ad2: POP
00000ad3: MLOAD
00000ad4: ISZERO
00000ad5: PUSH2 0x4490
00000ad8: JUMPI
00000ad9: PUSH2 0x0b87
00000adc: JUMP
00000add: JUMPDEST
00000ade: CALLVALUE
00000adf: PUSH2 0x4490
00000ae2: JUMPI
00000ae3: PUSH2 0x0580
00000ae6: MLOAD
00000ae7: PUSH4 0x23b872dd
00000aec: PUSH2 0x05a0
00000aef: MSTORE
00000af0: CALLER
00000af1: PUSH2 0x05c0
00000af4: MSTORE
00000af5: ADDRESS
00000af6: PUSH2 0x05e0
00000af9: MSTORE
00000afa: PUSH1 0x44
00000afc: CALLDATALOAD
00000afd: PUSH2 0x0600
00000b00: MSTORE
00000b01: PUSH1 0x20
00000b03: PUSH2 0x05a0
00000b06: PUSH1 0x64
00000b08: PUSH2 0x05bc
00000b0b: PUSH1 0x00
00000b0d: DUP6
00000b0e: GAS
00000b0f: CALL
00000b10: PUSH2 0x0b1e
00000b13: JUMPI
00000b14: RETURNDATASIZE
00000b15: PUSH1 0x00
00000b17: PUSH1 0x00
00000b19: RETURNDATACOPY
00000b1a: RETURNDATASIZE
00000b1b: PUSH1 0x00
00000b1d: REVERT
00000b1e: JUMPDEST
00000b1f: RETURNDATASIZE
00000b20: PUSH2 0x0b35
00000b23: JUMPI
00000b24: DUP1
00000b25: EXTCODESIZE
00000b26: ISZERO
00000b27: PUSH2 0x4490
00000b2a: JUMPI
00000b2b: PUSH1 0x01
00000b2d: PUSH2 0x0620
00000b30: MSTORE
00000b31: PUSH2 0x0b4e
00000b34: JUMP
00000b35: JUMPDEST
00000b36: PUSH1 0x20
00000b38: RETURNDATASIZE
00000b39: LT
00000b3a: PUSH2 0x4490
00000b3d: JUMPI
00000b3e: PUSH2 0x05a0
00000b41: MLOAD
00000b42: DUP1
00000b43: PUSH1 0x01
00000b45: SHR
00000b46: PUSH2 0x4490
00000b49: JUMPI
00000b4a: PUSH2 0x0620
00000b4d: MSTORE
00000b4e: JUMPDEST
00000b4f: PUSH2 0x0620
00000b52: SWAP1
00000b53: POP
00000b54: MLOAD
00000b55: ISZERO
00000b56: PUSH2 0x4490
00000b59: JUMPI
00000b5a: PUSH1 0x00
00000b5c: PUSH2 0x05a0
00000b5f: MSTORE
00000b60: PUSH2 0x05a0
00000b63: POP
00000b64: PUSH1 0x00
00000b66: PUSH1 0x00
00000b68: PUSH2 0x05a0
00000b6b: MLOAD
00000b6c: PUSH2 0x05c0
00000b6f: PUSH2 0x0520
00000b72: MLOAD
00000b73: PUSH2 0x03c0
00000b76: MLOAD
00000b77: GAS
00000b78: CALL
00000b79: PUSH2 0x0b87
00000b7c: JUMPI
00000b7d: RETURNDATASIZE
00000b7e: PUSH1 0x00
00000b80: PUSH1 0x00
00000b82: RETURNDATACOPY
00000b83: RETURNDATASIZE
00000b84: PUSH1 0x00
00000b86: REVERT
00000b87: JUMPDEST
00000b88: CALLER
00000b89: PUSH32 0x8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd97140
00000baa: PUSH2 0x0380
00000bad: MLOAD
00000bae: PUSH2 0x05a0
00000bb1: MSTORE
00000bb2: PUSH1 0x44
00000bb4: CALLDATALOAD
00000bb5: PUSH2 0x05c0
00000bb8: MSTORE
00000bb9: PUSH2 0x03a0
00000bbc: MLOAD
00000bbd: PUSH2 0x05e0
00000bc0: MSTORE
00000bc1: PUSH2 0x0520
00000bc4: MLOAD
00000bc5: PUSH2 0x0600
00000bc8: MSTORE
00000bc9: PUSH1 0x80
00000bcb: PUSH2 0x05a0
00000bce: LOG2
00000bcf: PUSH1 0x20
00000bd1: PUSH2 0x0520
00000bd4: PUSH1 0x03
00000bd6: PUSH1 0x00
00000bd8: SSTORE
00000bd9: RETURN
00000bda: JUMPDEST
00000bdb: CALLVALUE
00000bdc: PUSH2 0x4490
00000bdf: JUMPI
00000be0: PUSH4 0xa461b3c8
00000be5: DUP2
00000be6: XOR
00000be7: PUSH2 0x0f5b
00000bea: JUMPI
00000beb: PUSH2 0x01c4
00000bee: CALLDATASIZE
00000bef: LT
00000bf0: PUSH2 0x4490
00000bf3: JUMPI
00000bf4: PUSH1 0x04
00000bf6: CALLDATALOAD
00000bf7: PUSH1 0x04
00000bf9: ADD
00000bfa: PUSH1 0x20
00000bfc: DUP2
00000bfd: CALLDATALOAD
00000bfe: GT
00000bff: PUSH2 0x4490
00000c02: JUMPI
00000c03: DUP1
00000c04: CALLDATALOAD
00000c05: DUP1
00000c06: PUSH1 0x80
00000c08: MSTORE
00000c09: PUSH1 0x20
00000c0b: DUP3
00000c0c: ADD
00000c0d: DUP1
00000c0e: CALLDATALOAD
00000c0f: PUSH1 0xa0
00000c11: MSTORE
00000c12: POP
00000c13: POP
00000c14: POP
00000c15: PUSH1 0x24
00000c17: CALLDATALOAD
00000c18: PUSH1 0x04
00000c1a: ADD
00000c1b: PUSH1 0x0a
00000c1d: DUP2
00000c1e: CALLDATALOAD
00000c1f: GT
00000c20: PUSH2 0x4490
00000c23: JUMPI
00000c24: DUP1
00000c25: CALLDATALOAD
00000c26: DUP1
00000c27: PUSH1 0xc0
00000c29: MSTORE
00000c2a: PUSH1 0x20
00000c2c: DUP3
00000c2d: ADD
00000c2e: DUP1
00000c2f: CALLDATALOAD
00000c30: PUSH1 0xe0
00000c32: MSTORE
00000c33: POP
00000c34: POP
00000c35: POP
00000c36: PUSH1 0x44
00000c38: CALLDATALOAD
00000c39: DUP1
00000c3a: PUSH1 0xa0
00000c3c: SHR
00000c3d: PUSH2 0x4490
00000c40: JUMPI
00000c41: PUSH2 0x0100
00000c44: MSTORE
00000c45: PUSH1 0x64
00000c47: CALLDATALOAD
00000c48: DUP1
00000c49: PUSH1 0xa0
00000c4b: SHR
00000c4c: PUSH2 0x4490
00000c4f: JUMPI
00000c50: PUSH2 0x0120
00000c53: MSTORE
00000c54: PUSH1 0x84
00000c56: CALLDATALOAD
00000c57: DUP1
00000c58: PUSH1 0xa0
00000c5a: SHR
00000c5b: PUSH2 0x4490
00000c5e: JUMPI
00000c5f: PUSH2 0x0140
00000c62: MSTORE
00000c63: PUSH1 0xa4
00000c65: CALLDATALOAD
00000c66: DUP1
00000c67: PUSH1 0xa0
00000c69: SHR
00000c6a: PUSH2 0x4490
00000c6d: JUMPI
00000c6e: PUSH2 0x0160
00000c71: MSTORE
00000c72: PUSH1 0x01
00000c74: SLOAD
00000c75: PUSH2 0x4490
00000c78: JUMPI
00000c79: PUSH20 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
00000c8e: PUSH2 0x0100
00000c91: MLOAD
00000c92: XOR
00000c93: PUSH2 0x4490
00000c96: JUMPI
00000c97: PUSH8 0x0de0b6b3a7640000
00000ca0: PUSH1 0xc4
00000ca2: CALLDATALOAD
00000ca3: XOR
00000ca4: PUSH2 0x4490
00000ca7: JUMPI
00000ca8: PUSH1 0x00
00000caa: PUSH1 0x02
00000cac: SWAP1
00000cad: JUMPDEST
00000cae: DUP1
00000caf: PUSH2 0x0180
00000cb2: MSTORE
00000cb3: PUSH2 0x0180
00000cb6: MLOAD
00000cb7: PUSH1 0x03
00000cb9: DUP2
00000cba: GT
00000cbb: PUSH2 0x4490
00000cbe: JUMPI
00000cbf: PUSH1 0x05
00000cc1: SHL
00000cc2: PUSH2 0x0100
00000cc5: ADD
00000cc6: MLOAD
00000cc7: PUSH2 0x01a0
00000cca: MSTORE
00000ccb: PUSH2 0x01a0
00000cce: MLOAD
00000ccf: PUSH2 0x0cd7
00000cd2: JUMPI
00000cd3: PUSH2 0x0d19
00000cd6: JUMP
00000cd7: JUMPDEST
00000cd8: PUSH2 0x01a0
00000cdb: MLOAD
00000cdc: PUSH2 0x0180
00000cdf: MLOAD
00000ce0: PUSH1 0x01
00000ce2: DUP2
00000ce3: GT
00000ce4: PUSH2 0x4490
00000ce7: JUMPI
00000ce8: PUSH1 0x02
00000cea: ADD
00000ceb: SSTORE
00000cec: PUSH2 0x0180
00000cef: MLOAD
00000cf0: PUSH1 0x03
00000cf2: DUP2
00000cf3: GT
00000cf4: PUSH2 0x4490
00000cf7: JUMPI
00000cf8: PUSH1 0x05
00000cfa: SHL
00000cfb: PUSH1 0xc4
00000cfd: ADD
00000cfe: CALLDATALOAD
00000cff: PUSH2 0x0180
00000d02: MLOAD
00000d03: PUSH1 0x01
00000d05: DUP2
00000d06: GT
00000d07: PUSH2 0x4490
00000d0a: JUMPI
00000d0b: PUSH1 0x0d
00000d0d: ADD
00000d0e: SSTORE
00000d0f: PUSH1 0x01
00000d11: ADD
00000d12: DUP2
00000d13: DUP2
00000d14: XOR
00000d15: PUSH2 0x0cad
00000d18: JUMPI
00000d19: JUMPDEST
00000d1a: POP
00000d1b: POP
00000d1c: PUSH2 0x0144
00000d1f: CALLDATALOAD
00000d20: PUSH1 0x64
00000d22: DUP2
00000d23: MUL
00000d24: DUP2
00000d25: PUSH1 0x64
00000d27: DUP3
00000d28: DIV
00000d29: XOR
00000d2a: PUSH2 0x4490
00000d2d: JUMPI
00000d2e: SWAP1
00000d2f: POP
00000d30: PUSH2 0x0180
00000d33: MSTORE
00000d34: PUSH2 0x0180
00000d37: MLOAD
00000d38: PUSH1 0x09
00000d3a: SSTORE
00000d3b: PUSH2 0x0180
00000d3e: MLOAD
00000d3f: PUSH1 0x0a
00000d41: SSTORE
00000d42: PUSH2 0x0164
00000d45: CALLDATALOAD
00000d46: PUSH1 0x06
00000d48: SSTORE
00000d49: CALLER
00000d4a: PUSH1 0x01
00000d4c: SSTORE
00000d4d: PUSH2 0x0362
00000d50: PUSH1 0x1a
00000d52: SSTORE
00000d53: PUSH8 0x0de0b6b3a7640000
00000d5c: PUSH1 0x40
00000d5e: MSTORE
00000d5f: PUSH8 0x0de0b6b3a7640000
00000d68: PUSH1 0x60
00000d6a: MSTORE
00000d6b: PUSH2 0x0d75
00000d6e: PUSH2 0x01a0
00000d71: PUSH2 0x305d
00000d74: JUMP
00000d75: JUMPDEST
00000d76: PUSH2 0x01a0
00000d79: MLOAD
00000d7a: PUSH1 0x19
00000d7c: SSTORE
00000d7d: TIMESTAMP
00000d7e: PUSH1 0x1b
00000d80: SSTORE
00000d81: PUSH1 0x00
00000d83: PUSH1 0x17
00000d85: PUSH2 0x0200
00000d88: MSTORE
00000d89: PUSH32 0x43757276652e666920466163746f727920506f6f6c3a20000000000000000000
00000daa: PUSH2 0x0220
00000dad: MSTORE
00000dae: PUSH2 0x0200
00000db1: DUP1
00000db2: MLOAD
00000db3: PUSH1 0x20
00000db5: DUP3
00000db6: ADD
00000db7: DUP4
00000db8: PUSH2 0x0260
00000dbb: ADD
00000dbc: DUP2
00000dbd: MLOAD
00000dbe: DUP2
00000dbf: MSTORE
00000dc0: POP
00000dc1: POP
00000dc2: DUP1
00000dc3: DUP4
00000dc4: ADD
00000dc5: SWAP3
00000dc6: POP
00000dc7: POP
00000dc8: POP
00000dc9: PUSH1 0x80
00000dcb: MLOAD
00000dcc: DUP2
00000dcd: PUSH2 0x0260
00000dd0: ADD
00000dd1: PUSH1 0xa0
00000dd3: MLOAD
00000dd4: DUP2
00000dd5: MSTORE
00000dd6: POP
00000dd7: DUP1
00000dd8: DUP3
00000dd9: ADD
00000dda: SWAP2
00000ddb: POP
00000ddc: POP
00000ddd: DUP1
00000dde: PUSH2 0x0240
00000de1: MSTORE
00000de2: PUSH2 0x0240
00000de5: SWAP1
00000de6: POP
00000de7: DUP1
00000de8: MLOAD
00000de9: DUP1
00000dea: PUSH2 0x01a0
00000ded: MSTORE
00000dee: PUSH1 0x20
00000df0: DUP3
00000df1: ADD
00000df2: DUP2
00000df3: PUSH2 0x01c0
00000df6: DUP4
00000df7: DUP4
00000df8: PUSH1 0x04
00000dfa: GAS
00000dfb: STATICCALL
00000dfc: POP
00000dfd: POP
00000dfe: POP
00000dff: POP
00000e00: PUSH2 0x01a0
00000e03: MLOAD
00000e04: DUP1
00000e05: PUSH1 0x0f
00000e07: SSTORE
00000e08: PUSH1 0x00
00000e0a: DUP2
00000e0b: PUSH1 0x1f
00000e0d: ADD
00000e0e: PUSH1 0x05
00000e10: SHR
00000e11: PUSH1 0x02
00000e13: DUP2
00000e14: GT
00000e15: PUSH2 0x4490
00000e18: JUMPI
00000e19: DUP1
00000e1a: ISZERO
00000e1b: PUSH2 0x0e39
00000e1e: JUMPI
00000e1f: SWAP1
00000e20: JUMPDEST
00000e21: DUP1
00000e22: PUSH1 0x05
00000e24: SHL
00000e25: PUSH2 0x01c0
00000e28: ADD
00000e29: MLOAD
00000e2a: DUP2
00000e2b: PUSH1 0x10
00000e2d: ADD
00000e2e: SSTORE
00000e2f: PUSH1 0x01
00000e31: ADD
00000e32: DUP2
00000e33: DUP2
00000e34: XOR
00000e35: PUSH2 0x0e20
00000e38: JUMPI
00000e39: JUMPDEST
00000e3a: POP
00000e3b: POP
00000e3c: POP
00000e3d: PUSH1 0x00
00000e3f: PUSH1 0xc0
00000e41: MLOAD
00000e42: DUP2
00000e43: PUSH2 0x0260
00000e46: ADD
00000e47: PUSH1 0xe0
00000e49: MLOAD
00000e4a: DUP2
00000e4b: MSTORE
00000e4c: POP
00000e4d: DUP1
00000e4e: DUP3
00000e4f: ADD
00000e50: SWAP2
00000e51: POP
00000e52: POP
00000e53: PUSH1 0x02
00000e55: PUSH2 0x0200
00000e58: MSTORE
00000e59: PUSH32 0x2d66000000000000000000000000000000000000000000000000000000000000
00000e7a: PUSH2 0x0220
00000e7d: MSTORE
00000e7e: PUSH2 0x0200
00000e81: DUP1
00000e82: MLOAD
00000e83: PUSH1 0x20
00000e85: DUP3
00000e86: ADD
00000e87: DUP4
00000e88: PUSH2 0x0260
00000e8b: ADD
00000e8c: DUP2
00000e8d: MLOAD
00000e8e: DUP2
00000e8f: MSTORE
00000e90: POP
00000e91: POP
00000e92: DUP1
00000e93: DUP4
00000e94: ADD
00000e95: SWAP3
00000e96: POP
00000e97: POP
00000e98: POP
00000e99: DUP1
00000e9a: PUSH2 0x0240
00000e9d: MSTORE
00000e9e: PUSH2 0x0240
00000ea1: SWAP1
00000ea2: POP
00000ea3: DUP1
00000ea4: MLOAD
00000ea5: DUP1
00000ea6: PUSH1 0x12
00000ea8: SSTORE
00000ea9: PUSH1 0x20
00000eab: DUP3
00000eac: ADD
00000ead: DUP1
00000eae: MLOAD
00000eaf: PUSH1 0x13
00000eb1: SSTORE
00000eb2: POP
00000eb3: POP
00000eb4: POP
00000eb5: PUSH32 0x8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f
00000ed6: PUSH2 0x0220
00000ed9: MSTORE
00000eda: PUSH2 0x01a0
00000edd: MLOAD
00000ede: PUSH2 0x01c0
00000ee1: KECCAK256
00000ee2: PUSH2 0x0240
00000ee5: MSTORE
00000ee6: PUSH32 0xfff8816755fb13c9804fb44b52dbb9380dd81eba3e16258e5bd3c7595226aa1d
00000f07: PUSH2 0x0260
00000f0a: MSTORE
00000f0b: CHAINID
00000f0c: PUSH2 0x0280
00000f0f: MSTORE
00000f10: ADDRESS
00000f11: PUSH2 0x02a0
00000f14: MSTORE
00000f15: PUSH1 0xa0
00000f17: PUSH2 0x0200
00000f1a: MSTORE
00000f1b: PUSH2 0x0200
00000f1e: DUP1
00000f1f: MLOAD
00000f20: PUSH1 0x20
00000f22: DUP3
00000f23: ADD
00000f24: KECCAK256
00000f25: SWAP1
00000f26: POP
00000f27: PUSH1 0x17
00000f29: SSTORE
00000f2a: ADDRESS
00000f2b: PUSH1 0x00
00000f2d: PUSH32 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
00000f4e: PUSH1 0x00
00000f50: PUSH2 0x0200
00000f53: MSTORE
00000f54: PUSH1 0x20
00000f56: PUSH2 0x0200
00000f59: LOG3
00000f5a: STOP
00000f5b: JUMPDEST
00000f5c: PUSH4 0x313ce567
00000f61: DUP2
00000f62: XOR
00000f63: PUSH2 0x0f79
00000f66: JUMPI
00000f67: PUSH1 0x04
00000f69: CALLDATASIZE
00000f6a: LT
00000f6b: PUSH2 0x4490
00000f6e: JUMPI
00000f6f: PUSH1 0x12
00000f71: PUSH1 0x40
00000f73: MSTORE
00000f74: PUSH1 0x20
00000f76: PUSH1 0x40
00000f78: RETURN
00000f79: JUMPDEST
00000f7a: PUSH4 0xa9059cbb
00000f7f: DUP2
00000f80: XOR
00000f81: PUSH2 0x0fbd
00000f84: JUMPI
00000f85: PUSH1 0x44
00000f87: CALLDATASIZE
00000f88: LT
00000f89: PUSH2 0x4490
00000f8c: JUMPI
00000f8d: PUSH1 0x04
00000f8f: CALLDATALOAD
00000f90: DUP1
00000f91: PUSH1 0xa0
00000f93: SHR
00000f94: PUSH2 0x4490
00000f97: JUMPI
00000f98: PUSH1 0xc0
00000f9a: MSTORE
00000f9b: CALLER
00000f9c: PUSH1 0x40
00000f9e: MSTORE
00000f9f: PUSH1 0xc0
00000fa1: MLOAD
00000fa2: PUSH1 0x60
00000fa4: MSTORE
00000fa5: PUSH1 0x24
00000fa7: CALLDATALOAD
00000fa8: PUSH1 0x80
00000faa: MSTORE
00000fab: PUSH2 0x0fb2
00000fae: PUSH2 0x30a1
00000fb1: JUMP
00000fb2: JUMPDEST
00000fb3: PUSH1 0x01
00000fb5: PUSH1 0xe0
00000fb7: MSTORE
00000fb8: PUSH1 0x20
00000fba: PUSH1 0xe0
00000fbc: RETURN
00000fbd: JUMPDEST
00000fbe: PUSH4 0x23b872dd
00000fc3: DUP2
00000fc4: XOR
00000fc5: PUSH2 0x1097
00000fc8: JUMPI
00000fc9: PUSH1 0x64
00000fcb: CALLDATASIZE
00000fcc: LT
00000fcd: PUSH2 0x4490
00000fd0: JUMPI
00000fd1: PUSH1 0x04
00000fd3: CALLDATALOAD
00000fd4: DUP1
00000fd5: PUSH1 0xa0
00000fd7: SHR
00000fd8: PUSH2 0x4490
00000fdb: JUMPI
00000fdc: PUSH1 0xc0
00000fde: MSTORE
00000fdf: PUSH1 0x24
00000fe1: CALLDATALOAD
00000fe2: DUP1
00000fe3: PUSH1 0xa0
00000fe5: SHR
00000fe6: PUSH2 0x4490
00000fe9: JUMPI
00000fea: PUSH1 0xe0
00000fec: MSTORE
00000fed: PUSH1 0xc0
00000fef: MLOAD
00000ff0: PUSH1 0x40
00000ff2: MSTORE
00000ff3: PUSH1 0xe0
00000ff5: MLOAD
00000ff6: PUSH1 0x60
00000ff8: MSTORE
00000ff9: PUSH1 0x44
00000ffb: CALLDATALOAD
00000ffc: PUSH1 0x80
00000ffe: MSTORE
00000fff: PUSH2 0x1006
00001002: PUSH2 0x30a1
00001005: JUMP
00001006: JUMPDEST
00001007: PUSH1 0x15
00001009: PUSH1 0xc0
0000100b: MLOAD
0000100c: PUSH1 0x20
0000100e: MSTORE
0000100f: PUSH1 0x00
00001011: MSTORE
00001012: PUSH1 0x40
00001014: PUSH1 0x00
00001016: KECCAK256
00001017: DUP1
00001018: CALLER
00001019: PUSH1 0x20
0000101b: MSTORE
0000101c: PUSH1 0x00
0000101e: MSTORE
0000101f: PUSH1 0x40
00001021: PUSH1 0x00
00001023: KECCAK256
00001024: SWAP1
00001025: POP
00001026: SLOAD
00001027: PUSH2 0x0100
0000102a: MSTORE
0000102b: PUSH32 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
0000104c: PUSH2 0x0100
0000104f: MLOAD
00001050: EQ
00001051: PUSH2 0x108a
00001054: JUMPI
00001055: PUSH2 0x0100
00001058: MLOAD
00001059: PUSH1 0x44
0000105b: CALLDATALOAD
0000105c: DUP1
0000105d: DUP3
0000105e: SUB
0000105f: DUP3
00001060: DUP2
00001061: GT
00001062: PUSH2 0x4490
00001065: JUMPI
00001066: SWAP1
00001067: POP
00001068: SWAP1
00001069: POP
0000106a: PUSH1 0x15
0000106c: PUSH1 0xc0
0000106e: MLOAD
0000106f: PUSH1 0x20
00001071: MSTORE
00001072: PUSH1 0x00
00001074: MSTORE
00001075: PUSH1 0x40
00001077: PUSH1 0x00
00001079: KECCAK256
0000107a: DUP1
0000107b: CALLER
0000107c: PUSH1 0x20
0000107e: MSTORE
0000107f: PUSH1 0x00
00001081: MSTORE
00001082: PUSH1 0x40
00001084: PUSH1 0x00
00001086: KECCAK256
00001087: SWAP1
00001088: POP
00001089: SSTORE
0000108a: JUMPDEST
0000108b: PUSH1 0x01
0000108d: PUSH2 0x0120
00001090: MSTORE
00001091: PUSH1 0x20
00001093: PUSH2 0x0120
00001096: RETURN
00001097: JUMPDEST
00001098: PUSH4 0x095ea7b3
0000109d: DUP2
0000109e: XOR
0000109f: PUSH2 0x1116
000010a2: JUMPI
000010a3: PUSH1 0x44
000010a5: CALLDATASIZE
000010a6: LT
000010a7: PUSH2 0x4490
000010aa: JUMPI
000010ab: PUSH1 0x04
000010ad: CALLDATALOAD
000010ae: DUP1
000010af: PUSH1 0xa0
000010b1: SHR
000010b2: PUSH2 0x4490
000010b5: JUMPI
000010b6: PUSH1 0x40
000010b8: MSTORE
000010b9: PUSH1 0x24
000010bb: CALLDATALOAD
000010bc: PUSH1 0x15
000010be: CALLER
000010bf: PUSH1 0x20
000010c1: MSTORE
000010c2: PUSH1 0x00
000010c4: MSTORE
000010c5: PUSH1 0x40
000010c7: PUSH1 0x00
000010c9: KECCAK256
000010ca: DUP1
000010cb: PUSH1 0x40
000010cd: MLOAD
000010ce: PUSH1 0x20
000010d0: MSTORE
000010d1: PUSH1 0x00
000010d3: MSTORE
000010d4: PUSH1 0x40
000010d6: PUSH1 0x00
000010d8: KECCAK256
000010d9: SWAP1
000010da: POP
000010db: SSTORE
000010dc: PUSH1 0x40
000010de: MLOAD
000010df: CALLER
000010e0: PUSH32 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
00001101: PUSH1 0x24
00001103: CALLDATALOAD
00001104: PUSH1 0x60
00001106: MSTORE
00001107: PUSH1 0x20
00001109: PUSH1 0x60
0000110b: LOG3
0000110c: PUSH1 0x01
0000110e: PUSH1 0x60
00001110: MSTORE
00001111: PUSH1 0x20
00001113: PUSH1 0x60
00001115: RETURN
00001116: JUMPDEST
00001117: PUSH4 0xd505accf
0000111c: DUP2
0000111d: XOR
0000111e: PUSH2 0x1444
00001121: JUMPI
00001122: PUSH1 0xe4
00001124: CALLDATASIZE
00001125: LT
00001126: PUSH2 0x4490
00001129: JUMPI
0000112a: PUSH1 0x04
0000112c: CALLDATALOAD
0000112d: DUP1
0000112e: PUSH1 0xa0
00001130: SHR
00001131: PUSH2 0x4490
00001134: JUMPI
00001135: PUSH1 0x40
00001137: MSTORE
00001138: PUSH1 0x24
0000113a: CALLDATALOAD
0000113b: DUP1
0000113c: PUSH1 0xa0
0000113e: SHR
0000113f: PUSH2 0x4490
00001142: JUMPI
00001143: PUSH1 0x60
00001145: MSTORE
00001146: PUSH1 0x84
00001148: CALLDATALOAD
00001149: DUP1
0000114a: PUSH1 0x08
0000114c: SHR
0000114d: PUSH2 0x4490
00001150: JUMPI
00001151: PUSH1 0x80
00001153: MSTORE
00001154: PUSH1 0x40
00001156: MLOAD
00001157: ISZERO
00001158: PUSH2 0x4490
0000115b: JUMPI
0000115c: PUSH1 0x64
0000115e: CALLDATALOAD
0000115f: TIMESTAMP
00001160: GT
00001161: PUSH2 0x4490
00001164: JUMPI
00001165: PUSH1 0x18
00001167: PUSH1 0x40
00001169: MLOAD
0000116a: PUSH1 0x20
0000116c: MSTORE
0000116d: PUSH1 0x00
0000116f: MSTORE
00001170: PUSH1 0x40
00001172: PUSH1 0x00
00001174: KECCAK256
00001175: SLOAD
00001176: PUSH1 0xa0
00001178: MSTORE
00001179: PUSH1 0x00
0000117b: PUSH1 0x02
0000117d: PUSH1 0xe0
0000117f: MSTORE
00001180: PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000
000011a1: PUSH2 0x0100
000011a4: MSTORE
000011a5: PUSH1 0xe0
000011a7: DUP1
000011a8: MLOAD
000011a9: PUSH1 0x20
000011ab: DUP3
000011ac: ADD
000011ad: DUP4
000011ae: PUSH2 0x0220
000011b1: ADD
000011b2: DUP2
000011b3: MLOAD
000011b4: DUP2
000011b5: MSTORE
000011b6: POP
000011b7: POP
000011b8: DUP1
000011b9: DUP4
000011ba: ADD
000011bb: SWAP3
000011bc: POP
000011bd: POP
000011be: POP
000011bf: PUSH1 0x17
000011c1: SLOAD
000011c2: DUP2
000011c3: PUSH2 0x0220
000011c6: ADD
000011c7: MSTORE
000011c8: PUSH1 0x20
000011ca: DUP2
000011cb: ADD
000011cc: SWAP1
000011cd: POP
000011ce: PUSH32 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9
000011ef: PUSH2 0x0140
000011f2: MSTORE
000011f3: PUSH1 0x40
000011f5: MLOAD
000011f6: PUSH2 0x0160
000011f9: MSTORE
000011fa: PUSH1 0x60
000011fc: MLOAD
000011fd: PUSH2 0x0180
00001200: MSTORE
00001201: PUSH1 0x44
00001203: CALLDATALOAD
00001204: PUSH2 0x01a0
00001207: MSTORE
00001208: PUSH1 0xa0
0000120a: MLOAD
0000120b: PUSH2 0x01c0
0000120e: MSTORE
0000120f: PUSH1 0x64
00001211: CALLDATALOAD
00001212: PUSH2 0x01e0
00001215: MSTORE
00001216: PUSH1 0xc0
00001218: PUSH2 0x0120
0000121b: MSTORE
0000121c: PUSH2 0x0120
0000121f: DUP1
00001220: MLOAD
00001221: PUSH1 0x20
00001223: DUP3
00001224: ADD
00001225: KECCAK256
00001226: SWAP1
00001227: POP
00001228: DUP2
00001229: PUSH2 0x0220
0000122c: ADD
0000122d: MSTORE
0000122e: PUSH1 0x20
00001230: DUP2
00001231: ADD
00001232: SWAP1
00001233: POP
00001234: DUP1
00001235: PUSH2 0x0200
00001238: MSTORE
00001239: PUSH2 0x0200
0000123c: SWAP1
0000123d: POP
0000123e: DUP1
0000123f: MLOAD
00001240: PUSH1 0x20
00001242: DUP3
00001243: ADD
00001244: KECCAK256
00001245: SWAP1
00001246: POP
00001247: PUSH1 0xc0
00001249: MSTORE
0000124a: PUSH1 0x40
0000124c: MLOAD
0000124d: EXTCODESIZE
0000124e: ISZERO
0000124f: PUSH2 0x138d
00001252: JUMPI
00001253: PUSH1 0x00
00001255: PUSH1 0x40
00001257: PUSH1 0xa4
00001259: PUSH2 0x0180
0000125c: CALLDATACOPY
0000125d: PUSH1 0x40
0000125f: PUSH2 0x0160
00001262: MSTORE
00001263: PUSH2 0x0160
00001266: DUP1
00001267: MLOAD
00001268: PUSH1 0x20
0000126a: DUP3
0000126b: ADD
0000126c: DUP4
0000126d: PUSH2 0x0240
00001270: ADD
00001271: DUP3
00001272: DUP2
00001273: DUP5
00001274: DUP5
00001275: PUSH1 0x04
00001277: GAS
00001278: STATICCALL
00001279: POP
0000127a: POP
0000127b: POP
0000127c: DUP1
0000127d: DUP4
0000127e: ADD
0000127f: SWAP3
00001280: POP
00001281: POP
00001282: POP
00001283: PUSH1 0x80
00001285: MLOAD
00001286: PUSH2 0x01c0
00001289: MSTORE
0000128a: PUSH2 0x01c0
0000128d: PUSH1 0x1f
0000128f: DUP2
00001290: ADD
00001291: DUP1
00001292: MLOAD
00001293: PUSH2 0x0200
00001296: MSTORE
00001297: POP
00001298: PUSH1 0x01
0000129a: PUSH2 0x01e0
0000129d: MSTORE
0000129e: PUSH2 0x01e0
000012a1: SWAP1
000012a2: POP
000012a3: DUP1
000012a4: MLOAD
000012a5: PUSH1 0x20
000012a7: DUP3
000012a8: ADD
000012a9: DUP4
000012aa: PUSH2 0x0240
000012ad: ADD
000012ae: DUP2
000012af: MLOAD
000012b0: DUP2
000012b1: MSTORE
000012b2: POP
000012b3: POP
000012b4: DUP1
000012b5: DUP4
000012b6: ADD
000012b7: SWAP3
000012b8: POP
000012b9: POP
000012ba: POP
000012bb: DUP1
000012bc: PUSH2 0x0220
000012bf: MSTORE
000012c0: PUSH2 0x0220
000012c3: SWAP1
000012c4: POP
000012c5: DUP1
000012c6: MLOAD
000012c7: DUP1
000012c8: PUSH1 0xe0
000012ca: MSTORE
000012cb: PUSH1 0x20
000012cd: DUP3
000012ce: ADD
000012cf: DUP2
000012d0: PUSH2 0x0100
000012d3: DUP4
000012d4: DUP4
000012d5: PUSH1 0x04
000012d7: GAS
000012d8: STATICCALL
000012d9: POP
000012da: POP
000012db: POP
000012dc: POP
000012dd: PUSH32 0x1626ba7e00000000000000000000000000000000000000000000000000000000
000012fe: PUSH1 0x40
00001300: MLOAD
00001301: PUSH4 0x1626ba7e
00001306: PUSH2 0x0160
00001309: MSTORE
0000130a: PUSH1 0x40
0000130c: PUSH1 0xc0
0000130e: MLOAD
0000130f: PUSH2 0x0180
00001312: MSTORE
00001313: DUP1
00001314: PUSH2 0x01a0
00001317: MSTORE
00001318: DUP1
00001319: PUSH2 0x0180
0000131c: ADD
0000131d: PUSH1 0xe0
0000131f: MLOAD
00001320: DUP1
00001321: DUP3
00001322: MSTORE
00001323: PUSH1 0x20
00001325: DUP3
00001326: ADD
00001327: DUP2
00001328: DUP2
00001329: DUP4
0000132a: PUSH2 0x0100
0000132d: PUSH1 0x04
0000132f: GAS
00001330: STATICCALL
00001331: POP
00001332: POP
00001333: POP
00001334: DUP1
00001335: MLOAD
00001336: DUP1
00001337: PUSH1 0x20
00001339: DUP4
0000133a: ADD
0000133b: ADD
0000133c: PUSH1 0x1f
0000133e: DUP3
0000133f: PUSH1 0x00
00001341: SUB
00001342: AND
00001343: CALLDATASIZE
00001344: DUP3
00001345: CALLDATACOPY
00001346: POP
00001347: POP
00001348: PUSH1 0x1f
0000134a: NOT
0000134b: PUSH1 0x1f
0000134d: DUP3
0000134e: MLOAD
0000134f: PUSH1 0x20
00001351: ADD
00001352: ADD
00001353: AND
00001354: SWAP1
00001355: POP
00001356: DUP2
00001357: ADD
00001358: POP
00001359: POP
0000135a: PUSH1 0x20
0000135c: PUSH2 0x0160
0000135f: PUSH1 0xc4
00001361: PUSH2 0x017c
00001364: DUP5
00001365: GAS
00001366: STATICCALL
00001367: PUSH2 0x1375
0000136a: JUMPI
0000136b: RETURNDATASIZE
0000136c: PUSH1 0x00
0000136e: PUSH1 0x00
00001370: RETURNDATACOPY
00001371: RETURNDATASIZE
00001372: PUSH1 0x00
00001374: REVERT
00001375: JUMPDEST
00001376: PUSH1 0x20
00001378: RETURNDATASIZE
00001379: LT
0000137a: PUSH2 0x4490
0000137d: JUMPI
0000137e: PUSH2 0x0160
00001381: SWAP1
00001382: POP
00001383: MLOAD
00001384: XOR
00001385: PUSH2 0x4490
00001388: JUMPI
00001389: PUSH2 0x13c1
0000138c: JUMP
0000138d: JUMPDEST
0000138e: PUSH1 0x40
00001390: MLOAD
00001391: PUSH1 0xc0
00001393: MLOAD
00001394: PUSH1 0xe0
00001396: MSTORE
00001397: PUSH1 0x80
00001399: MLOAD
0000139a: PUSH2 0x0100
0000139d: MSTORE
0000139e: PUSH1 0xa4
000013a0: CALLDATALOAD
000013a1: PUSH2 0x0120
000013a4: MSTORE
000013a5: PUSH1 0xc4
000013a7: CALLDATALOAD
000013a8: PUSH2 0x0140
000013ab: MSTORE
000013ac: PUSH1 0x20
000013ae: PUSH1 0x00
000013b0: PUSH1 0x80
000013b2: PUSH1 0xe0
000013b4: PUSH1 0x01
000013b6: GAS
000013b7: STATICCALL
000013b8: POP
000013b9: PUSH1 0x00
000013bb: MLOAD
000013bc: XOR
000013bd: PUSH2 0x4490
000013c0: JUMPI
000013c1: JUMPDEST
000013c2: PUSH1 0x44
000013c4: CALLDATALOAD
000013c5: PUSH1 0x15
000013c7: PUSH1 0x40
000013c9: MLOAD
000013ca: PUSH1 0x20
000013cc: MSTORE
000013cd: PUSH1 0x00
000013cf: MSTORE
000013d0: PUSH1 0x40
000013d2: PUSH1 0x00
000013d4: KECCAK256
000013d5: DUP1
000013d6: PUSH1 0x60
000013d8: MLOAD
000013d9: PUSH1 0x20
000013db: MSTORE
000013dc: PUSH1 0x00
000013de: MSTORE
000013df: PUSH1 0x40
000013e1: PUSH1 0x00
000013e3: KECCAK256
000013e4: SWAP1
000013e5: POP
000013e6: SSTORE
000013e7: PUSH1 0xa0
000013e9: MLOAD
000013ea: PUSH1 0x01
000013ec: DUP2
000013ed: ADD
000013ee: DUP2
000013ef: DUP2
000013f0: LT
000013f1: PUSH2 0x4490
000013f4: JUMPI
000013f5: SWAP1
000013f6: POP
000013f7: PUSH1 0x18
000013f9: PUSH1 0x40
000013fb: MLOAD
000013fc: PUSH1 0x20
000013fe: MSTORE
000013ff: PUSH1 0x00
00001401: MSTORE
00001402: PUSH1 0x40
00001404: PUSH1 0x00
00001406: KECCAK256
00001407: SSTORE
00001408: PUSH1 0x60
0000140a: MLOAD
0000140b: PUSH1 0x40
0000140d: MLOAD
0000140e: PUSH32 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925
0000142f: PUSH1 0x44
00001431: CALLDATALOAD
00001432: PUSH1 0xe0
00001434: MSTORE
00001435: PUSH1 0x20
00001437: PUSH1 0xe0
00001439: LOG3
0000143a: PUSH1 0x01
0000143c: PUSH1 0xe0
0000143e: MSTORE
0000143f: PUSH1 0x20
00001441: PUSH1 0xe0
00001443: RETURN
00001444: JUMPDEST
00001445: PUSH4 0xfde625e6
0000144a: DUP2
0000144b: XOR
0000144c: PUSH2 0x1475
0000144f: JUMPI
00001450: PUSH1 0x04
00001452: CALLDATASIZE
00001453: LT
00001454: PUSH2 0x4490
00001457: JUMPI
00001458: PUSH16 0xffffffffffffffffffffffffffffffff
00001469: PUSH1 0x19
0000146b: SLOAD
0000146c: AND
0000146d: PUSH1 0x40
0000146f: MSTORE
00001470: PUSH1 0x20
00001472: PUSH1 0x40
00001474: RETURN
00001475: JUMPDEST
00001476: PUSH4 0xc24c7c29
0000147b: DUP2
0000147c: XOR
0000147d: PUSH2 0x149a
00001480: JUMPI
00001481: PUSH1 0x04
00001483: CALLDATASIZE
00001484: LT
00001485: PUSH2 0x4490
00001488: JUMPI
00001489: PUSH1 0x19
0000148b: SLOAD
0000148c: DUP1
0000148d: PUSH1 0x80
0000148f: SHR
00001490: SWAP1
00001491: POP
00001492: PUSH1 0x40
00001494: MSTORE
00001495: PUSH1 0x20
00001497: PUSH1 0x40
00001499: RETURN
0000149a: JUMPDEST
0000149b: PUSH4 0x14f05979
000014a0: DUP2
000014a1: XOR
000014a2: PUSH2 0x14bf
000014a5: JUMPI
000014a6: PUSH1 0x04
000014a8: CALLDATASIZE
000014a9: LT
000014aa: PUSH2 0x4490
000014ad: JUMPI
000014ae: PUSH1 0x04
000014b0: SLOAD
000014b1: PUSH1 0x40
000014b3: MSTORE
000014b4: PUSH1 0x05
000014b6: SLOAD
000014b7: PUSH1 0x60
000014b9: MSTORE
000014ba: PUSH1 0x40
000014bc: PUSH1 0x40
000014be: RETURN
000014bf: JUMPDEST
000014c0: PUSH4 0xfee3f7f9
000014c5: DUP2
000014c6: XOR
000014c7: PUSH2 0x14e1
000014ca: JUMPI
000014cb: PUSH1 0x04
000014cd: CALLDATASIZE
000014ce: LT
000014cf: PUSH2 0x4490
000014d2: JUMPI
000014d3: PUSH5 0x012a05f200
000014d9: PUSH1 0x40
000014db: MSTORE
000014dc: PUSH1 0x20
000014de: PUSH1 0x40
000014e0: RETURN
000014e1: JUMPDEST
000014e2: PUSH4 0xf446c1d0
000014e7: DUP2
000014e8: XOR
000014e9: PUSH2 0x1510
000014ec: JUMPI
000014ed: PUSH1 0x04
000014ef: CALLDATASIZE
000014f0: LT
000014f1: PUSH2 0x4490
000014f4: JUMPI
000014f5: PUSH2 0x14fe
000014f8: PUSH1 0xc0
000014fa: PUSH2 0x3121
000014fd: JUMP
000014fe: JUMPDEST
000014ff: PUSH1 0xc0
00001501: MLOAD
00001502: PUSH1 0x64
00001504: DUP2
00001505: DIV
00001506: SWAP1
00001507: POP
00001508: PUSH1 0xe0
0000150a: MSTORE
0000150b: PUSH1 0x20
0000150d: PUSH1 0xe0
0000150f: RETURN
00001510: JUMPDEST
00001511: PUSH4 0x76a2f0f0
00001516: DUP2
00001517: XOR
00001518: PUSH2 0x1533
0000151b: JUMPI
0000151c: PUSH1 0x04
0000151e: CALLDATASIZE
0000151f: LT
00001520: PUSH2 0x4490
00001523: JUMPI
00001524: PUSH1 0x20
00001526: PUSH2 0x152f
00001529: PUSH1 0xc0
0000152b: PUSH2 0x3121
0000152e: JUMP
0000152f: JUMPDEST
00001530: PUSH1 0xc0
00001532: RETURN
00001533: JUMPDEST
00001534: PUSH4 0xf2388acb
00001539: DUP2
0000153a: XOR
0000153b: PUSH2 0x15e5
0000153e: JUMPI
0000153f: PUSH1 0x04
00001541: CALLDATASIZE
00001542: LT
00001543: PUSH2 0x4490
00001546: JUMPI
00001547: PUSH2 0x1551
0000154a: PUSH2 0x0180
0000154d: PUSH2 0x3121
00001550: JUMP
00001551: JUMPDEST
00001552: PUSH2 0x0180
00001555: MLOAD
00001556: PUSH2 0x0160
00001559: MSTORE
0000155a: PUSH1 0x0d
0000155c: SLOAD
0000155d: PUSH1 0x40
0000155f: MSTORE
00001560: PUSH1 0x0e
00001562: SLOAD
00001563: PUSH1 0x60
00001565: MSTORE
00001566: PUSH1 0x04
00001568: SLOAD
00001569: PUSH1 0x80
0000156b: MSTORE
0000156c: PUSH1 0x05
0000156e: SLOAD
0000156f: PUSH1 0xa0
00001571: MSTORE
00001572: PUSH2 0x157c
00001575: PUSH2 0x01c0
00001578: PUSH2 0x3246
0000157b: JUMP
0000157c: JUMPDEST
0000157d: PUSH2 0x01c0
00001580: DUP1
00001581: MLOAD
00001582: PUSH2 0x0180
00001585: MSTORE
00001586: PUSH1 0x20
00001588: DUP2
00001589: ADD
0000158a: MLOAD
0000158b: PUSH2 0x01a0
0000158e: MSTORE
0000158f: POP
00001590: PUSH2 0x0180
00001593: MLOAD
00001594: PUSH1 0x40
00001596: MSTORE
00001597: PUSH2 0x01a0
0000159a: MLOAD
0000159b: PUSH1 0x60
0000159d: MSTORE
0000159e: PUSH2 0x0160
000015a1: MLOAD
000015a2: PUSH1 0x80
000015a4: MSTORE
000015a5: PUSH2 0x15af
000015a8: PUSH2 0x01e0
000015ab: PUSH2 0x32cd
000015ae: JUMP
000015af: JUMPDEST
000015b0: PUSH2 0x01e0
000015b3: MLOAD
000015b4: PUSH2 0x01c0
000015b7: MSTORE
000015b8: PUSH1 0x20
000015ba: PUSH2 0x0180
000015bd: MLOAD
000015be: PUSH1 0x40
000015c0: MSTORE
000015c1: PUSH2 0x01a0
000015c4: MLOAD
000015c5: PUSH1 0x60
000015c7: MSTORE
000015c8: PUSH2 0x0160
000015cb: MLOAD
000015cc: PUSH1 0x80
000015ce: MSTORE
000015cf: PUSH2 0x01c0
000015d2: MLOAD
000015d3: PUSH1 0xa0
000015d5: MSTORE
000015d6: PUSH2 0x15e0
000015d9: PUSH2 0x01e0
000015dc: PUSH2 0x3531
000015df: JUMP
000015e0: JUMPDEST
000015e1: PUSH2 0x01e0
000015e4: RETURN
000015e5: JUMPDEST
000015e6: PUSH4 0x86fc88d3
000015eb: DUP2
000015ec: XOR
000015ed: PUSH2 0x1614
000015f0: JUMPI
000015f1: PUSH1 0x04
000015f3: CALLDATASIZE
000015f4: LT
000015f5: PUSH2 0x4490
000015f8: JUMPI
000015f9: PUSH1 0x00
000015fb: SLOAD
000015fc: PUSH1 0x02
000015fe: EQ
000015ff: PUSH2 0x4490
00001602: JUMPI
00001603: PUSH1 0x20
00001605: PUSH2 0x160f
00001608: PUSH2 0x01c0
0000160b: PUSH2 0x3964
0000160e: JUMP
0000160f: JUMPDEST
00001610: PUSH2 0x01c0
00001613: RETURN
00001614: JUMPDEST
00001615: PUSH4 0xbb7b8b80
0000161a: DUP2
0000161b: XOR
0000161c: PUSH2 0x16df
0000161f: JUMPI
00001620: PUSH1 0x04
00001622: CALLDATASIZE
00001623: LT
00001624: PUSH2 0x4490
00001627: JUMPI
00001628: PUSH1 0x00
0000162a: SLOAD
0000162b: PUSH1 0x02
0000162d: EQ
0000162e: PUSH2 0x4490
00001631: JUMPI
00001632: PUSH2 0x163c
00001635: PUSH2 0x0180
00001638: PUSH2 0x3121
0000163b: JUMP
0000163c: JUMPDEST
0000163d: PUSH2 0x0180
00001640: MLOAD
00001641: PUSH2 0x0160
00001644: MSTORE
00001645: PUSH1 0x0d
00001647: SLOAD
00001648: PUSH1 0x40
0000164a: MSTORE
0000164b: PUSH1 0x0e
0000164d: SLOAD
0000164e: PUSH1 0x60
00001650: MSTORE
00001651: PUSH1 0x04
00001653: SLOAD
00001654: PUSH1 0x80
00001656: MSTORE
00001657: PUSH1 0x05
00001659: SLOAD
0000165a: PUSH1 0xa0
0000165c: MSTORE
0000165d: PUSH2 0x1667
00001660: PUSH2 0x01c0
00001663: PUSH2 0x3246
00001666: JUMP
00001667: JUMPDEST
00001668: PUSH2 0x01c0
0000166b: DUP1
0000166c: MLOAD
0000166d: PUSH2 0x0180
00001670: MSTORE
00001671: PUSH1 0x20
00001673: DUP2
00001674: ADD
00001675: MLOAD
00001676: PUSH2 0x01a0
00001679: MSTORE
0000167a: POP
0000167b: PUSH2 0x0180
0000167e: MLOAD
0000167f: PUSH1 0x40
00001681: MSTORE
00001682: PUSH2 0x01a0
00001685: MLOAD
00001686: PUSH1 0x60
00001688: MSTORE
00001689: PUSH2 0x0160
0000168c: MLOAD
0000168d: PUSH1 0x80
0000168f: MSTORE
00001690: PUSH2 0x169a
00001693: PUSH2 0x01e0
00001696: PUSH2 0x32cd
00001699: JUMP
0000169a: JUMPDEST
0000169b: PUSH2 0x01e0
0000169e: MLOAD
0000169f: PUSH2 0x01c0
000016a2: MSTORE
000016a3: PUSH2 0x01c0
000016a6: MLOAD
000016a7: PUSH8 0x0de0b6b3a7640000
000016b0: DUP2
000016b1: MUL
000016b2: DUP2
000016b3: PUSH8 0x0de0b6b3a7640000
000016bc: DUP3
000016bd: DIV
000016be: XOR
000016bf: PUSH2 0x4490
000016c2: JUMPI
000016c3: SWAP1
000016c4: POP
000016c5: PUSH1 0x16
000016c7: SLOAD
000016c8: DUP1
000016c9: ISZERO
000016ca: PUSH2 0x4490
000016cd: JUMPI
000016ce: DUP1
000016cf: DUP3
000016d0: DIV
000016d1: SWAP1
000016d2: POP
000016d3: SWAP1
000016d4: POP
000016d5: PUSH2 0x01e0
000016d8: MSTORE
000016d9: PUSH1 0x20
000016db: PUSH2 0x01e0
000016de: RETURN
000016df: JUMPDEST
000016e0: PUSH4 0xed8e84f3
000016e5: DUP2
000016e6: XOR
000016e7: PUSH2 0x18a3
000016ea: JUMPI
000016eb: PUSH1 0x64
000016ed: CALLDATASIZE
000016ee: LT
000016ef: PUSH2 0x4490
000016f2: JUMPI
000016f3: PUSH1 0x44
000016f5: CALLDATALOAD
000016f6: DUP1
000016f7: PUSH1 0x01
000016f9: SHR
000016fa: PUSH2 0x4490
000016fd: JUMPI
000016fe: PUSH2 0x0280
00001701: MSTORE
00001702: PUSH2 0x170c
00001705: PUSH2 0x02c0
00001708: PUSH2 0x3121
0000170b: JUMP
0000170c: JUMPDEST
0000170d: PUSH2 0x02c0
00001710: MLOAD
00001711: PUSH2 0x02a0
00001714: MSTORE
00001715: PUSH1 0x04
00001717: SLOAD
00001718: PUSH2 0x02c0
0000171b: MSTORE
0000171c: PUSH1 0x05
0000171e: SLOAD
0000171f: PUSH2 0x02e0
00001722: MSTORE
00001723: PUSH1 0x0d
00001725: SLOAD
00001726: PUSH2 0x0160
00001729: MSTORE
0000172a: PUSH1 0x0e
0000172c: SLOAD
0000172d: PUSH2 0x0180
00001730: MSTORE
00001731: PUSH2 0x02c0
00001734: MLOAD
00001735: PUSH2 0x01a0
00001738: MSTORE
00001739: PUSH2 0x02e0
0000173c: MLOAD
0000173d: PUSH2 0x01c0
00001740: MSTORE
00001741: PUSH2 0x02a0
00001744: MLOAD
00001745: PUSH2 0x01e0
00001748: MSTORE
00001749: PUSH2 0x1753
0000174c: PUSH2 0x0320
0000174f: PUSH2 0x34ce
00001752: JUMP
00001753: JUMPDEST
00001754: PUSH2 0x0320
00001757: MLOAD
00001758: PUSH2 0x0300
0000175b: MSTORE
0000175c: PUSH1 0x00
0000175e: PUSH1 0x02
00001760: SWAP1
00001761: JUMPDEST
00001762: DUP1
00001763: PUSH2 0x0320
00001766: MSTORE
00001767: PUSH2 0x0320
0000176a: MLOAD
0000176b: PUSH1 0x01
0000176d: DUP2
0000176e: GT
0000176f: PUSH2 0x4490
00001772: JUMPI
00001773: PUSH1 0x05
00001775: SHL
00001776: PUSH1 0x04
00001778: ADD
00001779: CALLDATALOAD
0000177a: PUSH2 0x0340
0000177d: MSTORE
0000177e: PUSH2 0x0280
00001781: MLOAD
00001782: PUSH2 0x17b4
00001785: JUMPI
00001786: PUSH2 0x0320
00001789: MLOAD
0000178a: PUSH1 0x01
0000178c: DUP2
0000178d: GT
0000178e: PUSH2 0x4490
00001791: JUMPI
00001792: PUSH1 0x05
00001794: SHL
00001795: PUSH2 0x02c0
00001798: ADD
00001799: DUP1
0000179a: MLOAD
0000179b: PUSH2 0x0340
0000179e: MLOAD
0000179f: DUP1
000017a0: DUP3
000017a1: SUB
000017a2: DUP3
000017a3: DUP2
000017a4: GT
000017a5: PUSH2 0x4490
000017a8: JUMPI
000017a9: SWAP1
000017aa: POP
000017ab: SWAP1
000017ac: POP
000017ad: DUP2
000017ae: MSTORE
000017af: POP
000017b0: PUSH2 0x17df
000017b3: JUMP
000017b4: JUMPDEST
000017b5: PUSH2 0x0320
000017b8: MLOAD
000017b9: PUSH1 0x01
000017bb: DUP2
000017bc: GT
000017bd: PUSH2 0x4490
000017c0: JUMPI
000017c1: PUSH1 0x05
000017c3: SHL
000017c4: PUSH2 0x02c0
000017c7: ADD
000017c8: DUP1
000017c9: MLOAD
000017ca: PUSH2 0x0340
000017cd: MLOAD
000017ce: DUP1
000017cf: DUP3
000017d0: ADD
000017d1: DUP3
000017d2: DUP2
000017d3: LT
000017d4: PUSH2 0x4490
000017d7: JUMPI
000017d8: SWAP1
000017d9: POP
000017da: SWAP1
000017db: POP
000017dc: DUP2
000017dd: MSTORE
000017de: POP
000017df: JUMPDEST
000017e0: PUSH1 0x01
000017e2: ADD
000017e3: DUP2
000017e4: DUP2
000017e5: XOR
000017e6: PUSH2 0x1761
000017e9: JUMPI
000017ea: POP
000017eb: POP
000017ec: PUSH1 0x0d
000017ee: SLOAD
000017ef: PUSH2 0x0160
000017f2: MSTORE
000017f3: PUSH1 0x0e
000017f5: SLOAD
000017f6: PUSH2 0x0180
000017f9: MSTORE
000017fa: PUSH2 0x02c0
000017fd: MLOAD
000017fe: PUSH2 0x01a0
00001801: MSTORE
00001802: PUSH2 0x02e0
00001805: MLOAD
00001806: PUSH2 0x01c0
00001809: MSTORE
0000180a: PUSH2 0x02a0
0000180d: MLOAD
0000180e: PUSH2 0x01e0
00001811: MSTORE
00001812: PUSH2 0x181c
00001815: PUSH2 0x0340
00001818: PUSH2 0x34ce
0000181b: JUMP
0000181c: JUMPDEST
0000181d: PUSH2 0x0340
00001820: MLOAD
00001821: PUSH2 0x0320
00001824: MSTORE
00001825: PUSH1 0x00
00001827: PUSH2 0x0340
0000182a: MSTORE
0000182b: PUSH2 0x0280
0000182e: MLOAD
0000182f: PUSH2 0x1851
00001832: JUMPI
00001833: PUSH2 0x0300
00001836: MLOAD
00001837: PUSH2 0x0320
0000183a: MLOAD
0000183b: DUP1
0000183c: DUP3
0000183d: SUB
0000183e: DUP3
0000183f: DUP2
00001840: GT
00001841: PUSH2 0x4490
00001844: JUMPI
00001845: SWAP1
00001846: POP
00001847: SWAP1
00001848: POP
00001849: PUSH2 0x0340
0000184c: MSTORE
0000184d: PUSH2 0x186c
00001850: JUMP
00001851: JUMPDEST
00001852: PUSH2 0x0320
00001855: MLOAD
00001856: PUSH2 0x0300
00001859: MLOAD
0000185a: DUP1
0000185b: DUP3
0000185c: SUB
0000185d: DUP3
0000185e: DUP2
0000185f: GT
00001860: PUSH2 0x4490
00001863: JUMPI
00001864: SWAP1
00001865: POP
00001866: SWAP1
00001867: POP
00001868: PUSH2 0x0340
0000186b: MSTORE
0000186c: JUMPDEST
0000186d: PUSH2 0x0340
00001870: MLOAD
00001871: PUSH1 0x16
00001873: SLOAD
00001874: DUP1
00001875: DUP3
00001876: MUL
00001877: DUP2
00001878: ISZERO
00001879: DUP4
0000187a: DUP4
0000187b: DUP4
0000187c: DIV
0000187d: EQ
0000187e: OR
0000187f: ISZERO
00001880: PUSH2 0x4490
00001883: JUMPI
00001884: SWAP1
00001885: POP
00001886: SWAP1
00001887: POP
00001888: PUSH2 0x0300
0000188b: MLOAD
0000188c: DUP1
0000188d: ISZERO
0000188e: PUSH2 0x4490
00001891: JUMPI
00001892: DUP1
00001893: DUP3
00001894: DIV
00001895: SWAP1
00001896: POP
00001897: SWAP1
00001898: POP
00001899: PUSH2 0x0360
0000189c: MSTORE
0000189d: PUSH1 0x20
0000189f: PUSH2 0x0360
000018a2: RETURN
000018a3: JUMPDEST
000018a4: PUSH4 0x5e0d443f
000018a9: DUP2
000018aa: XOR
000018ab: PUSH2 0x1a7e
000018ae: JUMPI
000018af: PUSH1 0x64
000018b1: CALLDATASIZE
000018b2: LT
000018b3: PUSH2 0x4490
000018b6: JUMPI
000018b7: PUSH1 0x04
000018b9: CALLDATALOAD
000018ba: DUP1
000018bb: PUSH1 0x0f
000018bd: SIGNEXTEND
000018be: DUP2
000018bf: XOR
000018c0: PUSH2 0x4490
000018c3: JUMPI
000018c4: PUSH2 0x0380
000018c7: MSTORE
000018c8: PUSH1 0x24
000018ca: CALLDATALOAD
000018cb: DUP1
000018cc: PUSH1 0x0f
000018ce: SIGNEXTEND
000018cf: DUP2
000018d0: XOR
000018d1: PUSH2 0x4490
000018d4: JUMPI
000018d5: PUSH2 0x03a0
000018d8: MSTORE
000018d9: PUSH1 0x0d
000018db: SLOAD
000018dc: PUSH2 0x03c0
000018df: MSTORE
000018e0: PUSH1 0x0e
000018e2: SLOAD
000018e3: PUSH2 0x03e0
000018e6: MSTORE
000018e7: PUSH2 0x03c0
000018ea: MLOAD
000018eb: PUSH1 0x40
000018ed: MSTORE
000018ee: PUSH2 0x03e0
000018f1: MLOAD
000018f2: PUSH1 0x60
000018f4: MSTORE
000018f5: PUSH1 0x04
000018f7: SLOAD
000018f8: PUSH1 0x80
000018fa: MSTORE
000018fb: PUSH1 0x05
000018fd: SLOAD
000018fe: PUSH1 0xa0
00001900: MSTORE
00001901: PUSH2 0x190b
00001904: PUSH2 0x0440
00001907: PUSH2 0x3246
0000190a: JUMP
0000190b: JUMPDEST
0000190c: PUSH2 0x0440
0000190f: DUP1
00001910: MLOAD
00001911: PUSH2 0x0400
00001914: MSTORE
00001915: PUSH1 0x20
00001917: DUP2
00001918: ADD
00001919: MLOAD
0000191a: PUSH2 0x0420
0000191d: MSTORE
0000191e: POP
0000191f: PUSH2 0x0380
00001922: MLOAD
00001923: PUSH1 0x01
00001925: DUP2
00001926: GT
00001927: PUSH2 0x4490
0000192a: JUMPI
0000192b: PUSH1 0x05
0000192d: SHL
0000192e: PUSH2 0x0400
00001931: ADD
00001932: MLOAD
00001933: PUSH1 0x44
00001935: CALLDATALOAD
00001936: PUSH2 0x0380
00001939: MLOAD
0000193a: PUSH1 0x01
0000193c: DUP2
0000193d: GT
0000193e: PUSH2 0x4490
00001941: JUMPI
00001942: PUSH1 0x05
00001944: SHL
00001945: PUSH2 0x03c0
00001948: ADD
00001949: MLOAD
0000194a: DUP1
0000194b: DUP3
0000194c: MUL
0000194d: DUP2
0000194e: ISZERO
0000194f: DUP4
00001950: DUP4
00001951: DUP4
00001952: DIV
00001953: EQ
00001954: OR
00001955: ISZERO
00001956: PUSH2 0x4490
00001959: JUMPI
0000195a: SWAP1
0000195b: POP
0000195c: SWAP1
0000195d: POP
0000195e: PUSH8 0x0de0b6b3a7640000
00001967: DUP2
00001968: DIV
00001969: SWAP1
0000196a: POP
0000196b: DUP1
0000196c: DUP3
0000196d: ADD
0000196e: DUP3
0000196f: DUP2
00001970: LT
00001971: PUSH2 0x4490
00001974: JUMPI
00001975: SWAP1
00001976: POP
00001977: SWAP1
00001978: POP
00001979: PUSH2 0x0440
0000197c: MSTORE
0000197d: PUSH2 0x0380
00001980: MLOAD
00001981: PUSH2 0x0160
00001984: MSTORE
00001985: PUSH2 0x03a0
00001988: MLOAD
00001989: PUSH2 0x0180
0000198c: MSTORE
0000198d: PUSH2 0x0440
00001990: MLOAD
00001991: PUSH2 0x01a0
00001994: MSTORE
00001995: PUSH2 0x0400
00001998: MLOAD
00001999: PUSH2 0x01c0
0000199c: MSTORE
0000199d: PUSH2 0x0420
000019a0: MLOAD
000019a1: PUSH2 0x01e0
000019a4: MSTORE
000019a5: PUSH1 0x40
000019a7: CALLDATASIZE
000019a8: PUSH2 0x0200
000019ab: CALLDATACOPY
000019ac: PUSH2 0x19b6
000019af: PUSH2 0x0480
000019b2: PUSH2 0x3b48
000019b5: JUMP
000019b6: JUMPDEST
000019b7: PUSH2 0x0480
000019ba: MLOAD
000019bb: PUSH2 0x0460
000019be: MSTORE
000019bf: PUSH2 0x03a0
000019c2: MLOAD
000019c3: PUSH1 0x01
000019c5: DUP2
000019c6: GT
000019c7: PUSH2 0x4490
000019ca: JUMPI
000019cb: PUSH1 0x05
000019cd: SHL
000019ce: PUSH2 0x0400
000019d1: ADD
000019d2: MLOAD
000019d3: PUSH2 0x0460
000019d6: MLOAD
000019d7: DUP1
000019d8: DUP3
000019d9: SUB
000019da: DUP3
000019db: DUP2
000019dc: GT
000019dd: PUSH2 0x4490
000019e0: JUMPI
000019e1: SWAP1
000019e2: POP
000019e3: SWAP1
000019e4: POP
000019e5: PUSH1 0x01
000019e7: DUP2
000019e8: SUB
000019e9: DUP2
000019ea: DUP2
000019eb: GT
000019ec: PUSH2 0x4490
000019ef: JUMPI
000019f0: SWAP1
000019f1: POP
000019f2: PUSH2 0x0480
000019f5: MSTORE
000019f6: PUSH1 0x06
000019f8: SLOAD
000019f9: PUSH2 0x0480
000019fc: MLOAD
000019fd: DUP1
000019fe: DUP3
000019ff: MUL
00001a00: DUP2
00001a01: ISZERO
00001a02: DUP4
00001a03: DUP4
00001a04: DUP4
00001a05: DIV
00001a06: EQ
00001a07: OR
00001a08: ISZERO
00001a09: PUSH2 0x4490
00001a0c: JUMPI
00001a0d: SWAP1
00001a0e: POP
00001a0f: SWAP1
00001a10: POP
00001a11: PUSH5 0x02540be400
00001a17: DUP2
00001a18: DIV
00001a19: SWAP1
00001a1a: POP
00001a1b: PUSH2 0x04a0
00001a1e: MSTORE
00001a1f: PUSH2 0x0480
00001a22: MLOAD
00001a23: PUSH2 0x04a0
00001a26: MLOAD
00001a27: DUP1
00001a28: DUP3
00001a29: SUB
00001a2a: DUP3
00001a2b: DUP2
00001a2c: GT
00001a2d: PUSH2 0x4490
00001a30: JUMPI
00001a31: SWAP1
00001a32: POP
00001a33: SWAP1
00001a34: POP
00001a35: PUSH8 0x0de0b6b3a7640000
00001a3e: DUP2
00001a3f: MUL
00001a40: DUP2
00001a41: PUSH8 0x0de0b6b3a7640000
00001a4a: DUP3
00001a4b: DIV
00001a4c: XOR
00001a4d: PUSH2 0x4490
00001a50: JUMPI
00001a51: SWAP1
00001a52: POP
00001a53: PUSH2 0x03a0
00001a56: MLOAD
00001a57: PUSH1 0x01
00001a59: DUP2
00001a5a: GT
00001a5b: PUSH2 0x4490
00001a5e: JUMPI
00001a5f: PUSH1 0x05
00001a61: SHL
00001a62: PUSH2 0x03c0
00001a65: ADD
00001a66: MLOAD
00001a67: DUP1
00001a68: ISZERO
00001a69: PUSH2 0x4490
00001a6c: JUMPI
00001a6d: DUP1
00001a6e: DUP3
00001a6f: DIV
00001a70: SWAP1
00001a71: POP
00001a72: SWAP1
00001a73: POP
00001a74: PUSH2 0x04c0
00001a77: MSTORE
00001a78: PUSH1 0x20
00001a7a: PUSH2 0x04c0
00001a7d: RETURN
00001a7e: JUMPDEST
00001a7f: PUSH4 0x5b36389c
00001a84: DUP2
00001a85: XOR
00001a86: PUSH2 0x1a9a
00001a89: JUMPI
00001a8a: PUSH1 0x64
00001a8c: CALLDATASIZE
00001a8d: LT
00001a8e: PUSH2 0x4490
00001a91: JUMPI
00001a92: CALLER
00001a93: PUSH1 0x40
00001a95: MSTORE
00001a96: PUSH2 0x1abc
00001a99: JUMP
00001a9a: JUMPDEST
00001a9b: PUSH4 0x3eb1719f
00001aa0: DUP2
00001aa1: XOR
00001aa2: PUSH2 0x1d75
00001aa5: JUMPI
00001aa6: PUSH1 0x84
00001aa8: CALLDATASIZE
00001aa9: LT
00001aaa: PUSH2 0x4490
00001aad: JUMPI
00001aae: PUSH1 0x64
00001ab0: CALLDATALOAD
00001ab1: DUP1
00001ab2: PUSH1 0xa0
00001ab4: SHR
00001ab5: PUSH2 0x4490
00001ab8: JUMPI
00001ab9: PUSH1 0x40
00001abb: MSTORE
00001abc: JUMPDEST
00001abd: PUSH1 0x00
00001abf: SLOAD
00001ac0: PUSH1 0x02
00001ac2: EQ
00001ac3: PUSH2 0x4490
00001ac6: JUMPI
00001ac7: PUSH1 0x02
00001ac9: PUSH1 0x00
00001acb: SSTORE
00001acc: PUSH1 0x16
00001ace: SLOAD
00001acf: PUSH1 0x60
00001ad1: MSTORE
00001ad2: PUSH1 0x40
00001ad4: CALLDATASIZE
00001ad5: PUSH1 0x80
00001ad7: CALLDATACOPY
00001ad8: PUSH1 0x00
00001ada: PUSH1 0x02
00001adc: SWAP1
00001add: JUMPDEST
00001ade: DUP1
00001adf: PUSH1 0xc0
00001ae1: MSTORE
00001ae2: PUSH1 0xc0
00001ae4: MLOAD
00001ae5: PUSH1 0x01
00001ae7: DUP2
00001ae8: GT
00001ae9: PUSH2 0x4490
00001aec: JUMPI
00001aed: PUSH1 0x04
00001aef: ADD
00001af0: SLOAD
00001af1: PUSH1 0xe0
00001af3: MSTORE
00001af4: PUSH1 0xe0
00001af6: MLOAD
00001af7: PUSH1 0x04
00001af9: CALLDATALOAD
00001afa: DUP1
00001afb: DUP3
00001afc: MUL
00001afd: DUP2
00001afe: ISZERO
00001aff: DUP4
00001b00: DUP4
00001b01: DUP4
00001b02: DIV
00001b03: EQ
00001b04: OR
00001b05: ISZERO
00001b06: PUSH2 0x4490
00001b09: JUMPI
00001b0a: SWAP1
00001b0b: POP
00001b0c: SWAP1
00001b0d: POP
00001b0e: PUSH1 0x60
00001b10: MLOAD
00001b11: DUP1
00001b12: ISZERO
00001b13: PUSH2 0x4490
00001b16: JUMPI
00001b17: DUP1
00001b18: DUP3
00001b19: DIV
00001b1a: SWAP1
00001b1b: POP
00001b1c: SWAP1
00001b1d: POP
00001b1e: PUSH2 0x0100
00001b21: MSTORE
00001b22: PUSH1 0xc0
00001b24: MLOAD
00001b25: PUSH1 0x01
00001b27: DUP2
00001b28: GT
00001b29: PUSH2 0x4490
00001b2c: JUMPI
00001b2d: PUSH1 0x05
00001b2f: SHL
00001b30: PUSH1 0x24
00001b32: ADD
00001b33: CALLDATALOAD
00001b34: PUSH2 0x0100
00001b37: MLOAD
00001b38: LT
00001b39: ISZERO
00001b3a: PUSH2 0x1bc6
00001b3d: JUMPI
00001b3e: PUSH1 0x30
00001b40: PUSH2 0x0120
00001b43: MSTORE
00001b44: PUSH32 0x5769746864726177616c20726573756c74656420696e20666577657220636f69
00001b65: PUSH2 0x0140
00001b68: MSTORE
00001b69: PUSH32 0x6e73207468616e20657870656374656400000000000000000000000000000000
00001b8a: PUSH2 0x0160
00001b8d: MSTORE
00001b8e: PUSH2 0x0120
00001b91: POP
00001b92: PUSH2 0x0120
00001b95: MLOAD
00001b96: DUP1
00001b97: PUSH2 0x0140
00001b9a: ADD
00001b9b: PUSH1 0x1f
00001b9d: DUP3
00001b9e: PUSH1 0x00
00001ba0: SUB
00001ba1: AND
00001ba2: CALLDATASIZE
00001ba3: DUP3
00001ba4: CALLDATACOPY
00001ba5: POP
00001ba6: POP
00001ba7: PUSH4 0x08c379a0
00001bac: PUSH1 0xe0
00001bae: MSTORE
00001baf: PUSH1 0x20
00001bb1: PUSH2 0x0100
00001bb4: MSTORE
00001bb5: PUSH1 0x1f
00001bb7: NOT
00001bb8: PUSH1 0x1f
00001bba: PUSH2 0x0120
00001bbd: MLOAD
00001bbe: ADD
00001bbf: AND
00001bc0: PUSH1 0x44
00001bc2: ADD
00001bc3: PUSH1 0xfc
00001bc5: REVERT
00001bc6: JUMPDEST
00001bc7: PUSH1 0xe0
00001bc9: MLOAD
00001bca: PUSH2 0x0100
00001bcd: MLOAD
00001bce: DUP1
00001bcf: DUP3
00001bd0: SUB
00001bd1: DUP3
00001bd2: DUP2
00001bd3: GT
00001bd4: PUSH2 0x4490
00001bd7: JUMPI
00001bd8: SWAP1
00001bd9: POP
00001bda: SWAP1
00001bdb: POP
00001bdc: PUSH1 0xc0
00001bde: MLOAD
00001bdf: PUSH1 0x01
00001be1: DUP2
00001be2: GT
00001be3: PUSH2 0x4490
00001be6: JUMPI
00001be7: PUSH1 0x04
00001be9: ADD
00001bea: SSTORE
00001beb: PUSH2 0x0100
00001bee: MLOAD
00001bef: PUSH1 0xc0
00001bf1: MLOAD
00001bf2: PUSH1 0x01
00001bf4: DUP2
00001bf5: GT
00001bf6: PUSH2 0x4490
00001bf9: JUMPI
00001bfa: PUSH1 0x05
00001bfc: SHL
00001bfd: PUSH1 0x80
00001bff: ADD
00001c00: MSTORE
00001c01: PUSH1 0xc0
00001c03: MLOAD
00001c04: PUSH2 0x1c38
00001c07: JUMPI
00001c08: PUSH1 0x00
00001c0a: PUSH2 0x0120
00001c0d: MSTORE
00001c0e: PUSH2 0x0120
00001c11: POP
00001c12: PUSH1 0x00
00001c14: PUSH1 0x00
00001c16: PUSH2 0x0120
00001c19: MLOAD
00001c1a: PUSH2 0x0140
00001c1d: PUSH2 0x0100
00001c20: MLOAD
00001c21: PUSH1 0x40
00001c23: MLOAD
00001c24: GAS
00001c25: CALL
00001c26: PUSH2 0x1cad
00001c29: JUMPI
00001c2a: RETURNDATASIZE
00001c2b: PUSH1 0x00
00001c2d: PUSH1 0x00
00001c2f: RETURNDATACOPY
00001c30: RETURNDATASIZE
00001c31: PUSH1 0x00
00001c33: REVERT
00001c34: PUSH2 0x1cad
00001c37: JUMP
00001c38: JUMPDEST
00001c39: PUSH1 0x03
00001c3b: SLOAD
00001c3c: PUSH4 0xa9059cbb
00001c41: PUSH2 0x0120
00001c44: MSTORE
00001c45: PUSH1 0x40
00001c47: MLOAD
00001c48: PUSH2 0x0140
00001c4b: MSTORE
00001c4c: PUSH2 0x0100
00001c4f: MLOAD
00001c50: PUSH2 0x0160
00001c53: MSTORE
00001c54: PUSH1 0x20
00001c56: PUSH2 0x0120
00001c59: PUSH1 0x44
00001c5b: PUSH2 0x013c
00001c5e: PUSH1 0x00
00001c60: DUP6
00001c61: GAS
00001c62: CALL
00001c63: PUSH2 0x1c71
00001c66: JUMPI
00001c67: RETURNDATASIZE
00001c68: PUSH1 0x00
00001c6a: PUSH1 0x00
00001c6c: RETURNDATACOPY
00001c6d: RETURNDATASIZE
00001c6e: PUSH1 0x00
00001c70: REVERT
00001c71: JUMPDEST
00001c72: RETURNDATASIZE
00001c73: PUSH2 0x1c88
00001c76: JUMPI
00001c77: DUP1
00001c78: EXTCODESIZE
00001c79: ISZERO
00001c7a: PUSH2 0x4490
00001c7d: JUMPI
00001c7e: PUSH1 0x01
00001c80: PUSH2 0x0180
00001c83: MSTORE
00001c84: PUSH2 0x1ca1
00001c87: JUMP
00001c88: JUMPDEST
00001c89: PUSH1 0x20
00001c8b: RETURNDATASIZE
00001c8c: LT
00001c8d: PUSH2 0x4490
00001c90: JUMPI
00001c91: PUSH2 0x0120
00001c94: MLOAD
00001c95: DUP1
00001c96: PUSH1 0x01
00001c98: SHR
00001c99: PUSH2 0x4490
00001c9c: JUMPI
00001c9d: PUSH2 0x0180
00001ca0: MSTORE
00001ca1: JUMPDEST
00001ca2: PUSH2 0x0180
00001ca5: SWAP1
00001ca6: POP
00001ca7: MLOAD
00001ca8: ISZERO
00001ca9: PUSH2 0x4490
00001cac: JUMPI
00001cad: JUMPDEST
00001cae: PUSH1 0x01
00001cb0: ADD
00001cb1: DUP2
00001cb2: DUP2
00001cb3: XOR
00001cb4: PUSH2 0x1add
00001cb7: JUMPI
00001cb8: POP
00001cb9: POP
00001cba: PUSH1 0x60
00001cbc: MLOAD
00001cbd: PUSH1 0x04
00001cbf: CALLDATALOAD
00001cc0: DUP1
00001cc1: DUP3
00001cc2: SUB
00001cc3: DUP3
00001cc4: DUP2
00001cc5: GT
00001cc6: PUSH2 0x4490
00001cc9: JUMPI
00001cca: SWAP1
00001ccb: POP
00001ccc: SWAP1
00001ccd: POP
00001cce: PUSH1 0x60
00001cd0: MSTORE
00001cd1: PUSH1 0x14
00001cd3: CALLER
00001cd4: PUSH1 0x20
00001cd6: MSTORE
00001cd7: PUSH1 0x00
00001cd9: MSTORE
00001cda: PUSH1 0x40
00001cdc: PUSH1 0x00
00001cde: KECCAK256
00001cdf: DUP1
00001ce0: SLOAD
00001ce1: PUSH1 0x04
00001ce3: CALLDATALOAD
00001ce4: DUP1
00001ce5: DUP3
00001ce6: SUB
00001ce7: DUP3
00001ce8: DUP2
00001ce9: GT
00001cea: PUSH2 0x4490
00001ced: JUMPI
00001cee: SWAP1
00001cef: POP
00001cf0: SWAP1
00001cf1: POP
00001cf2: DUP2
00001cf3: SSTORE
00001cf4: POP
00001cf5: PUSH1 0x60
00001cf7: MLOAD
00001cf8: PUSH1 0x16
00001cfa: SSTORE
00001cfb: PUSH1 0x00
00001cfd: CALLER
00001cfe: PUSH32 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
00001d1f: PUSH1 0x04
00001d21: CALLDATALOAD
00001d22: PUSH1 0xc0
00001d24: MSTORE
00001d25: PUSH1 0x20
00001d27: PUSH1 0xc0
00001d29: LOG3
00001d2a: CALLER
00001d2b: PUSH32 0x7c363854ccf79623411f8995b362bce5eddff18c927edc6f5dbbb5e05819a82c
00001d4c: PUSH1 0x80
00001d4e: MLOAD
00001d4f: PUSH1 0xc0
00001d51: MSTORE
00001d52: PUSH1 0xa0
00001d54: MLOAD
00001d55: PUSH1 0xe0
00001d57: MSTORE
00001d58: PUSH1 0x40
00001d5a: CALLDATASIZE
00001d5b: PUSH2 0x0100
00001d5e: CALLDATACOPY
00001d5f: PUSH1 0x60
00001d61: MLOAD
00001d62: PUSH2 0x0140
00001d65: MSTORE
00001d66: PUSH1 0xa0
00001d68: PUSH1 0xc0
00001d6a: LOG2
00001d6b: PUSH1 0x40
00001d6d: PUSH1 0x80
00001d6f: PUSH1 0x03
00001d71: PUSH1 0x00
00001d73: SSTORE
00001d74: RETURN
00001d75: JUMPDEST
00001d76: PUSH4 0xe3103273
00001d7b: DUP2
00001d7c: XOR
00001d7d: PUSH2 0x1d92
00001d80: JUMPI
00001d81: PUSH1 0x64
00001d83: CALLDATASIZE
00001d84: LT
00001d85: PUSH2 0x4490
00001d88: JUMPI
00001d89: CALLER
00001d8a: PUSH2 0x0320
00001d8d: MSTORE
00001d8e: PUSH2 0x1db5
00001d91: JUMP
00001d92: JUMPDEST
00001d93: PUSH4 0x52d2cfdd
00001d98: DUP2
00001d99: XOR
00001d9a: PUSH2 0x235b
00001d9d: JUMPI
00001d9e: PUSH1 0x84
00001da0: CALLDATASIZE
00001da1: LT
00001da2: PUSH2 0x4490
00001da5: JUMPI
00001da6: PUSH1 0x64
00001da8: CALLDATALOAD
00001da9: DUP1
00001daa: PUSH1 0xa0
00001dac: SHR
00001dad: PUSH2 0x4490
00001db0: JUMPI
00001db1: PUSH2 0x0320
00001db4: MSTORE
00001db5: JUMPDEST
00001db6: PUSH1 0x00
00001db8: SLOAD
00001db9: PUSH1 0x02
00001dbb: EQ
00001dbc: PUSH2 0x4490
00001dbf: JUMPI
00001dc0: PUSH1 0x02
00001dc2: PUSH1 0x00
00001dc4: SSTORE
00001dc5: PUSH2 0x1dcf
00001dc8: PUSH2 0x0360
00001dcb: PUSH2 0x3121
00001dce: JUMP
00001dcf: JUMPDEST
00001dd0: PUSH2 0x0360
00001dd3: MLOAD
00001dd4: PUSH2 0x0340
00001dd7: MSTORE
00001dd8: PUSH1 0x0d
00001dda: SLOAD
00001ddb: PUSH2 0x0360
00001dde: MSTORE
00001ddf: PUSH1 0x0e
00001de1: SLOAD
00001de2: PUSH2 0x0380
00001de5: MSTORE
00001de6: PUSH1 0x04
00001de8: SLOAD
00001de9: PUSH2 0x03a0
00001dec: MSTORE
00001ded: PUSH1 0x05
00001def: SLOAD
00001df0: PUSH2 0x03c0
00001df3: MSTORE
00001df4: PUSH2 0x0360
00001df7: MLOAD
00001df8: PUSH2 0x0160
00001dfb: MSTORE
00001dfc: PUSH2 0x0380
00001dff: MLOAD
00001e00: PUSH2 0x0180
00001e03: MSTORE
00001e04: PUSH2 0x03a0
00001e07: MLOAD
00001e08: PUSH2 0x01a0
00001e0b: MSTORE
00001e0c: PUSH2 0x03c0
00001e0f: MLOAD
00001e10: PUSH2 0x01c0
00001e13: MSTORE
00001e14: PUSH2 0x0340
00001e17: MLOAD
00001e18: PUSH2 0x01e0
00001e1b: MSTORE
00001e1c: PUSH2 0x1e26
00001e1f: PUSH2 0x0400
00001e22: PUSH2 0x34ce
00001e25: JUMP
00001e26: JUMPDEST
00001e27: PUSH2 0x0400
00001e2a: MLOAD
00001e2b: PUSH2 0x03e0
00001e2e: MSTORE
00001e2f: PUSH2 0x03a0
00001e32: MLOAD
00001e33: PUSH2 0x0400
00001e36: MSTORE
00001e37: PUSH2 0x03c0
00001e3a: MLOAD
00001e3b: PUSH2 0x0420
00001e3e: MSTORE
00001e3f: PUSH1 0x00
00001e41: PUSH1 0x02
00001e43: SWAP1
00001e44: JUMPDEST
00001e45: DUP1
00001e46: PUSH2 0x0440
00001e49: MSTORE
00001e4a: PUSH2 0x0440
00001e4d: MLOAD
00001e4e: PUSH1 0x01
00001e50: DUP2
00001e51: GT
00001e52: PUSH2 0x4490
00001e55: JUMPI
00001e56: PUSH1 0x05
00001e58: SHL
00001e59: PUSH2 0x0400
00001e5c: ADD
00001e5d: DUP1
00001e5e: MLOAD
00001e5f: PUSH2 0x0440
00001e62: MLOAD
00001e63: PUSH1 0x01
00001e65: DUP2
00001e66: GT
00001e67: PUSH2 0x4490
00001e6a: JUMPI
00001e6b: PUSH1 0x05
00001e6d: SHL
00001e6e: PUSH1 0x04
00001e70: ADD
00001e71: CALLDATALOAD
00001e72: DUP1
00001e73: DUP3
00001e74: SUB
00001e75: DUP3
00001e76: DUP2
00001e77: GT
00001e78: PUSH2 0x4490
00001e7b: JUMPI
00001e7c: SWAP1
00001e7d: POP
00001e7e: SWAP1
00001e7f: POP
00001e80: DUP2
00001e81: MSTORE
00001e82: POP
00001e83: PUSH1 0x01
00001e85: ADD
00001e86: DUP2
00001e87: DUP2
00001e88: XOR
00001e89: PUSH2 0x1e44
00001e8c: JUMPI
00001e8d: POP
00001e8e: POP
00001e8f: PUSH2 0x0360
00001e92: MLOAD
00001e93: PUSH2 0x0160
00001e96: MSTORE
00001e97: PUSH2 0x0380
00001e9a: MLOAD
00001e9b: PUSH2 0x0180
00001e9e: MSTORE
00001e9f: PUSH2 0x0400
00001ea2: MLOAD
00001ea3: PUSH2 0x01a0
00001ea6: MSTORE
00001ea7: PUSH2 0x0420
00001eaa: MLOAD
00001eab: PUSH2 0x01c0
00001eae: MSTORE
00001eaf: PUSH2 0x0340
00001eb2: MLOAD
00001eb3: PUSH2 0x01e0
00001eb6: MSTORE
00001eb7: PUSH2 0x1ec1
00001eba: PUSH2 0x0460
00001ebd: PUSH2 0x34ce
00001ec0: JUMP
00001ec1: JUMPDEST
00001ec2: PUSH2 0x0460
00001ec5: MLOAD
00001ec6: PUSH2 0x0440
00001ec9: MSTORE
00001eca: PUSH1 0x40
00001ecc: CALLDATASIZE
00001ecd: PUSH2 0x0460
00001ed0: CALLDATACOPY
00001ed1: PUSH1 0x06
00001ed3: SLOAD
00001ed4: DUP1
00001ed5: PUSH1 0x01
00001ed7: SHL
00001ed8: DUP2
00001ed9: DUP2
00001eda: PUSH1 0x01
00001edc: SHR
00001edd: XOR
00001ede: PUSH2 0x4490
00001ee1: JUMPI
00001ee2: SWAP1
00001ee3: POP
00001ee4: DUP1
00001ee5: PUSH1 0x02
00001ee7: SHR
00001ee8: SWAP1
00001ee9: POP
00001eea: PUSH2 0x04a0
00001eed: MSTORE
00001eee: PUSH1 0x00
00001ef0: PUSH1 0x02
00001ef2: SWAP1
00001ef3: JUMPDEST
00001ef4: DUP1
00001ef5: PUSH2 0x04c0
00001ef8: MSTORE
00001ef9: PUSH2 0x0440
00001efc: MLOAD
00001efd: PUSH2 0x04c0
00001f00: MLOAD
00001f01: PUSH1 0x01
00001f03: DUP2
00001f04: GT
00001f05: PUSH2 0x4490
00001f08: JUMPI
00001f09: PUSH1 0x05
00001f0b: SHL
00001f0c: PUSH2 0x03a0
00001f0f: ADD
00001f10: MLOAD
00001f11: DUP1
00001f12: DUP3
00001f13: MUL
00001f14: DUP2
00001f15: ISZERO
00001f16: DUP4
00001f17: DUP4
00001f18: DUP4
00001f19: DIV
00001f1a: EQ
00001f1b: OR
00001f1c: ISZERO
00001f1d: PUSH2 0x4490
00001f20: JUMPI
00001f21: SWAP1
00001f22: POP
00001f23: SWAP1
00001f24: POP
00001f25: PUSH2 0x03e0
00001f28: MLOAD
00001f29: DUP1
00001f2a: ISZERO
00001f2b: PUSH2 0x4490
00001f2e: JUMPI
00001f2f: DUP1
00001f30: DUP3
00001f31: DIV
00001f32: SWAP1
00001f33: POP
00001f34: SWAP1
00001f35: POP
00001f36: PUSH2 0x04e0
00001f39: MSTORE
00001f3a: PUSH1 0x00
00001f3c: PUSH2 0x0500
00001f3f: MSTORE
00001f40: PUSH2 0x04c0
00001f43: MLOAD
00001f44: PUSH1 0x01
00001f46: DUP2
00001f47: GT
00001f48: PUSH2 0x4490
00001f4b: JUMPI
00001f4c: PUSH1 0x05
00001f4e: SHL
00001f4f: PUSH2 0x0400
00001f52: ADD
00001f53: MLOAD
00001f54: PUSH2 0x0520
00001f57: MSTORE
00001f58: PUSH2 0x0520
00001f5b: MLOAD
00001f5c: PUSH2 0x04e0
00001f5f: MLOAD
00001f60: GT
00001f61: PUSH2 0x1f83
00001f64: JUMPI
00001f65: PUSH2 0x0520
00001f68: MLOAD
00001f69: PUSH2 0x04e0
00001f6c: MLOAD
00001f6d: DUP1
00001f6e: DUP3
00001f6f: SUB
00001f70: DUP3
00001f71: DUP2
00001f72: GT
00001f73: PUSH2 0x4490
00001f76: JUMPI
00001f77: SWAP1
00001f78: POP
00001f79: SWAP1
00001f7a: POP
00001f7b: PUSH2 0x0500
00001f7e: MSTORE
00001f7f: PUSH2 0x1f9e
00001f82: JUMP
00001f83: JUMPDEST
00001f84: PUSH2 0x04e0
00001f87: MLOAD
00001f88: PUSH2 0x0520
00001f8b: MLOAD
00001f8c: DUP1
00001f8d: DUP3
00001f8e: SUB
00001f8f: DUP3
00001f90: DUP2
00001f91: GT
00001f92: PUSH2 0x4490
00001f95: JUMPI
00001f96: SWAP1
00001f97: POP
00001f98: SWAP1
00001f99: POP
00001f9a: PUSH2 0x0500
00001f9d: MSTORE
00001f9e: JUMPDEST
00001f9f: PUSH2 0x04a0
00001fa2: MLOAD
00001fa3: PUSH2 0x0500
00001fa6: MLOAD
00001fa7: DUP1
00001fa8: DUP3
00001fa9: MUL
00001faa: DUP2
00001fab: ISZERO
00001fac: DUP4
00001fad: DUP4
00001fae: DUP4
00001faf: DIV
00001fb0: EQ
00001fb1: OR
00001fb2: ISZERO
00001fb3: PUSH2 0x4490
00001fb6: JUMPI
00001fb7: SWAP1
00001fb8: POP
00001fb9: SWAP1
00001fba: POP
00001fbb: PUSH5 0x02540be400
00001fc1: DUP2
00001fc2: DIV
00001fc3: SWAP1
00001fc4: POP
00001fc5: PUSH2 0x04c0
00001fc8: MLOAD
00001fc9: PUSH1 0x01
00001fcb: DUP2
00001fcc: GT
00001fcd: PUSH2 0x4490
00001fd0: JUMPI
00001fd1: PUSH1 0x05
00001fd3: SHL
00001fd4: PUSH2 0x0460
00001fd7: ADD
00001fd8: MSTORE
00001fd9: PUSH2 0x0520
00001fdc: MLOAD
00001fdd: PUSH2 0x04c0
00001fe0: MLOAD
00001fe1: PUSH1 0x01
00001fe3: DUP2
00001fe4: GT
00001fe5: PUSH2 0x4490
00001fe8: JUMPI
00001fe9: PUSH1 0x05
00001feb: SHL
00001fec: PUSH2 0x0460
00001fef: ADD
00001ff0: MLOAD
00001ff1: PUSH5 0x012a05f200
00001ff7: DUP2
00001ff8: MUL
00001ff9: DUP2
00001ffa: PUSH5 0x012a05f200
00002000: DUP3
00002001: DIV
00002002: XOR
00002003: PUSH2 0x4490
00002006: JUMPI
00002007: SWAP1
00002008: POP
00002009: PUSH5 0x02540be400
0000200f: DUP2
00002010: DIV
00002011: SWAP1
00002012: POP
00002013: DUP1
00002014: DUP3
00002015: SUB
00002016: DUP3
00002017: DUP2
00002018: GT
00002019: PUSH2 0x4490
0000201c: JUMPI
0000201d: SWAP1
0000201e: POP
0000201f: SWAP1
00002020: POP
00002021: PUSH2 0x04c0
00002024: MLOAD
00002025: PUSH1 0x01
00002027: DUP2
00002028: GT
00002029: PUSH2 0x4490
0000202c: JUMPI
0000202d: PUSH1 0x04
0000202f: ADD
00002030: SSTORE
00002031: PUSH2 0x04c0
00002034: MLOAD
00002035: PUSH1 0x01
00002037: DUP2
00002038: GT
00002039: PUSH2 0x4490
0000203c: JUMPI
0000203d: PUSH1 0x05
0000203f: SHL
00002040: PUSH2 0x0400
00002043: ADD
00002044: DUP1
00002045: MLOAD
00002046: PUSH2 0x04c0
00002049: MLOAD
0000204a: PUSH1 0x01
0000204c: DUP2
0000204d: GT
0000204e: PUSH2 0x4490
00002051: JUMPI
00002052: PUSH1 0x05
00002054: SHL
00002055: PUSH2 0x0460
00002058: ADD
00002059: MLOAD
0000205a: DUP1
0000205b: DUP3
0000205c: SUB
0000205d: DUP3
0000205e: DUP2
0000205f: GT
00002060: PUSH2 0x4490
00002063: JUMPI
00002064: SWAP1
00002065: POP
00002066: SWAP1
00002067: POP
00002068: DUP2
00002069: MSTORE
0000206a: POP
0000206b: PUSH1 0x01
0000206d: ADD
0000206e: DUP2
0000206f: DUP2
00002070: XOR
00002071: PUSH2 0x1ef3
00002074: JUMPI
00002075: POP
00002076: POP
00002077: PUSH2 0x0360
0000207a: MLOAD
0000207b: PUSH1 0x40
0000207d: MSTORE
0000207e: PUSH2 0x0380
00002081: MLOAD
00002082: PUSH1 0x60
00002084: MSTORE
00002085: PUSH2 0x0400
00002088: MLOAD
00002089: PUSH1 0x80
0000208b: MSTORE
0000208c: PUSH2 0x0420
0000208f: MLOAD
00002090: PUSH1 0xa0
00002092: MSTORE
00002093: PUSH2 0x209d
00002096: PUSH2 0x04c0
00002099: PUSH2 0x3246
0000209c: JUMP
0000209d: JUMPDEST
0000209e: PUSH2 0x04c0
000020a1: DUP1
000020a2: MLOAD
000020a3: PUSH2 0x0400
000020a6: MSTORE
000020a7: PUSH1 0x20
000020a9: DUP2
000020aa: ADD
000020ab: MLOAD
000020ac: PUSH2 0x0420
000020af: MSTORE
000020b0: POP
000020b1: PUSH2 0x0400
000020b4: MLOAD
000020b5: PUSH1 0x40
000020b7: MSTORE
000020b8: PUSH2 0x0420
000020bb: MLOAD
000020bc: PUSH1 0x60
000020be: MSTORE
000020bf: PUSH2 0x0340
000020c2: MLOAD
000020c3: PUSH1 0x80
000020c5: MSTORE
000020c6: PUSH2 0x20d0
000020c9: PUSH2 0x04e0
000020cc: PUSH2 0x32cd
000020cf: JUMP
000020d0: JUMPDEST
000020d1: PUSH2 0x04e0
000020d4: MLOAD
000020d5: PUSH2 0x04c0
000020d8: MSTORE
000020d9: PUSH2 0x0400
000020dc: MLOAD
000020dd: PUSH2 0x0260
000020e0: MSTORE
000020e1: PUSH2 0x0420
000020e4: MLOAD
000020e5: PUSH2 0x0280
000020e8: MSTORE
000020e9: PUSH2 0x0340
000020ec: MLOAD
000020ed: PUSH2 0x02a0
000020f0: MSTORE
000020f1: PUSH2 0x04c0
000020f4: MLOAD
000020f5: PUSH2 0x02c0
000020f8: MSTORE
000020f9: PUSH2 0x2100
000020fc: PUSH2 0x3b07
000020ff: JUMP
00002100: JUMPDEST
00002101: PUSH1 0x16
00002103: SLOAD
00002104: PUSH2 0x04e0
00002107: MSTORE
00002108: PUSH2 0x03e0
0000210b: MLOAD
0000210c: PUSH2 0x04c0
0000210f: MLOAD
00002110: DUP1
00002111: DUP3
00002112: SUB
00002113: DUP3
00002114: DUP2
00002115: GT
00002116: PUSH2 0x4490
00002119: JUMPI
0000211a: SWAP1
0000211b: POP
0000211c: SWAP1
0000211d: POP
0000211e: PUSH2 0x04e0
00002121: MLOAD
00002122: DUP1
00002123: DUP3
00002124: MUL
00002125: DUP2
00002126: ISZERO
00002127: DUP4
00002128: DUP4
00002129: DUP4
0000212a: DIV
0000212b: EQ
0000212c: OR
0000212d: ISZERO
0000212e: PUSH2 0x4490
00002131: JUMPI
00002132: SWAP1
00002133: POP
00002134: SWAP1
00002135: POP
00002136: PUSH2 0x03e0
00002139: MLOAD
0000213a: DUP1
0000213b: ISZERO
0000213c: PUSH2 0x4490
0000213f: JUMPI
00002140: DUP1
00002141: DUP3
00002142: DIV
00002143: SWAP1
00002144: POP
00002145: SWAP1
00002146: POP
00002147: PUSH1 0x01
00002149: DUP2
0000214a: ADD
0000214b: DUP2
0000214c: DUP2
0000214d: LT
0000214e: PUSH2 0x4490
00002151: JUMPI
00002152: SWAP1
00002153: POP
00002154: PUSH2 0x0500
00002157: MSTORE
00002158: PUSH1 0x02
0000215a: PUSH2 0x0500
0000215d: MLOAD
0000215e: LT
0000215f: PUSH2 0x4490
00002162: JUMPI
00002163: PUSH1 0x44
00002165: CALLDATALOAD
00002166: PUSH2 0x0500
00002169: MLOAD
0000216a: GT
0000216b: ISZERO
0000216c: PUSH2 0x21d5
0000216f: JUMPI
00002170: PUSH1 0x14
00002172: PUSH2 0x0520
00002175: MSTORE
00002176: PUSH32 0x536c697070616765207363726577656420796f75000000000000000000000000
00002197: PUSH2 0x0540
0000219a: MSTORE
0000219b: PUSH2 0x0520
0000219e: POP
0000219f: PUSH2 0x0520
000021a2: MLOAD
000021a3: DUP1
000021a4: PUSH2 0x0540
000021a7: ADD
000021a8: PUSH1 0x1f
000021aa: DUP3
000021ab: PUSH1 0x00
000021ad: SUB
000021ae: AND
000021af: CALLDATASIZE
000021b0: DUP3
000021b1: CALLDATACOPY
000021b2: POP
000021b3: POP
000021b4: PUSH4 0x08c379a0
000021b9: PUSH2 0x04e0
000021bc: MSTORE
000021bd: PUSH1 0x20
000021bf: PUSH2 0x0500
000021c2: MSTORE
000021c3: PUSH1 0x1f
000021c5: NOT
000021c6: PUSH1 0x1f
000021c8: PUSH2 0x0520
000021cb: MLOAD
000021cc: ADD
000021cd: AND
000021ce: PUSH1 0x44
000021d0: ADD
000021d1: PUSH2 0x04fc
000021d4: REVERT
000021d5: JUMPDEST
000021d6: PUSH2 0x04e0
000021d9: MLOAD
000021da: PUSH2 0x0500
000021dd: MLOAD
000021de: DUP1
000021df: DUP3
000021e0: SUB
000021e1: DUP3
000021e2: DUP2
000021e3: GT
000021e4: PUSH2 0x4490
000021e7: JUMPI
000021e8: SWAP1
000021e9: POP
000021ea: SWAP1
000021eb: POP
000021ec: PUSH2 0x04e0
000021ef: MSTORE
000021f0: PUSH2 0x04e0
000021f3: MLOAD
000021f4: PUSH1 0x16
000021f6: SSTORE
000021f7: PUSH1 0x14
000021f9: CALLER
000021fa: PUSH1 0x20
000021fc: MSTORE
000021fd: PUSH1 0x00
000021ff: MSTORE
00002200: PUSH1 0x40
00002202: PUSH1 0x00
00002204: KECCAK256
00002205: DUP1
00002206: SLOAD
00002207: PUSH2 0x0500
0000220a: MLOAD
0000220b: DUP1
0000220c: DUP3
0000220d: SUB
0000220e: DUP3
0000220f: DUP2
00002210: GT
00002211: PUSH2 0x4490
00002214: JUMPI
00002215: SWAP1
00002216: POP
00002217: SWAP1
00002218: POP
00002219: DUP2
0000221a: SSTORE
0000221b: POP
0000221c: PUSH1 0x00
0000221e: CALLER
0000221f: PUSH32 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
00002240: PUSH2 0x0500
00002243: MLOAD
00002244: PUSH2 0x0520
00002247: MSTORE
00002248: PUSH1 0x20
0000224a: PUSH2 0x0520
0000224d: LOG3
0000224e: PUSH1 0x04
00002250: CALLDATALOAD
00002251: ISZERO
00002252: PUSH2 0x2282
00002255: JUMPI
00002256: PUSH1 0x00
00002258: PUSH2 0x0520
0000225b: MSTORE
0000225c: PUSH2 0x0520
0000225f: POP
00002260: PUSH1 0x00
00002262: PUSH1 0x00
00002264: PUSH2 0x0520
00002267: MLOAD
00002268: PUSH2 0x0540
0000226b: PUSH1 0x04
0000226d: CALLDATALOAD
0000226e: PUSH2 0x0320
00002271: MLOAD
00002272: GAS
00002273: CALL
00002274: PUSH2 0x2282
00002277: JUMPI
00002278: RETURNDATASIZE
00002279: PUSH1 0x00
0000227b: PUSH1 0x00
0000227d: RETURNDATACOPY
0000227e: RETURNDATASIZE
0000227f: PUSH1 0x00
00002281: REVERT
00002282: JUMPDEST
00002283: PUSH1 0x24
00002285: CALLDATALOAD
00002286: ISZERO
00002287: PUSH2 0x22ff
0000228a: JUMPI
0000228b: PUSH1 0x03
0000228d: SLOAD
0000228e: PUSH4 0xa9059cbb
00002293: PUSH2 0x0520
00002296: MSTORE
00002297: PUSH2 0x0320
0000229a: MLOAD
0000229b: PUSH2 0x0540
0000229e: MSTORE
0000229f: PUSH1 0x24
000022a1: CALLDATALOAD
000022a2: PUSH2 0x0560
000022a5: MSTORE
000022a6: PUSH1 0x20
000022a8: PUSH2 0x0520
000022ab: PUSH1 0x44
000022ad: PUSH2 0x053c
000022b0: PUSH1 0x00
000022b2: DUP6
000022b3: GAS
000022b4: CALL
000022b5: PUSH2 0x22c3
000022b8: JUMPI
000022b9: RETURNDATASIZE
000022ba: PUSH1 0x00
000022bc: PUSH1 0x00
000022be: RETURNDATACOPY
000022bf: RETURNDATASIZE
000022c0: PUSH1 0x00
000022c2: REVERT
000022c3: JUMPDEST
000022c4: RETURNDATASIZE
000022c5: PUSH2 0x22da
000022c8: JUMPI
000022c9: DUP1
000022ca: EXTCODESIZE
000022cb: ISZERO
000022cc: PUSH2 0x4490
000022cf: JUMPI
000022d0: PUSH1 0x01
000022d2: PUSH2 0x0580
000022d5: MSTORE
000022d6: PUSH2 0x22f3
000022d9: JUMP
000022da: JUMPDEST
000022db: PUSH1 0x20
000022dd: RETURNDATASIZE
000022de: LT
000022df: PUSH2 0x4490
000022e2: JUMPI
000022e3: PUSH2 0x0520
000022e6: MLOAD
000022e7: DUP1
000022e8: PUSH1 0x01
000022ea: SHR
000022eb: PUSH2 0x4490
000022ee: JUMPI
000022ef: PUSH2 0x0580
000022f2: MSTORE
000022f3: JUMPDEST
000022f4: PUSH2 0x0580
000022f7: SWAP1
000022f8: POP
000022f9: MLOAD
000022fa: ISZERO
000022fb: PUSH2 0x4490
000022fe: JUMPI
000022ff: JUMPDEST
00002300: CALLER
00002301: PUSH32 0x2b5508378d7e19e0d5fa338419034731416c4f5b219a10379956f764317fd47e
00002322: PUSH1 0x40
00002324: PUSH1 0x04
00002326: PUSH2 0x0520
00002329: CALLDATACOPY
0000232a: PUSH2 0x0460
0000232d: MLOAD
0000232e: PUSH2 0x0560
00002331: MSTORE
00002332: PUSH2 0x0480
00002335: MLOAD
00002336: PUSH2 0x0580
00002339: MSTORE
0000233a: PUSH2 0x0440
0000233d: MLOAD
0000233e: PUSH2 0x05a0
00002341: MSTORE
00002342: PUSH2 0x04e0
00002345: MLOAD
00002346: PUSH2 0x05c0
00002349: MSTORE
0000234a: PUSH1 0xc0
0000234c: PUSH2 0x0520
0000234f: LOG2
00002350: PUSH1 0x20
00002352: PUSH2 0x0500
00002355: PUSH1 0x03
00002357: PUSH1 0x00
00002359: SSTORE
0000235a: RETURN
0000235b: JUMPDEST
0000235c: PUSH4 0xcc2b27d7
00002361: DUP2
00002362: XOR
00002363: PUSH2 0x23a0
00002366: JUMPI
00002367: PUSH1 0x44
00002369: CALLDATASIZE
0000236a: LT
0000236b: PUSH2 0x4490
0000236e: JUMPI
0000236f: PUSH1 0x24
00002371: CALLDATALOAD
00002372: DUP1
00002373: PUSH1 0x0f
00002375: SIGNEXTEND
00002376: DUP2
00002377: XOR
00002378: PUSH2 0x4490
0000237b: JUMPI
0000237c: PUSH2 0x0420
0000237f: MSTORE
00002380: PUSH1 0x20
00002382: PUSH1 0x04
00002384: CALLDATALOAD
00002385: PUSH2 0x01e0
00002388: MSTORE
00002389: PUSH2 0x0420
0000238c: MLOAD
0000238d: PUSH2 0x0200
00002390: MSTORE
00002391: PUSH2 0x239b
00002394: PUSH2 0x0440
00002397: PUSH2 0x40b8
0000239a: JUMP
0000239b: JUMPDEST
0000239c: PUSH2 0x0440
0000239f: RETURN
000023a0: JUMPDEST
000023a1: PUSH4 0x1a4d01d2
000023a6: DUP2
000023a7: XOR
000023a8: PUSH2 0x23bd
000023ab: JUMPI
000023ac: PUSH1 0x64
000023ae: CALLDATASIZE
000023af: LT
000023b0: PUSH2 0x4490
000023b3: JUMPI
000023b4: CALLER
000023b5: PUSH2 0x0440
000023b8: MSTORE
000023b9: PUSH2 0x23e0
000023bc: JUMP
000023bd: JUMPDEST
000023be: PUSH4 0x081579a5
000023c3: DUP2
000023c4: XOR
000023c5: PUSH2 0x2682
000023c8: JUMPI
000023c9: PUSH1 0x84
000023cb: CALLDATASIZE
000023cc: LT
000023cd: PUSH2 0x4490
000023d0: JUMPI
000023d1: PUSH1 0x64
000023d3: CALLDATALOAD
000023d4: DUP1
000023d5: PUSH1 0xa0
000023d7: SHR
000023d8: PUSH2 0x4490
000023db: JUMPI
000023dc: PUSH2 0x0440
000023df: MSTORE
000023e0: JUMPDEST
000023e1: PUSH1 0x24
000023e3: CALLDATALOAD
000023e4: DUP1
000023e5: PUSH1 0x0f
000023e7: SIGNEXTEND
000023e8: DUP2
000023e9: XOR
000023ea: PUSH2 0x4490
000023ed: JUMPI
000023ee: PUSH2 0x0420
000023f1: MSTORE
000023f2: PUSH1 0x00
000023f4: SLOAD
000023f5: PUSH1 0x02
000023f7: EQ
000023f8: PUSH2 0x4490
000023fb: JUMPI
000023fc: PUSH1 0x02
000023fe: PUSH1 0x00
00002400: SSTORE
00002401: PUSH1 0x04
00002403: CALLDATALOAD
00002404: PUSH2 0x01e0
00002407: MSTORE
00002408: PUSH2 0x0420
0000240b: MLOAD
0000240c: PUSH2 0x0200
0000240f: MSTORE
00002410: PUSH2 0x241a
00002413: PUSH2 0x04c0
00002416: PUSH2 0x40b8
00002419: JUMP
0000241a: JUMPDEST
0000241b: PUSH2 0x04c0
0000241e: DUP1
0000241f: MLOAD
00002420: PUSH2 0x0460
00002423: MSTORE
00002424: PUSH1 0x20
00002426: DUP2
00002427: ADD
00002428: MLOAD
00002429: PUSH2 0x0480
0000242c: MSTORE
0000242d: PUSH1 0x40
0000242f: DUP2
00002430: ADD
00002431: MLOAD
00002432: PUSH2 0x04a0
00002435: MSTORE
00002436: POP
00002437: PUSH1 0x44
00002439: CALLDATALOAD
0000243a: PUSH2 0x0460
0000243d: MLOAD
0000243e: LT
0000243f: ISZERO
00002440: PUSH2 0x24a9
00002443: JUMPI
00002444: PUSH1 0x18
00002446: PUSH2 0x04c0
00002449: MSTORE
0000244a: PUSH32 0x4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000
0000246b: PUSH2 0x04e0
0000246e: MSTORE
0000246f: PUSH2 0x04c0
00002472: POP
00002473: PUSH2 0x04c0
00002476: MLOAD
00002477: DUP1
00002478: PUSH2 0x04e0
0000247b: ADD
0000247c: PUSH1 0x1f
0000247e: DUP3
0000247f: PUSH1 0x00
00002481: SUB
00002482: AND
00002483: CALLDATASIZE
00002484: DUP3
00002485: CALLDATACOPY
00002486: POP
00002487: POP
00002488: PUSH4 0x08c379a0
0000248d: PUSH2 0x0480
00002490: MSTORE
00002491: PUSH1 0x20
00002493: PUSH2 0x04a0
00002496: MSTORE
00002497: PUSH1 0x1f
00002499: NOT
0000249a: PUSH1 0x1f
0000249c: PUSH2 0x04c0
0000249f: MLOAD
000024a0: ADD
000024a1: AND
000024a2: PUSH1 0x44
000024a4: ADD
000024a5: PUSH2 0x049c
000024a8: REVERT
000024a9: JUMPDEST
000024aa: PUSH2 0x0420
000024ad: MLOAD
000024ae: PUSH1 0x01
000024b0: DUP2
000024b1: GT
000024b2: PUSH2 0x4490
000024b5: JUMPI
000024b6: PUSH1 0x04
000024b8: ADD
000024b9: DUP1
000024ba: SLOAD
000024bb: PUSH2 0x0460
000024be: MLOAD
000024bf: PUSH2 0x0480
000024c2: MLOAD
000024c3: PUSH5 0x012a05f200
000024c9: DUP2
000024ca: MUL
000024cb: DUP2
000024cc: PUSH5 0x012a05f200
000024d2: DUP3
000024d3: DIV
000024d4: XOR
000024d5: PUSH2 0x4490
000024d8: JUMPI
000024d9: SWAP1
000024da: POP
000024db: PUSH5 0x02540be400
000024e1: DUP2
000024e2: DIV
000024e3: SWAP1
000024e4: POP
000024e5: DUP1
000024e6: DUP3
000024e7: ADD
000024e8: DUP3
000024e9: DUP2
000024ea: LT
000024eb: PUSH2 0x4490
000024ee: JUMPI
000024ef: SWAP1
000024f0: POP
000024f1: SWAP1
000024f2: POP
000024f3: DUP1
000024f4: DUP3
000024f5: SUB
000024f6: DUP3
000024f7: DUP2
000024f8: GT
000024f9: PUSH2 0x4490
000024fc: JUMPI
000024fd: SWAP1
000024fe: POP
000024ff: SWAP1
00002500: POP
00002501: DUP2
00002502: SSTORE
00002503: POP
00002504: PUSH1 0x16
00002506: SLOAD
00002507: PUSH1 0x04
00002509: CALLDATALOAD
0000250a: DUP1
0000250b: DUP3
0000250c: SUB
0000250d: DUP3
0000250e: DUP2
0000250f: GT
00002510: PUSH2 0x4490
00002513: JUMPI
00002514: SWAP1
00002515: POP
00002516: SWAP1
00002517: POP
00002518: PUSH2 0x04c0
0000251b: MSTORE
0000251c: PUSH2 0x04c0
0000251f: MLOAD
00002520: PUSH1 0x16
00002522: SSTORE
00002523: PUSH1 0x14
00002525: CALLER
00002526: PUSH1 0x20
00002528: MSTORE
00002529: PUSH1 0x00
0000252b: MSTORE
0000252c: PUSH1 0x40
0000252e: PUSH1 0x00
00002530: KECCAK256
00002531: DUP1
00002532: SLOAD
00002533: PUSH1 0x04
00002535: CALLDATALOAD
00002536: DUP1
00002537: DUP3
00002538: SUB
00002539: DUP3
0000253a: DUP2
0000253b: GT
0000253c: PUSH2 0x4490
0000253f: JUMPI
00002540: SWAP1
00002541: POP
00002542: SWAP1
00002543: POP
00002544: DUP2
00002545: SSTORE
00002546: POP
00002547: PUSH1 0x00
00002549: CALLER
0000254a: PUSH32 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
0000256b: PUSH1 0x04
0000256d: CALLDATALOAD
0000256e: PUSH2 0x04e0
00002571: MSTORE
00002572: PUSH1 0x20
00002574: PUSH2 0x04e0
00002577: LOG3
00002578: PUSH2 0x0420
0000257b: MLOAD
0000257c: PUSH2 0x25b1
0000257f: JUMPI
00002580: PUSH1 0x00
00002582: PUSH2 0x04e0
00002585: MSTORE
00002586: PUSH2 0x04e0
00002589: POP
0000258a: PUSH1 0x00
0000258c: PUSH1 0x00
0000258e: PUSH2 0x04e0
00002591: MLOAD
00002592: PUSH2 0x0500
00002595: PUSH2 0x0460
00002598: MLOAD
00002599: PUSH2 0x0440
0000259c: MLOAD
0000259d: GAS
0000259e: CALL
0000259f: PUSH2 0x2627
000025a2: JUMPI
000025a3: RETURNDATASIZE
000025a4: PUSH1 0x00
000025a6: PUSH1 0x00
000025a8: RETURNDATACOPY
000025a9: RETURNDATASIZE
000025aa: PUSH1 0x00
000025ac: REVERT
000025ad: PUSH2 0x2627
000025b0: JUMP
000025b1: JUMPDEST
000025b2: PUSH1 0x03
000025b4: SLOAD
000025b5: PUSH4 0xa9059cbb
000025ba: PUSH2 0x04e0
000025bd: MSTORE
000025be: PUSH2 0x0440
000025c1: MLOAD
000025c2: PUSH2 0x0500
000025c5: MSTORE
000025c6: PUSH2 0x0460
000025c9: MLOAD
000025ca: PUSH2 0x0520
000025cd: MSTORE
000025ce: PUSH1 0x20
000025d0: PUSH2 0x04e0
000025d3: PUSH1 0x44
000025d5: PUSH2 0x04fc
000025d8: PUSH1 0x00
000025da: DUP6
000025db: GAS
000025dc: CALL
000025dd: PUSH2 0x25eb
000025e0: JUMPI
000025e1: RETURNDATASIZE
000025e2: PUSH1 0x00
000025e4: PUSH1 0x00
000025e6: RETURNDATACOPY
000025e7: RETURNDATASIZE
000025e8: PUSH1 0x00
000025ea: REVERT
000025eb: JUMPDEST
000025ec: RETURNDATASIZE
000025ed: PUSH2 0x2602
000025f0: JUMPI
000025f1: DUP1
000025f2: EXTCODESIZE
000025f3: ISZERO
000025f4: PUSH2 0x4490
000025f7: JUMPI
000025f8: PUSH1 0x01
000025fa: PUSH2 0x0540
000025fd: MSTORE
000025fe: PUSH2 0x261b
00002601: JUMP
00002602: JUMPDEST
00002603: PUSH1 0x20
00002605: RETURNDATASIZE
00002606: LT
00002607: PUSH2 0x4490
0000260a: JUMPI
0000260b: PUSH2 0x04e0
0000260e: MLOAD
0000260f: DUP1
00002610: PUSH1 0x01
00002612: SHR
00002613: PUSH2 0x4490
00002616: JUMPI
00002617: PUSH2 0x0540
0000261a: MSTORE
0000261b: JUMPDEST
0000261c: PUSH2 0x0540
0000261f: SWAP1
00002620: POP
00002621: MLOAD
00002622: ISZERO
00002623: PUSH2 0x4490
00002626: JUMPI
00002627: JUMPDEST
00002628: CALLER
00002629: PUSH32 0x5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a0
0000264a: PUSH1 0x04
0000264c: CALLDATALOAD
0000264d: PUSH2 0x04e0
00002650: MSTORE
00002651: PUSH2 0x0460
00002654: MLOAD
00002655: PUSH2 0x0500
00002658: MSTORE
00002659: PUSH2 0x04c0
0000265c: MLOAD
0000265d: PUSH2 0x0520
00002660: MSTORE
00002661: PUSH1 0x60
00002663: PUSH2 0x04e0
00002666: LOG2
00002667: PUSH2 0x04a0
0000266a: MLOAD
0000266b: PUSH2 0x01c0
0000266e: MSTORE
0000266f: PUSH2 0x2676
00002672: PUSH2 0x3ab2
00002675: JUMP
00002676: JUMPDEST
00002677: PUSH1 0x20
00002679: PUSH2 0x0460
0000267c: PUSH1 0x03
0000267e: PUSH1 0x00
00002680: SSTORE
00002681: RETURN
00002682: JUMPDEST
00002683: PUSH4 0x3c157e64
00002688: DUP2
00002689: XOR
0000268a: PUSH2 0x27f1
0000268d: JUMPI
0000268e: PUSH1 0x44
00002690: CALLDATASIZE
00002691: LT
00002692: PUSH2 0x4490
00002695: JUMPI
00002696: PUSH1 0x01
00002698: SLOAD
00002699: PUSH4 0xf851a440
0000269e: PUSH1 0xc0
000026a0: MSTORE
000026a1: PUSH1 0x20
000026a3: PUSH1 0xc0
000026a5: PUSH1 0x04
000026a7: PUSH1 0xdc
000026a9: DUP5
000026aa: GAS
000026ab: STATICCALL
000026ac: PUSH2 0x26ba
000026af: JUMPI
000026b0: RETURNDATASIZE
000026b1: PUSH1 0x00
000026b3: PUSH1 0x00
000026b5: RETURNDATACOPY
000026b6: RETURNDATASIZE
000026b7: PUSH1 0x00
000026b9: REVERT
000026ba: JUMPDEST
000026bb: PUSH1 0x20
000026bd: RETURNDATASIZE
000026be: LT
000026bf: PUSH2 0x4490
000026c2: JUMPI
000026c3: PUSH1 0xc0
000026c5: MLOAD
000026c6: DUP1
000026c7: PUSH1 0xa0
000026c9: SHR
000026ca: PUSH2 0x4490
000026cd: JUMPI
000026ce: PUSH2 0x0100
000026d1: MSTORE
000026d2: PUSH2 0x0100
000026d5: SWAP1
000026d6: POP
000026d7: MLOAD
000026d8: CALLER
000026d9: XOR
000026da: PUSH2 0x4490
000026dd: JUMPI
000026de: PUSH1 0x0b
000026e0: SLOAD
000026e1: PUSH3 0x015180
000026e5: DUP2
000026e6: ADD
000026e7: DUP2
000026e8: DUP2
000026e9: LT
000026ea: PUSH2 0x4490
000026ed: JUMPI
000026ee: SWAP1
000026ef: POP
000026f0: TIMESTAMP
000026f1: LT
000026f2: PUSH2 0x4490
000026f5: JUMPI
000026f6: TIMESTAMP
000026f7: PUSH3 0x015180
000026fb: DUP2
000026fc: ADD
000026fd: DUP2
000026fe: DUP2
000026ff: LT
00002700: PUSH2 0x4490
00002703: JUMPI
00002704: SWAP1
00002705: POP
00002706: PUSH1 0x24
00002708: CALLDATALOAD
00002709: LT
0000270a: PUSH2 0x4490
0000270d: JUMPI
0000270e: PUSH2 0x2717
00002711: PUSH1 0xe0
00002713: PUSH2 0x3121
00002716: JUMP
00002717: JUMPDEST
00002718: PUSH1 0xe0
0000271a: MLOAD
0000271b: PUSH1 0xc0
0000271d: MSTORE
0000271e: PUSH1 0x04
00002720: CALLDATALOAD
00002721: PUSH1 0x64
00002723: DUP2
00002724: MUL
00002725: DUP2
00002726: PUSH1 0x64
00002728: DUP3
00002729: DIV
0000272a: XOR
0000272b: PUSH2 0x4490
0000272e: JUMPI
0000272f: SWAP1
00002730: POP
00002731: PUSH1 0xe0
00002733: MSTORE
00002734: PUSH1 0x04
00002736: CALLDATALOAD
00002737: ISZERO
00002738: PUSH2 0x2749
0000273b: JUMPI
0000273c: PUSH3 0x0f423f
00002740: PUSH1 0x04
00002742: CALLDATALOAD
00002743: GT
00002744: ISZERO
00002745: PUSH2 0x274c
00002748: JUMP
00002749: JUMPDEST
0000274a: PUSH1 0x00
0000274c: JUMPDEST
0000274d: ISZERO
0000274e: PUSH2 0x4490
00002751: JUMPI
00002752: PUSH1 0xc0
00002754: MLOAD
00002755: PUSH1 0xe0
00002757: MLOAD
00002758: LT
00002759: PUSH2 0x277c
0000275c: JUMPI
0000275d: PUSH1 0xc0
0000275f: MLOAD
00002760: PUSH1 0x0a
00002762: DUP2
00002763: MUL
00002764: DUP2
00002765: PUSH1 0x0a
00002767: DUP3
00002768: DIV
00002769: XOR
0000276a: PUSH2 0x4490
0000276d: JUMPI
0000276e: SWAP1
0000276f: POP
00002770: PUSH1 0xe0
00002772: MLOAD
00002773: GT
00002774: PUSH2 0x4490
00002777: JUMPI
00002778: PUSH2 0x2798
0000277b: JUMP
0000277c: JUMPDEST
0000277d: PUSH1 0xc0
0000277f: MLOAD
00002780: PUSH1 0xe0
00002782: MLOAD
00002783: PUSH1 0x0a
00002785: DUP2
00002786: MUL
00002787: DUP2
00002788: PUSH1 0x0a
0000278a: DUP3
0000278b: DIV
0000278c: XOR
0000278d: PUSH2 0x4490
00002790: JUMPI
00002791: SWAP1
00002792: POP
00002793: LT
00002794: PUSH2 0x4490
00002797: JUMPI
00002798: JUMPDEST
00002799: PUSH1 0xc0
0000279b: MLOAD
0000279c: PUSH1 0x09
0000279e: SSTORE
0000279f: PUSH1 0xe0
000027a1: MLOAD
000027a2: PUSH1 0x0a
000027a4: SSTORE
000027a5: TIMESTAMP
000027a6: PUSH1 0x0b
000027a8: SSTORE
000027a9: PUSH1 0x24
000027ab: CALLDATALOAD
000027ac: PUSH1 0x0c
000027ae: SSTORE
000027af: PUSH32 0xa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c254
000027d0: PUSH1 0xc0
000027d2: MLOAD
000027d3: PUSH2 0x0100
000027d6: MSTORE
000027d7: PUSH1 0xe0
000027d9: MLOAD
000027da: PUSH2 0x0120
000027dd: MSTORE
000027de: TIMESTAMP
000027df: PUSH2 0x0140
000027e2: MSTORE
000027e3: PUSH1 0x24
000027e5: CALLDATALOAD
000027e6: PUSH2 0x0160
000027e9: MSTORE
000027ea: PUSH1 0x80
000027ec: PUSH2 0x0100
000027ef: LOG1
000027f0: STOP
000027f1: JUMPDEST
000027f2: PUSH4 0x551a6588
000027f7: DUP2
000027f8: XOR
000027f9: PUSH2 0x28a3
000027fc: JUMPI
000027fd: PUSH1 0x04
000027ff: CALLDATASIZE
00002800: LT
00002801: PUSH2 0x4490
00002804: JUMPI
00002805: PUSH1 0x01
00002807: SLOAD
00002808: PUSH4 0xf851a440
0000280d: PUSH1 0xc0
0000280f: MSTORE
00002810: PUSH1 0x20
00002812: PUSH1 0xc0
00002814: PUSH1 0x04
00002816: PUSH1 0xdc
00002818: DUP5
00002819: GAS
0000281a: STATICCALL
0000281b: PUSH2 0x2829
0000281e: JUMPI
0000281f: RETURNDATASIZE
00002820: PUSH1 0x00
00002822: PUSH1 0x00
00002824: RETURNDATACOPY
00002825: RETURNDATASIZE
00002826: PUSH1 0x00
00002828: REVERT
00002829: JUMPDEST
0000282a: PUSH1 0x20
0000282c: RETURNDATASIZE
0000282d: LT
0000282e: PUSH2 0x4490
00002831: JUMPI
00002832: PUSH1 0xc0
00002834: MLOAD
00002835: DUP1
00002836: PUSH1 0xa0
00002838: SHR
00002839: PUSH2 0x4490
0000283c: JUMPI
0000283d: PUSH2 0x0100
00002840: MSTORE
00002841: PUSH2 0x0100
00002844: SWAP1
00002845: POP
00002846: MLOAD
00002847: CALLER
00002848: XOR
00002849: PUSH2 0x4490
0000284c: JUMPI
0000284d: PUSH2 0x2856
00002850: PUSH1 0xe0
00002852: PUSH2 0x3121
00002855: JUMP
00002856: JUMPDEST
00002857: PUSH1 0xe0
00002859: MLOAD
0000285a: PUSH1 0xc0
0000285c: MSTORE
0000285d: PUSH1 0xc0
0000285f: MLOAD
00002860: PUSH1 0x09
00002862: SSTORE
00002863: PUSH1 0xc0
00002865: MLOAD
00002866: PUSH1 0x0a
00002868: SSTORE
00002869: TIMESTAMP
0000286a: PUSH1 0x0b
0000286c: SSTORE
0000286d: TIMESTAMP
0000286e: PUSH1 0x0c
00002870: SSTORE
00002871: PUSH32 0x46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc201938
00002892: PUSH1 0xc0
00002894: MLOAD
00002895: PUSH1 0xe0
00002897: MSTORE
00002898: TIMESTAMP
00002899: PUSH2 0x0100
0000289c: MSTORE
0000289d: PUSH1 0x40
0000289f: PUSH1 0xe0
000028a1: LOG1
000028a2: STOP
000028a3: JUMPDEST
000028a4: PUSH4 0xe2e7d264
000028a9: DUP2
000028aa: XOR
000028ab: PUSH2 0x2948
000028ae: JUMPI
000028af: PUSH1 0x24
000028b1: CALLDATASIZE
000028b2: LT
000028b3: PUSH2 0x4490
000028b6: JUMPI
000028b7: PUSH1 0x04
000028b9: CALLDATALOAD
000028ba: PUSH2 0x28df
000028bd: JUMPI
000028be: SELFBALANCE
000028bf: PUSH1 0x04
000028c1: SLOAD
000028c2: DUP1
000028c3: DUP3
000028c4: SUB
000028c5: DUP3
000028c6: DUP2
000028c7: GT
000028c8: PUSH2 0x4490
000028cb: JUMPI
000028cc: SWAP1
000028cd: POP
000028ce: SWAP1
000028cf: POP
000028d0: PUSH1 0x40
000028d2: MSTORE
000028d3: PUSH1 0x20
000028d5: PUSH1 0x40
000028d7: PUSH2 0x2946
000028da: JUMP
000028db: PUSH2 0x2946
000028de: JUMP
000028df: JUMPDEST
000028e0: PUSH1 0x04
000028e2: CALLDATALOAD
000028e3: PUSH1 0x01
000028e5: DUP2
000028e6: GT
000028e7: PUSH2 0x4490
000028ea: JUMPI
000028eb: PUSH1 0x02
000028ed: ADD
000028ee: SLOAD
000028ef: PUSH4 0x70a08231
000028f4: PUSH1 0x40
000028f6: MSTORE
000028f7: ADDRESS
000028f8: PUSH1 0x60
000028fa: MSTORE
000028fb: PUSH1 0x20
000028fd: PUSH1 0x40
000028ff: PUSH1 0x24
00002901: PUSH1 0x5c
00002903: DUP5
00002904: GAS
00002905: STATICCALL
00002906: PUSH2 0x2914
00002909: JUMPI
0000290a: RETURNDATASIZE
0000290b: PUSH1 0x00
0000290d: PUSH1 0x00
0000290f: RETURNDATACOPY
00002910: RETURNDATASIZE
00002911: PUSH1 0x00
00002913: REVERT
00002914: JUMPDEST
00002915: PUSH1 0x20
00002917: RETURNDATASIZE
00002918: LT
00002919: PUSH2 0x4490
0000291c: JUMPI
0000291d: PUSH1 0x40
0000291f: SWAP1
00002920: POP
00002921: MLOAD
00002922: PUSH1 0x04
00002924: CALLDATALOAD
00002925: PUSH1 0x01
00002927: DUP2
00002928: GT
00002929: PUSH2 0x4490
0000292c: JUMPI
0000292d: PUSH1 0x04
0000292f: ADD
00002930: SLOAD
00002931: DUP1
00002932: DUP3
00002933: SUB
00002934: DUP3
00002935: DUP2
00002936: GT
00002937: PUSH2 0x4490
0000293a: JUMPI
0000293b: SWAP1
0000293c: POP
0000293d: SWAP1
0000293e: POP
0000293f: PUSH1 0x80
00002941: MSTORE
00002942: PUSH1 0x20
00002944: PUSH1 0x80
00002946: JUMPDEST
00002947: RETURN
00002948: JUMPDEST
00002949: PUSH4 0x30c54085
0000294e: DUP2
0000294f: XOR
00002950: PUSH2 0x2a9e
00002953: JUMPI
00002954: PUSH1 0x04
00002956: CALLDATASIZE
00002957: LT
00002958: PUSH2 0x4490
0000295b: JUMPI
0000295c: PUSH1 0x01
0000295e: SLOAD
0000295f: PUSH4 0x154aa8f5
00002964: PUSH1 0x60
00002966: MSTORE
00002967: ADDRESS
00002968: PUSH1 0x80
0000296a: MSTORE
0000296b: PUSH1 0x20
0000296d: PUSH1 0x60
0000296f: PUSH1 0x24
00002971: PUSH1 0x7c
00002973: DUP5
00002974: GAS
00002975: STATICCALL
00002976: PUSH2 0x2984
00002979: JUMPI
0000297a: RETURNDATASIZE
0000297b: PUSH1 0x00
0000297d: PUSH1 0x00
0000297f: RETURNDATACOPY
00002980: RETURNDATASIZE
00002981: PUSH1 0x00
00002983: REVERT
00002984: JUMPDEST
00002985: PUSH1 0x20
00002987: RETURNDATASIZE
00002988: LT
00002989: PUSH2 0x4490
0000298c: JUMPI
0000298d: PUSH1 0x60
0000298f: MLOAD
00002990: DUP1
00002991: PUSH1 0xa0
00002993: SHR
00002994: PUSH2 0x4490
00002997: JUMPI
00002998: PUSH1 0xa0
0000299a: MSTORE
0000299b: PUSH1 0xa0
0000299d: SWAP1
0000299e: POP
0000299f: MLOAD
000029a0: PUSH1 0x40
000029a2: MSTORE
000029a3: SELFBALANCE
000029a4: PUSH1 0x04
000029a6: SLOAD
000029a7: DUP1
000029a8: DUP3
000029a9: SUB
000029aa: DUP3
000029ab: DUP2
000029ac: GT
000029ad: PUSH2 0x4490
000029b0: JUMPI
000029b1: SWAP1
000029b2: POP
000029b3: SWAP1
000029b4: POP
000029b5: PUSH1 0x60
000029b7: MSTORE
000029b8: PUSH1 0x00
000029ba: PUSH1 0x80
000029bc: MSTORE
000029bd: PUSH1 0x80
000029bf: POP
000029c0: PUSH1 0x00
000029c2: PUSH1 0x00
000029c4: PUSH1 0x80
000029c6: MLOAD
000029c7: PUSH1 0xa0
000029c9: PUSH1 0x60
000029cb: MLOAD
000029cc: PUSH1 0x40
000029ce: MLOAD
000029cf: GAS
000029d0: CALL
000029d1: PUSH2 0x29df
000029d4: JUMPI
000029d5: RETURNDATASIZE
000029d6: PUSH1 0x00
000029d8: PUSH1 0x00
000029da: RETURNDATACOPY
000029db: RETURNDATASIZE
000029dc: PUSH1 0x00
000029de: REVERT
000029df: JUMPDEST
000029e0: PUSH1 0x03
000029e2: SLOAD
000029e3: PUSH1 0x80
000029e5: MSTORE
000029e6: PUSH1 0x80
000029e8: MLOAD
000029e9: PUSH4 0x70a08231
000029ee: PUSH1 0xa0
000029f0: MSTORE
000029f1: ADDRESS
000029f2: PUSH1 0xc0
000029f4: MSTORE
000029f5: PUSH1 0x20
000029f7: PUSH1 0xa0
000029f9: PUSH1 0x24
000029fb: PUSH1 0xbc
000029fd: DUP5
000029fe: GAS
000029ff: STATICCALL
00002a00: PUSH2 0x2a0e
00002a03: JUMPI
00002a04: RETURNDATASIZE
00002a05: PUSH1 0x00
00002a07: PUSH1 0x00
00002a09: RETURNDATACOPY
00002a0a: RETURNDATASIZE
00002a0b: PUSH1 0x00
00002a0d: REVERT
00002a0e: JUMPDEST
00002a0f: PUSH1 0x20
00002a11: RETURNDATASIZE
00002a12: LT
00002a13: PUSH2 0x4490
00002a16: JUMPI
00002a17: PUSH1 0xa0
00002a19: SWAP1
00002a1a: POP
00002a1b: MLOAD
00002a1c: PUSH1 0x05
00002a1e: SLOAD
00002a1f: DUP1
00002a20: DUP3
00002a21: SUB
00002a22: DUP3
00002a23: DUP2
00002a24: GT
00002a25: PUSH2 0x4490
00002a28: JUMPI
00002a29: SWAP1
00002a2a: POP
00002a2b: SWAP1
00002a2c: POP
00002a2d: PUSH1 0x60
00002a2f: MSTORE
00002a30: PUSH1 0x80
00002a32: MLOAD
00002a33: PUSH4 0xa9059cbb
00002a38: PUSH1 0xa0
00002a3a: MSTORE
00002a3b: PUSH1 0x40
00002a3d: MLOAD
00002a3e: PUSH1 0xc0
00002a40: MSTORE
00002a41: PUSH1 0x60
00002a43: MLOAD
00002a44: PUSH1 0xe0
00002a46: MSTORE
00002a47: PUSH1 0x20
00002a49: PUSH1 0xa0
00002a4b: PUSH1 0x44
00002a4d: PUSH1 0xbc
00002a4f: PUSH1 0x00
00002a51: DUP6
00002a52: GAS
00002a53: CALL
00002a54: PUSH2 0x2a62
00002a57: JUMPI
00002a58: RETURNDATASIZE
00002a59: PUSH1 0x00
00002a5b: PUSH1 0x00
00002a5d: RETURNDATACOPY
00002a5e: RETURNDATASIZE
00002a5f: PUSH1 0x00
00002a61: REVERT
00002a62: JUMPDEST
00002a63: RETURNDATASIZE
00002a64: PUSH2 0x2a79
00002a67: JUMPI
00002a68: DUP1
00002a69: EXTCODESIZE
00002a6a: ISZERO
00002a6b: PUSH2 0x4490
00002a6e: JUMPI
00002a6f: PUSH1 0x01
00002a71: PUSH2 0x0100
00002a74: MSTORE
00002a75: PUSH2 0x2a91
00002a78: JUMP
00002a79: JUMPDEST
00002a7a: PUSH1 0x20
00002a7c: RETURNDATASIZE
00002a7d: LT
00002a7e: PUSH2 0x4490
00002a81: JUMPI
00002a82: PUSH1 0xa0
00002a84: MLOAD
00002a85: DUP1
00002a86: PUSH1 0x01
00002a88: SHR
00002a89: PUSH2 0x4490
00002a8c: JUMPI
00002a8d: PUSH2 0x0100
00002a90: MSTORE
00002a91: JUMPDEST
00002a92: PUSH2 0x0100
00002a95: SWAP1
00002a96: POP
00002a97: MLOAD
00002a98: ISZERO
00002a99: PUSH2 0x4490
00002a9c: JUMPI
00002a9d: STOP
00002a9e: JUMPDEST
00002a9f: PUSH4 0xa48eac9d
00002aa4: DUP2
00002aa5: XOR
00002aa6: PUSH2 0x2b53
00002aa9: JUMPI
00002aaa: PUSH1 0x24
00002aac: CALLDATASIZE
00002aad: LT
00002aae: PUSH2 0x4490
00002ab1: JUMPI
00002ab2: PUSH1 0x01
00002ab4: SLOAD
00002ab5: PUSH4 0xf851a440
00002aba: PUSH1 0x40
00002abc: MSTORE
00002abd: PUSH1 0x20
00002abf: PUSH1 0x40
00002ac1: PUSH1 0x04
00002ac3: PUSH1 0x5c
00002ac5: DUP5
00002ac6: GAS
00002ac7: STATICCALL
00002ac8: PUSH2 0x2ad6
00002acb: JUMPI
00002acc: RETURNDATASIZE
00002acd: PUSH1 0x00
00002acf: PUSH1 0x00
00002ad1: RETURNDATACOPY
00002ad2: RETURNDATASIZE
00002ad3: PUSH1 0x00
00002ad5: REVERT
00002ad6: JUMPDEST
00002ad7: PUSH1 0x20
00002ad9: RETURNDATASIZE
00002ada: LT
00002adb: PUSH2 0x4490
00002ade: JUMPI
00002adf: PUSH1 0x40
00002ae1: MLOAD
00002ae2: DUP1
00002ae3: PUSH1 0xa0
00002ae5: SHR
00002ae6: PUSH2 0x4490
00002ae9: JUMPI
00002aea: PUSH1 0x80
00002aec: MSTORE
00002aed: PUSH1 0x80
00002aef: SWAP1
00002af0: POP
00002af1: MLOAD
00002af2: CALLER
00002af3: XOR
00002af4: PUSH2 0x4490
00002af7: JUMPI
00002af8: PUSH5 0x012a05f200
00002afe: PUSH1 0x04
00002b00: CALLDATALOAD
00002b01: GT
00002b02: PUSH2 0x4490
00002b05: JUMPI
00002b06: PUSH1 0x08
00002b08: SLOAD
00002b09: PUSH2 0x4490
00002b0c: JUMPI
00002b0d: PUSH1 0x04
00002b0f: CALLDATALOAD
00002b10: PUSH1 0x07
00002b12: SSTORE
00002b13: TIMESTAMP
00002b14: PUSH3 0x03f480
00002b18: DUP2
00002b19: ADD
00002b1a: DUP2
00002b1b: DUP2
00002b1c: LT
00002b1d: PUSH2 0x4490
00002b20: JUMPI
00002b21: SWAP1
00002b22: POP
00002b23: PUSH1 0x08
00002b25: SSTORE
00002b26: PUSH32 0x878eb36b3f197f05821c06953d9bc8f14b332a227b1e26df06a4215bbfe5d73f
00002b47: PUSH1 0x04
00002b49: CALLDATALOAD
00002b4a: PUSH1 0x40
00002b4c: MSTORE
00002b4d: PUSH1 0x20
00002b4f: PUSH1 0x40
00002b51: LOG1
00002b52: STOP
00002b53: JUMPDEST
00002b54: PUSH4 0x4f12fe97
00002b59: DUP2
00002b5a: XOR
00002b5b: PUSH2 0x2c0c
00002b5e: JUMPI
00002b5f: PUSH1 0x04
00002b61: CALLDATASIZE
00002b62: LT
00002b63: PUSH2 0x4490
00002b66: JUMPI
00002b67: PUSH1 0x01
00002b69: SLOAD
00002b6a: PUSH4 0xf851a440
00002b6f: PUSH1 0x40
00002b71: MSTORE
00002b72: PUSH1 0x20
00002b74: PUSH1 0x40
00002b76: PUSH1 0x04
00002b78: PUSH1 0x5c
00002b7a: DUP5
00002b7b: GAS
00002b7c: STATICCALL
00002b7d: PUSH2 0x2b8b
00002b80: JUMPI
00002b81: RETURNDATASIZE
00002b82: PUSH1 0x00
00002b84: PUSH1 0x00
00002b86: RETURNDATACOPY
00002b87: RETURNDATASIZE
00002b88: PUSH1 0x00
00002b8a: REVERT
00002b8b: JUMPDEST
00002b8c: PUSH1 0x20
00002b8e: RETURNDATASIZE
00002b8f: LT
00002b90: PUSH2 0x4490
00002b93: JUMPI
00002b94: PUSH1 0x40
00002b96: MLOAD
00002b97: DUP1
00002b98: PUSH1 0xa0
00002b9a: SHR
00002b9b: PUSH2 0x4490
00002b9e: JUMPI
00002b9f: PUSH1 0x80
00002ba1: MSTORE
00002ba2: PUSH1 0x80
00002ba4: SWAP1
00002ba5: POP
00002ba6: MLOAD
00002ba7: CALLER
00002ba8: XOR
00002ba9: PUSH2 0x4490
00002bac: JUMPI
00002bad: PUSH1 0x08
00002baf: SLOAD
00002bb0: PUSH1 0x40
00002bb2: MSTORE
00002bb3: PUSH1 0x40
00002bb5: MLOAD
00002bb6: ISZERO
00002bb7: PUSH2 0x2bc5
00002bba: JUMPI
00002bbb: PUSH1 0x40
00002bbd: MLOAD
00002bbe: TIMESTAMP
00002bbf: LT
00002bc0: ISZERO
00002bc1: PUSH2 0x2bc8
00002bc4: JUMP
00002bc5: JUMPDEST
00002bc6: PUSH1 0x00
00002bc8: JUMPDEST
00002bc9: ISZERO
00002bca: PUSH2 0x4490
00002bcd: JUMPI
00002bce: PUSH1 0x07
00002bd0: SLOAD
00002bd1: PUSH1 0x60
00002bd3: MSTORE
00002bd4: PUSH1 0x60
00002bd6: MLOAD
00002bd7: PUSH1 0x06
00002bd9: SSTORE
00002bda: PUSH1 0x00
00002bdc: PUSH1 0x08
00002bde: SSTORE
00002bdf: PUSH32 0xa8715770654f54603947addf38c689adbd7182e21673b28bcf306a957aaba215
00002c00: PUSH1 0x60
00002c02: MLOAD
00002c03: PUSH1 0x80
00002c05: MSTORE
00002c06: PUSH1 0x20
00002c08: PUSH1 0x80
00002c0a: LOG1
00002c0b: STOP
00002c0c: JUMPDEST
00002c0d: PUSH4 0x7f3e17cb
00002c12: DUP2
00002c13: XOR
00002c14: PUSH2 0x2c75
00002c17: JUMPI
00002c18: PUSH1 0x24
00002c1a: CALLDATASIZE
00002c1b: LT
00002c1c: PUSH2 0x4490
00002c1f: JUMPI
00002c20: PUSH1 0x01
00002c22: SLOAD
00002c23: PUSH4 0xf851a440
00002c28: PUSH1 0x40
00002c2a: MSTORE
00002c2b: PUSH1 0x20
00002c2d: PUSH1 0x40
00002c2f: PUSH1 0x04
00002c31: PUSH1 0x5c
00002c33: DUP5
00002c34: GAS
00002c35: STATICCALL
00002c36: PUSH2 0x2c44
00002c39: JUMPI
00002c3a: RETURNDATASIZE
00002c3b: PUSH1 0x00
00002c3d: PUSH1 0x00
00002c3f: RETURNDATACOPY
00002c40: RETURNDATASIZE
00002c41: PUSH1 0x00
00002c43: REVERT
00002c44: JUMPDEST
00002c45: PUSH1 0x20
00002c47: RETURNDATASIZE
00002c48: LT
00002c49: PUSH2 0x4490
00002c4c: JUMPI
00002c4d: PUSH1 0x40
00002c4f: MLOAD
00002c50: DUP1
00002c51: PUSH1 0xa0
00002c53: SHR
00002c54: PUSH2 0x4490
00002c57: JUMPI
00002c58: PUSH1 0x80
00002c5a: MSTORE
00002c5b: PUSH1 0x80
00002c5d: SWAP1
00002c5e: POP
00002c5f: MLOAD
00002c60: CALLER
00002c61: XOR
00002c62: PUSH2 0x4490
00002c65: JUMPI
00002c66: PUSH1 0x04
00002c68: CALLDATALOAD
00002c69: ISZERO
00002c6a: PUSH2 0x4490
00002c6d: JUMPI
00002c6e: PUSH1 0x04
00002c70: CALLDATALOAD
00002c71: PUSH1 0x1a
00002c73: SSTORE
00002c74: STOP
00002c75: JUMPDEST
00002c76: PUSH4 0x54fd4d50
00002c7b: DUP2
00002c7c: XOR
00002c7d: PUSH2 0x2cfd
00002c80: JUMPI
00002c81: PUSH1 0x04
00002c83: CALLDATASIZE
00002c84: LT
00002c85: PUSH2 0x4490
00002c88: JUMPI
00002c89: PUSH1 0x20
00002c8b: DUP1
00002c8c: PUSH1 0x80
00002c8e: MSTORE
00002c8f: PUSH1 0x06
00002c91: PUSH1 0x40
00002c93: MSTORE
00002c94: PUSH32 0x76362e302e300000000000000000000000000000000000000000000000000000
00002cb5: PUSH1 0x60
00002cb7: MSTORE
00002cb8: PUSH1 0x40
00002cba: DUP2
00002cbb: PUSH1 0x80
00002cbd: ADD
00002cbe: DUP2
00002cbf: MLOAD
00002cc0: DUP1
00002cc1: DUP3
00002cc2: MSTORE
00002cc3: PUSH1 0x20
00002cc5: DUP4
00002cc6: ADD
00002cc7: PUSH1 0x20
00002cc9: DUP4
00002cca: ADD
00002ccb: DUP2
00002ccc: MLOAD
00002ccd: DUP2
00002cce: MSTORE
00002ccf: POP
00002cd0: POP
00002cd1: POP
00002cd2: DUP1
00002cd3: MLOAD
00002cd4: DUP1
00002cd5: PUSH1 0x20
00002cd7: DUP4
00002cd8: ADD
00002cd9: ADD
00002cda: PUSH1 0x1f
00002cdc: DUP3
00002cdd: PUSH1 0x00
00002cdf: SUB
00002ce0: AND
00002ce1: CALLDATASIZE
00002ce2: DUP3
00002ce3: CALLDATACOPY
00002ce4: POP
00002ce5: POP
00002ce6: PUSH1 0x1f
00002ce8: NOT
00002ce9: PUSH1 0x1f
00002ceb: DUP3
00002cec: MLOAD
00002ced: PUSH1 0x20
00002cef: ADD
00002cf0: ADD
00002cf1: AND
00002cf2: SWAP1
00002cf3: POP
00002cf4: SWAP1
00002cf5: POP
00002cf6: DUP2
00002cf7: ADD
00002cf8: SWAP1
00002cf9: POP
00002cfa: PUSH1 0x80
00002cfc: RETURN
00002cfd: JUMPDEST
00002cfe: PUSH4 0xc6610657
00002d03: DUP2
00002d04: XOR
00002d05: PUSH2 0x2d28
00002d08: JUMPI
00002d09: PUSH1 0x24
00002d0b: CALLDATASIZE
00002d0c: LT
00002d0d: PUSH2 0x4490
00002d10: JUMPI
00002d11: PUSH1 0x04
00002d13: CALLDATALOAD
00002d14: PUSH1 0x01
00002d16: DUP2
00002d17: GT
00002d18: PUSH2 0x4490
00002d1b: JUMPI
00002d1c: PUSH1 0x02
00002d1e: ADD
00002d1f: SLOAD
00002d20: PUSH1 0x40
00002d22: MSTORE
00002d23: PUSH1 0x20
00002d25: PUSH1 0x40
00002d27: RETURN
00002d28: JUMPDEST
00002d29: PUSH4 0x4903b0d1
00002d2e: DUP2
00002d2f: XOR
00002d30: PUSH2 0x2d53
00002d33: JUMPI
00002d34: PUSH1 0x24
00002d36: CALLDATASIZE
00002d37: LT
00002d38: PUSH2 0x4490
00002d3b: JUMPI
00002d3c: PUSH1 0x04
00002d3e: CALLDATALOAD
00002d3f: PUSH1 0x01
00002d41: DUP2
00002d42: GT
00002d43: PUSH2 0x4490
00002d46: JUMPI
00002d47: PUSH1 0x04
00002d49: ADD
00002d4a: SLOAD
00002d4b: PUSH1 0x40
00002d4d: MSTORE
00002d4e: PUSH1 0x20
00002d50: PUSH1 0x40
00002d52: RETURN
00002d53: JUMPDEST
00002d54: PUSH4 0xddca3f43
00002d59: DUP2
00002d5a: XOR
00002d5b: PUSH2 0x2d72
00002d5e: JUMPI
00002d5f: PUSH1 0x04
00002d61: CALLDATASIZE
00002d62: LT
00002d63: PUSH2 0x4490
00002d66: JUMPI
00002d67: PUSH1 0x06
00002d69: SLOAD
00002d6a: PUSH1 0x40
00002d6c: MSTORE
00002d6d: PUSH1 0x20
00002d6f: PUSH1 0x40
00002d71: RETURN
00002d72: JUMPDEST
00002d73: PUSH4 0x58680d0b
00002d78: DUP2
00002d79: XOR
00002d7a: PUSH2 0x2d91
00002d7d: JUMPI
00002d7e: PUSH1 0x04
00002d80: CALLDATASIZE
00002d81: LT
00002d82: PUSH2 0x4490
00002d85: JUMPI
00002d86: PUSH1 0x07
00002d88: SLOAD
00002d89: PUSH1 0x40
00002d8b: MSTORE
00002d8c: PUSH1 0x20
00002d8e: PUSH1 0x40
00002d90: RETURN
00002d91: JUMPDEST
00002d92: PUSH4 0xe66f43f5
00002d97: DUP2
00002d98: XOR
00002d99: PUSH2 0x2db0
00002d9c: JUMPI
00002d9d: PUSH1 0x04
00002d9f: CALLDATASIZE
00002da0: LT
00002da1: PUSH2 0x4490
00002da4: JUMPI
00002da5: PUSH1 0x08
00002da7: SLOAD
00002da8: PUSH1 0x40
00002daa: MSTORE
00002dab: PUSH1 0x20
00002dad: PUSH1 0x40
00002daf: RETURN
00002db0: JUMPDEST
00002db1: PUSH4 0x5409491a
00002db6: DUP2
00002db7: XOR
00002db8: PUSH2 0x2dcf
00002dbb: JUMPI
00002dbc: PUSH1 0x04
00002dbe: CALLDATASIZE
00002dbf: LT
00002dc0: PUSH2 0x4490
00002dc3: JUMPI
00002dc4: PUSH1 0x09
00002dc6: SLOAD
00002dc7: PUSH1 0x40
00002dc9: MSTORE
00002dca: PUSH1 0x20
00002dcc: PUSH1 0x40
00002dce: RETURN
00002dcf: JUMPDEST
00002dd0: PUSH4 0xb4b577ad
00002dd5: DUP2
00002dd6: XOR
00002dd7: PUSH2 0x2dee
00002dda: JUMPI
00002ddb: PUSH1 0x04
00002ddd: CALLDATASIZE
00002dde: LT
00002ddf: PUSH2 0x4490
00002de2: JUMPI
00002de3: PUSH1 0x0a
00002de5: SLOAD
00002de6: PUSH1 0x40
00002de8: MSTORE
00002de9: PUSH1 0x20
00002deb: PUSH1 0x40
00002ded: RETURN
00002dee: JUMPDEST
00002def: PUSH4 0x2081066c
00002df4: DUP2
00002df5: XOR
00002df6: PUSH2 0x2e0d
00002df9: JUMPI
00002dfa: PUSH1 0x04
00002dfc: CALLDATASIZE
00002dfd: LT
00002dfe: PUSH2 0x4490
00002e01: JUMPI
00002e02: PUSH1 0x0b
00002e04: SLOAD
00002e05: PUSH1 0x40
00002e07: MSTORE
00002e08: PUSH1 0x20
00002e0a: PUSH1 0x40
00002e0c: RETURN
00002e0d: JUMPDEST
00002e0e: PUSH4 0x14052288
00002e13: DUP2
00002e14: XOR
00002e15: PUSH2 0x2e2c
00002e18: JUMPI
00002e19: PUSH1 0x04
00002e1b: CALLDATASIZE
00002e1c: LT
00002e1d: PUSH2 0x4490
00002e20: JUMPI
00002e21: PUSH1 0x0c
00002e23: SLOAD
00002e24: PUSH1 0x40
00002e26: MSTORE
00002e27: PUSH1 0x20
00002e29: PUSH1 0x40
00002e2b: RETURN
00002e2c: JUMPDEST
00002e2d: PUSH4 0x06fdde03
00002e32: DUP2
00002e33: XOR
00002e34: PUSH2 0x2eb1
00002e37: JUMPI
00002e38: PUSH1 0x04
00002e3a: CALLDATASIZE
00002e3b: LT
00002e3c: PUSH2 0x4490
00002e3f: JUMPI
00002e40: PUSH1 0x20
00002e42: DUP1
00002e43: PUSH1 0x40
00002e45: MSTORE
00002e46: DUP1
00002e47: PUSH1 0x40
00002e49: ADD
00002e4a: PUSH1 0x0f
00002e4c: SLOAD
00002e4d: DUP1
00002e4e: DUP3
00002e4f: MSTORE
00002e50: PUSH1 0x20
00002e52: DUP3
00002e53: ADD
00002e54: PUSH1 0x00
00002e56: DUP3
00002e57: PUSH1 0x1f
00002e59: ADD
00002e5a: PUSH1 0x05
00002e5c: SHR
00002e5d: PUSH1 0x02
00002e5f: DUP2
00002e60: GT
00002e61: PUSH2 0x4490
00002e64: JUMPI
00002e65: DUP1
00002e66: ISZERO
00002e67: PUSH2 0x2e83
00002e6a: JUMPI
00002e6b: SWAP1
00002e6c: JUMPDEST
00002e6d: DUP1
00002e6e: PUSH1 0x10
00002e70: ADD
00002e71: SLOAD
00002e72: DUP2
00002e73: PUSH1 0x05
00002e75: SHL
00002e76: DUP5
00002e77: ADD
00002e78: MSTORE
00002e79: PUSH1 0x01
00002e7b: ADD
00002e7c: DUP2
00002e7d: DUP2
00002e7e: XOR
00002e7f: PUSH2 0x2e6c
00002e82: JUMPI
00002e83: JUMPDEST
00002e84: POP
00002e85: POP
00002e86: POP
00002e87: POP
00002e88: DUP1
00002e89: MLOAD
00002e8a: DUP1
00002e8b: PUSH1 0x20
00002e8d: DUP4
00002e8e: ADD
00002e8f: ADD
00002e90: PUSH1 0x1f
00002e92: DUP3
00002e93: PUSH1 0x00
00002e95: SUB
00002e96: AND
00002e97: CALLDATASIZE
00002e98: DUP3
00002e99: CALLDATACOPY
00002e9a: POP
00002e9b: POP
00002e9c: PUSH1 0x1f
00002e9e: NOT
00002e9f: PUSH1 0x1f
00002ea1: DUP3
00002ea2: MLOAD
00002ea3: PUSH1 0x20
00002ea5: ADD
00002ea6: ADD
00002ea7: AND
00002ea8: SWAP1
00002ea9: POP
00002eaa: DUP2
00002eab: ADD
00002eac: SWAP1
00002ead: POP
00002eae: PUSH1 0x40
00002eb0: RETURN
00002eb1: JUMPDEST
00002eb2: PUSH4 0x95d89b41
00002eb7: DUP2
00002eb8: XOR
00002eb9: PUSH2 0x2f09
00002ebc: JUMPI
00002ebd: PUSH1 0x04
00002ebf: CALLDATASIZE
00002ec0: LT
00002ec1: PUSH2 0x4490
00002ec4: JUMPI
00002ec5: PUSH1 0x20
00002ec7: DUP1
00002ec8: PUSH1 0x40
00002eca: MSTORE
00002ecb: DUP1
00002ecc: PUSH1 0x40
00002ece: ADD
00002ecf: PUSH1 0x12
00002ed1: SLOAD
00002ed2: DUP1
00002ed3: DUP3
00002ed4: MSTORE
00002ed5: PUSH1 0x20
00002ed7: DUP3
00002ed8: ADD
00002ed9: PUSH1 0x13
00002edb: SLOAD
00002edc: DUP2
00002edd: MSTORE
00002ede: POP
00002edf: POP
00002ee0: DUP1
00002ee1: MLOAD
00002ee2: DUP1
00002ee3: PUSH1 0x20
00002ee5: DUP4
00002ee6: ADD
00002ee7: ADD
00002ee8: PUSH1 0x1f
00002eea: DUP3
00002eeb: PUSH1 0x00
00002eed: SUB
00002eee: AND
00002eef: CALLDATASIZE
00002ef0: DUP3
00002ef1: CALLDATACOPY
00002ef2: POP
00002ef3: POP
00002ef4: PUSH1 0x1f
00002ef6: NOT
00002ef7: PUSH1 0x1f
00002ef9: DUP3
00002efa: MLOAD
00002efb: PUSH1 0x20
00002efd: ADD
00002efe: ADD
00002eff: AND
00002f00: SWAP1
00002f01: POP
00002f02: DUP2
00002f03: ADD
00002f04: SWAP1
00002f05: POP
00002f06: PUSH1 0x40
00002f08: RETURN
00002f09: JUMPDEST
00002f0a: PUSH4 0x70a08231
00002f0f: DUP2
00002f10: XOR
00002f11: PUSH2 0x2f44
00002f14: JUMPI
00002f15: PUSH1 0x24
00002f17: CALLDATASIZE
00002f18: LT
00002f19: PUSH2 0x4490
00002f1c: JUMPI
00002f1d: PUSH1 0x04
00002f1f: CALLDATALOAD
00002f20: DUP1
00002f21: PUSH1 0xa0
00002f23: SHR
00002f24: PUSH2 0x4490
00002f27: JUMPI
00002f28: PUSH1 0x40
00002f2a: MSTORE
00002f2b: PUSH1 0x14
00002f2d: PUSH1 0x40
00002f2f: MLOAD
00002f30: PUSH1 0x20
00002f32: MSTORE
00002f33: PUSH1 0x00
00002f35: MSTORE
00002f36: PUSH1 0x40
00002f38: PUSH1 0x00
00002f3a: KECCAK256
00002f3b: SLOAD
00002f3c: PUSH1 0x60
00002f3e: MSTORE
00002f3f: PUSH1 0x20
00002f41: PUSH1 0x60
00002f43: RETURN
00002f44: JUMPDEST
00002f45: PUSH4 0xdd62ed3e
00002f4a: DUP2
00002f4b: XOR
00002f4c: PUSH2 0x2f9e
00002f4f: JUMPI
00002f50: PUSH1 0x44
00002f52: CALLDATASIZE
00002f53: LT
00002f54: PUSH2 0x4490
00002f57: JUMPI
00002f58: PUSH1 0x04
00002f5a: CALLDATALOAD
00002f5b: DUP1
00002f5c: PUSH1 0xa0
00002f5e: SHR
00002f5f: PUSH2 0x4490
00002f62: JUMPI
00002f63: PUSH1 0x40
00002f65: MSTORE
00002f66: PUSH1 0x24
00002f68: CALLDATALOAD
00002f69: DUP1
00002f6a: PUSH1 0xa0
00002f6c: SHR
00002f6d: PUSH2 0x4490
00002f70: JUMPI
00002f71: PUSH1 0x60
00002f73: MSTORE
00002f74: PUSH1 0x15
00002f76: PUSH1 0x40
00002f78: MLOAD
00002f79: PUSH1 0x20
00002f7b: MSTORE
00002f7c: PUSH1 0x00
00002f7e: MSTORE
00002f7f: PUSH1 0x40
00002f81: PUSH1 0x00
00002f83: KECCAK256
00002f84: DUP1
00002f85: PUSH1 0x60
00002f87: MLOAD
00002f88: PUSH1 0x20
00002f8a: MSTORE
00002f8b: PUSH1 0x00
00002f8d: MSTORE
00002f8e: PUSH1 0x40
00002f90: PUSH1 0x00
00002f92: KECCAK256
00002f93: SWAP1
00002f94: POP
00002f95: SLOAD
00002f96: PUSH1 0x80
00002f98: MSTORE
00002f99: PUSH1 0x20
00002f9b: PUSH1 0x80
00002f9d: RETURN
00002f9e: JUMPDEST
00002f9f: PUSH4 0x18160ddd
00002fa4: DUP2
00002fa5: XOR
00002fa6: PUSH2 0x2fbd
00002fa9: JUMPI
00002faa: PUSH1 0x04
00002fac: CALLDATASIZE
00002fad: LT
00002fae: PUSH2 0x4490
00002fb1: JUMPI
00002fb2: PUSH1 0x16
00002fb4: SLOAD
00002fb5: PUSH1 0x40
00002fb7: MSTORE
00002fb8: PUSH1 0x20
00002fba: PUSH1 0x40
00002fbc: RETURN
00002fbd: JUMPDEST
00002fbe: PUSH4 0x3644e515
00002fc3: DUP2
00002fc4: XOR
00002fc5: PUSH2 0x2fdc
00002fc8: JUMPI
00002fc9: PUSH1 0x04
00002fcb: CALLDATASIZE
00002fcc: LT
00002fcd: PUSH2 0x4490
00002fd0: JUMPI
00002fd1: PUSH1 0x17
00002fd3: SLOAD
00002fd4: PUSH1 0x40
00002fd6: MSTORE
00002fd7: PUSH1 0x20
00002fd9: PUSH1 0x40
00002fdb: RETURN
00002fdc: JUMPDEST
00002fdd: PUSH4 0x7ecebe00
00002fe2: DUP2
00002fe3: XOR
00002fe4: PUSH2 0x3017
00002fe7: JUMPI
00002fe8: PUSH1 0x24
00002fea: CALLDATASIZE
00002feb: LT
00002fec: PUSH2 0x4490
00002fef: JUMPI
00002ff0: PUSH1 0x04
00002ff2: CALLDATALOAD
00002ff3: DUP1
00002ff4: PUSH1 0xa0
00002ff6: SHR
00002ff7: PUSH2 0x4490
00002ffa: JUMPI
00002ffb: PUSH1 0x40
00002ffd: MSTORE
00002ffe: PUSH1 0x18
00003000: PUSH1 0x40
00003002: MLOAD
00003003: PUSH1 0x20
00003005: MSTORE
00003006: PUSH1 0x00
00003008: MSTORE
00003009: PUSH1 0x40
0000300b: PUSH1 0x00
0000300d: KECCAK256
0000300e: SLOAD
0000300f: PUSH1 0x60
00003011: MSTORE
00003012: PUSH1 0x20
00003014: PUSH1 0x60
00003016: RETURN
00003017: JUMPDEST
00003018: PUSH4 0x1be913a5
0000301d: DUP2
0000301e: XOR
0000301f: PUSH2 0x3036
00003022: JUMPI
00003023: PUSH1 0x04
00003025: CALLDATASIZE
00003026: LT
00003027: PUSH2 0x4490
0000302a: JUMPI
0000302b: PUSH1 0x1a
0000302d: SLOAD
0000302e: PUSH1 0x40
00003030: MSTORE
00003031: PUSH1 0x20
00003033: PUSH1 0x40
00003035: RETURN
00003036: JUMPDEST
00003037: PUSH4 0x1ddc3b01
0000303c: DUP2
0000303d: XOR
0000303e: PUSH2 0x3055
00003041: JUMPI
00003042: PUSH1 0x04
00003044: CALLDATASIZE
00003045: LT
00003046: PUSH2 0x4490
00003049: JUMPI
0000304a: PUSH1 0x1b
0000304c: SLOAD
0000304d: PUSH1 0x40
0000304f: MSTORE
00003050: PUSH1 0x20
00003052: PUSH1 0x40
00003054: RETURN
00003055: JUMPDEST
00003056: POP
00003057: JUMPDEST
00003058: PUSH1 0x00
0000305a: PUSH1 0x00
0000305c: REVERT
0000305d: JUMPDEST
0000305e: PUSH16 0xffffffffffffffffffffffffffffffff
0000306f: PUSH1 0x40
00003071: MLOAD
00003072: GT
00003073: PUSH2 0x4490
00003076: JUMPI
00003077: PUSH16 0xffffffffffffffffffffffffffffffff
00003088: PUSH1 0x60
0000308a: MLOAD
0000308b: GT
0000308c: PUSH2 0x4490
0000308f: JUMPI
00003090: PUSH1 0x60
00003092: MLOAD
00003093: DUP1
00003094: PUSH1 0x80
00003096: SHL
00003097: SWAP1
00003098: POP
00003099: PUSH1 0x40
0000309b: MLOAD
0000309c: OR
0000309d: DUP2
0000309e: MSTORE
0000309f: POP
000030a0: JUMP
000030a1: JUMPDEST
000030a2: PUSH1 0x14
000030a4: PUSH1 0x40
000030a6: MLOAD
000030a7: PUSH1 0x20
000030a9: MSTORE
000030aa: PUSH1 0x00
000030ac: MSTORE
000030ad: PUSH1 0x40
000030af: PUSH1 0x00
000030b1: KECCAK256
000030b2: DUP1
000030b3: SLOAD
000030b4: PUSH1 0x80
000030b6: MLOAD
000030b7: DUP1
000030b8: DUP3
000030b9: SUB
000030ba: DUP3
000030bb: DUP2
000030bc: GT
000030bd: PUSH2 0x4490
000030c0: JUMPI
000030c1: SWAP1
000030c2: POP
000030c3: SWAP1
000030c4: POP
000030c5: DUP2
000030c6: SSTORE
000030c7: POP
000030c8: PUSH1 0x14
000030ca: PUSH1 0x60
000030cc: MLOAD
000030cd: PUSH1 0x20
000030cf: MSTORE
000030d0: PUSH1 0x00
000030d2: MSTORE
000030d3: PUSH1 0x40
000030d5: PUSH1 0x00
000030d7: KECCAK256
000030d8: DUP1
000030d9: SLOAD
000030da: PUSH1 0x80
000030dc: MLOAD
000030dd: DUP1
000030de: DUP3
000030df: ADD
000030e0: DUP3
000030e1: DUP2
000030e2: LT
000030e3: PUSH2 0x4490
000030e6: JUMPI
000030e7: SWAP1
000030e8: POP
000030e9: SWAP1
000030ea: POP
000030eb: DUP2
000030ec: SSTORE
000030ed: POP
000030ee: PUSH1 0x60
000030f0: MLOAD
000030f1: PUSH1 0x40
000030f3: MLOAD
000030f4: PUSH32 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
00003115: PUSH1 0x80
00003117: MLOAD
00003118: PUSH1 0xa0
0000311a: MSTORE
0000311b: PUSH1 0x20
0000311d: PUSH1 0xa0
0000311f: LOG3
00003120: JUMP
00003121: JUMPDEST
00003122: PUSH1 0x0c
00003124: SLOAD
00003125: PUSH1 0x40
00003127: MSTORE
00003128: PUSH1 0x0a
0000312a: SLOAD
0000312b: PUSH1 0x60
0000312d: MSTORE
0000312e: PUSH1 0x40
00003130: MLOAD
00003131: TIMESTAMP
00003132: LT
00003133: PUSH2 0x3145
00003136: JUMPI
00003137: PUSH1 0x60
00003139: MLOAD
0000313a: DUP2
0000313b: MSTORE
0000313c: POP
0000313d: PUSH2 0x3244
00003140: JUMP
00003141: PUSH2 0x3244
00003144: JUMP
00003145: JUMPDEST
00003146: PUSH1 0x09
00003148: SLOAD
00003149: PUSH1 0x80
0000314b: MSTORE
0000314c: PUSH1 0x0b
0000314e: SLOAD
0000314f: PUSH1 0xa0
00003151: MSTORE
00003152: PUSH1 0x80
00003154: MLOAD
00003155: PUSH1 0x60
00003157: MLOAD
00003158: GT
00003159: PUSH2 0x31d4
0000315c: JUMPI
0000315d: PUSH1 0x80
0000315f: MLOAD
00003160: PUSH1 0x80
00003162: MLOAD
00003163: PUSH1 0x60
00003165: MLOAD
00003166: DUP1
00003167: DUP3
00003168: SUB
00003169: DUP3
0000316a: DUP2
0000316b: GT
0000316c: PUSH2 0x4490
0000316f: JUMPI
00003170: SWAP1
00003171: POP
00003172: SWAP1
00003173: POP
00003174: TIMESTAMP
00003175: PUSH1 0xa0
00003177: MLOAD
00003178: DUP1
00003179: DUP3
0000317a: SUB
0000317b: DUP3
0000317c: DUP2
0000317d: GT
0000317e: PUSH2 0x4490
00003181: JUMPI
00003182: SWAP1
00003183: POP
00003184: SWAP1
00003185: POP
00003186: DUP1
00003187: DUP3
00003188: MUL
00003189: DUP2
0000318a: ISZERO
0000318b: DUP4
0000318c: DUP4
0000318d: DUP4
0000318e: DIV
0000318f: EQ
00003190: OR
00003191: ISZERO
00003192: PUSH2 0x4490
00003195: JUMPI
00003196: SWAP1
00003197: POP
00003198: SWAP1
00003199: POP
0000319a: PUSH1 0x40
0000319c: MLOAD
0000319d: PUSH1 0xa0
0000319f: MLOAD
000031a0: DUP1
000031a1: DUP3
000031a2: SUB
000031a3: DUP3
000031a4: DUP2
000031a5: GT
000031a6: PUSH2 0x4490
000031a9: JUMPI
000031aa: SWAP1
000031ab: POP
000031ac: SWAP1
000031ad: POP
000031ae: DUP1
000031af: ISZERO
000031b0: PUSH2 0x4490
000031b3: JUMPI
000031b4: DUP1
000031b5: DUP3
000031b6: DIV
000031b7: SWAP1
000031b8: POP
000031b9: SWAP1
000031ba: POP
000031bb: DUP1
000031bc: DUP3
000031bd: SUB
000031be: DUP3
000031bf: DUP2
000031c0: GT
000031c1: PUSH2 0x4490
000031c4: JUMPI
000031c5: SWAP1
000031c6: POP
000031c7: SWAP1
000031c8: POP
000031c9: DUP2
000031ca: MSTORE
000031cb: POP
000031cc: PUSH2 0x3244
000031cf: JUMP
000031d0: PUSH2 0x3244
000031d3: JUMP
000031d4: JUMPDEST
000031d5: PUSH1 0x80
000031d7: MLOAD
000031d8: PUSH1 0x60
000031da: MLOAD
000031db: PUSH1 0x80
000031dd: MLOAD
000031de: DUP1
000031df: DUP3
000031e0: SUB
000031e1: DUP3
000031e2: DUP2
000031e3: GT
000031e4: PUSH2 0x4490
000031e7: JUMPI
000031e8: SWAP1
000031e9: POP
000031ea: SWAP1
000031eb: POP
000031ec: TIMESTAMP
000031ed: PUSH1 0xa0
000031ef: MLOAD
000031f0: DUP1
000031f1: DUP3
000031f2: SUB
000031f3: DUP3
000031f4: DUP2
000031f5: GT
000031f6: PUSH2 0x4490
000031f9: JUMPI
000031fa: SWAP1
000031fb: POP
000031fc: SWAP1
000031fd: POP
000031fe: DUP1
000031ff: DUP3
00003200: MUL
00003201: DUP2
00003202: ISZERO
00003203: DUP4
00003204: DUP4
00003205: DUP4
00003206: DIV
00003207: EQ
00003208: OR
00003209: ISZERO
0000320a: PUSH2 0x4490
0000320d: JUMPI
0000320e: SWAP1
0000320f: POP
00003210: SWAP1
00003211: POP
00003212: PUSH1 0x40
00003214: MLOAD
00003215: PUSH1 0xa0
00003217: MLOAD
00003218: DUP1
00003219: DUP3
0000321a: SUB
0000321b: DUP3
0000321c: DUP2
0000321d: GT
0000321e: PUSH2 0x4490
00003221: JUMPI
00003222: SWAP1
00003223: POP
00003224: SWAP1
00003225: POP
00003226: DUP1
00003227: ISZERO
00003228: PUSH2 0x4490
0000322b: JUMPI
0000322c: DUP1
0000322d: DUP3
0000322e: DIV
0000322f: SWAP1
00003230: POP
00003231: SWAP1
00003232: POP
00003233: DUP1
00003234: DUP3
00003235: ADD
00003236: DUP3
00003237: DUP2
00003238: LT
00003239: PUSH2 0x4490
0000323c: JUMPI
0000323d: SWAP1
0000323e: POP
0000323f: SWAP1
00003240: POP
00003241: DUP2
00003242: MSTORE
00003243: POP
00003244: JUMPDEST
00003245: JUMP
00003246: JUMPDEST
00003247: PUSH1 0x40
00003249: CALLDATASIZE
0000324a: PUSH1 0xc0
0000324c: CALLDATACOPY
0000324d: PUSH1 0x00
0000324f: PUSH1 0x02
00003251: SWAP1
00003252: JUMPDEST
00003253: DUP1
00003254: PUSH2 0x0100
00003257: MSTORE
00003258: PUSH2 0x0100
0000325b: MLOAD
0000325c: PUSH1 0x01
0000325e: DUP2
0000325f: GT
00003260: PUSH2 0x4490
00003263: JUMPI
00003264: PUSH1 0x05
00003266: SHL
00003267: PUSH1 0x40
00003269: ADD
0000326a: MLOAD
0000326b: PUSH2 0x0100
0000326e: MLOAD
0000326f: PUSH1 0x01
00003271: DUP2
00003272: GT
00003273: PUSH2 0x4490
00003276: JUMPI
00003277: PUSH1 0x05
00003279: SHL
0000327a: PUSH1 0x80
0000327c: ADD
0000327d: MLOAD
0000327e: DUP1
0000327f: DUP3
00003280: MUL
00003281: DUP2
00003282: ISZERO
00003283: DUP4
00003284: DUP4
00003285: DUP4
00003286: DIV
00003287: EQ
00003288: OR
00003289: ISZERO
0000328a: PUSH2 0x4490
0000328d: JUMPI
0000328e: SWAP1
0000328f: POP
00003290: SWAP1
00003291: POP
00003292: PUSH8 0x0de0b6b3a7640000
0000329b: DUP2
0000329c: DIV
0000329d: SWAP1
0000329e: POP
0000329f: PUSH2 0x0100
000032a2: MLOAD
000032a3: PUSH1 0x01
000032a5: DUP2
000032a6: GT
000032a7: PUSH2 0x4490
000032aa: JUMPI
000032ab: PUSH1 0x05
000032ad: SHL
000032ae: PUSH1 0xc0
000032b0: ADD
000032b1: MSTORE
000032b2: PUSH1 0x01
000032b4: ADD
000032b5: DUP2
000032b6: DUP2
000032b7: XOR
000032b8: PUSH2 0x3252
000032bb: JUMPI
000032bc: POP
000032bd: POP
000032be: PUSH1 0xc0
000032c0: MLOAD
000032c1: DUP2
000032c2: MSTORE
000032c3: PUSH1 0xe0
000032c5: MLOAD
000032c6: PUSH1 0x20
000032c8: DUP3
000032c9: ADD
000032ca: MSTORE
000032cb: POP
000032cc: JUMP
000032cd: JUMPDEST
000032ce: PUSH1 0x00
000032d0: PUSH1 0xa0
000032d2: MSTORE
000032d3: PUSH1 0x00
000032d5: PUSH1 0x02
000032d7: SWAP1
000032d8: JUMPDEST
000032d9: DUP1
000032da: PUSH1 0x05
000032dc: SHL
000032dd: PUSH1 0x40
000032df: ADD
000032e0: MLOAD
000032e1: PUSH1 0xc0
000032e3: MSTORE
000032e4: PUSH1 0xa0
000032e6: MLOAD
000032e7: PUSH1 0xc0
000032e9: MLOAD
000032ea: DUP1
000032eb: DUP3
000032ec: ADD
000032ed: DUP3
000032ee: DUP2
000032ef: LT
000032f0: PUSH2 0x4490
000032f3: JUMPI
000032f4: SWAP1
000032f5: POP
000032f6: SWAP1
000032f7: POP
000032f8: PUSH1 0xa0
000032fa: MSTORE
000032fb: PUSH1 0x01
000032fd: ADD
000032fe: DUP2
000032ff: DUP2
00003300: XOR
00003301: PUSH2 0x32d8
00003304: JUMPI
00003305: POP
00003306: POP
00003307: PUSH1 0xa0
00003309: MLOAD
0000330a: PUSH2 0x3317
0000330d: JUMPI
0000330e: PUSH1 0x00
00003310: DUP2
00003311: MSTORE
00003312: POP
00003313: PUSH2 0x34cc
00003316: JUMP
00003317: JUMPDEST
00003318: PUSH1 0xa0
0000331a: MLOAD
0000331b: PUSH1 0xc0
0000331d: MSTORE
0000331e: PUSH1 0x80
00003320: MLOAD
00003321: DUP1
00003322: PUSH1 0x01
00003324: SHL
00003325: DUP2
00003326: DUP2
00003327: PUSH1 0x01
00003329: SHR
0000332a: XOR
0000332b: PUSH2 0x4490
0000332e: JUMPI
0000332f: SWAP1
00003330: POP
00003331: PUSH1 0xe0
00003333: MSTORE
00003334: PUSH1 0x00
00003336: PUSH1 0xff
00003338: SWAP1
00003339: JUMPDEST
0000333a: DUP1
0000333b: PUSH2 0x0100
0000333e: MSTORE
0000333f: PUSH1 0xc0
00003341: MLOAD
00003342: PUSH1 0xc0
00003344: MLOAD
00003345: DUP1
00003346: DUP3
00003347: MUL
00003348: DUP2
00003349: ISZERO
0000334a: DUP4
0000334b: DUP4
0000334c: DUP4
0000334d: DIV
0000334e: EQ
0000334f: OR
00003350: ISZERO
00003351: PUSH2 0x4490
00003354: JUMPI
00003355: SWAP1
00003356: POP
00003357: SWAP1
00003358: POP
00003359: PUSH1 0x40
0000335b: MLOAD
0000335c: DUP1
0000335d: ISZERO
0000335e: PUSH2 0x4490
00003361: JUMPI
00003362: DUP1
00003363: DUP3
00003364: DIV
00003365: SWAP1
00003366: POP
00003367: SWAP1
00003368: POP
00003369: PUSH1 0xc0
0000336b: MLOAD
0000336c: DUP1
0000336d: DUP3
0000336e: MUL
0000336f: DUP2
00003370: ISZERO
00003371: DUP4
00003372: DUP4
00003373: DUP4
00003374: DIV
00003375: EQ
00003376: OR
00003377: ISZERO
00003378: PUSH2 0x4490
0000337b: JUMPI
0000337c: SWAP1
0000337d: POP
0000337e: SWAP1
0000337f: POP
00003380: PUSH1 0x60
00003382: MLOAD
00003383: DUP1
00003384: ISZERO
00003385: PUSH2 0x4490
00003388: JUMPI
00003389: DUP1
0000338a: DUP3
0000338b: DIV
0000338c: SWAP1
0000338d: POP
0000338e: SWAP1
0000338f: POP
00003390: DUP1
00003391: PUSH1 0x02
00003393: SHR
00003394: SWAP1
00003395: POP
00003396: PUSH2 0x0120
00003399: MSTORE
0000339a: PUSH1 0xc0
0000339c: MLOAD
0000339d: PUSH2 0x0140
000033a0: MSTORE
000033a1: PUSH1 0xe0
000033a3: MLOAD
000033a4: PUSH1 0xa0
000033a6: MLOAD
000033a7: DUP1
000033a8: DUP3
000033a9: MUL
000033aa: DUP2
000033ab: ISZERO
000033ac: DUP4
000033ad: DUP4
000033ae: DUP4
000033af: DIV
000033b0: EQ
000033b1: OR
000033b2: ISZERO
000033b3: PUSH2 0x4490
000033b6: JUMPI
000033b7: SWAP1
000033b8: POP
000033b9: SWAP1
000033ba: POP
000033bb: PUSH1 0x64
000033bd: DUP2
000033be: DIV
000033bf: SWAP1
000033c0: POP
000033c1: PUSH2 0x0120
000033c4: MLOAD
000033c5: DUP1
000033c6: PUSH1 0x01
000033c8: SHL
000033c9: DUP2
000033ca: DUP2
000033cb: PUSH1 0x01
000033cd: SHR
000033ce: XOR
000033cf: PUSH2 0x4490
000033d2: JUMPI
000033d3: SWAP1
000033d4: POP
000033d5: DUP1
000033d6: DUP3
000033d7: ADD
000033d8: DUP3
000033d9: DUP2
000033da: LT
000033db: PUSH2 0x4490
000033de: JUMPI
000033df: SWAP1
000033e0: POP
000033e1: SWAP1
000033e2: POP
000033e3: PUSH1 0xc0
000033e5: MLOAD
000033e6: DUP1
000033e7: DUP3
000033e8: MUL
000033e9: DUP2
000033ea: ISZERO
000033eb: DUP4
000033ec: DUP4
000033ed: DUP4
000033ee: DIV
000033ef: EQ
000033f0: OR
000033f1: ISZERO
000033f2: PUSH2 0x4490
000033f5: JUMPI
000033f6: SWAP1
000033f7: POP
000033f8: SWAP1
000033f9: POP
000033fa: PUSH1 0xe0
000033fc: MLOAD
000033fd: PUSH1 0x64
000033ff: DUP2
00003400: SUB
00003401: DUP2
00003402: DUP2
00003403: GT
00003404: PUSH2 0x4490
00003407: JUMPI
00003408: SWAP1
00003409: POP
0000340a: PUSH1 0xc0
0000340c: MLOAD
0000340d: DUP1
0000340e: DUP3
0000340f: MUL
00003410: DUP2
00003411: ISZERO
00003412: DUP4
00003413: DUP4
00003414: DUP4
00003415: DIV
00003416: EQ
00003417: OR
00003418: ISZERO
00003419: PUSH2 0x4490
0000341c: JUMPI
0000341d: SWAP1
0000341e: POP
0000341f: SWAP1
00003420: POP
00003421: PUSH1 0x64
00003423: DUP2
00003424: DIV
00003425: SWAP1
00003426: POP
00003427: PUSH2 0x0120
0000342a: MLOAD
0000342b: PUSH1 0x03
0000342d: DUP2
0000342e: MUL
0000342f: DUP2
00003430: PUSH1 0x03
00003432: DUP3
00003433: DIV
00003434: XOR
00003435: PUSH2 0x4490
00003438: JUMPI
00003439: SWAP1
0000343a: POP
0000343b: DUP1
0000343c: DUP3
0000343d: ADD
0000343e: DUP3
0000343f: DUP2
00003440: LT
00003441: PUSH2 0x4490
00003444: JUMPI
00003445: SWAP1
00003446: POP
00003447: SWAP1
00003448: POP
00003449: DUP1
0000344a: ISZERO
0000344b: PUSH2 0x4490
0000344e: JUMPI
0000344f: DUP1
00003450: DUP3
00003451: DIV
00003452: SWAP1
00003453: POP
00003454: SWAP1
00003455: POP
00003456: PUSH1 0xc0
00003458: MSTORE
00003459: PUSH2 0x0140
0000345c: MLOAD
0000345d: PUSH1 0xc0
0000345f: MLOAD
00003460: GT
00003461: PUSH2 0x3491
00003464: JUMPI
00003465: PUSH1 0x01
00003467: PUSH2 0x0140
0000346a: MLOAD
0000346b: PUSH1 0xc0
0000346d: MLOAD
0000346e: DUP1
0000346f: DUP3
00003470: SUB
00003471: DUP3
00003472: DUP2
00003473: GT
00003474: PUSH2 0x4490
00003477: JUMPI
00003478: SWAP1
00003479: POP
0000347a: SWAP1
0000347b: POP
0000347c: GT
0000347d: PUSH2 0x34ba
00003480: JUMPI
00003481: PUSH1 0xc0
00003483: MLOAD
00003484: DUP4
00003485: MSTORE
00003486: POP
00003487: POP
00003488: POP
00003489: PUSH2 0x34cc
0000348c: JUMP
0000348d: PUSH2 0x34ba
00003490: JUMP
00003491: JUMPDEST
00003492: PUSH1 0x01
00003494: PUSH1 0xc0
00003496: MLOAD
00003497: PUSH2 0x0140
0000349a: MLOAD
0000349b: DUP1
0000349c: DUP3
0000349d: SUB
0000349e: DUP3
0000349f: DUP2
000034a0: GT
000034a1: PUSH2 0x4490
000034a4: JUMPI
000034a5: SWAP1
000034a6: POP
000034a7: SWAP1
000034a8: POP
000034a9: GT
000034aa: PUSH2 0x34ba
000034ad: JUMPI
000034ae: PUSH1 0xc0
000034b0: MLOAD
000034b1: DUP4
000034b2: MSTORE
000034b3: POP
000034b4: POP
000034b5: POP
000034b6: PUSH2 0x34cc
000034b9: JUMP
000034ba: JUMPDEST
000034bb: PUSH1 0x01
000034bd: ADD
000034be: DUP2
000034bf: DUP2
000034c0: XOR
000034c1: PUSH2 0x3339
000034c4: JUMPI
000034c5: POP
000034c6: POP
000034c7: PUSH1 0x00
000034c9: PUSH1 0x00
000034cb: REVERT
000034cc: JUMPDEST
000034cd: JUMP
000034ce: JUMPDEST
000034cf: PUSH2 0x0160
000034d2: MLOAD
000034d3: PUSH1 0x40
000034d5: MSTORE
000034d6: PUSH2 0x0180
000034d9: MLOAD
000034da: PUSH1 0x60
000034dc: MSTORE
000034dd: PUSH2 0x01a0
000034e0: MLOAD
000034e1: PUSH1 0x80
000034e3: MSTORE
000034e4: PUSH2 0x01c0
000034e7: MLOAD
000034e8: PUSH1 0xa0
000034ea: MSTORE
000034eb: PUSH2 0x34f5
000034ee: PUSH2 0x0240
000034f1: PUSH2 0x3246
000034f4: JUMP
000034f5: JUMPDEST
000034f6: PUSH2 0x0240
000034f9: DUP1
000034fa: MLOAD
000034fb: PUSH2 0x0200
000034fe: MSTORE
000034ff: PUSH1 0x20
00003501: DUP2
00003502: ADD
00003503: MLOAD
00003504: PUSH2 0x0220
00003507: MSTORE
00003508: POP
00003509: PUSH2 0x0200
0000350c: MLOAD
0000350d: PUSH1 0x40
0000350f: MSTORE
00003510: PUSH2 0x0220
00003513: MLOAD
00003514: PUSH1 0x60
00003516: MSTORE
00003517: PUSH2 0x01e0
0000351a: MLOAD
0000351b: PUSH1 0x80
0000351d: MSTORE
0000351e: PUSH2 0x3528
00003521: PUSH2 0x0240
00003524: PUSH2 0x32cd
00003527: JUMP
00003528: JUMPDEST
00003529: PUSH2 0x0240
0000352c: MLOAD
0000352d: DUP2
0000352e: MSTORE
0000352f: POP
00003530: JUMP
00003531: JUMPDEST
00003532: PUSH1 0x80
00003534: MLOAD
00003535: DUP1
00003536: PUSH1 0x01
00003538: SHL
00003539: DUP2
0000353a: DUP2
0000353b: PUSH1 0x01
0000353d: SHR
0000353e: XOR
0000353f: PUSH2 0x4490
00003542: JUMPI
00003543: SWAP1
00003544: POP
00003545: PUSH1 0xc0
00003547: MSTORE
00003548: PUSH1 0xa0
0000354a: MLOAD
0000354b: DUP1
0000354c: PUSH1 0x02
0000354e: SHR
0000354f: SWAP1
00003550: POP
00003551: PUSH1 0xe0
00003553: MSTORE
00003554: PUSH1 0x00
00003556: PUSH1 0x02
00003558: SWAP1
00003559: JUMPDEST
0000355a: DUP1
0000355b: PUSH2 0x0100
0000355e: MSTORE
0000355f: PUSH1 0xe0
00003561: MLOAD
00003562: PUSH1 0xa0
00003564: MLOAD
00003565: DUP1
00003566: DUP3
00003567: MUL
00003568: DUP2
00003569: ISZERO
0000356a: DUP4
0000356b: DUP4
0000356c: DUP4
0000356d: DIV
0000356e: EQ
0000356f: OR
00003570: ISZERO
00003571: PUSH2 0x4490
00003574: JUMPI
00003575: SWAP1
00003576: POP
00003577: SWAP1
00003578: POP
00003579: PUSH2 0x0100
0000357c: MLOAD
0000357d: PUSH1 0x01
0000357f: DUP2
00003580: GT
00003581: PUSH2 0x4490
00003584: JUMPI
00003585: PUSH1 0x05
00003587: SHL
00003588: PUSH1 0x40
0000358a: ADD
0000358b: MLOAD
0000358c: DUP1
0000358d: ISZERO
0000358e: PUSH2 0x4490
00003591: JUMPI
00003592: DUP1
00003593: DUP3
00003594: DIV
00003595: SWAP1
00003596: POP
00003597: SWAP1
00003598: POP
00003599: PUSH1 0xe0
0000359b: MSTORE
0000359c: PUSH1 0x01
0000359e: ADD
0000359f: DUP2
000035a0: DUP2
000035a1: XOR
000035a2: PUSH2 0x3559
000035a5: JUMPI
000035a6: POP
000035a7: POP
000035a8: PUSH1 0xc0
000035aa: MLOAD
000035ab: PUSH1 0x40
000035ad: MLOAD
000035ae: DUP1
000035af: DUP3
000035b0: MUL
000035b1: DUP2
000035b2: ISZERO
000035b3: DUP4
000035b4: DUP4
000035b5: DUP4
000035b6: DIV
000035b7: EQ
000035b8: OR
000035b9: ISZERO
000035ba: PUSH2 0x4490
000035bd: JUMPI
000035be: SWAP1
000035bf: POP
000035c0: SWAP1
000035c1: POP
000035c2: PUSH1 0x64
000035c4: DUP2
000035c5: DIV
000035c6: SWAP1
000035c7: POP
000035c8: PUSH1 0xe0
000035ca: MLOAD
000035cb: PUSH1 0x40
000035cd: MLOAD
000035ce: DUP1
000035cf: DUP3
000035d0: MUL
000035d1: DUP2
000035d2: ISZERO
000035d3: DUP4
000035d4: DUP4
000035d5: DUP4
000035d6: DIV
000035d7: EQ
000035d8: OR
000035d9: ISZERO
000035da: PUSH2 0x4490
000035dd: JUMPI
000035de: SWAP1
000035df: POP
000035e0: SWAP1
000035e1: POP
000035e2: PUSH1 0x60
000035e4: MLOAD
000035e5: DUP1
000035e6: ISZERO
000035e7: PUSH2 0x4490
000035ea: JUMPI
000035eb: DUP1
000035ec: DUP3
000035ed: DIV
000035ee: SWAP1
000035ef: POP
000035f0: SWAP1
000035f1: POP
000035f2: DUP1
000035f3: DUP3
000035f4: ADD
000035f5: DUP3
000035f6: DUP2
000035f7: LT
000035f8: PUSH2 0x4490
000035fb: JUMPI
000035fc: SWAP1
000035fd: POP
000035fe: SWAP1
000035ff: POP
00003600: PUSH8 0x0de0b6b3a7640000
00003609: DUP2
0000360a: MUL
0000360b: DUP2
0000360c: PUSH8 0x0de0b6b3a7640000
00003615: DUP3
00003616: DIV
00003617: XOR
00003618: PUSH2 0x4490
0000361b: JUMPI
0000361c: SWAP1
0000361d: POP
0000361e: PUSH1 0xc0
00003620: MLOAD
00003621: PUSH1 0x40
00003623: MLOAD
00003624: DUP1
00003625: DUP3
00003626: MUL
00003627: DUP2
00003628: ISZERO
00003629: DUP4
0000362a: DUP4
0000362b: DUP4
0000362c: DIV
0000362d: EQ
0000362e: OR
0000362f: ISZERO
00003630: PUSH2 0x4490
00003633: JUMPI
00003634: SWAP1
00003635: POP
00003636: SWAP1
00003637: POP
00003638: PUSH1 0x64
0000363a: DUP2
0000363b: DIV
0000363c: SWAP1
0000363d: POP
0000363e: PUSH1 0xe0
00003640: MLOAD
00003641: DUP1
00003642: DUP3
00003643: ADD
00003644: DUP3
00003645: DUP2
00003646: LT
00003647: PUSH2 0x4490
0000364a: JUMPI
0000364b: SWAP1
0000364c: POP
0000364d: SWAP1
0000364e: POP
0000364f: DUP1
00003650: ISZERO
00003651: PUSH2 0x4490
00003654: JUMPI
00003655: DUP1
00003656: DUP3
00003657: DIV
00003658: SWAP1
00003659: POP
0000365a: SWAP1
0000365b: POP
0000365c: DUP2
0000365d: MSTORE
0000365e: POP
0000365f: JUMP
00003660: JUMPDEST
00003661: PUSH32 0xfffffffffffffffffffffffffffffffffffffffffffffffdb731c958f34d94c1
00003682: PUSH1 0x40
00003684: MLOAD
00003685: SGT
00003686: PUSH2 0x3693
00003689: JUMPI
0000368a: PUSH1 0x00
0000368c: DUP2
0000368d: MSTORE
0000368e: POP
0000368f: PUSH2 0x3962
00003692: JUMP
00003693: JUMPDEST
00003694: PUSH9 0x0755bf798b4a1bf1e5
0000369e: PUSH1 0x40
000036a0: MLOAD
000036a1: SLT
000036a2: PUSH2 0x3702
000036a5: JUMPI
000036a6: PUSH1 0x0c
000036a8: PUSH1 0x60
000036aa: MSTORE
000036ab: PUSH32 0x657870206f766572666c6f770000000000000000000000000000000000000000
000036cc: PUSH1 0x80
000036ce: MSTORE
000036cf: PUSH1 0x60
000036d1: POP
000036d2: PUSH1 0x60
000036d4: MLOAD
000036d5: DUP1
000036d6: PUSH1 0x80
000036d8: ADD
000036d9: PUSH1 0x1f
000036db: DUP3
000036dc: PUSH1 0x00
000036de: SUB
000036df: AND
000036e0: CALLDATASIZE
000036e1: DUP3
000036e2: CALLDATACOPY
000036e3: POP
000036e4: POP
000036e5: PUSH4 0x08c379a0
000036ea: PUSH1 0x20
000036ec: MSTORE
000036ed: PUSH1 0x20
000036ef: PUSH1 0x40
000036f1: MSTORE
000036f2: PUSH1 0x1f
000036f4: NOT
000036f5: PUSH1 0x1f
000036f7: PUSH1 0x60
000036f9: MLOAD
000036fa: ADD
000036fb: AND
000036fc: PUSH1 0x44
000036fe: ADD
000036ff: PUSH1 0x3c
00003701: REVERT
00003702: JUMPDEST
00003703: PUSH8 0x0de0b6b3a7640000
0000370c: PUSH1 0x40
0000370e: MLOAD
0000370f: PUSH1 0x60
00003711: SHL
00003712: SDIV
00003713: PUSH1 0x60
00003715: MSTORE
00003716: PUSH13 0x01000000000000000000000000
00003724: PUSH12 0x800000000000000000000000
00003731: PUSH12 0xb17217f7d1cf79abc9e3b398
0000373e: PUSH1 0x60
00003740: MLOAD
00003741: PUSH1 0x60
00003743: SHL
00003744: SDIV
00003745: ADD
00003746: SDIV
00003747: PUSH1 0x80
00003749: MSTORE
0000374a: PUSH12 0xb17217f7d1cf79abc9e3b398
00003757: PUSH1 0x80
00003759: MLOAD
0000375a: MUL
0000375b: PUSH1 0x60
0000375d: MLOAD
0000375e: SUB
0000375f: PUSH1 0x60
00003761: MSTORE
00003762: PUSH13 0x10fe68e7fd37d0007b713f7650
00003770: PUSH1 0x60
00003772: MLOAD
00003773: ADD
00003774: PUSH1 0xa0
00003776: MSTORE
00003777: PUSH14 0x02d16720577bd19bf614176fe9ea
00003786: PUSH13 0x01000000000000000000000000
00003794: PUSH1 0x60
00003796: MLOAD
00003797: PUSH1 0xa0
00003799: MLOAD
0000379a: MUL
0000379b: SDIV
0000379c: ADD
0000379d: PUSH1 0xa0
0000379f: MSTORE
000037a0: PUSH14 0x04a4fd9f2a8b96949216d2255a6c
000037af: PUSH1 0x60
000037b1: MLOAD
000037b2: PUSH1 0xa0
000037b4: MLOAD
000037b5: ADD
000037b6: SUB
000037b7: PUSH1 0xc0
000037b9: MSTORE
000037ba: PUSH15 0x0587f503bb6ea29d25fcb740196450
000037ca: PUSH13 0x01000000000000000000000000
000037d8: PUSH1 0xa0
000037da: MLOAD
000037db: PUSH1 0xc0
000037dd: MLOAD
000037de: MUL
000037df: SDIV
000037e0: ADD
000037e1: PUSH1 0xc0
000037e3: MSTORE
000037e4: PUSH26 0xd835ebba824c98fb31b83b2ca45c000000000000000000000000
000037ff: PUSH1 0x60
00003801: MLOAD
00003802: PUSH1 0xc0
00003804: MLOAD
00003805: MUL
00003806: ADD
00003807: PUSH1 0xc0
00003809: MSTORE
0000380a: PUSH1 0x60
0000380c: MLOAD
0000380d: PUSH13 0x240c330e9fb2d9cbaf0fd5aafc
0000381b: DUP2
0000381c: SUB
0000381d: DUP2
0000381e: DUP2
0000381f: SGT
00003820: PUSH2 0x4490
00003823: JUMPI
00003824: SWAP1
00003825: POP
00003826: PUSH1 0xe0
00003828: MSTORE
00003829: PUSH14 0x0277594991cfc85f6e2461837cd9
00003838: PUSH13 0x01000000000000000000000000
00003846: PUSH1 0x60
00003848: MLOAD
00003849: PUSH1 0xe0
0000384b: MLOAD
0000384c: MUL
0000384d: SDIV
0000384e: ADD
0000384f: PUSH1 0xe0
00003851: MSTORE
00003852: PUSH14 0x1a521255e34f6a5061b25ef1c9c4
00003861: PUSH13 0x01000000000000000000000000
0000386f: PUSH1 0x60
00003871: MLOAD
00003872: PUSH1 0xe0
00003874: MLOAD
00003875: MUL
00003876: SDIV
00003877: SUB
00003878: PUSH1 0xe0
0000387a: MSTORE
0000387b: PUSH14 0xb1bbb201f443cf962f1a1d3db4a5
0000388a: PUSH13 0x01000000000000000000000000
00003898: PUSH1 0x60
0000389a: MLOAD
0000389b: PUSH1 0xe0
0000389d: MLOAD
0000389e: MUL
0000389f: SDIV
000038a0: ADD
000038a1: PUSH1 0xe0
000038a3: MSTORE
000038a4: PUSH15 0x02c72388d9f74f51a9331fed693f15
000038b4: PUSH13 0x01000000000000000000000000
000038c2: PUSH1 0x60
000038c4: MLOAD
000038c5: PUSH1 0xe0
000038c7: MLOAD
000038c8: MUL
000038c9: SDIV
000038ca: SUB
000038cb: PUSH1 0xe0
000038cd: MSTORE
000038ce: PUSH15 0x05180bb14799ab47a8a8cb2a527d57
000038de: PUSH13 0x01000000000000000000000000
000038ec: PUSH1 0x60
000038ee: MLOAD
000038ef: PUSH1 0xe0
000038f1: MLOAD
000038f2: MUL
000038f3: SDIV
000038f4: ADD
000038f5: PUSH1 0xe0
000038f7: MSTORE
000038f8: PUSH21 0x029d9dc38563c32e5c2f6dc192ee70ef65f9978af3
0000390e: PUSH1 0xe0
00003910: MLOAD
00003911: PUSH1 0xc0
00003913: MLOAD
00003914: SDIV
00003915: PUSH1 0x00
00003917: DUP2
00003918: SLT
00003919: PUSH2 0x4490
0000391c: JUMPI
0000391d: MUL
0000391e: PUSH1 0xc3
00003920: PUSH1 0x80
00003922: MLOAD
00003923: SUB
00003924: PUSH32 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
00003945: DUP2
00003946: SGT
00003947: ISZERO
00003948: PUSH2 0x3953
0000394b: JUMPI
0000394c: DUP2
0000394d: DUP2
0000394e: SHL
0000394f: PUSH2 0x395a
00003952: JUMP
00003953: JUMPDEST
00003954: DUP2
00003955: DUP2
00003956: PUSH1 0x00
00003958: SUB
00003959: SHR
0000395a: JUMPDEST
0000395b: SWAP1
0000395c: POP
0000395d: SWAP1
0000395e: POP
0000395f: DUP2
00003960: MSTORE
00003961: POP
00003962: JUMPDEST
00003963: JUMP
00003964: JUMPDEST
00003965: PUSH1 0x1b
00003967: SLOAD
00003968: PUSH2 0x0100
0000396b: MSTORE
0000396c: PUSH1 0x19
0000396e: SLOAD
0000396f: PUSH2 0x0120
00003972: MSTORE
00003973: PUSH16 0xffffffffffffffffffffffffffffffff
00003984: PUSH2 0x0120
00003987: MLOAD
00003988: AND
00003989: PUSH2 0x0140
0000398c: MSTORE
0000398d: PUSH2 0x0120
00003990: MLOAD
00003991: DUP1
00003992: PUSH1 0x80
00003994: SHR
00003995: SWAP1
00003996: POP
00003997: PUSH2 0x0160
0000399a: MSTORE
0000399b: TIMESTAMP
0000399c: PUSH2 0x0100
0000399f: MLOAD
000039a0: LT
000039a1: PUSH2 0x39b4
000039a4: JUMPI
000039a5: PUSH2 0x0160
000039a8: MLOAD
000039a9: DUP2
000039aa: MSTORE
000039ab: POP
000039ac: PUSH2 0x3ab0
000039af: JUMP
000039b0: PUSH2 0x3ab0
000039b3: JUMP
000039b4: JUMPDEST
000039b5: TIMESTAMP
000039b6: PUSH2 0x0100
000039b9: MLOAD
000039ba: DUP1
000039bb: DUP3
000039bc: SUB
000039bd: DUP3
000039be: DUP2
000039bf: GT
000039c0: PUSH2 0x4490
000039c3: JUMPI
000039c4: SWAP1
000039c5: POP
000039c6: SWAP1
000039c7: POP
000039c8: PUSH8 0x0de0b6b3a7640000
000039d1: DUP2
000039d2: MUL
000039d3: DUP2
000039d4: PUSH8 0x0de0b6b3a7640000
000039dd: DUP3
000039de: DIV
000039df: XOR
000039e0: PUSH2 0x4490
000039e3: JUMPI
000039e4: SWAP1
000039e5: POP
000039e6: PUSH1 0x1a
000039e8: SLOAD
000039e9: DUP1
000039ea: ISZERO
000039eb: PUSH2 0x4490
000039ee: JUMPI
000039ef: DUP1
000039f0: DUP3
000039f1: DIV
000039f2: SWAP1
000039f3: POP
000039f4: SWAP1
000039f5: POP
000039f6: DUP1
000039f7: PUSH1 0xff
000039f9: SHR
000039fa: PUSH2 0x4490
000039fd: JUMPI
000039fe: PUSH32 0x8000000000000000000000000000000000000000000000000000000000000000
00003a1f: DUP2
00003a20: EQ
00003a21: PUSH2 0x4490
00003a24: JUMPI
00003a25: PUSH1 0x00
00003a27: SUB
00003a28: PUSH1 0x40
00003a2a: MSTORE
00003a2b: PUSH2 0x3a35
00003a2e: PUSH2 0x01a0
00003a31: PUSH2 0x3660
00003a34: JUMP
00003a35: JUMPDEST
00003a36: PUSH2 0x01a0
00003a39: MLOAD
00003a3a: PUSH2 0x0180
00003a3d: MSTORE
00003a3e: PUSH2 0x0140
00003a41: MLOAD
00003a42: PUSH2 0x0180
00003a45: MLOAD
00003a46: DUP1
00003a47: PUSH8 0x0de0b6b3a7640000
00003a50: SUB
00003a51: PUSH8 0x0de0b6b3a7640000
00003a5a: DUP2
00003a5b: GT
00003a5c: PUSH2 0x4490
00003a5f: JUMPI
00003a60: SWAP1
00003a61: POP
00003a62: DUP1
00003a63: DUP3
00003a64: MUL
00003a65: DUP2
00003a66: ISZERO
00003a67: DUP4
00003a68: DUP4
00003a69: DUP4
00003a6a: DIV
00003a6b: EQ
00003a6c: OR
00003a6d: ISZERO
00003a6e: PUSH2 0x4490
00003a71: JUMPI
00003a72: SWAP1
00003a73: POP
00003a74: SWAP1
00003a75: POP
00003a76: PUSH2 0x0160
00003a79: MLOAD
00003a7a: PUSH2 0x0180
00003a7d: MLOAD
00003a7e: DUP1
00003a7f: DUP3
00003a80: MUL
00003a81: DUP2
00003a82: ISZERO
00003a83: DUP4
00003a84: DUP4
00003a85: DUP4
00003a86: DIV
00003a87: EQ
00003a88: OR
00003a89: ISZERO
00003a8a: PUSH2 0x4490
00003a8d: JUMPI
00003a8e: SWAP1
00003a8f: POP
00003a90: SWAP1
00003a91: POP
00003a92: DUP1
00003a93: DUP3
00003a94: ADD
00003a95: DUP3
00003a96: DUP2
00003a97: LT
00003a98: PUSH2 0x4490
00003a9b: JUMPI
00003a9c: SWAP1
00003a9d: POP
00003a9e: SWAP1
00003a9f: POP
00003aa0: PUSH8 0x0de0b6b3a7640000
00003aa9: DUP2
00003aaa: DIV
00003aab: SWAP1
00003aac: POP
00003aad: DUP2
00003aae: MSTORE
00003aaf: POP
00003ab0: JUMPDEST
00003ab1: JUMP
00003ab2: JUMPDEST
00003ab3: PUSH2 0x01c0
00003ab6: MLOAD
00003ab7: ISZERO
00003ab8: PUSH2 0x3b05
00003abb: JUMPI
00003abc: PUSH2 0x01c0
00003abf: MLOAD
00003ac0: PUSH2 0x0220
00003ac3: MSTORE
00003ac4: PUSH2 0x3ace
00003ac7: PUSH2 0x01e0
00003aca: PUSH2 0x3964
00003acd: JUMP
00003ace: JUMPDEST
00003acf: PUSH2 0x01e0
00003ad2: MLOAD
00003ad3: PUSH2 0x0240
00003ad6: MSTORE
00003ad7: PUSH2 0x0220
00003ada: MLOAD
00003adb: PUSH1 0x40
00003add: MSTORE
00003ade: PUSH2 0x0240
00003ae1: MLOAD
00003ae2: PUSH1 0x60
00003ae4: MSTORE
00003ae5: PUSH2 0x3aef
00003ae8: PUSH2 0x0200
00003aeb: PUSH2 0x305d
00003aee: JUMP
00003aef: JUMPDEST
00003af0: PUSH2 0x0200
00003af3: MLOAD
00003af4: PUSH1 0x19
00003af6: SSTORE
00003af7: TIMESTAMP
00003af8: PUSH1 0x1b
00003afa: SLOAD
00003afb: LT
00003afc: ISZERO
00003afd: PUSH2 0x3b05
00003b00: JUMPI
00003b01: TIMESTAMP
00003b02: PUSH1 0x1b
00003b04: SSTORE
00003b05: JUMPDEST
00003b06: JUMP
00003b07: JUMPDEST
00003b08: PUSH2 0x0260
00003b0b: MLOAD
00003b0c: PUSH1 0x40
00003b0e: MSTORE
00003b0f: PUSH2 0x0280
00003b12: MLOAD
00003b13: PUSH1 0x60
00003b15: MSTORE
00003b16: PUSH2 0x02a0
00003b19: MLOAD
00003b1a: PUSH1 0x80
00003b1c: MSTORE
00003b1d: PUSH2 0x02c0
00003b20: MLOAD
00003b21: PUSH1 0xa0
00003b23: MSTORE
00003b24: PUSH2 0x3b2e
00003b27: PUSH2 0x02e0
00003b2a: PUSH2 0x3531
00003b2d: JUMP
00003b2e: JUMPDEST
00003b2f: PUSH2 0x02e0
00003b32: MLOAD
00003b33: PUSH2 0x0300
00003b36: MSTORE
00003b37: PUSH2 0x0300
00003b3a: MLOAD
00003b3b: PUSH2 0x01c0
00003b3e: MSTORE
00003b3f: PUSH2 0x3b46
00003b42: PUSH2 0x3ab2
00003b45: JUMP
00003b46: JUMPDEST
00003b47: JUMP
00003b48: JUMPDEST
00003b49: PUSH2 0x0180
00003b4c: MLOAD
00003b4d: PUSH2 0x0160
00003b50: MLOAD
00003b51: EQ
00003b52: PUSH2 0x4490
00003b55: JUMPI
00003b56: PUSH1 0x00
00003b58: PUSH2 0x0180
00003b5b: MLOAD
00003b5c: SLT
00003b5d: PUSH2 0x4490
00003b60: JUMPI
00003b61: PUSH1 0x01
00003b63: PUSH2 0x0180
00003b66: MLOAD
00003b67: SGT
00003b68: PUSH2 0x4490
00003b6b: JUMPI
00003b6c: PUSH1 0x00
00003b6e: PUSH2 0x0160
00003b71: MLOAD
00003b72: SLT
00003b73: PUSH2 0x4490
00003b76: JUMPI
00003b77: PUSH1 0x01
00003b79: PUSH2 0x0160
00003b7c: MLOAD
00003b7d: SGT
00003b7e: PUSH2 0x4490
00003b81: JUMPI
00003b82: PUSH2 0x0200
00003b85: MLOAD
00003b86: PUSH2 0x0240
00003b89: MSTORE
00003b8a: PUSH2 0x0220
00003b8d: MLOAD
00003b8e: PUSH2 0x0260
00003b91: MSTORE
00003b92: PUSH2 0x0220
00003b95: MLOAD
00003b96: PUSH2 0x3bd5
00003b99: JUMPI
00003b9a: PUSH2 0x3ba4
00003b9d: PUSH2 0x0280
00003ba0: PUSH2 0x3121
00003ba3: JUMP
00003ba4: JUMPDEST
00003ba5: PUSH2 0x0280
00003ba8: MLOAD
00003ba9: PUSH2 0x0240
00003bac: MSTORE
00003bad: PUSH2 0x01c0
00003bb0: MLOAD
00003bb1: PUSH1 0x40
00003bb3: MSTORE
00003bb4: PUSH2 0x01e0
00003bb7: MLOAD
00003bb8: PUSH1 0x60
00003bba: MSTORE
00003bbb: PUSH2 0x0240
00003bbe: MLOAD
00003bbf: PUSH1 0x80
00003bc1: MSTORE
00003bc2: PUSH2 0x3bcc
00003bc5: PUSH2 0x0280
00003bc8: PUSH2 0x32cd
00003bcb: JUMP
00003bcc: JUMPDEST
00003bcd: PUSH2 0x0280
00003bd0: MLOAD
00003bd1: PUSH2 0x0260
00003bd4: MSTORE
00003bd5: JUMPDEST
00003bd6: PUSH1 0x60
00003bd8: CALLDATASIZE
00003bd9: PUSH2 0x0280
00003bdc: CALLDATACOPY
00003bdd: PUSH2 0x0260
00003be0: MLOAD
00003be1: PUSH2 0x02e0
00003be4: MSTORE
00003be5: PUSH2 0x0240
00003be8: MLOAD
00003be9: DUP1
00003bea: PUSH1 0x01
00003bec: SHL
00003bed: DUP2
00003bee: DUP2
00003bef: PUSH1 0x01
00003bf1: SHR
00003bf2: XOR
00003bf3: PUSH2 0x4490
00003bf6: JUMPI
00003bf7: SWAP1
00003bf8: POP
00003bf9: PUSH2 0x0300
00003bfc: MSTORE
00003bfd: PUSH1 0x00
00003bff: PUSH1 0x02
00003c01: SWAP1
00003c02: JUMPDEST
00003c03: DUP1
00003c04: PUSH2 0x0320
00003c07: MSTORE
00003c08: PUSH2 0x0160
00003c0b: MLOAD
00003c0c: PUSH2 0x0320
00003c0f: MLOAD
00003c10: XOR
00003c11: PUSH2 0x3c21
00003c14: JUMPI
00003c15: PUSH2 0x01a0
00003c18: MLOAD
00003c19: PUSH2 0x02a0
00003c1c: MSTORE
00003c1d: PUSH2 0x3c4f
00003c20: JUMP
00003c21: JUMPDEST
00003c22: PUSH2 0x0180
00003c25: MLOAD
00003c26: PUSH2 0x0320
00003c29: MLOAD
00003c2a: EQ
00003c2b: PUSH2 0x3cab
00003c2e: JUMPI
00003c2f: PUSH2 0x0320
00003c32: MLOAD
00003c33: PUSH1 0x01
00003c35: DUP2
00003c36: GT
00003c37: PUSH2 0x4490
00003c3a: JUMPI
00003c3b: PUSH1 0x05
00003c3d: SHL
00003c3e: PUSH2 0x01c0
00003c41: ADD
00003c42: MLOAD
00003c43: PUSH2 0x02a0
00003c46: MSTORE
00003c47: PUSH2 0x3c4f
00003c4a: JUMP
00003c4b: PUSH2 0x3cab
00003c4e: JUMP
00003c4f: JUMPDEST
00003c50: PUSH2 0x0280
00003c53: MLOAD
00003c54: PUSH2 0x02a0
00003c57: MLOAD
00003c58: DUP1
00003c59: DUP3
00003c5a: ADD
00003c5b: DUP3
00003c5c: DUP2
00003c5d: LT
00003c5e: PUSH2 0x4490
00003c61: JUMPI
00003c62: SWAP1
00003c63: POP
00003c64: SWAP1
00003c65: POP
00003c66: PUSH2 0x0280
00003c69: MSTORE
00003c6a: PUSH2 0x02e0
00003c6d: MLOAD
00003c6e: PUSH2 0x0260
00003c71: MLOAD
00003c72: DUP1
00003c73: DUP3
00003c74: MUL
00003c75: DUP2
00003c76: ISZERO
00003c77: DUP4
00003c78: DUP4
00003c79: DUP4
00003c7a: DIV
00003c7b: EQ
00003c7c: OR
00003c7d: ISZERO
00003c7e: PUSH2 0x4490
00003c81: JUMPI
00003c82: SWAP1
00003c83: POP
00003c84: SWAP1
00003c85: POP
00003c86: PUSH2 0x02a0
00003c89: MLOAD
00003c8a: DUP1
00003c8b: PUSH1 0x01
00003c8d: SHL
00003c8e: DUP2
00003c8f: DUP2
00003c90: PUSH1 0x01
00003c92: SHR
00003c93: XOR
00003c94: PUSH2 0x4490
00003c97: JUMPI
00003c98: SWAP1
00003c99: POP
00003c9a: DUP1
00003c9b: ISZERO
00003c9c: PUSH2 0x4490
00003c9f: JUMPI
00003ca0: DUP1
00003ca1: DUP3
00003ca2: DIV
00003ca3: SWAP1
00003ca4: POP
00003ca5: SWAP1
00003ca6: POP
00003ca7: PUSH2 0x02e0
00003caa: MSTORE
00003cab: JUMPDEST
00003cac: PUSH1 0x01
00003cae: ADD
00003caf: DUP2
00003cb0: DUP2
00003cb1: XOR
00003cb2: PUSH2 0x3c02
00003cb5: JUMPI
00003cb6: POP
00003cb7: POP
00003cb8: PUSH2 0x02e0
00003cbb: MLOAD
00003cbc: PUSH2 0x0260
00003cbf: MLOAD
00003cc0: DUP1
00003cc1: DUP3
00003cc2: MUL
00003cc3: DUP2
00003cc4: ISZERO
00003cc5: DUP4
00003cc6: DUP4
00003cc7: DUP4
00003cc8: DIV
00003cc9: EQ
00003cca: OR
00003ccb: ISZERO
00003ccc: PUSH2 0x4490
00003ccf: JUMPI
00003cd0: SWAP1
00003cd1: POP
00003cd2: SWAP1
00003cd3: POP
00003cd4: PUSH1 0x64
00003cd6: DUP2
00003cd7: MUL
00003cd8: DUP2
00003cd9: PUSH1 0x64
00003cdb: DUP3
00003cdc: DIV
00003cdd: XOR
00003cde: PUSH2 0x4490
00003ce1: JUMPI
00003ce2: SWAP1
00003ce3: POP
00003ce4: PUSH2 0x0300
00003ce7: MLOAD
00003ce8: DUP1
00003ce9: PUSH1 0x01
00003ceb: SHL
00003cec: DUP2
00003ced: DUP2
00003cee: PUSH1 0x01
00003cf0: SHR
00003cf1: XOR
00003cf2: PUSH2 0x4490
00003cf5: JUMPI
00003cf6: SWAP1
00003cf7: POP
00003cf8: DUP1
00003cf9: ISZERO
00003cfa: PUSH2 0x4490
00003cfd: JUMPI
00003cfe: DUP1
00003cff: DUP3
00003d00: DIV
00003d01: SWAP1
00003d02: POP
00003d03: SWAP1
00003d04: POP
00003d05: PUSH2 0x02e0
00003d08: MSTORE
00003d09: PUSH2 0x0280
00003d0c: MLOAD
00003d0d: PUSH2 0x0260
00003d10: MLOAD
00003d11: PUSH1 0x64
00003d13: DUP2
00003d14: MUL
00003d15: DUP2
00003d16: PUSH1 0x64
00003d18: DUP3
00003d19: DIV
00003d1a: XOR
00003d1b: PUSH2 0x4490
00003d1e: JUMPI
00003d1f: SWAP1
00003d20: POP
00003d21: PUSH2 0x0300
00003d24: MLOAD
00003d25: DUP1
00003d26: ISZERO
00003d27: PUSH2 0x4490
00003d2a: JUMPI
00003d2b: DUP1
00003d2c: DUP3
00003d2d: DIV
00003d2e: SWAP1
00003d2f: POP
00003d30: SWAP1
00003d31: POP
00003d32: DUP1
00003d33: DUP3
00003d34: ADD
00003d35: DUP3
00003d36: DUP2
00003d37: LT
00003d38: PUSH2 0x4490
00003d3b: JUMPI
00003d3c: SWAP1
00003d3d: POP
00003d3e: SWAP1
00003d3f: POP
00003d40: PUSH2 0x0320
00003d43: MSTORE
00003d44: PUSH2 0x0260
00003d47: MLOAD
00003d48: PUSH2 0x0340
00003d4b: MSTORE
00003d4c: PUSH1 0x00
00003d4e: PUSH1 0xff
00003d50: SWAP1
00003d51: JUMPDEST
00003d52: DUP1
00003d53: PUSH2 0x0360
00003d56: MSTORE
00003d57: PUSH2 0x0340
00003d5a: MLOAD
00003d5b: PUSH2 0x02c0
00003d5e: MSTORE
00003d5f: PUSH2 0x0340
00003d62: MLOAD
00003d63: PUSH2 0x0340
00003d66: MLOAD
00003d67: DUP1
00003d68: DUP3
00003d69: MUL
00003d6a: DUP2
00003d6b: ISZERO
00003d6c: DUP4
00003d6d: DUP4
00003d6e: DUP4
00003d6f: DIV
00003d70: EQ
00003d71: OR
00003d72: ISZERO
00003d73: PUSH2 0x4490
00003d76: JUMPI
00003d77: SWAP1
00003d78: POP
00003d79: SWAP1
00003d7a: POP
00003d7b: PUSH2 0x02e0
00003d7e: MLOAD
00003d7f: DUP1
00003d80: DUP3
00003d81: ADD
00003d82: DUP3
00003d83: DUP2
00003d84: LT
00003d85: PUSH2 0x4490
00003d88: JUMPI
00003d89: SWAP1
00003d8a: POP
00003d8b: SWAP1
00003d8c: POP
00003d8d: PUSH2 0x0340
00003d90: MLOAD
00003d91: DUP1
00003d92: PUSH1 0x01
00003d94: SHL
00003d95: DUP2
00003d96: DUP2
00003d97: PUSH1 0x01
00003d99: SHR
00003d9a: XOR
00003d9b: PUSH2 0x4490
00003d9e: JUMPI
00003d9f: SWAP1
00003da0: POP
00003da1: PUSH2 0x0320
00003da4: MLOAD
00003da5: DUP1
00003da6: DUP3
00003da7: ADD
00003da8: DUP3
00003da9: DUP2
00003daa: LT
00003dab: PUSH2 0x4490
00003dae: JUMPI
00003daf: SWAP1
00003db0: POP
00003db1: SWAP1
00003db2: POP
00003db3: PUSH2 0x0260
00003db6: MLOAD
00003db7: DUP1
00003db8: DUP3
00003db9: SUB
00003dba: DUP3
00003dbb: DUP2
00003dbc: GT
00003dbd: PUSH2 0x4490
00003dc0: JUMPI
00003dc1: SWAP1
00003dc2: POP
00003dc3: SWAP1
00003dc4: POP
00003dc5: DUP1
00003dc6: ISZERO
00003dc7: PUSH2 0x4490
00003dca: JUMPI
00003dcb: DUP1
00003dcc: DUP3
00003dcd: DIV
00003dce: SWAP1
00003dcf: POP
00003dd0: SWAP1
00003dd1: POP
00003dd2: PUSH2 0x0340
00003dd5: MSTORE
00003dd6: PUSH2 0x02c0
00003dd9: MLOAD
00003dda: PUSH2 0x0340
00003ddd: MLOAD
00003dde: GT
00003ddf: PUSH2 0x3e11
00003de2: JUMPI
00003de3: PUSH1 0x01
00003de5: PUSH2 0x02c0
00003de8: MLOAD
00003de9: PUSH2 0x0340
00003dec: MLOAD
00003ded: DUP1
00003dee: DUP3
00003def: SUB
00003df0: DUP3
00003df1: DUP2
00003df2: GT
00003df3: PUSH2 0x4490
00003df6: JUMPI
00003df7: SWAP1
00003df8: POP
00003df9: SWAP1
00003dfa: POP
00003dfb: GT
00003dfc: PUSH2 0x3e3c
00003dff: JUMPI
00003e00: PUSH2 0x0340
00003e03: MLOAD
00003e04: DUP4
00003e05: MSTORE
00003e06: POP
00003e07: POP
00003e08: POP
00003e09: PUSH2 0x3e4e
00003e0c: JUMP
00003e0d: PUSH2 0x3e3c
00003e10: JUMP
00003e11: JUMPDEST
00003e12: PUSH1 0x01
00003e14: PUSH2 0x0340
00003e17: MLOAD
00003e18: PUSH2 0x02c0
00003e1b: MLOAD
00003e1c: DUP1
00003e1d: DUP3
00003e1e: SUB
00003e1f: DUP3
00003e20: DUP2
00003e21: GT
00003e22: PUSH2 0x4490
00003e25: JUMPI
00003e26: SWAP1
00003e27: POP
00003e28: SWAP1
00003e29: POP
00003e2a: GT
00003e2b: PUSH2 0x3e3c
00003e2e: JUMPI
00003e2f: PUSH2 0x0340
00003e32: MLOAD
00003e33: DUP4
00003e34: MSTORE
00003e35: POP
00003e36: POP
00003e37: POP
00003e38: PUSH2 0x3e4e
00003e3b: JUMP
00003e3c: JUMPDEST
00003e3d: PUSH1 0x01
00003e3f: ADD
00003e40: DUP2
00003e41: DUP2
00003e42: XOR
00003e43: PUSH2 0x3d51
00003e46: JUMPI
00003e47: POP
00003e48: POP
00003e49: PUSH1 0x00
00003e4b: PUSH1 0x00
00003e4d: REVERT
00003e4e: JUMPDEST
00003e4f: JUMP
00003e50: JUMPDEST
00003e51: PUSH1 0x00
00003e53: PUSH1 0x60
00003e55: MLOAD
00003e56: SLT
00003e57: PUSH2 0x4490
00003e5a: JUMPI
00003e5b: PUSH1 0x01
00003e5d: PUSH1 0x60
00003e5f: MLOAD
00003e60: SGT
00003e61: PUSH2 0x4490
00003e64: JUMPI
00003e65: PUSH1 0x60
00003e67: CALLDATASIZE
00003e68: PUSH1 0xe0
00003e6a: CALLDATACOPY
00003e6b: PUSH1 0xc0
00003e6d: MLOAD
00003e6e: PUSH2 0x0140
00003e71: MSTORE
00003e72: PUSH1 0x40
00003e74: MLOAD
00003e75: DUP1
00003e76: PUSH1 0x01
00003e78: SHL
00003e79: DUP2
00003e7a: DUP2
00003e7b: PUSH1 0x01
00003e7d: SHR
00003e7e: XOR
00003e7f: PUSH2 0x4490
00003e82: JUMPI
00003e83: SWAP1
00003e84: POP
00003e85: PUSH2 0x0160
00003e88: MSTORE
00003e89: PUSH1 0x00
00003e8b: PUSH1 0x02
00003e8d: SWAP1
00003e8e: JUMPDEST
00003e8f: DUP1
00003e90: PUSH2 0x0180
00003e93: MSTORE
00003e94: PUSH1 0x60
00003e96: MLOAD
00003e97: PUSH2 0x0180
00003e9a: MLOAD
00003e9b: EQ
00003e9c: PUSH2 0x3f18
00003e9f: JUMPI
00003ea0: PUSH2 0x0180
00003ea3: MLOAD
00003ea4: PUSH1 0x01
00003ea6: DUP2
00003ea7: GT
00003ea8: PUSH2 0x4490
00003eab: JUMPI
00003eac: PUSH1 0x05
00003eae: SHL
00003eaf: PUSH1 0x80
00003eb1: ADD
00003eb2: MLOAD
00003eb3: PUSH2 0x0100
00003eb6: MSTORE
00003eb7: PUSH2 0x3ebf
00003eba: JUMP
00003ebb: PUSH2 0x3f18
00003ebe: JUMP
00003ebf: JUMPDEST
00003ec0: PUSH1 0xe0
00003ec2: MLOAD
00003ec3: PUSH2 0x0100
00003ec6: MLOAD
00003ec7: DUP1
00003ec8: DUP3
00003ec9: ADD
00003eca: DUP3
00003ecb: DUP2
00003ecc: LT
00003ecd: PUSH2 0x4490
00003ed0: JUMPI
00003ed1: SWAP1
00003ed2: POP
00003ed3: SWAP1
00003ed4: POP
00003ed5: PUSH1 0xe0
00003ed7: MSTORE
00003ed8: PUSH2 0x0140
00003edb: MLOAD
00003edc: PUSH1 0xc0
00003ede: MLOAD
00003edf: DUP1
00003ee0: DUP3
00003ee1: MUL
00003ee2: DUP2
00003ee3: ISZERO
00003ee4: DUP4
00003ee5: DUP4
00003ee6: DUP4
00003ee7: DIV
00003ee8: EQ
00003ee9: OR
00003eea: ISZERO
00003eeb: PUSH2 0x4490
00003eee: JUMPI
00003eef: SWAP1
00003ef0: POP
00003ef1: SWAP1
00003ef2: POP
00003ef3: PUSH2 0x0100
00003ef6: MLOAD
00003ef7: DUP1
00003ef8: PUSH1 0x01
00003efa: SHL
00003efb: DUP2
00003efc: DUP2
00003efd: PUSH1 0x01
00003eff: SHR
00003f00: XOR
00003f01: PUSH2 0x4490
00003f04: JUMPI
00003f05: SWAP1
00003f06: POP
00003f07: DUP1
00003f08: ISZERO
00003f09: PUSH2 0x4490
00003f0c: JUMPI
00003f0d: DUP1
00003f0e: DUP3
00003f0f: DIV
00003f10: SWAP1
00003f11: POP
00003f12: SWAP1
00003f13: POP
00003f14: PUSH2 0x0140
00003f17: MSTORE
00003f18: JUMPDEST
00003f19: PUSH1 0x01
00003f1b: ADD
00003f1c: DUP2
00003f1d: DUP2
00003f1e: XOR
00003f1f: PUSH2 0x3e8e
00003f22: JUMPI
00003f23: POP
00003f24: POP
00003f25: PUSH2 0x0140
00003f28: MLOAD
00003f29: PUSH1 0xc0
00003f2b: MLOAD
00003f2c: DUP1
00003f2d: DUP3
00003f2e: MUL
00003f2f: DUP2
00003f30: ISZERO
00003f31: DUP4
00003f32: DUP4
00003f33: DUP4
00003f34: DIV
00003f35: EQ
00003f36: OR
00003f37: ISZERO
00003f38: PUSH2 0x4490
00003f3b: JUMPI
00003f3c: SWAP1
00003f3d: POP
00003f3e: SWAP1
00003f3f: POP
00003f40: PUSH1 0x64
00003f42: DUP2
00003f43: MUL
00003f44: DUP2
00003f45: PUSH1 0x64
00003f47: DUP3
00003f48: DIV
00003f49: XOR
00003f4a: PUSH2 0x4490
00003f4d: JUMPI
00003f4e: SWAP1
00003f4f: POP
00003f50: PUSH2 0x0160
00003f53: MLOAD
00003f54: DUP1
00003f55: PUSH1 0x01
00003f57: SHL
00003f58: DUP2
00003f59: DUP2
00003f5a: PUSH1 0x01
00003f5c: SHR
00003f5d: XOR
00003f5e: PUSH2 0x4490
00003f61: JUMPI
00003f62: SWAP1
00003f63: POP
00003f64: DUP1
00003f65: ISZERO
00003f66: PUSH2 0x4490
00003f69: JUMPI
00003f6a: DUP1
00003f6b: DUP3
00003f6c: DIV
00003f6d: SWAP1
00003f6e: POP
00003f6f: SWAP1
00003f70: POP
00003f71: PUSH2 0x0140
00003f74: MSTORE
00003f75: PUSH1 0xe0
00003f77: MLOAD
00003f78: PUSH1 0xc0
00003f7a: MLOAD
00003f7b: PUSH1 0x64
00003f7d: DUP2
00003f7e: MUL
00003f7f: DUP2
00003f80: PUSH1 0x64
00003f82: DUP3
00003f83: DIV
00003f84: XOR
00003f85: PUSH2 0x4490
00003f88: JUMPI
00003f89: SWAP1
00003f8a: POP
00003f8b: PUSH2 0x0160
00003f8e: MLOAD
00003f8f: DUP1
00003f90: ISZERO
00003f91: PUSH2 0x4490
00003f94: JUMPI
00003f95: DUP1
00003f96: DUP3
00003f97: DIV
00003f98: SWAP1
00003f99: POP
00003f9a: SWAP1
00003f9b: POP
00003f9c: DUP1
00003f9d: DUP3
00003f9e: ADD
00003f9f: DUP3
00003fa0: DUP2
00003fa1: LT
00003fa2: PUSH2 0x4490
00003fa5: JUMPI
00003fa6: SWAP1
00003fa7: POP
00003fa8: SWAP1
00003fa9: POP
00003faa: PUSH2 0x0180
00003fad: MSTORE
00003fae: PUSH1 0xc0
00003fb0: MLOAD
00003fb1: PUSH2 0x01a0
00003fb4: MSTORE
00003fb5: PUSH1 0x00
00003fb7: PUSH1 0xff
00003fb9: SWAP1
00003fba: JUMPDEST
00003fbb: DUP1
00003fbc: PUSH2 0x01c0
00003fbf: MSTORE
00003fc0: PUSH2 0x01a0
00003fc3: MLOAD
00003fc4: PUSH2 0x0120
00003fc7: MSTORE
00003fc8: PUSH2 0x01a0
00003fcb: MLOAD
00003fcc: PUSH2 0x01a0
00003fcf: MLOAD
00003fd0: DUP1
00003fd1: DUP3
00003fd2: MUL
00003fd3: DUP2
00003fd4: ISZERO
00003fd5: DUP4
00003fd6: DUP4
00003fd7: DUP4
00003fd8: DIV
00003fd9: EQ
00003fda: OR
00003fdb: ISZERO
00003fdc: PUSH2 0x4490
00003fdf: JUMPI
00003fe0: SWAP1
00003fe1: POP
00003fe2: SWAP1
00003fe3: POP
00003fe4: PUSH2 0x0140
00003fe7: MLOAD
00003fe8: DUP1
00003fe9: DUP3
00003fea: ADD
00003feb: DUP3
00003fec: DUP2
00003fed: LT
00003fee: PUSH2 0x4490
00003ff1: JUMPI
00003ff2: SWAP1
00003ff3: POP
00003ff4: SWAP1
00003ff5: POP
00003ff6: PUSH2 0x01a0
00003ff9: MLOAD
00003ffa: DUP1
00003ffb: PUSH1 0x01
00003ffd: SHL
00003ffe: DUP2
00003fff: DUP2
00004000: PUSH1 0x01
00004002: SHR
00004003: XOR
00004004: PUSH2 0x4490
00004007: JUMPI
00004008: SWAP1
00004009: POP
0000400a: PUSH2 0x0180
0000400d: MLOAD
0000400e: DUP1
0000400f: DUP3
00004010: ADD
00004011: DUP3
00004012: DUP2
00004013: LT
00004014: PUSH2 0x4490
00004017: JUMPI
00004018: SWAP1
00004019: POP
0000401a: SWAP1
0000401b: POP
0000401c: PUSH1 0xc0
0000401e: MLOAD
0000401f: DUP1
00004020: DUP3
00004021: SUB
00004022: DUP3
00004023: DUP2
00004024: GT
00004025: PUSH2 0x4490
00004028: JUMPI
00004029: SWAP1
0000402a: POP
0000402b: SWAP1
0000402c: POP
0000402d: DUP1
0000402e: ISZERO
0000402f: PUSH2 0x4490
00004032: JUMPI
00004033: DUP1
00004034: DUP3
00004035: DIV
00004036: SWAP1
00004037: POP
00004038: SWAP1
00004039: POP
0000403a: PUSH2 0x01a0
0000403d: MSTORE
0000403e: PUSH2 0x0120
00004041: MLOAD
00004042: PUSH2 0x01a0
00004045: MLOAD
00004046: GT
00004047: PUSH2 0x4079
0000404a: JUMPI
0000404b: PUSH1 0x01
0000404d: PUSH2 0x0120
00004050: MLOAD
00004051: PUSH2 0x01a0
00004054: MLOAD
00004055: DUP1
00004056: DUP3
00004057: SUB
00004058: DUP3
00004059: DUP2
0000405a: GT
0000405b: PUSH2 0x4490
0000405e: JUMPI
0000405f: SWAP1
00004060: POP
00004061: SWAP1
00004062: POP
00004063: GT
00004064: PUSH2 0x40a4
00004067: JUMPI
00004068: PUSH2 0x01a0
0000406b: MLOAD
0000406c: DUP4
0000406d: MSTORE
0000406e: POP
0000406f: POP
00004070: POP
00004071: PUSH2 0x40b6
00004074: JUMP
00004075: PUSH2 0x40a4
00004078: JUMP
00004079: JUMPDEST
0000407a: PUSH1 0x01
0000407c: PUSH2 0x01a0
0000407f: MLOAD
00004080: PUSH2 0x0120
00004083: MLOAD
00004084: DUP1
00004085: DUP3
00004086: SUB
00004087: DUP3
00004088: DUP2
00004089: GT
0000408a: PUSH2 0x4490
0000408d: JUMPI
0000408e: SWAP1
0000408f: POP
00004090: SWAP1
00004091: POP
00004092: GT
00004093: PUSH2 0x40a4
00004096: JUMPI
00004097: PUSH2 0x01a0
0000409a: MLOAD
0000409b: DUP4
0000409c: MSTORE
0000409d: POP
0000409e: POP
0000409f: POP
000040a0: PUSH2 0x40b6
000040a3: JUMP
000040a4: JUMPDEST
000040a5: PUSH1 0x01
000040a7: ADD
000040a8: DUP2
000040a9: DUP2
000040aa: XOR
000040ab: PUSH2 0x3fba
000040ae: JUMPI
000040af: POP
000040b0: POP
000040b1: PUSH1 0x00
000040b3: PUSH1 0x00
000040b5: REVERT
000040b6: JUMPDEST
000040b7: JUMP
000040b8: JUMPDEST
000040b9: PUSH2 0x40c3
000040bc: PUSH2 0x0240
000040bf: PUSH2 0x3121
000040c2: JUMP
000040c3: JUMPDEST
000040c4: PUSH2 0x0240
000040c7: MLOAD
000040c8: PUSH2 0x0220
000040cb: MSTORE
000040cc: PUSH1 0x0d
000040ce: SLOAD
000040cf: PUSH2 0x0240
000040d2: MSTORE
000040d3: PUSH1 0x0e
000040d5: SLOAD
000040d6: PUSH2 0x0260
000040d9: MSTORE
000040da: PUSH2 0x0240
000040dd: MLOAD
000040de: PUSH1 0x40
000040e0: MSTORE
000040e1: PUSH2 0x0260
000040e4: MLOAD
000040e5: PUSH1 0x60
000040e7: MSTORE
000040e8: PUSH1 0x04
000040ea: SLOAD
000040eb: PUSH1 0x80
000040ed: MSTORE
000040ee: PUSH1 0x05
000040f0: SLOAD
000040f1: PUSH1 0xa0
000040f3: MSTORE
000040f4: PUSH2 0x40fe
000040f7: PUSH2 0x02c0
000040fa: PUSH2 0x3246
000040fd: JUMP
000040fe: JUMPDEST
000040ff: PUSH2 0x02c0
00004102: DUP1
00004103: MLOAD
00004104: PUSH2 0x0280
00004107: MSTORE
00004108: PUSH1 0x20
0000410a: DUP2
0000410b: ADD
0000410c: MLOAD
0000410d: PUSH2 0x02a0
00004110: MSTORE
00004111: POP
00004112: PUSH2 0x0280
00004115: MLOAD
00004116: PUSH1 0x40
00004118: MSTORE
00004119: PUSH2 0x02a0
0000411c: MLOAD
0000411d: PUSH1 0x60
0000411f: MSTORE
00004120: PUSH2 0x0220
00004123: MLOAD
00004124: PUSH1 0x80
00004126: MSTORE
00004127: PUSH2 0x4131
0000412a: PUSH2 0x02e0
0000412d: PUSH2 0x32cd
00004130: JUMP
00004131: JUMPDEST
00004132: PUSH2 0x02e0
00004135: MLOAD
00004136: PUSH2 0x02c0
00004139: MSTORE
0000413a: PUSH1 0x16
0000413c: SLOAD
0000413d: PUSH2 0x02e0
00004140: MSTORE
00004141: PUSH2 0x02c0
00004144: MLOAD
00004145: PUSH2 0x01e0
00004148: MLOAD
00004149: PUSH2 0x02c0
0000414c: MLOAD
0000414d: DUP1
0000414e: DUP3
0000414f: MUL
00004150: DUP2
00004151: ISZERO
00004152: DUP4
00004153: DUP4
00004154: DUP4
00004155: DIV
00004156: EQ
00004157: OR
00004158: ISZERO
00004159: PUSH2 0x4490
0000415c: JUMPI
0000415d: SWAP1
0000415e: POP
0000415f: SWAP1
00004160: POP
00004161: PUSH2 0x02e0
00004164: MLOAD
00004165: DUP1
00004166: ISZERO
00004167: PUSH2 0x4490
0000416a: JUMPI
0000416b: DUP1
0000416c: DUP3
0000416d: DIV
0000416e: SWAP1
0000416f: POP
00004170: SWAP1
00004171: POP
00004172: DUP1
00004173: DUP3
00004174: SUB
00004175: DUP3
00004176: DUP2
00004177: GT
00004178: PUSH2 0x4490
0000417b: JUMPI
0000417c: SWAP1
0000417d: POP
0000417e: SWAP1
0000417f: POP
00004180: PUSH2 0x0300
00004183: MSTORE
00004184: PUSH2 0x0220
00004187: MLOAD
00004188: PUSH1 0x40
0000418a: MSTORE
0000418b: PUSH2 0x0200
0000418e: MLOAD
0000418f: PUSH1 0x60
00004191: MSTORE
00004192: PUSH2 0x0280
00004195: MLOAD
00004196: PUSH1 0x80
00004198: MSTORE
00004199: PUSH2 0x02a0
0000419c: MLOAD
0000419d: PUSH1 0xa0
0000419f: MSTORE
000041a0: PUSH2 0x0300
000041a3: MLOAD
000041a4: PUSH1 0xc0
000041a6: MSTORE
000041a7: PUSH2 0x41b1
000041aa: PUSH2 0x0340
000041ad: PUSH2 0x3e50
000041b0: JUMP
000041b1: JUMPDEST
000041b2: PUSH2 0x0340
000041b5: MLOAD
000041b6: PUSH2 0x0320
000041b9: MSTORE
000041ba: PUSH1 0x06
000041bc: SLOAD
000041bd: DUP1
000041be: PUSH1 0x01
000041c0: SHL
000041c1: DUP2
000041c2: DUP2
000041c3: PUSH1 0x01
000041c5: SHR
000041c6: XOR
000041c7: PUSH2 0x4490
000041ca: JUMPI
000041cb: SWAP1
000041cc: POP
000041cd: DUP1
000041ce: PUSH1 0x02
000041d0: SHR
000041d1: SWAP1
000041d2: POP
000041d3: PUSH2 0x0340
000041d6: MSTORE
000041d7: PUSH1 0x40
000041d9: CALLDATASIZE
000041da: PUSH2 0x0360
000041dd: CALLDATACOPY
000041de: PUSH1 0x00
000041e0: PUSH1 0x02
000041e2: SWAP1
000041e3: JUMPDEST
000041e4: DUP1
000041e5: PUSH2 0x03a0
000041e8: MSTORE
000041e9: PUSH1 0x00
000041eb: PUSH2 0x03c0
000041ee: MSTORE
000041ef: PUSH2 0x03a0
000041f2: MLOAD
000041f3: PUSH1 0x01
000041f5: DUP2
000041f6: GT
000041f7: PUSH2 0x4490
000041fa: JUMPI
000041fb: PUSH1 0x05
000041fd: SHL
000041fe: PUSH2 0x0280
00004201: ADD
00004202: MLOAD
00004203: PUSH2 0x03e0
00004206: MSTORE
00004207: PUSH2 0x0200
0000420a: MLOAD
0000420b: PUSH2 0x03a0
0000420e: MLOAD
0000420f: XOR
00004210: PUSH2 0x425b
00004213: JUMPI
00004214: PUSH2 0x03e0
00004217: MLOAD
00004218: PUSH2 0x0300
0000421b: MLOAD
0000421c: DUP1
0000421d: DUP3
0000421e: MUL
0000421f: DUP2
00004220: ISZERO
00004221: DUP4
00004222: DUP4
00004223: DUP4
00004224: DIV
00004225: EQ
00004226: OR
00004227: ISZERO
00004228: PUSH2 0x4490
0000422b: JUMPI
0000422c: SWAP1
0000422d: POP
0000422e: SWAP1
0000422f: POP
00004230: PUSH2 0x02c0
00004233: MLOAD
00004234: DUP1
00004235: ISZERO
00004236: PUSH2 0x4490
00004239: JUMPI
0000423a: DUP1
0000423b: DUP3
0000423c: DIV
0000423d: SWAP1
0000423e: POP
0000423f: SWAP1
00004240: POP
00004241: PUSH2 0x0320
00004244: MLOAD
00004245: DUP1
00004246: DUP3
00004247: SUB
00004248: DUP3
00004249: DUP2
0000424a: GT
0000424b: PUSH2 0x4490
0000424e: JUMPI
0000424f: SWAP1
00004250: POP
00004251: SWAP1
00004252: POP
00004253: PUSH2 0x03c0
00004256: MSTORE
00004257: PUSH2 0x429f
0000425a: JUMP
0000425b: JUMPDEST
0000425c: PUSH2 0x03e0
0000425f: MLOAD
00004260: PUSH2 0x03e0
00004263: MLOAD
00004264: PUSH2 0x0300
00004267: MLOAD
00004268: DUP1
00004269: DUP3
0000426a: MUL
0000426b: DUP2
0000426c: ISZERO
0000426d: DUP4
0000426e: DUP4
0000426f: DUP4
00004270: DIV
00004271: EQ
00004272: OR
00004273: ISZERO
00004274: PUSH2 0x4490
00004277: JUMPI
00004278: SWAP1
00004279: POP
0000427a: SWAP1
0000427b: POP
0000427c: PUSH2 0x02c0
0000427f: MLOAD
00004280: DUP1
00004281: ISZERO
00004282: PUSH2 0x4490
00004285: JUMPI
00004286: DUP1
00004287: DUP3
00004288: DIV
00004289: SWAP1
0000428a: POP
0000428b: SWAP1
0000428c: POP
0000428d: DUP1
0000428e: DUP3
0000428f: SUB
00004290: DUP3
00004291: DUP2
00004292: GT
00004293: PUSH2 0x4490
00004296: JUMPI
00004297: SWAP1
00004298: POP
00004299: SWAP1
0000429a: POP
0000429b: PUSH2 0x03c0
0000429e: MSTORE
0000429f: JUMPDEST
000042a0: PUSH2 0x03e0
000042a3: MLOAD
000042a4: PUSH2 0x0340
000042a7: MLOAD
000042a8: PUSH2 0x03c0
000042ab: MLOAD
000042ac: DUP1
000042ad: DUP3
000042ae: MUL
000042af: DUP2
000042b0: ISZERO
000042b1: DUP4
000042b2: DUP4
000042b3: DUP4
000042b4: DIV
000042b5: EQ
000042b6: OR
000042b7: ISZERO
000042b8: PUSH2 0x4490
000042bb: JUMPI
000042bc: SWAP1
000042bd: POP
000042be: SWAP1
000042bf: POP
000042c0: PUSH5 0x02540be400
000042c6: DUP2
000042c7: DIV
000042c8: SWAP1
000042c9: POP
000042ca: DUP1
000042cb: DUP3
000042cc: SUB
000042cd: DUP3
000042ce: DUP2
000042cf: GT
000042d0: PUSH2 0x4490
000042d3: JUMPI
000042d4: SWAP1
000042d5: POP
000042d6: SWAP1
000042d7: POP
000042d8: PUSH2 0x03a0
000042db: MLOAD
000042dc: PUSH1 0x01
000042de: DUP2
000042df: GT
000042e0: PUSH2 0x4490
000042e3: JUMPI
000042e4: PUSH1 0x05
000042e6: SHL
000042e7: PUSH2 0x0360
000042ea: ADD
000042eb: MSTORE
000042ec: PUSH1 0x01
000042ee: ADD
000042ef: DUP2
000042f0: DUP2
000042f1: XOR
000042f2: PUSH2 0x41e3
000042f5: JUMPI
000042f6: POP
000042f7: POP
000042f8: PUSH2 0x0200
000042fb: MLOAD
000042fc: PUSH1 0x01
000042fe: DUP2
000042ff: GT
00004300: PUSH2 0x4490
00004303: JUMPI
00004304: PUSH1 0x05
00004306: SHL
00004307: PUSH2 0x0360
0000430a: ADD
0000430b: MLOAD
0000430c: PUSH2 0x0220
0000430f: MLOAD
00004310: PUSH1 0x40
00004312: MSTORE
00004313: PUSH2 0x0200
00004316: MLOAD
00004317: PUSH1 0x60
00004319: MSTORE
0000431a: PUSH2 0x0360
0000431d: MLOAD
0000431e: PUSH1 0x80
00004320: MSTORE
00004321: PUSH2 0x0380
00004324: MLOAD
00004325: PUSH1 0xa0
00004327: MSTORE
00004328: PUSH2 0x0300
0000432b: MLOAD
0000432c: PUSH1 0xc0
0000432e: MSTORE
0000432f: PUSH2 0x4339
00004332: PUSH2 0x03c0
00004335: PUSH2 0x3e50
00004338: JUMP
00004339: JUMPDEST
0000433a: PUSH2 0x03c0
0000433d: MLOAD
0000433e: DUP1
0000433f: DUP3
00004340: SUB
00004341: DUP3
00004342: DUP2
00004343: GT
00004344: PUSH2 0x4490
00004347: JUMPI
00004348: SWAP1
00004349: POP
0000434a: SWAP1
0000434b: POP
0000434c: PUSH2 0x03a0
0000434f: MSTORE
00004350: PUSH2 0x0200
00004353: MLOAD
00004354: PUSH1 0x01
00004356: DUP2
00004357: GT
00004358: PUSH2 0x4490
0000435b: JUMPI
0000435c: PUSH1 0x05
0000435e: SHL
0000435f: PUSH2 0x0280
00004362: ADD
00004363: MLOAD
00004364: PUSH2 0x0320
00004367: MLOAD
00004368: DUP1
00004369: DUP3
0000436a: SUB
0000436b: DUP3
0000436c: DUP2
0000436d: GT
0000436e: PUSH2 0x4490
00004371: JUMPI
00004372: SWAP1
00004373: POP
00004374: SWAP1
00004375: POP
00004376: PUSH8 0x0de0b6b3a7640000
0000437f: DUP2
00004380: MUL
00004381: DUP2
00004382: PUSH8 0x0de0b6b3a7640000
0000438b: DUP3
0000438c: DIV
0000438d: XOR
0000438e: PUSH2 0x4490
00004391: JUMPI
00004392: SWAP1
00004393: POP
00004394: PUSH2 0x0200
00004397: MLOAD
00004398: PUSH1 0x01
0000439a: DUP2
0000439b: GT
0000439c: PUSH2 0x4490
0000439f: JUMPI
000043a0: PUSH1 0x05
000043a2: SHL
000043a3: PUSH2 0x0240
000043a6: ADD
000043a7: MLOAD
000043a8: DUP1
000043a9: ISZERO
000043aa: PUSH2 0x4490
000043ad: JUMPI
000043ae: DUP1
000043af: DUP3
000043b0: DIV
000043b1: SWAP1
000043b2: POP
000043b3: SWAP1
000043b4: POP
000043b5: PUSH2 0x03c0
000043b8: MSTORE
000043b9: PUSH2 0x03a0
000043bc: MLOAD
000043bd: PUSH1 0x01
000043bf: DUP2
000043c0: SUB
000043c1: DUP2
000043c2: DUP2
000043c3: GT
000043c4: PUSH2 0x4490
000043c7: JUMPI
000043c8: SWAP1
000043c9: POP
000043ca: PUSH8 0x0de0b6b3a7640000
000043d3: DUP2
000043d4: MUL
000043d5: DUP2
000043d6: PUSH8 0x0de0b6b3a7640000
000043df: DUP3
000043e0: DIV
000043e1: XOR
000043e2: PUSH2 0x4490
000043e5: JUMPI
000043e6: SWAP1
000043e7: POP
000043e8: PUSH2 0x0200
000043eb: MLOAD
000043ec: PUSH1 0x01
000043ee: DUP2
000043ef: GT
000043f0: PUSH2 0x4490
000043f3: JUMPI
000043f4: PUSH1 0x05
000043f6: SHL
000043f7: PUSH2 0x0240
000043fa: ADD
000043fb: MLOAD
000043fc: DUP1
000043fd: ISZERO
000043fe: PUSH2 0x4490
00004401: JUMPI
00004402: DUP1
00004403: DUP3
00004404: DIV
00004405: SWAP1
00004406: POP
00004407: SWAP1
00004408: POP
00004409: PUSH2 0x03a0
0000440c: MSTORE
0000440d: PUSH2 0x0320
00004410: MLOAD
00004411: PUSH2 0x0200
00004414: MLOAD
00004415: PUSH1 0x01
00004417: DUP2
00004418: GT
00004419: PUSH2 0x4490
0000441c: JUMPI
0000441d: PUSH1 0x05
0000441f: SHL
00004420: PUSH2 0x0280
00004423: ADD
00004424: MSTORE
00004425: PUSH1 0x00
00004427: PUSH2 0x03e0
0000442a: MSTORE
0000442b: PUSH2 0x0320
0000442e: MLOAD
0000442f: ISZERO
00004430: PUSH2 0x4463
00004433: JUMPI
00004434: PUSH2 0x0280
00004437: MLOAD
00004438: PUSH1 0x40
0000443a: MSTORE
0000443b: PUSH2 0x02a0
0000443e: MLOAD
0000443f: PUSH1 0x60
00004441: MSTORE
00004442: PUSH2 0x0220
00004445: MLOAD
00004446: PUSH1 0x80
00004448: MSTORE
00004449: PUSH2 0x0300
0000444c: MLOAD
0000444d: PUSH1 0xa0
0000444f: MSTORE
00004450: PUSH2 0x445a
00004453: PUSH2 0x0400
00004456: PUSH2 0x3531
00004459: JUMP
0000445a: JUMPDEST
0000445b: PUSH2 0x0400
0000445e: MLOAD
0000445f: PUSH2 0x03e0
00004462: MSTORE
00004463: JUMPDEST
00004464: PUSH2 0x03a0
00004467: MLOAD
00004468: DUP2
00004469: MSTORE
0000446a: PUSH2 0x03c0
0000446d: MLOAD
0000446e: PUSH2 0x03a0
00004471: MLOAD
00004472: DUP1
00004473: DUP3
00004474: SUB
00004475: DUP3
00004476: DUP2
00004477: GT
00004478: PUSH2 0x4490
0000447b: JUMPI
0000447c: SWAP1
0000447d: POP
0000447e: SWAP1
0000447f: POP
00004480: PUSH1 0x20
00004482: DUP3
00004483: ADD
00004484: MSTORE
00004485: PUSH2 0x03e0
00004488: MLOAD
00004489: PUSH1 0x40
0000448b: DUP3
0000448c: ADD
0000448d: MSTORE
0000448e: POP
0000448f: JUMP
00004490: JUMPDEST
00004491: PUSH1 0x00
00004493: DUP1
00004494: REVERT
00004495: LOG1
00004496: PUSH6 0x767970657283
0000449d: STOP
0000449e: SUB
0000449f: SMOD
000044a0: STOP
000044a1: SIGNEXTEND

Findings

validated = confirmed for call sinks; sink observed for others
Severity Category Tool Title Confidence Validated Confirmed Details
high other detector Untrusted CALL target/value reachable 60 no no
view
trace_id: 0xdcc2388c97b7a9966ba4c7dc2f6635b51fb106d3dc57bd3aab68b78c8a5a9aec
call_targets: 0x94b4dfd9ba5865cc931195c99a2db42f3fc5d45b
target_varies: no
classification: constant_target
validation_json
{
    "sink": "CALL",
    "errors": 0,
    "status": "sink_reached",
    "attempts": 1,
    "trace_id": "0xdcc2388c97b7a9966ba4c7dc2f6635b51fb106d3dc57bd3aab68b78c8a5a9aec",
    "confirmed": false,
    "trace_mode": "callTracer",
    "call_targets": [
        "0x94b4dfd9ba5865cc931195c99a2db42f3fc5d45b"
    ],
    "matched_probe": null,
    "target_varies": false,
    "classification": "constant_target"
}
witness_json
{
    "notes": "heuristic witness; entrypoints are best-effort selectors with zeroed calldata",
    "constraints": [],
    "entrypoints": [
        {
            "calldata": "0x",
            "selector": "fallback",
            "calldata_variants": [
                "0x"
            ]
        }
    ]
}
evidence_json
{
    "examples": [
        {
            "pc": 1251,
            "opcode": "CALL",
            "returndata_checked": null,
            "value_expression_category": "constant",
            "target_expression_category": "calldata-derived"
        },
        {
            "pc": 2831,
            "opcode": "CALL",
            "returndata_checked": null,
            "value_expression_category": "constant",
            "target_expression_category": "calldata-derived"
        },
        {
            "pc": 8884,
            "opcode": "CALL",
            "returndata_checked": null,
            "value_expression_category": "constant",
            "target_expression_category": "calldata-derived"
        }
    ],
    "call_count": 12,
    "guards_detected": [],
    "untrusted_call_count": 3
}
high other detector ETH value transfer possible 55 no no
view
trace_id: 0xdcc2388c97b7a9966ba4c7dc2f6635b51fb106d3dc57bd3aab68b78c8a5a9aec
call_targets: 0x94b4dfd9ba5865cc931195c99a2db42f3fc5d45b
target_varies: no
classification: constant_target
validation_json
{
    "sink": "CALL",
    "errors": 0,
    "status": "sink_reached",
    "attempts": 1,
    "trace_id": "0xdcc2388c97b7a9966ba4c7dc2f6635b51fb106d3dc57bd3aab68b78c8a5a9aec",
    "confirmed": false,
    "trace_mode": "callTracer",
    "call_targets": [
        "0x94b4dfd9ba5865cc931195c99a2db42f3fc5d45b"
    ],
    "matched_probe": null,
    "target_varies": false,
    "classification": "constant_target"
}
witness_json
{
    "notes": "heuristic witness; entrypoints are best-effort selectors with zeroed calldata",
    "constraints": [],
    "entrypoints": [
        {
            "calldata": "0x",
            "selector": "fallback",
            "calldata_variants": [
                "0x"
            ]
        }
    ]
}
evidence_json
{
    "examples": [
        {
            "pc": 1251,
            "opcode": "CALL",
            "returndata_checked": null,
            "value_expression_category": "constant",
            "target_expression_category": "calldata-derived"
        },
        {
            "pc": 2702,
            "opcode": "CALL",
            "returndata_checked": null,
            "value_expression_category": "constant",
            "target_expression_category": "constant"
        },
        {
            "pc": 2831,
            "opcode": "CALL",
            "returndata_checked": null,
            "value_expression_category": "constant",
            "target_expression_category": "calldata-derived"
        }
    ],
    "eth_value_calls": 7,
    "guards_detected": []
}
info other cast Heavy EXTCODE*/BALANCE usage 55 no
view
evidence_json
{
    "notes": "frequent external code or balance checks; may indicate introspection or validation logic",
    "ext_balance_count": 8
}
info other cast Heavy CALL-family usage 55 no
view
evidence_json
{
    "notes": "large number of CALL/CALLCODE/STATICCALL opcodes; review external call patterns",
    "call_family_count": 26
}