Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasperSpeicher/d3ff77512ba7ede239183edb216d0a22 to your computer and use it in GitHub Desktop.
Save jasperSpeicher/d3ff77512ba7ede239183edb216d0a22 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: BSD-4-Clause
/*
* ABDK Math 64.64 Smart Contract Library. Copyright © 2019 by ABDK Consulting.
* Author: Mikhail Vladimirov <mikhail.vladimirov@gmail.com>
*/
pragma solidity ^0.8.0;
/**
* Smart contract library of mathematical functions operating with signed
* 64.64-bit fixed point numbers. Signed 64.64-bit fixed point number is
* basically a simple fraction whose numerator is signed 128-bit integer and
* denominator is 2^64. As long as denominator is always the same, there is no
* need to store it, thus in Solidity signed 64.64-bit fixed point numbers are
* represented by int128 type holding only the numerator.
*/
library ABDKMath64x64 {
/*
* Minimum value signed 64.64-bit fixed point number may have.
*/
int128 private constant MIN_64x64 = -0x80000000000000000000000000000000;
/*
* Maximum value signed 64.64-bit fixed point number may have.
*/
int128 private constant MAX_64x64 = 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
/**
* Convert signed 256-bit integer number into signed 64.64-bit fixed point
* number. Revert on overflow.
*
* @param x signed 256-bit integer number
* @return signed 64.64-bit fixed point number
*/
function fromInt (int256 x) internal pure returns (int128) {
unchecked {
require (x >= -0x8000000000000000 && x <= 0x7FFFFFFFFFFFFFFF);
return int128 (x << 64);
}
}
/**
* Convert signed 64.64 fixed point number into signed 64-bit integer number
* rounding down.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64-bit integer number
*/
function toInt (int128 x) internal pure returns (int64) {
unchecked {
return int64 (x >> 64);
}
}
/**
* Convert unsigned 256-bit integer number into signed 64.64-bit fixed point
* number. Revert on overflow.
*
* @param x unsigned 256-bit integer number
* @return signed 64.64-bit fixed point number
*/
function fromUInt (uint256 x) internal pure returns (int128) {
unchecked {
require (x <= 0x7FFFFFFFFFFFFFFF);
return int128 (int256 (x << 64));
}
}
/**
* Convert signed 64.64 fixed point number into unsigned 64-bit integer
* number rounding down. Revert on underflow.
*
* @param x signed 64.64-bit fixed point number
* @return unsigned 64-bit integer number
*/
function toUInt (int128 x) internal pure returns (uint64) {
unchecked {
require (x >= 0);
return uint64 (uint128 (x >> 64));
}
}
/**
* Convert signed 128.128 fixed point number into signed 64.64-bit fixed point
* number rounding down. Revert on overflow.
*
* @param x signed 128.128-bin fixed point number
* @return signed 64.64-bit fixed point number
*/
function from128x128 (int256 x) internal pure returns (int128) {
unchecked {
int256 result = x >> 64;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Convert signed 64.64 fixed point number into signed 128.128 fixed point
* number.
*
* @param x signed 64.64-bit fixed point number
* @return signed 128.128 fixed point number
*/
function to128x128 (int128 x) internal pure returns (int256) {
unchecked {
return int256 (x) << 64;
}
}
/**
* Calculate x + y. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function add (int128 x, int128 y) internal pure returns (int128) {
unchecked {
int256 result = int256(x) + y;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate x - y. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function sub (int128 x, int128 y) internal pure returns (int128) {
unchecked {
int256 result = int256(x) - y;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate x * y rounding down. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function mul (int128 x, int128 y) internal pure returns (int128) {
unchecked {
int256 result = int256(x) * y >> 64;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate x * y rounding towards zero, where x is signed 64.64 fixed point
* number and y is signed 256-bit integer number. Revert on overflow.
*
* @param x signed 64.64 fixed point number
* @param y signed 256-bit integer number
* @return signed 256-bit integer number
*/
function muli (int128 x, int256 y) internal pure returns (int256) {
unchecked {
if (x == MIN_64x64) {
require (y >= -0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF &&
y <= 0x1000000000000000000000000000000000000000000000000);
return -y << 63;
} else {
bool negativeResult = false;
if (x < 0) {
x = -x;
negativeResult = true;
}
if (y < 0) {
y = -y; // We rely on overflow behavior here
negativeResult = !negativeResult;
}
uint256 absoluteResult = mulu (x, uint256 (y));
if (negativeResult) {
require (absoluteResult <=
0x8000000000000000000000000000000000000000000000000000000000000000);
return -int256 (absoluteResult); // We rely on overflow behavior here
} else {
require (absoluteResult <=
0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return int256 (absoluteResult);
}
}
}
}
/**
* Calculate x * y rounding down, where x is signed 64.64 fixed point number
* and y is unsigned 256-bit integer number. Revert on overflow.
*
* @param x signed 64.64 fixed point number
* @param y unsigned 256-bit integer number
* @return unsigned 256-bit integer number
*/
function mulu (int128 x, uint256 y) internal pure returns (uint256) {
unchecked {
if (y == 0) return 0;
require (x >= 0);
uint256 lo = (uint256 (int256 (x)) * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) >> 64;
uint256 hi = uint256 (int256 (x)) * (y >> 128);
require (hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
hi <<= 64;
require (hi <=
0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF - lo);
return hi + lo;
}
}
/**
* Calculate x / y rounding towards zero. Revert on overflow or when y is
* zero.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function div (int128 x, int128 y) internal pure returns (int128) {
unchecked {
require (y != 0);
int256 result = (int256 (x) << 64) / y;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate x / y rounding towards zero, where x and y are signed 256-bit
* integer numbers. Revert on overflow or when y is zero.
*
* @param x signed 256-bit integer number
* @param y signed 256-bit integer number
* @return signed 64.64-bit fixed point number
*/
function divi (int256 x, int256 y) internal pure returns (int128) {
unchecked {
require (y != 0);
bool negativeResult = false;
if (x < 0) {
x = -x; // We rely on overflow behavior here
negativeResult = true;
}
if (y < 0) {
y = -y; // We rely on overflow behavior here
negativeResult = !negativeResult;
}
uint128 absoluteResult = divuu (uint256 (x), uint256 (y));
if (negativeResult) {
require (absoluteResult <= 0x80000000000000000000000000000000);
return -int128 (absoluteResult); // We rely on overflow behavior here
} else {
require (absoluteResult <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return int128 (absoluteResult); // We rely on overflow behavior here
}
}
}
/**
* Calculate x / y rounding towards zero, where x and y are unsigned 256-bit
* integer numbers. Revert on overflow or when y is zero.
*
* @param x unsigned 256-bit integer number
* @param y unsigned 256-bit integer number
* @return signed 64.64-bit fixed point number
*/
function divu (uint256 x, uint256 y) internal pure returns (int128) {
unchecked {
require (y != 0);
uint128 result = divuu (x, y);
require (result <= uint128 (MAX_64x64));
return int128 (result);
}
}
/**
* Calculate -x. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function neg (int128 x) internal pure returns (int128) {
unchecked {
require (x != MIN_64x64);
return -x;
}
}
/**
* Calculate |x|. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function abs (int128 x) internal pure returns (int128) {
unchecked {
require (x != MIN_64x64);
return x < 0 ? -x : x;
}
}
/**
* Calculate 1 / x rounding towards zero. Revert on overflow or when x is
* zero.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function inv (int128 x) internal pure returns (int128) {
unchecked {
require (x != 0);
int256 result = int256 (0x100000000000000000000000000000000) / x;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate arithmetics average of x and y, i.e. (x + y) / 2 rounding down.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function avg (int128 x, int128 y) internal pure returns (int128) {
unchecked {
return int128 ((int256 (x) + int256 (y)) >> 1);
}
}
/**
* Calculate geometric average of x and y, i.e. sqrt (x * y) rounding down.
* Revert on overflow or in case x * y is negative.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function gavg (int128 x, int128 y) internal pure returns (int128) {
unchecked {
int256 m = int256 (x) * int256 (y);
require (m >= 0);
require (m <
0x4000000000000000000000000000000000000000000000000000000000000000);
return int128 (sqrtu (uint256 (m)));
}
}
/**
* Calculate x^y assuming 0^0 is 1, where x is signed 64.64 fixed point number
* and y is unsigned 256-bit integer number. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @param y uint256 value
* @return signed 64.64-bit fixed point number
*/
function pow (int128 x, uint256 y) internal pure returns (int128) {
unchecked {
bool negative = x < 0 && y & 1 == 1;
uint256 absX = uint128 (x < 0 ? -x : x);
uint256 absResult;
absResult = 0x100000000000000000000000000000000;
if (absX <= 0x10000000000000000) {
absX <<= 63;
while (y != 0) {
if (y & 0x1 != 0) {
absResult = absResult * absX >> 127;
}
absX = absX * absX >> 127;
if (y & 0x2 != 0) {
absResult = absResult * absX >> 127;
}
absX = absX * absX >> 127;
if (y & 0x4 != 0) {
absResult = absResult * absX >> 127;
}
absX = absX * absX >> 127;
if (y & 0x8 != 0) {
absResult = absResult * absX >> 127;
}
absX = absX * absX >> 127;
y >>= 4;
}
absResult >>= 64;
} else {
uint256 absXShift = 63;
if (absX < 0x1000000000000000000000000) { absX <<= 32; absXShift -= 32; }
if (absX < 0x10000000000000000000000000000) { absX <<= 16; absXShift -= 16; }
if (absX < 0x1000000000000000000000000000000) { absX <<= 8; absXShift -= 8; }
if (absX < 0x10000000000000000000000000000000) { absX <<= 4; absXShift -= 4; }
if (absX < 0x40000000000000000000000000000000) { absX <<= 2; absXShift -= 2; }
if (absX < 0x80000000000000000000000000000000) { absX <<= 1; absXShift -= 1; }
uint256 resultShift = 0;
while (y != 0) {
require (absXShift < 64);
if (y & 0x1 != 0) {
absResult = absResult * absX >> 127;
resultShift += absXShift;
if (absResult > 0x100000000000000000000000000000000) {
absResult >>= 1;
resultShift += 1;
}
}
absX = absX * absX >> 127;
absXShift <<= 1;
if (absX >= 0x100000000000000000000000000000000) {
absX >>= 1;
absXShift += 1;
}
y >>= 1;
}
require (resultShift < 64);
absResult >>= 64 - resultShift;
}
int256 result = negative ? -int256 (absResult) : int256 (absResult);
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate sqrt (x) rounding down. Revert if x < 0.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function sqrt (int128 x) internal pure returns (int128) {
unchecked {
require (x >= 0);
return int128 (sqrtu (uint256 (int256 (x)) << 64));
}
}
/**
* Calculate binary logarithm of x. Revert if x <= 0.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function log_2 (int128 x) internal pure returns (int128) {
unchecked {
require (x > 0);
int256 msb = 0;
int256 xc = x;
if (xc >= 0x10000000000000000) { xc >>= 64; msb += 64; }
if (xc >= 0x100000000) { xc >>= 32; msb += 32; }
if (xc >= 0x10000) { xc >>= 16; msb += 16; }
if (xc >= 0x100) { xc >>= 8; msb += 8; }
if (xc >= 0x10) { xc >>= 4; msb += 4; }
if (xc >= 0x4) { xc >>= 2; msb += 2; }
if (xc >= 0x2) msb += 1; // No need to shift xc anymore
int256 result = msb - 64 << 64;
uint256 ux = uint256 (int256 (x)) << uint256 (127 - msb);
for (int256 bit = 0x8000000000000000; bit > 0; bit >>= 1) {
ux *= ux;
uint256 b = ux >> 255;
ux >>= 127 + b;
result += bit * int256 (b);
}
return int128 (result);
}
}
/**
* Calculate natural logarithm of x. Revert if x <= 0.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function ln (int128 x) internal pure returns (int128) {
unchecked {
require (x > 0);
return int128 (int256 (
uint256 (int256 (log_2 (x))) * 0xB17217F7D1CF79ABC9E3B39803F2F6AF >> 128));
}
}
/**
* Calculate binary exponent of x. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function exp_2 (int128 x) internal pure returns (int128) {
unchecked {
require (x < 0x400000000000000000); // Overflow
if (x < -0x400000000000000000) return 0; // Underflow
uint256 result = 0x80000000000000000000000000000000;
if (x & 0x8000000000000000 > 0)
result = result * 0x16A09E667F3BCC908B2FB1366EA957D3E >> 128;
if (x & 0x4000000000000000 > 0)
result = result * 0x1306FE0A31B7152DE8D5A46305C85EDEC >> 128;
if (x & 0x2000000000000000 > 0)
result = result * 0x1172B83C7D517ADCDF7C8C50EB14A791F >> 128;
if (x & 0x1000000000000000 > 0)
result = result * 0x10B5586CF9890F6298B92B71842A98363 >> 128;
if (x & 0x800000000000000 > 0)
result = result * 0x1059B0D31585743AE7C548EB68CA417FD >> 128;
if (x & 0x400000000000000 > 0)
result = result * 0x102C9A3E778060EE6F7CACA4F7A29BDE8 >> 128;
if (x & 0x200000000000000 > 0)
result = result * 0x10163DA9FB33356D84A66AE336DCDFA3F >> 128;
if (x & 0x100000000000000 > 0)
result = result * 0x100B1AFA5ABCBED6129AB13EC11DC9543 >> 128;
if (x & 0x80000000000000 > 0)
result = result * 0x10058C86DA1C09EA1FF19D294CF2F679B >> 128;
if (x & 0x40000000000000 > 0)
result = result * 0x1002C605E2E8CEC506D21BFC89A23A00F >> 128;
if (x & 0x20000000000000 > 0)
result = result * 0x100162F3904051FA128BCA9C55C31E5DF >> 128;
if (x & 0x10000000000000 > 0)
result = result * 0x1000B175EFFDC76BA38E31671CA939725 >> 128;
if (x & 0x8000000000000 > 0)
result = result * 0x100058BA01FB9F96D6CACD4B180917C3D >> 128;
if (x & 0x4000000000000 > 0)
result = result * 0x10002C5CC37DA9491D0985C348C68E7B3 >> 128;
if (x & 0x2000000000000 > 0)
result = result * 0x1000162E525EE054754457D5995292026 >> 128;
if (x & 0x1000000000000 > 0)
result = result * 0x10000B17255775C040618BF4A4ADE83FC >> 128;
if (x & 0x800000000000 > 0)
result = result * 0x1000058B91B5BC9AE2EED81E9B7D4CFAB >> 128;
if (x & 0x400000000000 > 0)
result = result * 0x100002C5C89D5EC6CA4D7C8ACC017B7C9 >> 128;
if (x & 0x200000000000 > 0)
result = result * 0x10000162E43F4F831060E02D839A9D16D >> 128;
if (x & 0x100000000000 > 0)
result = result * 0x100000B1721BCFC99D9F890EA06911763 >> 128;
if (x & 0x80000000000 > 0)
result = result * 0x10000058B90CF1E6D97F9CA14DBCC1628 >> 128;
if (x & 0x40000000000 > 0)
result = result * 0x1000002C5C863B73F016468F6BAC5CA2B >> 128;
if (x & 0x20000000000 > 0)
result = result * 0x100000162E430E5A18F6119E3C02282A5 >> 128;
if (x & 0x10000000000 > 0)
result = result * 0x1000000B1721835514B86E6D96EFD1BFE >> 128;
if (x & 0x8000000000 > 0)
result = result * 0x100000058B90C0B48C6BE5DF846C5B2EF >> 128;
if (x & 0x4000000000 > 0)
result = result * 0x10000002C5C8601CC6B9E94213C72737A >> 128;
if (x & 0x2000000000 > 0)
result = result * 0x1000000162E42FFF037DF38AA2B219F06 >> 128;
if (x & 0x1000000000 > 0)
result = result * 0x10000000B17217FBA9C739AA5819F44F9 >> 128;
if (x & 0x800000000 > 0)
result = result * 0x1000000058B90BFCDEE5ACD3C1CEDC823 >> 128;
if (x & 0x400000000 > 0)
result = result * 0x100000002C5C85FE31F35A6A30DA1BE50 >> 128;
if (x & 0x200000000 > 0)
result = result * 0x10000000162E42FF0999CE3541B9FFFCF >> 128;
if (x & 0x100000000 > 0)
result = result * 0x100000000B17217F80F4EF5AADDA45554 >> 128;
if (x & 0x80000000 > 0)
result = result * 0x10000000058B90BFBF8479BD5A81B51AD >> 128;
if (x & 0x40000000 > 0)
result = result * 0x1000000002C5C85FDF84BD62AE30A74CC >> 128;
if (x & 0x20000000 > 0)
result = result * 0x100000000162E42FEFB2FED257559BDAA >> 128;
if (x & 0x10000000 > 0)
result = result * 0x1000000000B17217F7D5A7716BBA4A9AE >> 128;
if (x & 0x8000000 > 0)
result = result * 0x100000000058B90BFBE9DDBAC5E109CCE >> 128;
if (x & 0x4000000 > 0)
result = result * 0x10000000002C5C85FDF4B15DE6F17EB0D >> 128;
if (x & 0x2000000 > 0)
result = result * 0x1000000000162E42FEFA494F1478FDE05 >> 128;
if (x & 0x1000000 > 0)
result = result * 0x10000000000B17217F7D20CF927C8E94C >> 128;
if (x & 0x800000 > 0)
result = result * 0x1000000000058B90BFBE8F71CB4E4B33D >> 128;
if (x & 0x400000 > 0)
result = result * 0x100000000002C5C85FDF477B662B26945 >> 128;
if (x & 0x200000 > 0)
result = result * 0x10000000000162E42FEFA3AE53369388C >> 128;
if (x & 0x100000 > 0)
result = result * 0x100000000000B17217F7D1D351A389D40 >> 128;
if (x & 0x80000 > 0)
result = result * 0x10000000000058B90BFBE8E8B2D3D4EDE >> 128;
if (x & 0x40000 > 0)
result = result * 0x1000000000002C5C85FDF4741BEA6E77E >> 128;
if (x & 0x20000 > 0)
result = result * 0x100000000000162E42FEFA39FE95583C2 >> 128;
if (x & 0x10000 > 0)
result = result * 0x1000000000000B17217F7D1CFB72B45E1 >> 128;
if (x & 0x8000 > 0)
result = result * 0x100000000000058B90BFBE8E7CC35C3F0 >> 128;
if (x & 0x4000 > 0)
result = result * 0x10000000000002C5C85FDF473E242EA38 >> 128;
if (x & 0x2000 > 0)
result = result * 0x1000000000000162E42FEFA39F02B772C >> 128;
if (x & 0x1000 > 0)
result = result * 0x10000000000000B17217F7D1CF7D83C1A >> 128;
if (x & 0x800 > 0)
result = result * 0x1000000000000058B90BFBE8E7BDCBE2E >> 128;
if (x & 0x400 > 0)
result = result * 0x100000000000002C5C85FDF473DEA871F >> 128;
if (x & 0x200 > 0)
result = result * 0x10000000000000162E42FEFA39EF44D91 >> 128;
if (x & 0x100 > 0)
result = result * 0x100000000000000B17217F7D1CF79E949 >> 128;
if (x & 0x80 > 0)
result = result * 0x10000000000000058B90BFBE8E7BCE544 >> 128;
if (x & 0x40 > 0)
result = result * 0x1000000000000002C5C85FDF473DE6ECA >> 128;
if (x & 0x20 > 0)
result = result * 0x100000000000000162E42FEFA39EF366F >> 128;
if (x & 0x10 > 0)
result = result * 0x1000000000000000B17217F7D1CF79AFA >> 128;
if (x & 0x8 > 0)
result = result * 0x100000000000000058B90BFBE8E7BCD6D >> 128;
if (x & 0x4 > 0)
result = result * 0x10000000000000002C5C85FDF473DE6B2 >> 128;
if (x & 0x2 > 0)
result = result * 0x1000000000000000162E42FEFA39EF358 >> 128;
if (x & 0x1 > 0)
result = result * 0x10000000000000000B17217F7D1CF79AB >> 128;
result >>= uint256 (int256 (63 - (x >> 64)));
require (result <= uint256 (int256 (MAX_64x64)));
return int128 (int256 (result));
}
}
/**
* Calculate natural exponent of x. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function exp (int128 x) internal pure returns (int128) {
unchecked {
require (x < 0x400000000000000000); // Overflow
if (x < -0x400000000000000000) return 0; // Underflow
return exp_2 (
int128 (int256 (x) * 0x171547652B82FE1777D0FFDA0D23A7D12 >> 128));
}
}
/**
* Calculate x / y rounding towards zero, where x and y are unsigned 256-bit
* integer numbers. Revert on overflow or when y is zero.
*
* @param x unsigned 256-bit integer number
* @param y unsigned 256-bit integer number
* @return unsigned 64.64-bit fixed point number
*/
function divuu (uint256 x, uint256 y) private pure returns (uint128) {
unchecked {
require (y != 0);
uint256 result;
if (x <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
result = (x << 64) / y;
else {
uint256 msb = 192;
uint256 xc = x >> 192;
if (xc >= 0x100000000) { xc >>= 32; msb += 32; }
if (xc >= 0x10000) { xc >>= 16; msb += 16; }
if (xc >= 0x100) { xc >>= 8; msb += 8; }
if (xc >= 0x10) { xc >>= 4; msb += 4; }
if (xc >= 0x4) { xc >>= 2; msb += 2; }
if (xc >= 0x2) msb += 1; // No need to shift xc anymore
result = (x << 255 - msb) / ((y - 1 >> msb - 191) + 1);
require (result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
uint256 hi = result * (y >> 128);
uint256 lo = result * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
uint256 xh = x >> 192;
uint256 xl = x << 64;
if (xl < lo) xh -= 1;
xl -= lo; // We rely on overflow behavior here
lo = hi << 128;
if (xl < lo) xh -= 1;
xl -= lo; // We rely on overflow behavior here
assert (xh == hi >> 128);
result += xl / y;
}
require (result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return uint128 (result);
}
}
/**
* Calculate sqrt (x) rounding down, where x is unsigned 256-bit integer
* number.
*
* @param x unsigned 256-bit integer number
* @return unsigned 128-bit integer number
*/
function sqrtu (uint256 x) private pure returns (uint128) {
unchecked {
if (x == 0) return 0;
else {
uint256 xx = x;
uint256 r = 1;
if (xx >= 0x100000000000000000000000000000000) { xx >>= 128; r <<= 64; }
if (xx >= 0x10000000000000000) { xx >>= 64; r <<= 32; }
if (xx >= 0x100000000) { xx >>= 32; r <<= 16; }
if (xx >= 0x10000) { xx >>= 16; r <<= 8; }
if (xx >= 0x100) { xx >>= 8; r <<= 4; }
if (xx >= 0x10) { xx >>= 4; r <<= 2; }
if (xx >= 0x8) { r <<= 1; }
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1; // Seven iterations should be enough
uint256 r1 = x / r;
return uint128 (r < r1 ? r : r1);
}
}
}
}
// SPDX-License-Identifier: BSD-4-Clause
/*
* ABDK Math Quad Smart Contract Library. Copyright © 2019 by ABDK Consulting.
* Author: Mikhail Vladimirov <mikhail.vladimirov@gmail.com>
*/
pragma solidity ^0.8.0;
/**
* Smart contract library of mathematical functions operating with IEEE 754
* quadruple-precision binary floating-point numbers (quadruple precision
* numbers). As long as quadruple precision numbers are 16-bytes long, they are
* represented by bytes16 type.
*/
library ABDKMathQuad {
/*
* 0.
*/
bytes16 private constant POSITIVE_ZERO = 0x00000000000000000000000000000000;
/*
* -0.
*/
bytes16 private constant NEGATIVE_ZERO = 0x80000000000000000000000000000000;
/*
* +Infinity.
*/
bytes16 private constant POSITIVE_INFINITY = 0x7FFF0000000000000000000000000000;
/*
* -Infinity.
*/
bytes16 private constant NEGATIVE_INFINITY = 0xFFFF0000000000000000000000000000;
/*
* Canonical NaN value.
*/
bytes16 private constant NaN = 0x7FFF8000000000000000000000000000;
/**
* Convert signed 256-bit integer number into quadruple precision number.
*
* @param x signed 256-bit integer number
* @return quadruple precision number
*/
function fromInt (int256 x) internal pure returns (bytes16) {
unchecked {
if (x == 0) return bytes16 (0);
else {
// We rely on overflow behavior here
uint256 result = uint256 (x > 0 ? x : -x);
uint256 msb = mostSignificantBit (result);
if (msb < 112) result <<= 112 - msb;
else if (msb > 112) result >>= msb - 112;
result = result & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF | 16383 + msb << 112;
if (x < 0) result |= 0x80000000000000000000000000000000;
return bytes16 (uint128 (result));
}
}
}
/**
* Convert quadruple precision number into signed 256-bit integer number
* rounding towards zero. Revert on overflow.
*
* @param x quadruple precision number
* @return signed 256-bit integer number
*/
function toInt (bytes16 x) internal pure returns (int256) {
unchecked {
uint256 exponent = uint128 (x) >> 112 & 0x7FFF;
require (exponent <= 16638); // Overflow
if (exponent < 16383) return 0; // Underflow
uint256 result = uint256 (uint128 (x)) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF |
0x10000000000000000000000000000;
if (exponent < 16495) result >>= 16495 - exponent;
else if (exponent > 16495) result <<= exponent - 16495;
if (uint128 (x) >= 0x80000000000000000000000000000000) { // Negative
require (result <= 0x8000000000000000000000000000000000000000000000000000000000000000);
return -int256 (result); // We rely on overflow behavior here
} else {
require (result <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return int256 (result);
}
}
}
/**
* Convert unsigned 256-bit integer number into quadruple precision number.
*
* @param x unsigned 256-bit integer number
* @return quadruple precision number
*/
function fromUInt (uint256 x) internal pure returns (bytes16) {
unchecked {
if (x == 0) return bytes16 (0);
else {
uint256 result = x;
uint256 msb = mostSignificantBit (result);
if (msb < 112) result <<= 112 - msb;
else if (msb > 112) result >>= msb - 112;
result = result & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF | 16383 + msb << 112;
return bytes16 (uint128 (result));
}
}
}
/**
* Convert quadruple precision number into unsigned 256-bit integer number
* rounding towards zero. Revert on underflow. Note, that negative floating
* point numbers in range (-1.0 .. 0.0) may be converted to unsigned integer
* without error, because they are rounded to zero.
*
* @param x quadruple precision number
* @return unsigned 256-bit integer number
*/
function toUInt (bytes16 x) internal pure returns (uint256) {
unchecked {
uint256 exponent = uint128 (x) >> 112 & 0x7FFF;
if (exponent < 16383) return 0; // Underflow
require (uint128 (x) < 0x80000000000000000000000000000000); // Negative
require (exponent <= 16638); // Overflow
uint256 result = uint256 (uint128 (x)) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF |
0x10000000000000000000000000000;
if (exponent < 16495) result >>= 16495 - exponent;
else if (exponent > 16495) result <<= exponent - 16495;
return result;
}
}
/**
* Convert signed 128.128 bit fixed point number into quadruple precision
* number.
*
* @param x signed 128.128 bit fixed point number
* @return quadruple precision number
*/
function from128x128 (int256 x) internal pure returns (bytes16) {
unchecked {
if (x == 0) return bytes16 (0);
else {
// We rely on overflow behavior here
uint256 result = uint256 (x > 0 ? x : -x);
uint256 msb = mostSignificantBit (result);
if (msb < 112) result <<= 112 - msb;
else if (msb > 112) result >>= msb - 112;
result = result & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF | 16255 + msb << 112;
if (x < 0) result |= 0x80000000000000000000000000000000;
return bytes16 (uint128 (result));
}
}
}
/**
* Convert quadruple precision number into signed 128.128 bit fixed point
* number. Revert on overflow.
*
* @param x quadruple precision number
* @return signed 128.128 bit fixed point number
*/
function to128x128 (bytes16 x) internal pure returns (int256) {
unchecked {
uint256 exponent = uint128 (x) >> 112 & 0x7FFF;
require (exponent <= 16510); // Overflow
if (exponent < 16255) return 0; // Underflow
uint256 result = uint256 (uint128 (x)) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF |
0x10000000000000000000000000000;
if (exponent < 16367) result >>= 16367 - exponent;
else if (exponent > 16367) result <<= exponent - 16367;
if (uint128 (x) >= 0x80000000000000000000000000000000) { // Negative
require (result <= 0x8000000000000000000000000000000000000000000000000000000000000000);
return -int256 (result); // We rely on overflow behavior here
} else {
require (result <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return int256 (result);
}
}
}
/**
* Convert signed 64.64 bit fixed point number into quadruple precision
* number.
*
* @param x signed 64.64 bit fixed point number
* @return quadruple precision number
*/
function from64x64 (int128 x) internal pure returns (bytes16) {
unchecked {
if (x == 0) return bytes16 (0);
else {
// We rely on overflow behavior here
uint256 result = uint128 (x > 0 ? x : -x);
uint256 msb = mostSignificantBit (result);
if (msb < 112) result <<= 112 - msb;
else if (msb > 112) result >>= msb - 112;
result = result & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF | 16319 + msb << 112;
if (x < 0) result |= 0x80000000000000000000000000000000;
return bytes16 (uint128 (result));
}
}
}
/**
* Convert quadruple precision number into signed 64.64 bit fixed point
* number. Revert on overflow.
*
* @param x quadruple precision number
* @return signed 64.64 bit fixed point number
*/
function to64x64 (bytes16 x) internal pure returns (int128) {
unchecked {
uint256 exponent = uint128 (x) >> 112 & 0x7FFF;
require (exponent <= 16446); // Overflow
if (exponent < 16319) return 0; // Underflow
uint256 result = uint256 (uint128 (x)) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF |
0x10000000000000000000000000000;
if (exponent < 16431) result >>= 16431 - exponent;
else if (exponent > 16431) result <<= exponent - 16431;
if (uint128 (x) >= 0x80000000000000000000000000000000) { // Negative
require (result <= 0x80000000000000000000000000000000);
return -int128 (int256 (result)); // We rely on overflow behavior here
} else {
require (result <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return int128 (int256 (result));
}
}
}
/**
* Convert octuple precision number into quadruple precision number.
*
* @param x octuple precision number
* @return quadruple precision number
*/
function fromOctuple (bytes32 x) internal pure returns (bytes16) {
unchecked {
bool negative = x & 0x8000000000000000000000000000000000000000000000000000000000000000 > 0;
uint256 exponent = uint256 (x) >> 236 & 0x7FFFF;
uint256 significand = uint256 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (exponent == 0x7FFFF) {
if (significand > 0) return NaN;
else return negative ? NEGATIVE_INFINITY : POSITIVE_INFINITY;
}
if (exponent > 278526)
return negative ? NEGATIVE_INFINITY : POSITIVE_INFINITY;
else if (exponent < 245649)
return negative ? NEGATIVE_ZERO : POSITIVE_ZERO;
else if (exponent < 245761) {
significand = (significand | 0x100000000000000000000000000000000000000000000000000000000000) >> 245885 - exponent;
exponent = 0;
} else {
significand >>= 124;
exponent -= 245760;
}
uint128 result = uint128 (significand | exponent << 112);
if (negative) result |= 0x80000000000000000000000000000000;
return bytes16 (result);
}
}
/**
* Convert quadruple precision number into octuple precision number.
*
* @param x quadruple precision number
* @return octuple precision number
*/
function toOctuple (bytes16 x) internal pure returns (bytes32) {
unchecked {
uint256 exponent = uint128 (x) >> 112 & 0x7FFF;
uint256 result = uint128 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (exponent == 0x7FFF) exponent = 0x7FFFF; // Infinity or NaN
else if (exponent == 0) {
if (result > 0) {
uint256 msb = mostSignificantBit (result);
result = result << 236 - msb & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
exponent = 245649 + msb;
}
} else {
result <<= 124;
exponent += 245760;
}
result |= exponent << 236;
if (uint128 (x) >= 0x80000000000000000000000000000000)
result |= 0x8000000000000000000000000000000000000000000000000000000000000000;
return bytes32 (result);
}
}
/**
* Convert double precision number into quadruple precision number.
*
* @param x double precision number
* @return quadruple precision number
*/
function fromDouble (bytes8 x) internal pure returns (bytes16) {
unchecked {
uint256 exponent = uint64 (x) >> 52 & 0x7FF;
uint256 result = uint64 (x) & 0xFFFFFFFFFFFFF;
if (exponent == 0x7FF) exponent = 0x7FFF; // Infinity or NaN
else if (exponent == 0) {
if (result > 0) {
uint256 msb = mostSignificantBit (result);
result = result << 112 - msb & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
exponent = 15309 + msb;
}
} else {
result <<= 60;
exponent += 15360;
}
result |= exponent << 112;
if (x & 0x8000000000000000 > 0)
result |= 0x80000000000000000000000000000000;
return bytes16 (uint128 (result));
}
}
/**
* Convert quadruple precision number into double precision number.
*
* @param x quadruple precision number
* @return double precision number
*/
function toDouble (bytes16 x) internal pure returns (bytes8) {
unchecked {
bool negative = uint128 (x) >= 0x80000000000000000000000000000000;
uint256 exponent = uint128 (x) >> 112 & 0x7FFF;
uint256 significand = uint128 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (exponent == 0x7FFF) {
if (significand > 0) return 0x7FF8000000000000; // NaN
else return negative ?
bytes8 (0xFFF0000000000000) : // -Infinity
bytes8 (0x7FF0000000000000); // Infinity
}
if (exponent > 17406)
return negative ?
bytes8 (0xFFF0000000000000) : // -Infinity
bytes8 (0x7FF0000000000000); // Infinity
else if (exponent < 15309)
return negative ?
bytes8 (0x8000000000000000) : // -0
bytes8 (0x0000000000000000); // 0
else if (exponent < 15361) {
significand = (significand | 0x10000000000000000000000000000) >> 15421 - exponent;
exponent = 0;
} else {
significand >>= 60;
exponent -= 15360;
}
uint64 result = uint64 (significand | exponent << 52);
if (negative) result |= 0x8000000000000000;
return bytes8 (result);
}
}
/**
* Test whether given quadruple precision number is NaN.
*
* @param x quadruple precision number
* @return true if x is NaN, false otherwise
*/
function isNaN (bytes16 x) internal pure returns (bool) {
unchecked {
return uint128 (x) & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF >
0x7FFF0000000000000000000000000000;
}
}
/**
* Test whether given quadruple precision number is positive or negative
* infinity.
*
* @param x quadruple precision number
* @return true if x is positive or negative infinity, false otherwise
*/
function isInfinity (bytes16 x) internal pure returns (bool) {
unchecked {
return uint128 (x) & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF ==
0x7FFF0000000000000000000000000000;
}
}
/**
* Calculate sign of x, i.e. -1 if x is negative, 0 if x if zero, and 1 if x
* is positive. Note that sign (-0) is zero. Revert if x is NaN.
*
* @param x quadruple precision number
* @return sign of x
*/
function sign (bytes16 x) internal pure returns (int8) {
unchecked {
uint128 absoluteX = uint128 (x) & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
require (absoluteX <= 0x7FFF0000000000000000000000000000); // Not NaN
if (absoluteX == 0) return 0;
else if (uint128 (x) >= 0x80000000000000000000000000000000) return -1;
else return 1;
}
}
/**
* Calculate sign (x - y). Revert if either argument is NaN, or both
* arguments are infinities of the same sign.
*
* @param x quadruple precision number
* @param y quadruple precision number
* @return sign (x - y)
*/
function cmp (bytes16 x, bytes16 y) internal pure returns (int8) {
unchecked {
uint128 absoluteX = uint128 (x) & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
require (absoluteX <= 0x7FFF0000000000000000000000000000); // Not NaN
uint128 absoluteY = uint128 (y) & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
require (absoluteY <= 0x7FFF0000000000000000000000000000); // Not NaN
// Not infinities of the same sign
require (x != y || absoluteX < 0x7FFF0000000000000000000000000000);
if (x == y) return 0;
else {
bool negativeX = uint128 (x) >= 0x80000000000000000000000000000000;
bool negativeY = uint128 (y) >= 0x80000000000000000000000000000000;
if (negativeX) {
if (negativeY) return absoluteX > absoluteY ? -1 : int8 (1);
else return -1;
} else {
if (negativeY) return 1;
else return absoluteX > absoluteY ? int8 (1) : -1;
}
}
}
}
/**
* Test whether x equals y. NaN, infinity, and -infinity are not equal to
* anything.
*
* @param x quadruple precision number
* @param y quadruple precision number
* @return true if x equals to y, false otherwise
*/
function eq (bytes16 x, bytes16 y) internal pure returns (bool) {
unchecked {
if (x == y) {
return uint128 (x) & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF <
0x7FFF0000000000000000000000000000;
} else return false;
}
}
/**
* Calculate x + y. Special values behave in the following way:
*
* NaN + x = NaN for any x.
* Infinity + x = Infinity for any finite x.
* -Infinity + x = -Infinity for any finite x.
* Infinity + Infinity = Infinity.
* -Infinity + -Infinity = -Infinity.
* Infinity + -Infinity = -Infinity + Infinity = NaN.
*
* @param x quadruple precision number
* @param y quadruple precision number
* @return quadruple precision number
*/
function add (bytes16 x, bytes16 y) internal pure returns (bytes16) {
unchecked {
uint256 xExponent = uint128 (x) >> 112 & 0x7FFF;
uint256 yExponent = uint128 (y) >> 112 & 0x7FFF;
if (xExponent == 0x7FFF) {
if (yExponent == 0x7FFF) {
if (x == y) return x;
else return NaN;
} else return x;
} else if (yExponent == 0x7FFF) return y;
else {
bool xSign = uint128 (x) >= 0x80000000000000000000000000000000;
uint256 xSignifier = uint128 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (xExponent == 0) xExponent = 1;
else xSignifier |= 0x10000000000000000000000000000;
bool ySign = uint128 (y) >= 0x80000000000000000000000000000000;
uint256 ySignifier = uint128 (y) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (yExponent == 0) yExponent = 1;
else ySignifier |= 0x10000000000000000000000000000;
if (xSignifier == 0) return y == NEGATIVE_ZERO ? POSITIVE_ZERO : y;
else if (ySignifier == 0) return x == NEGATIVE_ZERO ? POSITIVE_ZERO : x;
else {
int256 delta = int256 (xExponent) - int256 (yExponent);
if (xSign == ySign) {
if (delta > 112) return x;
else if (delta > 0) ySignifier >>= uint256 (delta);
else if (delta < -112) return y;
else if (delta < 0) {
xSignifier >>= uint256 (-delta);
xExponent = yExponent;
}
xSignifier += ySignifier;
if (xSignifier >= 0x20000000000000000000000000000) {
xSignifier >>= 1;
xExponent += 1;
}
if (xExponent == 0x7FFF)
return xSign ? NEGATIVE_INFINITY : POSITIVE_INFINITY;
else {
if (xSignifier < 0x10000000000000000000000000000) xExponent = 0;
else xSignifier &= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
return bytes16 (uint128 (
(xSign ? 0x80000000000000000000000000000000 : 0) |
(xExponent << 112) |
xSignifier));
}
} else {
if (delta > 0) {
xSignifier <<= 1;
xExponent -= 1;
} else if (delta < 0) {
ySignifier <<= 1;
xExponent = yExponent - 1;
}
if (delta > 112) ySignifier = 1;
else if (delta > 1) ySignifier = (ySignifier - 1 >> uint256 (delta - 1)) + 1;
else if (delta < -112) xSignifier = 1;
else if (delta < -1) xSignifier = (xSignifier - 1 >> uint256 (-delta - 1)) + 1;
if (xSignifier >= ySignifier) xSignifier -= ySignifier;
else {
xSignifier = ySignifier - xSignifier;
xSign = ySign;
}
if (xSignifier == 0)
return POSITIVE_ZERO;
uint256 msb = mostSignificantBit (xSignifier);
if (msb == 113) {
xSignifier = xSignifier >> 1 & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
xExponent += 1;
} else if (msb < 112) {
uint256 shift = 112 - msb;
if (xExponent > shift) {
xSignifier = xSignifier << shift & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
xExponent -= shift;
} else {
xSignifier <<= xExponent - 1;
xExponent = 0;
}
} else xSignifier &= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (xExponent == 0x7FFF)
return xSign ? NEGATIVE_INFINITY : POSITIVE_INFINITY;
else return bytes16 (uint128 (
(xSign ? 0x80000000000000000000000000000000 : 0) |
(xExponent << 112) |
xSignifier));
}
}
}
}
}
/**
* Calculate x - y. Special values behave in the following way:
*
* NaN - x = NaN for any x.
* Infinity - x = Infinity for any finite x.
* -Infinity - x = -Infinity for any finite x.
* Infinity - -Infinity = Infinity.
* -Infinity - Infinity = -Infinity.
* Infinity - Infinity = -Infinity - -Infinity = NaN.
*
* @param x quadruple precision number
* @param y quadruple precision number
* @return quadruple precision number
*/
function sub (bytes16 x, bytes16 y) internal pure returns (bytes16) {
unchecked {
return add (x, y ^ 0x80000000000000000000000000000000);
}
}
/**
* Calculate x * y. Special values behave in the following way:
*
* NaN * x = NaN for any x.
* Infinity * x = Infinity for any finite positive x.
* Infinity * x = -Infinity for any finite negative x.
* -Infinity * x = -Infinity for any finite positive x.
* -Infinity * x = Infinity for any finite negative x.
* Infinity * 0 = NaN.
* -Infinity * 0 = NaN.
* Infinity * Infinity = Infinity.
* Infinity * -Infinity = -Infinity.
* -Infinity * Infinity = -Infinity.
* -Infinity * -Infinity = Infinity.
*
* @param x quadruple precision number
* @param y quadruple precision number
* @return quadruple precision number
*/
function mul (bytes16 x, bytes16 y) internal pure returns (bytes16) {
unchecked {
uint256 xExponent = uint128 (x) >> 112 & 0x7FFF;
uint256 yExponent = uint128 (y) >> 112 & 0x7FFF;
if (xExponent == 0x7FFF) {
if (yExponent == 0x7FFF) {
if (x == y) return x ^ y & 0x80000000000000000000000000000000;
else if (x ^ y == 0x80000000000000000000000000000000) return x | y;
else return NaN;
} else {
if (y & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF == 0) return NaN;
else return x ^ y & 0x80000000000000000000000000000000;
}
} else if (yExponent == 0x7FFF) {
if (x & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF == 0) return NaN;
else return y ^ x & 0x80000000000000000000000000000000;
} else {
uint256 xSignifier = uint128 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (xExponent == 0) xExponent = 1;
else xSignifier |= 0x10000000000000000000000000000;
uint256 ySignifier = uint128 (y) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (yExponent == 0) yExponent = 1;
else ySignifier |= 0x10000000000000000000000000000;
xSignifier *= ySignifier;
if (xSignifier == 0)
return (x ^ y) & 0x80000000000000000000000000000000 > 0 ?
NEGATIVE_ZERO : POSITIVE_ZERO;
xExponent += yExponent;
uint256 msb =
xSignifier >= 0x200000000000000000000000000000000000000000000000000000000 ? 225 :
xSignifier >= 0x100000000000000000000000000000000000000000000000000000000 ? 224 :
mostSignificantBit (xSignifier);
if (xExponent + msb < 16496) { // Underflow
xExponent = 0;
xSignifier = 0;
} else if (xExponent + msb < 16608) { // Subnormal
if (xExponent < 16496)
xSignifier >>= 16496 - xExponent;
else if (xExponent > 16496)
xSignifier <<= xExponent - 16496;
xExponent = 0;
} else if (xExponent + msb > 49373) {
xExponent = 0x7FFF;
xSignifier = 0;
} else {
if (msb > 112)
xSignifier >>= msb - 112;
else if (msb < 112)
xSignifier <<= 112 - msb;
xSignifier &= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
xExponent = xExponent + msb - 16607;
}
return bytes16 (uint128 (uint128 ((x ^ y) & 0x80000000000000000000000000000000) |
xExponent << 112 | xSignifier));
}
}
}
/**
* Calculate x / y. Special values behave in the following way:
*
* NaN / x = NaN for any x.
* x / NaN = NaN for any x.
* Infinity / x = Infinity for any finite non-negative x.
* Infinity / x = -Infinity for any finite negative x including -0.
* -Infinity / x = -Infinity for any finite non-negative x.
* -Infinity / x = Infinity for any finite negative x including -0.
* x / Infinity = 0 for any finite non-negative x.
* x / -Infinity = -0 for any finite non-negative x.
* x / Infinity = -0 for any finite non-negative x including -0.
* x / -Infinity = 0 for any finite non-negative x including -0.
*
* Infinity / Infinity = NaN.
* Infinity / -Infinity = -NaN.
* -Infinity / Infinity = -NaN.
* -Infinity / -Infinity = NaN.
*
* Division by zero behaves in the following way:
*
* x / 0 = Infinity for any finite positive x.
* x / -0 = -Infinity for any finite positive x.
* x / 0 = -Infinity for any finite negative x.
* x / -0 = Infinity for any finite negative x.
* 0 / 0 = NaN.
* 0 / -0 = NaN.
* -0 / 0 = NaN.
* -0 / -0 = NaN.
*
* @param x quadruple precision number
* @param y quadruple precision number
* @return quadruple precision number
*/
function div (bytes16 x, bytes16 y) internal pure returns (bytes16) {
unchecked {
uint256 xExponent = uint128 (x) >> 112 & 0x7FFF;
uint256 yExponent = uint128 (y) >> 112 & 0x7FFF;
if (xExponent == 0x7FFF) {
if (yExponent == 0x7FFF) return NaN;
else return x ^ y & 0x80000000000000000000000000000000;
} else if (yExponent == 0x7FFF) {
if (y & 0x0000FFFFFFFFFFFFFFFFFFFFFFFFFFFF != 0) return NaN;
else return POSITIVE_ZERO | (x ^ y) & 0x80000000000000000000000000000000;
} else if (y & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF == 0) {
if (x & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF == 0) return NaN;
else return POSITIVE_INFINITY | (x ^ y) & 0x80000000000000000000000000000000;
} else {
uint256 ySignifier = uint128 (y) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (yExponent == 0) yExponent = 1;
else ySignifier |= 0x10000000000000000000000000000;
uint256 xSignifier = uint128 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (xExponent == 0) {
if (xSignifier != 0) {
uint shift = 226 - mostSignificantBit (xSignifier);
xSignifier <<= shift;
xExponent = 1;
yExponent += shift - 114;
}
}
else {
xSignifier = (xSignifier | 0x10000000000000000000000000000) << 114;
}
xSignifier = xSignifier / ySignifier;
if (xSignifier == 0)
return (x ^ y) & 0x80000000000000000000000000000000 > 0 ?
NEGATIVE_ZERO : POSITIVE_ZERO;
assert (xSignifier >= 0x1000000000000000000000000000);
uint256 msb =
xSignifier >= 0x80000000000000000000000000000 ? mostSignificantBit (xSignifier) :
xSignifier >= 0x40000000000000000000000000000 ? 114 :
xSignifier >= 0x20000000000000000000000000000 ? 113 : 112;
if (xExponent + msb > yExponent + 16497) { // Overflow
xExponent = 0x7FFF;
xSignifier = 0;
} else if (xExponent + msb + 16380 < yExponent) { // Underflow
xExponent = 0;
xSignifier = 0;
} else if (xExponent + msb + 16268 < yExponent) { // Subnormal
if (xExponent + 16380 > yExponent)
xSignifier <<= xExponent + 16380 - yExponent;
else if (xExponent + 16380 < yExponent)
xSignifier >>= yExponent - xExponent - 16380;
xExponent = 0;
} else { // Normal
if (msb > 112)
xSignifier >>= msb - 112;
xSignifier &= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
xExponent = xExponent + msb + 16269 - yExponent;
}
return bytes16 (uint128 (uint128 ((x ^ y) & 0x80000000000000000000000000000000) |
xExponent << 112 | xSignifier));
}
}
}
/**
* Calculate -x.
*
* @param x quadruple precision number
* @return quadruple precision number
*/
function neg (bytes16 x) internal pure returns (bytes16) {
unchecked {
return x ^ 0x80000000000000000000000000000000;
}
}
/**
* Calculate |x|.
*
* @param x quadruple precision number
* @return quadruple precision number
*/
function abs (bytes16 x) internal pure returns (bytes16) {
unchecked {
return x & 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
}
}
/**
* Calculate square root of x. Return NaN on negative x excluding -0.
*
* @param x quadruple precision number
* @return quadruple precision number
*/
function sqrt (bytes16 x) internal pure returns (bytes16) {
unchecked {
if (uint128 (x) > 0x80000000000000000000000000000000) return NaN;
else {
uint256 xExponent = uint128 (x) >> 112 & 0x7FFF;
if (xExponent == 0x7FFF) return x;
else {
uint256 xSignifier = uint128 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (xExponent == 0) xExponent = 1;
else xSignifier |= 0x10000000000000000000000000000;
if (xSignifier == 0) return POSITIVE_ZERO;
bool oddExponent = xExponent & 0x1 == 0;
xExponent = xExponent + 16383 >> 1;
if (oddExponent) {
if (xSignifier >= 0x10000000000000000000000000000)
xSignifier <<= 113;
else {
uint256 msb = mostSignificantBit (xSignifier);
uint256 shift = (226 - msb) & 0xFE;
xSignifier <<= shift;
xExponent -= shift - 112 >> 1;
}
} else {
if (xSignifier >= 0x10000000000000000000000000000)
xSignifier <<= 112;
else {
uint256 msb = mostSignificantBit (xSignifier);
uint256 shift = (225 - msb) & 0xFE;
xSignifier <<= shift;
xExponent -= shift - 112 >> 1;
}
}
uint256 r = 0x10000000000000000000000000000;
r = (r + xSignifier / r) >> 1;
r = (r + xSignifier / r) >> 1;
r = (r + xSignifier / r) >> 1;
r = (r + xSignifier / r) >> 1;
r = (r + xSignifier / r) >> 1;
r = (r + xSignifier / r) >> 1;
r = (r + xSignifier / r) >> 1; // Seven iterations should be enough
uint256 r1 = xSignifier / r;
if (r1 < r) r = r1;
return bytes16 (uint128 (xExponent << 112 | r & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF));
}
}
}
}
/**
* Calculate binary logarithm of x. Return NaN on negative x excluding -0.
*
* @param x quadruple precision number
* @return quadruple precision number
*/
function log_2 (bytes16 x) internal pure returns (bytes16) {
unchecked {
if (uint128 (x) > 0x80000000000000000000000000000000) return NaN;
else if (x == 0x3FFF0000000000000000000000000000) return POSITIVE_ZERO;
else {
uint256 xExponent = uint128 (x) >> 112 & 0x7FFF;
if (xExponent == 0x7FFF) return x;
else {
uint256 xSignifier = uint128 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (xExponent == 0) xExponent = 1;
else xSignifier |= 0x10000000000000000000000000000;
if (xSignifier == 0) return NEGATIVE_INFINITY;
bool resultNegative;
uint256 resultExponent = 16495;
uint256 resultSignifier;
if (xExponent >= 0x3FFF) {
resultNegative = false;
resultSignifier = xExponent - 0x3FFF;
xSignifier <<= 15;
} else {
resultNegative = true;
if (xSignifier >= 0x10000000000000000000000000000) {
resultSignifier = 0x3FFE - xExponent;
xSignifier <<= 15;
} else {
uint256 msb = mostSignificantBit (xSignifier);
resultSignifier = 16493 - msb;
xSignifier <<= 127 - msb;
}
}
if (xSignifier == 0x80000000000000000000000000000000) {
if (resultNegative) resultSignifier += 1;
uint256 shift = 112 - mostSignificantBit (resultSignifier);
resultSignifier <<= shift;
resultExponent -= shift;
} else {
uint256 bb = resultNegative ? 1 : 0;
while (resultSignifier < 0x10000000000000000000000000000) {
resultSignifier <<= 1;
resultExponent -= 1;
xSignifier *= xSignifier;
uint256 b = xSignifier >> 255;
resultSignifier += b ^ bb;
xSignifier >>= 127 + b;
}
}
return bytes16 (uint128 ((resultNegative ? 0x80000000000000000000000000000000 : 0) |
resultExponent << 112 | resultSignifier & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF));
}
}
}
}
/**
* Calculate natural logarithm of x. Return NaN on negative x excluding -0.
*
* @param x quadruple precision number
* @return quadruple precision number
*/
function ln (bytes16 x) internal pure returns (bytes16) {
unchecked {
return mul (log_2 (x), 0x3FFE62E42FEFA39EF35793C7673007E5);
}
}
/**
* Calculate 2^x.
*
* @param x quadruple precision number
* @return quadruple precision number
*/
function pow_2 (bytes16 x) internal pure returns (bytes16) {
unchecked {
bool xNegative = uint128 (x) > 0x80000000000000000000000000000000;
uint256 xExponent = uint128 (x) >> 112 & 0x7FFF;
uint256 xSignifier = uint128 (x) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (xExponent == 0x7FFF && xSignifier != 0) return NaN;
else if (xExponent > 16397)
return xNegative ? POSITIVE_ZERO : POSITIVE_INFINITY;
else if (xExponent < 16255)
return 0x3FFF0000000000000000000000000000;
else {
if (xExponent == 0) xExponent = 1;
else xSignifier |= 0x10000000000000000000000000000;
if (xExponent > 16367)
xSignifier <<= xExponent - 16367;
else if (xExponent < 16367)
xSignifier >>= 16367 - xExponent;
if (xNegative && xSignifier > 0x406E00000000000000000000000000000000)
return POSITIVE_ZERO;
if (!xNegative && xSignifier > 0x3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
return POSITIVE_INFINITY;
uint256 resultExponent = xSignifier >> 128;
xSignifier &= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
if (xNegative && xSignifier != 0) {
xSignifier = ~xSignifier;
resultExponent += 1;
}
uint256 resultSignifier = 0x80000000000000000000000000000000;
if (xSignifier & 0x80000000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x16A09E667F3BCC908B2FB1366EA957D3E >> 128;
if (xSignifier & 0x40000000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1306FE0A31B7152DE8D5A46305C85EDEC >> 128;
if (xSignifier & 0x20000000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1172B83C7D517ADCDF7C8C50EB14A791F >> 128;
if (xSignifier & 0x10000000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10B5586CF9890F6298B92B71842A98363 >> 128;
if (xSignifier & 0x8000000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1059B0D31585743AE7C548EB68CA417FD >> 128;
if (xSignifier & 0x4000000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x102C9A3E778060EE6F7CACA4F7A29BDE8 >> 128;
if (xSignifier & 0x2000000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10163DA9FB33356D84A66AE336DCDFA3F >> 128;
if (xSignifier & 0x1000000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100B1AFA5ABCBED6129AB13EC11DC9543 >> 128;
if (xSignifier & 0x800000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10058C86DA1C09EA1FF19D294CF2F679B >> 128;
if (xSignifier & 0x400000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1002C605E2E8CEC506D21BFC89A23A00F >> 128;
if (xSignifier & 0x200000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100162F3904051FA128BCA9C55C31E5DF >> 128;
if (xSignifier & 0x100000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000B175EFFDC76BA38E31671CA939725 >> 128;
if (xSignifier & 0x80000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100058BA01FB9F96D6CACD4B180917C3D >> 128;
if (xSignifier & 0x40000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10002C5CC37DA9491D0985C348C68E7B3 >> 128;
if (xSignifier & 0x20000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000162E525EE054754457D5995292026 >> 128;
if (xSignifier & 0x10000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000B17255775C040618BF4A4ADE83FC >> 128;
if (xSignifier & 0x8000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000058B91B5BC9AE2EED81E9B7D4CFAB >> 128;
if (xSignifier & 0x4000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100002C5C89D5EC6CA4D7C8ACC017B7C9 >> 128;
if (xSignifier & 0x2000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000162E43F4F831060E02D839A9D16D >> 128;
if (xSignifier & 0x1000000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000B1721BCFC99D9F890EA06911763 >> 128;
if (xSignifier & 0x800000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000058B90CF1E6D97F9CA14DBCC1628 >> 128;
if (xSignifier & 0x400000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000002C5C863B73F016468F6BAC5CA2B >> 128;
if (xSignifier & 0x200000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000162E430E5A18F6119E3C02282A5 >> 128;
if (xSignifier & 0x100000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000B1721835514B86E6D96EFD1BFE >> 128;
if (xSignifier & 0x80000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000058B90C0B48C6BE5DF846C5B2EF >> 128;
if (xSignifier & 0x40000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000002C5C8601CC6B9E94213C72737A >> 128;
if (xSignifier & 0x20000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000162E42FFF037DF38AA2B219F06 >> 128;
if (xSignifier & 0x10000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000B17217FBA9C739AA5819F44F9 >> 128;
if (xSignifier & 0x8000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000058B90BFCDEE5ACD3C1CEDC823 >> 128;
if (xSignifier & 0x4000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000002C5C85FE31F35A6A30DA1BE50 >> 128;
if (xSignifier & 0x2000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000162E42FF0999CE3541B9FFFCF >> 128;
if (xSignifier & 0x1000000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000B17217F80F4EF5AADDA45554 >> 128;
if (xSignifier & 0x800000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000058B90BFBF8479BD5A81B51AD >> 128;
if (xSignifier & 0x400000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000002C5C85FDF84BD62AE30A74CC >> 128;
if (xSignifier & 0x200000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000162E42FEFB2FED257559BDAA >> 128;
if (xSignifier & 0x100000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000B17217F7D5A7716BBA4A9AE >> 128;
if (xSignifier & 0x80000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000058B90BFBE9DDBAC5E109CCE >> 128;
if (xSignifier & 0x40000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000002C5C85FDF4B15DE6F17EB0D >> 128;
if (xSignifier & 0x20000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000162E42FEFA494F1478FDE05 >> 128;
if (xSignifier & 0x10000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000B17217F7D20CF927C8E94C >> 128;
if (xSignifier & 0x8000000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000058B90BFBE8F71CB4E4B33D >> 128;
if (xSignifier & 0x4000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000002C5C85FDF477B662B26945 >> 128;
if (xSignifier & 0x2000000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000162E42FEFA3AE53369388C >> 128;
if (xSignifier & 0x1000000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000B17217F7D1D351A389D40 >> 128;
if (xSignifier & 0x800000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000058B90BFBE8E8B2D3D4EDE >> 128;
if (xSignifier & 0x400000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000002C5C85FDF4741BEA6E77E >> 128;
if (xSignifier & 0x200000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000162E42FEFA39FE95583C2 >> 128;
if (xSignifier & 0x100000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000B17217F7D1CFB72B45E1 >> 128;
if (xSignifier & 0x80000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000058B90BFBE8E7CC35C3F0 >> 128;
if (xSignifier & 0x40000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000002C5C85FDF473E242EA38 >> 128;
if (xSignifier & 0x20000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000162E42FEFA39F02B772C >> 128;
if (xSignifier & 0x10000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000B17217F7D1CF7D83C1A >> 128;
if (xSignifier & 0x8000000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000058B90BFBE8E7BDCBE2E >> 128;
if (xSignifier & 0x4000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000002C5C85FDF473DEA871F >> 128;
if (xSignifier & 0x2000000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000162E42FEFA39EF44D91 >> 128;
if (xSignifier & 0x1000000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000B17217F7D1CF79E949 >> 128;
if (xSignifier & 0x800000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000058B90BFBE8E7BCE544 >> 128;
if (xSignifier & 0x400000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000002C5C85FDF473DE6ECA >> 128;
if (xSignifier & 0x200000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000162E42FEFA39EF366F >> 128;
if (xSignifier & 0x100000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000B17217F7D1CF79AFA >> 128;
if (xSignifier & 0x80000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000058B90BFBE8E7BCD6D >> 128;
if (xSignifier & 0x40000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000002C5C85FDF473DE6B2 >> 128;
if (xSignifier & 0x20000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000162E42FEFA39EF358 >> 128;
if (xSignifier & 0x10000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000B17217F7D1CF79AB >> 128;
if (xSignifier & 0x8000000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000058B90BFBE8E7BCD5 >> 128;
if (xSignifier & 0x4000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000002C5C85FDF473DE6A >> 128;
if (xSignifier & 0x2000000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000162E42FEFA39EF34 >> 128;
if (xSignifier & 0x1000000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000B17217F7D1CF799 >> 128;
if (xSignifier & 0x800000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000058B90BFBE8E7BCC >> 128;
if (xSignifier & 0x400000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000002C5C85FDF473DE5 >> 128;
if (xSignifier & 0x200000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000162E42FEFA39EF2 >> 128;
if (xSignifier & 0x100000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000B17217F7D1CF78 >> 128;
if (xSignifier & 0x80000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000058B90BFBE8E7BB >> 128;
if (xSignifier & 0x40000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000002C5C85FDF473DD >> 128;
if (xSignifier & 0x20000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000162E42FEFA39EE >> 128;
if (xSignifier & 0x10000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000B17217F7D1CF6 >> 128;
if (xSignifier & 0x8000000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000058B90BFBE8E7A >> 128;
if (xSignifier & 0x4000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000002C5C85FDF473C >> 128;
if (xSignifier & 0x2000000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000162E42FEFA39D >> 128;
if (xSignifier & 0x1000000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000B17217F7D1CE >> 128;
if (xSignifier & 0x800000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000058B90BFBE8E6 >> 128;
if (xSignifier & 0x400000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000002C5C85FDF472 >> 128;
if (xSignifier & 0x200000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000162E42FEFA38 >> 128;
if (xSignifier & 0x100000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000B17217F7D1B >> 128;
if (xSignifier & 0x80000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000058B90BFBE8D >> 128;
if (xSignifier & 0x40000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000002C5C85FDF46 >> 128;
if (xSignifier & 0x20000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000162E42FEFA2 >> 128;
if (xSignifier & 0x10000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000B17217F7D0 >> 128;
if (xSignifier & 0x8000000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000058B90BFBE7 >> 128;
if (xSignifier & 0x4000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000002C5C85FDF3 >> 128;
if (xSignifier & 0x2000000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000162E42FEF9 >> 128;
if (xSignifier & 0x1000000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000B17217F7C >> 128;
if (xSignifier & 0x800000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000058B90BFBD >> 128;
if (xSignifier & 0x400000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000002C5C85FDE >> 128;
if (xSignifier & 0x200000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000162E42FEE >> 128;
if (xSignifier & 0x100000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000B17217F6 >> 128;
if (xSignifier & 0x80000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000058B90BFA >> 128;
if (xSignifier & 0x40000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000002C5C85FC >> 128;
if (xSignifier & 0x20000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000162E42FD >> 128;
if (xSignifier & 0x10000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000B17217E >> 128;
if (xSignifier & 0x8000000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000058B90BE >> 128;
if (xSignifier & 0x4000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000002C5C85E >> 128;
if (xSignifier & 0x2000000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000162E42E >> 128;
if (xSignifier & 0x1000000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000B17216 >> 128;
if (xSignifier & 0x800000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000058B90A >> 128;
if (xSignifier & 0x400000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000002C5C84 >> 128;
if (xSignifier & 0x200000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000162E41 >> 128;
if (xSignifier & 0x100000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000000B1720 >> 128;
if (xSignifier & 0x80000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000058B8F >> 128;
if (xSignifier & 0x40000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000002C5C7 >> 128;
if (xSignifier & 0x20000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000000162E3 >> 128;
if (xSignifier & 0x10000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000000B171 >> 128;
if (xSignifier & 0x8000 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000000058B8 >> 128;
if (xSignifier & 0x4000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000002C5B >> 128;
if (xSignifier & 0x2000 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000000162D >> 128;
if (xSignifier & 0x1000 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000000B16 >> 128;
if (xSignifier & 0x800 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000000058A >> 128;
if (xSignifier & 0x400 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000000002C4 >> 128;
if (xSignifier & 0x200 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000000161 >> 128;
if (xSignifier & 0x100 > 0) resultSignifier = resultSignifier * 0x1000000000000000000000000000000B0 >> 128;
if (xSignifier & 0x80 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000000057 >> 128;
if (xSignifier & 0x40 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000000002B >> 128;
if (xSignifier & 0x20 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000000015 >> 128;
if (xSignifier & 0x10 > 0) resultSignifier = resultSignifier * 0x10000000000000000000000000000000A >> 128;
if (xSignifier & 0x8 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000000004 >> 128;
if (xSignifier & 0x4 > 0) resultSignifier = resultSignifier * 0x100000000000000000000000000000001 >> 128;
if (!xNegative) {
resultSignifier = resultSignifier >> 15 & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
resultExponent += 0x3FFF;
} else if (resultExponent <= 0x3FFE) {
resultSignifier = resultSignifier >> 15 & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
resultExponent = 0x3FFF - resultExponent;
} else {
resultSignifier = resultSignifier >> resultExponent - 16367;
resultExponent = 0;
}
return bytes16 (uint128 (resultExponent << 112 | resultSignifier));
}
}
}
/**
* Calculate e^x.
*
* @param x quadruple precision number
* @return quadruple precision number
*/
function exp (bytes16 x) internal pure returns (bytes16) {
unchecked {
return pow_2 (mul (x, 0x3FFF71547652B82FE1777D0FFDA0D23A));
}
}
/**
* Get index of the most significant non-zero bit in binary representation of
* x. Reverts if x is zero.
*
* @return index of the most significant non-zero bit in binary representation
* of x
*/
function mostSignificantBit (uint256 x) private pure returns (uint256) {
unchecked {
require (x > 0);
uint256 result = 0;
if (x >= 0x100000000000000000000000000000000) { x >>= 128; result += 128; }
if (x >= 0x10000000000000000) { x >>= 64; result += 64; }
if (x >= 0x100000000) { x >>= 32; result += 32; }
if (x >= 0x10000) { x >>= 16; result += 16; }
if (x >= 0x100) { x >>= 8; result += 8; }
if (x >= 0x10) { x >>= 4; result += 4; }
if (x >= 0x4) { x >>= 2; result += 2; }
if (x >= 0x2) result += 1; // No need to shift x anymore
return result;
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122027eb64d20640d4d2590aa93aeda4204d3fe0ba1b71fdeb2339abe6f8c4a10ece64736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 0xEB PUSH5 0xD20640D4D2 MSIZE EXP 0xA9 GASPRICE 0xED LOG4 KECCAK256 0x4D EXTCODEHASH 0xE0 0xBA SHL PUSH18 0xFDEB2339ABE6F8C4A10ECE64736F6C634300 ADDMOD SMOD STOP CALLER ",
"sourceMap": "666:24884:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122027eb64d20640d4d2590aa93aeda4204d3fe0ba1b71fdeb2339abe6f8c4a10ece64736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 0xEB PUSH5 0xD20640D4D2 MSIZE EXP 0xA9 GASPRICE 0xED LOG4 KECCAK256 0x4D EXTCODEHASH 0xE0 0xBA SHL PUSH18 0xFDEB2339ABE6F8C4A10ECE64736F6C634300 ADDMOD SMOD STOP CALLER ",
"sourceMap": "666:24884:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"abs(int128)": "infinite",
"add(int128,int128)": "infinite",
"avg(int128,int128)": "infinite",
"div(int128,int128)": "infinite",
"divi(int256,int256)": "infinite",
"divu(uint256,uint256)": "infinite",
"divuu(uint256,uint256)": "infinite",
"exp(int128)": "infinite",
"exp_2(int128)": "infinite",
"from128x128(int256)": "infinite",
"fromInt(int256)": "infinite",
"fromUInt(uint256)": "infinite",
"gavg(int128,int128)": "infinite",
"inv(int128)": "infinite",
"ln(int128)": "infinite",
"log_2(int128)": "infinite",
"mul(int128,int128)": "infinite",
"muli(int128,int256)": "infinite",
"mulu(int128,uint256)": "infinite",
"neg(int128)": "infinite",
"pow(int128,uint256)": "infinite",
"sqrt(int128)": "infinite",
"sqrtu(uint256)": "infinite",
"sub(int128,int128)": "infinite",
"to128x128(int128)": "infinite",
"toInt(int128)": "infinite",
"toUInt(int128)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"notice": "Smart contract library of mathematical functions operating with signed 64.64-bit fixed point numbers. Signed 64.64-bit fixed point number is basically a simple fraction whose numerator is signed 128-bit integer and denominator is 2^64. As long as denominator is always the same, there is no need to store it, thus in Solidity signed 64.64-bit fixed point numbers are represented by int128 type holding only the numerator.",
"version": 1
}
},
"settings": {
"compilationTarget": {
"/.deps/github/abdk-consulting/abdk-libraries-solidity/ABDKMath64x64.sol": "ABDKMath64x64"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"/.deps/github/abdk-consulting/abdk-libraries-solidity/ABDKMath64x64.sol": {
"keccak256": "0x0685b096aa1831616f64d3954abb70479e1af27cfbb848307f81ef4b34e9dc21",
"license": "BSD-4-Clause",
"urls": [
"bzz-raw://5ea9aa69ede675baf2af9cc759c5af5241396b8c0fa799773b48829298f5c66f",
"dweb:/ipfs/QmZQrf9LuFUJNWX384Pef77v4voignWmXtZc4ZbvHVsC24"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203aca0581bf8985fb95dd77e1e27afc3afd6b787d1eb91457ca4fcd67ddd70aed64736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GASPRICE 0xCA SDIV DUP2 0xBF DUP10 DUP6 0xFB SWAP6 0xDD PUSH24 0xE1E27AFC3AFD6B787D1EB91457CA4FCD67DDD70AED64736F PUSH13 0x63430008070033000000000000 ",
"sourceMap": "486:52261:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203aca0581bf8985fb95dd77e1e27afc3afd6b787d1eb91457ca4fcd67ddd70aed64736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GASPRICE 0xCA SDIV DUP2 0xBF DUP10 DUP6 0xFB SWAP6 0xDD PUSH24 0xE1E27AFC3AFD6B787D1EB91457CA4FCD67DDD70AED64736F PUSH13 0x63430008070033000000000000 ",
"sourceMap": "486:52261:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"abs(bytes16)": "infinite",
"add(bytes16,bytes16)": "infinite",
"cmp(bytes16,bytes16)": "infinite",
"div(bytes16,bytes16)": "infinite",
"eq(bytes16,bytes16)": "infinite",
"exp(bytes16)": "infinite",
"from128x128(int256)": "infinite",
"from64x64(int128)": "infinite",
"fromDouble(bytes8)": "infinite",
"fromInt(int256)": "infinite",
"fromOctuple(bytes32)": "infinite",
"fromUInt(uint256)": "infinite",
"isInfinity(bytes16)": "infinite",
"isNaN(bytes16)": "infinite",
"ln(bytes16)": "infinite",
"log_2(bytes16)": "infinite",
"mostSignificantBit(uint256)": "infinite",
"mul(bytes16,bytes16)": "infinite",
"neg(bytes16)": "infinite",
"pow_2(bytes16)": "infinite",
"sign(bytes16)": "infinite",
"sqrt(bytes16)": "infinite",
"sub(bytes16,bytes16)": "infinite",
"to128x128(bytes16)": "infinite",
"to64x64(bytes16)": "infinite",
"toDouble(bytes16)": "infinite",
"toInt(bytes16)": "infinite",
"toOctuple(bytes16)": "infinite",
"toUInt(bytes16)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"notice": "Smart contract library of mathematical functions operating with IEEE 754 quadruple-precision binary floating-point numbers (quadruple precision numbers). As long as quadruple precision numbers are 16-bytes long, they are represented by bytes16 type.",
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/github/abdk-consulting/abdk-libraries-solidity/ABDKMathQuad.sol": "ABDKMathQuad"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/github/abdk-consulting/abdk-libraries-solidity/ABDKMathQuad.sol": {
"keccak256": "0x9694a9f6fcadd4fa917efa674de42a74b8fbab8d68924f771ea5cc5e1a301434",
"license": "BSD-4-Clause",
"urls": [
"bzz-raw://5ab2de42e1d920443704dcc9e1de76157dd1df38cf770e76f879c7a6cc93b796",
"dweb:/ipfs/QmXLxE4cJDph4EtVhsCP4aik5PLFauFABv2o4ea47iDwDo"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../utils/Context.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
_burn(tokenId);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_166": {
"entryPoint": null,
"id": 166,
"parameterSlots": 2,
"returnSlots": 0
},
"@_2146": {
"entryPoint": null,
"id": 2146,
"parameterSlots": 0,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 360,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 414,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:16"
},
"nodeType": "YulFunctionCall",
"src": "78:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:16"
},
"nodeType": "YulFunctionCall",
"src": "125:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:16"
},
"nodeType": "YulFunctionCall",
"src": "200:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:16"
},
"nodeType": "YulFunctionCall",
"src": "149:26:16"
},
"nodeType": "YulIf",
"src": "146:81:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:16"
},
"nodeType": "YulFunctionCall",
"src": "293:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:16"
},
"nodeType": "YulFunctionCall",
"src": "263:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:16"
},
"nodeType": "YulFunctionCall",
"src": "240:38:16"
},
"nodeType": "YulIf",
"src": "237:84:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:16",
"type": ""
}
],
"src": "7:320:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:16"
},
"nodeType": "YulFunctionCall",
"src": "371:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:16"
},
"nodeType": "YulFunctionCall",
"src": "468:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:16"
},
"nodeType": "YulFunctionCall",
"src": "492:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:16"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:16"
}
]
},
"contents": "{\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600581526020017f4269306d7a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4269306d7a000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000b8565b508060019080519060200190620000af929190620000b8565b505050620001cd565b828054620000c69062000168565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b600060028204905060018216806200018157607f821691505b602082108114156200019857620001976200019e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61249f80620001dd6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb4651461025d578063b88d4fde14610279578063c87b56dd14610295578063e985e9c5146102c5576100ea565b80636352211e146101df57806370a082311461020f57806395d89b411461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a55780635038f426146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b610109600480360381019061010491906116ec565b6102f5565b6040516101169190611a81565b60405180910390f35b610127610307565b6040516101349190611a9c565b60405180910390f35b61015760048036038101906101529190611746565b610399565b6040516101649190611a1a565b60405180910390f35b610187600480360381019061018291906116ac565b61041e565b005b6101a3600480360381019061019e9190611596565b610536565b005b6101bf60048036038101906101ba9190611596565b610596565b005b6101c96105b6565b6040516101d69190611c59565b60405180910390f35b6101f960048036038101906101f49190611746565b6105cf565b6040516102069190611a1a565b60405180910390f35b61022960048036038101906102249190611529565b610681565b6040516102369190611c3e565b60405180910390f35b610247610739565b6040516102549190611a9c565b60405180910390f35b6102776004803603810190610272919061166c565b6107cb565b005b610293600480360381019061028e91906115e9565b61094c565b005b6102af60048036038101906102aa9190611746565b6109ae565b6040516102bc9190611a9c565b60405180910390f35b6102df60048036038101906102da9190611556565b610a55565b6040516102ec9190611a81565b60405180910390f35b600061030082610ae9565b9050919050565b60606000805461031690611e92565b80601f016020809104026020016040519081016040528092919081815260200182805461034290611e92565b801561038f5780601f106103645761010080835404028352916020019161038f565b820191906000526020600020905b81548152906001019060200180831161037257829003601f168201915b5050505050905090565b60006103a482610bcb565b6103e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103da90611b9e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610429826105cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561049a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049190611bfe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166104b9610c37565b73ffffffffffffffffffffffffffffffffffffffff1614806104e857506104e7816104e2610c37565b610a55565b5b610527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051e90611b3e565b60405180910390fd5b6105318383610c3f565b505050565b610547610541610c37565b82610cf8565b610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d90611c1e565b60405180910390fd5b610591838383610dd6565b505050565b6105b18383836040518060200160405280600081525061094c565b505050565b60006105ca683c0000000000000000611032565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066f90611b7e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e990611b5e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606001805461074890611e92565b80601f016020809104026020016040519081016040528092919081815260200182805461077490611e92565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b6107d3610c37565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890611afe565b60405180910390fd5b806005600061084e610c37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166108fb610c37565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109409190611a81565b60405180910390a35050565b61095d610957610c37565b83610cf8565b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390611c1e565b60405180910390fd5b6109a884848484611053565b50505050565b60606109b982610bcb565b6109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90611bde565b60405180910390fd5b6000610a026110af565b90506000815111610a225760405180602001604052806000815250610a4d565b80610a2c846110c6565b604051602001610a3d9291906119f6565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bc45750610bc382611227565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cb2836105cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d0382610bcb565b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990611b1e565b60405180910390fd5b6000610d4d836105cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dbc57508373ffffffffffffffffffffffffffffffffffffffff16610da484610399565b73ffffffffffffffffffffffffffffffffffffffff16145b80610dcd5750610dcc8185610a55565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610df6826105cf565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390611bbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390611ade565b60405180910390fd5b610ec7838383611291565b610ed2600082610c3f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f229190611d94565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f799190611d0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008082600f0b121561104457600080fd5b604082600f0b901d9050919050565b61105e848484610dd6565b61106a848484846112a1565b6110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090611abe565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600082141561110e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611222565b600082905060005b6000821461114057808061112990611ef5565b915050600a826111399190611d63565b9150611116565b60008167ffffffffffffffff81111561115c5761115b61202b565b5b6040519080825280601f01601f19166020018201604052801561118e5781602001600182028036833780820191505090505b5090505b6000851461121b576001826111a79190611d94565b9150600a856111b69190611f3e565b60306111c29190611d0d565b60f81b8183815181106111d8576111d7611ffc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112149190611d63565b9450611192565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61129c838383611438565b505050565b60006112c28473ffffffffffffffffffffffffffffffffffffffff1661143d565b1561142b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026112eb610c37565b8786866040518563ffffffff1660e01b815260040161130d9493929190611a35565b602060405180830381600087803b15801561132757600080fd5b505af192505050801561135857506040513d601f19601f820116820180604052508101906113559190611719565b60015b6113db573d8060008114611388576040519150601f19603f3d011682016040523d82523d6000602084013e61138d565b606091505b506000815114156113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90611abe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611430565b600190505b949350505050565b505050565b600080823b905060008111915050919050565b600061146361145e84611c99565b611c74565b90508281526020810184848401111561147f5761147e61205f565b5b61148a848285611e50565b509392505050565b6000813590506114a18161240d565b92915050565b6000813590506114b681612424565b92915050565b6000813590506114cb8161243b565b92915050565b6000815190506114e08161243b565b92915050565b600082601f8301126114fb576114fa61205a565b5b813561150b848260208601611450565b91505092915050565b60008135905061152381612452565b92915050565b60006020828403121561153f5761153e612069565b5b600061154d84828501611492565b91505092915050565b6000806040838503121561156d5761156c612069565b5b600061157b85828601611492565b925050602061158c85828601611492565b9150509250929050565b6000806000606084860312156115af576115ae612069565b5b60006115bd86828701611492565b93505060206115ce86828701611492565b92505060406115df86828701611514565b9150509250925092565b6000806000806080858703121561160357611602612069565b5b600061161187828801611492565b945050602061162287828801611492565b935050604061163387828801611514565b925050606085013567ffffffffffffffff81111561165457611653612064565b5b611660878288016114e6565b91505092959194509250565b6000806040838503121561168357611682612069565b5b600061169185828601611492565b92505060206116a2858286016114a7565b9150509250929050565b600080604083850312156116c3576116c2612069565b5b60006116d185828601611492565b92505060206116e285828601611514565b9150509250929050565b60006020828403121561170257611701612069565b5b6000611710848285016114bc565b91505092915050565b60006020828403121561172f5761172e612069565b5b600061173d848285016114d1565b91505092915050565b60006020828403121561175c5761175b612069565b5b600061176a84828501611514565b91505092915050565b61177c81611dc8565b82525050565b61178b81611dda565b82525050565b600061179c82611cca565b6117a68185611ce0565b93506117b6818560208601611e5f565b6117bf8161206e565b840191505092915050565b60006117d582611cd5565b6117df8185611cf1565b93506117ef818560208601611e5f565b6117f88161206e565b840191505092915050565b600061180e82611cd5565b6118188185611d02565b9350611828818560208601611e5f565b80840191505092915050565b6000611841603283611cf1565b915061184c8261207f565b604082019050919050565b6000611864602483611cf1565b915061186f826120ce565b604082019050919050565b6000611887601983611cf1565b91506118928261211d565b602082019050919050565b60006118aa602c83611cf1565b91506118b582612146565b604082019050919050565b60006118cd603883611cf1565b91506118d882612195565b604082019050919050565b60006118f0602a83611cf1565b91506118fb826121e4565b604082019050919050565b6000611913602983611cf1565b915061191e82612233565b604082019050919050565b6000611936602c83611cf1565b915061194182612282565b604082019050919050565b6000611959602983611cf1565b9150611964826122d1565b604082019050919050565b600061197c602f83611cf1565b915061198782612320565b604082019050919050565b600061199f602183611cf1565b91506119aa8261236f565b604082019050919050565b60006119c2603183611cf1565b91506119cd826123be565b604082019050919050565b6119e181611e32565b82525050565b6119f081611e3c565b82525050565b6000611a028285611803565b9150611a0e8284611803565b91508190509392505050565b6000602082019050611a2f6000830184611773565b92915050565b6000608082019050611a4a6000830187611773565b611a576020830186611773565b611a6460408301856119d8565b8181036060830152611a768184611791565b905095945050505050565b6000602082019050611a966000830184611782565b92915050565b60006020820190508181036000830152611ab681846117ca565b905092915050565b60006020820190508181036000830152611ad781611834565b9050919050565b60006020820190508181036000830152611af781611857565b9050919050565b60006020820190508181036000830152611b178161187a565b9050919050565b60006020820190508181036000830152611b378161189d565b9050919050565b60006020820190508181036000830152611b57816118c0565b9050919050565b60006020820190508181036000830152611b77816118e3565b9050919050565b60006020820190508181036000830152611b9781611906565b9050919050565b60006020820190508181036000830152611bb781611929565b9050919050565b60006020820190508181036000830152611bd78161194c565b9050919050565b60006020820190508181036000830152611bf78161196f565b9050919050565b60006020820190508181036000830152611c1781611992565b9050919050565b60006020820190508181036000830152611c37816119b5565b9050919050565b6000602082019050611c5360008301846119d8565b92915050565b6000602082019050611c6e60008301846119e7565b92915050565b6000611c7e611c8f565b9050611c8a8282611ec4565b919050565b6000604051905090565b600067ffffffffffffffff821115611cb457611cb361202b565b5b611cbd8261206e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611d1882611e32565b9150611d2383611e32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d5857611d57611f6f565b5b828201905092915050565b6000611d6e82611e32565b9150611d7983611e32565b925082611d8957611d88611f9e565b5b828204905092915050565b6000611d9f82611e32565b9150611daa83611e32565b925082821015611dbd57611dbc611f6f565b5b828203905092915050565b6000611dd382611e12565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015611e7d578082015181840152602081019050611e62565b83811115611e8c576000848401525b50505050565b60006002820490506001821680611eaa57607f821691505b60208210811415611ebe57611ebd611fcd565b5b50919050565b611ecd8261206e565b810181811067ffffffffffffffff82111715611eec57611eeb61202b565b5b80604052505050565b6000611f0082611e32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611f3357611f32611f6f565b5b600182019050919050565b6000611f4982611e32565b9150611f5483611e32565b925082611f6457611f63611f9e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61241681611dc8565b811461242157600080fd5b50565b61242d81611dda565b811461243857600080fd5b50565b61244481611de6565b811461244f57600080fd5b50565b61245b81611e32565b811461246657600080fd5b5056fea26469706673582212205c5e92ac612651d3495600ebe7f463df4db3df01d4f607a60ea117d4cf9adaea64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4269306D7A000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4269306D7A000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0xB8 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0xB8 JUMP JUMPDEST POP POP POP PUSH3 0x1CD JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xC6 SWAP1 PUSH3 0x168 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xEA JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x136 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x105 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x136 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x136 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x135 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x118 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x145 SWAP2 SWAP1 PUSH3 0x149 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x164 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x14A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x181 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x198 JUMPI PUSH3 0x197 PUSH3 0x19E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x249F DUP1 PUSH3 0x1DD PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x295 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2C5 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x23F JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x5038F426 EQ PUSH2 0x1C1 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x16EC JUMP JUMPDEST PUSH2 0x2F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x1A81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x307 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1A9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1746 JUMP JUMPDEST PUSH2 0x399 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x16AC JUMP JUMPDEST PUSH2 0x41E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1596 JUMP JUMPDEST PUSH2 0x536 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1BF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1596 JUMP JUMPDEST PUSH2 0x596 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C9 PUSH2 0x5B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D6 SWAP2 SWAP1 PUSH2 0x1C59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F4 SWAP2 SWAP1 PUSH2 0x1746 JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x1529 JUMP JUMPDEST PUSH2 0x681 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x1C3E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x247 PUSH2 0x739 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x1A9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x277 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH2 0x7CB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x293 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28E SWAP2 SWAP1 PUSH2 0x15E9 JUMP JUMPDEST PUSH2 0x94C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AA SWAP2 SWAP1 PUSH2 0x1746 JUMP JUMPDEST PUSH2 0x9AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x1A9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x1556 JUMP JUMPDEST PUSH2 0xA55 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EC SWAP2 SWAP1 PUSH2 0x1A81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 PUSH2 0xAE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x316 SWAP1 PUSH2 0x1E92 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x342 SWAP1 PUSH2 0x1E92 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x38F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x364 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x38F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x372 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A4 DUP3 PUSH2 0xBCB JUMP JUMPDEST PUSH2 0x3E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3DA SWAP1 PUSH2 0x1B9E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x429 DUP3 PUSH2 0x5CF JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x49A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x491 SWAP1 PUSH2 0x1BFE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x4B9 PUSH2 0xC37 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x4E8 JUMPI POP PUSH2 0x4E7 DUP2 PUSH2 0x4E2 PUSH2 0xC37 JUMP JUMPDEST PUSH2 0xA55 JUMP JUMPDEST JUMPDEST PUSH2 0x527 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x51E SWAP1 PUSH2 0x1B3E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x531 DUP4 DUP4 PUSH2 0xC3F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x547 PUSH2 0x541 PUSH2 0xC37 JUMP JUMPDEST DUP3 PUSH2 0xCF8 JUMP JUMPDEST PUSH2 0x586 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x57D SWAP1 PUSH2 0x1C1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x591 DUP4 DUP4 DUP4 PUSH2 0xDD6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5B1 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x94C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5CA PUSH9 0x3C0000000000000000 PUSH2 0x1032 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x678 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x66F SWAP1 PUSH2 0x1B7E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6F2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6E9 SWAP1 PUSH2 0x1B5E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x748 SWAP1 PUSH2 0x1E92 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x774 SWAP1 PUSH2 0x1E92 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7C1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x796 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7C1 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x7A4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7D3 PUSH2 0xC37 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x841 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x838 SWAP1 PUSH2 0x1AFE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x84E PUSH2 0xC37 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FB PUSH2 0xC37 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x940 SWAP2 SWAP1 PUSH2 0x1A81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x95D PUSH2 0x957 PUSH2 0xC37 JUMP JUMPDEST DUP4 PUSH2 0xCF8 JUMP JUMPDEST PUSH2 0x99C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x993 SWAP1 PUSH2 0x1C1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9A8 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1053 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9B9 DUP3 PUSH2 0xBCB JUMP JUMPDEST PUSH2 0x9F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9EF SWAP1 PUSH2 0x1BDE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xA02 PUSH2 0x10AF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xA22 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xA4D JUMP JUMPDEST DUP1 PUSH2 0xA2C DUP5 PUSH2 0x10C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xA3D SWAP3 SWAP2 SWAP1 PUSH2 0x19F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xBB4 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0xBC4 JUMPI POP PUSH2 0xBC3 DUP3 PUSH2 0x1227 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCB2 DUP4 PUSH2 0x5CF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD03 DUP3 PUSH2 0xBCB JUMP JUMPDEST PUSH2 0xD42 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD39 SWAP1 PUSH2 0x1B1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD4D DUP4 PUSH2 0x5CF JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xDBC JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA4 DUP5 PUSH2 0x399 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0xDCD JUMPI POP PUSH2 0xDCC DUP2 DUP6 PUSH2 0xA55 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDF6 DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE4C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE43 SWAP1 PUSH2 0x1BBE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xEBC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEB3 SWAP1 PUSH2 0x1ADE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xEC7 DUP4 DUP4 DUP4 PUSH2 0x1291 JUMP JUMPDEST PUSH2 0xED2 PUSH1 0x0 DUP3 PUSH2 0xC3F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF22 SWAP2 SWAP1 PUSH2 0x1D94 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF79 SWAP2 SWAP1 PUSH2 0x1D0D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH2 0x1044 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 PUSH1 0xF SIGNEXTEND SWAP1 SAR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x105E DUP5 DUP5 DUP5 PUSH2 0xDD6 JUMP JUMPDEST PUSH2 0x106A DUP5 DUP5 DUP5 DUP5 PUSH2 0x12A1 JUMP JUMPDEST PUSH2 0x10A9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10A0 SWAP1 PUSH2 0x1ABE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x110E JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1222 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1140 JUMPI DUP1 DUP1 PUSH2 0x1129 SWAP1 PUSH2 0x1EF5 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1139 SWAP2 SWAP1 PUSH2 0x1D63 JUMP JUMPDEST SWAP2 POP PUSH2 0x1116 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x115C JUMPI PUSH2 0x115B PUSH2 0x202B JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x118E JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x121B JUMPI PUSH1 0x1 DUP3 PUSH2 0x11A7 SWAP2 SWAP1 PUSH2 0x1D94 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x11B6 SWAP2 SWAP1 PUSH2 0x1F3E JUMP JUMPDEST PUSH1 0x30 PUSH2 0x11C2 SWAP2 SWAP1 PUSH2 0x1D0D JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x11D8 JUMPI PUSH2 0x11D7 PUSH2 0x1FFC JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1214 SWAP2 SWAP1 PUSH2 0x1D63 JUMP JUMPDEST SWAP5 POP PUSH2 0x1192 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x129C DUP4 DUP4 DUP4 PUSH2 0x1438 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12C2 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x143D JUMP JUMPDEST ISZERO PUSH2 0x142B JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x12EB PUSH2 0xC37 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x130D SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1A35 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1327 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1358 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1355 SWAP2 SWAP1 PUSH2 0x1719 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x13DB JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1388 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x138D JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x13D3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13CA SWAP1 PUSH2 0x1ABE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1463 PUSH2 0x145E DUP5 PUSH2 0x1C99 JUMP JUMPDEST PUSH2 0x1C74 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x147F JUMPI PUSH2 0x147E PUSH2 0x205F JUMP JUMPDEST JUMPDEST PUSH2 0x148A DUP5 DUP3 DUP6 PUSH2 0x1E50 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14A1 DUP2 PUSH2 0x240D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14B6 DUP2 PUSH2 0x2424 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14CB DUP2 PUSH2 0x243B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x14E0 DUP2 PUSH2 0x243B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x14FB JUMPI PUSH2 0x14FA PUSH2 0x205A JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x150B DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1450 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1523 DUP2 PUSH2 0x2452 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153E PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x154D DUP5 DUP3 DUP6 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x156D JUMPI PUSH2 0x156C PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x157B DUP6 DUP3 DUP7 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x158C DUP6 DUP3 DUP7 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x15AF JUMPI PUSH2 0x15AE PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x15BD DUP7 DUP3 DUP8 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x15CE DUP7 DUP3 DUP8 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15DF DUP7 DUP3 DUP8 ADD PUSH2 0x1514 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1603 JUMPI PUSH2 0x1602 PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1611 DUP8 DUP3 DUP9 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1622 DUP8 DUP3 DUP9 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1633 DUP8 DUP3 DUP9 ADD PUSH2 0x1514 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1654 JUMPI PUSH2 0x1653 PUSH2 0x2064 JUMP JUMPDEST JUMPDEST PUSH2 0x1660 DUP8 DUP3 DUP9 ADD PUSH2 0x14E6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1683 JUMPI PUSH2 0x1682 PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1691 DUP6 DUP3 DUP7 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x16A2 DUP6 DUP3 DUP7 ADD PUSH2 0x14A7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x16C3 JUMPI PUSH2 0x16C2 PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16D1 DUP6 DUP3 DUP7 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x16E2 DUP6 DUP3 DUP7 ADD PUSH2 0x1514 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1702 JUMPI PUSH2 0x1701 PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1710 DUP5 DUP3 DUP6 ADD PUSH2 0x14BC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x172F JUMPI PUSH2 0x172E PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x173D DUP5 DUP3 DUP6 ADD PUSH2 0x14D1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x175C JUMPI PUSH2 0x175B PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x176A DUP5 DUP3 DUP6 ADD PUSH2 0x1514 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x177C DUP2 PUSH2 0x1DC8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x178B DUP2 PUSH2 0x1DDA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x179C DUP3 PUSH2 0x1CCA JUMP JUMPDEST PUSH2 0x17A6 DUP2 DUP6 PUSH2 0x1CE0 JUMP JUMPDEST SWAP4 POP PUSH2 0x17B6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1E5F JUMP JUMPDEST PUSH2 0x17BF DUP2 PUSH2 0x206E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17D5 DUP3 PUSH2 0x1CD5 JUMP JUMPDEST PUSH2 0x17DF DUP2 DUP6 PUSH2 0x1CF1 JUMP JUMPDEST SWAP4 POP PUSH2 0x17EF DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1E5F JUMP JUMPDEST PUSH2 0x17F8 DUP2 PUSH2 0x206E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180E DUP3 PUSH2 0x1CD5 JUMP JUMPDEST PUSH2 0x1818 DUP2 DUP6 PUSH2 0x1D02 JUMP JUMPDEST SWAP4 POP PUSH2 0x1828 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1E5F JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1841 PUSH1 0x32 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x184C DUP3 PUSH2 0x207F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1864 PUSH1 0x24 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x186F DUP3 PUSH2 0x20CE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1887 PUSH1 0x19 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1892 DUP3 PUSH2 0x211D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18AA PUSH1 0x2C DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x18B5 DUP3 PUSH2 0x2146 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18CD PUSH1 0x38 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x18D8 DUP3 PUSH2 0x2195 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18F0 PUSH1 0x2A DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x18FB DUP3 PUSH2 0x21E4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1913 PUSH1 0x29 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x191E DUP3 PUSH2 0x2233 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1936 PUSH1 0x2C DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1941 DUP3 PUSH2 0x2282 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1959 PUSH1 0x29 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1964 DUP3 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x197C PUSH1 0x2F DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1987 DUP3 PUSH2 0x2320 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x199F PUSH1 0x21 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x19AA DUP3 PUSH2 0x236F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19C2 PUSH1 0x31 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x19CD DUP3 PUSH2 0x23BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x19E1 DUP2 PUSH2 0x1E32 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x19F0 DUP2 PUSH2 0x1E3C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A02 DUP3 DUP6 PUSH2 0x1803 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A0E DUP3 DUP5 PUSH2 0x1803 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A2F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1773 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1A4A PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1773 JUMP JUMPDEST PUSH2 0x1A57 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1773 JUMP JUMPDEST PUSH2 0x1A64 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19D8 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A76 DUP2 DUP5 PUSH2 0x1791 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A96 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1782 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AB6 DUP2 DUP5 PUSH2 0x17CA JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AD7 DUP2 PUSH2 0x1834 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AF7 DUP2 PUSH2 0x1857 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B17 DUP2 PUSH2 0x187A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B37 DUP2 PUSH2 0x189D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B57 DUP2 PUSH2 0x18C0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B77 DUP2 PUSH2 0x18E3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B97 DUP2 PUSH2 0x1906 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BB7 DUP2 PUSH2 0x1929 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BD7 DUP2 PUSH2 0x194C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BF7 DUP2 PUSH2 0x196F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C17 DUP2 PUSH2 0x1992 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C37 DUP2 PUSH2 0x19B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1C53 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x19D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1C6E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x19E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C7E PUSH2 0x1C8F JUMP JUMPDEST SWAP1 POP PUSH2 0x1C8A DUP3 DUP3 PUSH2 0x1EC4 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1CB4 JUMPI PUSH2 0x1CB3 PUSH2 0x202B JUMP JUMPDEST JUMPDEST PUSH2 0x1CBD DUP3 PUSH2 0x206E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D18 DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D23 DUP4 PUSH2 0x1E32 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1D58 JUMPI PUSH2 0x1D57 PUSH2 0x1F6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D6E DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D79 DUP4 PUSH2 0x1E32 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1D89 JUMPI PUSH2 0x1D88 PUSH2 0x1F9E JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D9F DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH2 0x1DAA DUP4 PUSH2 0x1E32 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1DBD JUMPI PUSH2 0x1DBC PUSH2 0x1F6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DD3 DUP3 PUSH2 0x1E12 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1E7D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1E62 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1E8C JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1EAA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1EBE JUMPI PUSH2 0x1EBD PUSH2 0x1FCD JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1ECD DUP3 PUSH2 0x206E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1EEC JUMPI PUSH2 0x1EEB PUSH2 0x202B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F00 DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1F33 JUMPI PUSH2 0x1F32 PUSH2 0x1F6F JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F49 DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F54 DUP4 PUSH2 0x1E32 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1F64 JUMPI PUSH2 0x1F63 PUSH2 0x1F9E JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2416 DUP2 PUSH2 0x1DC8 JUMP JUMPDEST DUP2 EQ PUSH2 0x2421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x242D DUP2 PUSH2 0x1DDA JUMP JUMPDEST DUP2 EQ PUSH2 0x2438 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2444 DUP2 PUSH2 0x1DE6 JUMP JUMPDEST DUP2 EQ PUSH2 0x244F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x245B DUP2 PUSH2 0x1E32 JUMP JUMPDEST DUP2 EQ PUSH2 0x2466 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5C 0x5E SWAP3 0xAC PUSH2 0x2651 0xD3 0x49 JUMP STOP 0xEB 0xE7 DELEGATECALL PUSH4 0xDF4DB3DF ADD 0xD4 0xF6 SMOD 0xA6 0xE LOG1 OR 0xD4 0xCF SWAP11 0xDA 0xEA PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "543:949:14:-:0;;;886:41;;;;;;;;;;1316:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390:5;1382;:13;;;;;;;;;;;;:::i;:::-;;1415:7;1405;:17;;;;;;;;;;;;:::i;:::-;;1316:113;;543:949:14;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:16:-;51:6;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:81;;212:4;204:6;200:17;190:27;;146:81;274:2;266:6;263:14;243:18;240:38;237:84;;;293:18;;:::i;:::-;237:84;58:269;7:320;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;543:949:14;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_approve_845": {
"entryPoint": 3135,
"id": 845,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_320": {
"entryPoint": 4271,
"id": 320,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_2177": {
"entryPoint": 4753,
"id": 2177,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_918": {
"entryPoint": 5176,
"id": 918,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_907": {
"entryPoint": 4769,
"id": 907,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_559": {
"entryPoint": 3019,
"id": 559,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_600": {
"entryPoint": 3320,
"id": 600,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_1788": {
"entryPoint": 3127,
"id": 1788,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeTransfer_541": {
"entryPoint": 4179,
"id": 541,
"parameterSlots": 4,
"returnSlots": 0
},
"@_transfer_821": {
"entryPoint": 3542,
"id": 821,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_363": {
"entryPoint": 1054,
"id": 363,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_221": {
"entryPoint": 1665,
"id": 221,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_384": {
"entryPoint": 921,
"id": 384,
"parameterSlots": 1,
"returnSlots": 1
},
"@getPeakLon_2157": {
"entryPoint": 1462,
"id": 2157,
"parameterSlots": 0,
"returnSlots": 1
},
"@isApprovedForAll_436": {
"entryPoint": 2645,
"id": 436,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1499": {
"entryPoint": 5181,
"id": 1499,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_259": {
"entryPoint": 775,
"id": 259,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_249": {
"entryPoint": 1487,
"id": 249,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_482": {
"entryPoint": 1430,
"id": 482,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_512": {
"entryPoint": 2380,
"id": 512,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_418": {
"entryPoint": 1995,
"id": 418,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_197": {
"entryPoint": 2793,
"id": 197,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2098": {
"entryPoint": 4647,
"id": 2098,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2192": {
"entryPoint": 757,
"id": 2192,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_269": {
"entryPoint": 1849,
"id": 269,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1957": {
"entryPoint": 4294,
"id": 1957,
"parameterSlots": 1,
"returnSlots": 1
},
"@toUInt_2300": {
"entryPoint": 4146,
"id": 2300,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_311": {
"entryPoint": 2478,
"id": 311,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_463": {
"entryPoint": 1334,
"id": 463,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 5200,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 5266,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 5287,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5308,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 5329,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 5350,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 5396,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 5417,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 5462,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 5526,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 5609,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 5740,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 5804,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 5868,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 5913,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 5958,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 6003,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 6018,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 6033,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6090,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 6147,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6196,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6231,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6266,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6301,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6336,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6371,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6406,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6441,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6476,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6511,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6546,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6581,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6616,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint64_to_t_uint64_fromStack": {
"entryPoint": 6631,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 6646,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6682,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 6709,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 6785,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6812,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6846,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6878,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6910,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6942,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6974,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7006,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7038,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7070,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7102,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7134,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7166,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7198,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 7230,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
"entryPoint": 7257,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 7284,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 7311,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 7321,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 7370,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 7381,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7392,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 7409,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7426,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 7437,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 7523,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 7572,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 7624,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 7642,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 7654,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 7698,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 7730,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint64": {
"entryPoint": 7740,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 7760,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 7775,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 7826,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 7876,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 7925,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 7998,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 8047,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 8094,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 8141,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 8188,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 8235,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 8282,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 8287,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 8292,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 8297,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 8302,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 8319,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 8398,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 8477,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 8518,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 8597,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 8676,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 8755,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 8834,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950": {
"entryPoint": 8913,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 8992,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 9071,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 9150,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 9229,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 9252,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 9275,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 9298,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:28274:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:327:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:16"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:16"
},
"nodeType": "YulFunctionCall",
"src": "125:48:16"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:16"
},
"nodeType": "YulFunctionCall",
"src": "109:65:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:16"
},
"nodeType": "YulFunctionCall",
"src": "183:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:16",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:16"
},
"nodeType": "YulFunctionCall",
"src": "224:16:16"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "280:77:16"
},
"nodeType": "YulFunctionCall",
"src": "280:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "280:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:16"
},
"nodeType": "YulFunctionCall",
"src": "255:16:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:16"
},
"nodeType": "YulFunctionCall",
"src": "252:25:16"
},
"nodeType": "YulIf",
"src": "249:112:16"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "394:3:16"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "399:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "404:6:16"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "370:23:16"
},
"nodeType": "YulFunctionCall",
"src": "370:41:16"
},
"nodeType": "YulExpressionStatement",
"src": "370:41:16"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:16",
"type": ""
}
],
"src": "7:410:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "475:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "485:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "507:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "494:12:16"
},
"nodeType": "YulFunctionCall",
"src": "494:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "485:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:16"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "523:26:16"
},
"nodeType": "YulFunctionCall",
"src": "523:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "523:33:16"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "453:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "461:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "469:5:16",
"type": ""
}
],
"src": "423:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "617:84:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "627:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "649:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "636:12:16"
},
"nodeType": "YulFunctionCall",
"src": "636:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "627:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "689:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "665:23:16"
},
"nodeType": "YulFunctionCall",
"src": "665:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "665:30:16"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "595:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "603:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:16",
"type": ""
}
],
"src": "568:133:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "758:86:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "768:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "790:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "777:12:16"
},
"nodeType": "YulFunctionCall",
"src": "777:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "768:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "832:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "806:25:16"
},
"nodeType": "YulFunctionCall",
"src": "806:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "806:32:16"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "736:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "744:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "752:5:16",
"type": ""
}
],
"src": "707:137:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "912:79:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "922:22:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "937:6:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "931:5:16"
},
"nodeType": "YulFunctionCall",
"src": "931:13:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "922:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "979:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "953:25:16"
},
"nodeType": "YulFunctionCall",
"src": "953:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "953:32:16"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "890:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "898:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "906:5:16",
"type": ""
}
],
"src": "850:141:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1071:277:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1120:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1122:77:16"
},
"nodeType": "YulFunctionCall",
"src": "1122:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "1122:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1099:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1107:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1095:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1095:17:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1114:3:16"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1091:27:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1084:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1084:35:16"
},
"nodeType": "YulIf",
"src": "1081:122:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1212:34:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1239:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1226:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1226:20:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1216:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1255:87:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1315:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1323:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1311:17:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1330:6:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1338:3:16"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1264:46:16"
},
"nodeType": "YulFunctionCall",
"src": "1264:78:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1255:5:16"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1049:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1057:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1065:5:16",
"type": ""
}
],
"src": "1010:338:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1406:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1416:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1438:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1425:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1425:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1416:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1481:5:16"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1454:26:16"
},
"nodeType": "YulFunctionCall",
"src": "1454:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "1454:33:16"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1384:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1392:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1400:5:16",
"type": ""
}
],
"src": "1354:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1565:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1611:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1613:77:16"
},
"nodeType": "YulFunctionCall",
"src": "1613:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "1613:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1586:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1595:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1582:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1582:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1607:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1578:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1578:32:16"
},
"nodeType": "YulIf",
"src": "1575:119:16"
},
{
"nodeType": "YulBlock",
"src": "1704:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1719:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1733:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1723:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1748:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1783:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1794:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1779:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1779:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1803:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1758:20:16"
},
"nodeType": "YulFunctionCall",
"src": "1758:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1748:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1535:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1546:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1558:6:16",
"type": ""
}
],
"src": "1499:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1917:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1963:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1965:77:16"
},
"nodeType": "YulFunctionCall",
"src": "1965:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "1965:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1938:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1947:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1934:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1934:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1959:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1930:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1930:32:16"
},
"nodeType": "YulIf",
"src": "1927:119:16"
},
{
"nodeType": "YulBlock",
"src": "2056:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2071:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2085:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2075:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2100:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2135:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2146:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2131:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2131:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2155:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2110:20:16"
},
"nodeType": "YulFunctionCall",
"src": "2110:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2100:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2183:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2198:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2212:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2202:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2228:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2263:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2274:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2259:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2259:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2283:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2238:20:16"
},
"nodeType": "YulFunctionCall",
"src": "2238:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2228:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1879:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1890:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1902:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1910:6:16",
"type": ""
}
],
"src": "1834:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2414:519:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2460:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2462:77:16"
},
"nodeType": "YulFunctionCall",
"src": "2462:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "2462:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2435:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2444:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2431:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2431:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2456:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2427:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2427:32:16"
},
"nodeType": "YulIf",
"src": "2424:119:16"
},
{
"nodeType": "YulBlock",
"src": "2553:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2568:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2582:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2572:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2597:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2632:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2643:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2628:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2628:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2652:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2607:20:16"
},
"nodeType": "YulFunctionCall",
"src": "2607:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2597:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2680:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2695:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2709:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2699:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2725:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2760:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2771:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2756:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2756:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2780:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2735:20:16"
},
"nodeType": "YulFunctionCall",
"src": "2735:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2725:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2808:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2823:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2837:2:16",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2827:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2853:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2888:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2899:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2884:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2884:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2908:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2863:20:16"
},
"nodeType": "YulFunctionCall",
"src": "2863:53:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2853:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2368:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2379:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2391:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2399:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2407:6:16",
"type": ""
}
],
"src": "2314:619:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3065:817:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3112:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3114:77:16"
},
"nodeType": "YulFunctionCall",
"src": "3114:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "3114:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3086:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3095:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3082:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3082:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3107:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3078:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3078:33:16"
},
"nodeType": "YulIf",
"src": "3075:120:16"
},
{
"nodeType": "YulBlock",
"src": "3205:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3220:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3234:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3224:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3249:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3284:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3295:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3280:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3280:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3304:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3259:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3259:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3249:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3332:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3347:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3361:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3351:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3377:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3412:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3423:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3408:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3408:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3432:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3387:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3387:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3377:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3460:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3475:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3489:2:16",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3479:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3505:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3540:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3551:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3536:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3536:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3560:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3515:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3515:53:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3505:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3588:287:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3603:46:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3634:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3645:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3630:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3630:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3617:12:16"
},
"nodeType": "YulFunctionCall",
"src": "3617:32:16"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3607:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3696:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3698:77:16"
},
"nodeType": "YulFunctionCall",
"src": "3698:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "3698:79:16"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3668:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3676:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3665:2:16"
},
"nodeType": "YulFunctionCall",
"src": "3665:30:16"
},
"nodeType": "YulIf",
"src": "3662:117:16"
},
{
"nodeType": "YulAssignment",
"src": "3793:72:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3837:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3848:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3833:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3833:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3857:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3803:29:16"
},
"nodeType": "YulFunctionCall",
"src": "3803:62:16"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3793:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3011:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3022:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3034:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3042:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3050:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3058:6:16",
"type": ""
}
],
"src": "2939:943:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3968:388:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4014:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4016:77:16"
},
"nodeType": "YulFunctionCall",
"src": "4016:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "4016:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3989:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3998:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3985:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3985:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4010:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3981:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3981:32:16"
},
"nodeType": "YulIf",
"src": "3978:119:16"
},
{
"nodeType": "YulBlock",
"src": "4107:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4122:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4136:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4126:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4151:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4186:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4197:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4182:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4182:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4206:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4161:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4161:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4151:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4234:115:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4249:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4263:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4253:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4279:60:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4311:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4322:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4307:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4307:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4331:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "4289:17:16"
},
"nodeType": "YulFunctionCall",
"src": "4289:50:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4279:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3930:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3941:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3953:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3961:6:16",
"type": ""
}
],
"src": "3888:468:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4445:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4491:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4493:77:16"
},
"nodeType": "YulFunctionCall",
"src": "4493:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "4493:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4466:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4475:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4462:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4462:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4487:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4458:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4458:32:16"
},
"nodeType": "YulIf",
"src": "4455:119:16"
},
{
"nodeType": "YulBlock",
"src": "4584:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4599:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4613:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4603:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4628:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4663:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4674:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4659:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4659:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4683:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4638:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4638:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4628:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4711:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4726:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4740:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4730:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4756:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4791:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4802:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4787:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4787:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4811:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4766:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4766:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4756:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4407:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4418:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4430:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4438:6:16",
"type": ""
}
],
"src": "4362:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4907:262:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4953:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4955:77:16"
},
"nodeType": "YulFunctionCall",
"src": "4955:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "4955:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4928:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4937:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4924:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4924:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4949:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4920:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4920:32:16"
},
"nodeType": "YulIf",
"src": "4917:119:16"
},
{
"nodeType": "YulBlock",
"src": "5046:116:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5061:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5075:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5065:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5090:62:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5124:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5135:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5120:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5120:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5144:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "5100:19:16"
},
"nodeType": "YulFunctionCall",
"src": "5100:52:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5090:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4877:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4888:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4900:6:16",
"type": ""
}
],
"src": "4842:327:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5251:273:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5297:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5299:77:16"
},
"nodeType": "YulFunctionCall",
"src": "5299:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "5299:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5272:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5281:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5268:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5268:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5293:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5264:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5264:32:16"
},
"nodeType": "YulIf",
"src": "5261:119:16"
},
{
"nodeType": "YulBlock",
"src": "5390:127:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5405:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5419:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5409:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5434:73:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5479:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5490:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5475:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5475:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5499:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "5444:30:16"
},
"nodeType": "YulFunctionCall",
"src": "5444:63:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5434:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5221:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5232:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5244:6:16",
"type": ""
}
],
"src": "5175:349:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5596:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5642:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5644:77:16"
},
"nodeType": "YulFunctionCall",
"src": "5644:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "5644:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5617:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5626:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5613:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5613:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5638:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5609:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5609:32:16"
},
"nodeType": "YulIf",
"src": "5606:119:16"
},
{
"nodeType": "YulBlock",
"src": "5735:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5750:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5764:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5754:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5779:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5814:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5825:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5810:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5810:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5834:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5789:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5789:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5779:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5566:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5577:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5589:6:16",
"type": ""
}
],
"src": "5530:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5930:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5947:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5970:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5952:17:16"
},
"nodeType": "YulFunctionCall",
"src": "5952:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5940:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5940:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "5940:37:16"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5918:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5925:3:16",
"type": ""
}
],
"src": "5865:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6048:50:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6065:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6085:5:16"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6070:14:16"
},
"nodeType": "YulFunctionCall",
"src": "6070:21:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6058:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6058:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "6058:34:16"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6036:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6043:3:16",
"type": ""
}
],
"src": "5989:109:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6194:270:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6204:52:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6250:5:16"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6218:31:16"
},
"nodeType": "YulFunctionCall",
"src": "6218:38:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6208:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6265:77:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6330:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6335:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6272:57:16"
},
"nodeType": "YulFunctionCall",
"src": "6272:70:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6265:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6377:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6384:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6373:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6373:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6391:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6396:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6351:21:16"
},
"nodeType": "YulFunctionCall",
"src": "6351:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "6351:52:16"
},
{
"nodeType": "YulAssignment",
"src": "6412:46:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6423:3:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6450:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6428:21:16"
},
"nodeType": "YulFunctionCall",
"src": "6428:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6419:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6419:39:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6412:3:16"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6175:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6182:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6190:3:16",
"type": ""
}
],
"src": "6104:360:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6562:272:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6572:53:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6619:5:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6586:32:16"
},
"nodeType": "YulFunctionCall",
"src": "6586:39:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6576:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6634:78:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6700:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6705:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6641:58:16"
},
"nodeType": "YulFunctionCall",
"src": "6641:71:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6634:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6747:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6754:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6743:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6743:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6761:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6766:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6721:21:16"
},
"nodeType": "YulFunctionCall",
"src": "6721:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "6721:52:16"
},
{
"nodeType": "YulAssignment",
"src": "6782:46:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6793:3:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6820:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6798:21:16"
},
"nodeType": "YulFunctionCall",
"src": "6798:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6789:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6789:39:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6782:3:16"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6543:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6550:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6558:3:16",
"type": ""
}
],
"src": "6470:364:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6950:267:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6960:53:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7007:5:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6974:32:16"
},
"nodeType": "YulFunctionCall",
"src": "6974:39:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6964:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7022:96:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7106:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7111:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7029:76:16"
},
"nodeType": "YulFunctionCall",
"src": "7029:89:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7022:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7153:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7160:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7149:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7149:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7167:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7172:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "7127:21:16"
},
"nodeType": "YulFunctionCall",
"src": "7127:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "7127:52:16"
},
{
"nodeType": "YulAssignment",
"src": "7188:23:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7199:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7204:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7195:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7195:16:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7188:3:16"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6931:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6938:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6946:3:16",
"type": ""
}
],
"src": "6840:377:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7369:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7379:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7445:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7450:2:16",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7386:58:16"
},
"nodeType": "YulFunctionCall",
"src": "7386:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7379:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7551:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "7462:88:16"
},
"nodeType": "YulFunctionCall",
"src": "7462:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "7462:93:16"
},
{
"nodeType": "YulAssignment",
"src": "7564:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7575:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7580:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7571:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7571:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7564:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7357:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7365:3:16",
"type": ""
}
],
"src": "7223:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7741:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7751:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7817:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7822:2:16",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7758:58:16"
},
"nodeType": "YulFunctionCall",
"src": "7758:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7751:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7923:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "7834:88:16"
},
"nodeType": "YulFunctionCall",
"src": "7834:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "7834:93:16"
},
{
"nodeType": "YulAssignment",
"src": "7936:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7947:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7952:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7943:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7943:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7936:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7729:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7737:3:16",
"type": ""
}
],
"src": "7595:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8113:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8123:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8189:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8194:2:16",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8130:58:16"
},
"nodeType": "YulFunctionCall",
"src": "8130:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8123:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8295:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "8206:88:16"
},
"nodeType": "YulFunctionCall",
"src": "8206:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "8206:93:16"
},
{
"nodeType": "YulAssignment",
"src": "8308:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8319:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8324:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8315:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8315:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8308:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8101:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8109:3:16",
"type": ""
}
],
"src": "7967:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8485:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8495:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8561:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8566:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8502:58:16"
},
"nodeType": "YulFunctionCall",
"src": "8502:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8495:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8667:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "8578:88:16"
},
"nodeType": "YulFunctionCall",
"src": "8578:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "8578:93:16"
},
{
"nodeType": "YulAssignment",
"src": "8680:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8691:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8696:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8687:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8687:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8680:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8473:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8481:3:16",
"type": ""
}
],
"src": "8339:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8857:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8867:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8933:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8938:2:16",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8874:58:16"
},
"nodeType": "YulFunctionCall",
"src": "8874:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8867:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9039:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "8950:88:16"
},
"nodeType": "YulFunctionCall",
"src": "8950:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "8950:93:16"
},
{
"nodeType": "YulAssignment",
"src": "9052:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9063:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9068:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9059:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9059:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9052:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8845:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8853:3:16",
"type": ""
}
],
"src": "8711:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9229:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9239:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9305:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9310:2:16",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9246:58:16"
},
"nodeType": "YulFunctionCall",
"src": "9246:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9239:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9411:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "9322:88:16"
},
"nodeType": "YulFunctionCall",
"src": "9322:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "9322:93:16"
},
{
"nodeType": "YulAssignment",
"src": "9424:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9435:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9440:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9431:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9431:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9424:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9217:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9225:3:16",
"type": ""
}
],
"src": "9083:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9601:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9611:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9677:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9682:2:16",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9618:58:16"
},
"nodeType": "YulFunctionCall",
"src": "9618:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9611:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9783:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "9694:88:16"
},
"nodeType": "YulFunctionCall",
"src": "9694:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "9694:93:16"
},
{
"nodeType": "YulAssignment",
"src": "9796:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9807:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9812:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9803:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9803:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9796:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9589:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9597:3:16",
"type": ""
}
],
"src": "9455:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9973:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9983:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10049:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10054:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9990:58:16"
},
"nodeType": "YulFunctionCall",
"src": "9990:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9983:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10155:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "10066:88:16"
},
"nodeType": "YulFunctionCall",
"src": "10066:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "10066:93:16"
},
{
"nodeType": "YulAssignment",
"src": "10168:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10179:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10184:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10175:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10175:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10168:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9961:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9969:3:16",
"type": ""
}
],
"src": "9827:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10345:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10355:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10421:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10426:2:16",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10362:58:16"
},
"nodeType": "YulFunctionCall",
"src": "10362:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10355:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10527:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulIdentifier",
"src": "10438:88:16"
},
"nodeType": "YulFunctionCall",
"src": "10438:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "10438:93:16"
},
{
"nodeType": "YulAssignment",
"src": "10540:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10551:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10556:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10547:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10547:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10540:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10333:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10341:3:16",
"type": ""
}
],
"src": "10199:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10717:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10727:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10793:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10798:2:16",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10734:58:16"
},
"nodeType": "YulFunctionCall",
"src": "10734:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10727:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10899:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "10810:88:16"
},
"nodeType": "YulFunctionCall",
"src": "10810:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "10810:93:16"
},
{
"nodeType": "YulAssignment",
"src": "10912:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10923:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10928:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10919:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10919:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10912:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10705:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10713:3:16",
"type": ""
}
],
"src": "10571:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11089:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11099:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11165:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11170:2:16",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11106:58:16"
},
"nodeType": "YulFunctionCall",
"src": "11106:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11099:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11271:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "11182:88:16"
},
"nodeType": "YulFunctionCall",
"src": "11182:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "11182:93:16"
},
{
"nodeType": "YulAssignment",
"src": "11284:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11295:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11300:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11291:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11291:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11284:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11077:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11085:3:16",
"type": ""
}
],
"src": "10943:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11461:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11471:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11537:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11542:2:16",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11478:58:16"
},
"nodeType": "YulFunctionCall",
"src": "11478:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11471:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11643:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "11554:88:16"
},
"nodeType": "YulFunctionCall",
"src": "11554:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "11554:93:16"
},
{
"nodeType": "YulAssignment",
"src": "11656:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11667:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11672:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11663:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11663:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11656:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11449:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11457:3:16",
"type": ""
}
],
"src": "11315:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11752:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11769:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11792:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11774:17:16"
},
"nodeType": "YulFunctionCall",
"src": "11774:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11762:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11762:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "11762:37:16"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11740:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11747:3:16",
"type": ""
}
],
"src": "11687:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11874:52:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11891:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11913:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint64",
"nodeType": "YulIdentifier",
"src": "11896:16:16"
},
"nodeType": "YulFunctionCall",
"src": "11896:23:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11884:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11884:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "11884:36:16"
}
]
},
"name": "abi_encode_t_uint64_to_t_uint64_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11862:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11869:3:16",
"type": ""
}
],
"src": "11811:115:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12116:251:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12127:102:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12216:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12225:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "12134:81:16"
},
"nodeType": "YulFunctionCall",
"src": "12134:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12127:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12239:102:16",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12328:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12337:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "12246:81:16"
},
"nodeType": "YulFunctionCall",
"src": "12246:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12239:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12351:10:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12358:3:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12351:3:16"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12087:3:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12093:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12101:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12112:3:16",
"type": ""
}
],
"src": "11932:435:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12471:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12481:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12493:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12504:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12489:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12489:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12481:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12561:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12574:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12585:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12570:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12570:17:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12517:43:16"
},
"nodeType": "YulFunctionCall",
"src": "12517:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "12517:71:16"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12443:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12455:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12466:4:16",
"type": ""
}
],
"src": "12373:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12801:440:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12811:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12823:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12834:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12819:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12819:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12811:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12892:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12905:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12916:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12901:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12901:17:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12848:43:16"
},
"nodeType": "YulFunctionCall",
"src": "12848:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "12848:71:16"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12973:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12986:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12997:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12982:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12982:18:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12929:43:16"
},
"nodeType": "YulFunctionCall",
"src": "12929:72:16"
},
"nodeType": "YulExpressionStatement",
"src": "12929:72:16"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "13055:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13068:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13079:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13064:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13064:18:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13011:43:16"
},
"nodeType": "YulFunctionCall",
"src": "13011:72:16"
},
"nodeType": "YulExpressionStatement",
"src": "13011:72:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13104:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13115:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13100:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13100:18:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13124:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13130:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13120:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13120:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13093:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13093:48:16"
},
"nodeType": "YulExpressionStatement",
"src": "13093:48:16"
},
{
"nodeType": "YulAssignment",
"src": "13150:84:16",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "13220:6:16"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13229:4:16"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13158:61:16"
},
"nodeType": "YulFunctionCall",
"src": "13158:76:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13150:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12749:9:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "12761:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "12769:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12777:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12785:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12796:4:16",
"type": ""
}
],
"src": "12601:640:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13339:118:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13349:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13361:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13372:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13357:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13357:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13349:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13423:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13436:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13447:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13432:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13432:17:16"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "13385:37:16"
},
"nodeType": "YulFunctionCall",
"src": "13385:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "13385:65:16"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13311:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13323:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13334:4:16",
"type": ""
}
],
"src": "13247:210:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13581:195:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13591:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13603:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13614:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13599:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13599:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13591:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13638:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13649:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13634:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13634:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13657:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13663:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13653:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13653:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13627:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13627:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "13627:47:16"
},
{
"nodeType": "YulAssignment",
"src": "13683:86:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13755:6:16"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13764:4:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13691:63:16"
},
"nodeType": "YulFunctionCall",
"src": "13691:78:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13683:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13553:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13565:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13576:4:16",
"type": ""
}
],
"src": "13463:313:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13953:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13963:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13975:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13986:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13971:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13971:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13963:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14010:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14021:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14006:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14006:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14029:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14035:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14025:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14025:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13999:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13999:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "13999:47:16"
},
{
"nodeType": "YulAssignment",
"src": "14055:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14189:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14063:124:16"
},
"nodeType": "YulFunctionCall",
"src": "14063:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14055:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13933:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13948:4:16",
"type": ""
}
],
"src": "13782:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14378:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14388:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14400:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14411:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14396:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14396:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14388:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14435:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14446:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14431:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14431:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14454:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14460:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14450:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14450:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14424:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14424:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "14424:47:16"
},
{
"nodeType": "YulAssignment",
"src": "14480:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14614:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14488:124:16"
},
"nodeType": "YulFunctionCall",
"src": "14488:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14480:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14358:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14373:4:16",
"type": ""
}
],
"src": "14207:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14803:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14813:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14825:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14836:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14821:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14821:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14813:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14860:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14871:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14856:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14856:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14879:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14885:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14875:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14875:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14849:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14849:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "14849:47:16"
},
{
"nodeType": "YulAssignment",
"src": "14905:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15039:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14913:124:16"
},
"nodeType": "YulFunctionCall",
"src": "14913:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14905:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14783:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14798:4:16",
"type": ""
}
],
"src": "14632:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15228:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15238:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15250:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15261:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15246:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15246:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15238:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15285:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15296:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15281:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15281:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15304:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15310:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15300:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15300:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15274:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15274:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "15274:47:16"
},
{
"nodeType": "YulAssignment",
"src": "15330:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15464:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15338:124:16"
},
"nodeType": "YulFunctionCall",
"src": "15338:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15330:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15208:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15223:4:16",
"type": ""
}
],
"src": "15057:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15653:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15663:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15675:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15686:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15671:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15671:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15663:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15710:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15721:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15706:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15706:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15729:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15735:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15725:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15725:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15699:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15699:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "15699:47:16"
},
{
"nodeType": "YulAssignment",
"src": "15755:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15889:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15763:124:16"
},
"nodeType": "YulFunctionCall",
"src": "15763:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15755:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15633:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15648:4:16",
"type": ""
}
],
"src": "15482:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16078:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16088:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16100:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16111:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16096:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16096:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16088:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16135:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16146:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16131:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16131:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16154:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16160:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16150:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16150:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16124:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16124:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "16124:47:16"
},
{
"nodeType": "YulAssignment",
"src": "16180:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16314:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16188:124:16"
},
"nodeType": "YulFunctionCall",
"src": "16188:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16180:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16058:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16073:4:16",
"type": ""
}
],
"src": "15907:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16503:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16513:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16525:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16536:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16521:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16521:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16513:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16560:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16571:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16556:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16556:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16579:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16585:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16575:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16575:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16549:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16549:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "16549:47:16"
},
{
"nodeType": "YulAssignment",
"src": "16605:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16739:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16613:124:16"
},
"nodeType": "YulFunctionCall",
"src": "16613:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16605:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16483:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16498:4:16",
"type": ""
}
],
"src": "16332:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16928:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16938:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16950:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16961:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16946:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16946:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16938:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16985:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16996:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16981:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16981:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17004:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17010:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17000:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17000:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16974:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16974:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "16974:47:16"
},
{
"nodeType": "YulAssignment",
"src": "17030:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17164:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17038:124:16"
},
"nodeType": "YulFunctionCall",
"src": "17038:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17030:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16908:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16923:4:16",
"type": ""
}
],
"src": "16757:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17353:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17363:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17375:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17386:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17371:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17371:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17363:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17410:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17421:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17406:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17406:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17429:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17435:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17425:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17425:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17399:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17399:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "17399:47:16"
},
{
"nodeType": "YulAssignment",
"src": "17455:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17589:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17463:124:16"
},
"nodeType": "YulFunctionCall",
"src": "17463:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17455:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17333:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17348:4:16",
"type": ""
}
],
"src": "17182:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17778:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17788:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17800:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17811:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17796:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17796:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17788:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17835:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17846:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17831:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17831:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17854:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17860:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17850:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17850:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17824:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17824:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "17824:47:16"
},
{
"nodeType": "YulAssignment",
"src": "17880:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18014:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17888:124:16"
},
"nodeType": "YulFunctionCall",
"src": "17888:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17880:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17758:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17773:4:16",
"type": ""
}
],
"src": "17607:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18203:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18213:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18225:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18236:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18221:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18221:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18213:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18260:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18271:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18256:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18256:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18279:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18285:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18275:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18275:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18249:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18249:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "18249:47:16"
},
{
"nodeType": "YulAssignment",
"src": "18305:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18439:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18313:124:16"
},
"nodeType": "YulFunctionCall",
"src": "18313:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18305:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18183:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18198:4:16",
"type": ""
}
],
"src": "18032:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18628:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18638:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18650:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18661:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18646:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18646:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18638:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18685:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18696:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18681:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18681:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18704:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18710:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18700:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18700:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18674:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18674:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "18674:47:16"
},
{
"nodeType": "YulAssignment",
"src": "18730:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18864:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18738:124:16"
},
"nodeType": "YulFunctionCall",
"src": "18738:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18730:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18608:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18623:4:16",
"type": ""
}
],
"src": "18457:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18980:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18990:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19002:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19013:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18998:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18998:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18990:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19070:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19083:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19094:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19079:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19079:17:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "19026:43:16"
},
"nodeType": "YulFunctionCall",
"src": "19026:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "19026:71:16"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18952:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18964:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18975:4:16",
"type": ""
}
],
"src": "18882:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19206:122:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19216:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19228:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19239:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19224:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19224:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19216:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19294:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19307:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19318:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19303:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19303:17:16"
}
],
"functionName": {
"name": "abi_encode_t_uint64_to_t_uint64_fromStack",
"nodeType": "YulIdentifier",
"src": "19252:41:16"
},
"nodeType": "YulFunctionCall",
"src": "19252:69:16"
},
"nodeType": "YulExpressionStatement",
"src": "19252:69:16"
}
]
},
"name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19178:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19190:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19201:4:16",
"type": ""
}
],
"src": "19110:218:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19375:88:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19385:30:16",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "19395:18:16"
},
"nodeType": "YulFunctionCall",
"src": "19395:20:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19385:6:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19444:6:16"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19452:4:16"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "19424:19:16"
},
"nodeType": "YulFunctionCall",
"src": "19424:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "19424:33:16"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "19359:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19368:6:16",
"type": ""
}
],
"src": "19334:129:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19509:35:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19519:19:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19535:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "19529:5:16"
},
"nodeType": "YulFunctionCall",
"src": "19529:9:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19519:6:16"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19502:6:16",
"type": ""
}
],
"src": "19469:75:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19616:241:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "19721:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "19723:16:16"
},
"nodeType": "YulFunctionCall",
"src": "19723:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "19723:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19693:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19701:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "19690:2:16"
},
"nodeType": "YulFunctionCall",
"src": "19690:30:16"
},
"nodeType": "YulIf",
"src": "19687:56:16"
},
{
"nodeType": "YulAssignment",
"src": "19753:37:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19783:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "19761:21:16"
},
"nodeType": "YulFunctionCall",
"src": "19761:29:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19753:4:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19827:23:16",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19839:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19845:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19835:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19835:15:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19827:4:16"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19600:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "19611:4:16",
"type": ""
}
],
"src": "19550:307:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19921:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19932:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "19948:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "19942:5:16"
},
"nodeType": "YulFunctionCall",
"src": "19942:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19932:6:16"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "19904:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19914:6:16",
"type": ""
}
],
"src": "19863:98:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20026:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20037:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20053:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "20047:5:16"
},
"nodeType": "YulFunctionCall",
"src": "20047:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20037:6:16"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20009:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20019:6:16",
"type": ""
}
],
"src": "19967:99:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20167:73:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20184:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20189:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20177:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20177:19:16"
},
"nodeType": "YulExpressionStatement",
"src": "20177:19:16"
},
{
"nodeType": "YulAssignment",
"src": "20205:29:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20224:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20229:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20220:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20220:14:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20205:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20139:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20144:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20155:11:16",
"type": ""
}
],
"src": "20072:168:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20342:73:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20359:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20364:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20352:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20352:19:16"
},
"nodeType": "YulExpressionStatement",
"src": "20352:19:16"
},
{
"nodeType": "YulAssignment",
"src": "20380:29:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20399:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20404:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20395:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20395:14:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20380:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20314:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20319:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20330:11:16",
"type": ""
}
],
"src": "20246:169:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20535:34:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20545:18:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20560:3:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20545:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20507:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20512:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20523:11:16",
"type": ""
}
],
"src": "20421:148:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20619:261:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20629:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20652:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20634:17:16"
},
"nodeType": "YulFunctionCall",
"src": "20634:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20629:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20663:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20686:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20668:17:16"
},
"nodeType": "YulFunctionCall",
"src": "20668:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20663:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "20826:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "20828:16:16"
},
"nodeType": "YulFunctionCall",
"src": "20828:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "20828:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20747:1:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20754:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20822:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20750:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20750:74:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "20744:2:16"
},
"nodeType": "YulFunctionCall",
"src": "20744:81:16"
},
"nodeType": "YulIf",
"src": "20741:107:16"
},
{
"nodeType": "YulAssignment",
"src": "20858:16:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20869:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20872:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20865:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20865:9:16"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "20858:3:16"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "20606:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "20609:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "20615:3:16",
"type": ""
}
],
"src": "20575:305:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20928:143:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20938:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20961:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20943:17:16"
},
"nodeType": "YulFunctionCall",
"src": "20943:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20938:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20972:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20995:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20977:17:16"
},
"nodeType": "YulFunctionCall",
"src": "20977:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20972:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21019:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "21021:16:16"
},
"nodeType": "YulFunctionCall",
"src": "21021:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "21021:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21016:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21009:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21009:9:16"
},
"nodeType": "YulIf",
"src": "21006:35:16"
},
{
"nodeType": "YulAssignment",
"src": "21051:14:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21060:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21063:1:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "21056:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21056:9:16"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "21051:1:16"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "20917:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "20920:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "20926:1:16",
"type": ""
}
],
"src": "20886:185:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21122:146:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21132:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21155:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21137:17:16"
},
"nodeType": "YulFunctionCall",
"src": "21137:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21132:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21166:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21189:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21171:17:16"
},
"nodeType": "YulFunctionCall",
"src": "21171:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21166:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21213:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21215:16:16"
},
"nodeType": "YulFunctionCall",
"src": "21215:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "21215:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21207:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21210:1:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "21204:2:16"
},
"nodeType": "YulFunctionCall",
"src": "21204:8:16"
},
"nodeType": "YulIf",
"src": "21201:34:16"
},
{
"nodeType": "YulAssignment",
"src": "21245:17:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21257:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21260:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21253:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21253:9:16"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "21245:4:16"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21108:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21111:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "21117:4:16",
"type": ""
}
],
"src": "21077:191:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21319:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21329:35:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21358:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "21340:17:16"
},
"nodeType": "YulFunctionCall",
"src": "21340:24:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21329:7:16"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21301:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21311:7:16",
"type": ""
}
],
"src": "21274:96:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21418:48:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21428:32:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21453:5:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21446:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21446:13:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21439:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21439:21:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21428:7:16"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21400:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21410:7:16",
"type": ""
}
],
"src": "21376:90:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21516:105:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21526:89:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21541:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21548:66:16",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21537:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21537:78:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21526:7:16"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21498:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21508:7:16",
"type": ""
}
],
"src": "21472:149:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21672:81:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21682:65:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21697:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21704:42:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21693:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21693:54:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21682:7:16"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21654:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21664:7:16",
"type": ""
}
],
"src": "21627:126:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21804:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21814:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "21825:5:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21814:7:16"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21786:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21796:7:16",
"type": ""
}
],
"src": "21759:77:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21886:57:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21896:41:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21911:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21918:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21907:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21907:30:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21896:7:16"
}
]
}
]
},
"name": "cleanup_t_uint64",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21868:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21878:7:16",
"type": ""
}
],
"src": "21842:101:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22000:103:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22023:3:16"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "22028:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22033:6:16"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "22010:12:16"
},
"nodeType": "YulFunctionCall",
"src": "22010:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "22010:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22081:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22086:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22077:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22077:16:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22095:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22070:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22070:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "22070:27:16"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "21982:3:16",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "21987:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21992:6:16",
"type": ""
}
],
"src": "21949:154:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22158:258:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22168:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "22177:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "22172:1:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22237:63:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22262:3:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22267:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22258:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22258:11:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "22281:3:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22286:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22277:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22277:11:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22271:5:16"
},
"nodeType": "YulFunctionCall",
"src": "22271:18:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22251:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22251:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "22251:39:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22198:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22201:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22195:2:16"
},
"nodeType": "YulFunctionCall",
"src": "22195:13:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "22209:19:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22211:15:16",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22220:1:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22223:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22216:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22216:10:16"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22211:1:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "22191:3:16",
"statements": []
},
"src": "22187:113:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22334:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22384:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22389:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22380:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22380:16:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22398:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22373:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22373:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "22373:27:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22315:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22318:6:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "22312:2:16"
},
"nodeType": "YulFunctionCall",
"src": "22312:13:16"
},
"nodeType": "YulIf",
"src": "22309:101:16"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "22140:3:16",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "22145:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22150:6:16",
"type": ""
}
],
"src": "22109:307:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22473:269:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22483:22:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "22497:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22503:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "22493:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22493:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22483:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22514:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "22544:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22550:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22540:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22540:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "22518:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22591:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22605:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22619:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22627:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22615:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22615:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22605:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "22571:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22564:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22564:26:16"
},
"nodeType": "YulIf",
"src": "22561:81:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22694:42:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "22708:16:16"
},
"nodeType": "YulFunctionCall",
"src": "22708:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "22708:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "22658:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22681:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22689:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22678:2:16"
},
"nodeType": "YulFunctionCall",
"src": "22678:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "22655:2:16"
},
"nodeType": "YulFunctionCall",
"src": "22655:38:16"
},
"nodeType": "YulIf",
"src": "22652:84:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "22457:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22466:6:16",
"type": ""
}
],
"src": "22422:320:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22791:238:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22801:58:16",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22823:6:16"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "22853:4:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "22831:21:16"
},
"nodeType": "YulFunctionCall",
"src": "22831:27:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22819:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22819:40:16"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "22805:10:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22970:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "22972:16:16"
},
"nodeType": "YulFunctionCall",
"src": "22972:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "22972:18:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "22913:10:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22925:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "22910:2:16"
},
"nodeType": "YulFunctionCall",
"src": "22910:34:16"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "22949:10:16"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22961:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22946:2:16"
},
"nodeType": "YulFunctionCall",
"src": "22946:22:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "22907:2:16"
},
"nodeType": "YulFunctionCall",
"src": "22907:62:16"
},
"nodeType": "YulIf",
"src": "22904:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23008:2:16",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23012:10:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23001:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23001:22:16"
},
"nodeType": "YulExpressionStatement",
"src": "23001:22:16"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22777:6:16",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "22785:4:16",
"type": ""
}
],
"src": "22748:281:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23078:190:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23088:33:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23115:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23097:17:16"
},
"nodeType": "YulFunctionCall",
"src": "23097:24:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23088:5:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23211:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "23213:16:16"
},
"nodeType": "YulFunctionCall",
"src": "23213:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "23213:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23136:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23143:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "23133:2:16"
},
"nodeType": "YulFunctionCall",
"src": "23133:77:16"
},
"nodeType": "YulIf",
"src": "23130:103:16"
},
{
"nodeType": "YulAssignment",
"src": "23242:20:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23253:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23260:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23249:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23249:13:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "23242:3:16"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "23064:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "23074:3:16",
"type": ""
}
],
"src": "23035:233:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23308:142:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23318:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23341:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23323:17:16"
},
"nodeType": "YulFunctionCall",
"src": "23323:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23318:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23352:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23375:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23357:17:16"
},
"nodeType": "YulFunctionCall",
"src": "23357:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23352:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23399:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "23401:16:16"
},
"nodeType": "YulFunctionCall",
"src": "23401:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "23401:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23396:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "23389:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23389:9:16"
},
"nodeType": "YulIf",
"src": "23386:35:16"
},
{
"nodeType": "YulAssignment",
"src": "23430:14:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23439:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23442:1:16"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "23435:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23435:9:16"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "23430:1:16"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "23297:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "23300:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "23306:1:16",
"type": ""
}
],
"src": "23274:176:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23484:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23501:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23504:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23494:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23494:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "23494:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23598:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23601:4:16",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23591:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23591:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "23591:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23622:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23625:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23615:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23615:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "23615:15:16"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "23456:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23670:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23687:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23690:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23680:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23680:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "23680:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23784:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23787:4:16",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23777:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23777:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "23777:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23808:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23811:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23801:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23801:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "23801:15:16"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "23642:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23856:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23873:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23876:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23866:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23866:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "23866:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23970:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23973:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23963:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23963:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "23963:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23994:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23997:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23987:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23987:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "23987:15:16"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "23828:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24042:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24059:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24062:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24052:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24052:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "24052:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24156:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24159:4:16",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24149:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24149:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "24149:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24180:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24183:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24173:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24173:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "24173:15:16"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "24014:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24228:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24245:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24248:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24238:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24238:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "24238:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24342:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24345:4:16",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24335:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24335:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "24335:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24366:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24369:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24359:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24359:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "24359:15:16"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "24200:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24475:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24492:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24495:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24485:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24485:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "24485:12:16"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "24386:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24598:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24615:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24618:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24608:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24608:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "24608:12:16"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "24509:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24721:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24738:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24741:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24731:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24731:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "24731:12:16"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "24632:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24844:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24861:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24864:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24854:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24854:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "24854:12:16"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "24755:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24926:54:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24936:38:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24954:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24961:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24950:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24950:14:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24970:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "24966:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24966:7:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24946:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24946:28:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "24936:6:16"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24909:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "24919:6:16",
"type": ""
}
],
"src": "24878:102:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25092:131:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25114:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25122:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25110:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25110:14:16"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25126:34:16",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25103:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25103:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "25103:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25182:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25190:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25178:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25178:15:16"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25195:20:16",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25171:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25171:45:16"
},
"nodeType": "YulExpressionStatement",
"src": "25171:45:16"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25084:6:16",
"type": ""
}
],
"src": "24986:237:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25335:117:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25357:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25365:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25353:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25353:14:16"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25369:34:16",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25346:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25346:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "25346:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25425:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25433:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25421:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25421:15:16"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25438:6:16",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25414:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25414:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "25414:31:16"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25327:6:16",
"type": ""
}
],
"src": "25229:223:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25564:69:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25586:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25594:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25582:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25582:14:16"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25598:27:16",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25575:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25575:51:16"
},
"nodeType": "YulExpressionStatement",
"src": "25575:51:16"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25556:6:16",
"type": ""
}
],
"src": "25458:175:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25745:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25767:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25775:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25763:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25763:14:16"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25779:34:16",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25756:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25756:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "25756:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25835:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25843:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25831:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25831:15:16"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25848:14:16",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25824:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25824:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "25824:39:16"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25737:6:16",
"type": ""
}
],
"src": "25639:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25982:137:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26004:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26012:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26000:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26000:14:16"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26016:34:16",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25993:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25993:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "25993:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26072:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26080:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26068:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26068:15:16"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26085:26:16",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26061:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26061:51:16"
},
"nodeType": "YulExpressionStatement",
"src": "26061:51:16"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25974:6:16",
"type": ""
}
],
"src": "25876:243:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26231:123:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26253:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26261:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26249:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26249:14:16"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26265:34:16",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26242:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26242:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "26242:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26321:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26329:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26317:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26317:15:16"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26334:12:16",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26310:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26310:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "26310:37:16"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26223:6:16",
"type": ""
}
],
"src": "26125:229:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26466:122:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26488:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26496:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26484:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26484:14:16"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26500:34:16",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26477:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26477:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "26477:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26556:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26564:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26552:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26552:15:16"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26569:11:16",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26545:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26545:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "26545:36:16"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26458:6:16",
"type": ""
}
],
"src": "26360:228:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26700:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26722:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26730:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26718:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26718:14:16"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26734:34:16",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26711:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26711:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "26711:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26790:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26798:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26786:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26786:15:16"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26803:14:16",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26779:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26779:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "26779:39:16"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26692:6:16",
"type": ""
}
],
"src": "26594:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26937:122:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26959:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26967:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26955:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26955:14:16"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26971:34:16",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26948:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26948:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "26948:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27027:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27035:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27023:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27023:15:16"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27040:11:16",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27016:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27016:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "27016:36:16"
}
]
},
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26929:6:16",
"type": ""
}
],
"src": "26831:228:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27171:128:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27193:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27201:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27189:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27189:14:16"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27205:34:16",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27182:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27182:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "27182:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27261:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27269:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27257:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27257:15:16"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27274:17:16",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27250:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27250:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "27250:42:16"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27163:6:16",
"type": ""
}
],
"src": "27065:234:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27411:114:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27433:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27441:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27429:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27429:14:16"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27445:34:16",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27422:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27422:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "27422:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27501:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27509:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27497:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27497:15:16"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27514:3:16",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27490:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27490:28:16"
},
"nodeType": "YulExpressionStatement",
"src": "27490:28:16"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27403:6:16",
"type": ""
}
],
"src": "27305:220:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27637:130:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27659:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27667:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27655:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27655:14:16"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27671:34:16",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27648:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27648:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "27648:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27727:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27735:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27723:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27723:15:16"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27740:19:16",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27716:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27716:44:16"
},
"nodeType": "YulExpressionStatement",
"src": "27716:44:16"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27629:6:16",
"type": ""
}
],
"src": "27531:236:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27816:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "27873:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27882:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27885:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27875:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27875:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "27875:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27839:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27864:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "27846:17:16"
},
"nodeType": "YulFunctionCall",
"src": "27846:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27836:2:16"
},
"nodeType": "YulFunctionCall",
"src": "27836:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27829:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27829:43:16"
},
"nodeType": "YulIf",
"src": "27826:63:16"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27809:5:16",
"type": ""
}
],
"src": "27773:122:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27941:76:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "27995:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28004:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28007:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27997:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27997:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "27997:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27964:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27986:5:16"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "27971:14:16"
},
"nodeType": "YulFunctionCall",
"src": "27971:21:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27961:2:16"
},
"nodeType": "YulFunctionCall",
"src": "27961:32:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27954:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27954:40:16"
},
"nodeType": "YulIf",
"src": "27951:60:16"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27934:5:16",
"type": ""
}
],
"src": "27901:116:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28065:78:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28121:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28130:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28133:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28123:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28123:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "28123:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28088:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28112:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "28095:16:16"
},
"nodeType": "YulFunctionCall",
"src": "28095:23:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28085:2:16"
},
"nodeType": "YulFunctionCall",
"src": "28085:34:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28078:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28078:42:16"
},
"nodeType": "YulIf",
"src": "28075:62:16"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28058:5:16",
"type": ""
}
],
"src": "28023:120:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28192:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28249:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28258:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28261:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28251:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28251:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "28251:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28215:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28240:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28222:17:16"
},
"nodeType": "YulFunctionCall",
"src": "28222:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28212:2:16"
},
"nodeType": "YulFunctionCall",
"src": "28212:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28205:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28205:43:16"
},
"nodeType": "YulIf",
"src": "28202:63:16"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28185:5:16",
"type": ""
}
],
"src": "28149:122:16"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint64_to_t_uint64_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint64(value))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved for all\")\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(memPtr, 32), \"ent token\")\n\n }\n\n function store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer of token that i\")\n\n mstore(add(memPtr, 32), \"s not own\")\n\n }\n\n function store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(memPtr, 32), \"nexistent token\")\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(memPtr, 32), \"wner nor approved\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb4651461025d578063b88d4fde14610279578063c87b56dd14610295578063e985e9c5146102c5576100ea565b80636352211e146101df57806370a082311461020f57806395d89b411461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a55780635038f426146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b610109600480360381019061010491906116ec565b6102f5565b6040516101169190611a81565b60405180910390f35b610127610307565b6040516101349190611a9c565b60405180910390f35b61015760048036038101906101529190611746565b610399565b6040516101649190611a1a565b60405180910390f35b610187600480360381019061018291906116ac565b61041e565b005b6101a3600480360381019061019e9190611596565b610536565b005b6101bf60048036038101906101ba9190611596565b610596565b005b6101c96105b6565b6040516101d69190611c59565b60405180910390f35b6101f960048036038101906101f49190611746565b6105cf565b6040516102069190611a1a565b60405180910390f35b61022960048036038101906102249190611529565b610681565b6040516102369190611c3e565b60405180910390f35b610247610739565b6040516102549190611a9c565b60405180910390f35b6102776004803603810190610272919061166c565b6107cb565b005b610293600480360381019061028e91906115e9565b61094c565b005b6102af60048036038101906102aa9190611746565b6109ae565b6040516102bc9190611a9c565b60405180910390f35b6102df60048036038101906102da9190611556565b610a55565b6040516102ec9190611a81565b60405180910390f35b600061030082610ae9565b9050919050565b60606000805461031690611e92565b80601f016020809104026020016040519081016040528092919081815260200182805461034290611e92565b801561038f5780601f106103645761010080835404028352916020019161038f565b820191906000526020600020905b81548152906001019060200180831161037257829003601f168201915b5050505050905090565b60006103a482610bcb565b6103e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103da90611b9e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610429826105cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561049a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049190611bfe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166104b9610c37565b73ffffffffffffffffffffffffffffffffffffffff1614806104e857506104e7816104e2610c37565b610a55565b5b610527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051e90611b3e565b60405180910390fd5b6105318383610c3f565b505050565b610547610541610c37565b82610cf8565b610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d90611c1e565b60405180910390fd5b610591838383610dd6565b505050565b6105b18383836040518060200160405280600081525061094c565b505050565b60006105ca683c0000000000000000611032565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066f90611b7e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e990611b5e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606001805461074890611e92565b80601f016020809104026020016040519081016040528092919081815260200182805461077490611e92565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b6107d3610c37565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890611afe565b60405180910390fd5b806005600061084e610c37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166108fb610c37565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109409190611a81565b60405180910390a35050565b61095d610957610c37565b83610cf8565b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390611c1e565b60405180910390fd5b6109a884848484611053565b50505050565b60606109b982610bcb565b6109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90611bde565b60405180910390fd5b6000610a026110af565b90506000815111610a225760405180602001604052806000815250610a4d565b80610a2c846110c6565b604051602001610a3d9291906119f6565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bc45750610bc382611227565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cb2836105cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d0382610bcb565b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990611b1e565b60405180910390fd5b6000610d4d836105cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610dbc57508373ffffffffffffffffffffffffffffffffffffffff16610da484610399565b73ffffffffffffffffffffffffffffffffffffffff16145b80610dcd5750610dcc8185610a55565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610df6826105cf565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390611bbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390611ade565b60405180910390fd5b610ec7838383611291565b610ed2600082610c3f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f229190611d94565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f799190611d0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008082600f0b121561104457600080fd5b604082600f0b901d9050919050565b61105e848484610dd6565b61106a848484846112a1565b6110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090611abe565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600082141561110e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611222565b600082905060005b6000821461114057808061112990611ef5565b915050600a826111399190611d63565b9150611116565b60008167ffffffffffffffff81111561115c5761115b61202b565b5b6040519080825280601f01601f19166020018201604052801561118e5781602001600182028036833780820191505090505b5090505b6000851461121b576001826111a79190611d94565b9150600a856111b69190611f3e565b60306111c29190611d0d565b60f81b8183815181106111d8576111d7611ffc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112149190611d63565b9450611192565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61129c838383611438565b505050565b60006112c28473ffffffffffffffffffffffffffffffffffffffff1661143d565b1561142b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026112eb610c37565b8786866040518563ffffffff1660e01b815260040161130d9493929190611a35565b602060405180830381600087803b15801561132757600080fd5b505af192505050801561135857506040513d601f19601f820116820180604052508101906113559190611719565b60015b6113db573d8060008114611388576040519150601f19603f3d011682016040523d82523d6000602084013e61138d565b606091505b506000815114156113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90611abe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611430565b600190505b949350505050565b505050565b600080823b905060008111915050919050565b600061146361145e84611c99565b611c74565b90508281526020810184848401111561147f5761147e61205f565b5b61148a848285611e50565b509392505050565b6000813590506114a18161240d565b92915050565b6000813590506114b681612424565b92915050565b6000813590506114cb8161243b565b92915050565b6000815190506114e08161243b565b92915050565b600082601f8301126114fb576114fa61205a565b5b813561150b848260208601611450565b91505092915050565b60008135905061152381612452565b92915050565b60006020828403121561153f5761153e612069565b5b600061154d84828501611492565b91505092915050565b6000806040838503121561156d5761156c612069565b5b600061157b85828601611492565b925050602061158c85828601611492565b9150509250929050565b6000806000606084860312156115af576115ae612069565b5b60006115bd86828701611492565b93505060206115ce86828701611492565b92505060406115df86828701611514565b9150509250925092565b6000806000806080858703121561160357611602612069565b5b600061161187828801611492565b945050602061162287828801611492565b935050604061163387828801611514565b925050606085013567ffffffffffffffff81111561165457611653612064565b5b611660878288016114e6565b91505092959194509250565b6000806040838503121561168357611682612069565b5b600061169185828601611492565b92505060206116a2858286016114a7565b9150509250929050565b600080604083850312156116c3576116c2612069565b5b60006116d185828601611492565b92505060206116e285828601611514565b9150509250929050565b60006020828403121561170257611701612069565b5b6000611710848285016114bc565b91505092915050565b60006020828403121561172f5761172e612069565b5b600061173d848285016114d1565b91505092915050565b60006020828403121561175c5761175b612069565b5b600061176a84828501611514565b91505092915050565b61177c81611dc8565b82525050565b61178b81611dda565b82525050565b600061179c82611cca565b6117a68185611ce0565b93506117b6818560208601611e5f565b6117bf8161206e565b840191505092915050565b60006117d582611cd5565b6117df8185611cf1565b93506117ef818560208601611e5f565b6117f88161206e565b840191505092915050565b600061180e82611cd5565b6118188185611d02565b9350611828818560208601611e5f565b80840191505092915050565b6000611841603283611cf1565b915061184c8261207f565b604082019050919050565b6000611864602483611cf1565b915061186f826120ce565b604082019050919050565b6000611887601983611cf1565b91506118928261211d565b602082019050919050565b60006118aa602c83611cf1565b91506118b582612146565b604082019050919050565b60006118cd603883611cf1565b91506118d882612195565b604082019050919050565b60006118f0602a83611cf1565b91506118fb826121e4565b604082019050919050565b6000611913602983611cf1565b915061191e82612233565b604082019050919050565b6000611936602c83611cf1565b915061194182612282565b604082019050919050565b6000611959602983611cf1565b9150611964826122d1565b604082019050919050565b600061197c602f83611cf1565b915061198782612320565b604082019050919050565b600061199f602183611cf1565b91506119aa8261236f565b604082019050919050565b60006119c2603183611cf1565b91506119cd826123be565b604082019050919050565b6119e181611e32565b82525050565b6119f081611e3c565b82525050565b6000611a028285611803565b9150611a0e8284611803565b91508190509392505050565b6000602082019050611a2f6000830184611773565b92915050565b6000608082019050611a4a6000830187611773565b611a576020830186611773565b611a6460408301856119d8565b8181036060830152611a768184611791565b905095945050505050565b6000602082019050611a966000830184611782565b92915050565b60006020820190508181036000830152611ab681846117ca565b905092915050565b60006020820190508181036000830152611ad781611834565b9050919050565b60006020820190508181036000830152611af781611857565b9050919050565b60006020820190508181036000830152611b178161187a565b9050919050565b60006020820190508181036000830152611b378161189d565b9050919050565b60006020820190508181036000830152611b57816118c0565b9050919050565b60006020820190508181036000830152611b77816118e3565b9050919050565b60006020820190508181036000830152611b9781611906565b9050919050565b60006020820190508181036000830152611bb781611929565b9050919050565b60006020820190508181036000830152611bd78161194c565b9050919050565b60006020820190508181036000830152611bf78161196f565b9050919050565b60006020820190508181036000830152611c1781611992565b9050919050565b60006020820190508181036000830152611c37816119b5565b9050919050565b6000602082019050611c5360008301846119d8565b92915050565b6000602082019050611c6e60008301846119e7565b92915050565b6000611c7e611c8f565b9050611c8a8282611ec4565b919050565b6000604051905090565b600067ffffffffffffffff821115611cb457611cb361202b565b5b611cbd8261206e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611d1882611e32565b9150611d2383611e32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d5857611d57611f6f565b5b828201905092915050565b6000611d6e82611e32565b9150611d7983611e32565b925082611d8957611d88611f9e565b5b828204905092915050565b6000611d9f82611e32565b9150611daa83611e32565b925082821015611dbd57611dbc611f6f565b5b828203905092915050565b6000611dd382611e12565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015611e7d578082015181840152602081019050611e62565b83811115611e8c576000848401525b50505050565b60006002820490506001821680611eaa57607f821691505b60208210811415611ebe57611ebd611fcd565b5b50919050565b611ecd8261206e565b810181811067ffffffffffffffff82111715611eec57611eeb61202b565b5b80604052505050565b6000611f0082611e32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611f3357611f32611f6f565b5b600182019050919050565b6000611f4982611e32565b9150611f5483611e32565b925082611f6457611f63611f9e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61241681611dc8565b811461242157600080fd5b50565b61242d81611dda565b811461243857600080fd5b50565b61244481611de6565b811461244f57600080fd5b50565b61245b81611e32565b811461246657600080fd5b5056fea26469706673582212205c5e92ac612651d3495600ebe7f463df4db3df01d4f607a60ea117d4cf9adaea64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x295 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2C5 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x23F JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x5038F426 EQ PUSH2 0x1C1 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x16EC JUMP JUMPDEST PUSH2 0x2F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x1A81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x307 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1A9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1746 JUMP JUMPDEST PUSH2 0x399 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x16AC JUMP JUMPDEST PUSH2 0x41E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1596 JUMP JUMPDEST PUSH2 0x536 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1BF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1596 JUMP JUMPDEST PUSH2 0x596 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C9 PUSH2 0x5B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D6 SWAP2 SWAP1 PUSH2 0x1C59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F4 SWAP2 SWAP1 PUSH2 0x1746 JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x1529 JUMP JUMPDEST PUSH2 0x681 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x1C3E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x247 PUSH2 0x739 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x1A9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x277 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH2 0x7CB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x293 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28E SWAP2 SWAP1 PUSH2 0x15E9 JUMP JUMPDEST PUSH2 0x94C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AA SWAP2 SWAP1 PUSH2 0x1746 JUMP JUMPDEST PUSH2 0x9AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x1A9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x1556 JUMP JUMPDEST PUSH2 0xA55 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EC SWAP2 SWAP1 PUSH2 0x1A81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH2 0x300 DUP3 PUSH2 0xAE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x316 SWAP1 PUSH2 0x1E92 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x342 SWAP1 PUSH2 0x1E92 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x38F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x364 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x38F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x372 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A4 DUP3 PUSH2 0xBCB JUMP JUMPDEST PUSH2 0x3E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3DA SWAP1 PUSH2 0x1B9E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x429 DUP3 PUSH2 0x5CF JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x49A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x491 SWAP1 PUSH2 0x1BFE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x4B9 PUSH2 0xC37 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x4E8 JUMPI POP PUSH2 0x4E7 DUP2 PUSH2 0x4E2 PUSH2 0xC37 JUMP JUMPDEST PUSH2 0xA55 JUMP JUMPDEST JUMPDEST PUSH2 0x527 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x51E SWAP1 PUSH2 0x1B3E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x531 DUP4 DUP4 PUSH2 0xC3F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x547 PUSH2 0x541 PUSH2 0xC37 JUMP JUMPDEST DUP3 PUSH2 0xCF8 JUMP JUMPDEST PUSH2 0x586 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x57D SWAP1 PUSH2 0x1C1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x591 DUP4 DUP4 DUP4 PUSH2 0xDD6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5B1 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x94C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5CA PUSH9 0x3C0000000000000000 PUSH2 0x1032 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x678 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x66F SWAP1 PUSH2 0x1B7E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6F2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6E9 SWAP1 PUSH2 0x1B5E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x748 SWAP1 PUSH2 0x1E92 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x774 SWAP1 PUSH2 0x1E92 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7C1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x796 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7C1 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x7A4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7D3 PUSH2 0xC37 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x841 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x838 SWAP1 PUSH2 0x1AFE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x84E PUSH2 0xC37 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FB PUSH2 0xC37 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x940 SWAP2 SWAP1 PUSH2 0x1A81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x95D PUSH2 0x957 PUSH2 0xC37 JUMP JUMPDEST DUP4 PUSH2 0xCF8 JUMP JUMPDEST PUSH2 0x99C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x993 SWAP1 PUSH2 0x1C1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9A8 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1053 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9B9 DUP3 PUSH2 0xBCB JUMP JUMPDEST PUSH2 0x9F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9EF SWAP1 PUSH2 0x1BDE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xA02 PUSH2 0x10AF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xA22 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xA4D JUMP JUMPDEST DUP1 PUSH2 0xA2C DUP5 PUSH2 0x10C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xA3D SWAP3 SWAP2 SWAP1 PUSH2 0x19F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xBB4 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0xBC4 JUMPI POP PUSH2 0xBC3 DUP3 PUSH2 0x1227 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCB2 DUP4 PUSH2 0x5CF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD03 DUP3 PUSH2 0xBCB JUMP JUMPDEST PUSH2 0xD42 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD39 SWAP1 PUSH2 0x1B1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD4D DUP4 PUSH2 0x5CF JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xDBC JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA4 DUP5 PUSH2 0x399 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0xDCD JUMPI POP PUSH2 0xDCC DUP2 DUP6 PUSH2 0xA55 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDF6 DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE4C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE43 SWAP1 PUSH2 0x1BBE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xEBC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEB3 SWAP1 PUSH2 0x1ADE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xEC7 DUP4 DUP4 DUP4 PUSH2 0x1291 JUMP JUMPDEST PUSH2 0xED2 PUSH1 0x0 DUP3 PUSH2 0xC3F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF22 SWAP2 SWAP1 PUSH2 0x1D94 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF79 SWAP2 SWAP1 PUSH2 0x1D0D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH2 0x1044 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 PUSH1 0xF SIGNEXTEND SWAP1 SAR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x105E DUP5 DUP5 DUP5 PUSH2 0xDD6 JUMP JUMPDEST PUSH2 0x106A DUP5 DUP5 DUP5 DUP5 PUSH2 0x12A1 JUMP JUMPDEST PUSH2 0x10A9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10A0 SWAP1 PUSH2 0x1ABE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x110E JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1222 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1140 JUMPI DUP1 DUP1 PUSH2 0x1129 SWAP1 PUSH2 0x1EF5 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1139 SWAP2 SWAP1 PUSH2 0x1D63 JUMP JUMPDEST SWAP2 POP PUSH2 0x1116 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x115C JUMPI PUSH2 0x115B PUSH2 0x202B JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x118E JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x121B JUMPI PUSH1 0x1 DUP3 PUSH2 0x11A7 SWAP2 SWAP1 PUSH2 0x1D94 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x11B6 SWAP2 SWAP1 PUSH2 0x1F3E JUMP JUMPDEST PUSH1 0x30 PUSH2 0x11C2 SWAP2 SWAP1 PUSH2 0x1D0D JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x11D8 JUMPI PUSH2 0x11D7 PUSH2 0x1FFC JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1214 SWAP2 SWAP1 PUSH2 0x1D63 JUMP JUMPDEST SWAP5 POP PUSH2 0x1192 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x129C DUP4 DUP4 DUP4 PUSH2 0x1438 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12C2 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x143D JUMP JUMPDEST ISZERO PUSH2 0x142B JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x12EB PUSH2 0xC37 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x130D SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1A35 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1327 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1358 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1355 SWAP2 SWAP1 PUSH2 0x1719 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x13DB JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1388 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x138D JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x13D3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13CA SWAP1 PUSH2 0x1ABE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1463 PUSH2 0x145E DUP5 PUSH2 0x1C99 JUMP JUMPDEST PUSH2 0x1C74 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x147F JUMPI PUSH2 0x147E PUSH2 0x205F JUMP JUMPDEST JUMPDEST PUSH2 0x148A DUP5 DUP3 DUP6 PUSH2 0x1E50 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14A1 DUP2 PUSH2 0x240D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14B6 DUP2 PUSH2 0x2424 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14CB DUP2 PUSH2 0x243B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x14E0 DUP2 PUSH2 0x243B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x14FB JUMPI PUSH2 0x14FA PUSH2 0x205A JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x150B DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1450 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1523 DUP2 PUSH2 0x2452 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153E PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x154D DUP5 DUP3 DUP6 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x156D JUMPI PUSH2 0x156C PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x157B DUP6 DUP3 DUP7 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x158C DUP6 DUP3 DUP7 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x15AF JUMPI PUSH2 0x15AE PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x15BD DUP7 DUP3 DUP8 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x15CE DUP7 DUP3 DUP8 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15DF DUP7 DUP3 DUP8 ADD PUSH2 0x1514 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1603 JUMPI PUSH2 0x1602 PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1611 DUP8 DUP3 DUP9 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1622 DUP8 DUP3 DUP9 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1633 DUP8 DUP3 DUP9 ADD PUSH2 0x1514 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1654 JUMPI PUSH2 0x1653 PUSH2 0x2064 JUMP JUMPDEST JUMPDEST PUSH2 0x1660 DUP8 DUP3 DUP9 ADD PUSH2 0x14E6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1683 JUMPI PUSH2 0x1682 PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1691 DUP6 DUP3 DUP7 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x16A2 DUP6 DUP3 DUP7 ADD PUSH2 0x14A7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x16C3 JUMPI PUSH2 0x16C2 PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16D1 DUP6 DUP3 DUP7 ADD PUSH2 0x1492 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x16E2 DUP6 DUP3 DUP7 ADD PUSH2 0x1514 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1702 JUMPI PUSH2 0x1701 PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1710 DUP5 DUP3 DUP6 ADD PUSH2 0x14BC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x172F JUMPI PUSH2 0x172E PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x173D DUP5 DUP3 DUP6 ADD PUSH2 0x14D1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x175C JUMPI PUSH2 0x175B PUSH2 0x2069 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x176A DUP5 DUP3 DUP6 ADD PUSH2 0x1514 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x177C DUP2 PUSH2 0x1DC8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x178B DUP2 PUSH2 0x1DDA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x179C DUP3 PUSH2 0x1CCA JUMP JUMPDEST PUSH2 0x17A6 DUP2 DUP6 PUSH2 0x1CE0 JUMP JUMPDEST SWAP4 POP PUSH2 0x17B6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1E5F JUMP JUMPDEST PUSH2 0x17BF DUP2 PUSH2 0x206E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17D5 DUP3 PUSH2 0x1CD5 JUMP JUMPDEST PUSH2 0x17DF DUP2 DUP6 PUSH2 0x1CF1 JUMP JUMPDEST SWAP4 POP PUSH2 0x17EF DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1E5F JUMP JUMPDEST PUSH2 0x17F8 DUP2 PUSH2 0x206E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180E DUP3 PUSH2 0x1CD5 JUMP JUMPDEST PUSH2 0x1818 DUP2 DUP6 PUSH2 0x1D02 JUMP JUMPDEST SWAP4 POP PUSH2 0x1828 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1E5F JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1841 PUSH1 0x32 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x184C DUP3 PUSH2 0x207F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1864 PUSH1 0x24 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x186F DUP3 PUSH2 0x20CE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1887 PUSH1 0x19 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1892 DUP3 PUSH2 0x211D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18AA PUSH1 0x2C DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x18B5 DUP3 PUSH2 0x2146 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18CD PUSH1 0x38 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x18D8 DUP3 PUSH2 0x2195 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18F0 PUSH1 0x2A DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x18FB DUP3 PUSH2 0x21E4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1913 PUSH1 0x29 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x191E DUP3 PUSH2 0x2233 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1936 PUSH1 0x2C DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1941 DUP3 PUSH2 0x2282 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1959 PUSH1 0x29 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1964 DUP3 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x197C PUSH1 0x2F DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1987 DUP3 PUSH2 0x2320 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x199F PUSH1 0x21 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x19AA DUP3 PUSH2 0x236F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19C2 PUSH1 0x31 DUP4 PUSH2 0x1CF1 JUMP JUMPDEST SWAP2 POP PUSH2 0x19CD DUP3 PUSH2 0x23BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x19E1 DUP2 PUSH2 0x1E32 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x19F0 DUP2 PUSH2 0x1E3C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A02 DUP3 DUP6 PUSH2 0x1803 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A0E DUP3 DUP5 PUSH2 0x1803 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A2F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1773 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1A4A PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1773 JUMP JUMPDEST PUSH2 0x1A57 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1773 JUMP JUMPDEST PUSH2 0x1A64 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19D8 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A76 DUP2 DUP5 PUSH2 0x1791 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A96 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1782 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AB6 DUP2 DUP5 PUSH2 0x17CA JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AD7 DUP2 PUSH2 0x1834 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AF7 DUP2 PUSH2 0x1857 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B17 DUP2 PUSH2 0x187A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B37 DUP2 PUSH2 0x189D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B57 DUP2 PUSH2 0x18C0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B77 DUP2 PUSH2 0x18E3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B97 DUP2 PUSH2 0x1906 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BB7 DUP2 PUSH2 0x1929 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BD7 DUP2 PUSH2 0x194C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BF7 DUP2 PUSH2 0x196F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C17 DUP2 PUSH2 0x1992 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C37 DUP2 PUSH2 0x19B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1C53 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x19D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1C6E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x19E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C7E PUSH2 0x1C8F JUMP JUMPDEST SWAP1 POP PUSH2 0x1C8A DUP3 DUP3 PUSH2 0x1EC4 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1CB4 JUMPI PUSH2 0x1CB3 PUSH2 0x202B JUMP JUMPDEST JUMPDEST PUSH2 0x1CBD DUP3 PUSH2 0x206E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D18 DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D23 DUP4 PUSH2 0x1E32 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1D58 JUMPI PUSH2 0x1D57 PUSH2 0x1F6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D6E DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D79 DUP4 PUSH2 0x1E32 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1D89 JUMPI PUSH2 0x1D88 PUSH2 0x1F9E JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D9F DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH2 0x1DAA DUP4 PUSH2 0x1E32 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1DBD JUMPI PUSH2 0x1DBC PUSH2 0x1F6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DD3 DUP3 PUSH2 0x1E12 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1E7D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1E62 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1E8C JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1EAA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1EBE JUMPI PUSH2 0x1EBD PUSH2 0x1FCD JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1ECD DUP3 PUSH2 0x206E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1EEC JUMPI PUSH2 0x1EEB PUSH2 0x202B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F00 DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1F33 JUMPI PUSH2 0x1F32 PUSH2 0x1F6F JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F49 DUP3 PUSH2 0x1E32 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F54 DUP4 PUSH2 0x1E32 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1F64 JUMPI PUSH2 0x1F63 PUSH2 0x1F9E JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2416 DUP2 PUSH2 0x1DC8 JUMP JUMPDEST DUP2 EQ PUSH2 0x2421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x242D DUP2 PUSH2 0x1DDA JUMP JUMPDEST DUP2 EQ PUSH2 0x2438 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2444 DUP2 PUSH2 0x1DE6 JUMP JUMPDEST DUP2 EQ PUSH2 0x244F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x245B DUP2 PUSH2 0x1E32 JUMP JUMPDEST DUP2 EQ PUSH2 0x2466 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5C 0x5E SWAP3 0xAC PUSH2 0x2651 0xD3 0x49 JUMP STOP 0xEB 0xE7 DELEGATECALL PUSH4 0xDF4DB3DF ADD 0xD4 0xF6 SMOD 0xA6 0xE LOG1 OR 0xD4 0xCF SWAP11 0xDA 0xEA PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "543:949:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1303:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2414:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3925:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3463:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4789:330;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5185:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:104:14;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2117:235:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1855:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2576:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4209:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5430:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2744:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4565:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1303:187:14;1420:4;1447:36;1471:11;1447:23;:36::i;:::-;1440:43;;1303:187;;;:::o;2414:98:1:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;4028:16;4036:7;4028;:16::i;:::-;4020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4111:15;:24;4127:7;4111:24;;;;;;;;;;;;;;;;;;;;;4104:31;;3925:217;;;:::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;3600:11;;:2;:11;;;;3592:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3697:5;3681:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3706:37;3723:5;3730:12;:10;:12::i;:::-;3706:16;:37::i;:::-;3681:62;3660:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;4789:330::-;4978:41;4997:12;:10;:12::i;:::-;5011:7;4978:18;:41::i;:::-;4970:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;:::-;4789:330;;;:::o;5185:179::-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;:::-;5185:179;;;:::o;937:104:14:-;980:6;1005:29;823:8;1005:20;:29::i;:::-;998:36;;937:104;:::o;2117:235:1:-;2189:7;2208:13;2224:7;:16;2232:7;2224:16;;;;;;;;;;;;;;;;;;;;;2208:32;;2275:1;2258:19;;:5;:19;;;;2250:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2340:5;2333:12;;;2117:235;;;:::o;1855:205::-;1927:7;1971:1;1954:19;;:5;:19;;;;1946:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2037:9;:16;2047:5;2037:16;;;;;;;;;;;;;;;;2030:23;;1855:205;;;:::o;2576:102::-;2632:13;2664:7;2657:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2576:102;:::o;4209:290::-;4323:12;:10;:12::i;:::-;4311:24;;:8;:24;;;;4303:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4421:8;4376:18;:32;4395:12;:10;:12::i;:::-;4376:32;;;;;;;;;;;;;;;:42;4409:8;4376:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4473:8;4444:48;;4459:12;:10;:12::i;:::-;4444:48;;;4483:8;4444:48;;;;;;:::i;:::-;;;;;;;;4209:290;;:::o;5430:320::-;5599:41;5618:12;:10;:12::i;:::-;5632:7;5599:18;:41::i;:::-;5591:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2744:329::-;2817:13;2850:16;2858:7;2850;:16::i;:::-;2842:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;;;2744:329;;;:::o;4565:162::-;4662:4;4685:18;:25;4704:5;4685:25;;;;;;;;;;;;;;;:35;4711:8;4685:35;;;;;;;;;;;;;;;;;;;;;;;;;4678:42;;4565:162;;;;:::o;1496:300::-;1598:4;1648:25;1633:40;;;:11;:40;;;;:104;;;;1704:33;1689:48;;;:11;:48;;;;1633:104;:156;;;;1753:36;1777:11;1753:23;:36::i;:::-;1633:156;1614:175;;1496:300;;;:::o;7222:125::-;7287:4;7338:1;7310:30;;:7;:16;7318:7;7310:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7303:37;;7222:125;;;:::o;587:96:9:-;640:7;666:10;659:17;;587:96;:::o;11073:171:1:-;11174:2;11147:15;:24;11163:7;11147:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11229:7;11225:2;11191:46;;11200:23;11215:7;11200:14;:23::i;:::-;11191:46;;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7622:16;7630:7;7622;:16::i;:::-;7614:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;7754:16;;:7;:16;;;:51;;;;7798:7;7774:31;;:20;7786:7;7774:11;:20::i;:::-;:31;;;7754:51;:87;;;;7809:32;7826:5;7833:7;7809:16;:32::i;:::-;7754:87;7746:96;;;7505:344;;;;:::o;10402:560::-;10556:4;10529:31;;:23;10544:7;10529:14;:23::i;:::-;:31;;;10521:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10638:1;10624:16;;:2;:16;;;;10616:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;10852:1;10833:9;:15;10843:4;10833:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10880:1;10863:9;:13;10873:2;10863:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10910:2;10891:7;:16;10899:7;10891:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10947:7;10943:2;10928:27;;10937:4;10928:27;;;;;;;;;;;;10402:560;;;:::o;2365:150:15:-;2415:6;2461:1;2456;:6;;;;2447:16;;;;;;2500:2;2495:1;:7;;;;2471:33;;2365:150;;;:::o;6612:307:1:-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6612:307;;;;:::o;3314:92::-;3365:13;3390:9;;;;;;;;;;;;;;3314:92;:::o;275:703:11:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;763:155:12:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;1116:181:14:-;1245:45;1272:4;1278:2;1282:7;1245:26;:45::i;:::-;1116:181;;;:::o;11797:778:1:-;11947:4;11967:15;:2;:13;;;:15::i;:::-;11963:606;;;12018:2;12002:36;;;12039:12;:10;:12::i;:::-;12053:4;12059:7;12068:5;12002:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12258:1;12241:6;:13;:18;12237:266;;;12283:60;;;;;;;;;;:::i;:::-;;;;;;;;12237:266;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;12134:41;;;12124:51;;;:6;:51;;;;12117:58;;;;;11963:606;12554:4;12547:11;;11797:778;;;;;;;:::o;13131:122::-;;;;:::o;718:377:8:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;7:410:16:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:::-;8109:3;8130:67;8194:2;8189:3;8130:67;:::i;:::-;8123:74;;8206:93;8295:3;8206:93;:::i;:::-;8324:2;8319:3;8315:12;8308:19;;7967:366;;;:::o;8339:::-;8481:3;8502:67;8566:2;8561:3;8502:67;:::i;:::-;8495:74;;8578:93;8667:3;8578:93;:::i;:::-;8696:2;8691:3;8687:12;8680:19;;8339:366;;;:::o;8711:::-;8853:3;8874:67;8938:2;8933:3;8874:67;:::i;:::-;8867:74;;8950:93;9039:3;8950:93;:::i;:::-;9068:2;9063:3;9059:12;9052:19;;8711:366;;;:::o;9083:::-;9225:3;9246:67;9310:2;9305:3;9246:67;:::i;:::-;9239:74;;9322:93;9411:3;9322:93;:::i;:::-;9440:2;9435:3;9431:12;9424:19;;9083:366;;;:::o;9455:::-;9597:3;9618:67;9682:2;9677:3;9618:67;:::i;:::-;9611:74;;9694:93;9783:3;9694:93;:::i;:::-;9812:2;9807:3;9803:12;9796:19;;9455:366;;;:::o;9827:::-;9969:3;9990:67;10054:2;10049:3;9990:67;:::i;:::-;9983:74;;10066:93;10155:3;10066:93;:::i;:::-;10184:2;10179:3;10175:12;10168:19;;9827:366;;;:::o;10199:::-;10341:3;10362:67;10426:2;10421:3;10362:67;:::i;:::-;10355:74;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10199:366;;;:::o;10571:::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:118::-;11774:24;11792:5;11774:24;:::i;:::-;11769:3;11762:37;11687:118;;:::o;11811:115::-;11896:23;11913:5;11896:23;:::i;:::-;11891:3;11884:36;11811:115;;:::o;11932:435::-;12112:3;12134:95;12225:3;12216:6;12134:95;:::i;:::-;12127:102;;12246:95;12337:3;12328:6;12246:95;:::i;:::-;12239:102;;12358:3;12351:10;;11932:435;;;;;:::o;12373:222::-;12466:4;12504:2;12493:9;12489:18;12481:26;;12517:71;12585:1;12574:9;12570:17;12561:6;12517:71;:::i;:::-;12373:222;;;;:::o;12601:640::-;12796:4;12834:3;12823:9;12819:19;12811:27;;12848:71;12916:1;12905:9;12901:17;12892:6;12848:71;:::i;:::-;12929:72;12997:2;12986:9;12982:18;12973:6;12929:72;:::i;:::-;13011;13079:2;13068:9;13064:18;13055:6;13011:72;:::i;:::-;13130:9;13124:4;13120:20;13115:2;13104:9;13100:18;13093:48;13158:76;13229:4;13220:6;13158:76;:::i;:::-;13150:84;;12601:640;;;;;;;:::o;13247:210::-;13334:4;13372:2;13361:9;13357:18;13349:26;;13385:65;13447:1;13436:9;13432:17;13423:6;13385:65;:::i;:::-;13247:210;;;;:::o;13463:313::-;13576:4;13614:2;13603:9;13599:18;13591:26;;13663:9;13657:4;13653:20;13649:1;13638:9;13634:17;13627:47;13691:78;13764:4;13755:6;13691:78;:::i;:::-;13683:86;;13463:313;;;;:::o;13782:419::-;13948:4;13986:2;13975:9;13971:18;13963:26;;14035:9;14029:4;14025:20;14021:1;14010:9;14006:17;13999:47;14063:131;14189:4;14063:131;:::i;:::-;14055:139;;13782:419;;;:::o;14207:::-;14373:4;14411:2;14400:9;14396:18;14388:26;;14460:9;14454:4;14450:20;14446:1;14435:9;14431:17;14424:47;14488:131;14614:4;14488:131;:::i;:::-;14480:139;;14207:419;;;:::o;14632:::-;14798:4;14836:2;14825:9;14821:18;14813:26;;14885:9;14879:4;14875:20;14871:1;14860:9;14856:17;14849:47;14913:131;15039:4;14913:131;:::i;:::-;14905:139;;14632:419;;;:::o;15057:::-;15223:4;15261:2;15250:9;15246:18;15238:26;;15310:9;15304:4;15300:20;15296:1;15285:9;15281:17;15274:47;15338:131;15464:4;15338:131;:::i;:::-;15330:139;;15057:419;;;:::o;15482:::-;15648:4;15686:2;15675:9;15671:18;15663:26;;15735:9;15729:4;15725:20;15721:1;15710:9;15706:17;15699:47;15763:131;15889:4;15763:131;:::i;:::-;15755:139;;15482:419;;;:::o;15907:::-;16073:4;16111:2;16100:9;16096:18;16088:26;;16160:9;16154:4;16150:20;16146:1;16135:9;16131:17;16124:47;16188:131;16314:4;16188:131;:::i;:::-;16180:139;;15907:419;;;:::o;16332:::-;16498:4;16536:2;16525:9;16521:18;16513:26;;16585:9;16579:4;16575:20;16571:1;16560:9;16556:17;16549:47;16613:131;16739:4;16613:131;:::i;:::-;16605:139;;16332:419;;;:::o;16757:::-;16923:4;16961:2;16950:9;16946:18;16938:26;;17010:9;17004:4;17000:20;16996:1;16985:9;16981:17;16974:47;17038:131;17164:4;17038:131;:::i;:::-;17030:139;;16757:419;;;:::o;17182:::-;17348:4;17386:2;17375:9;17371:18;17363:26;;17435:9;17429:4;17425:20;17421:1;17410:9;17406:17;17399:47;17463:131;17589:4;17463:131;:::i;:::-;17455:139;;17182:419;;;:::o;17607:::-;17773:4;17811:2;17800:9;17796:18;17788:26;;17860:9;17854:4;17850:20;17846:1;17835:9;17831:17;17824:47;17888:131;18014:4;17888:131;:::i;:::-;17880:139;;17607:419;;;:::o;18032:::-;18198:4;18236:2;18225:9;18221:18;18213:26;;18285:9;18279:4;18275:20;18271:1;18260:9;18256:17;18249:47;18313:131;18439:4;18313:131;:::i;:::-;18305:139;;18032:419;;;:::o;18457:::-;18623:4;18661:2;18650:9;18646:18;18638:26;;18710:9;18704:4;18700:20;18696:1;18685:9;18681:17;18674:47;18738:131;18864:4;18738:131;:::i;:::-;18730:139;;18457:419;;;:::o;18882:222::-;18975:4;19013:2;19002:9;18998:18;18990:26;;19026:71;19094:1;19083:9;19079:17;19070:6;19026:71;:::i;:::-;18882:222;;;;:::o;19110:218::-;19201:4;19239:2;19228:9;19224:18;19216:26;;19252:69;19318:1;19307:9;19303:17;19294:6;19252:69;:::i;:::-;19110:218;;;;:::o;19334:129::-;19368:6;19395:20;;:::i;:::-;19385:30;;19424:33;19452:4;19444:6;19424:33;:::i;:::-;19334:129;;;:::o;19469:75::-;19502:6;19535:2;19529:9;19519:19;;19469:75;:::o;19550:307::-;19611:4;19701:18;19693:6;19690:30;19687:56;;;19723:18;;:::i;:::-;19687:56;19761:29;19783:6;19761:29;:::i;:::-;19753:37;;19845:4;19839;19835:15;19827:23;;19550:307;;;:::o;19863:98::-;19914:6;19948:5;19942:12;19932:22;;19863:98;;;:::o;19967:99::-;20019:6;20053:5;20047:12;20037:22;;19967:99;;;:::o;20072:168::-;20155:11;20189:6;20184:3;20177:19;20229:4;20224:3;20220:14;20205:29;;20072:168;;;;:::o;20246:169::-;20330:11;20364:6;20359:3;20352:19;20404:4;20399:3;20395:14;20380:29;;20246:169;;;;:::o;20421:148::-;20523:11;20560:3;20545:18;;20421:148;;;;:::o;20575:305::-;20615:3;20634:20;20652:1;20634:20;:::i;:::-;20629:25;;20668:20;20686:1;20668:20;:::i;:::-;20663:25;;20822:1;20754:66;20750:74;20747:1;20744:81;20741:107;;;20828:18;;:::i;:::-;20741:107;20872:1;20869;20865:9;20858:16;;20575:305;;;;:::o;20886:185::-;20926:1;20943:20;20961:1;20943:20;:::i;:::-;20938:25;;20977:20;20995:1;20977:20;:::i;:::-;20972:25;;21016:1;21006:35;;21021:18;;:::i;:::-;21006:35;21063:1;21060;21056:9;21051:14;;20886:185;;;;:::o;21077:191::-;21117:4;21137:20;21155:1;21137:20;:::i;:::-;21132:25;;21171:20;21189:1;21171:20;:::i;:::-;21166:25;;21210:1;21207;21204:8;21201:34;;;21215:18;;:::i;:::-;21201:34;21260:1;21257;21253:9;21245:17;;21077:191;;;;:::o;21274:96::-;21311:7;21340:24;21358:5;21340:24;:::i;:::-;21329:35;;21274:96;;;:::o;21376:90::-;21410:7;21453:5;21446:13;21439:21;21428:32;;21376:90;;;:::o;21472:149::-;21508:7;21548:66;21541:5;21537:78;21526:89;;21472:149;;;:::o;21627:126::-;21664:7;21704:42;21697:5;21693:54;21682:65;;21627:126;;;:::o;21759:77::-;21796:7;21825:5;21814:16;;21759:77;;;:::o;21842:101::-;21878:7;21918:18;21911:5;21907:30;21896:41;;21842:101;;;:::o;21949:154::-;22033:6;22028:3;22023;22010:30;22095:1;22086:6;22081:3;22077:16;22070:27;21949:154;;;:::o;22109:307::-;22177:1;22187:113;22201:6;22198:1;22195:13;22187:113;;;22286:1;22281:3;22277:11;22271:18;22267:1;22262:3;22258:11;22251:39;22223:2;22220:1;22216:10;22211:15;;22187:113;;;22318:6;22315:1;22312:13;22309:101;;;22398:1;22389:6;22384:3;22380:16;22373:27;22309:101;22158:258;22109:307;;;:::o;22422:320::-;22466:6;22503:1;22497:4;22493:12;22483:22;;22550:1;22544:4;22540:12;22571:18;22561:81;;22627:4;22619:6;22615:17;22605:27;;22561:81;22689:2;22681:6;22678:14;22658:18;22655:38;22652:84;;;22708:18;;:::i;:::-;22652:84;22473:269;22422:320;;;:::o;22748:281::-;22831:27;22853:4;22831:27;:::i;:::-;22823:6;22819:40;22961:6;22949:10;22946:22;22925:18;22913:10;22910:34;22907:62;22904:88;;;22972:18;;:::i;:::-;22904:88;23012:10;23008:2;23001:22;22791:238;22748:281;;:::o;23035:233::-;23074:3;23097:24;23115:5;23097:24;:::i;:::-;23088:33;;23143:66;23136:5;23133:77;23130:103;;;23213:18;;:::i;:::-;23130:103;23260:1;23253:5;23249:13;23242:20;;23035:233;;;:::o;23274:176::-;23306:1;23323:20;23341:1;23323:20;:::i;:::-;23318:25;;23357:20;23375:1;23357:20;:::i;:::-;23352:25;;23396:1;23386:35;;23401:18;;:::i;:::-;23386:35;23442:1;23439;23435:9;23430:14;;23274:176;;;;:::o;23456:180::-;23504:77;23501:1;23494:88;23601:4;23598:1;23591:15;23625:4;23622:1;23615:15;23642:180;23690:77;23687:1;23680:88;23787:4;23784:1;23777:15;23811:4;23808:1;23801:15;23828:180;23876:77;23873:1;23866:88;23973:4;23970:1;23963:15;23997:4;23994:1;23987:15;24014:180;24062:77;24059:1;24052:88;24159:4;24156:1;24149:15;24183:4;24180:1;24173:15;24200:180;24248:77;24245:1;24238:88;24345:4;24342:1;24335:15;24369:4;24366:1;24359:15;24386:117;24495:1;24492;24485:12;24509:117;24618:1;24615;24608:12;24632:117;24741:1;24738;24731:12;24755:117;24864:1;24861;24854:12;24878:102;24919:6;24970:2;24966:7;24961:2;24954:5;24950:14;24946:28;24936:38;;24878:102;;;:::o;24986:237::-;25126:34;25122:1;25114:6;25110:14;25103:58;25195:20;25190:2;25182:6;25178:15;25171:45;24986:237;:::o;25229:223::-;25369:34;25365:1;25357:6;25353:14;25346:58;25438:6;25433:2;25425:6;25421:15;25414:31;25229:223;:::o;25458:175::-;25598:27;25594:1;25586:6;25582:14;25575:51;25458:175;:::o;25639:231::-;25779:34;25775:1;25767:6;25763:14;25756:58;25848:14;25843:2;25835:6;25831:15;25824:39;25639:231;:::o;25876:243::-;26016:34;26012:1;26004:6;26000:14;25993:58;26085:26;26080:2;26072:6;26068:15;26061:51;25876:243;:::o;26125:229::-;26265:34;26261:1;26253:6;26249:14;26242:58;26334:12;26329:2;26321:6;26317:15;26310:37;26125:229;:::o;26360:228::-;26500:34;26496:1;26488:6;26484:14;26477:58;26569:11;26564:2;26556:6;26552:15;26545:36;26360:228;:::o;26594:231::-;26734:34;26730:1;26722:6;26718:14;26711:58;26803:14;26798:2;26790:6;26786:15;26779:39;26594:231;:::o;26831:228::-;26971:34;26967:1;26959:6;26955:14;26948:58;27040:11;27035:2;27027:6;27023:15;27016:36;26831:228;:::o;27065:234::-;27205:34;27201:1;27193:6;27189:14;27182:58;27274:17;27269:2;27261:6;27257:15;27250:42;27065:234;:::o;27305:220::-;27445:34;27441:1;27433:6;27429:14;27422:58;27514:3;27509:2;27501:6;27497:15;27490:28;27305:220;:::o;27531:236::-;27671:34;27667:1;27659:6;27655:14;27648:58;27740:19;27735:2;27727:6;27723:15;27716:44;27531:236;:::o;27773:122::-;27846:24;27864:5;27846:24;:::i;:::-;27839:5;27836:35;27826:63;;27885:1;27882;27875:12;27826:63;27773:122;:::o;27901:116::-;27971:21;27986:5;27971:21;:::i;:::-;27964:5;27961:32;27951:60;;28007:1;28004;27997:12;27951:60;27901:116;:::o;28023:120::-;28095:23;28112:5;28095:23;:::i;:::-;28088:5;28085:34;28075:62;;28133:1;28130;28123:12;28075:62;28023:120;:::o;28149:122::-;28222:24;28240:5;28222:24;:::i;:::-;28215:5;28212:35;28202:63;;28261:1;28258;28251:12;28202:63;28149:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1875000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2924",
"getApproved(uint256)": "5228",
"getPeakLon()": "526",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "3000",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "840",
"symbol()": "infinite",
"tokenURI(uint256)": "3395",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_beforeTokenTransfer(address,address,uint256)": "54"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"getPeakLon()": "5038f426",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getPeakLon",
"outputs": [
{
"internalType": "uint64",
"name": "",
"type": "uint64"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
View raw

(Sorry about that, but we can’t show files that are this big right now.)

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"checked_sub_t_int128": {
"entryPoint": 458,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_int128": {
"entryPoint": 600,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 613,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:789:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "51:451:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "61:24:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "83:1:3"
}
],
"functionName": {
"name": "cleanup_t_int128",
"nodeType": "YulIdentifier",
"src": "66:16:3"
},
"nodeType": "YulFunctionCall",
"src": "66:19:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "61:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "94:24:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "116:1:3"
}
],
"functionName": {
"name": "cleanup_t_int128",
"nodeType": "YulIdentifier",
"src": "99:16:3"
},
"nodeType": "YulFunctionCall",
"src": "99:19:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "94:1:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "293:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "295:16:3"
},
"nodeType": "YulFunctionCall",
"src": "295:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "295:18:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "201:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "204:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "197:3:3"
},
"nodeType": "YulFunctionCall",
"src": "197:9:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "190:6:3"
},
"nodeType": "YulFunctionCall",
"src": "190:17:3"
},
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "213:1:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "220:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffff80000000000000000000000000000000"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "288:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "216:3:3"
},
"nodeType": "YulFunctionCall",
"src": "216:74:3"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "209:3:3"
},
"nodeType": "YulFunctionCall",
"src": "209:82:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "186:3:3"
},
"nodeType": "YulFunctionCall",
"src": "186:106:3"
},
"nodeType": "YulIf",
"src": "183:132:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "447:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "449:16:3"
},
"nodeType": "YulFunctionCall",
"src": "449:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "449:18:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "388:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "391:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "384:3:3"
},
"nodeType": "YulFunctionCall",
"src": "384:9:3"
},
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "399:1:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "406:34:3",
"type": "",
"value": "0x7fffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "442:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "402:3:3"
},
"nodeType": "YulFunctionCall",
"src": "402:42:3"
}
],
"functionName": {
"name": "sgt",
"nodeType": "YulIdentifier",
"src": "395:3:3"
},
"nodeType": "YulFunctionCall",
"src": "395:50:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "380:3:3"
},
"nodeType": "YulFunctionCall",
"src": "380:66:3"
},
"nodeType": "YulIf",
"src": "377:92:3"
},
{
"nodeType": "YulAssignment",
"src": "479:17:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "491:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "494:1:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "487:3:3"
},
"nodeType": "YulFunctionCall",
"src": "487:9:3"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "479:4:3"
}
]
}
]
},
"name": "checked_sub_t_int128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "40:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "46:4:3",
"type": ""
}
],
"src": "7:495:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:48:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "562:32:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "584:2:3",
"type": "",
"value": "15"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "588:5:3"
}
],
"functionName": {
"name": "signextend",
"nodeType": "YulIdentifier",
"src": "573:10:3"
},
"nodeType": "YulFunctionCall",
"src": "573:21:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "562:7:3"
}
]
}
]
},
"name": "cleanup_t_int128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "534:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "544:7:3",
"type": ""
}
],
"src": "508:92:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "634:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "651:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "654:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "644:6:3"
},
"nodeType": "YulFunctionCall",
"src": "644:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "644:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "748:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:4:3",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "741:6:3"
},
"nodeType": "YulFunctionCall",
"src": "741:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "741:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "772:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "775:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "765:6:3"
},
"nodeType": "YulFunctionCall",
"src": "765:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "765:15:3"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "606:180:3"
}
]
},
"contents": "{\n\n function checked_sub_t_int128(x, y) -> diff {\n x := cleanup_t_int128(x)\n y := cleanup_t_int128(y)\n\n // underflow, if y >= 0 and x < (minValue + y)\n if and(iszero(slt(y, 0)), slt(x, add(0xffffffffffffffffffffffffffffffff80000000000000000000000000000000, y))) { panic_error_0x11() }\n // overflow, if y < 0 and x > (maxValue + y)\n if and(slt(y, 0), sgt(x, add(0x7fffffffffffffffffffffffffffffff, y))) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_int128(value) -> cleaned {\n cleaned := signextend(15, value)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405268024ccccccccccccccc6000806101000a8154816fffffffffffffffffffffffffffffffff0219169083600f0b6fffffffffffffffffffffffffffffffff16021790555060008060106101000a8154816fffffffffffffffffffffffffffffffff0219169083600f0b6fffffffffffffffffffffffffffffffff160217905550600060109054906101000a9004600f0b6917700000000000000000620000ab9190620001ca565b600160006101000a8154816fffffffffffffffffffffffffffffffff0219169083600f0b6fffffffffffffffffffffffffffffffff160217905550680ee666666666666666600160106101000a8154816fffffffffffffffffffffffffffffffff0219169083600f0b6fffffffffffffffffffffffffffffffff160217905550681e0000000000000000600260006101000a8154816fffffffffffffffffffffffffffffffff0219169083600f0b6fffffffffffffffffffffffffffffffff1602179055506901c20000000000000000600260106101000a8154816fffffffffffffffffffffffffffffffff0219169083600f0b6fffffffffffffffffffffffffffffffff160217905550348015620001c357600080fd5b5062000294565b6000620001d78262000258565b9150620001e48362000258565b9250827fffffffffffffffffffffffffffffffff800000000000000000000000000000000182126000841215161562000222576200022162000265565b5b826f7fffffffffffffffffffffffffffffff0182136000841216156200024d576200024c62000265565b5b828203905092915050565b600081600f0b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b612e4580620002a46000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063b02b0adb116100f9578063ea87073611610097578063efe7925d11610071578063efe7925d146104cf578063f6449e43146104ed578063f6ff42ac1461051d578063f778b1cd1461053b576101c4565b8063ea87073614610463578063ec9264a114610481578063eeb17bfc1461049f576101c4565b8063c99ba4be116100d3578063c99ba4be146103eb578063cd82eca114610409578063d86f1f1914610427578063e94a253214610445576101c4565b8063b02b0adb14610391578063b06185a1146103af578063bc1818ff146103cd576101c4565b806392fce0e6116101665780639b34df9b116101405780639b34df9b14610319578063a685e1f714610337578063a900ed1114610355578063aaf0aea914610373576101c4565b806392fce0e6146102bf578063948e0acc146102dd5780639a29f984146102fb576101c4565b806357c55aa0116101a257806357c55aa0146102235780635eb1fb3914610241578063663a8532146102715780636feea6ff1461028f576101c4565b8063086b1ac0146101c95780631c348dc4146101e75780632878051414610205575b600080fd5b6101d1610559565b6040516101de9190612d60565b60405180910390f35b6101ef610566565b6040516101fc9190612d60565b60405180910390f35b61020d61056b565b60405161021a9190612d60565b60405180910390f35b61022b610578565b6040516102389190612d60565b60405180910390f35b61025b60048036038101906102569190612d02565b61058b565b6040516102689190612d7b565b60405180910390f35b6102796105c1565b6040516102869190612d60565b60405180910390f35b6102a960048036038101906102a49190612c6f565b6105c6565b6040516102b69190612d60565b60405180910390f35b6102c7610740565b6040516102d49190612d60565b60405180910390f35b6102e561074d565b6040516102f29190612d60565b60405180910390f35b61030361075b565b6040516103109190612d60565b60405180910390f35b61032161076e565b60405161032e9190612d60565b60405180910390f35b61033f61077b565b60405161034c9190612d60565b60405180910390f35b61035d61078e565b60405161036a9190612d60565b60405180910390f35b61037b61079f565b6040516103889190612d60565b60405180910390f35b6103996107a4565b6040516103a69190612d60565b60405180910390f35b6103b76107b1565b6040516103c49190612d60565b60405180910390f35b6103d56107bd565b6040516103e29190612d60565b60405180910390f35b6103f36107ca565b6040516104009190612d60565b60405180910390f35b6104116107d8565b60405161041e9190612d60565b60405180910390f35b61042f6107e5565b60405161043c9190612d60565b60405180910390f35b61044d6107f8565b60405161045a9190612d60565b60405180910390f35b61046b610805565b6040516104789190612d60565b60405180910390f35b610489610811565b6040516104969190612d60565b60405180910390f35b6104b960048036038101906104b49190612caf565b61081d565b6040516104c69190612d60565b60405180910390f35b6104d7610850565b6040516104e49190612d60565b60405180910390f35b61050760048036038101906105029190612c6f565b610863565b6040516105149190612d60565b60405180910390f35b6105256108c0565b6040516105329190612d60565b60405180910390f35b6105436108c5565b6040516105509190612d60565b60405180910390f35b685a000000000000000081565b600081565b6801c5bf891b53e4cac281565b600160009054906101000a9004600f0b81565b60006105af6105aa61059c856108ca565b6105a5856108ca565b6105c6565b6108ed565b67ffffffffffffffff16905092915050565b600081565b6000806106026105e96105e286683c000000000000000061090e565b600061090e565b6105fd685a0000000000000000600061090e565b610975565b9050600061063f61062661061f86681e000000000000000061090e565b600061090e565b61063a685a0000000000000000600061090e565b610975565b9050600061066a61065187600061090e565b610665685a0000000000000000600061090e565b610975565b905060006106d061069e61068686672000000000000000610863565b6106996000672000000000000000610863565b610975565b6106cb6106b3856723d70a3d70a3d70a610863565b6106c660006723d70a3d70a3d70a610863565b610975565b61090e565b905060006107016106e985677333333333333333610863565b6106fc6000677333333333333333610863565b610975565b905061073361071082846109ff565b61072e61072769177000000000000000008c610a6a565b60006109ff565b6109ff565b9550505050505092915050565b6802000000000000000081565b6901c2000000000000000081565b600060109054906101000a9004600f0b81565b683c000000000000000081565b600260009054906101000a9004600f0b81565b60008054906101000a9004600f0b81565b600081565b681e000000000000000081565b6723d70a3d70a3d70a81565b680ee66666666666666681565b691770000000000000000081565b681e000000000000000081565b600160109054906101000a9004600f0b81565b685a000000000000000081565b67733333333333333381565b67200000000000000081565b6000610847604085600f0b901b610842604086600f0b901b604086600f0b901b610975565b610a6a565b90509392505050565b600260109054906101000a9004600f0b81565b6000806108786108738585610975565b610ad1565b90506108b761089f61089a6108956108908586610b9a565b61102f565b61104e565b61107c565b6108b2856801c5bf891b53e4cac26109ff565b610975565b91505092915050565b600081565b600081565b6000677fffffffffffffff8211156108e157600080fd5b604082901b9050919050565b60008082600f0b12156108ff57600080fd5b604082600f0b901d9050919050565b60008082600f0b84600f0b0390507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b811215801561096257506f7fffffffffffffffffffffffffffffff600f0b8113155b61096b57600080fd5b8091505092915050565b60008082600f0b141561098757600080fd5b600082600f0b604085600f0b901b816109a3576109a2612dad565b5b0590507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b81121580156109ec57506f7fffffffffffffffffffffffffffffff600f0b8113155b6109f557600080fd5b8091505092915050565b600080604083600f0b85600f0b02901d90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b8112158015610a5757506f7fffffffffffffffffffffffffffffff600f0b8113155b610a6057600080fd5b8091505092915050565b60008082600f0b84600f0b0190507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b8112158015610abe57506f7fffffffffffffffffffffffffffffff600f0b8113155b610ac757600080fd5b8091505092915050565b60008082600f0b1415610aea57600060801b9050610b95565b60008083600f0b13610aff5782600003610b01565b825b6fffffffffffffffffffffffffffffffff1690506000610b20826111bc565b90506070811015610b39578060700382901b9150610b4d565b6070811115610b4c576070810382901c91505b5b607081613fbf01901b6dffffffffffffffffffffffffffff8316179150600084600f0b1215610b8c576f80000000000000000000000000000000821791505b8160801b925050505b919050565b600080617fff60708560801c6fffffffffffffffffffffffffffffffff16901c166fffffffffffffffffffffffffffffffff1690506000617fff60708560801c6fffffffffffffffffffffffffffffffff16901c166fffffffffffffffffffffffffffffffff169050617fff821415610d3157617fff811415610cbf57836fffffffffffffffffffffffffffffffff1916856fffffffffffffffffffffffffffffffff19161415610c66576f8000000000000000000000000000000060801b8416851892505050611029565b6f8000000000000000000000000000000060801b8486186fffffffffffffffffffffffffffffffff19161415610ca25783851792505050611029565b6f7fff800000000000000000000000000060801b92505050611029565b600060801b6f7fffffffffffffffffffffffffffffff60801b85166fffffffffffffffffffffffffffffffff19161415610d10576f7fff800000000000000000000000000060801b92505050611029565b6f8000000000000000000000000000000060801b8416851892505050611029565b617fff811415610dad57600060801b6f7fffffffffffffffffffffffffffffff60801b86166fffffffffffffffffffffffffffffffff19161415610d8c576f7fff800000000000000000000000000060801b92505050611029565b6f8000000000000000000000000000000060801b8516841892505050611029565b60006dffffffffffffffffffffffffffff8660801c166fffffffffffffffffffffffffffffffff1690506000831415610de95760019250610dfe565b6e010000000000000000000000000000811790505b60006dffffffffffffffffffffffffffff8660801c166fffffffffffffffffffffffffffffffff1690506000831415610e3a5760019250610e4f565b6e010000000000000000000000000000811790505b80820291506000821415610ebc57600060801b6f8000000000000000000000000000000060801b878918166fffffffffffffffffffffffffffffffff191611610e9c57600060801b610eb1565b6f8000000000000000000000000000000060801b5b945050505050611029565b828401935060007c0200000000000000000000000000000000000000000000000000000000831015610f23577c0100000000000000000000000000000000000000000000000000000000831015610f1b57610f16836111bc565b610f1e565b60e05b610f26565b60e15b90506140708186011015610f41576000945060009250610fe9565b6140e08186011015610f8557614070851015610f6657846140700383901c9250610f7c565b614070851115610f7b57614070850383901b92505b5b60009450610fe8565b61c0dd8186011115610f9f57617fff945060009250610fe7565b6070811115610fb6576070810383901c9250610fca565b6070811015610fc9578060700383901b92505b5b6dffffffffffffffffffffffffffff831692506140df8186010394505b5b5b82607086901b6f8000000000000000000000000000000060801b898b181660801c6fffffffffffffffffffffffffffffffff16171760801b955050505050505b92915050565b60006f8000000000000000000000000000000060801b82189050919050565b6000611075611070836f3fff71547652b82fe1777d0ffda0d23a60801b610b9a565b61129d565b9050919050565b600080617fff60708460801c6fffffffffffffffffffffffffffffffff16901c166fffffffffffffffffffffffffffffffff16905061403e8111156110c057600080fd5b613fbf8110156110d45760009150506111b7565b60006e0100000000000000000000000000006dffffffffffffffffffffffffffff8560801c6fffffffffffffffffffffffffffffffff161617905061402f821015611128578161402f0381901c905061113e565b61402f82111561113d5761402f820381901b90505b5b6f800000000000000000000000000000008460801c6fffffffffffffffffffffffffffffffff1610611194576f8000000000000000000000000000000081111561118757600080fd5b80600003925050506111b7565b6f7fffffffffffffffffffffffffffffff8111156111b157600080fd5b80925050505b919050565b60008082116111ca57600080fd5b600070010000000000000000000000000000000083106111f257608083901c92506080810190505b68010000000000000000831061121057604083901c92506040810190505b640100000000831061122a57602083901c92506020810190505b62010000831061124257601083901c92506010810190505b610100831061125957600883901c92506008810190505b6010831061126f57600483901c92506004810190505b6004831061128557600283901c92506002810190505b60028310611294576001810190505b80915050919050565b6000806f800000000000000000000000000000008360801c6fffffffffffffffffffffffffffffffff161190506000617fff60708560801c6fffffffffffffffffffffffffffffffff16901c166fffffffffffffffffffffffffffffffff16905060006dffffffffffffffffffffffffffff8560801c166fffffffffffffffffffffffffffffffff169050617fff8214801561133a575060008114155b1561135d576f7fff800000000000000000000000000060801b9350505050612c40565b61400d8211156113955782611385576f7fff000000000000000000000000000060801b61138b565b600060801b5b9350505050612c40565b613f7f8210156113bd576f3fff000000000000000000000000000060801b9350505050612c40565b60008214156113cf57600191506113e4565b6e010000000000000000000000000000811790505b613fef8211156113fd57613fef820381901b9050611413565b613fef8210156114125781613fef0381901c90505b5b828015611431575071406e0000000000000000000000000000000081115b1561144557600060801b9350505050612c40565b821580156114645750713fffffffffffffffffffffffffffffffffff81115b15611487576f7fff000000000000000000000000000060801b9350505050612c40565b6000608082901c90506fffffffffffffffffffffffffffffffff821691508380156114b3575060008214155b156114c357811991506001810190505b60006f80000000000000000000000000000000905060006f800000000000000000000000000000008416111561150e57608070016a09e667f3bcc908b2fb1366ea957d3e8202901c90505b60006f40000000000000000000000000000000841611156115445760807001306fe0a31b7152de8d5a46305c85edec8202901c90505b60006f200000000000000000000000000000008416111561157a5760807001172b83c7d517adcdf7c8c50eb14a791f8202901c90505b60006f10000000000000000000000000000000841611156115b057608070010b5586cf9890f6298b92b71842a983638202901c90505b60006f08000000000000000000000000000000841611156115e65760807001059b0d31585743ae7c548eb68ca417fd8202901c90505b60006f040000000000000000000000000000008416111561161c576080700102c9a3e778060ee6f7caca4f7a29bde88202901c90505b60006f020000000000000000000000000000008416111561165257608070010163da9fb33356d84a66ae336dcdfa3f8202901c90505b60006f0100000000000000000000000000000084161115611688576080700100b1afa5abcbed6129ab13ec11dc95438202901c90505b60006e800000000000000000000000000000841611156116bd57608070010058c86da1c09ea1ff19d294cf2f679b8202901c90505b60006e400000000000000000000000000000841611156116f25760807001002c605e2e8cec506d21bfc89a23a00f8202901c90505b60006e20000000000000000000000000000084161115611727576080700100162f3904051fa128bca9c55c31e5df8202901c90505b60006e1000000000000000000000000000008416111561175c5760807001000b175effdc76ba38e31671ca9397258202901c90505b60006e08000000000000000000000000000084161115611791576080700100058ba01fb9f96d6cacd4b180917c3d8202901c90505b60006e040000000000000000000000000000841611156117c657608070010002c5cc37da9491d0985c348c68e7b38202901c90505b60006e020000000000000000000000000000841611156117fb5760807001000162e525ee054754457d59952920268202901c90505b60006e0100000000000000000000000000008416111561183057608070010000b17255775c040618bf4a4ade83fc8202901c90505b60006d8000000000000000000000000000841611156118645760807001000058b91b5bc9ae2eed81e9b7d4cfab8202901c90505b60006d400000000000000000000000000084161115611898576080700100002c5c89d5ec6ca4d7c8acc017b7c98202901c90505b60006d2000000000000000000000000000841611156118cc57608070010000162e43f4f831060e02d839a9d16d8202901c90505b60006d100000000000000000000000000084161115611900576080700100000b1721bcfc99d9f890ea069117638202901c90505b60006d08000000000000000000000000008416111561193457608070010000058b90cf1e6d97f9ca14dbcc16288202901c90505b60006d0400000000000000000000000000841611156119685760807001000002c5c863b73f016468f6bac5ca2b8202901c90505b60006d02000000000000000000000000008416111561199c576080700100000162e430e5a18f6119e3c02282a58202901c90505b60006d0100000000000000000000000000841611156119d05760807001000000b1721835514b86e6d96efd1bfe8202901c90505b60006c8000000000000000000000000084161115611a03576080700100000058b90c0b48c6be5df846c5b2ef8202901c90505b60006c4000000000000000000000000084161115611a3657608070010000002c5c8601cc6b9e94213c72737a8202901c90505b60006c2000000000000000000000000084161115611a695760807001000000162e42fff037df38aa2b219f068202901c90505b60006c1000000000000000000000000084161115611a9c57608070010000000b17217fba9c739aa5819f44f98202901c90505b60006c0800000000000000000000000084161115611acf5760807001000000058b90bfcdee5acd3c1cedc8238202901c90505b60006c0400000000000000000000000084161115611b02576080700100000002c5c85fe31f35a6a30da1be508202901c90505b60006c0200000000000000000000000084161115611b3557608070010000000162e42ff0999ce3541b9fffcf8202901c90505b60006c0100000000000000000000000084161115611b68576080700100000000b17217f80f4ef5aadda455548202901c90505b60006b80000000000000000000000084161115611b9a57608070010000000058b90bfbf8479bd5a81b51ad8202901c90505b60006b40000000000000000000000084161115611bcc5760807001000000002c5c85fdf84bd62ae30a74cc8202901c90505b60006b20000000000000000000000084161115611bfe576080700100000000162e42fefb2fed257559bdaa8202901c90505b60006b10000000000000000000000084161115611c305760807001000000000b17217f7d5a7716bba4a9ae8202901c90505b60006b08000000000000000000000084161115611c62576080700100000000058b90bfbe9ddbac5e109cce8202901c90505b60006b04000000000000000000000084161115611c9457608070010000000002c5c85fdf4b15de6f17eb0d8202901c90505b60006b02000000000000000000000084161115611cc65760807001000000000162e42fefa494f1478fde058202901c90505b60006b01000000000000000000000084161115611cf857608070010000000000b17217f7d20cf927c8e94c8202901c90505b60006a800000000000000000000084161115611d295760807001000000000058b90bfbe8f71cb4e4b33d8202901c90505b60006a400000000000000000000084161115611d5a576080700100000000002c5c85fdf477b662b269458202901c90505b60006a200000000000000000000084161115611d8b57608070010000000000162e42fefa3ae53369388c8202901c90505b60006a100000000000000000000084161115611dbc576080700100000000000b17217f7d1d351a389d408202901c90505b60006a080000000000000000000084161115611ded57608070010000000000058b90bfbe8e8b2d3d4ede8202901c90505b60006a040000000000000000000084161115611e1e5760807001000000000002c5c85fdf4741bea6e77e8202901c90505b60006a020000000000000000000084161115611e4f576080700100000000000162e42fefa39fe95583c28202901c90505b60006a010000000000000000000084161115611e805760807001000000000000b17217f7d1cfb72b45e18202901c90505b6000698000000000000000000084161115611eb0576080700100000000000058b90bfbe8e7cc35c3f08202901c90505b6000694000000000000000000084161115611ee057608070010000000000002c5c85fdf473e242ea388202901c90505b6000692000000000000000000084161115611f105760807001000000000000162e42fefa39f02b772c8202901c90505b6000691000000000000000000084161115611f4057608070010000000000000b17217f7d1cf7d83c1a8202901c90505b6000690800000000000000000084161115611f705760807001000000000000058b90bfbe8e7bdcbe2e8202901c90505b6000690400000000000000000084161115611fa0576080700100000000000002c5c85fdf473dea871f8202901c90505b6000690200000000000000000084161115611fd057608070010000000000000162e42fefa39ef44d918202901c90505b6000690100000000000000000084161115612000576080700100000000000000b17217f7d1cf79e9498202901c90505b6000688000000000000000008416111561202f57608070010000000000000058b90bfbe8e7bce5448202901c90505b6000684000000000000000008416111561205e5760807001000000000000002c5c85fdf473de6eca8202901c90505b6000682000000000000000008416111561208d576080700100000000000000162e42fefa39ef366f8202901c90505b600068100000000000000000841611156120bc5760807001000000000000000b17217f7d1cf79afa8202901c90505b600068080000000000000000841611156120eb576080700100000000000000058b90bfbe8e7bcd6d8202901c90505b6000680400000000000000008416111561211a57608070010000000000000002c5c85fdf473de6b28202901c90505b600068020000000000000000841611156121495760807001000000000000000162e42fefa39ef3588202901c90505b6000680100000000000000008416111561217857608070010000000000000000b17217f7d1cf79ab8202901c90505b6000678000000000000000841611156121a65760807001000000000000000058b90bfbe8e7bcd58202901c90505b6000674000000000000000841611156121d4576080700100000000000000002c5c85fdf473de6a8202901c90505b60006720000000000000008416111561220257608070010000000000000000162e42fefa39ef348202901c90505b600067100000000000000084161115612230576080700100000000000000000b17217f7d1cf7998202901c90505b60006708000000000000008416111561225e57608070010000000000000000058b90bfbe8e7bcc8202901c90505b60006704000000000000008416111561228c5760807001000000000000000002c5c85fdf473de58202901c90505b6000670200000000000000841611156122ba576080700100000000000000000162e42fefa39ef28202901c90505b6000670100000000000000841611156122e85760807001000000000000000000b17217f7d1cf788202901c90505b6000668000000000000084161115612315576080700100000000000000000058b90bfbe8e7bb8202901c90505b600066400000000000008416111561234257608070010000000000000000002c5c85fdf473dd8202901c90505b600066200000000000008416111561236f5760807001000000000000000000162e42fefa39ee8202901c90505b600066100000000000008416111561239c57608070010000000000000000000b17217f7d1cf68202901c90505b60006608000000000000841611156123c95760807001000000000000000000058b90bfbe8e7a8202901c90505b60006604000000000000841611156123f6576080700100000000000000000002c5c85fdf473c8202901c90505b600066020000000000008416111561242357608070010000000000000000000162e42fefa39d8202901c90505b6000660100000000000084161115612450576080700100000000000000000000b17217f7d1ce8202901c90505b6000658000000000008416111561247c57608070010000000000000000000058b90bfbe8e68202901c90505b600065400000000000841611156124a85760807001000000000000000000002c5c85fdf4728202901c90505b600065200000000000841611156124d4576080700100000000000000000000162e42fefa388202901c90505b600065100000000000841611156125005760807001000000000000000000000b17217f7d1b8202901c90505b6000650800000000008416111561252c576080700100000000000000000000058b90bfbe8d8202901c90505b6000650400000000008416111561255857608070010000000000000000000002c5c85fdf468202901c90505b600065020000000000841611156125845760807001000000000000000000000162e42fefa28202901c90505b600065010000000000841611156125b057608070010000000000000000000000b17217f7d08202901c90505b6000648000000000841611156125db5760807001000000000000000000000058b90bfbe78202901c90505b600064400000000084161115612606576080700100000000000000000000002c5c85fdf38202901c90505b60006420000000008416111561263157608070010000000000000000000000162e42fef98202901c90505b60006410000000008416111561265c576080700100000000000000000000000b17217f7c8202901c90505b60006408000000008416111561268757608070010000000000000000000000058b90bfbd8202901c90505b6000640400000000841611156126b25760807001000000000000000000000002c5c85fde8202901c90505b6000640200000000841611156126dd576080700100000000000000000000000162e42fee8202901c90505b6000640100000000841611156127085760807001000000000000000000000000b17217f68202901c90505b6000638000000084161115612732576080700100000000000000000000000058b90bfa8202901c90505b600063400000008416111561275c57608070010000000000000000000000002c5c85fc8202901c90505b60006320000000841611156127865760807001000000000000000000000000162e42fd8202901c90505b60006310000000841611156127b057608070010000000000000000000000000b17217e8202901c90505b60006308000000841611156127da5760807001000000000000000000000000058b90be8202901c90505b6000630400000084161115612804576080700100000000000000000000000002c5c85e8202901c90505b600063020000008416111561282e57608070010000000000000000000000000162e42e8202901c90505b6000630100000084161115612858576080700100000000000000000000000000b172168202901c90505b6000628000008416111561288157608070010000000000000000000000000058b90a8202901c90505b600062400000841611156128aa5760807001000000000000000000000000002c5c848202901c90505b600062200000841611156128d3576080700100000000000000000000000000162e418202901c90505b600062100000841611156128fc5760807001000000000000000000000000000b17208202901c90505b60006208000084161115612925576080700100000000000000000000000000058b8f8202901c90505b6000620400008416111561294e57608070010000000000000000000000000002c5c78202901c90505b600062020000841611156129775760807001000000000000000000000000000162e38202901c90505b600062010000841611156129a057608070010000000000000000000000000000b1718202901c90505b6000618000841611156129c85760807001000000000000000000000000000058b88202901c90505b6000614000841611156129f0576080700100000000000000000000000000002c5b8202901c90505b600061200084161115612a1857608070010000000000000000000000000000162d8202901c90505b600061100084161115612a40576080700100000000000000000000000000000b168202901c90505b600061080084161115612a6857608070010000000000000000000000000000058a8202901c90505b600061040084161115612a905760807001000000000000000000000000000002c48202901c90505b600061020084161115612ab85760807001000000000000000000000000000001618202901c90505b600061010084161115612ae05760807001000000000000000000000000000000b08202901c90505b6000608084161115612b075760807001000000000000000000000000000000578202901c90505b6000604084161115612b2e57608070010000000000000000000000000000002b8202901c90505b6000602084161115612b555760807001000000000000000000000000000000158202901c90505b6000601084161115612b7c57608070010000000000000000000000000000000a8202901c90505b6000600884161115612ba35760807001000000000000000000000000000000048202901c90505b6000600484161115612bca5760807001000000000000000000000000000000018202901c90505b84612bf2576dffffffffffffffffffffffffffff600f82901c169050613fff82019150612c2e565b613ffe8211612c1e576dffffffffffffffffffffffffffff600f82901c16905081613fff039150612c2d565b613fef820381901c9050600091505b5b80607083901b1760801b955050505050505b919050565b600081359050612c5481612de1565b92915050565b600081359050612c6981612df8565b92915050565b60008060408385031215612c8657612c85612ddc565b5b6000612c9485828601612c45565b9250506020612ca585828601612c45565b9150509250929050565b600080600060608486031215612cc857612cc7612ddc565b5b6000612cd686828701612c45565b9350506020612ce786828701612c45565b9250506040612cf886828701612c45565b9150509250925092565b60008060408385031215612d1957612d18612ddc565b5b6000612d2785828601612c5a565b9250506020612d3885828601612c5a565b9150509250929050565b612d4b81612d96565b82525050565b612d5a81612da3565b82525050565b6000602082019050612d756000830184612d42565b92915050565b6000602082019050612d906000830184612d51565b92915050565b600081600f0b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b612dea81612d96565b8114612df557600080fd5b50565b612e0181612da3565b8114612e0c57600080fd5b5056fea26469706673582212208dd03235091cad21bbc83136857954adda31f1a6ae18be997902ebd67ee5559f64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH9 0x24CCCCCCCCCCCCCCC PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xF SIGNEXTEND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP1 PUSH1 0x10 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xF SIGNEXTEND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x10 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND PUSH10 0x17700000000000000000 PUSH3 0xAB SWAP2 SWAP1 PUSH3 0x1CA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xF SIGNEXTEND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH9 0xEE666666666666666 PUSH1 0x1 PUSH1 0x10 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xF SIGNEXTEND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH9 0x1E0000000000000000 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xF SIGNEXTEND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH10 0x1C20000000000000000 PUSH1 0x2 PUSH1 0x10 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xF SIGNEXTEND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x1C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x294 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D7 DUP3 PUSH3 0x258 JUMP JUMPDEST SWAP2 POP PUSH3 0x1E4 DUP4 PUSH3 0x258 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 ADD DUP3 SLT PUSH1 0x0 DUP5 SLT ISZERO AND ISZERO PUSH3 0x222 JUMPI PUSH3 0x221 PUSH3 0x265 JUMP JUMPDEST JUMPDEST DUP3 PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF ADD DUP3 SGT PUSH1 0x0 DUP5 SLT AND ISZERO PUSH3 0x24D JUMPI PUSH3 0x24C PUSH3 0x265 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xF SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2E45 DUP1 PUSH3 0x2A4 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1C4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB02B0ADB GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0xEA870736 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xEFE7925D GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xEFE7925D EQ PUSH2 0x4CF JUMPI DUP1 PUSH4 0xF6449E43 EQ PUSH2 0x4ED JUMPI DUP1 PUSH4 0xF6FF42AC EQ PUSH2 0x51D JUMPI DUP1 PUSH4 0xF778B1CD EQ PUSH2 0x53B JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0xEA870736 EQ PUSH2 0x463 JUMPI DUP1 PUSH4 0xEC9264A1 EQ PUSH2 0x481 JUMPI DUP1 PUSH4 0xEEB17BFC EQ PUSH2 0x49F JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0xC99BA4BE GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0xC99BA4BE EQ PUSH2 0x3EB JUMPI DUP1 PUSH4 0xCD82ECA1 EQ PUSH2 0x409 JUMPI DUP1 PUSH4 0xD86F1F19 EQ PUSH2 0x427 JUMPI DUP1 PUSH4 0xE94A2532 EQ PUSH2 0x445 JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0xB02B0ADB EQ PUSH2 0x391 JUMPI DUP1 PUSH4 0xB06185A1 EQ PUSH2 0x3AF JUMPI DUP1 PUSH4 0xBC1818FF EQ PUSH2 0x3CD JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0x92FCE0E6 GT PUSH2 0x166 JUMPI DUP1 PUSH4 0x9B34DF9B GT PUSH2 0x140 JUMPI DUP1 PUSH4 0x9B34DF9B EQ PUSH2 0x319 JUMPI DUP1 PUSH4 0xA685E1F7 EQ PUSH2 0x337 JUMPI DUP1 PUSH4 0xA900ED11 EQ PUSH2 0x355 JUMPI DUP1 PUSH4 0xAAF0AEA9 EQ PUSH2 0x373 JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0x92FCE0E6 EQ PUSH2 0x2BF JUMPI DUP1 PUSH4 0x948E0ACC EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0x9A29F984 EQ PUSH2 0x2FB JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0x57C55AA0 GT PUSH2 0x1A2 JUMPI DUP1 PUSH4 0x57C55AA0 EQ PUSH2 0x223 JUMPI DUP1 PUSH4 0x5EB1FB39 EQ PUSH2 0x241 JUMPI DUP1 PUSH4 0x663A8532 EQ PUSH2 0x271 JUMPI DUP1 PUSH4 0x6FEEA6FF EQ PUSH2 0x28F JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0x86B1AC0 EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x1C348DC4 EQ PUSH2 0x1E7 JUMPI DUP1 PUSH4 0x28780514 EQ PUSH2 0x205 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1D1 PUSH2 0x559 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DE SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EF PUSH2 0x566 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FC SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20D PUSH2 0x56B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21A SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22B PUSH2 0x578 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x238 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x2D02 JUMP JUMPDEST PUSH2 0x58B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x268 SWAP2 SWAP1 PUSH2 0x2D7B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x279 PUSH2 0x5C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x286 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A4 SWAP2 SWAP1 PUSH2 0x2C6F JUMP JUMPDEST PUSH2 0x5C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B6 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C7 PUSH2 0x740 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E5 PUSH2 0x74D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F2 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x303 PUSH2 0x75B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x310 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x321 PUSH2 0x76E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x32E SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33F PUSH2 0x77B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x34C SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35D PUSH2 0x78E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36A SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x37B PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x388 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x399 PUSH2 0x7A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A6 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3B7 PUSH2 0x7B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C4 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3D5 PUSH2 0x7BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3E2 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F3 PUSH2 0x7CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x400 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x411 PUSH2 0x7D8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x41E SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x42F PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x43C SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x44D PUSH2 0x7F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45A SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x46B PUSH2 0x805 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x478 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x489 PUSH2 0x811 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x496 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4B9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4B4 SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH2 0x81D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4C6 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4D7 PUSH2 0x850 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4E4 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x507 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x502 SWAP2 SWAP1 PUSH2 0x2C6F JUMP JUMPDEST PUSH2 0x863 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x514 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x525 PUSH2 0x8C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x532 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x543 PUSH2 0x8C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x550 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH9 0x5A0000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH9 0x1C5BF891B53E4CAC2 DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5AF PUSH2 0x5AA PUSH2 0x59C DUP6 PUSH2 0x8CA JUMP JUMPDEST PUSH2 0x5A5 DUP6 PUSH2 0x8CA JUMP JUMPDEST PUSH2 0x5C6 JUMP JUMPDEST PUSH2 0x8ED JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x602 PUSH2 0x5E9 PUSH2 0x5E2 DUP7 PUSH9 0x3C0000000000000000 PUSH2 0x90E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x5FD PUSH9 0x5A0000000000000000 PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x63F PUSH2 0x626 PUSH2 0x61F DUP7 PUSH9 0x1E0000000000000000 PUSH2 0x90E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x63A PUSH9 0x5A0000000000000000 PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x66A PUSH2 0x651 DUP8 PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x665 PUSH9 0x5A0000000000000000 PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6D0 PUSH2 0x69E PUSH2 0x686 DUP7 PUSH8 0x2000000000000000 PUSH2 0x863 JUMP JUMPDEST PUSH2 0x699 PUSH1 0x0 PUSH8 0x2000000000000000 PUSH2 0x863 JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST PUSH2 0x6CB PUSH2 0x6B3 DUP6 PUSH8 0x23D70A3D70A3D70A PUSH2 0x863 JUMP JUMPDEST PUSH2 0x6C6 PUSH1 0x0 PUSH8 0x23D70A3D70A3D70A PUSH2 0x863 JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST PUSH2 0x90E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x701 PUSH2 0x6E9 DUP6 PUSH8 0x7333333333333333 PUSH2 0x863 JUMP JUMPDEST PUSH2 0x6FC PUSH1 0x0 PUSH8 0x7333333333333333 PUSH2 0x863 JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP1 POP PUSH2 0x733 PUSH2 0x710 DUP3 DUP5 PUSH2 0x9FF JUMP JUMPDEST PUSH2 0x72E PUSH2 0x727 PUSH10 0x17700000000000000000 DUP13 PUSH2 0xA6A JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9FF JUMP JUMPDEST PUSH2 0x9FF JUMP JUMPDEST SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH9 0x20000000000000000 DUP2 JUMP JUMPDEST PUSH10 0x1C20000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH9 0x3C0000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH9 0x1E0000000000000000 DUP2 JUMP JUMPDEST PUSH8 0x23D70A3D70A3D70A DUP2 JUMP JUMPDEST PUSH9 0xEE666666666666666 DUP2 JUMP JUMPDEST PUSH10 0x17700000000000000000 DUP2 JUMP JUMPDEST PUSH9 0x1E0000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x10 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH9 0x5A0000000000000000 DUP2 JUMP JUMPDEST PUSH8 0x7333333333333333 DUP2 JUMP JUMPDEST PUSH8 0x2000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x847 PUSH1 0x40 DUP6 PUSH1 0xF SIGNEXTEND SWAP1 SHL PUSH2 0x842 PUSH1 0x40 DUP7 PUSH1 0xF SIGNEXTEND SWAP1 SHL PUSH1 0x40 DUP7 PUSH1 0xF SIGNEXTEND SWAP1 SHL PUSH2 0x975 JUMP JUMPDEST PUSH2 0xA6A JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x10 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x878 PUSH2 0x873 DUP6 DUP6 PUSH2 0x975 JUMP JUMPDEST PUSH2 0xAD1 JUMP JUMPDEST SWAP1 POP PUSH2 0x8B7 PUSH2 0x89F PUSH2 0x89A PUSH2 0x895 PUSH2 0x890 DUP6 DUP7 PUSH2 0xB9A JUMP JUMPDEST PUSH2 0x102F JUMP JUMPDEST PUSH2 0x104E JUMP JUMPDEST PUSH2 0x107C JUMP JUMPDEST PUSH2 0x8B2 DUP6 PUSH9 0x1C5BF891B53E4CAC2 PUSH2 0x9FF JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH8 0x7FFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH2 0x8FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 PUSH1 0xF SIGNEXTEND SWAP1 SAR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND DUP5 PUSH1 0xF SIGNEXTEND SUB SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x962 JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x96B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND EQ ISZERO PUSH2 0x987 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0xF SIGNEXTEND PUSH1 0x40 DUP6 PUSH1 0xF SIGNEXTEND SWAP1 SHL DUP2 PUSH2 0x9A3 JUMPI PUSH2 0x9A2 PUSH2 0x2DAD JUMP JUMPDEST JUMPDEST SDIV SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x9EC JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x9F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 PUSH1 0xF SIGNEXTEND DUP6 PUSH1 0xF SIGNEXTEND MUL SWAP1 SAR SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0xA57 JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0xA60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND DUP5 PUSH1 0xF SIGNEXTEND ADD SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0xABE JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0xAC7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND EQ ISZERO PUSH2 0xAEA JUMPI PUSH1 0x0 PUSH1 0x80 SHL SWAP1 POP PUSH2 0xB95 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xF SIGNEXTEND SGT PUSH2 0xAFF JUMPI DUP3 PUSH1 0x0 SUB PUSH2 0xB01 JUMP JUMPDEST DUP3 JUMPDEST PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0xB20 DUP3 PUSH2 0x11BC JUMP JUMPDEST SWAP1 POP PUSH1 0x70 DUP2 LT ISZERO PUSH2 0xB39 JUMPI DUP1 PUSH1 0x70 SUB DUP3 SWAP1 SHL SWAP2 POP PUSH2 0xB4D JUMP JUMPDEST PUSH1 0x70 DUP2 GT ISZERO PUSH2 0xB4C JUMPI PUSH1 0x70 DUP2 SUB DUP3 SWAP1 SHR SWAP2 POP JUMPDEST JUMPDEST PUSH1 0x70 DUP2 PUSH2 0x3FBF ADD SWAP1 SHL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND OR SWAP2 POP PUSH1 0x0 DUP5 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH2 0xB8C JUMPI PUSH16 0x80000000000000000000000000000000 DUP3 OR SWAP2 POP JUMPDEST DUP2 PUSH1 0x80 SHL SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7FFF PUSH1 0x70 DUP6 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x7FFF PUSH1 0x70 DUP6 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH2 0x7FFF DUP3 EQ ISZERO PUSH2 0xD31 JUMPI PUSH2 0x7FFF DUP2 EQ ISZERO PUSH2 0xCBF JUMPI DUP4 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP6 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0xC66 JUMPI PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP5 AND DUP6 XOR SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP5 DUP7 XOR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0xCA2 JUMPI DUP4 DUP6 OR SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH16 0x7FFF8000000000000000000000000000 PUSH1 0x80 SHL SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 SHL PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL DUP6 AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0xD10 JUMPI PUSH16 0x7FFF8000000000000000000000000000 PUSH1 0x80 SHL SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP5 AND DUP6 XOR SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x7FFF DUP2 EQ ISZERO PUSH2 0xDAD JUMPI PUSH1 0x0 PUSH1 0x80 SHL PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL DUP7 AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0xD8C JUMPI PUSH16 0x7FFF8000000000000000000000000000 PUSH1 0x80 SHL SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP6 AND DUP5 XOR SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x0 PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP7 PUSH1 0x80 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 EQ ISZERO PUSH2 0xDE9 JUMPI PUSH1 0x1 SWAP3 POP PUSH2 0xDFE JUMP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP2 OR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP7 PUSH1 0x80 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 EQ ISZERO PUSH2 0xE3A JUMPI PUSH1 0x1 SWAP3 POP PUSH2 0xE4F JUMP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP2 OR SWAP1 POP JUMPDEST DUP1 DUP3 MUL SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0xEBC JUMPI PUSH1 0x0 PUSH1 0x80 SHL PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP8 DUP10 XOR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND GT PUSH2 0xE9C JUMPI PUSH1 0x0 PUSH1 0x80 SHL PUSH2 0xEB1 JUMP JUMPDEST PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x1029 JUMP JUMPDEST DUP3 DUP5 ADD SWAP4 POP PUSH1 0x0 PUSH29 0x200000000000000000000000000000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0xF23 JUMPI PUSH29 0x100000000000000000000000000000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0xF1B JUMPI PUSH2 0xF16 DUP4 PUSH2 0x11BC JUMP JUMPDEST PUSH2 0xF1E JUMP JUMPDEST PUSH1 0xE0 JUMPDEST PUSH2 0xF26 JUMP JUMPDEST PUSH1 0xE1 JUMPDEST SWAP1 POP PUSH2 0x4070 DUP2 DUP7 ADD LT ISZERO PUSH2 0xF41 JUMPI PUSH1 0x0 SWAP5 POP PUSH1 0x0 SWAP3 POP PUSH2 0xFE9 JUMP JUMPDEST PUSH2 0x40E0 DUP2 DUP7 ADD LT ISZERO PUSH2 0xF85 JUMPI PUSH2 0x4070 DUP6 LT ISZERO PUSH2 0xF66 JUMPI DUP5 PUSH2 0x4070 SUB DUP4 SWAP1 SHR SWAP3 POP PUSH2 0xF7C JUMP JUMPDEST PUSH2 0x4070 DUP6 GT ISZERO PUSH2 0xF7B JUMPI PUSH2 0x4070 DUP6 SUB DUP4 SWAP1 SHL SWAP3 POP JUMPDEST JUMPDEST PUSH1 0x0 SWAP5 POP PUSH2 0xFE8 JUMP JUMPDEST PUSH2 0xC0DD DUP2 DUP7 ADD GT ISZERO PUSH2 0xF9F JUMPI PUSH2 0x7FFF SWAP5 POP PUSH1 0x0 SWAP3 POP PUSH2 0xFE7 JUMP JUMPDEST PUSH1 0x70 DUP2 GT ISZERO PUSH2 0xFB6 JUMPI PUSH1 0x70 DUP2 SUB DUP4 SWAP1 SHR SWAP3 POP PUSH2 0xFCA JUMP JUMPDEST PUSH1 0x70 DUP2 LT ISZERO PUSH2 0xFC9 JUMPI DUP1 PUSH1 0x70 SUB DUP4 SWAP1 SHL SWAP3 POP JUMPDEST JUMPDEST PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND SWAP3 POP PUSH2 0x40DF DUP2 DUP7 ADD SUB SWAP5 POP JUMPDEST JUMPDEST JUMPDEST DUP3 PUSH1 0x70 DUP7 SWAP1 SHL PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP10 DUP12 XOR AND PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND OR OR PUSH1 0x80 SHL SWAP6 POP POP POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP3 XOR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1075 PUSH2 0x1070 DUP4 PUSH16 0x3FFF71547652B82FE1777D0FFDA0D23A PUSH1 0x80 SHL PUSH2 0xB9A JUMP JUMPDEST PUSH2 0x129D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7FFF PUSH1 0x70 DUP5 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH2 0x403E DUP2 GT ISZERO PUSH2 0x10C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3FBF DUP2 LT ISZERO PUSH2 0x10D4 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0x11B7 JUMP JUMPDEST PUSH1 0x0 PUSH15 0x10000000000000000000000000000 PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP6 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND AND OR SWAP1 POP PUSH2 0x402F DUP3 LT ISZERO PUSH2 0x1128 JUMPI DUP2 PUSH2 0x402F SUB DUP2 SWAP1 SHR SWAP1 POP PUSH2 0x113E JUMP JUMPDEST PUSH2 0x402F DUP3 GT ISZERO PUSH2 0x113D JUMPI PUSH2 0x402F DUP3 SUB DUP2 SWAP1 SHL SWAP1 POP JUMPDEST JUMPDEST PUSH16 0x80000000000000000000000000000000 DUP5 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND LT PUSH2 0x1194 JUMPI PUSH16 0x80000000000000000000000000000000 DUP2 GT ISZERO PUSH2 0x1187 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x0 SUB SWAP3 POP POP POP PUSH2 0x11B7 JUMP JUMPDEST PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 GT PUSH2 0x11CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH17 0x100000000000000000000000000000000 DUP4 LT PUSH2 0x11F2 JUMPI PUSH1 0x80 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x80 DUP2 ADD SWAP1 POP JUMPDEST PUSH9 0x10000000000000000 DUP4 LT PUSH2 0x1210 JUMPI PUSH1 0x40 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH5 0x100000000 DUP4 LT PUSH2 0x122A JUMPI PUSH1 0x20 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH3 0x10000 DUP4 LT PUSH2 0x1242 JUMPI PUSH1 0x10 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x100 DUP4 LT PUSH2 0x1259 JUMPI PUSH1 0x8 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x10 DUP4 LT PUSH2 0x126F JUMPI PUSH1 0x4 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x1285 JUMPI PUSH1 0x2 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x2 DUP4 LT PUSH2 0x1294 JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH16 0x80000000000000000000000000000000 DUP4 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND GT SWAP1 POP PUSH1 0x0 PUSH2 0x7FFF PUSH1 0x70 DUP6 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP6 PUSH1 0x80 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH2 0x7FFF DUP3 EQ DUP1 ISZERO PUSH2 0x133A JUMPI POP PUSH1 0x0 DUP2 EQ ISZERO JUMPDEST ISZERO PUSH2 0x135D JUMPI PUSH16 0x7FFF8000000000000000000000000000 PUSH1 0x80 SHL SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST PUSH2 0x400D DUP3 GT ISZERO PUSH2 0x1395 JUMPI DUP3 PUSH2 0x1385 JUMPI PUSH16 0x7FFF0000000000000000000000000000 PUSH1 0x80 SHL PUSH2 0x138B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 SHL JUMPDEST SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST PUSH2 0x3F7F DUP3 LT ISZERO PUSH2 0x13BD JUMPI PUSH16 0x3FFF0000000000000000000000000000 PUSH1 0x80 SHL SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x13CF JUMPI PUSH1 0x1 SWAP2 POP PUSH2 0x13E4 JUMP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP2 OR SWAP1 POP JUMPDEST PUSH2 0x3FEF DUP3 GT ISZERO PUSH2 0x13FD JUMPI PUSH2 0x3FEF DUP3 SUB DUP2 SWAP1 SHL SWAP1 POP PUSH2 0x1413 JUMP JUMPDEST PUSH2 0x3FEF DUP3 LT ISZERO PUSH2 0x1412 JUMPI DUP2 PUSH2 0x3FEF SUB DUP2 SWAP1 SHR SWAP1 POP JUMPDEST JUMPDEST DUP3 DUP1 ISZERO PUSH2 0x1431 JUMPI POP PUSH18 0x406E00000000000000000000000000000000 DUP2 GT JUMPDEST ISZERO PUSH2 0x1445 JUMPI PUSH1 0x0 PUSH1 0x80 SHL SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST DUP3 ISZERO DUP1 ISZERO PUSH2 0x1464 JUMPI POP PUSH18 0x3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT JUMPDEST ISZERO PUSH2 0x1487 JUMPI PUSH16 0x7FFF0000000000000000000000000000 PUSH1 0x80 SHL SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 SWAP1 SHR SWAP1 POP PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP2 POP DUP4 DUP1 ISZERO PUSH2 0x14B3 JUMPI POP PUSH1 0x0 DUP3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x14C3 JUMPI DUP2 NOT SWAP2 POP PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x80000000000000000000000000000000 SWAP1 POP PUSH1 0x0 PUSH16 0x80000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x150E JUMPI PUSH1 0x80 PUSH17 0x16A09E667F3BCC908B2FB1366EA957D3E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x40000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1544 JUMPI PUSH1 0x80 PUSH17 0x1306FE0A31B7152DE8D5A46305C85EDEC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x20000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x157A JUMPI PUSH1 0x80 PUSH17 0x1172B83C7D517ADCDF7C8C50EB14A791F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x10000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x15B0 JUMPI PUSH1 0x80 PUSH17 0x10B5586CF9890F6298B92B71842A98363 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x8000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x15E6 JUMPI PUSH1 0x80 PUSH17 0x1059B0D31585743AE7C548EB68CA417FD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x4000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x161C JUMPI PUSH1 0x80 PUSH17 0x102C9A3E778060EE6F7CACA4F7A29BDE8 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x2000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1652 JUMPI PUSH1 0x80 PUSH17 0x10163DA9FB33356D84A66AE336DCDFA3F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x1000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1688 JUMPI PUSH1 0x80 PUSH17 0x100B1AFA5ABCBED6129AB13EC11DC9543 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x800000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x16BD JUMPI PUSH1 0x80 PUSH17 0x10058C86DA1C09EA1FF19D294CF2F679B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x400000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x16F2 JUMPI PUSH1 0x80 PUSH17 0x1002C605E2E8CEC506D21BFC89A23A00F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x200000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1727 JUMPI PUSH1 0x80 PUSH17 0x100162F3904051FA128BCA9C55C31E5DF DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x100000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x175C JUMPI PUSH1 0x80 PUSH17 0x1000B175EFFDC76BA38E31671CA939725 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x80000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1791 JUMPI PUSH1 0x80 PUSH17 0x100058BA01FB9F96D6CACD4B180917C3D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x40000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x17C6 JUMPI PUSH1 0x80 PUSH17 0x10002C5CC37DA9491D0985C348C68E7B3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x20000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x17FB JUMPI PUSH1 0x80 PUSH17 0x1000162E525EE054754457D5995292026 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x10000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1830 JUMPI PUSH1 0x80 PUSH17 0x10000B17255775C040618BF4A4ADE83FC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x8000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1864 JUMPI PUSH1 0x80 PUSH17 0x1000058B91B5BC9AE2EED81E9B7D4CFAB DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x4000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1898 JUMPI PUSH1 0x80 PUSH17 0x100002C5C89D5EC6CA4D7C8ACC017B7C9 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x2000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x18CC JUMPI PUSH1 0x80 PUSH17 0x10000162E43F4F831060E02D839A9D16D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x1000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1900 JUMPI PUSH1 0x80 PUSH17 0x100000B1721BCFC99D9F890EA06911763 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x800000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1934 JUMPI PUSH1 0x80 PUSH17 0x10000058B90CF1E6D97F9CA14DBCC1628 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x400000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1968 JUMPI PUSH1 0x80 PUSH17 0x1000002C5C863B73F016468F6BAC5CA2B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x200000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x199C JUMPI PUSH1 0x80 PUSH17 0x100000162E430E5A18F6119E3C02282A5 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x100000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x19D0 JUMPI PUSH1 0x80 PUSH17 0x1000000B1721835514B86E6D96EFD1BFE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x80000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1A03 JUMPI PUSH1 0x80 PUSH17 0x100000058B90C0B48C6BE5DF846C5B2EF DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x40000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1A36 JUMPI PUSH1 0x80 PUSH17 0x10000002C5C8601CC6B9E94213C72737A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x20000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1A69 JUMPI PUSH1 0x80 PUSH17 0x1000000162E42FFF037DF38AA2B219F06 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x10000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1A9C JUMPI PUSH1 0x80 PUSH17 0x10000000B17217FBA9C739AA5819F44F9 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x8000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1ACF JUMPI PUSH1 0x80 PUSH17 0x1000000058B90BFCDEE5ACD3C1CEDC823 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x4000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1B02 JUMPI PUSH1 0x80 PUSH17 0x100000002C5C85FE31F35A6A30DA1BE50 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x2000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1B35 JUMPI PUSH1 0x80 PUSH17 0x10000000162E42FF0999CE3541B9FFFCF DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x1000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1B68 JUMPI PUSH1 0x80 PUSH17 0x100000000B17217F80F4EF5AADDA45554 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x800000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1B9A JUMPI PUSH1 0x80 PUSH17 0x10000000058B90BFBF8479BD5A81B51AD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x400000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1BCC JUMPI PUSH1 0x80 PUSH17 0x1000000002C5C85FDF84BD62AE30A74CC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x200000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1BFE JUMPI PUSH1 0x80 PUSH17 0x100000000162E42FEFB2FED257559BDAA DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x100000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1C30 JUMPI PUSH1 0x80 PUSH17 0x1000000000B17217F7D5A7716BBA4A9AE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x80000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1C62 JUMPI PUSH1 0x80 PUSH17 0x100000000058B90BFBE9DDBAC5E109CCE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x40000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1C94 JUMPI PUSH1 0x80 PUSH17 0x10000000002C5C85FDF4B15DE6F17EB0D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x20000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1CC6 JUMPI PUSH1 0x80 PUSH17 0x1000000000162E42FEFA494F1478FDE05 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x10000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1CF8 JUMPI PUSH1 0x80 PUSH17 0x10000000000B17217F7D20CF927C8E94C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x8000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1D29 JUMPI PUSH1 0x80 PUSH17 0x1000000000058B90BFBE8F71CB4E4B33D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x4000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1D5A JUMPI PUSH1 0x80 PUSH17 0x100000000002C5C85FDF477B662B26945 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x2000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1D8B JUMPI PUSH1 0x80 PUSH17 0x10000000000162E42FEFA3AE53369388C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x1000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1DBC JUMPI PUSH1 0x80 PUSH17 0x100000000000B17217F7D1D351A389D40 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x800000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1DED JUMPI PUSH1 0x80 PUSH17 0x10000000000058B90BFBE8E8B2D3D4EDE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x400000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1E1E JUMPI PUSH1 0x80 PUSH17 0x1000000000002C5C85FDF4741BEA6E77E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x200000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1E4F JUMPI PUSH1 0x80 PUSH17 0x100000000000162E42FEFA39FE95583C2 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x100000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1E80 JUMPI PUSH1 0x80 PUSH17 0x1000000000000B17217F7D1CFB72B45E1 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x80000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1EB0 JUMPI PUSH1 0x80 PUSH17 0x100000000000058B90BFBE8E7CC35C3F0 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x40000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1EE0 JUMPI PUSH1 0x80 PUSH17 0x10000000000002C5C85FDF473E242EA38 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x20000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1F10 JUMPI PUSH1 0x80 PUSH17 0x1000000000000162E42FEFA39F02B772C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x10000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1F40 JUMPI PUSH1 0x80 PUSH17 0x10000000000000B17217F7D1CF7D83C1A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x8000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1F70 JUMPI PUSH1 0x80 PUSH17 0x1000000000000058B90BFBE8E7BDCBE2E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x4000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1FA0 JUMPI PUSH1 0x80 PUSH17 0x100000000000002C5C85FDF473DEA871F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x2000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1FD0 JUMPI PUSH1 0x80 PUSH17 0x10000000000000162E42FEFA39EF44D91 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x1000000000000000000 DUP5 AND GT ISZERO PUSH2 0x2000 JUMPI PUSH1 0x80 PUSH17 0x100000000000000B17217F7D1CF79E949 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x800000000000000000 DUP5 AND GT ISZERO PUSH2 0x202F JUMPI PUSH1 0x80 PUSH17 0x10000000000000058B90BFBE8E7BCE544 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x400000000000000000 DUP5 AND GT ISZERO PUSH2 0x205E JUMPI PUSH1 0x80 PUSH17 0x1000000000000002C5C85FDF473DE6ECA DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x200000000000000000 DUP5 AND GT ISZERO PUSH2 0x208D JUMPI PUSH1 0x80 PUSH17 0x100000000000000162E42FEFA39EF366F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x100000000000000000 DUP5 AND GT ISZERO PUSH2 0x20BC JUMPI PUSH1 0x80 PUSH17 0x1000000000000000B17217F7D1CF79AFA DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x80000000000000000 DUP5 AND GT ISZERO PUSH2 0x20EB JUMPI PUSH1 0x80 PUSH17 0x100000000000000058B90BFBE8E7BCD6D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x40000000000000000 DUP5 AND GT ISZERO PUSH2 0x211A JUMPI PUSH1 0x80 PUSH17 0x10000000000000002C5C85FDF473DE6B2 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x20000000000000000 DUP5 AND GT ISZERO PUSH2 0x2149 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000162E42FEFA39EF358 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x10000000000000000 DUP5 AND GT ISZERO PUSH2 0x2178 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000B17217F7D1CF79AB DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x8000000000000000 DUP5 AND GT ISZERO PUSH2 0x21A6 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000058B90BFBE8E7BCD5 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x4000000000000000 DUP5 AND GT ISZERO PUSH2 0x21D4 JUMPI PUSH1 0x80 PUSH17 0x100000000000000002C5C85FDF473DE6A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x2000000000000000 DUP5 AND GT ISZERO PUSH2 0x2202 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000162E42FEFA39EF34 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x1000000000000000 DUP5 AND GT ISZERO PUSH2 0x2230 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000B17217F7D1CF799 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x800000000000000 DUP5 AND GT ISZERO PUSH2 0x225E JUMPI PUSH1 0x80 PUSH17 0x10000000000000000058B90BFBE8E7BCC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x400000000000000 DUP5 AND GT ISZERO PUSH2 0x228C JUMPI PUSH1 0x80 PUSH17 0x1000000000000000002C5C85FDF473DE5 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x200000000000000 DUP5 AND GT ISZERO PUSH2 0x22BA JUMPI PUSH1 0x80 PUSH17 0x100000000000000000162E42FEFA39EF2 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x100000000000000 DUP5 AND GT ISZERO PUSH2 0x22E8 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000B17217F7D1CF78 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x80000000000000 DUP5 AND GT ISZERO PUSH2 0x2315 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000058B90BFBE8E7BB DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x40000000000000 DUP5 AND GT ISZERO PUSH2 0x2342 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000002C5C85FDF473DD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x20000000000000 DUP5 AND GT ISZERO PUSH2 0x236F JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000162E42FEFA39EE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x10000000000000 DUP5 AND GT ISZERO PUSH2 0x239C JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000B17217F7D1CF6 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x8000000000000 DUP5 AND GT ISZERO PUSH2 0x23C9 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000058B90BFBE8E7A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x4000000000000 DUP5 AND GT ISZERO PUSH2 0x23F6 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000002C5C85FDF473C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x2000000000000 DUP5 AND GT ISZERO PUSH2 0x2423 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000162E42FEFA39D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x1000000000000 DUP5 AND GT ISZERO PUSH2 0x2450 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000B17217F7D1CE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x800000000000 DUP5 AND GT ISZERO PUSH2 0x247C JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000058B90BFBE8E6 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x400000000000 DUP5 AND GT ISZERO PUSH2 0x24A8 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000002C5C85FDF472 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x200000000000 DUP5 AND GT ISZERO PUSH2 0x24D4 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000162E42FEFA38 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x100000000000 DUP5 AND GT ISZERO PUSH2 0x2500 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000B17217F7D1B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x80000000000 DUP5 AND GT ISZERO PUSH2 0x252C JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000058B90BFBE8D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x40000000000 DUP5 AND GT ISZERO PUSH2 0x2558 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000002C5C85FDF46 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x20000000000 DUP5 AND GT ISZERO PUSH2 0x2584 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000162E42FEFA2 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x10000000000 DUP5 AND GT ISZERO PUSH2 0x25B0 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000B17217F7D0 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x8000000000 DUP5 AND GT ISZERO PUSH2 0x25DB JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000058B90BFBE7 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x4000000000 DUP5 AND GT ISZERO PUSH2 0x2606 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000002C5C85FDF3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x2000000000 DUP5 AND GT ISZERO PUSH2 0x2631 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000162E42FEF9 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x1000000000 DUP5 AND GT ISZERO PUSH2 0x265C JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000B17217F7C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x800000000 DUP5 AND GT ISZERO PUSH2 0x2687 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000058B90BFBD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x400000000 DUP5 AND GT ISZERO PUSH2 0x26B2 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000002C5C85FDE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x200000000 DUP5 AND GT ISZERO PUSH2 0x26DD JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000162E42FEE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x100000000 DUP5 AND GT ISZERO PUSH2 0x2708 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000B17217F6 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x80000000 DUP5 AND GT ISZERO PUSH2 0x2732 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000058B90BFA DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x40000000 DUP5 AND GT ISZERO PUSH2 0x275C JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000002C5C85FC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x20000000 DUP5 AND GT ISZERO PUSH2 0x2786 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000162E42FD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x10000000 DUP5 AND GT ISZERO PUSH2 0x27B0 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000B17217E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x8000000 DUP5 AND GT ISZERO PUSH2 0x27DA JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000058B90BE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x4000000 DUP5 AND GT ISZERO PUSH2 0x2804 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000002C5C85E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x2000000 DUP5 AND GT ISZERO PUSH2 0x282E JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000162E42E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x1000000 DUP5 AND GT ISZERO PUSH2 0x2858 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000B17216 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x800000 DUP5 AND GT ISZERO PUSH2 0x2881 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000058B90A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x400000 DUP5 AND GT ISZERO PUSH2 0x28AA JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000002C5C84 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x200000 DUP5 AND GT ISZERO PUSH2 0x28D3 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000162E41 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x100000 DUP5 AND GT ISZERO PUSH2 0x28FC JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000B1720 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x80000 DUP5 AND GT ISZERO PUSH2 0x2925 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000058B8F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x40000 DUP5 AND GT ISZERO PUSH2 0x294E JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000002C5C7 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x20000 DUP5 AND GT ISZERO PUSH2 0x2977 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000162E3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x10000 DUP5 AND GT ISZERO PUSH2 0x29A0 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000B171 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x8000 DUP5 AND GT ISZERO PUSH2 0x29C8 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000058B8 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x4000 DUP5 AND GT ISZERO PUSH2 0x29F0 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000002C5B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x2000 DUP5 AND GT ISZERO PUSH2 0x2A18 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000162D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x1000 DUP5 AND GT ISZERO PUSH2 0x2A40 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000B16 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x800 DUP5 AND GT ISZERO PUSH2 0x2A68 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000058A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x400 DUP5 AND GT ISZERO PUSH2 0x2A90 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000002C4 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x200 DUP5 AND GT ISZERO PUSH2 0x2AB8 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000161 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x100 DUP5 AND GT ISZERO PUSH2 0x2AE0 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000000B0 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP5 AND GT ISZERO PUSH2 0x2B07 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000057 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP5 AND GT ISZERO PUSH2 0x2B2E JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000002B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP5 AND GT ISZERO PUSH2 0x2B55 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000015 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x10 DUP5 AND GT ISZERO PUSH2 0x2B7C JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000000A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP5 AND GT ISZERO PUSH2 0x2BA3 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000004 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x4 DUP5 AND GT ISZERO PUSH2 0x2BCA JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000001 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST DUP5 PUSH2 0x2BF2 JUMPI PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF DUP3 SWAP1 SHR AND SWAP1 POP PUSH2 0x3FFF DUP3 ADD SWAP2 POP PUSH2 0x2C2E JUMP JUMPDEST PUSH2 0x3FFE DUP3 GT PUSH2 0x2C1E JUMPI PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF DUP3 SWAP1 SHR AND SWAP1 POP DUP2 PUSH2 0x3FFF SUB SWAP2 POP PUSH2 0x2C2D JUMP JUMPDEST PUSH2 0x3FEF DUP3 SUB DUP2 SWAP1 SHR SWAP1 POP PUSH1 0x0 SWAP2 POP JUMPDEST JUMPDEST DUP1 PUSH1 0x70 DUP4 SWAP1 SHL OR PUSH1 0x80 SHL SWAP6 POP POP POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C54 DUP2 PUSH2 0x2DE1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C69 DUP2 PUSH2 0x2DF8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2C86 JUMPI PUSH2 0x2C85 PUSH2 0x2DDC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2C94 DUP6 DUP3 DUP7 ADD PUSH2 0x2C45 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2CA5 DUP6 DUP3 DUP7 ADD PUSH2 0x2C45 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2CC8 JUMPI PUSH2 0x2CC7 PUSH2 0x2DDC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CD6 DUP7 DUP3 DUP8 ADD PUSH2 0x2C45 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2CE7 DUP7 DUP3 DUP8 ADD PUSH2 0x2C45 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2CF8 DUP7 DUP3 DUP8 ADD PUSH2 0x2C45 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D19 JUMPI PUSH2 0x2D18 PUSH2 0x2DDC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D27 DUP6 DUP3 DUP7 ADD PUSH2 0x2C5A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D38 DUP6 DUP3 DUP7 ADD PUSH2 0x2C5A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2D4B DUP2 PUSH2 0x2D96 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2D5A DUP2 PUSH2 0x2DA3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D75 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2D42 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D90 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2D51 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xF SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2DEA DUP2 PUSH2 0x2D96 JUMP JUMPDEST DUP2 EQ PUSH2 0x2DF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E01 DUP2 PUSH2 0x2DA3 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E0C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP14 0xD0 ORIGIN CALLDATALOAD MULMOD SHR 0xAD 0x21 0xBB 0xC8 BALANCE CALLDATASIZE DUP6 PUSH26 0x54ADDA31F1A6AE18BE997902EBD67EE5559F64736F6C63430008 SMOD STOP CALLER ",
"sourceMap": "324:4502:0:-:0;;;1024:20;979:65;;;;;;;;;;;;;;;;;;;;;;1360:1;1746:49;;;;;;;;;;;;;;;;;;;;;;1859:14;;;;;;;;;;;1413:10;1836:37;;;;:::i;:::-;1801:72;;;;;;;;;;;;;;;;;;;;;;888:21;1879:65;;;;;;;;;;;;;;;;;;;;;;965:8;1950:45;;;;;;;;;;;;;;;;;;;;;;1296:9;2001:41;;;;;;;;;;;;;;;;;;;;;;324:4502;;;;;;;;;;;;7:495:3;46:4;66:19;83:1;66:19;:::i;:::-;61:24;;99:19;116:1;99:19;:::i;:::-;94:24;;288:1;220:66;216:74;213:1;209:82;204:1;201;197:9;190:17;186:106;183:132;;;295:18;;:::i;:::-;183:132;442:1;406:34;402:42;399:1;395:50;391:1;388;384:9;380:66;377:92;;;449:18;;:::i;:::-;377:92;494:1;491;487:9;479:17;;7:495;;;;:::o;508:92::-;544:7;588:5;584:2;573:21;562:32;;508:92;;;:::o;606:180::-;654:77;651:1;644:88;751:4;748:1;741:15;775:4;772:1;765:15;324:4502:0;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@add_510": {
"entryPoint": 2666,
"id": 510,
"parameterSlots": 2,
"returnSlots": 1
},
"@baseEasterlyGrade_76": {
"entryPoint": 2240,
"id": 76,
"parameterSlots": 0,
"returnSlots": 0
},
"@baseEquatorTempC_40": {
"entryPoint": 2008,
"id": 40,
"parameterSlots": 0,
"returnSlots": 0
},
"@baseGlobalMeanTemperatureC_35": {
"entryPoint": 1981,
"id": 35,
"parameterSlots": 0,
"returnSlots": 0
},
"@baseMaxPrecipCm_56": {
"entryPoint": 1869,
"id": 56,
"parameterSlots": 0,
"returnSlots": 0
},
"@baseSeaLevelMeters_59": {
"entryPoint": 1951,
"id": 59,
"parameterSlots": 0,
"returnSlots": 0
},
"@dirac_167": {
"entryPoint": 2147,
"id": 167,
"parameterSlots": 2,
"returnSlots": 1
},
"@div_812": {
"entryPoint": 2421,
"id": 812,
"parameterSlots": 2,
"returnSlots": 1
},
"@easterlyFlatness_67": {
"entryPoint": 2065,
"id": 67,
"parameterSlots": 0,
"returnSlots": 0
},
"@equatorTempC_90": {
"entryPoint": 1915,
"id": 90,
"parameterSlots": 0,
"returnSlots": 0
},
"@exp_8204": {
"entryPoint": 4174,
"id": 8204,
"parameterSlots": 1,
"returnSlots": 1
},
"@from64x64_3758": {
"entryPoint": 2769,
"id": 3758,
"parameterSlots": 1,
"returnSlots": 1
},
"@fromUInt_400": {
"entryPoint": 2250,
"id": 400,
"parameterSlots": 1,
"returnSlots": 1
},
"@getBaseElevationMetersInt_318": {
"entryPoint": 1419,
"id": 318,
"parameterSlots": 2,
"returnSlots": 1
},
"@getBaseElevationMeters_294": {
"entryPoint": 1478,
"id": 294,
"parameterSlots": 2,
"returnSlots": 1
},
"@getDecimalAs64x64_122": {
"entryPoint": 2077,
"id": 122,
"parameterSlots": 3,
"returnSlots": 1
},
"@globalMeanTemperatureC_87": {
"entryPoint": 2021,
"id": 87,
"parameterSlots": 0,
"returnSlots": 0
},
"@marineTrenchFlatness_70": {
"entryPoint": 1969,
"id": 70,
"parameterSlots": 0,
"returnSlots": 0
},
"@maxLat_32": {
"entryPoint": 2040,
"id": 32,
"parameterSlots": 0,
"returnSlots": 0
},
"@maxLon_24": {
"entryPoint": 1369,
"id": 24,
"parameterSlots": 0,
"returnSlots": 0
},
"@maxPrecip_93": {
"entryPoint": 2128,
"id": 93,
"parameterSlots": 0,
"returnSlots": 0
},
"@minLat_27": {
"entryPoint": 1473,
"id": 27,
"parameterSlots": 0,
"returnSlots": 0
},
"@minLon_19": {
"entryPoint": 2245,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"@minPrecip_51": {
"entryPoint": 1382,
"id": 51,
"parameterSlots": 0,
"returnSlots": 0
},
"@mostSignificantBit_8325": {
"entryPoint": 4540,
"id": 8325,
"parameterSlots": 1,
"returnSlots": 1
},
"@mul_5338": {
"entryPoint": 2970,
"id": 5338,
"parameterSlots": 2,
"returnSlots": 1
},
"@mul_584": {
"entryPoint": 2559,
"id": 584,
"parameterSlots": 2,
"returnSlots": 1
},
"@neg_5693": {
"entryPoint": 4143,
"id": 5693,
"parameterSlots": 1,
"returnSlots": 1
},
"@northerlyFlatness_73": {
"entryPoint": 2053,
"id": 73,
"parameterSlots": 0,
"returnSlots": 0
},
"@peakAltitudeMeters_84": {
"entryPoint": 1400,
"id": 84,
"parameterSlots": 0,
"returnSlots": 0
},
"@peakLat_16": {
"entryPoint": 1956,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@peakLon_11": {
"entryPoint": 1902,
"id": 11,
"parameterSlots": 0,
"returnSlots": 0
},
"@pow_2_8187": {
"entryPoint": 4765,
"id": 8187,
"parameterSlots": 1,
"returnSlots": 1
},
"@precipitationPercentageChangePerDegreeC_48": {
"entryPoint": 1856,
"id": 48,
"parameterSlots": 0,
"returnSlots": 0
},
"@seaLevelMeters_79": {
"entryPoint": 1883,
"id": 79,
"parameterSlots": 0,
"returnSlots": 0
},
"@seaLevelRiseMetersPerDegreeC_43": {
"entryPoint": 1934,
"id": 43,
"parameterSlots": 0,
"returnSlots": 0
},
"@sqrtPi_6": {
"entryPoint": 1387,
"id": 6,
"parameterSlots": 0,
"returnSlots": 0
},
"@sub_546": {
"entryPoint": 2318,
"id": 546,
"parameterSlots": 2,
"returnSlots": 1
},
"@to64x64_3863": {
"entryPoint": 4220,
"id": 3863,
"parameterSlots": 1,
"returnSlots": 1
},
"@toUInt_426": {
"entryPoint": 2285,
"id": 426,
"parameterSlots": 1,
"returnSlots": 1
},
"@topographicMaxMeters_64": {
"entryPoint": 1994,
"id": 64,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_int128": {
"entryPoint": 11333,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 11354,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_int128t_int128": {
"entryPoint": 11375,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_int128t_int128t_int128": {
"entryPoint": 11439,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256t_uint256": {
"entryPoint": 11522,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_int128_to_t_int128_fromStack": {
"entryPoint": 11586,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 11601,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_int128__to_t_int128__fromStack_reversed": {
"entryPoint": 11616,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 11643,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_int128": {
"entryPoint": 11670,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 11683,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x12": {
"entryPoint": 11693,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 11740,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_int128": {
"entryPoint": 11745,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 11768,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3512:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:86:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "90:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "77:12:3"
},
"nodeType": "YulFunctionCall",
"src": "77:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "68:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "132:5:3"
}
],
"functionName": {
"name": "validator_revert_t_int128",
"nodeType": "YulIdentifier",
"src": "106:25:3"
},
"nodeType": "YulFunctionCall",
"src": "106:32:3"
},
"nodeType": "YulExpressionStatement",
"src": "106:32:3"
}
]
},
"name": "abi_decode_t_int128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "36:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "44:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "52:5:3",
"type": ""
}
],
"src": "7:137:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "202:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "212:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "234:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "221:12:3"
},
"nodeType": "YulFunctionCall",
"src": "221:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "212:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "277:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "250:26:3"
},
"nodeType": "YulFunctionCall",
"src": "250:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "250:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "180:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "188:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "196:5:3",
"type": ""
}
],
"src": "150:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "376:389:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "422:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "424:77:3"
},
"nodeType": "YulFunctionCall",
"src": "424:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "424:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "397:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "406:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "393:3:3"
},
"nodeType": "YulFunctionCall",
"src": "393:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "389:3:3"
},
"nodeType": "YulFunctionCall",
"src": "389:32:3"
},
"nodeType": "YulIf",
"src": "386:119:3"
},
{
"nodeType": "YulBlock",
"src": "515:116:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "530:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "544:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "534:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "559:62:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "593:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "604:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "589:3:3"
},
"nodeType": "YulFunctionCall",
"src": "589:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "613:7:3"
}
],
"functionName": {
"name": "abi_decode_t_int128",
"nodeType": "YulIdentifier",
"src": "569:19:3"
},
"nodeType": "YulFunctionCall",
"src": "569:52:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "559:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "641:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "656:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "670:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "660:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "686:62:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "720:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "731:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "716:3:3"
},
"nodeType": "YulFunctionCall",
"src": "716:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "740:7:3"
}
],
"functionName": {
"name": "abi_decode_t_int128",
"nodeType": "YulIdentifier",
"src": "696:19:3"
},
"nodeType": "YulFunctionCall",
"src": "696:52:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "686:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_int128t_int128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "338:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "349:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "361:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "369:6:3",
"type": ""
}
],
"src": "295:470:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "868:516:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "914:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "916:77:3"
},
"nodeType": "YulFunctionCall",
"src": "916:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "916:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "889:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "898:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "885:3:3"
},
"nodeType": "YulFunctionCall",
"src": "885:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "910:2:3",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "881:3:3"
},
"nodeType": "YulFunctionCall",
"src": "881:32:3"
},
"nodeType": "YulIf",
"src": "878:119:3"
},
{
"nodeType": "YulBlock",
"src": "1007:116:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1022:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1026:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1051:62:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1085:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1096:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1081:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1081:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1105:7:3"
}
],
"functionName": {
"name": "abi_decode_t_int128",
"nodeType": "YulIdentifier",
"src": "1061:19:3"
},
"nodeType": "YulFunctionCall",
"src": "1061:52:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1051:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1133:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1148:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1162:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1152:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1178:62:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1212:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1223:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1208:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1208:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1232:7:3"
}
],
"functionName": {
"name": "abi_decode_t_int128",
"nodeType": "YulIdentifier",
"src": "1188:19:3"
},
"nodeType": "YulFunctionCall",
"src": "1188:52:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1178:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1260:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1275:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1289:2:3",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1279:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1305:62:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1339:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1350:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1335:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1335:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1359:7:3"
}
],
"functionName": {
"name": "abi_decode_t_int128",
"nodeType": "YulIdentifier",
"src": "1315:19:3"
},
"nodeType": "YulFunctionCall",
"src": "1315:52:3"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1305:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_int128t_int128t_int128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "822:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "833:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "845:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "853:6:3",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "861:6:3",
"type": ""
}
],
"src": "771:613:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1473:391:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1519:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1521:77:3"
},
"nodeType": "YulFunctionCall",
"src": "1521:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "1521:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1494:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1503:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1490:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1490:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1515:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1486:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1486:32:3"
},
"nodeType": "YulIf",
"src": "1483:119:3"
},
{
"nodeType": "YulBlock",
"src": "1612:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1627:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1641:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1631:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1656:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1691:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1702:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1687:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1687:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1711:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1666:20:3"
},
"nodeType": "YulFunctionCall",
"src": "1666:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1656:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1739:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1754:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1768:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1758:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1784:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1819:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1830:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1815:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1815:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1839:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1794:20:3"
},
"nodeType": "YulFunctionCall",
"src": "1794:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1784:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1435:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1446:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1458:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1466:6:3",
"type": ""
}
],
"src": "1390:474:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1933:52:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1950:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1972:5:3"
}
],
"functionName": {
"name": "cleanup_t_int128",
"nodeType": "YulIdentifier",
"src": "1955:16:3"
},
"nodeType": "YulFunctionCall",
"src": "1955:23:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1943:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1943:36:3"
},
"nodeType": "YulExpressionStatement",
"src": "1943:36:3"
}
]
},
"name": "abi_encode_t_int128_to_t_int128_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1921:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1928:3:3",
"type": ""
}
],
"src": "1870:115:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2056:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2073:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2096:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2078:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2078:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2066:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2066:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "2066:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2044:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2051:3:3",
"type": ""
}
],
"src": "1991:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2211:122:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2221:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2233:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2244:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2229:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2229:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2221:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2299:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2312:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2323:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2308:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2308:17:3"
}
],
"functionName": {
"name": "abi_encode_t_int128_to_t_int128_fromStack",
"nodeType": "YulIdentifier",
"src": "2257:41:3"
},
"nodeType": "YulFunctionCall",
"src": "2257:69:3"
},
"nodeType": "YulExpressionStatement",
"src": "2257:69:3"
}
]
},
"name": "abi_encode_tuple_t_int128__to_t_int128__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2183:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2195:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2206:4:3",
"type": ""
}
],
"src": "2115:218:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2447:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2459:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2470:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2455:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2455:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2447:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2527:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2540:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2551:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2536:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2536:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2483:43:3"
},
"nodeType": "YulFunctionCall",
"src": "2483:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "2483:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2409:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2421:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2432:4:3",
"type": ""
}
],
"src": "2339:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2607:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2617:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2633:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2627:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2627:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2617:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2600:6:3",
"type": ""
}
],
"src": "2567:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2692:48:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2702:32:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2724:2:3",
"type": "",
"value": "15"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2728:5:3"
}
],
"functionName": {
"name": "signextend",
"nodeType": "YulIdentifier",
"src": "2713:10:3"
},
"nodeType": "YulFunctionCall",
"src": "2713:21:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2702:7:3"
}
]
}
]
},
"name": "cleanup_t_int128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2674:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2684:7:3",
"type": ""
}
],
"src": "2648:92:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2791:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2801:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2812:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2801:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2773:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2783:7:3",
"type": ""
}
],
"src": "2746:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2857:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2874:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2877:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2867:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2867:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "2867:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2971:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2974:4:3",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2964:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2964:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "2964:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2995:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2998:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2988:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2988:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "2988:15:3"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "2829:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3104:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3121:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3124:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3114:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3114:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3114:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "3015:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3227:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3244:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3247:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3237:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3237:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3237:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3138:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3303:78:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3359:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3368:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3371:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3361:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3361:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3361:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3326:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3350:5:3"
}
],
"functionName": {
"name": "cleanup_t_int128",
"nodeType": "YulIdentifier",
"src": "3333:16:3"
},
"nodeType": "YulFunctionCall",
"src": "3333:23:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3323:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3323:34:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3316:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3316:42:3"
},
"nodeType": "YulIf",
"src": "3313:62:3"
}
]
},
"name": "validator_revert_t_int128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3296:5:3",
"type": ""
}
],
"src": "3261:120:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3430:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3487:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3496:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3499:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3489:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3489:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3489:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3453:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3478:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3460:17:3"
},
"nodeType": "YulFunctionCall",
"src": "3460:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3450:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3450:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3443:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3443:43:3"
},
"nodeType": "YulIf",
"src": "3440:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3423:5:3",
"type": ""
}
],
"src": "3387:122:3"
}
]
},
"contents": "{\n\n function abi_decode_t_int128(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_int128(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_int128t_int128(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_int128(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_int128(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_int128t_int128t_int128(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_int128(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_int128(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_int128(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_int128_to_t_int128_fromStack(value, pos) {\n mstore(pos, cleanup_t_int128(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_int128__to_t_int128__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_int128_to_t_int128_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_int128(value) -> cleaned {\n cleaned := signextend(15, value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_int128(value) {\n if iszero(eq(value, cleanup_t_int128(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101c45760003560e01c8063b02b0adb116100f9578063ea87073611610097578063efe7925d11610071578063efe7925d146104cf578063f6449e43146104ed578063f6ff42ac1461051d578063f778b1cd1461053b576101c4565b8063ea87073614610463578063ec9264a114610481578063eeb17bfc1461049f576101c4565b8063c99ba4be116100d3578063c99ba4be146103eb578063cd82eca114610409578063d86f1f1914610427578063e94a253214610445576101c4565b8063b02b0adb14610391578063b06185a1146103af578063bc1818ff146103cd576101c4565b806392fce0e6116101665780639b34df9b116101405780639b34df9b14610319578063a685e1f714610337578063a900ed1114610355578063aaf0aea914610373576101c4565b806392fce0e6146102bf578063948e0acc146102dd5780639a29f984146102fb576101c4565b806357c55aa0116101a257806357c55aa0146102235780635eb1fb3914610241578063663a8532146102715780636feea6ff1461028f576101c4565b8063086b1ac0146101c95780631c348dc4146101e75780632878051414610205575b600080fd5b6101d1610559565b6040516101de9190612d60565b60405180910390f35b6101ef610566565b6040516101fc9190612d60565b60405180910390f35b61020d61056b565b60405161021a9190612d60565b60405180910390f35b61022b610578565b6040516102389190612d60565b60405180910390f35b61025b60048036038101906102569190612d02565b61058b565b6040516102689190612d7b565b60405180910390f35b6102796105c1565b6040516102869190612d60565b60405180910390f35b6102a960048036038101906102a49190612c6f565b6105c6565b6040516102b69190612d60565b60405180910390f35b6102c7610740565b6040516102d49190612d60565b60405180910390f35b6102e561074d565b6040516102f29190612d60565b60405180910390f35b61030361075b565b6040516103109190612d60565b60405180910390f35b61032161076e565b60405161032e9190612d60565b60405180910390f35b61033f61077b565b60405161034c9190612d60565b60405180910390f35b61035d61078e565b60405161036a9190612d60565b60405180910390f35b61037b61079f565b6040516103889190612d60565b60405180910390f35b6103996107a4565b6040516103a69190612d60565b60405180910390f35b6103b76107b1565b6040516103c49190612d60565b60405180910390f35b6103d56107bd565b6040516103e29190612d60565b60405180910390f35b6103f36107ca565b6040516104009190612d60565b60405180910390f35b6104116107d8565b60405161041e9190612d60565b60405180910390f35b61042f6107e5565b60405161043c9190612d60565b60405180910390f35b61044d6107f8565b60405161045a9190612d60565b60405180910390f35b61046b610805565b6040516104789190612d60565b60405180910390f35b610489610811565b6040516104969190612d60565b60405180910390f35b6104b960048036038101906104b49190612caf565b61081d565b6040516104c69190612d60565b60405180910390f35b6104d7610850565b6040516104e49190612d60565b60405180910390f35b61050760048036038101906105029190612c6f565b610863565b6040516105149190612d60565b60405180910390f35b6105256108c0565b6040516105329190612d60565b60405180910390f35b6105436108c5565b6040516105509190612d60565b60405180910390f35b685a000000000000000081565b600081565b6801c5bf891b53e4cac281565b600160009054906101000a9004600f0b81565b60006105af6105aa61059c856108ca565b6105a5856108ca565b6105c6565b6108ed565b67ffffffffffffffff16905092915050565b600081565b6000806106026105e96105e286683c000000000000000061090e565b600061090e565b6105fd685a0000000000000000600061090e565b610975565b9050600061063f61062661061f86681e000000000000000061090e565b600061090e565b61063a685a0000000000000000600061090e565b610975565b9050600061066a61065187600061090e565b610665685a0000000000000000600061090e565b610975565b905060006106d061069e61068686672000000000000000610863565b6106996000672000000000000000610863565b610975565b6106cb6106b3856723d70a3d70a3d70a610863565b6106c660006723d70a3d70a3d70a610863565b610975565b61090e565b905060006107016106e985677333333333333333610863565b6106fc6000677333333333333333610863565b610975565b905061073361071082846109ff565b61072e61072769177000000000000000008c610a6a565b60006109ff565b6109ff565b9550505050505092915050565b6802000000000000000081565b6901c2000000000000000081565b600060109054906101000a9004600f0b81565b683c000000000000000081565b600260009054906101000a9004600f0b81565b60008054906101000a9004600f0b81565b600081565b681e000000000000000081565b6723d70a3d70a3d70a81565b680ee66666666666666681565b691770000000000000000081565b681e000000000000000081565b600160109054906101000a9004600f0b81565b685a000000000000000081565b67733333333333333381565b67200000000000000081565b6000610847604085600f0b901b610842604086600f0b901b604086600f0b901b610975565b610a6a565b90509392505050565b600260109054906101000a9004600f0b81565b6000806108786108738585610975565b610ad1565b90506108b761089f61089a6108956108908586610b9a565b61102f565b61104e565b61107c565b6108b2856801c5bf891b53e4cac26109ff565b610975565b91505092915050565b600081565b600081565b6000677fffffffffffffff8211156108e157600080fd5b604082901b9050919050565b60008082600f0b12156108ff57600080fd5b604082600f0b901d9050919050565b60008082600f0b84600f0b0390507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b811215801561096257506f7fffffffffffffffffffffffffffffff600f0b8113155b61096b57600080fd5b8091505092915050565b60008082600f0b141561098757600080fd5b600082600f0b604085600f0b901b816109a3576109a2612dad565b5b0590507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b81121580156109ec57506f7fffffffffffffffffffffffffffffff600f0b8113155b6109f557600080fd5b8091505092915050565b600080604083600f0b85600f0b02901d90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b8112158015610a5757506f7fffffffffffffffffffffffffffffff600f0b8113155b610a6057600080fd5b8091505092915050565b60008082600f0b84600f0b0190507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b8112158015610abe57506f7fffffffffffffffffffffffffffffff600f0b8113155b610ac757600080fd5b8091505092915050565b60008082600f0b1415610aea57600060801b9050610b95565b60008083600f0b13610aff5782600003610b01565b825b6fffffffffffffffffffffffffffffffff1690506000610b20826111bc565b90506070811015610b39578060700382901b9150610b4d565b6070811115610b4c576070810382901c91505b5b607081613fbf01901b6dffffffffffffffffffffffffffff8316179150600084600f0b1215610b8c576f80000000000000000000000000000000821791505b8160801b925050505b919050565b600080617fff60708560801c6fffffffffffffffffffffffffffffffff16901c166fffffffffffffffffffffffffffffffff1690506000617fff60708560801c6fffffffffffffffffffffffffffffffff16901c166fffffffffffffffffffffffffffffffff169050617fff821415610d3157617fff811415610cbf57836fffffffffffffffffffffffffffffffff1916856fffffffffffffffffffffffffffffffff19161415610c66576f8000000000000000000000000000000060801b8416851892505050611029565b6f8000000000000000000000000000000060801b8486186fffffffffffffffffffffffffffffffff19161415610ca25783851792505050611029565b6f7fff800000000000000000000000000060801b92505050611029565b600060801b6f7fffffffffffffffffffffffffffffff60801b85166fffffffffffffffffffffffffffffffff19161415610d10576f7fff800000000000000000000000000060801b92505050611029565b6f8000000000000000000000000000000060801b8416851892505050611029565b617fff811415610dad57600060801b6f7fffffffffffffffffffffffffffffff60801b86166fffffffffffffffffffffffffffffffff19161415610d8c576f7fff800000000000000000000000000060801b92505050611029565b6f8000000000000000000000000000000060801b8516841892505050611029565b60006dffffffffffffffffffffffffffff8660801c166fffffffffffffffffffffffffffffffff1690506000831415610de95760019250610dfe565b6e010000000000000000000000000000811790505b60006dffffffffffffffffffffffffffff8660801c166fffffffffffffffffffffffffffffffff1690506000831415610e3a5760019250610e4f565b6e010000000000000000000000000000811790505b80820291506000821415610ebc57600060801b6f8000000000000000000000000000000060801b878918166fffffffffffffffffffffffffffffffff191611610e9c57600060801b610eb1565b6f8000000000000000000000000000000060801b5b945050505050611029565b828401935060007c0200000000000000000000000000000000000000000000000000000000831015610f23577c0100000000000000000000000000000000000000000000000000000000831015610f1b57610f16836111bc565b610f1e565b60e05b610f26565b60e15b90506140708186011015610f41576000945060009250610fe9565b6140e08186011015610f8557614070851015610f6657846140700383901c9250610f7c565b614070851115610f7b57614070850383901b92505b5b60009450610fe8565b61c0dd8186011115610f9f57617fff945060009250610fe7565b6070811115610fb6576070810383901c9250610fca565b6070811015610fc9578060700383901b92505b5b6dffffffffffffffffffffffffffff831692506140df8186010394505b5b5b82607086901b6f8000000000000000000000000000000060801b898b181660801c6fffffffffffffffffffffffffffffffff16171760801b955050505050505b92915050565b60006f8000000000000000000000000000000060801b82189050919050565b6000611075611070836f3fff71547652b82fe1777d0ffda0d23a60801b610b9a565b61129d565b9050919050565b600080617fff60708460801c6fffffffffffffffffffffffffffffffff16901c166fffffffffffffffffffffffffffffffff16905061403e8111156110c057600080fd5b613fbf8110156110d45760009150506111b7565b60006e0100000000000000000000000000006dffffffffffffffffffffffffffff8560801c6fffffffffffffffffffffffffffffffff161617905061402f821015611128578161402f0381901c905061113e565b61402f82111561113d5761402f820381901b90505b5b6f800000000000000000000000000000008460801c6fffffffffffffffffffffffffffffffff1610611194576f8000000000000000000000000000000081111561118757600080fd5b80600003925050506111b7565b6f7fffffffffffffffffffffffffffffff8111156111b157600080fd5b80925050505b919050565b60008082116111ca57600080fd5b600070010000000000000000000000000000000083106111f257608083901c92506080810190505b68010000000000000000831061121057604083901c92506040810190505b640100000000831061122a57602083901c92506020810190505b62010000831061124257601083901c92506010810190505b610100831061125957600883901c92506008810190505b6010831061126f57600483901c92506004810190505b6004831061128557600283901c92506002810190505b60028310611294576001810190505b80915050919050565b6000806f800000000000000000000000000000008360801c6fffffffffffffffffffffffffffffffff161190506000617fff60708560801c6fffffffffffffffffffffffffffffffff16901c166fffffffffffffffffffffffffffffffff16905060006dffffffffffffffffffffffffffff8560801c166fffffffffffffffffffffffffffffffff169050617fff8214801561133a575060008114155b1561135d576f7fff800000000000000000000000000060801b9350505050612c40565b61400d8211156113955782611385576f7fff000000000000000000000000000060801b61138b565b600060801b5b9350505050612c40565b613f7f8210156113bd576f3fff000000000000000000000000000060801b9350505050612c40565b60008214156113cf57600191506113e4565b6e010000000000000000000000000000811790505b613fef8211156113fd57613fef820381901b9050611413565b613fef8210156114125781613fef0381901c90505b5b828015611431575071406e0000000000000000000000000000000081115b1561144557600060801b9350505050612c40565b821580156114645750713fffffffffffffffffffffffffffffffffff81115b15611487576f7fff000000000000000000000000000060801b9350505050612c40565b6000608082901c90506fffffffffffffffffffffffffffffffff821691508380156114b3575060008214155b156114c357811991506001810190505b60006f80000000000000000000000000000000905060006f800000000000000000000000000000008416111561150e57608070016a09e667f3bcc908b2fb1366ea957d3e8202901c90505b60006f40000000000000000000000000000000841611156115445760807001306fe0a31b7152de8d5a46305c85edec8202901c90505b60006f200000000000000000000000000000008416111561157a5760807001172b83c7d517adcdf7c8c50eb14a791f8202901c90505b60006f10000000000000000000000000000000841611156115b057608070010b5586cf9890f6298b92b71842a983638202901c90505b60006f08000000000000000000000000000000841611156115e65760807001059b0d31585743ae7c548eb68ca417fd8202901c90505b60006f040000000000000000000000000000008416111561161c576080700102c9a3e778060ee6f7caca4f7a29bde88202901c90505b60006f020000000000000000000000000000008416111561165257608070010163da9fb33356d84a66ae336dcdfa3f8202901c90505b60006f0100000000000000000000000000000084161115611688576080700100b1afa5abcbed6129ab13ec11dc95438202901c90505b60006e800000000000000000000000000000841611156116bd57608070010058c86da1c09ea1ff19d294cf2f679b8202901c90505b60006e400000000000000000000000000000841611156116f25760807001002c605e2e8cec506d21bfc89a23a00f8202901c90505b60006e20000000000000000000000000000084161115611727576080700100162f3904051fa128bca9c55c31e5df8202901c90505b60006e1000000000000000000000000000008416111561175c5760807001000b175effdc76ba38e31671ca9397258202901c90505b60006e08000000000000000000000000000084161115611791576080700100058ba01fb9f96d6cacd4b180917c3d8202901c90505b60006e040000000000000000000000000000841611156117c657608070010002c5cc37da9491d0985c348c68e7b38202901c90505b60006e020000000000000000000000000000841611156117fb5760807001000162e525ee054754457d59952920268202901c90505b60006e0100000000000000000000000000008416111561183057608070010000b17255775c040618bf4a4ade83fc8202901c90505b60006d8000000000000000000000000000841611156118645760807001000058b91b5bc9ae2eed81e9b7d4cfab8202901c90505b60006d400000000000000000000000000084161115611898576080700100002c5c89d5ec6ca4d7c8acc017b7c98202901c90505b60006d2000000000000000000000000000841611156118cc57608070010000162e43f4f831060e02d839a9d16d8202901c90505b60006d100000000000000000000000000084161115611900576080700100000b1721bcfc99d9f890ea069117638202901c90505b60006d08000000000000000000000000008416111561193457608070010000058b90cf1e6d97f9ca14dbcc16288202901c90505b60006d0400000000000000000000000000841611156119685760807001000002c5c863b73f016468f6bac5ca2b8202901c90505b60006d02000000000000000000000000008416111561199c576080700100000162e430e5a18f6119e3c02282a58202901c90505b60006d0100000000000000000000000000841611156119d05760807001000000b1721835514b86e6d96efd1bfe8202901c90505b60006c8000000000000000000000000084161115611a03576080700100000058b90c0b48c6be5df846c5b2ef8202901c90505b60006c4000000000000000000000000084161115611a3657608070010000002c5c8601cc6b9e94213c72737a8202901c90505b60006c2000000000000000000000000084161115611a695760807001000000162e42fff037df38aa2b219f068202901c90505b60006c1000000000000000000000000084161115611a9c57608070010000000b17217fba9c739aa5819f44f98202901c90505b60006c0800000000000000000000000084161115611acf5760807001000000058b90bfcdee5acd3c1cedc8238202901c90505b60006c0400000000000000000000000084161115611b02576080700100000002c5c85fe31f35a6a30da1be508202901c90505b60006c0200000000000000000000000084161115611b3557608070010000000162e42ff0999ce3541b9fffcf8202901c90505b60006c0100000000000000000000000084161115611b68576080700100000000b17217f80f4ef5aadda455548202901c90505b60006b80000000000000000000000084161115611b9a57608070010000000058b90bfbf8479bd5a81b51ad8202901c90505b60006b40000000000000000000000084161115611bcc5760807001000000002c5c85fdf84bd62ae30a74cc8202901c90505b60006b20000000000000000000000084161115611bfe576080700100000000162e42fefb2fed257559bdaa8202901c90505b60006b10000000000000000000000084161115611c305760807001000000000b17217f7d5a7716bba4a9ae8202901c90505b60006b08000000000000000000000084161115611c62576080700100000000058b90bfbe9ddbac5e109cce8202901c90505b60006b04000000000000000000000084161115611c9457608070010000000002c5c85fdf4b15de6f17eb0d8202901c90505b60006b02000000000000000000000084161115611cc65760807001000000000162e42fefa494f1478fde058202901c90505b60006b01000000000000000000000084161115611cf857608070010000000000b17217f7d20cf927c8e94c8202901c90505b60006a800000000000000000000084161115611d295760807001000000000058b90bfbe8f71cb4e4b33d8202901c90505b60006a400000000000000000000084161115611d5a576080700100000000002c5c85fdf477b662b269458202901c90505b60006a200000000000000000000084161115611d8b57608070010000000000162e42fefa3ae53369388c8202901c90505b60006a100000000000000000000084161115611dbc576080700100000000000b17217f7d1d351a389d408202901c90505b60006a080000000000000000000084161115611ded57608070010000000000058b90bfbe8e8b2d3d4ede8202901c90505b60006a040000000000000000000084161115611e1e5760807001000000000002c5c85fdf4741bea6e77e8202901c90505b60006a020000000000000000000084161115611e4f576080700100000000000162e42fefa39fe95583c28202901c90505b60006a010000000000000000000084161115611e805760807001000000000000b17217f7d1cfb72b45e18202901c90505b6000698000000000000000000084161115611eb0576080700100000000000058b90bfbe8e7cc35c3f08202901c90505b6000694000000000000000000084161115611ee057608070010000000000002c5c85fdf473e242ea388202901c90505b6000692000000000000000000084161115611f105760807001000000000000162e42fefa39f02b772c8202901c90505b6000691000000000000000000084161115611f4057608070010000000000000b17217f7d1cf7d83c1a8202901c90505b6000690800000000000000000084161115611f705760807001000000000000058b90bfbe8e7bdcbe2e8202901c90505b6000690400000000000000000084161115611fa0576080700100000000000002c5c85fdf473dea871f8202901c90505b6000690200000000000000000084161115611fd057608070010000000000000162e42fefa39ef44d918202901c90505b6000690100000000000000000084161115612000576080700100000000000000b17217f7d1cf79e9498202901c90505b6000688000000000000000008416111561202f57608070010000000000000058b90bfbe8e7bce5448202901c90505b6000684000000000000000008416111561205e5760807001000000000000002c5c85fdf473de6eca8202901c90505b6000682000000000000000008416111561208d576080700100000000000000162e42fefa39ef366f8202901c90505b600068100000000000000000841611156120bc5760807001000000000000000b17217f7d1cf79afa8202901c90505b600068080000000000000000841611156120eb576080700100000000000000058b90bfbe8e7bcd6d8202901c90505b6000680400000000000000008416111561211a57608070010000000000000002c5c85fdf473de6b28202901c90505b600068020000000000000000841611156121495760807001000000000000000162e42fefa39ef3588202901c90505b6000680100000000000000008416111561217857608070010000000000000000b17217f7d1cf79ab8202901c90505b6000678000000000000000841611156121a65760807001000000000000000058b90bfbe8e7bcd58202901c90505b6000674000000000000000841611156121d4576080700100000000000000002c5c85fdf473de6a8202901c90505b60006720000000000000008416111561220257608070010000000000000000162e42fefa39ef348202901c90505b600067100000000000000084161115612230576080700100000000000000000b17217f7d1cf7998202901c90505b60006708000000000000008416111561225e57608070010000000000000000058b90bfbe8e7bcc8202901c90505b60006704000000000000008416111561228c5760807001000000000000000002c5c85fdf473de58202901c90505b6000670200000000000000841611156122ba576080700100000000000000000162e42fefa39ef28202901c90505b6000670100000000000000841611156122e85760807001000000000000000000b17217f7d1cf788202901c90505b6000668000000000000084161115612315576080700100000000000000000058b90bfbe8e7bb8202901c90505b600066400000000000008416111561234257608070010000000000000000002c5c85fdf473dd8202901c90505b600066200000000000008416111561236f5760807001000000000000000000162e42fefa39ee8202901c90505b600066100000000000008416111561239c57608070010000000000000000000b17217f7d1cf68202901c90505b60006608000000000000841611156123c95760807001000000000000000000058b90bfbe8e7a8202901c90505b60006604000000000000841611156123f6576080700100000000000000000002c5c85fdf473c8202901c90505b600066020000000000008416111561242357608070010000000000000000000162e42fefa39d8202901c90505b6000660100000000000084161115612450576080700100000000000000000000b17217f7d1ce8202901c90505b6000658000000000008416111561247c57608070010000000000000000000058b90bfbe8e68202901c90505b600065400000000000841611156124a85760807001000000000000000000002c5c85fdf4728202901c90505b600065200000000000841611156124d4576080700100000000000000000000162e42fefa388202901c90505b600065100000000000841611156125005760807001000000000000000000000b17217f7d1b8202901c90505b6000650800000000008416111561252c576080700100000000000000000000058b90bfbe8d8202901c90505b6000650400000000008416111561255857608070010000000000000000000002c5c85fdf468202901c90505b600065020000000000841611156125845760807001000000000000000000000162e42fefa28202901c90505b600065010000000000841611156125b057608070010000000000000000000000b17217f7d08202901c90505b6000648000000000841611156125db5760807001000000000000000000000058b90bfbe78202901c90505b600064400000000084161115612606576080700100000000000000000000002c5c85fdf38202901c90505b60006420000000008416111561263157608070010000000000000000000000162e42fef98202901c90505b60006410000000008416111561265c576080700100000000000000000000000b17217f7c8202901c90505b60006408000000008416111561268757608070010000000000000000000000058b90bfbd8202901c90505b6000640400000000841611156126b25760807001000000000000000000000002c5c85fde8202901c90505b6000640200000000841611156126dd576080700100000000000000000000000162e42fee8202901c90505b6000640100000000841611156127085760807001000000000000000000000000b17217f68202901c90505b6000638000000084161115612732576080700100000000000000000000000058b90bfa8202901c90505b600063400000008416111561275c57608070010000000000000000000000002c5c85fc8202901c90505b60006320000000841611156127865760807001000000000000000000000000162e42fd8202901c90505b60006310000000841611156127b057608070010000000000000000000000000b17217e8202901c90505b60006308000000841611156127da5760807001000000000000000000000000058b90be8202901c90505b6000630400000084161115612804576080700100000000000000000000000002c5c85e8202901c90505b600063020000008416111561282e57608070010000000000000000000000000162e42e8202901c90505b6000630100000084161115612858576080700100000000000000000000000000b172168202901c90505b6000628000008416111561288157608070010000000000000000000000000058b90a8202901c90505b600062400000841611156128aa5760807001000000000000000000000000002c5c848202901c90505b600062200000841611156128d3576080700100000000000000000000000000162e418202901c90505b600062100000841611156128fc5760807001000000000000000000000000000b17208202901c90505b60006208000084161115612925576080700100000000000000000000000000058b8f8202901c90505b6000620400008416111561294e57608070010000000000000000000000000002c5c78202901c90505b600062020000841611156129775760807001000000000000000000000000000162e38202901c90505b600062010000841611156129a057608070010000000000000000000000000000b1718202901c90505b6000618000841611156129c85760807001000000000000000000000000000058b88202901c90505b6000614000841611156129f0576080700100000000000000000000000000002c5b8202901c90505b600061200084161115612a1857608070010000000000000000000000000000162d8202901c90505b600061100084161115612a40576080700100000000000000000000000000000b168202901c90505b600061080084161115612a6857608070010000000000000000000000000000058a8202901c90505b600061040084161115612a905760807001000000000000000000000000000002c48202901c90505b600061020084161115612ab85760807001000000000000000000000000000001618202901c90505b600061010084161115612ae05760807001000000000000000000000000000000b08202901c90505b6000608084161115612b075760807001000000000000000000000000000000578202901c90505b6000604084161115612b2e57608070010000000000000000000000000000002b8202901c90505b6000602084161115612b555760807001000000000000000000000000000000158202901c90505b6000601084161115612b7c57608070010000000000000000000000000000000a8202901c90505b6000600884161115612ba35760807001000000000000000000000000000000048202901c90505b6000600484161115612bca5760807001000000000000000000000000000000018202901c90505b84612bf2576dffffffffffffffffffffffffffff600f82901c169050613fff82019150612c2e565b613ffe8211612c1e576dffffffffffffffffffffffffffff600f82901c16905081613fff039150612c2d565b613fef820381901c9050600091505b5b80607083901b1760801b955050505050505b919050565b600081359050612c5481612de1565b92915050565b600081359050612c6981612df8565b92915050565b60008060408385031215612c8657612c85612ddc565b5b6000612c9485828601612c45565b9250506020612ca585828601612c45565b9150509250929050565b600080600060608486031215612cc857612cc7612ddc565b5b6000612cd686828701612c45565b9350506020612ce786828701612c45565b9250506040612cf886828701612c45565b9150509250925092565b60008060408385031215612d1957612d18612ddc565b5b6000612d2785828601612c5a565b9250506020612d3885828601612c5a565b9150509250929050565b612d4b81612d96565b82525050565b612d5a81612da3565b82525050565b6000602082019050612d756000830184612d42565b92915050565b6000602082019050612d906000830184612d51565b92915050565b600081600f0b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b612dea81612d96565b8114612df557600080fd5b50565b612e0181612da3565b8114612e0c57600080fd5b5056fea26469706673582212208dd03235091cad21bbc83136857954adda31f1a6ae18be997902ebd67ee5559f64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1C4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB02B0ADB GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0xEA870736 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xEFE7925D GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xEFE7925D EQ PUSH2 0x4CF JUMPI DUP1 PUSH4 0xF6449E43 EQ PUSH2 0x4ED JUMPI DUP1 PUSH4 0xF6FF42AC EQ PUSH2 0x51D JUMPI DUP1 PUSH4 0xF778B1CD EQ PUSH2 0x53B JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0xEA870736 EQ PUSH2 0x463 JUMPI DUP1 PUSH4 0xEC9264A1 EQ PUSH2 0x481 JUMPI DUP1 PUSH4 0xEEB17BFC EQ PUSH2 0x49F JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0xC99BA4BE GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0xC99BA4BE EQ PUSH2 0x3EB JUMPI DUP1 PUSH4 0xCD82ECA1 EQ PUSH2 0x409 JUMPI DUP1 PUSH4 0xD86F1F19 EQ PUSH2 0x427 JUMPI DUP1 PUSH4 0xE94A2532 EQ PUSH2 0x445 JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0xB02B0ADB EQ PUSH2 0x391 JUMPI DUP1 PUSH4 0xB06185A1 EQ PUSH2 0x3AF JUMPI DUP1 PUSH4 0xBC1818FF EQ PUSH2 0x3CD JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0x92FCE0E6 GT PUSH2 0x166 JUMPI DUP1 PUSH4 0x9B34DF9B GT PUSH2 0x140 JUMPI DUP1 PUSH4 0x9B34DF9B EQ PUSH2 0x319 JUMPI DUP1 PUSH4 0xA685E1F7 EQ PUSH2 0x337 JUMPI DUP1 PUSH4 0xA900ED11 EQ PUSH2 0x355 JUMPI DUP1 PUSH4 0xAAF0AEA9 EQ PUSH2 0x373 JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0x92FCE0E6 EQ PUSH2 0x2BF JUMPI DUP1 PUSH4 0x948E0ACC EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0x9A29F984 EQ PUSH2 0x2FB JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0x57C55AA0 GT PUSH2 0x1A2 JUMPI DUP1 PUSH4 0x57C55AA0 EQ PUSH2 0x223 JUMPI DUP1 PUSH4 0x5EB1FB39 EQ PUSH2 0x241 JUMPI DUP1 PUSH4 0x663A8532 EQ PUSH2 0x271 JUMPI DUP1 PUSH4 0x6FEEA6FF EQ PUSH2 0x28F JUMPI PUSH2 0x1C4 JUMP JUMPDEST DUP1 PUSH4 0x86B1AC0 EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x1C348DC4 EQ PUSH2 0x1E7 JUMPI DUP1 PUSH4 0x28780514 EQ PUSH2 0x205 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1D1 PUSH2 0x559 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DE SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EF PUSH2 0x566 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FC SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20D PUSH2 0x56B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21A SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22B PUSH2 0x578 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x238 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x2D02 JUMP JUMPDEST PUSH2 0x58B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x268 SWAP2 SWAP1 PUSH2 0x2D7B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x279 PUSH2 0x5C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x286 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A4 SWAP2 SWAP1 PUSH2 0x2C6F JUMP JUMPDEST PUSH2 0x5C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B6 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C7 PUSH2 0x740 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E5 PUSH2 0x74D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F2 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x303 PUSH2 0x75B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x310 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x321 PUSH2 0x76E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x32E SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33F PUSH2 0x77B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x34C SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35D PUSH2 0x78E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36A SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x37B PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x388 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x399 PUSH2 0x7A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A6 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3B7 PUSH2 0x7B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C4 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3D5 PUSH2 0x7BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3E2 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F3 PUSH2 0x7CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x400 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x411 PUSH2 0x7D8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x41E SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x42F PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x43C SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x44D PUSH2 0x7F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45A SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x46B PUSH2 0x805 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x478 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x489 PUSH2 0x811 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x496 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4B9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4B4 SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH2 0x81D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4C6 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4D7 PUSH2 0x850 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4E4 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x507 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x502 SWAP2 SWAP1 PUSH2 0x2C6F JUMP JUMPDEST PUSH2 0x863 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x514 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x525 PUSH2 0x8C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x532 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x543 PUSH2 0x8C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x550 SWAP2 SWAP1 PUSH2 0x2D60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH9 0x5A0000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH9 0x1C5BF891B53E4CAC2 DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5AF PUSH2 0x5AA PUSH2 0x59C DUP6 PUSH2 0x8CA JUMP JUMPDEST PUSH2 0x5A5 DUP6 PUSH2 0x8CA JUMP JUMPDEST PUSH2 0x5C6 JUMP JUMPDEST PUSH2 0x8ED JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x602 PUSH2 0x5E9 PUSH2 0x5E2 DUP7 PUSH9 0x3C0000000000000000 PUSH2 0x90E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x5FD PUSH9 0x5A0000000000000000 PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x63F PUSH2 0x626 PUSH2 0x61F DUP7 PUSH9 0x1E0000000000000000 PUSH2 0x90E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x63A PUSH9 0x5A0000000000000000 PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x66A PUSH2 0x651 DUP8 PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x665 PUSH9 0x5A0000000000000000 PUSH1 0x0 PUSH2 0x90E JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6D0 PUSH2 0x69E PUSH2 0x686 DUP7 PUSH8 0x2000000000000000 PUSH2 0x863 JUMP JUMPDEST PUSH2 0x699 PUSH1 0x0 PUSH8 0x2000000000000000 PUSH2 0x863 JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST PUSH2 0x6CB PUSH2 0x6B3 DUP6 PUSH8 0x23D70A3D70A3D70A PUSH2 0x863 JUMP JUMPDEST PUSH2 0x6C6 PUSH1 0x0 PUSH8 0x23D70A3D70A3D70A PUSH2 0x863 JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST PUSH2 0x90E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x701 PUSH2 0x6E9 DUP6 PUSH8 0x7333333333333333 PUSH2 0x863 JUMP JUMPDEST PUSH2 0x6FC PUSH1 0x0 PUSH8 0x7333333333333333 PUSH2 0x863 JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP1 POP PUSH2 0x733 PUSH2 0x710 DUP3 DUP5 PUSH2 0x9FF JUMP JUMPDEST PUSH2 0x72E PUSH2 0x727 PUSH10 0x17700000000000000000 DUP13 PUSH2 0xA6A JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9FF JUMP JUMPDEST PUSH2 0x9FF JUMP JUMPDEST SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH9 0x20000000000000000 DUP2 JUMP JUMPDEST PUSH10 0x1C20000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH9 0x3C0000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH9 0x1E0000000000000000 DUP2 JUMP JUMPDEST PUSH8 0x23D70A3D70A3D70A DUP2 JUMP JUMPDEST PUSH9 0xEE666666666666666 DUP2 JUMP JUMPDEST PUSH10 0x17700000000000000000 DUP2 JUMP JUMPDEST PUSH9 0x1E0000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x10 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH9 0x5A0000000000000000 DUP2 JUMP JUMPDEST PUSH8 0x7333333333333333 DUP2 JUMP JUMPDEST PUSH8 0x2000000000000000 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x847 PUSH1 0x40 DUP6 PUSH1 0xF SIGNEXTEND SWAP1 SHL PUSH2 0x842 PUSH1 0x40 DUP7 PUSH1 0xF SIGNEXTEND SWAP1 SHL PUSH1 0x40 DUP7 PUSH1 0xF SIGNEXTEND SWAP1 SHL PUSH2 0x975 JUMP JUMPDEST PUSH2 0xA6A JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x10 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x878 PUSH2 0x873 DUP6 DUP6 PUSH2 0x975 JUMP JUMPDEST PUSH2 0xAD1 JUMP JUMPDEST SWAP1 POP PUSH2 0x8B7 PUSH2 0x89F PUSH2 0x89A PUSH2 0x895 PUSH2 0x890 DUP6 DUP7 PUSH2 0xB9A JUMP JUMPDEST PUSH2 0x102F JUMP JUMPDEST PUSH2 0x104E JUMP JUMPDEST PUSH2 0x107C JUMP JUMPDEST PUSH2 0x8B2 DUP6 PUSH9 0x1C5BF891B53E4CAC2 PUSH2 0x9FF JUMP JUMPDEST PUSH2 0x975 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH8 0x7FFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH2 0x8FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 PUSH1 0xF SIGNEXTEND SWAP1 SAR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND DUP5 PUSH1 0xF SIGNEXTEND SUB SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x962 JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x96B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND EQ ISZERO PUSH2 0x987 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0xF SIGNEXTEND PUSH1 0x40 DUP6 PUSH1 0xF SIGNEXTEND SWAP1 SHL DUP2 PUSH2 0x9A3 JUMPI PUSH2 0x9A2 PUSH2 0x2DAD JUMP JUMPDEST JUMPDEST SDIV SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x9EC JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x9F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 PUSH1 0xF SIGNEXTEND DUP6 PUSH1 0xF SIGNEXTEND MUL SWAP1 SAR SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0xA57 JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0xA60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND DUP5 PUSH1 0xF SIGNEXTEND ADD SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0xABE JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0xAC7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND EQ ISZERO PUSH2 0xAEA JUMPI PUSH1 0x0 PUSH1 0x80 SHL SWAP1 POP PUSH2 0xB95 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xF SIGNEXTEND SGT PUSH2 0xAFF JUMPI DUP3 PUSH1 0x0 SUB PUSH2 0xB01 JUMP JUMPDEST DUP3 JUMPDEST PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0xB20 DUP3 PUSH2 0x11BC JUMP JUMPDEST SWAP1 POP PUSH1 0x70 DUP2 LT ISZERO PUSH2 0xB39 JUMPI DUP1 PUSH1 0x70 SUB DUP3 SWAP1 SHL SWAP2 POP PUSH2 0xB4D JUMP JUMPDEST PUSH1 0x70 DUP2 GT ISZERO PUSH2 0xB4C JUMPI PUSH1 0x70 DUP2 SUB DUP3 SWAP1 SHR SWAP2 POP JUMPDEST JUMPDEST PUSH1 0x70 DUP2 PUSH2 0x3FBF ADD SWAP1 SHL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND OR SWAP2 POP PUSH1 0x0 DUP5 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH2 0xB8C JUMPI PUSH16 0x80000000000000000000000000000000 DUP3 OR SWAP2 POP JUMPDEST DUP2 PUSH1 0x80 SHL SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7FFF PUSH1 0x70 DUP6 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x7FFF PUSH1 0x70 DUP6 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH2 0x7FFF DUP3 EQ ISZERO PUSH2 0xD31 JUMPI PUSH2 0x7FFF DUP2 EQ ISZERO PUSH2 0xCBF JUMPI DUP4 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP6 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0xC66 JUMPI PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP5 AND DUP6 XOR SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP5 DUP7 XOR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0xCA2 JUMPI DUP4 DUP6 OR SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH16 0x7FFF8000000000000000000000000000 PUSH1 0x80 SHL SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 SHL PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL DUP6 AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0xD10 JUMPI PUSH16 0x7FFF8000000000000000000000000000 PUSH1 0x80 SHL SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP5 AND DUP6 XOR SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x7FFF DUP2 EQ ISZERO PUSH2 0xDAD JUMPI PUSH1 0x0 PUSH1 0x80 SHL PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL DUP7 AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0xD8C JUMPI PUSH16 0x7FFF8000000000000000000000000000 PUSH1 0x80 SHL SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP6 AND DUP5 XOR SWAP3 POP POP POP PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x0 PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP7 PUSH1 0x80 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 EQ ISZERO PUSH2 0xDE9 JUMPI PUSH1 0x1 SWAP3 POP PUSH2 0xDFE JUMP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP2 OR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP7 PUSH1 0x80 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 EQ ISZERO PUSH2 0xE3A JUMPI PUSH1 0x1 SWAP3 POP PUSH2 0xE4F JUMP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP2 OR SWAP1 POP JUMPDEST DUP1 DUP3 MUL SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0xEBC JUMPI PUSH1 0x0 PUSH1 0x80 SHL PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP8 DUP10 XOR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND GT PUSH2 0xE9C JUMPI PUSH1 0x0 PUSH1 0x80 SHL PUSH2 0xEB1 JUMP JUMPDEST PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x1029 JUMP JUMPDEST DUP3 DUP5 ADD SWAP4 POP PUSH1 0x0 PUSH29 0x200000000000000000000000000000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0xF23 JUMPI PUSH29 0x100000000000000000000000000000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0xF1B JUMPI PUSH2 0xF16 DUP4 PUSH2 0x11BC JUMP JUMPDEST PUSH2 0xF1E JUMP JUMPDEST PUSH1 0xE0 JUMPDEST PUSH2 0xF26 JUMP JUMPDEST PUSH1 0xE1 JUMPDEST SWAP1 POP PUSH2 0x4070 DUP2 DUP7 ADD LT ISZERO PUSH2 0xF41 JUMPI PUSH1 0x0 SWAP5 POP PUSH1 0x0 SWAP3 POP PUSH2 0xFE9 JUMP JUMPDEST PUSH2 0x40E0 DUP2 DUP7 ADD LT ISZERO PUSH2 0xF85 JUMPI PUSH2 0x4070 DUP6 LT ISZERO PUSH2 0xF66 JUMPI DUP5 PUSH2 0x4070 SUB DUP4 SWAP1 SHR SWAP3 POP PUSH2 0xF7C JUMP JUMPDEST PUSH2 0x4070 DUP6 GT ISZERO PUSH2 0xF7B JUMPI PUSH2 0x4070 DUP6 SUB DUP4 SWAP1 SHL SWAP3 POP JUMPDEST JUMPDEST PUSH1 0x0 SWAP5 POP PUSH2 0xFE8 JUMP JUMPDEST PUSH2 0xC0DD DUP2 DUP7 ADD GT ISZERO PUSH2 0xF9F JUMPI PUSH2 0x7FFF SWAP5 POP PUSH1 0x0 SWAP3 POP PUSH2 0xFE7 JUMP JUMPDEST PUSH1 0x70 DUP2 GT ISZERO PUSH2 0xFB6 JUMPI PUSH1 0x70 DUP2 SUB DUP4 SWAP1 SHR SWAP3 POP PUSH2 0xFCA JUMP JUMPDEST PUSH1 0x70 DUP2 LT ISZERO PUSH2 0xFC9 JUMPI DUP1 PUSH1 0x70 SUB DUP4 SWAP1 SHL SWAP3 POP JUMPDEST JUMPDEST PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND SWAP3 POP PUSH2 0x40DF DUP2 DUP7 ADD SUB SWAP5 POP JUMPDEST JUMPDEST JUMPDEST DUP3 PUSH1 0x70 DUP7 SWAP1 SHL PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP10 DUP12 XOR AND PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND OR OR PUSH1 0x80 SHL SWAP6 POP POP POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0x80000000000000000000000000000000 PUSH1 0x80 SHL DUP3 XOR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1075 PUSH2 0x1070 DUP4 PUSH16 0x3FFF71547652B82FE1777D0FFDA0D23A PUSH1 0x80 SHL PUSH2 0xB9A JUMP JUMPDEST PUSH2 0x129D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7FFF PUSH1 0x70 DUP5 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH2 0x403E DUP2 GT ISZERO PUSH2 0x10C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3FBF DUP2 LT ISZERO PUSH2 0x10D4 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0x11B7 JUMP JUMPDEST PUSH1 0x0 PUSH15 0x10000000000000000000000000000 PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP6 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND AND OR SWAP1 POP PUSH2 0x402F DUP3 LT ISZERO PUSH2 0x1128 JUMPI DUP2 PUSH2 0x402F SUB DUP2 SWAP1 SHR SWAP1 POP PUSH2 0x113E JUMP JUMPDEST PUSH2 0x402F DUP3 GT ISZERO PUSH2 0x113D JUMPI PUSH2 0x402F DUP3 SUB DUP2 SWAP1 SHL SWAP1 POP JUMPDEST JUMPDEST PUSH16 0x80000000000000000000000000000000 DUP5 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND LT PUSH2 0x1194 JUMPI PUSH16 0x80000000000000000000000000000000 DUP2 GT ISZERO PUSH2 0x1187 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x0 SUB SWAP3 POP POP POP PUSH2 0x11B7 JUMP JUMPDEST PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 GT PUSH2 0x11CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH17 0x100000000000000000000000000000000 DUP4 LT PUSH2 0x11F2 JUMPI PUSH1 0x80 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x80 DUP2 ADD SWAP1 POP JUMPDEST PUSH9 0x10000000000000000 DUP4 LT PUSH2 0x1210 JUMPI PUSH1 0x40 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH5 0x100000000 DUP4 LT PUSH2 0x122A JUMPI PUSH1 0x20 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH3 0x10000 DUP4 LT PUSH2 0x1242 JUMPI PUSH1 0x10 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x100 DUP4 LT PUSH2 0x1259 JUMPI PUSH1 0x8 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x10 DUP4 LT PUSH2 0x126F JUMPI PUSH1 0x4 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x1285 JUMPI PUSH1 0x2 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x2 DUP4 LT PUSH2 0x1294 JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH16 0x80000000000000000000000000000000 DUP4 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND GT SWAP1 POP PUSH1 0x0 PUSH2 0x7FFF PUSH1 0x70 DUP6 PUSH1 0x80 SHR PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP6 PUSH1 0x80 SHR AND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH2 0x7FFF DUP3 EQ DUP1 ISZERO PUSH2 0x133A JUMPI POP PUSH1 0x0 DUP2 EQ ISZERO JUMPDEST ISZERO PUSH2 0x135D JUMPI PUSH16 0x7FFF8000000000000000000000000000 PUSH1 0x80 SHL SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST PUSH2 0x400D DUP3 GT ISZERO PUSH2 0x1395 JUMPI DUP3 PUSH2 0x1385 JUMPI PUSH16 0x7FFF0000000000000000000000000000 PUSH1 0x80 SHL PUSH2 0x138B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 SHL JUMPDEST SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST PUSH2 0x3F7F DUP3 LT ISZERO PUSH2 0x13BD JUMPI PUSH16 0x3FFF0000000000000000000000000000 PUSH1 0x80 SHL SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x13CF JUMPI PUSH1 0x1 SWAP2 POP PUSH2 0x13E4 JUMP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP2 OR SWAP1 POP JUMPDEST PUSH2 0x3FEF DUP3 GT ISZERO PUSH2 0x13FD JUMPI PUSH2 0x3FEF DUP3 SUB DUP2 SWAP1 SHL SWAP1 POP PUSH2 0x1413 JUMP JUMPDEST PUSH2 0x3FEF DUP3 LT ISZERO PUSH2 0x1412 JUMPI DUP2 PUSH2 0x3FEF SUB DUP2 SWAP1 SHR SWAP1 POP JUMPDEST JUMPDEST DUP3 DUP1 ISZERO PUSH2 0x1431 JUMPI POP PUSH18 0x406E00000000000000000000000000000000 DUP2 GT JUMPDEST ISZERO PUSH2 0x1445 JUMPI PUSH1 0x0 PUSH1 0x80 SHL SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST DUP3 ISZERO DUP1 ISZERO PUSH2 0x1464 JUMPI POP PUSH18 0x3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT JUMPDEST ISZERO PUSH2 0x1487 JUMPI PUSH16 0x7FFF0000000000000000000000000000 PUSH1 0x80 SHL SWAP4 POP POP POP POP PUSH2 0x2C40 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 SWAP1 SHR SWAP1 POP PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP2 POP DUP4 DUP1 ISZERO PUSH2 0x14B3 JUMPI POP PUSH1 0x0 DUP3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x14C3 JUMPI DUP2 NOT SWAP2 POP PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x80000000000000000000000000000000 SWAP1 POP PUSH1 0x0 PUSH16 0x80000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x150E JUMPI PUSH1 0x80 PUSH17 0x16A09E667F3BCC908B2FB1366EA957D3E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x40000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1544 JUMPI PUSH1 0x80 PUSH17 0x1306FE0A31B7152DE8D5A46305C85EDEC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x20000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x157A JUMPI PUSH1 0x80 PUSH17 0x1172B83C7D517ADCDF7C8C50EB14A791F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x10000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x15B0 JUMPI PUSH1 0x80 PUSH17 0x10B5586CF9890F6298B92B71842A98363 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x8000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x15E6 JUMPI PUSH1 0x80 PUSH17 0x1059B0D31585743AE7C548EB68CA417FD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x4000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x161C JUMPI PUSH1 0x80 PUSH17 0x102C9A3E778060EE6F7CACA4F7A29BDE8 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x2000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1652 JUMPI PUSH1 0x80 PUSH17 0x10163DA9FB33356D84A66AE336DCDFA3F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH16 0x1000000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1688 JUMPI PUSH1 0x80 PUSH17 0x100B1AFA5ABCBED6129AB13EC11DC9543 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x800000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x16BD JUMPI PUSH1 0x80 PUSH17 0x10058C86DA1C09EA1FF19D294CF2F679B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x400000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x16F2 JUMPI PUSH1 0x80 PUSH17 0x1002C605E2E8CEC506D21BFC89A23A00F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x200000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1727 JUMPI PUSH1 0x80 PUSH17 0x100162F3904051FA128BCA9C55C31E5DF DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x100000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x175C JUMPI PUSH1 0x80 PUSH17 0x1000B175EFFDC76BA38E31671CA939725 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x80000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1791 JUMPI PUSH1 0x80 PUSH17 0x100058BA01FB9F96D6CACD4B180917C3D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x40000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x17C6 JUMPI PUSH1 0x80 PUSH17 0x10002C5CC37DA9491D0985C348C68E7B3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x20000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x17FB JUMPI PUSH1 0x80 PUSH17 0x1000162E525EE054754457D5995292026 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH15 0x10000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1830 JUMPI PUSH1 0x80 PUSH17 0x10000B17255775C040618BF4A4ADE83FC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x8000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1864 JUMPI PUSH1 0x80 PUSH17 0x1000058B91B5BC9AE2EED81E9B7D4CFAB DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x4000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1898 JUMPI PUSH1 0x80 PUSH17 0x100002C5C89D5EC6CA4D7C8ACC017B7C9 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x2000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x18CC JUMPI PUSH1 0x80 PUSH17 0x10000162E43F4F831060E02D839A9D16D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x1000000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1900 JUMPI PUSH1 0x80 PUSH17 0x100000B1721BCFC99D9F890EA06911763 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x800000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1934 JUMPI PUSH1 0x80 PUSH17 0x10000058B90CF1E6D97F9CA14DBCC1628 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x400000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1968 JUMPI PUSH1 0x80 PUSH17 0x1000002C5C863B73F016468F6BAC5CA2B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x200000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x199C JUMPI PUSH1 0x80 PUSH17 0x100000162E430E5A18F6119E3C02282A5 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH14 0x100000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x19D0 JUMPI PUSH1 0x80 PUSH17 0x1000000B1721835514B86E6D96EFD1BFE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x80000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1A03 JUMPI PUSH1 0x80 PUSH17 0x100000058B90C0B48C6BE5DF846C5B2EF DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x40000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1A36 JUMPI PUSH1 0x80 PUSH17 0x10000002C5C8601CC6B9E94213C72737A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x20000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1A69 JUMPI PUSH1 0x80 PUSH17 0x1000000162E42FFF037DF38AA2B219F06 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x10000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1A9C JUMPI PUSH1 0x80 PUSH17 0x10000000B17217FBA9C739AA5819F44F9 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x8000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1ACF JUMPI PUSH1 0x80 PUSH17 0x1000000058B90BFCDEE5ACD3C1CEDC823 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x4000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1B02 JUMPI PUSH1 0x80 PUSH17 0x100000002C5C85FE31F35A6A30DA1BE50 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x2000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1B35 JUMPI PUSH1 0x80 PUSH17 0x10000000162E42FF0999CE3541B9FFFCF DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH13 0x1000000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1B68 JUMPI PUSH1 0x80 PUSH17 0x100000000B17217F80F4EF5AADDA45554 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x800000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1B9A JUMPI PUSH1 0x80 PUSH17 0x10000000058B90BFBF8479BD5A81B51AD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x400000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1BCC JUMPI PUSH1 0x80 PUSH17 0x1000000002C5C85FDF84BD62AE30A74CC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x200000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1BFE JUMPI PUSH1 0x80 PUSH17 0x100000000162E42FEFB2FED257559BDAA DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x100000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1C30 JUMPI PUSH1 0x80 PUSH17 0x1000000000B17217F7D5A7716BBA4A9AE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x80000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1C62 JUMPI PUSH1 0x80 PUSH17 0x100000000058B90BFBE9DDBAC5E109CCE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x40000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1C94 JUMPI PUSH1 0x80 PUSH17 0x10000000002C5C85FDF4B15DE6F17EB0D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x20000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1CC6 JUMPI PUSH1 0x80 PUSH17 0x1000000000162E42FEFA494F1478FDE05 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH12 0x10000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1CF8 JUMPI PUSH1 0x80 PUSH17 0x10000000000B17217F7D20CF927C8E94C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x8000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1D29 JUMPI PUSH1 0x80 PUSH17 0x1000000000058B90BFBE8F71CB4E4B33D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x4000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1D5A JUMPI PUSH1 0x80 PUSH17 0x100000000002C5C85FDF477B662B26945 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x2000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1D8B JUMPI PUSH1 0x80 PUSH17 0x10000000000162E42FEFA3AE53369388C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x1000000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1DBC JUMPI PUSH1 0x80 PUSH17 0x100000000000B17217F7D1D351A389D40 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x800000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1DED JUMPI PUSH1 0x80 PUSH17 0x10000000000058B90BFBE8E8B2D3D4EDE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x400000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1E1E JUMPI PUSH1 0x80 PUSH17 0x1000000000002C5C85FDF4741BEA6E77E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x200000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1E4F JUMPI PUSH1 0x80 PUSH17 0x100000000000162E42FEFA39FE95583C2 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH11 0x100000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1E80 JUMPI PUSH1 0x80 PUSH17 0x1000000000000B17217F7D1CFB72B45E1 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x80000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1EB0 JUMPI PUSH1 0x80 PUSH17 0x100000000000058B90BFBE8E7CC35C3F0 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x40000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1EE0 JUMPI PUSH1 0x80 PUSH17 0x10000000000002C5C85FDF473E242EA38 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x20000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1F10 JUMPI PUSH1 0x80 PUSH17 0x1000000000000162E42FEFA39F02B772C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x10000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1F40 JUMPI PUSH1 0x80 PUSH17 0x10000000000000B17217F7D1CF7D83C1A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x8000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1F70 JUMPI PUSH1 0x80 PUSH17 0x1000000000000058B90BFBE8E7BDCBE2E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x4000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1FA0 JUMPI PUSH1 0x80 PUSH17 0x100000000000002C5C85FDF473DEA871F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x2000000000000000000 DUP5 AND GT ISZERO PUSH2 0x1FD0 JUMPI PUSH1 0x80 PUSH17 0x10000000000000162E42FEFA39EF44D91 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH10 0x1000000000000000000 DUP5 AND GT ISZERO PUSH2 0x2000 JUMPI PUSH1 0x80 PUSH17 0x100000000000000B17217F7D1CF79E949 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x800000000000000000 DUP5 AND GT ISZERO PUSH2 0x202F JUMPI PUSH1 0x80 PUSH17 0x10000000000000058B90BFBE8E7BCE544 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x400000000000000000 DUP5 AND GT ISZERO PUSH2 0x205E JUMPI PUSH1 0x80 PUSH17 0x1000000000000002C5C85FDF473DE6ECA DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x200000000000000000 DUP5 AND GT ISZERO PUSH2 0x208D JUMPI PUSH1 0x80 PUSH17 0x100000000000000162E42FEFA39EF366F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x100000000000000000 DUP5 AND GT ISZERO PUSH2 0x20BC JUMPI PUSH1 0x80 PUSH17 0x1000000000000000B17217F7D1CF79AFA DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x80000000000000000 DUP5 AND GT ISZERO PUSH2 0x20EB JUMPI PUSH1 0x80 PUSH17 0x100000000000000058B90BFBE8E7BCD6D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x40000000000000000 DUP5 AND GT ISZERO PUSH2 0x211A JUMPI PUSH1 0x80 PUSH17 0x10000000000000002C5C85FDF473DE6B2 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x20000000000000000 DUP5 AND GT ISZERO PUSH2 0x2149 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000162E42FEFA39EF358 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH9 0x10000000000000000 DUP5 AND GT ISZERO PUSH2 0x2178 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000B17217F7D1CF79AB DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x8000000000000000 DUP5 AND GT ISZERO PUSH2 0x21A6 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000058B90BFBE8E7BCD5 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x4000000000000000 DUP5 AND GT ISZERO PUSH2 0x21D4 JUMPI PUSH1 0x80 PUSH17 0x100000000000000002C5C85FDF473DE6A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x2000000000000000 DUP5 AND GT ISZERO PUSH2 0x2202 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000162E42FEFA39EF34 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x1000000000000000 DUP5 AND GT ISZERO PUSH2 0x2230 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000B17217F7D1CF799 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x800000000000000 DUP5 AND GT ISZERO PUSH2 0x225E JUMPI PUSH1 0x80 PUSH17 0x10000000000000000058B90BFBE8E7BCC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x400000000000000 DUP5 AND GT ISZERO PUSH2 0x228C JUMPI PUSH1 0x80 PUSH17 0x1000000000000000002C5C85FDF473DE5 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x200000000000000 DUP5 AND GT ISZERO PUSH2 0x22BA JUMPI PUSH1 0x80 PUSH17 0x100000000000000000162E42FEFA39EF2 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH8 0x100000000000000 DUP5 AND GT ISZERO PUSH2 0x22E8 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000B17217F7D1CF78 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x80000000000000 DUP5 AND GT ISZERO PUSH2 0x2315 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000058B90BFBE8E7BB DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x40000000000000 DUP5 AND GT ISZERO PUSH2 0x2342 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000002C5C85FDF473DD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x20000000000000 DUP5 AND GT ISZERO PUSH2 0x236F JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000162E42FEFA39EE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x10000000000000 DUP5 AND GT ISZERO PUSH2 0x239C JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000B17217F7D1CF6 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x8000000000000 DUP5 AND GT ISZERO PUSH2 0x23C9 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000058B90BFBE8E7A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x4000000000000 DUP5 AND GT ISZERO PUSH2 0x23F6 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000002C5C85FDF473C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x2000000000000 DUP5 AND GT ISZERO PUSH2 0x2423 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000162E42FEFA39D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH7 0x1000000000000 DUP5 AND GT ISZERO PUSH2 0x2450 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000B17217F7D1CE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x800000000000 DUP5 AND GT ISZERO PUSH2 0x247C JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000058B90BFBE8E6 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x400000000000 DUP5 AND GT ISZERO PUSH2 0x24A8 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000002C5C85FDF472 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x200000000000 DUP5 AND GT ISZERO PUSH2 0x24D4 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000162E42FEFA38 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x100000000000 DUP5 AND GT ISZERO PUSH2 0x2500 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000B17217F7D1B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x80000000000 DUP5 AND GT ISZERO PUSH2 0x252C JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000058B90BFBE8D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x40000000000 DUP5 AND GT ISZERO PUSH2 0x2558 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000002C5C85FDF46 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x20000000000 DUP5 AND GT ISZERO PUSH2 0x2584 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000162E42FEFA2 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH6 0x10000000000 DUP5 AND GT ISZERO PUSH2 0x25B0 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000B17217F7D0 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x8000000000 DUP5 AND GT ISZERO PUSH2 0x25DB JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000058B90BFBE7 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x4000000000 DUP5 AND GT ISZERO PUSH2 0x2606 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000002C5C85FDF3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x2000000000 DUP5 AND GT ISZERO PUSH2 0x2631 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000162E42FEF9 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x1000000000 DUP5 AND GT ISZERO PUSH2 0x265C JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000B17217F7C DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x800000000 DUP5 AND GT ISZERO PUSH2 0x2687 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000058B90BFBD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x400000000 DUP5 AND GT ISZERO PUSH2 0x26B2 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000002C5C85FDE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x200000000 DUP5 AND GT ISZERO PUSH2 0x26DD JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000162E42FEE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH5 0x100000000 DUP5 AND GT ISZERO PUSH2 0x2708 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000B17217F6 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x80000000 DUP5 AND GT ISZERO PUSH2 0x2732 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000058B90BFA DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x40000000 DUP5 AND GT ISZERO PUSH2 0x275C JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000002C5C85FC DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x20000000 DUP5 AND GT ISZERO PUSH2 0x2786 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000162E42FD DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x10000000 DUP5 AND GT ISZERO PUSH2 0x27B0 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000B17217E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x8000000 DUP5 AND GT ISZERO PUSH2 0x27DA JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000058B90BE DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x4000000 DUP5 AND GT ISZERO PUSH2 0x2804 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000002C5C85E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x2000000 DUP5 AND GT ISZERO PUSH2 0x282E JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000162E42E DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH4 0x1000000 DUP5 AND GT ISZERO PUSH2 0x2858 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000B17216 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x800000 DUP5 AND GT ISZERO PUSH2 0x2881 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000058B90A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x400000 DUP5 AND GT ISZERO PUSH2 0x28AA JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000002C5C84 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x200000 DUP5 AND GT ISZERO PUSH2 0x28D3 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000162E41 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x100000 DUP5 AND GT ISZERO PUSH2 0x28FC JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000B1720 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x80000 DUP5 AND GT ISZERO PUSH2 0x2925 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000058B8F DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x40000 DUP5 AND GT ISZERO PUSH2 0x294E JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000002C5C7 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x20000 DUP5 AND GT ISZERO PUSH2 0x2977 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000162E3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH3 0x10000 DUP5 AND GT ISZERO PUSH2 0x29A0 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000B171 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x8000 DUP5 AND GT ISZERO PUSH2 0x29C8 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000058B8 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x4000 DUP5 AND GT ISZERO PUSH2 0x29F0 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000002C5B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x2000 DUP5 AND GT ISZERO PUSH2 0x2A18 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000162D DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x1000 DUP5 AND GT ISZERO PUSH2 0x2A40 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000B16 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x800 DUP5 AND GT ISZERO PUSH2 0x2A68 JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000058A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x400 DUP5 AND GT ISZERO PUSH2 0x2A90 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000002C4 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x200 DUP5 AND GT ISZERO PUSH2 0x2AB8 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000161 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH2 0x100 DUP5 AND GT ISZERO PUSH2 0x2AE0 JUMPI PUSH1 0x80 PUSH17 0x1000000000000000000000000000000B0 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP5 AND GT ISZERO PUSH2 0x2B07 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000057 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP5 AND GT ISZERO PUSH2 0x2B2E JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000002B DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP5 AND GT ISZERO PUSH2 0x2B55 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000015 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x10 DUP5 AND GT ISZERO PUSH2 0x2B7C JUMPI PUSH1 0x80 PUSH17 0x10000000000000000000000000000000A DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP5 AND GT ISZERO PUSH2 0x2BA3 JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000004 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x0 PUSH1 0x4 DUP5 AND GT ISZERO PUSH2 0x2BCA JUMPI PUSH1 0x80 PUSH17 0x100000000000000000000000000000001 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST DUP5 PUSH2 0x2BF2 JUMPI PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF DUP3 SWAP1 SHR AND SWAP1 POP PUSH2 0x3FFF DUP3 ADD SWAP2 POP PUSH2 0x2C2E JUMP JUMPDEST PUSH2 0x3FFE DUP3 GT PUSH2 0x2C1E JUMPI PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF DUP3 SWAP1 SHR AND SWAP1 POP DUP2 PUSH2 0x3FFF SUB SWAP2 POP PUSH2 0x2C2D JUMP JUMPDEST PUSH2 0x3FEF DUP3 SUB DUP2 SWAP1 SHR SWAP1 POP PUSH1 0x0 SWAP2 POP JUMPDEST JUMPDEST DUP1 PUSH1 0x70 DUP4 SWAP1 SHL OR PUSH1 0x80 SHL SWAP6 POP POP POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C54 DUP2 PU
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment