ERC-20
Overview
Max Total Supply
100 TRUMP404
Holders
0
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 TRUMP404Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TRUMP404
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-10 */ /* https://www.trump404.xyz/ https://t.me/trump404 */ /* Trump by ERC-404+ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; 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_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } pragma solidity ^0.8.0; abstract contract Ownable { event OwnershipTransferred(address indexed user, address indexed newOwner); error Unauthorized(); error InvalidOwner(); address public owner; modifier onlyOwner() virtual { if (msg.sender != owner) revert Unauthorized(); _; } constructor(address _owner) { if (_owner == address(0)) revert InvalidOwner(); owner = _owner; emit OwnershipTransferred(address(0), _owner); } function transferOwnership(address _owner) public virtual onlyOwner { if (_owner == address(0)) revert InvalidOwner(); owner = _owner; emit OwnershipTransferred(msg.sender, _owner); } function revokeOwnership() public virtual onlyOwner { owner = address(0); emit OwnershipTransferred(msg.sender, address(0)); } } abstract contract ERC721Receiver { function onERC721Received( address, address, uint256, bytes calldata ) external virtual returns (bytes4) { return ERC721Receiver.onERC721Received.selector; } } /// @notice ERC404 /// A gas-efficient, mixed ERC20 / ERC721 implementation /// with native liquidity and fractionalization. /// /// This is an experimental standard designed to integrate /// with pre-existing ERC20 / ERC721 support as smoothly as /// possible. /// /// @dev In order to support full functionality of ERC20 and ERC721 /// supply assumptions are made that slightly constraint usage. /// Ensure decimals are sufficiently large (standard 18 recommended) /// as ids are effectively encoded in the lowest range of amounts. /// /// NFTs are spent on ERC20 functions in a FILO queue, this is by /// design. /// abstract contract ERC404 is Ownable { // Events event ERC20Transfer( address indexed from, address indexed to, uint256 amount ); event Approval( address indexed owner, address indexed spender, uint256 amount ); event Transfer( address indexed from, address indexed to, uint256 indexed id ); event ERC721Approval( address indexed owner, address indexed spender, uint256 indexed id ); event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); // Errors error NotFound(); error AlreadyExists(); error InvalidRecipient(); error InvalidSender(); error UnsafeRecipient(); // Metadata /// @dev Token name string public name; /// @dev Token symbol string public symbol; /// @dev Decimals for fractional representation uint8 public immutable decimals; /// @dev Total supply in fractionalized representation uint256 public immutable totalSupply; // @ERC404+ Array of burnt IDs uint256[] public _burnedTokenIds; /// @dev Current mint counter, monotonically increasing to ensure accurate ownership uint256 public minted; /// @dev Current mint counter, monotonically increasing to ensure accurate ownership uint256 public max_mint; // Mappings /// @dev Balance of user in fractional representation mapping(address => uint256) public balanceOf; /// @dev Allowance of user in fractional representation mapping(address => mapping(address => uint256)) public allowance; /// @dev Approval in native representaion mapping(uint256 => address) public getApproved; /// @dev Approval for all in native representation mapping(address => mapping(address => bool)) public isApprovedForAll; /// @dev Owner of id in native representation mapping(uint256 => address) internal _ownerOf; /// @dev Array of owned ids in native representation mapping(address => uint256[]) internal _owned; /// @dev Tracks indices for the _owned mapping mapping(uint256 => uint256) internal _ownedIndex; /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc) mapping(address => bool) public whitelist; // Constructor constructor( string memory _name, string memory _symbol, uint8 _decimals, uint256 _totalNativeSupply, address _owner ) Ownable(_owner) { name = _name; max_mint = _totalNativeSupply; symbol = _symbol; decimals = _decimals; totalSupply = _totalNativeSupply * (10 ** decimals); whitelist[msg.sender]=true; } /// @notice Initialization function to set pairs / etc /// saving gas by avoiding mint / burn on unnecessary targets function setWhitelist(address target, bool state) public onlyOwner { whitelist[target] = state; } /// @notice Function to find owner of a given native token function ownerOf(uint256 id) public view virtual returns (address owner) { owner = _ownerOf[id]; if (owner == address(0)) { revert NotFound(); } } /// @notice tokenURI must be implemented by child contract function tokenURI(uint256 id) public view virtual returns (string memory); /// @notice Function for token approvals /// @dev This function assumes id / native if amount less than or equal to current max id function approve( address spender, uint256 amountOrId ) public virtual returns (bool) { if (amountOrId <= minted && amountOrId > 0) { address owner = _ownerOf[amountOrId]; if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) { revert Unauthorized(); } getApproved[amountOrId] = spender; emit Approval(owner, spender, amountOrId); } else { allowance[msg.sender][spender] = amountOrId; emit Approval(msg.sender, spender, amountOrId); } return true; } /// @notice Function native approvals function setApprovalForAll(address operator, bool approved) public virtual { isApprovedForAll[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } /// @notice Function for mixed transfers /// @dev This function assumes id / native if amount less than or equal to current max id function transferFrom( address from, address to, uint256 amountOrId ) public virtual { if (amountOrId <= minted) { if (from != _ownerOf[amountOrId]) { revert InvalidSender(); } if (to == address(0)) { revert InvalidRecipient(); } if ( msg.sender != from && !isApprovedForAll[from][msg.sender] && msg.sender != getApproved[amountOrId] ) { revert Unauthorized(); } balanceOf[from] -= _getUnit(); unchecked { balanceOf[to] += _getUnit(); } _ownerOf[amountOrId] = to; delete getApproved[amountOrId]; // update _owned for sender uint256 updatedId = _owned[from][_owned[from].length - 1]; _owned[from][_ownedIndex[amountOrId]] = updatedId; // pop _owned[from].pop(); // update index for the moved id _ownedIndex[updatedId] = _ownedIndex[amountOrId]; // push token to to owned _owned[to].push(amountOrId); // update index for to owned _ownedIndex[amountOrId] = _owned[to].length - 1; emit Transfer(from, to, amountOrId); emit ERC20Transfer(from, to, _getUnit()); } else { uint256 allowed = allowance[from][msg.sender]; if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amountOrId; _transfer(from, to, amountOrId); } } /// @notice Function for fractional transfers function transfer( address to, uint256 amount ) public virtual returns (bool) { return _transfer(msg.sender, to, amount); } /// @notice Function for native transfers with contract support function safeTransferFrom( address from, address to, uint256 id ) public virtual { transferFrom(from, to, id); if ( to.code.length != 0 && ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") != ERC721Receiver.onERC721Received.selector ) { revert UnsafeRecipient(); } } /// @notice Function for native transfers with contract support and callback data function safeTransferFrom( address from, address to, uint256 id, bytes calldata data ) public virtual { transferFrom(from, to, id); if ( to.code.length != 0 && ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) != ERC721Receiver.onERC721Received.selector ) { revert UnsafeRecipient(); } } /// @notice Internal function for fractional transfers function _transfer( address from, address to, uint256 amount ) internal returns (bool) { uint256 unit = _getUnit(); uint256 balanceBeforeSender = balanceOf[from]; uint256 balanceBeforeReceiver = balanceOf[to]; balanceOf[from] -= amount; unchecked { balanceOf[to] += amount; } // Skip burn for certain addresses to save gas if (!whitelist[from]) { uint256 tokens_to_burn = (balanceBeforeSender / unit) - (balanceOf[from] / unit); for (uint256 i = 0; i < tokens_to_burn; i++) { _burn(from); } } // Skip minting for certain addresses to save gas if (!whitelist[to]) { uint256 tokens_to_mint = (balanceOf[to] / unit) - (balanceBeforeReceiver / unit); for (uint256 i = 0; i < tokens_to_mint; i++) { _mint(to); } } emit ERC20Transfer(from, to, amount); return true; } // Internal utility logic function _getUnit() internal view returns (uint256) { return 10 ** decimals; } function _mint(address to) internal virtual { if (to == address(0)) { revert InvalidRecipient(); } unchecked { minted++; } uint256 id = minted; if(minted > max_mint && _burnedTokenIds.length > 0){ uint256 lastIndex = _burnedTokenIds.length - 1; id = _burnedTokenIds[lastIndex]; _burnedTokenIds.pop(); } if (_ownerOf[id] != address(0)) { revert AlreadyExists(); } _ownerOf[id] = to; _owned[to].push(id); _ownedIndex[id] = _owned[to].length - 1; emit Transfer(address(0), to, id); } function _burn(address from) internal virtual { if (from == address(0)) { revert InvalidSender(); } uint256 id = _owned[from][_owned[from].length - 1]; _owned[from].pop(); delete _ownedIndex[id]; delete _ownerOf[id]; delete getApproved[id]; // push ID inside of burnt array _burnedTokenIds.push(id); emit Transfer(from, address(0), id); } function _setNameSymbol( string memory _name, string memory _symbol ) internal { name = _name; symbol = _symbol; } } interface IERC20 { function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; contract TRUMP404 is ERC404 { string public dataURI="https://bafybeih7rumr6q2l6vv7m3cuhj7ctbh24nv5f4nc2w6lmo7zoix3kxkfl4.ipfs.nftstorage.link/"; string public baseTokenURI; string public baseExtension = ".json"; constructor( address _owner ) ERC404("Trump 404", "TRUMP404", 18, 100, _owner) { balanceOf[_owner] = 100 * 10 ** 18; } function setDataURI(string memory _dataURI) public onlyOwner { dataURI = _dataURI; } function setTokenURI(string memory _tokenURI) public onlyOwner { baseTokenURI = _tokenURI; } function setNameSymbol( string memory _name, string memory _symbol ) public onlyOwner { _setNameSymbol(_name, _symbol); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { string memory currentBaseURI = dataURI; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), baseExtension ) ) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_burnedTokenIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","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":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040526040518060800160405280605981526020016200419f60599139600e90816200002e919062000588565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506010908162000075919062000588565b5034801562000082575f80fd5b50604051620041f8380380620041f88339818101604052810190620000a89190620006d1565b6040518060400160405280600981526020017f5472756d702034303400000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f5452554d503430340000000000000000000000000000000000000000000000008152506012606484805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000180576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35084600190816200022b919062000588565b5081600581905550836002908162000244919062000588565b508260ff1660808160ff1681525050608051600a6200026491906200088a565b82620002719190620008da565b60a081815250506001600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050505068056bc75e2d6310000060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505062000924565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003a057607f821691505b602082108103620003b657620003b56200035b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200041a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003dd565b620004268683620003dd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004706200046a62000464846200043e565b62000447565b6200043e565b9050919050565b5f819050919050565b6200048b8362000450565b620004a36200049a8262000477565b848454620003e9565b825550505050565b5f90565b620004b9620004ab565b620004c681848462000480565b505050565b5b81811015620004ed57620004e15f82620004af565b600181019050620004cc565b5050565b601f8211156200053c576200050681620003bc565b6200051184620003ce565b8101602085101562000521578190505b620005396200053085620003ce565b830182620004cb565b50505b505050565b5f82821c905092915050565b5f6200055e5f198460080262000541565b1980831691505092915050565b5f6200057883836200054d565b9150826002028217905092915050565b620005938262000324565b67ffffffffffffffff811115620005af57620005ae6200032e565b5b620005bb825462000388565b620005c8828285620004f1565b5f60209050601f831160018114620005fe575f8415620005e9578287015190505b620005f585826200056b565b86555062000664565b601f1984166200060e86620003bc565b5f5b82811015620006375784890151825560018201915060208501945060208101905062000610565b8683101562000657578489015162000653601f8916826200054d565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200069b8262000670565b9050919050565b620006ad816200068f565b8114620006b8575f80fd5b50565b5f81519050620006cb81620006a2565b92915050565b5f60208284031215620006e957620006e86200066c565b5b5f620006f884828501620006bb565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200078b5780860481111562000763576200076262000701565b5b6001851615620007735780820291505b808102905062000783856200072e565b945062000743565b94509492505050565b5f82620007a5576001905062000877565b81620007b4575f905062000877565b8160018114620007cd5760028114620007d8576200080e565b600191505062000877565b60ff841115620007ed57620007ec62000701565b5b8360020a91508482111562000807576200080662000701565b5b5062000877565b5060208310610133831016604e8410600b8410161715620008485782820a90508381111562000842576200084162000701565b5b62000877565b6200085784848460016200073a565b9250905081840481111562000871576200087062000701565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000896826200043e565b9150620008a3836200087e565b9250620008d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000794565b905092915050565b5f620008e6826200043e565b9150620008f3836200043e565b925082820262000903816200043e565b915082820484148315176200091d576200091c62000701565b5b5092915050565b60805160a0516138526200094d5f395f61099301525f81816113640152611efc01526138525ff3fe608060405234801561000f575f80fd5b50600436106101d8575f3560e01c80638da5cb5b11610102578063c87b56dd116100a0578063e0df5b6f1161006f578063e0df5b6f14610568578063e985e9c514610584578063f28ca1dd146105b4578063f2fde38b146105d2576101d8565b8063c87b56dd146104cc578063d547cfb7146104fc578063d7c64e7f1461051a578063dd62ed3e14610538576101d8565b8063a22cb465116100dc578063a22cb46514610446578063a9059cbb14610462578063b88d4fde14610492578063c6682862146104ae576101d8565b80638da5cb5b146103da57806395d89b41146103f85780639b19251a14610416576101d8565b8063313ce5671161017a57806353d6fd591161014957806353d6fd591461032e57806356bb8cb61461034a5780636352211e1461037a57806370a08231146103aa576101d8565b8063313ce567146102ba57806342842e0e146102d85780634f02c420146102f4578063504334c214610312576101d8565b806318160ddd116101b657806318160ddd1461025a57806318d217c31461027857806323b872dd146102945780632b968958146102b0576101d8565b806306fdde03146101dc578063081812fc146101fa578063095ea7b31461022a575b5f80fd5b6101e46105ee565b6040516101f19190612a9d565b60405180910390f35b610214600480360381019061020f9190612b01565b61067a565b6040516102219190612b6b565b60405180910390f35b610244600480360381019061023f9190612bae565b6106aa565b6040516102519190612c06565b60405180910390f35b610262610991565b60405161026f9190612c2e565b60405180910390f35b610292600480360381019061028d9190612d73565b6109b5565b005b6102ae60048036038101906102a99190612dba565b610a4c565b005b6102b8611243565b005b6102c2611362565b6040516102cf9190612e25565b60405180910390f35b6102f260048036038101906102ed9190612dba565b611386565b005b6102fc6114b5565b6040516103099190612c2e565b60405180910390f35b61032c60048036038101906103279190612e3e565b6114bb565b005b61034860048036038101906103439190612ede565b61154d565b005b610364600480360381019061035f9190612b01565b611629565b6040516103719190612c2e565b60405180910390f35b610394600480360381019061038f9190612b01565b611649565b6040516103a19190612b6b565b60405180910390f35b6103c460048036038101906103bf9190612f1c565b6116e7565b6040516103d19190612c2e565b60405180910390f35b6103e26116fc565b6040516103ef9190612b6b565b60405180910390f35b61040061171f565b60405161040d9190612a9d565b60405180910390f35b610430600480360381019061042b9190612f1c565b6117ab565b60405161043d9190612c06565b60405180910390f35b610460600480360381019061045b9190612ede565b6117c8565b005b61047c60048036038101906104779190612bae565b6118c0565b6040516104899190612c06565b60405180910390f35b6104ac60048036038101906104a79190612fa4565b6118d4565b005b6104b6611a09565b6040516104c39190612a9d565b60405180910390f35b6104e660048036038101906104e19190612b01565b611a95565b6040516104f39190612a9d565b60405180910390f35b610504611b75565b6040516105119190612a9d565b60405180910390f35b610522611c01565b60405161052f9190612c2e565b60405180910390f35b610552600480360381019061054d9190613028565b611c07565b60405161055f9190612c2e565b60405180910390f35b610582600480360381019061057d9190612d73565b611c27565b005b61059e60048036038101906105999190613028565b611cbe565b6040516105ab9190612c06565b60405180910390f35b6105bc611ce8565b6040516105c99190612a9d565b60405180910390f35b6105ec60048036038101906105e79190612f1c565b611d74565b005b600180546105fb90613093565b80601f016020809104026020016040519081016040528092919081815260200182805461062790613093565b80156106725780601f1061064957610100808354040283529160200191610672565b820191905f5260205f20905b81548152906001019060200180831161065557829003601f168201915b505050505081565b6008602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60045482111580156106bc57505f82115b156108a4575f600a5f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156107b3575060095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156107ea576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360085f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516108969190612c2e565b60405180910390a350610987565b8160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161097e9190612c2e565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e9081610a489190613260565b5050565b600454811161110457600a5f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610aea576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4f576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c0d575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610c75575060085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610cac576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb4611ef9565b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610cff919061335c565b92505081905550610d0e611ef9565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555081600a5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610e64919061335c565b81548110610e7557610e7461338f565b5b905f5260205f200154905080600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600c5f8581526020019081526020015f205481548110610ee157610ee061338f565b5b905f5260205f200181905550600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610f3a57610f396133bc565b5b600190038181905f5260205f20015f90559055600c5f8381526020019081526020015f2054600c5f8381526020019081526020015f2081905550600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050611022919061335c565b600c5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314876110e9611ef9565b6040516110f69190612c2e565b60405180910390a35061123e565b5f60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112305781816111b3919061335c565b60075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61123b848484611f2c565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b611391838383610a4c565b5f8273ffffffffffffffffffffffffffffffffffffffff163b14158015611479575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b81526004016114179392919061341c565b6020604051808303815f875af1158015611433573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061145791906134b9565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156114b0576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60045481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461153f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115498282612270565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60038181548110611638575f80fd5b905f5260205f20015f915090505481565b5f600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116e2576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6006602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461172c90613093565b80601f016020809104026020016040519081016040528092919081815260200182805461175890613093565b80156117a35780601f1061177a576101008083540402835291602001916117a3565b820191905f5260205f20905b81548152906001019060200180831161178657829003601f168201915b505050505081565b600d602052805f5260405f205f915054906101000a900460ff1681565b8060095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b49190612c06565b60405180910390a35050565b5f6118cc338484611f2c565b905092915050565b6118df858585610a4c565b5f8473ffffffffffffffffffffffffffffffffffffffff163b141580156119cb575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b8152600401611969959493929190613510565b6020604051808303815f875af1158015611985573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119a991906134b9565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611a02576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60108054611a1690613093565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4290613093565b8015611a8d5780601f10611a6457610100808354040283529160200191611a8d565b820191905f5260205f20905b815481529060010190602001808311611a7057829003601f168201915b505050505081565b60605f600e8054611aa590613093565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad190613093565b8015611b1c5780601f10611af357610100808354040283529160200191611b1c565b820191905f5260205f20905b815481529060010190602001808311611aff57829003601f168201915b505050505090505f815111611b3f5760405180602001604052805f815250611b6d565b80611b4984612294565b6010604051602001611b5d93929190613616565b6040516020818303038152906040525b915050919050565b600f8054611b8290613093565b80601f0160208091040260200160405190810160405280929190818152602001828054611bae90613093565b8015611bf95780601f10611bd057610100808354040283529160200191611bf9565b820191905f5260205f20905b815481529060010190602001808311611bdc57829003601f168201915b505050505081565b60055481565b6007602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cab576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f9081611cba9190613260565b5050565b6009602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600e8054611cf590613093565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2190613093565b8015611d6c5780601f10611d4357610100808354040283529160200191611d6c565b820191905f5260205f20905b815481529060010190602001808311611d4f57829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611df8576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e5d576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a611f279190613775565b905090565b5f80611f36611ef9565b90505f60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460065f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612006919061335c565b925050819055508460065f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661212a575f8360065f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120ef91906137ec565b84846120fb91906137ec565b612105919061335c565b90505f5b818110156121275761211a8961235e565b8080600101915050612109565b50505b600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166121fd575f838261218591906137ec565b8460065f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121ce91906137ec565b6121d8919061335c565b90505f5b818110156121fa576121ed886125c9565b80806001019150506121dc565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161225a9190612c2e565b60405180910390a3600193505050509392505050565b816001908161227f9190613260565b50806002908161228f9190613260565b505050565b60605f60016122a2846128c2565b0190505f8167ffffffffffffffff8111156122c0576122bf612c4f565b5b6040519080825280601f01601f1916602001820160405280156122f25781602001600182028036833780820191505090505b5090505f82602001820190505b600115612353578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612348576123476137bf565b5b0494505f85036122ff575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123c3576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061244e919061335c565b8154811061245f5761245e61338f565b5b905f5260205f2001549050600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806124b7576124b66133bc565b5b600190038181905f5260205f20015f90559055600c5f8281526020019081526020015f205f9055600a5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600381908060018154018082558091505060019003905f5260205f20015f9091909190915055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361262e576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f81548092919060010191905055505f600454905060055460045411801561265c57505f600380549050115b156126bc575f6001600380549050612674919061335c565b90506003818154811061268a5761268961338f565b5b905f5260205f200154915060038054806126a7576126a66133bc565b5b600190038181905f5260205f20015f90559055505b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612751576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600a5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061284e919061335c565b600c5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061291e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612914576129136137bf565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061295b576d04ee2d6d415b85acef81000000008381612951576129506137bf565b5b0492506020810190505b662386f26fc10000831061298a57662386f26fc1000083816129805761297f6137bf565b5b0492506010810190505b6305f5e10083106129b3576305f5e10083816129a9576129a86137bf565b5b0492506008810190505b61271083106129d85761271083816129ce576129cd6137bf565b5b0492506004810190505b606483106129fb57606483816129f1576129f06137bf565b5b0492506002810190505b600a8310612a0a576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a4a578082015181840152602081019050612a2f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a6f82612a13565b612a798185612a1d565b9350612a89818560208601612a2d565b612a9281612a55565b840191505092915050565b5f6020820190508181035f830152612ab58184612a65565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612ae081612ace565b8114612aea575f80fd5b50565b5f81359050612afb81612ad7565b92915050565b5f60208284031215612b1657612b15612ac6565b5b5f612b2384828501612aed565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b5582612b2c565b9050919050565b612b6581612b4b565b82525050565b5f602082019050612b7e5f830184612b5c565b92915050565b612b8d81612b4b565b8114612b97575f80fd5b50565b5f81359050612ba881612b84565b92915050565b5f8060408385031215612bc457612bc3612ac6565b5b5f612bd185828601612b9a565b9250506020612be285828601612aed565b9150509250929050565b5f8115159050919050565b612c0081612bec565b82525050565b5f602082019050612c195f830184612bf7565b92915050565b612c2881612ace565b82525050565b5f602082019050612c415f830184612c1f565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612c8582612a55565b810181811067ffffffffffffffff82111715612ca457612ca3612c4f565b5b80604052505050565b5f612cb6612abd565b9050612cc28282612c7c565b919050565b5f67ffffffffffffffff821115612ce157612ce0612c4f565b5b612cea82612a55565b9050602081019050919050565b828183375f83830152505050565b5f612d17612d1284612cc7565b612cad565b905082815260208101848484011115612d3357612d32612c4b565b5b612d3e848285612cf7565b509392505050565b5f82601f830112612d5a57612d59612c47565b5b8135612d6a848260208601612d05565b91505092915050565b5f60208284031215612d8857612d87612ac6565b5b5f82013567ffffffffffffffff811115612da557612da4612aca565b5b612db184828501612d46565b91505092915050565b5f805f60608486031215612dd157612dd0612ac6565b5b5f612dde86828701612b9a565b9350506020612def86828701612b9a565b9250506040612e0086828701612aed565b9150509250925092565b5f60ff82169050919050565b612e1f81612e0a565b82525050565b5f602082019050612e385f830184612e16565b92915050565b5f8060408385031215612e5457612e53612ac6565b5b5f83013567ffffffffffffffff811115612e7157612e70612aca565b5b612e7d85828601612d46565b925050602083013567ffffffffffffffff811115612e9e57612e9d612aca565b5b612eaa85828601612d46565b9150509250929050565b612ebd81612bec565b8114612ec7575f80fd5b50565b5f81359050612ed881612eb4565b92915050565b5f8060408385031215612ef457612ef3612ac6565b5b5f612f0185828601612b9a565b9250506020612f1285828601612eca565b9150509250929050565b5f60208284031215612f3157612f30612ac6565b5b5f612f3e84828501612b9a565b91505092915050565b5f80fd5b5f80fd5b5f8083601f840112612f6457612f63612c47565b5b8235905067ffffffffffffffff811115612f8157612f80612f47565b5b602083019150836001820283011115612f9d57612f9c612f4b565b5b9250929050565b5f805f805f60808688031215612fbd57612fbc612ac6565b5b5f612fca88828901612b9a565b9550506020612fdb88828901612b9a565b9450506040612fec88828901612aed565b935050606086013567ffffffffffffffff81111561300d5761300c612aca565b5b61301988828901612f4f565b92509250509295509295909350565b5f806040838503121561303e5761303d612ac6565b5b5f61304b85828601612b9a565b925050602061305c85828601612b9a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806130aa57607f821691505b6020821081036130bd576130bc613066565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261311f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130e4565b61312986836130e4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61316461315f61315a84612ace565b613141565b612ace565b9050919050565b5f819050919050565b61317d8361314a565b6131916131898261316b565b8484546130f0565b825550505050565b5f90565b6131a5613199565b6131b0818484613174565b505050565b5b818110156131d3576131c85f8261319d565b6001810190506131b6565b5050565b601f821115613218576131e9816130c3565b6131f2846130d5565b81016020851015613201578190505b61321561320d856130d5565b8301826131b5565b50505b505050565b5f82821c905092915050565b5f6132385f198460080261321d565b1980831691505092915050565b5f6132508383613229565b9150826002028217905092915050565b61326982612a13565b67ffffffffffffffff81111561328257613281612c4f565b5b61328c8254613093565b6132978282856131d7565b5f60209050601f8311600181146132c8575f84156132b6578287015190505b6132c08582613245565b865550613327565b601f1984166132d6866130c3565b5f5b828110156132fd578489015182556001820191506020850194506020810190506132d8565b8683101561331a5784890151613316601f891682613229565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61336682612ace565b915061337183612ace565b92508282039050818111156133895761338861332f565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6134075f836133e9565b9150613412826133f9565b5f82019050919050565b5f60808201905061342f5f830186612b5c565b61343c6020830185612b5c565b6134496040830184612c1f565b818103606083015261345a816133fc565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61349881613464565b81146134a2575f80fd5b50565b5f815190506134b38161348f565b92915050565b5f602082840312156134ce576134cd612ac6565b5b5f6134db848285016134a5565b91505092915050565b5f6134ef83856133e9565b93506134fc838584612cf7565b61350583612a55565b840190509392505050565b5f6080820190506135235f830188612b5c565b6135306020830187612b5c565b61353d6040830186612c1f565b81810360608301526135508184866134e4565b90509695505050505050565b5f81905092915050565b5f61357082612a13565b61357a818561355c565b935061358a818560208601612a2d565b80840191505092915050565b5f81546135a281613093565b6135ac818661355c565b9450600182165f81146135c657600181146135db5761360d565b60ff198316865281151582028601935061360d565b6135e4856130c3565b5f5b83811015613605578154818901526001820191506020810190506135e6565b838801955050505b50505092915050565b5f6136218286613566565b915061362d8285613566565b91506136398284613596565b9150819050949350505050565b5f8160011c9050919050565b5f808291508390505b600185111561369b578086048111156136775761367661332f565b5b60018516156136865780820291505b808102905061369485613646565b945061365b565b94509492505050565b5f826136b3576001905061376e565b816136c0575f905061376e565b81600181146136d657600281146136e05761370f565b600191505061376e565b60ff8411156136f2576136f161332f565b5b8360020a9150848211156137095761370861332f565b5b5061376e565b5060208310610133831016604e8410600b84101617156137445782820a90508381111561373f5761373e61332f565b5b61376e565b6137518484846001613652565b925090508184048111156137685761376761332f565b5b81810290505b9392505050565b5f61377f82612ace565b915061378a83612e0a565b92506137b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846136a4565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6137f682612ace565b915061380183612ace565b925082613811576138106137bf565b5b82820490509291505056fea26469706673582212201b2a72aa9f97e07296d537c6222fe14501f4bc78d87ba70df28c11c54a877e5a64736f6c6343000818003368747470733a2f2f62616679626569683772756d723671326c367676376d336375686a376374626832346e763566346e633277366c6d6f377a6f6978336b786b666c342e697066732e6e667473746f726167652e6c696e6b2f000000000000000000000000bce096bebd9a22a68dec1b9841fc1be997b9866a
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101d8575f3560e01c80638da5cb5b11610102578063c87b56dd116100a0578063e0df5b6f1161006f578063e0df5b6f14610568578063e985e9c514610584578063f28ca1dd146105b4578063f2fde38b146105d2576101d8565b8063c87b56dd146104cc578063d547cfb7146104fc578063d7c64e7f1461051a578063dd62ed3e14610538576101d8565b8063a22cb465116100dc578063a22cb46514610446578063a9059cbb14610462578063b88d4fde14610492578063c6682862146104ae576101d8565b80638da5cb5b146103da57806395d89b41146103f85780639b19251a14610416576101d8565b8063313ce5671161017a57806353d6fd591161014957806353d6fd591461032e57806356bb8cb61461034a5780636352211e1461037a57806370a08231146103aa576101d8565b8063313ce567146102ba57806342842e0e146102d85780634f02c420146102f4578063504334c214610312576101d8565b806318160ddd116101b657806318160ddd1461025a57806318d217c31461027857806323b872dd146102945780632b968958146102b0576101d8565b806306fdde03146101dc578063081812fc146101fa578063095ea7b31461022a575b5f80fd5b6101e46105ee565b6040516101f19190612a9d565b60405180910390f35b610214600480360381019061020f9190612b01565b61067a565b6040516102219190612b6b565b60405180910390f35b610244600480360381019061023f9190612bae565b6106aa565b6040516102519190612c06565b60405180910390f35b610262610991565b60405161026f9190612c2e565b60405180910390f35b610292600480360381019061028d9190612d73565b6109b5565b005b6102ae60048036038101906102a99190612dba565b610a4c565b005b6102b8611243565b005b6102c2611362565b6040516102cf9190612e25565b60405180910390f35b6102f260048036038101906102ed9190612dba565b611386565b005b6102fc6114b5565b6040516103099190612c2e565b60405180910390f35b61032c60048036038101906103279190612e3e565b6114bb565b005b61034860048036038101906103439190612ede565b61154d565b005b610364600480360381019061035f9190612b01565b611629565b6040516103719190612c2e565b60405180910390f35b610394600480360381019061038f9190612b01565b611649565b6040516103a19190612b6b565b60405180910390f35b6103c460048036038101906103bf9190612f1c565b6116e7565b6040516103d19190612c2e565b60405180910390f35b6103e26116fc565b6040516103ef9190612b6b565b60405180910390f35b61040061171f565b60405161040d9190612a9d565b60405180910390f35b610430600480360381019061042b9190612f1c565b6117ab565b60405161043d9190612c06565b60405180910390f35b610460600480360381019061045b9190612ede565b6117c8565b005b61047c60048036038101906104779190612bae565b6118c0565b6040516104899190612c06565b60405180910390f35b6104ac60048036038101906104a79190612fa4565b6118d4565b005b6104b6611a09565b6040516104c39190612a9d565b60405180910390f35b6104e660048036038101906104e19190612b01565b611a95565b6040516104f39190612a9d565b60405180910390f35b610504611b75565b6040516105119190612a9d565b60405180910390f35b610522611c01565b60405161052f9190612c2e565b60405180910390f35b610552600480360381019061054d9190613028565b611c07565b60405161055f9190612c2e565b60405180910390f35b610582600480360381019061057d9190612d73565b611c27565b005b61059e60048036038101906105999190613028565b611cbe565b6040516105ab9190612c06565b60405180910390f35b6105bc611ce8565b6040516105c99190612a9d565b60405180910390f35b6105ec60048036038101906105e79190612f1c565b611d74565b005b600180546105fb90613093565b80601f016020809104026020016040519081016040528092919081815260200182805461062790613093565b80156106725780601f1061064957610100808354040283529160200191610672565b820191905f5260205f20905b81548152906001019060200180831161065557829003601f168201915b505050505081565b6008602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60045482111580156106bc57505f82115b156108a4575f600a5f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156107b3575060095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156107ea576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360085f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516108969190612c2e565b60405180910390a350610987565b8160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161097e9190612c2e565b60405180910390a35b6001905092915050565b7f0000000000000000000000000000000000000000000000056bc75e2d6310000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e9081610a489190613260565b5050565b600454811161110457600a5f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610aea576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4f576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c0d575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610c75575060085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610cac576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb4611ef9565b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610cff919061335c565b92505081905550610d0e611ef9565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555081600a5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610e64919061335c565b81548110610e7557610e7461338f565b5b905f5260205f200154905080600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600c5f8581526020019081526020015f205481548110610ee157610ee061338f565b5b905f5260205f200181905550600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610f3a57610f396133bc565b5b600190038181905f5260205f20015f90559055600c5f8381526020019081526020015f2054600c5f8381526020019081526020015f2081905550600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050611022919061335c565b600c5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314876110e9611ef9565b6040516110f69190612c2e565b60405180910390a35061123e565b5f60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112305781816111b3919061335c565b60075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61123b848484611f2c565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000001281565b611391838383610a4c565b5f8273ffffffffffffffffffffffffffffffffffffffff163b14158015611479575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b81526004016114179392919061341c565b6020604051808303815f875af1158015611433573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061145791906134b9565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156114b0576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60045481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461153f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115498282612270565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60038181548110611638575f80fd5b905f5260205f20015f915090505481565b5f600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116e2576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6006602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461172c90613093565b80601f016020809104026020016040519081016040528092919081815260200182805461175890613093565b80156117a35780601f1061177a576101008083540402835291602001916117a3565b820191905f5260205f20905b81548152906001019060200180831161178657829003601f168201915b505050505081565b600d602052805f5260405f205f915054906101000a900460ff1681565b8060095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b49190612c06565b60405180910390a35050565b5f6118cc338484611f2c565b905092915050565b6118df858585610a4c565b5f8473ffffffffffffffffffffffffffffffffffffffff163b141580156119cb575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b8152600401611969959493929190613510565b6020604051808303815f875af1158015611985573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119a991906134b9565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611a02576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60108054611a1690613093565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4290613093565b8015611a8d5780601f10611a6457610100808354040283529160200191611a8d565b820191905f5260205f20905b815481529060010190602001808311611a7057829003601f168201915b505050505081565b60605f600e8054611aa590613093565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad190613093565b8015611b1c5780601f10611af357610100808354040283529160200191611b1c565b820191905f5260205f20905b815481529060010190602001808311611aff57829003601f168201915b505050505090505f815111611b3f5760405180602001604052805f815250611b6d565b80611b4984612294565b6010604051602001611b5d93929190613616565b6040516020818303038152906040525b915050919050565b600f8054611b8290613093565b80601f0160208091040260200160405190810160405280929190818152602001828054611bae90613093565b8015611bf95780601f10611bd057610100808354040283529160200191611bf9565b820191905f5260205f20905b815481529060010190602001808311611bdc57829003601f168201915b505050505081565b60055481565b6007602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cab576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f9081611cba9190613260565b5050565b6009602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600e8054611cf590613093565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2190613093565b8015611d6c5780601f10611d4357610100808354040283529160200191611d6c565b820191905f5260205f20905b815481529060010190602001808311611d4f57829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611df8576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e5d576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a611f279190613775565b905090565b5f80611f36611ef9565b90505f60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460065f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612006919061335c565b925050819055508460065f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661212a575f8360065f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120ef91906137ec565b84846120fb91906137ec565b612105919061335c565b90505f5b818110156121275761211a8961235e565b8080600101915050612109565b50505b600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166121fd575f838261218591906137ec565b8460065f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121ce91906137ec565b6121d8919061335c565b90505f5b818110156121fa576121ed886125c9565b80806001019150506121dc565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161225a9190612c2e565b60405180910390a3600193505050509392505050565b816001908161227f9190613260565b50806002908161228f9190613260565b505050565b60605f60016122a2846128c2565b0190505f8167ffffffffffffffff8111156122c0576122bf612c4f565b5b6040519080825280601f01601f1916602001820160405280156122f25781602001600182028036833780820191505090505b5090505f82602001820190505b600115612353578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612348576123476137bf565b5b0494505f85036122ff575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123c3576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061244e919061335c565b8154811061245f5761245e61338f565b5b905f5260205f2001549050600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806124b7576124b66133bc565b5b600190038181905f5260205f20015f90559055600c5f8281526020019081526020015f205f9055600a5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600381908060018154018082558091505060019003905f5260205f20015f9091909190915055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361262e576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f81548092919060010191905055505f600454905060055460045411801561265c57505f600380549050115b156126bc575f6001600380549050612674919061335c565b90506003818154811061268a5761268961338f565b5b905f5260205f200154915060038054806126a7576126a66133bc565b5b600190038181905f5260205f20015f90559055505b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612751576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600a5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061284e919061335c565b600c5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061291e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612914576129136137bf565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061295b576d04ee2d6d415b85acef81000000008381612951576129506137bf565b5b0492506020810190505b662386f26fc10000831061298a57662386f26fc1000083816129805761297f6137bf565b5b0492506010810190505b6305f5e10083106129b3576305f5e10083816129a9576129a86137bf565b5b0492506008810190505b61271083106129d85761271083816129ce576129cd6137bf565b5b0492506004810190505b606483106129fb57606483816129f1576129f06137bf565b5b0492506002810190505b600a8310612a0a576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a4a578082015181840152602081019050612a2f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a6f82612a13565b612a798185612a1d565b9350612a89818560208601612a2d565b612a9281612a55565b840191505092915050565b5f6020820190508181035f830152612ab58184612a65565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612ae081612ace565b8114612aea575f80fd5b50565b5f81359050612afb81612ad7565b92915050565b5f60208284031215612b1657612b15612ac6565b5b5f612b2384828501612aed565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b5582612b2c565b9050919050565b612b6581612b4b565b82525050565b5f602082019050612b7e5f830184612b5c565b92915050565b612b8d81612b4b565b8114612b97575f80fd5b50565b5f81359050612ba881612b84565b92915050565b5f8060408385031215612bc457612bc3612ac6565b5b5f612bd185828601612b9a565b9250506020612be285828601612aed565b9150509250929050565b5f8115159050919050565b612c0081612bec565b82525050565b5f602082019050612c195f830184612bf7565b92915050565b612c2881612ace565b82525050565b5f602082019050612c415f830184612c1f565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612c8582612a55565b810181811067ffffffffffffffff82111715612ca457612ca3612c4f565b5b80604052505050565b5f612cb6612abd565b9050612cc28282612c7c565b919050565b5f67ffffffffffffffff821115612ce157612ce0612c4f565b5b612cea82612a55565b9050602081019050919050565b828183375f83830152505050565b5f612d17612d1284612cc7565b612cad565b905082815260208101848484011115612d3357612d32612c4b565b5b612d3e848285612cf7565b509392505050565b5f82601f830112612d5a57612d59612c47565b5b8135612d6a848260208601612d05565b91505092915050565b5f60208284031215612d8857612d87612ac6565b5b5f82013567ffffffffffffffff811115612da557612da4612aca565b5b612db184828501612d46565b91505092915050565b5f805f60608486031215612dd157612dd0612ac6565b5b5f612dde86828701612b9a565b9350506020612def86828701612b9a565b9250506040612e0086828701612aed565b9150509250925092565b5f60ff82169050919050565b612e1f81612e0a565b82525050565b5f602082019050612e385f830184612e16565b92915050565b5f8060408385031215612e5457612e53612ac6565b5b5f83013567ffffffffffffffff811115612e7157612e70612aca565b5b612e7d85828601612d46565b925050602083013567ffffffffffffffff811115612e9e57612e9d612aca565b5b612eaa85828601612d46565b9150509250929050565b612ebd81612bec565b8114612ec7575f80fd5b50565b5f81359050612ed881612eb4565b92915050565b5f8060408385031215612ef457612ef3612ac6565b5b5f612f0185828601612b9a565b9250506020612f1285828601612eca565b9150509250929050565b5f60208284031215612f3157612f30612ac6565b5b5f612f3e84828501612b9a565b91505092915050565b5f80fd5b5f80fd5b5f8083601f840112612f6457612f63612c47565b5b8235905067ffffffffffffffff811115612f8157612f80612f47565b5b602083019150836001820283011115612f9d57612f9c612f4b565b5b9250929050565b5f805f805f60808688031215612fbd57612fbc612ac6565b5b5f612fca88828901612b9a565b9550506020612fdb88828901612b9a565b9450506040612fec88828901612aed565b935050606086013567ffffffffffffffff81111561300d5761300c612aca565b5b61301988828901612f4f565b92509250509295509295909350565b5f806040838503121561303e5761303d612ac6565b5b5f61304b85828601612b9a565b925050602061305c85828601612b9a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806130aa57607f821691505b6020821081036130bd576130bc613066565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261311f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130e4565b61312986836130e4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61316461315f61315a84612ace565b613141565b612ace565b9050919050565b5f819050919050565b61317d8361314a565b6131916131898261316b565b8484546130f0565b825550505050565b5f90565b6131a5613199565b6131b0818484613174565b505050565b5b818110156131d3576131c85f8261319d565b6001810190506131b6565b5050565b601f821115613218576131e9816130c3565b6131f2846130d5565b81016020851015613201578190505b61321561320d856130d5565b8301826131b5565b50505b505050565b5f82821c905092915050565b5f6132385f198460080261321d565b1980831691505092915050565b5f6132508383613229565b9150826002028217905092915050565b61326982612a13565b67ffffffffffffffff81111561328257613281612c4f565b5b61328c8254613093565b6132978282856131d7565b5f60209050601f8311600181146132c8575f84156132b6578287015190505b6132c08582613245565b865550613327565b601f1984166132d6866130c3565b5f5b828110156132fd578489015182556001820191506020850194506020810190506132d8565b8683101561331a5784890151613316601f891682613229565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61336682612ace565b915061337183612ace565b92508282039050818111156133895761338861332f565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6134075f836133e9565b9150613412826133f9565b5f82019050919050565b5f60808201905061342f5f830186612b5c565b61343c6020830185612b5c565b6134496040830184612c1f565b818103606083015261345a816133fc565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61349881613464565b81146134a2575f80fd5b50565b5f815190506134b38161348f565b92915050565b5f602082840312156134ce576134cd612ac6565b5b5f6134db848285016134a5565b91505092915050565b5f6134ef83856133e9565b93506134fc838584612cf7565b61350583612a55565b840190509392505050565b5f6080820190506135235f830188612b5c565b6135306020830187612b5c565b61353d6040830186612c1f565b81810360608301526135508184866134e4565b90509695505050505050565b5f81905092915050565b5f61357082612a13565b61357a818561355c565b935061358a818560208601612a2d565b80840191505092915050565b5f81546135a281613093565b6135ac818661355c565b9450600182165f81146135c657600181146135db5761360d565b60ff198316865281151582028601935061360d565b6135e4856130c3565b5f5b83811015613605578154818901526001820191506020810190506135e6565b838801955050505b50505092915050565b5f6136218286613566565b915061362d8285613566565b91506136398284613596565b9150819050949350505050565b5f8160011c9050919050565b5f808291508390505b600185111561369b578086048111156136775761367661332f565b5b60018516156136865780820291505b808102905061369485613646565b945061365b565b94509492505050565b5f826136b3576001905061376e565b816136c0575f905061376e565b81600181146136d657600281146136e05761370f565b600191505061376e565b60ff8411156136f2576136f161332f565b5b8360020a9150848211156137095761370861332f565b5b5061376e565b5060208310610133831016604e8410600b84101617156137445782820a90508381111561373f5761373e61332f565b5b61376e565b6137518484846001613652565b925090508184048111156137685761376761332f565b5b81810290505b9392505050565b5f61377f82612ace565b915061378a83612e0a565b92506137b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846136a4565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6137f682612ace565b915061380183612ace565b925082613811576138106137bf565b5b82820490509291505056fea26469706673582212201b2a72aa9f97e07296d537c6222fe14501f4bc78d87ba70df28c11c54a877e5a64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000bce096bebd9a22a68dec1b9841fc1be997b9866a
-----Decoded View---------------
Arg [0] : _owner (address): 0xBce096beBd9a22a68dEc1B9841fc1BE997b9866a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000bce096bebd9a22a68dec1b9841fc1be997b9866a
Deployed Bytecode Sourcemap
32991:1096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22662:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23572:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25484:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22898:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33379:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26533:1716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20659:151;;;:::i;:::-;;22798:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28545:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23110:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33599:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24813:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22979:32;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24996:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23338:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20100:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22716;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24183:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26177:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28308:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29045:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33179:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33765:319;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33146:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23230:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23452:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33485:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23683:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33026:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20432:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22662:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23572:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;25484:642::-;25587:4;25622:6;;25608:10;:20;;:38;;;;;25645:1;25632:10;:14;25608:38;25604:491;;;25663:13;25679:8;:20;25688:10;25679:20;;;;;;;;;;;;;;;;;;;;;25663:36;;25734:5;25720:19;;:10;:19;;;;:59;;;;;25744:16;:23;25761:5;25744:23;;;;;;;;;;;;;;;:35;25768:10;25744:35;;;;;;;;;;;;;;;;;;;;;;;;;25743:36;25720:59;25716:121;;;25807:14;;;;;;;;;;;;;;25716:121;25879:7;25853:11;:23;25865:10;25853:23;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;25924:7;25908:36;;25917:5;25908:36;;;25933:10;25908:36;;;;;;:::i;:::-;;;;;;;;25648:308;25604:491;;;26010:10;25977:9;:21;25987:10;25977:21;;;;;;;;;;;;;;;:30;25999:7;25977:30;;;;;;;;;;;;;;;:43;;;;26063:7;26042:41;;26051:10;26042:41;;;26072:10;26042:41;;;;;;:::i;:::-;;;;;;;;25604:491;26114:4;26107:11;;25484:642;;;;:::o;22898:36::-;;;:::o;33379:98::-;20187:5;;;;;;;;;;20173:19;;:10;:19;;;20169:46;;20201:14;;;;;;;;;;;;;;20169:46;33461:8:::1;33451:7;:18;;;;;;:::i;:::-;;33379:98:::0;:::o;26533:1716::-;26679:6;;26665:10;:20;26661:1581;;26714:8;:20;26723:10;26714:20;;;;;;;;;;;;;;;;;;;;;26706:28;;:4;:28;;;26702:91;;26762:15;;;;;;;;;;;;;;26702:91;26827:1;26813:16;;:2;:16;;;26809:82;;26857:18;;;;;;;;;;;;;;26809:82;26943:4;26929:18;;:10;:18;;;;:74;;;;;26969:16;:22;26986:4;26969:22;;;;;;;;;;;;;;;:34;26992:10;26969:34;;;;;;;;;;;;;;;;;;;;;;;;;26968:35;26929:74;:132;;;;;27038:11;:23;27050:10;27038:23;;;;;;;;;;;;;;;;;;;;;27024:37;;:10;:37;;;;26929:132;26907:226;;;27103:14;;;;;;;;;;;;;;26907:226;27168:10;:8;:10::i;:::-;27149:9;:15;27159:4;27149:15;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;27241:10;:8;:10::i;:::-;27224:9;:13;27234:2;27224:13;;;;;;;;;;;;;;;;:27;;;;;;;;;;;27306:2;27283:8;:20;27292:10;27283:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;27330:11;:23;27342:10;27330:23;;;;;;;;;;;;27323:30;;;;;;;;;;;27411:17;27431:6;:12;27438:4;27431:12;;;;;;;;;;;;;;;27466:1;27444:6;:12;27451:4;27444:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;27431:37;;;;;;;;:::i;:::-;;;;;;;;;;27411:57;;27523:9;27483:6;:12;27490:4;27483:12;;;;;;;;;;;;;;;27496:11;:23;27508:10;27496:23;;;;;;;;;;;;27483:37;;;;;;;;:::i;:::-;;;;;;;;;:49;;;;27567:6;:12;27574:4;27567:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27671:11;:23;27683:10;27671:23;;;;;;;;;;;;27646:11;:22;27658:9;27646:22;;;;;;;;;;;:48;;;;27748:6;:10;27755:2;27748:10;;;;;;;;;;;;;;;27764;27748:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27878:1;27858:6;:10;27865:2;27858:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;27832:11;:23;27844:10;27832:23;;;;;;;;;;;:47;;;;27920:10;27916:2;27901:30;;27910:4;27901:30;;;;;;;;;;;;27971:2;27951:35;;27965:4;27951:35;;;27975:10;:8;:10::i;:::-;27951:35;;;;;;:::i;:::-;;;;;;;;26687:1311;26661:1581;;;28019:15;28037:9;:15;28047:4;28037:15;;;;;;;;;;;;;;;:27;28053:10;28037:27;;;;;;;;;;;;;;;;28019:45;;28096:17;28085:7;:28;28081:101;;28172:10;28162:7;:20;;;;:::i;:::-;28132:9;:15;28142:4;28132:15;;;;;;;;;;;;;;;:27;28148:10;28132:27;;;;;;;;;;;;;;;:50;;;;28081:101;28199:31;28209:4;28215:2;28219:10;28199:9;:31::i;:::-;;28004:238;26661:1581;26533:1716;;;:::o;20659:151::-;20187:5;;;;;;;;;;20173:19;;:10;:19;;;20169:46;;20201:14;;;;;;;;;;;;;;20169:46;20738:1:::1;20722:5:::0;::::1;:18;;;;;;;;;;;;;;;;;;20799:1;20758:44;;20779:10;20758:44;;;;;;;;;;;;20659:151::o:0;22798:31::-;;;:::o;28545:405::-;28669:26;28682:4;28688:2;28692;28669:12;:26::i;:::-;28744:1;28726:2;:14;;;:19;;:154;;;;;28840:40;;;28762:118;;;28777:2;28762:35;;;28798:10;28810:4;28816:2;28762:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:118;;;;;28726:154;28708:235;;;28914:17;;;;;;;;;;;;;;28708:235;28545:405;;;:::o;23110:21::-;;;;:::o;33599:158::-;20187:5;;;;;;;;;;20173:19;;:10;:19;;;20169:46;;20201:14;;;;;;;;;;;;;;20169:46;33719:30:::1;33734:5;33741:7;33719:14;:30::i;:::-;33599:158:::0;;:::o;24813:111::-;20187:5;;;;;;;;;;20173:19;;:10;:19;;;20169:46;;20201:14;;;;;;;;;;;;;;20169:46;24911:5:::1;24891:9;:17;24901:6;24891:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;24813:111:::0;;:::o;22979:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24996:193::-;25054:13;25088:8;:12;25097:2;25088:12;;;;;;;;;;;;;;;;;;;;;25080:20;;25134:1;25117:19;;:5;:19;;;25113:69;;25160:10;;;;;;;;;;;;;;25113:69;24996:193;;;:::o;23338:44::-;;;;;;;;;;;;;;;;;:::o;20100:20::-;;;;;;;;;;;;:::o;22716:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24183:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;26177:207::-;26304:8;26263:16;:28;26280:10;26263:28;;;;;;;;;;;;;;;:38;26292:8;26263:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;26357:8;26330:46;;26345:10;26330:46;;;26367:8;26330:46;;;;;;:::i;:::-;;;;;;;;26177:207;;:::o;28308:160::-;28403:4;28427:33;28437:10;28449:2;28453:6;28427:9;:33::i;:::-;28420:40;;28308:160;;;;:::o;29045:437::-;29199:26;29212:4;29218:2;29222;29199:12;:26::i;:::-;29274:1;29256:2;:14;;;:19;;:156;;;;;29372:40;;;29292:120;;;29307:2;29292:35;;;29328:10;29340:4;29346:2;29350:4;;29292:63;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:120;;;;;29256:156;29238:237;;;29446:17;;;;;;;;;;;;;;29238:237;29045:437;;;;;:::o;33179:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33765:319::-;33838:13;33864:28;33895:7;33864:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33964:1;33939:14;33933:28;:32;:143;;;;;;;;;;;;;;;;;34011:14;34027:25;34044:7;34027:16;:25::i;:::-;34054:13;33993:76;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33933:143;33913:163;;;33765:319;;;:::o;33146:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23230:23::-;;;;:::o;23452:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33485:106::-;20187:5;;;;;;;;;;20173:19;;:10;:19;;;20169:46;;20201:14;;;;;;;;;;;;;;20169:46;33574:9:::1;33559:12;:24;;;;;;:::i;:::-;;33485:106:::0;:::o;23683:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33026:113::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20432:219::-;20187:5;;;;;;;;;;20173:19;;:10;:19;;;20169:46;;20201:14;;;;;;;;;;;;;;20169:46;20533:1:::1;20515:20;;:6;:20;;::::0;20511:47:::1;;20544:14;;;;;;;;;;;;;;20511:47;20579:6;20571:5;::::0;:14:::1;;;;;;;;;;;;;;;;;;20636:6;20603:40;;20624:10;20603:40;;;;;;;;;;;;20432:219:::0;:::o;30682:92::-;30725:7;30758:8;30752:2;:14;;;;:::i;:::-;30745:21;;30682:92;:::o;29550:1093::-;29663:4;29680:12;29695:10;:8;:10::i;:::-;29680:25;;29716:27;29746:9;:15;29756:4;29746:15;;;;;;;;;;;;;;;;29716:45;;29772:29;29804:9;:13;29814:2;29804:13;;;;;;;;;;;;;;;;29772:45;;29849:6;29830:9;:15;29840:4;29830:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;29910:6;29893:9;:13;29903:2;29893:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;30001:9;:15;30011:4;30001:15;;;;;;;;;;;;;;;;;;;;;;;;;29996:251;;30033:22;30125:4;30107:9;:15;30117:4;30107:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;30081:4;30059:19;:26;;;;:::i;:::-;30058:72;;;;:::i;:::-;30033:97;;30150:9;30145:91;30169:14;30165:1;:18;30145:91;;;30209:11;30215:4;30209:5;:11::i;:::-;30185:3;;;;;;;30145:91;;;;30018:229;29996:251;30323:9;:13;30333:2;30323:13;;;;;;;;;;;;;;;;;;;;;;;;;30318:247;;30353:22;30445:4;30421:21;:28;;;;:::i;:::-;30395:4;30379:9;:13;30389:2;30379:13;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;30378:72;;;;:::i;:::-;30353:97;;30470:9;30465:89;30489:14;30485:1;:18;30465:89;;;30529:9;30535:2;30529:5;:9::i;:::-;30505:3;;;;;;;30465:89;;;;30338:227;30318:247;30602:2;30582:31;;30596:4;30582:31;;;30606:6;30582:31;;;;;;:::i;:::-;;;;;;;;30631:4;30624:11;;;;;29550:1093;;;;;:::o;31942:160::-;32062:5;32055:4;:12;;;;;;:::i;:::-;;32087:7;32078:6;:16;;;;;;:::i;:::-;;31942:160;;:::o;17366:718::-;17422:13;17473:14;17510:1;17490:17;17501:5;17490:10;:17::i;:::-;:21;17473:38;;17526:20;17560:6;17549:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17526:41;;17582:11;17711:6;17707:2;17703:15;17695:6;17691:28;17684:35;;17748:290;17755:4;17748:290;;;17780:5;;;;;;;;17922:10;17917:2;17910:5;17906:14;17901:32;17896:3;17888:46;17980:2;17971:11;;;;;;:::i;:::-;;;;;18014:1;18005:5;:10;17748:290;18001:21;17748:290;18059:6;18052:13;;;;;17366:718;;;:::o;31482:452::-;31559:1;31543:18;;:4;:18;;;31539:73;;31585:15;;;;;;;;;;;;;;31539:73;31624:10;31637:6;:12;31644:4;31637:12;;;;;;;;;;;;;;;31672:1;31650:6;:12;31657:4;31650:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;31637:37;;;;;;;;:::i;:::-;;;;;;;;;;31624:50;;31685:6;:12;31692:4;31685:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31721:11;:15;31733:2;31721:15;;;;;;;;;;;31714:22;;;31754:8;:12;31763:2;31754:12;;;;;;;;;;;;31747:19;;;;;;;;;;;31784:11;:15;31796:2;31784:15;;;;;;;;;;;;31777:22;;;;;;;;;;;31854:15;31875:2;31854:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31923:2;31919:1;31896:30;;31905:4;31896:30;;;;;;;;;;;;31528:406;31482:452;:::o;30782:692::-;30855:1;30841:16;;:2;:16;;;30837:74;;30881:18;;;;;;;;;;;;;;30837:74;30948:6;;:8;;;;;;;;;;;;;30980:10;30993:6;;30980:19;;31024:8;;31015:6;;:17;:47;;;;;31061:1;31036:15;:22;;;;:26;31015:47;31012:206;;;31078:17;31123:1;31098:15;:22;;;;:26;;;;:::i;:::-;31078:46;;31144:15;31160:9;31144:26;;;;;;;;:::i;:::-;;;;;;;;;;31139:31;;31185:15;:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31063:155;31012:206;31258:1;31234:26;;:8;:12;31243:2;31234:12;;;;;;;;;;;;;;;;;;;;;:26;;;31230:81;;31284:15;;;;;;;;;;;;;;31230:81;31338:2;31323:8;:12;31332:2;31323:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;31351:6;:10;31358:2;31351:10;;;;;;;;;;;;;;;31367:2;31351:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31419:1;31399:6;:10;31406:2;31399:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;31381:11;:15;31393:2;31381:15;;;;;;;;;;;:39;;;;31463:2;31459;31438:28;;31455:1;31438:28;;;;;;;;;;;;30826:648;30782:692;:::o;12556:948::-;12609:7;12629:14;12646:1;12629:18;;12696:8;12687:5;:17;12683:106;;12734:8;12725:17;;;;;;:::i;:::-;;;;;12771:2;12761:12;;;;12683:106;12816:8;12807:5;:17;12803:106;;12854:8;12845:17;;;;;;:::i;:::-;;;;;12891:2;12881:12;;;;12803:106;12936:8;12927:5;:17;12923:106;;12974:8;12965:17;;;;;;:::i;:::-;;;;;13011:2;13001:12;;;;12923:106;13056:7;13047:5;:16;13043:103;;13093:7;13084:16;;;;;;:::i;:::-;;;;;13129:1;13119:11;;;;13043:103;13173:7;13164:5;:16;13160:103;;13210:7;13201:16;;;;;;:::i;:::-;;;;;13246:1;13236:11;;;;13160:103;13290:7;13281:5;:16;13277:103;;13327:7;13318:16;;;;;;:::i;:::-;;;;;13363:1;13353:11;;;;13277:103;13407:7;13398:5;:16;13394:68;;13445:1;13435:11;;;;13394:68;13490:6;13483:13;;;12556:948;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:118::-;2688:24;2706:5;2688:24;:::i;:::-;2683:3;2676:37;2601:118;;:::o;2725:222::-;2818:4;2856:2;2845:9;2841:18;2833:26;;2869:71;2937:1;2926:9;2922:17;2913:6;2869:71;:::i;:::-;2725:222;;;;:::o;2953:122::-;3026:24;3044:5;3026:24;:::i;:::-;3019:5;3016:35;3006:63;;3065:1;3062;3055:12;3006:63;2953:122;:::o;3081:139::-;3127:5;3165:6;3152:20;3143:29;;3181:33;3208:5;3181:33;:::i;:::-;3081:139;;;;:::o;3226:474::-;3294:6;3302;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3226:474;;;;;:::o;3706:90::-;3740:7;3783:5;3776:13;3769:21;3758:32;;3706:90;;;:::o;3802:109::-;3883:21;3898:5;3883:21;:::i;:::-;3878:3;3871:34;3802:109;;:::o;3917:210::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:65;4117:1;4106:9;4102:17;4093:6;4055:65;:::i;:::-;3917:210;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:117::-;4594:1;4591;4584:12;4608:117;4717:1;4714;4707:12;4731:180;4779:77;4776:1;4769:88;4876:4;4873:1;4866:15;4900:4;4897:1;4890:15;4917:281;5000:27;5022:4;5000:27;:::i;:::-;4992:6;4988:40;5130:6;5118:10;5115:22;5094:18;5082:10;5079:34;5076:62;5073:88;;;5141:18;;:::i;:::-;5073:88;5181:10;5177:2;5170:22;4960:238;4917:281;;:::o;5204:129::-;5238:6;5265:20;;:::i;:::-;5255:30;;5294:33;5322:4;5314:6;5294:33;:::i;:::-;5204:129;;;:::o;5339:308::-;5401:4;5491:18;5483:6;5480:30;5477:56;;;5513:18;;:::i;:::-;5477:56;5551:29;5573:6;5551:29;:::i;:::-;5543:37;;5635:4;5629;5625:15;5617:23;;5339:308;;;:::o;5653:146::-;5750:6;5745:3;5740;5727:30;5791:1;5782:6;5777:3;5773:16;5766:27;5653:146;;;:::o;5805:425::-;5883:5;5908:66;5924:49;5966:6;5924:49;:::i;:::-;5908:66;:::i;:::-;5899:75;;5997:6;5990:5;5983:21;6035:4;6028:5;6024:16;6073:3;6064:6;6059:3;6055:16;6052:25;6049:112;;;6080:79;;:::i;:::-;6049:112;6170:54;6217:6;6212:3;6207;6170:54;:::i;:::-;5889:341;5805:425;;;;;:::o;6250:340::-;6306:5;6355:3;6348:4;6340:6;6336:17;6332:27;6322:122;;6363:79;;:::i;:::-;6322:122;6480:6;6467:20;6505:79;6580:3;6572:6;6565:4;6557:6;6553:17;6505:79;:::i;:::-;6496:88;;6312:278;6250:340;;;;:::o;6596:509::-;6665:6;6714:2;6702:9;6693:7;6689:23;6685:32;6682:119;;;6720:79;;:::i;:::-;6682:119;6868:1;6857:9;6853:17;6840:31;6898:18;6890:6;6887:30;6884:117;;;6920:79;;:::i;:::-;6884:117;7025:63;7080:7;7071:6;7060:9;7056:22;7025:63;:::i;:::-;7015:73;;6811:287;6596:509;;;;:::o;7111:619::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:53;7705:7;7696:6;7685:9;7681:22;7660:53;:::i;:::-;7650:63;;7605:118;7111:619;;;;;:::o;7736:86::-;7771:7;7811:4;7804:5;7800:16;7789:27;;7736:86;;;:::o;7828:112::-;7911:22;7927:5;7911:22;:::i;:::-;7906:3;7899:35;7828:112;;:::o;7946:214::-;8035:4;8073:2;8062:9;8058:18;8050:26;;8086:67;8150:1;8139:9;8135:17;8126:6;8086:67;:::i;:::-;7946:214;;;;:::o;8166:834::-;8254:6;8262;8311:2;8299:9;8290:7;8286:23;8282:32;8279:119;;;8317:79;;:::i;:::-;8279:119;8465:1;8454:9;8450:17;8437:31;8495:18;8487:6;8484:30;8481:117;;;8517:79;;:::i;:::-;8481:117;8622:63;8677:7;8668:6;8657:9;8653:22;8622:63;:::i;:::-;8612:73;;8408:287;8762:2;8751:9;8747:18;8734:32;8793:18;8785:6;8782:30;8779:117;;;8815:79;;:::i;:::-;8779:117;8920:63;8975:7;8966:6;8955:9;8951:22;8920:63;:::i;:::-;8910:73;;8705:288;8166:834;;;;;:::o;9006:116::-;9076:21;9091:5;9076:21;:::i;:::-;9069:5;9066:32;9056:60;;9112:1;9109;9102:12;9056:60;9006:116;:::o;9128:133::-;9171:5;9209:6;9196:20;9187:29;;9225:30;9249:5;9225:30;:::i;:::-;9128:133;;;;:::o;9267:468::-;9332:6;9340;9389:2;9377:9;9368:7;9364:23;9360:32;9357:119;;;9395:79;;:::i;:::-;9357:119;9515:1;9540:53;9585:7;9576:6;9565:9;9561:22;9540:53;:::i;:::-;9530:63;;9486:117;9642:2;9668:50;9710:7;9701:6;9690:9;9686:22;9668:50;:::i;:::-;9658:60;;9613:115;9267:468;;;;;:::o;9741:329::-;9800:6;9849:2;9837:9;9828:7;9824:23;9820:32;9817:119;;;9855:79;;:::i;:::-;9817:119;9975:1;10000:53;10045:7;10036:6;10025:9;10021:22;10000:53;:::i;:::-;9990:63;;9946:117;9741:329;;;;:::o;10076:117::-;10185:1;10182;10175:12;10199:117;10308:1;10305;10298:12;10335:552;10392:8;10402:6;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10573:6;10560:20;10550:30;;10603:18;10595:6;10592:30;10589:117;;;10625:79;;:::i;:::-;10589:117;10739:4;10731:6;10727:17;10715:29;;10793:3;10785:4;10777:6;10773:17;10763:8;10759:32;10756:41;10753:128;;;10800:79;;:::i;:::-;10753:128;10335:552;;;;;:::o;10893:963::-;10990:6;10998;11006;11014;11022;11071:3;11059:9;11050:7;11046:23;11042:33;11039:120;;;11078:79;;:::i;:::-;11039:120;11198:1;11223:53;11268:7;11259:6;11248:9;11244:22;11223:53;:::i;:::-;11213:63;;11169:117;11325:2;11351:53;11396:7;11387:6;11376:9;11372:22;11351:53;:::i;:::-;11341:63;;11296:118;11453:2;11479:53;11524:7;11515:6;11504:9;11500:22;11479:53;:::i;:::-;11469:63;;11424:118;11609:2;11598:9;11594:18;11581:32;11640:18;11632:6;11629:30;11626:117;;;11662:79;;:::i;:::-;11626:117;11775:64;11831:7;11822:6;11811:9;11807:22;11775:64;:::i;:::-;11757:82;;;;11552:297;10893:963;;;;;;;;:::o;11862:474::-;11930:6;11938;11987:2;11975:9;11966:7;11962:23;11958:32;11955:119;;;11993:79;;:::i;:::-;11955:119;12113:1;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12084:117;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;11862:474;;;;;:::o;12342:180::-;12390:77;12387:1;12380:88;12487:4;12484:1;12477:15;12511:4;12508:1;12501:15;12528:320;12572:6;12609:1;12603:4;12599:12;12589:22;;12656:1;12650:4;12646:12;12677:18;12667:81;;12733:4;12725:6;12721:17;12711:27;;12667:81;12795:2;12787:6;12784:14;12764:18;12761:38;12758:84;;12814:18;;:::i;:::-;12758:84;12579:269;12528:320;;;:::o;12854:141::-;12903:4;12926:3;12918:11;;12949:3;12946:1;12939:14;12983:4;12980:1;12970:18;12962:26;;12854:141;;;:::o;13001:93::-;13038:6;13085:2;13080;13073:5;13069:14;13065:23;13055:33;;13001:93;;;:::o;13100:107::-;13144:8;13194:5;13188:4;13184:16;13163:37;;13100:107;;;;:::o;13213:393::-;13282:6;13332:1;13320:10;13316:18;13355:97;13385:66;13374:9;13355:97;:::i;:::-;13473:39;13503:8;13492:9;13473:39;:::i;:::-;13461:51;;13545:4;13541:9;13534:5;13530:21;13521:30;;13594:4;13584:8;13580:19;13573:5;13570:30;13560:40;;13289:317;;13213:393;;;;;:::o;13612:60::-;13640:3;13661:5;13654:12;;13612:60;;;:::o;13678:142::-;13728:9;13761:53;13779:34;13788:24;13806:5;13788:24;:::i;:::-;13779:34;:::i;:::-;13761:53;:::i;:::-;13748:66;;13678:142;;;:::o;13826:75::-;13869:3;13890:5;13883:12;;13826:75;;;:::o;13907:269::-;14017:39;14048:7;14017:39;:::i;:::-;14078:91;14127:41;14151:16;14127:41;:::i;:::-;14119:6;14112:4;14106:11;14078:91;:::i;:::-;14072:4;14065:105;13983:193;13907:269;;;:::o;14182:73::-;14227:3;14182:73;:::o;14261:189::-;14338:32;;:::i;:::-;14379:65;14437:6;14429;14423:4;14379:65;:::i;:::-;14314:136;14261:189;;:::o;14456:186::-;14516:120;14533:3;14526:5;14523:14;14516:120;;;14587:39;14624:1;14617:5;14587:39;:::i;:::-;14560:1;14553:5;14549:13;14540:22;;14516:120;;;14456:186;;:::o;14648:543::-;14749:2;14744:3;14741:11;14738:446;;;14783:38;14815:5;14783:38;:::i;:::-;14867:29;14885:10;14867:29;:::i;:::-;14857:8;14853:44;15050:2;15038:10;15035:18;15032:49;;;15071:8;15056:23;;15032:49;15094:80;15150:22;15168:3;15150:22;:::i;:::-;15140:8;15136:37;15123:11;15094:80;:::i;:::-;14753:431;;14738:446;14648:543;;;:::o;15197:117::-;15251:8;15301:5;15295:4;15291:16;15270:37;;15197:117;;;;:::o;15320:169::-;15364:6;15397:51;15445:1;15441:6;15433:5;15430:1;15426:13;15397:51;:::i;:::-;15393:56;15478:4;15472;15468:15;15458:25;;15371:118;15320:169;;;;:::o;15494:295::-;15570:4;15716:29;15741:3;15735:4;15716:29;:::i;:::-;15708:37;;15778:3;15775:1;15771:11;15765:4;15762:21;15754:29;;15494:295;;;;:::o;15794:1395::-;15911:37;15944:3;15911:37;:::i;:::-;16013:18;16005:6;16002:30;15999:56;;;16035:18;;:::i;:::-;15999:56;16079:38;16111:4;16105:11;16079:38;:::i;:::-;16164:67;16224:6;16216;16210:4;16164:67;:::i;:::-;16258:1;16282:4;16269:17;;16314:2;16306:6;16303:14;16331:1;16326:618;;;;16988:1;17005:6;17002:77;;;17054:9;17049:3;17045:19;17039:26;17030:35;;17002:77;17105:67;17165:6;17158:5;17105:67;:::i;:::-;17099:4;17092:81;16961:222;16296:887;;16326:618;16378:4;16374:9;16366:6;16362:22;16412:37;16444:4;16412:37;:::i;:::-;16471:1;16485:208;16499:7;16496:1;16493:14;16485:208;;;16578:9;16573:3;16569:19;16563:26;16555:6;16548:42;16629:1;16621:6;16617:14;16607:24;;16676:2;16665:9;16661:18;16648:31;;16522:4;16519:1;16515:12;16510:17;;16485:208;;;16721:6;16712:7;16709:19;16706:179;;;16779:9;16774:3;16770:19;16764:26;16822:48;16864:4;16856:6;16852:17;16841:9;16822:48;:::i;:::-;16814:6;16807:64;16729:156;16706:179;16931:1;16927;16919:6;16915:14;16911:22;16905:4;16898:36;16333:611;;;16296:887;;15886:1303;;;15794:1395;;:::o;17195:180::-;17243:77;17240:1;17233:88;17340:4;17337:1;17330:15;17364:4;17361:1;17354:15;17381:194;17421:4;17441:20;17459:1;17441:20;:::i;:::-;17436:25;;17475:20;17493:1;17475:20;:::i;:::-;17470:25;;17519:1;17516;17512:9;17504:17;;17543:1;17537:4;17534:11;17531:37;;;17548:18;;:::i;:::-;17531:37;17381:194;;;;:::o;17581:180::-;17629:77;17626:1;17619:88;17726:4;17723:1;17716:15;17750:4;17747:1;17740:15;17767:180;17815:77;17812:1;17805:88;17912:4;17909:1;17902:15;17936:4;17933:1;17926:15;17953:168;18036:11;18070:6;18065:3;18058:19;18110:4;18105:3;18101:14;18086:29;;17953:168;;;;:::o;18127:114::-;;:::o;18247:362::-;18388:3;18409:65;18472:1;18467:3;18409:65;:::i;:::-;18402:72;;18483:93;18572:3;18483:93;:::i;:::-;18601:1;18596:3;18592:11;18585:18;;18247:362;;;:::o;18615:748::-;18864:4;18902:3;18891:9;18887:19;18879:27;;18916:71;18984:1;18973:9;18969:17;18960:6;18916:71;:::i;:::-;18997:72;19065:2;19054:9;19050:18;19041:6;18997:72;:::i;:::-;19079;19147:2;19136:9;19132:18;19123:6;19079:72;:::i;:::-;19198:9;19192:4;19188:20;19183:2;19172:9;19168:18;19161:48;19226:130;19351:4;19226:130;:::i;:::-;19218:138;;18615:748;;;;;;:::o;19369:149::-;19405:7;19445:66;19438:5;19434:78;19423:89;;19369:149;;;:::o;19524:120::-;19596:23;19613:5;19596:23;:::i;:::-;19589:5;19586:34;19576:62;;19634:1;19631;19624:12;19576:62;19524:120;:::o;19650:141::-;19706:5;19737:6;19731:13;19722:22;;19753:32;19779:5;19753:32;:::i;:::-;19650:141;;;;:::o;19797:349::-;19866:6;19915:2;19903:9;19894:7;19890:23;19886:32;19883:119;;;19921:79;;:::i;:::-;19883:119;20041:1;20066:63;20121:7;20112:6;20101:9;20097:22;20066:63;:::i;:::-;20056:73;;20012:127;19797:349;;;;:::o;20174:314::-;20270:3;20291:70;20354:6;20349:3;20291:70;:::i;:::-;20284:77;;20371:56;20420:6;20415:3;20408:5;20371:56;:::i;:::-;20452:29;20474:6;20452:29;:::i;:::-;20447:3;20443:39;20436:46;;20174:314;;;;;:::o;20494:660::-;20699:4;20737:3;20726:9;20722:19;20714:27;;20751:71;20819:1;20808:9;20804:17;20795:6;20751:71;:::i;:::-;20832:72;20900:2;20889:9;20885:18;20876:6;20832:72;:::i;:::-;20914;20982:2;20971:9;20967:18;20958:6;20914:72;:::i;:::-;21033:9;21027:4;21023:20;21018:2;21007:9;21003:18;20996:48;21061:86;21142:4;21133:6;21125;21061:86;:::i;:::-;21053:94;;20494:660;;;;;;;;:::o;21160:148::-;21262:11;21299:3;21284:18;;21160:148;;;;:::o;21314:390::-;21420:3;21448:39;21481:5;21448:39;:::i;:::-;21503:89;21585:6;21580:3;21503:89;:::i;:::-;21496:96;;21601:65;21659:6;21654:3;21647:4;21640:5;21636:16;21601:65;:::i;:::-;21691:6;21686:3;21682:16;21675:23;;21424:280;21314:390;;;;:::o;21734:874::-;21837:3;21874:5;21868:12;21903:36;21929:9;21903:36;:::i;:::-;21955:89;22037:6;22032:3;21955:89;:::i;:::-;21948:96;;22075:1;22064:9;22060:17;22091:1;22086:166;;;;22266:1;22261:341;;;;22053:549;;22086:166;22170:4;22166:9;22155;22151:25;22146:3;22139:38;22232:6;22225:14;22218:22;22210:6;22206:35;22201:3;22197:45;22190:52;;22086:166;;22261:341;22328:38;22360:5;22328:38;:::i;:::-;22388:1;22402:154;22416:6;22413:1;22410:13;22402:154;;;22490:7;22484:14;22480:1;22475:3;22471:11;22464:35;22540:1;22531:7;22527:15;22516:26;;22438:4;22435:1;22431:12;22426:17;;22402:154;;;22585:6;22580:3;22576:16;22569:23;;22268:334;;22053:549;;21841:767;;21734:874;;;;:::o;22614:589::-;22839:3;22861:95;22952:3;22943:6;22861:95;:::i;:::-;22854:102;;22973:95;23064:3;23055:6;22973:95;:::i;:::-;22966:102;;23085:92;23173:3;23164:6;23085:92;:::i;:::-;23078:99;;23194:3;23187:10;;22614:589;;;;;;:::o;23209:102::-;23251:8;23298:5;23295:1;23291:13;23270:34;;23209:102;;;:::o;23317:848::-;23378:5;23385:4;23409:6;23400:15;;23433:5;23424:14;;23447:712;23468:1;23458:8;23455:15;23447:712;;;23563:4;23558:3;23554:14;23548:4;23545:24;23542:50;;;23572:18;;:::i;:::-;23542:50;23622:1;23612:8;23608:16;23605:451;;;24037:4;24030:5;24026:16;24017:25;;23605:451;24087:4;24081;24077:15;24069:23;;24117:32;24140:8;24117:32;:::i;:::-;24105:44;;23447:712;;;23317:848;;;;;;;:::o;24171:1073::-;24225:5;24416:8;24406:40;;24437:1;24428:10;;24439:5;;24406:40;24465:4;24455:36;;24482:1;24473:10;;24484:5;;24455:36;24551:4;24599:1;24594:27;;;;24635:1;24630:191;;;;24544:277;;24594:27;24612:1;24603:10;;24614:5;;;24630:191;24675:3;24665:8;24662:17;24659:43;;;24682:18;;:::i;:::-;24659:43;24731:8;24728:1;24724:16;24715:25;;24766:3;24759:5;24756:14;24753:40;;;24773:18;;:::i;:::-;24753:40;24806:5;;;24544:277;;24930:2;24920:8;24917:16;24911:3;24905:4;24902:13;24898:36;24880:2;24870:8;24867:16;24862:2;24856:4;24853:12;24849:35;24833:111;24830:246;;;24986:8;24980:4;24976:19;24967:28;;25021:3;25014:5;25011:14;25008:40;;;25028:18;;:::i;:::-;25008:40;25061:5;;24830:246;25101:42;25139:3;25129:8;25123:4;25120:1;25101:42;:::i;:::-;25086:57;;;;25175:4;25170:3;25166:14;25159:5;25156:25;25153:51;;;25184:18;;:::i;:::-;25153:51;25233:4;25226:5;25222:16;25213:25;;24171:1073;;;;;;:::o;25250:281::-;25308:5;25332:23;25350:4;25332:23;:::i;:::-;25324:31;;25376:25;25392:8;25376:25;:::i;:::-;25364:37;;25420:104;25457:66;25447:8;25441:4;25420:104;:::i;:::-;25411:113;;25250:281;;;;:::o;25537:180::-;25585:77;25582:1;25575:88;25682:4;25679:1;25672:15;25706:4;25703:1;25696:15;25723:185;25763:1;25780:20;25798:1;25780:20;:::i;:::-;25775:25;;25814:20;25832:1;25814:20;:::i;:::-;25809:25;;25853:1;25843:35;;25858:18;;:::i;:::-;25843:35;25900:1;25897;25893:9;25888:14;;25723:185;;;;:::o
Swarm Source
ipfs://1b2a72aa9f97e07296d537c6222fe14501f4bc78d87ba70df28c11c54a877e5a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.