Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 78 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19184737 | 318 days ago | IN | 0 ETH | 0.00364299 | ||||
Approve | 19184343 | 318 days ago | IN | 0 ETH | 0.00316184 | ||||
Approve | 19184338 | 318 days ago | IN | 0 ETH | 0.00391025 | ||||
Approve | 19184337 | 318 days ago | IN | 0 ETH | 0.00380503 | ||||
Approve | 19184336 | 318 days ago | IN | 0 ETH | 0.00382667 | ||||
Approve | 19184335 | 318 days ago | IN | 0 ETH | 0.00369161 | ||||
Approve | 19184334 | 318 days ago | IN | 0 ETH | 0.00385318 | ||||
Approve | 19184334 | 318 days ago | IN | 0 ETH | 0.00395632 | ||||
Approve | 19184332 | 318 days ago | IN | 0 ETH | 0.00378346 | ||||
Approve | 19184332 | 318 days ago | IN | 0 ETH | 0.00393574 | ||||
Approve | 19184330 | 318 days ago | IN | 0 ETH | 0.00382736 | ||||
Approve | 19184328 | 318 days ago | IN | 0 ETH | 0.00401296 | ||||
Approve | 19184328 | 318 days ago | IN | 0 ETH | 0.00416061 | ||||
Approve | 19184328 | 318 days ago | IN | 0 ETH | 0.00416061 | ||||
Approve | 19184326 | 318 days ago | IN | 0 ETH | 0.00425304 | ||||
Approve | 19184324 | 318 days ago | IN | 0 ETH | 0.0040105 | ||||
Approve | 19184324 | 318 days ago | IN | 0 ETH | 0.00403017 | ||||
Approve | 19184324 | 318 days ago | IN | 0 ETH | 0.00725887 | ||||
Approve | 19184323 | 318 days ago | IN | 0 ETH | 0.0039421 | ||||
Approve | 19184322 | 318 days ago | IN | 0 ETH | 0.00409702 | ||||
Approve | 19184322 | 318 days ago | IN | 0 ETH | 0.00420046 | ||||
Approve | 19184322 | 318 days ago | IN | 0 ETH | 0.00420046 | ||||
Approve | 19184322 | 318 days ago | IN | 0 ETH | 0.00420046 | ||||
Approve | 19184322 | 318 days ago | IN | 0 ETH | 0.00444655 | ||||
Approve | 19184320 | 318 days ago | IN | 0 ETH | 0.00428797 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Penguins404
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity Multiple files format)
// TG: https://t.me/Penguins404 // Twitter: https://x.com/penguinserc404 // Website: https://penguinsrulethe.world //SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import ".//ERC404.sol"; import ".//Strings.sol"; contract Penguins404 is ERC404 { string public dataURI; string public baseTokenURI; constructor( address _owner ) ERC404("Penguins404", "PENGUINS404", 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 id) public view override returns (string memory) { if (bytes(baseTokenURI).length > 0) { return string.concat(baseTokenURI, Strings.toString(id)); } else { uint8 seed = uint8(bytes1(keccak256(abi.encodePacked(id)))); string memory image; string memory color; if (seed <= 100) { image = "1.gif"; color = "Green"; } else if (seed <= 160) { image = "2.gif"; color = "Blue"; } else if (seed <= 210) { image = "3.gif"; color = "Purple"; } else if (seed <= 240) { image = "4.gif"; color = "Orange"; } else if (seed <= 255) { image = "5.gif"; color = "Red"; } string memory jsonPreImage = string.concat( string.concat( string.concat('{"name": "Pandora #', Strings.toString(id)), '","description":"A collection of 10,000 Replicants enabled by ERC404, an experimental token standard.","external_url":"https://pandora.build","image":"' ), string.concat(dataURI, image) ); string memory jsonPostImage = string.concat( '","attributes":[{"trait_type":"Color","value":"', color ); string memory jsonPostTraits = '"}]}'; return string.concat( "data:application/json;utf8,", string.concat( string.concat(jsonPreImage, jsonPostImage), jsonPostTraits ) ); } } }
//SPDX-License-Identifier: UNLICENSED 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; /// @dev Current mint counter, monotonically increasing to ensure accurate ownership uint256 public minted; // 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; symbol = _symbol; decimals = _decimals; totalSupply = _totalNativeSupply * (10 ** decimals); } /// @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 (_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]; emit Transfer(from, address(0), id); } function _setNameSymbol( string memory _name, string memory _symbol ) internal { name = _name; symbol = _symbol; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) 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; } }
// SPDX-License-Identifier: MIT // 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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from ".//Math.sol"; import {SignedMath} from ".//SignedMath.sol"; /** * @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)); } }
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":"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":"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":"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":"id","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
60c060405234801562000010575f80fd5b50604051620044d2380380620044d28339818101604052810190620000369190620002bb565b6040518060400160405280600b81526020017f50656e6775696e733430340000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f50454e4755494e533430340000000000000000000000000000000000000000008152506012606484805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200010e576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508460019081620001b991906200054f565b508360029081620001cb91906200054f565b508260ff1660808160ff1681525050608051600a620001eb9190620007bc565b82620001f891906200080c565b60a08181525050505050505068056bc75e2d6310000060045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505062000856565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000285826200025a565b9050919050565b620002978162000279565b8114620002a2575f80fd5b50565b5f81519050620002b5816200028c565b92915050565b5f60208284031215620002d357620002d262000256565b5b5f620002e284828501620002a5565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200036757607f821691505b6020821081036200037d576200037c62000322565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003a4565b620003ed8683620003a4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000437620004316200042b8462000405565b6200040e565b62000405565b9050919050565b5f819050919050565b620004528362000417565b6200046a62000461826200043e565b848454620003b0565b825550505050565b5f90565b6200048062000472565b6200048d81848462000447565b505050565b5b81811015620004b457620004a85f8262000476565b60018101905062000493565b5050565b601f8211156200050357620004cd8162000383565b620004d88462000395565b81016020851015620004e8578190505b62000500620004f78562000395565b83018262000492565b50505b505050565b5f82821c905092915050565b5f620005255f198460080262000508565b1980831691505092915050565b5f6200053f838362000514565b9150826002028217905092915050565b6200055a82620002eb565b67ffffffffffffffff811115620005765762000575620002f5565b5b6200058282546200034f565b6200058f828285620004b8565b5f60209050601f831160018114620005c5575f8415620005b0578287015190505b620005bc858262000532565b8655506200062b565b601f198416620005d58662000383565b5f5b82811015620005fe57848901518255600182019150602085019450602081019050620005d7565b868310156200061e57848901516200061a601f89168262000514565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006bd5780860481111562000695576200069462000633565b5b6001851615620006a55780820291505b8081029050620006b58562000660565b945062000675565b94509492505050565b5f82620006d75760019050620007a9565b81620006e6575f9050620007a9565b8160018114620006ff57600281146200070a5762000740565b6001915050620007a9565b60ff8411156200071f576200071e62000633565b5b8360020a91508482111562000739576200073862000633565b5b50620007a9565b5060208310610133831016604e8410600b84101617156200077a5782820a90508381111562000774576200077362000633565b5b620007a9565b6200078984848460016200066c565b92509050818404811115620007a357620007a262000633565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007c88262000405565b9150620007d583620007b0565b9250620008047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006c6565b905092915050565b5f620008188262000405565b9150620008258362000405565b9250828202620008358162000405565b915082820484148315176200084f576200084e62000633565b5b5092915050565b60805160a051613c536200087f5f395f6108f601525f81816112c701526121200152613c535ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612c24565b60405180910390f35b6101e360048036038101906101de9190612c88565b6105dd565b6040516101f09190612cf2565b60405180910390f35b610213600480360381019061020e9190612d35565b61060d565b6040516102209190612d8d565b60405180910390f35b6102316108f4565b60405161023e9190612db5565b60405180910390f35b610261600480360381019061025c9190612efa565b610918565b005b61027d60048036038101906102789190612f41565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e9190612fac565b60405180910390f35b6102c160048036038101906102bc9190612f41565b6112e9565b005b6102cb611418565b6040516102d89190612db5565b60405180910390f35b6102fb60048036038101906102f69190612fc5565b61141e565b005b61031760048036038101906103129190613065565b6114b0565b005b610333600480360381019061032e9190612c88565b61158c565b6040516103409190612cf2565b60405180910390f35b610363600480360381019061035e91906130a3565b61162a565b6040516103709190612db5565b60405180910390f35b61038161163f565b60405161038e9190612cf2565b60405180910390f35b61039f611662565b6040516103ac9190612c24565b60405180910390f35b6103cf60048036038101906103ca91906130a3565b6116ee565b6040516103dc9190612d8d565b60405180910390f35b6103ff60048036038101906103fa9190613065565b61170b565b005b61041b60048036038101906104169190612d35565b611803565b6040516104289190612d8d565b60405180910390f35b61044b6004803603810190610446919061312b565b611817565b005b61046760048036038101906104629190612c88565b61194c565b6040516104749190612c24565b60405180910390f35b610485611d9f565b6040516104929190612c24565b60405180910390f35b6104b560048036038101906104b091906131af565b611e2b565b6040516104c29190612db5565b60405180910390f35b6104e560048036038101906104e09190612efa565b611e4b565b005b61050160048036038101906104fc91906131af565b611ee2565b60405161050e9190612d8d565b60405180910390f35b61051f611f0c565b60405161052c9190612c24565b60405180910390f35b61054f600480360381019061054a91906130a3565b611f98565b005b6001805461055e9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061321a565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612db5565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612db5565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab91906133e7565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761211d565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c6291906134e3565b92505081905550610c7161211d565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc791906134e3565b81548110610dd857610dd7613516565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613516565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c613543565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f8591906134e3565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61211d565b6040516110599190612db5565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119357818161111691906134e3565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e848484612150565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a939291906135a3565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612494565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061321a565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612d8d565b60405180910390a35050565b5f61180f338484612150565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613697565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061321a565b9050111561199657600d61196f836124b8565b60405160200161198092919061379d565b6040516020818303038152906040529050611d9a565b5f826040516020016119a891906137e0565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600581526020017f312e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600581526020017f477265656e0000000000000000000000000000000000000000000000000000008152509050611c46565b60a08360ff1611611ac6576040518060400160405280600581526020017f322e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152509050611c45565b60d28360ff1611611b46576040518060400160405280600581526020017f332e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f507572706c6500000000000000000000000000000000000000000000000000008152509050611c44565b60f08360ff1611611bc6576040518060400160405280600581526020017f342e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f4f72616e676500000000000000000000000000000000000000000000000000008152509050611c43565b60ff8360ff1611611c42576040518060400160405280600581526020017f352e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b5f611c50866124b8565b604051602001611c609190613820565b604051602081830303815290604052604051602001611c7f9190613927565b604051602081830303815290604052600c84604051602001611ca292919061379d565b604051602081830303815290604052604051602001611cc2929190613948565b60405160208183030381529060405290505f82604051602001611ce591906139db565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611d42929190613948565b60405160208183030381529060405281604051602001611d63929190613948565b604051602081830303815290604052604051602001611d829190613a22565b60405160208183030381529060405296505050505050505b919050565b600d8054611dac9061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd89061321a565b8015611e235780601f10611dfa57610100808354040283529160200191611e23565b820191905f5260205f20905b815481529060010190602001808311611e0657829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ecf576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611ede91906133e7565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f199061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f459061321a565b8015611f905780601f10611f6757610100808354040283529160200191611f90565b820191905f5260205f20905b815481529060010190602001808311611f7357829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461201c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612081576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a61214b9190613b76565b905090565b5f8061215a61211d565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461222a91906134e3565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661234e575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123139190613bed565b848461231f9190613bed565b61232991906134e3565b90505f5b8181101561234b5761233e89612582565b808060010191505061232d565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612421575f83826123a99190613bed565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123f29190613bed565b6123fc91906134e3565b90505f5b8181101561241e57612411886127c7565b8080600101915050612400565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161247e9190612db5565b60405180910390a3600193505050509392505050565b81600190816124a391906133e7565b5080600290816124b391906133e7565b505050565b60605f60016124c684612a49565b0190505f8167ffffffffffffffff8111156124e4576124e3612dd6565b5b6040519080825280601f01601f1916602001820160405280156125165781602001600182028036833780820191505090505b5090505f82602001820190505b600115612577578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256c5761256b613bc0565b5b0494505f8503612523575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125e7576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061267291906134e3565b8154811061268357612682613516565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806126db576126da613543565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361282c576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d8576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506129d591906134e3565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612aa5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a9b57612a9a613bc0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612ae2576d04ee2d6d415b85acef81000000008381612ad857612ad7613bc0565b5b0492506020810190505b662386f26fc100008310612b1157662386f26fc100008381612b0757612b06613bc0565b5b0492506010810190505b6305f5e1008310612b3a576305f5e1008381612b3057612b2f613bc0565b5b0492506008810190505b6127108310612b5f576127108381612b5557612b54613bc0565b5b0492506004810190505b60648310612b825760648381612b7857612b77613bc0565b5b0492506002810190505b600a8310612b91576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612bd1578082015181840152602081019050612bb6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612bf682612b9a565b612c008185612ba4565b9350612c10818560208601612bb4565b612c1981612bdc565b840191505092915050565b5f6020820190508181035f830152612c3c8184612bec565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612c6781612c55565b8114612c71575f80fd5b50565b5f81359050612c8281612c5e565b92915050565b5f60208284031215612c9d57612c9c612c4d565b5b5f612caa84828501612c74565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612cdc82612cb3565b9050919050565b612cec81612cd2565b82525050565b5f602082019050612d055f830184612ce3565b92915050565b612d1481612cd2565b8114612d1e575f80fd5b50565b5f81359050612d2f81612d0b565b92915050565b5f8060408385031215612d4b57612d4a612c4d565b5b5f612d5885828601612d21565b9250506020612d6985828601612c74565b9150509250929050565b5f8115159050919050565b612d8781612d73565b82525050565b5f602082019050612da05f830184612d7e565b92915050565b612daf81612c55565b82525050565b5f602082019050612dc85f830184612da6565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e0c82612bdc565b810181811067ffffffffffffffff82111715612e2b57612e2a612dd6565b5b80604052505050565b5f612e3d612c44565b9050612e498282612e03565b919050565b5f67ffffffffffffffff821115612e6857612e67612dd6565b5b612e7182612bdc565b9050602081019050919050565b828183375f83830152505050565b5f612e9e612e9984612e4e565b612e34565b905082815260208101848484011115612eba57612eb9612dd2565b5b612ec5848285612e7e565b509392505050565b5f82601f830112612ee157612ee0612dce565b5b8135612ef1848260208601612e8c565b91505092915050565b5f60208284031215612f0f57612f0e612c4d565b5b5f82013567ffffffffffffffff811115612f2c57612f2b612c51565b5b612f3884828501612ecd565b91505092915050565b5f805f60608486031215612f5857612f57612c4d565b5b5f612f6586828701612d21565b9350506020612f7686828701612d21565b9250506040612f8786828701612c74565b9150509250925092565b5f60ff82169050919050565b612fa681612f91565b82525050565b5f602082019050612fbf5f830184612f9d565b92915050565b5f8060408385031215612fdb57612fda612c4d565b5b5f83013567ffffffffffffffff811115612ff857612ff7612c51565b5b61300485828601612ecd565b925050602083013567ffffffffffffffff81111561302557613024612c51565b5b61303185828601612ecd565b9150509250929050565b61304481612d73565b811461304e575f80fd5b50565b5f8135905061305f8161303b565b92915050565b5f806040838503121561307b5761307a612c4d565b5b5f61308885828601612d21565b925050602061309985828601613051565b9150509250929050565b5f602082840312156130b8576130b7612c4d565b5b5f6130c584828501612d21565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126130eb576130ea612dce565b5b8235905067ffffffffffffffff811115613108576131076130ce565b5b602083019150836001820283011115613124576131236130d2565b5b9250929050565b5f805f805f6080868803121561314457613143612c4d565b5b5f61315188828901612d21565b955050602061316288828901612d21565b945050604061317388828901612c74565b935050606086013567ffffffffffffffff81111561319457613193612c51565b5b6131a0888289016130d6565b92509250509295509295909350565b5f80604083850312156131c5576131c4612c4d565b5b5f6131d285828601612d21565b92505060206131e385828601612d21565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061323157607f821691505b602082108103613244576132436131ed565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026132a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261326b565b6132b0868361326b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6132eb6132e66132e184612c55565b6132c8565b612c55565b9050919050565b5f819050919050565b613304836132d1565b613318613310826132f2565b848454613277565b825550505050565b5f90565b61332c613320565b6133378184846132fb565b505050565b5b8181101561335a5761334f5f82613324565b60018101905061333d565b5050565b601f82111561339f576133708161324a565b6133798461325c565b81016020851015613388578190505b61339c6133948561325c565b83018261333c565b50505b505050565b5f82821c905092915050565b5f6133bf5f19846008026133a4565b1980831691505092915050565b5f6133d783836133b0565b9150826002028217905092915050565b6133f082612b9a565b67ffffffffffffffff81111561340957613408612dd6565b5b613413825461321a565b61341e82828561335e565b5f60209050601f83116001811461344f575f841561343d578287015190505b61344785826133cc565b8655506134ae565b601f19841661345d8661324a565b5f5b828110156134845784890151825560018201915060208501945060208101905061345f565b868310156134a1578489015161349d601f8916826133b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6134ed82612c55565b91506134f883612c55565b92508282039050818111156135105761350f6134b6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61358e5f83613570565b915061359982613580565b5f82019050919050565b5f6080820190506135b65f830186612ce3565b6135c36020830185612ce3565b6135d06040830184612da6565b81810360608301526135e181613583565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61361f816135eb565b8114613629575f80fd5b50565b5f8151905061363a81613616565b92915050565b5f6020828403121561365557613654612c4d565b5b5f6136628482850161362c565b91505092915050565b5f6136768385613570565b9350613683838584612e7e565b61368c83612bdc565b840190509392505050565b5f6080820190506136aa5f830188612ce3565b6136b76020830187612ce3565b6136c46040830186612da6565b81810360608301526136d781848661366b565b90509695505050505050565b5f81905092915050565b5f81546136f98161321a565b61370381866136e3565b9450600182165f811461371d576001811461373257613764565b60ff1983168652811515820286019350613764565b61373b8561324a565b5f5b8381101561375c5781548189015260018201915060208101905061373d565b838801955050505b50505092915050565b5f61377782612b9a565b61378181856136e3565b9350613791818560208601612bb4565b80840191505092915050565b5f6137a882856136ed565b91506137b4828461376d565b91508190509392505050565b5f819050919050565b6137da6137d582612c55565b6137c0565b82525050565b5f6137eb82846137c9565b60208201915081905092915050565b7f7b226e616d65223a202250616e646f7261202300000000000000000000000000815250565b5f61382a826137fa565b60138201915061383a828461376d565b915081905092915050565b7f222c226465736372697074696f6e223a224120636f6c6c656374696f6e206f665f8201527f2031302c303030205265706c6963616e747320656e61626c656420627920455260208201527f433430342c20616e206578706572696d656e74616c20746f6b656e207374616e60408201527f646172642e222c2265787465726e616c5f75726c223a2268747470733a2f2f7060608201527f616e646f72612e6275696c64222c22696d616765223a22000000000000000000608082015250565b5f6139116097836136e3565b915061391c82613845565b609782019050919050565b5f613932828461376d565b915061393d82613905565b915081905092915050565b5f613953828561376d565b915061395f828461376d565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a22435f8201527f6f6c6f72222c2276616c7565223a220000000000000000000000000000000000602082015250565b5f6139c5602f836136e3565b91506139d08261396b565b602f82019050919050565b5f6139e5826139b9565b91506139f1828461376d565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a2c826139fc565b601b82019150613a3c828461376d565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613a9c57808604811115613a7857613a776134b6565b5b6001851615613a875780820291505b8081029050613a9585613a47565b9450613a5c565b94509492505050565b5f82613ab45760019050613b6f565b81613ac1575f9050613b6f565b8160018114613ad75760028114613ae157613b10565b6001915050613b6f565b60ff841115613af357613af26134b6565b5b8360020a915084821115613b0a57613b096134b6565b5b50613b6f565b5060208310610133831016604e8410600b8410161715613b455782820a905083811115613b4057613b3f6134b6565b5b613b6f565b613b528484846001613a53565b92509050818404811115613b6957613b686134b6565b5b81810290505b9392505050565b5f613b8082612c55565b9150613b8b83612f91565b9250613bb87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613aa5565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613bf782612c55565b9150613c0283612c55565b925082613c1257613c11613bc0565b5b82820490509291505056fea264697066735822122067cb4bede1e8f1e21d61966ff2b827ee20300061bdb042ae3ef2a15a287b0d2764736f6c634300081800330000000000000000000000002ccebb1cff2099cebe54e3cf1b3847d236dbfe84
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612c24565b60405180910390f35b6101e360048036038101906101de9190612c88565b6105dd565b6040516101f09190612cf2565b60405180910390f35b610213600480360381019061020e9190612d35565b61060d565b6040516102209190612d8d565b60405180910390f35b6102316108f4565b60405161023e9190612db5565b60405180910390f35b610261600480360381019061025c9190612efa565b610918565b005b61027d60048036038101906102789190612f41565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e9190612fac565b60405180910390f35b6102c160048036038101906102bc9190612f41565b6112e9565b005b6102cb611418565b6040516102d89190612db5565b60405180910390f35b6102fb60048036038101906102f69190612fc5565b61141e565b005b61031760048036038101906103129190613065565b6114b0565b005b610333600480360381019061032e9190612c88565b61158c565b6040516103409190612cf2565b60405180910390f35b610363600480360381019061035e91906130a3565b61162a565b6040516103709190612db5565b60405180910390f35b61038161163f565b60405161038e9190612cf2565b60405180910390f35b61039f611662565b6040516103ac9190612c24565b60405180910390f35b6103cf60048036038101906103ca91906130a3565b6116ee565b6040516103dc9190612d8d565b60405180910390f35b6103ff60048036038101906103fa9190613065565b61170b565b005b61041b60048036038101906104169190612d35565b611803565b6040516104289190612d8d565b60405180910390f35b61044b6004803603810190610446919061312b565b611817565b005b61046760048036038101906104629190612c88565b61194c565b6040516104749190612c24565b60405180910390f35b610485611d9f565b6040516104929190612c24565b60405180910390f35b6104b560048036038101906104b091906131af565b611e2b565b6040516104c29190612db5565b60405180910390f35b6104e560048036038101906104e09190612efa565b611e4b565b005b61050160048036038101906104fc91906131af565b611ee2565b60405161050e9190612d8d565b60405180910390f35b61051f611f0c565b60405161052c9190612c24565b60405180910390f35b61054f600480360381019061054a91906130a3565b611f98565b005b6001805461055e9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061321a565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612db5565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612db5565b60405180910390a35b6001905092915050565b7f0000000000000000000000000000000000000000000000056bc75e2d6310000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab91906133e7565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761211d565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c6291906134e3565b92505081905550610c7161211d565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc791906134e3565b81548110610dd857610dd7613516565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613516565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c613543565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f8591906134e3565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61211d565b6040516110599190612db5565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119357818161111691906134e3565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e848484612150565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000001281565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a939291906135a3565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612494565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061321a565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612d8d565b60405180910390a35050565b5f61180f338484612150565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613697565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061321a565b9050111561199657600d61196f836124b8565b60405160200161198092919061379d565b6040516020818303038152906040529050611d9a565b5f826040516020016119a891906137e0565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600581526020017f312e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600581526020017f477265656e0000000000000000000000000000000000000000000000000000008152509050611c46565b60a08360ff1611611ac6576040518060400160405280600581526020017f322e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152509050611c45565b60d28360ff1611611b46576040518060400160405280600581526020017f332e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f507572706c6500000000000000000000000000000000000000000000000000008152509050611c44565b60f08360ff1611611bc6576040518060400160405280600581526020017f342e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f4f72616e676500000000000000000000000000000000000000000000000000008152509050611c43565b60ff8360ff1611611c42576040518060400160405280600581526020017f352e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b5f611c50866124b8565b604051602001611c609190613820565b604051602081830303815290604052604051602001611c7f9190613927565b604051602081830303815290604052600c84604051602001611ca292919061379d565b604051602081830303815290604052604051602001611cc2929190613948565b60405160208183030381529060405290505f82604051602001611ce591906139db565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611d42929190613948565b60405160208183030381529060405281604051602001611d63929190613948565b604051602081830303815290604052604051602001611d829190613a22565b60405160208183030381529060405296505050505050505b919050565b600d8054611dac9061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd89061321a565b8015611e235780601f10611dfa57610100808354040283529160200191611e23565b820191905f5260205f20905b815481529060010190602001808311611e0657829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ecf576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611ede91906133e7565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f199061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f459061321a565b8015611f905780601f10611f6757610100808354040283529160200191611f90565b820191905f5260205f20905b815481529060010190602001808311611f7357829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461201c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612081576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a61214b9190613b76565b905090565b5f8061215a61211d565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461222a91906134e3565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661234e575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123139190613bed565b848461231f9190613bed565b61232991906134e3565b90505f5b8181101561234b5761233e89612582565b808060010191505061232d565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612421575f83826123a99190613bed565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123f29190613bed565b6123fc91906134e3565b90505f5b8181101561241e57612411886127c7565b8080600101915050612400565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161247e9190612db5565b60405180910390a3600193505050509392505050565b81600190816124a391906133e7565b5080600290816124b391906133e7565b505050565b60605f60016124c684612a49565b0190505f8167ffffffffffffffff8111156124e4576124e3612dd6565b5b6040519080825280601f01601f1916602001820160405280156125165781602001600182028036833780820191505090505b5090505f82602001820190505b600115612577578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256c5761256b613bc0565b5b0494505f8503612523575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125e7576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061267291906134e3565b8154811061268357612682613516565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806126db576126da613543565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361282c576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d8576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506129d591906134e3565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612aa5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a9b57612a9a613bc0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612ae2576d04ee2d6d415b85acef81000000008381612ad857612ad7613bc0565b5b0492506020810190505b662386f26fc100008310612b1157662386f26fc100008381612b0757612b06613bc0565b5b0492506010810190505b6305f5e1008310612b3a576305f5e1008381612b3057612b2f613bc0565b5b0492506008810190505b6127108310612b5f576127108381612b5557612b54613bc0565b5b0492506004810190505b60648310612b825760648381612b7857612b77613bc0565b5b0492506002810190505b600a8310612b91576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612bd1578082015181840152602081019050612bb6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612bf682612b9a565b612c008185612ba4565b9350612c10818560208601612bb4565b612c1981612bdc565b840191505092915050565b5f6020820190508181035f830152612c3c8184612bec565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612c6781612c55565b8114612c71575f80fd5b50565b5f81359050612c8281612c5e565b92915050565b5f60208284031215612c9d57612c9c612c4d565b5b5f612caa84828501612c74565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612cdc82612cb3565b9050919050565b612cec81612cd2565b82525050565b5f602082019050612d055f830184612ce3565b92915050565b612d1481612cd2565b8114612d1e575f80fd5b50565b5f81359050612d2f81612d0b565b92915050565b5f8060408385031215612d4b57612d4a612c4d565b5b5f612d5885828601612d21565b9250506020612d6985828601612c74565b9150509250929050565b5f8115159050919050565b612d8781612d73565b82525050565b5f602082019050612da05f830184612d7e565b92915050565b612daf81612c55565b82525050565b5f602082019050612dc85f830184612da6565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e0c82612bdc565b810181811067ffffffffffffffff82111715612e2b57612e2a612dd6565b5b80604052505050565b5f612e3d612c44565b9050612e498282612e03565b919050565b5f67ffffffffffffffff821115612e6857612e67612dd6565b5b612e7182612bdc565b9050602081019050919050565b828183375f83830152505050565b5f612e9e612e9984612e4e565b612e34565b905082815260208101848484011115612eba57612eb9612dd2565b5b612ec5848285612e7e565b509392505050565b5f82601f830112612ee157612ee0612dce565b5b8135612ef1848260208601612e8c565b91505092915050565b5f60208284031215612f0f57612f0e612c4d565b5b5f82013567ffffffffffffffff811115612f2c57612f2b612c51565b5b612f3884828501612ecd565b91505092915050565b5f805f60608486031215612f5857612f57612c4d565b5b5f612f6586828701612d21565b9350506020612f7686828701612d21565b9250506040612f8786828701612c74565b9150509250925092565b5f60ff82169050919050565b612fa681612f91565b82525050565b5f602082019050612fbf5f830184612f9d565b92915050565b5f8060408385031215612fdb57612fda612c4d565b5b5f83013567ffffffffffffffff811115612ff857612ff7612c51565b5b61300485828601612ecd565b925050602083013567ffffffffffffffff81111561302557613024612c51565b5b61303185828601612ecd565b9150509250929050565b61304481612d73565b811461304e575f80fd5b50565b5f8135905061305f8161303b565b92915050565b5f806040838503121561307b5761307a612c4d565b5b5f61308885828601612d21565b925050602061309985828601613051565b9150509250929050565b5f602082840312156130b8576130b7612c4d565b5b5f6130c584828501612d21565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126130eb576130ea612dce565b5b8235905067ffffffffffffffff811115613108576131076130ce565b5b602083019150836001820283011115613124576131236130d2565b5b9250929050565b5f805f805f6080868803121561314457613143612c4d565b5b5f61315188828901612d21565b955050602061316288828901612d21565b945050604061317388828901612c74565b935050606086013567ffffffffffffffff81111561319457613193612c51565b5b6131a0888289016130d6565b92509250509295509295909350565b5f80604083850312156131c5576131c4612c4d565b5b5f6131d285828601612d21565b92505060206131e385828601612d21565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061323157607f821691505b602082108103613244576132436131ed565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026132a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261326b565b6132b0868361326b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6132eb6132e66132e184612c55565b6132c8565b612c55565b9050919050565b5f819050919050565b613304836132d1565b613318613310826132f2565b848454613277565b825550505050565b5f90565b61332c613320565b6133378184846132fb565b505050565b5b8181101561335a5761334f5f82613324565b60018101905061333d565b5050565b601f82111561339f576133708161324a565b6133798461325c565b81016020851015613388578190505b61339c6133948561325c565b83018261333c565b50505b505050565b5f82821c905092915050565b5f6133bf5f19846008026133a4565b1980831691505092915050565b5f6133d783836133b0565b9150826002028217905092915050565b6133f082612b9a565b67ffffffffffffffff81111561340957613408612dd6565b5b613413825461321a565b61341e82828561335e565b5f60209050601f83116001811461344f575f841561343d578287015190505b61344785826133cc565b8655506134ae565b601f19841661345d8661324a565b5f5b828110156134845784890151825560018201915060208501945060208101905061345f565b868310156134a1578489015161349d601f8916826133b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6134ed82612c55565b91506134f883612c55565b92508282039050818111156135105761350f6134b6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61358e5f83613570565b915061359982613580565b5f82019050919050565b5f6080820190506135b65f830186612ce3565b6135c36020830185612ce3565b6135d06040830184612da6565b81810360608301526135e181613583565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61361f816135eb565b8114613629575f80fd5b50565b5f8151905061363a81613616565b92915050565b5f6020828403121561365557613654612c4d565b5b5f6136628482850161362c565b91505092915050565b5f6136768385613570565b9350613683838584612e7e565b61368c83612bdc565b840190509392505050565b5f6080820190506136aa5f830188612ce3565b6136b76020830187612ce3565b6136c46040830186612da6565b81810360608301526136d781848661366b565b90509695505050505050565b5f81905092915050565b5f81546136f98161321a565b61370381866136e3565b9450600182165f811461371d576001811461373257613764565b60ff1983168652811515820286019350613764565b61373b8561324a565b5f5b8381101561375c5781548189015260018201915060208101905061373d565b838801955050505b50505092915050565b5f61377782612b9a565b61378181856136e3565b9350613791818560208601612bb4565b80840191505092915050565b5f6137a882856136ed565b91506137b4828461376d565b91508190509392505050565b5f819050919050565b6137da6137d582612c55565b6137c0565b82525050565b5f6137eb82846137c9565b60208201915081905092915050565b7f7b226e616d65223a202250616e646f7261202300000000000000000000000000815250565b5f61382a826137fa565b60138201915061383a828461376d565b915081905092915050565b7f222c226465736372697074696f6e223a224120636f6c6c656374696f6e206f665f8201527f2031302c303030205265706c6963616e747320656e61626c656420627920455260208201527f433430342c20616e206578706572696d656e74616c20746f6b656e207374616e60408201527f646172642e222c2265787465726e616c5f75726c223a2268747470733a2f2f7060608201527f616e646f72612e6275696c64222c22696d616765223a22000000000000000000608082015250565b5f6139116097836136e3565b915061391c82613845565b609782019050919050565b5f613932828461376d565b915061393d82613905565b915081905092915050565b5f613953828561376d565b915061395f828461376d565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a22435f8201527f6f6c6f72222c2276616c7565223a220000000000000000000000000000000000602082015250565b5f6139c5602f836136e3565b91506139d08261396b565b602f82019050919050565b5f6139e5826139b9565b91506139f1828461376d565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a2c826139fc565b601b82019150613a3c828461376d565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613a9c57808604811115613a7857613a776134b6565b5b6001851615613a875780820291505b8081029050613a9585613a47565b9450613a5c565b94509492505050565b5f82613ab45760019050613b6f565b81613ac1575f9050613b6f565b8160018114613ad75760028114613ae157613b10565b6001915050613b6f565b60ff841115613af357613af26134b6565b5b8360020a915084821115613b0a57613b096134b6565b5b50613b6f565b5060208310610133831016604e8410600b8410161715613b455782820a905083811115613b4057613b3f6134b6565b5b613b6f565b613b528484846001613a53565b92509050818404811115613b6957613b686134b6565b5b81810290505b9392505050565b5f613b8082612c55565b9150613b8b83612f91565b9250613bb87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613aa5565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613bf782612c55565b9150613c0283612c55565b925082613c1257613c11613bc0565b5b82820490509291505056fea264697066735822122067cb4bede1e8f1e21d61966ff2b827ee20300061bdb042ae3ef2a15a287b0d2764736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002ccebb1cff2099cebe54e3cf1b3847d236dbfe84
-----Decoded View---------------
Arg [0] : _owner (address): 0x2CceBB1cFF2099CEbe54E3cf1B3847D236dBfe84
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002ccebb1cff2099cebe54e3cf1b3847d236dbfe84
Deployed Bytecode Sourcemap
237:2506:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800:18:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3511:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5342:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3036:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;497:98:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6391:1716:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;797:151;;;:::i;:::-;;2936:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8403:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3171:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;717:158:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4671:111:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4854:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3277:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;238:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2854;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4122:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6035:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8166:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8903:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;883:1857:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;303:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3391:64:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;603:106:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3622:68:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;275:21:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;570:219:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2800:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3511:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;5342:642::-;5445:4;5480:6;;5466:10;:20;;:38;;;;;5503:1;5490:10;:14;5466:38;5462:491;;;5521:13;5537:8;:20;5546:10;5537:20;;;;;;;;;;;;;;;;;;;;;5521:36;;5592:5;5578:19;;:10;:19;;;;:59;;;;;5602:16;:23;5619:5;5602:23;;;;;;;;;;;;;;;:35;5626:10;5602:35;;;;;;;;;;;;;;;;;;;;;;;;;5601:36;5578:59;5574:121;;;5665:14;;;;;;;;;;;;;;5574:121;5737:7;5711:11;:23;5723:10;5711:23;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;5782:7;5766:36;;5775:5;5766:36;;;5791:10;5766:36;;;;;;:::i;:::-;;;;;;;;5506:308;5462:491;;;5868:10;5835:9;:21;5845:10;5835:21;;;;;;;;;;;;;;;:30;5857:7;5835:30;;;;;;;;;;;;;;;:43;;;;5921:7;5900:41;;5909:10;5900:41;;;5930:10;5900:41;;;;;;:::i;:::-;;;;;;;;5462:491;5972:4;5965:11;;5342:642;;;;:::o;3036:36::-;;;:::o;497:98:4:-;325:5:0;;;;;;;;;;311:19;;:10;:19;;;307:46;;339:14;;;;;;;;;;;;;;307:46;579:8:4::1;569:7;:18;;;;;;:::i;:::-;;497:98:::0;:::o;6391:1716:0:-;6537:6;;6523:10;:20;6519:1581;;6572:8;:20;6581:10;6572:20;;;;;;;;;;;;;;;;;;;;;6564:28;;:4;:28;;;6560:91;;6620:15;;;;;;;;;;;;;;6560:91;6685:1;6671:16;;:2;:16;;;6667:82;;6715:18;;;;;;;;;;;;;;6667:82;6801:4;6787:18;;:10;:18;;;;:74;;;;;6827:16;:22;6844:4;6827:22;;;;;;;;;;;;;;;:34;6850:10;6827:34;;;;;;;;;;;;;;;;;;;;;;;;;6826:35;6787:74;:132;;;;;6896:11;:23;6908:10;6896:23;;;;;;;;;;;;;;;;;;;;;6882:37;;:10;:37;;;;6787:132;6765:226;;;6961:14;;;;;;;;;;;;;;6765:226;7026:10;:8;:10::i;:::-;7007:9;:15;7017:4;7007:15;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;7099:10;:8;:10::i;:::-;7082:9;:13;7092:2;7082:13;;;;;;;;;;;;;;;;:27;;;;;;;;;;;7164:2;7141:8;:20;7150:10;7141:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;7188:11;:23;7200:10;7188:23;;;;;;;;;;;;7181:30;;;;;;;;;;;7269:17;7289:6;:12;7296:4;7289:12;;;;;;;;;;;;;;;7324:1;7302:6;:12;7309:4;7302:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;7289:37;;;;;;;;:::i;:::-;;;;;;;;;;7269:57;;7381:9;7341:6;:12;7348:4;7341:12;;;;;;;;;;;;;;;7354:11;:23;7366:10;7354:23;;;;;;;;;;;;7341:37;;;;;;;;:::i;:::-;;;;;;;;;:49;;;;7425:6;:12;7432:4;7425:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7529:11;:23;7541:10;7529:23;;;;;;;;;;;;7504:11;:22;7516:9;7504:22;;;;;;;;;;;:48;;;;7606:6;:10;7613:2;7606:10;;;;;;;;;;;;;;;7622;7606:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7736:1;7716:6;:10;7723:2;7716:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;7690:11;:23;7702:10;7690:23;;;;;;;;;;;:47;;;;7778:10;7774:2;7759:30;;7768:4;7759:30;;;;;;;;;;;;7829:2;7809:35;;7823:4;7809:35;;;7833:10;:8;:10::i;:::-;7809:35;;;;;;:::i;:::-;;;;;;;;6545:1311;6519:1581;;;7877:15;7895:9;:15;7905:4;7895:15;;;;;;;;;;;;;;;:27;7911:10;7895:27;;;;;;;;;;;;;;;;7877:45;;7954:17;7943:7;:28;7939:101;;8030:10;8020:7;:20;;;;:::i;:::-;7990:9;:15;8000:4;7990:15;;;;;;;;;;;;;;;:27;8006:10;7990:27;;;;;;;;;;;;;;;:50;;;;7939:101;8057:31;8067:4;8073:2;8077:10;8057:9;:31::i;:::-;;7862:238;6519:1581;6391:1716;;;:::o;797:151::-;325:5;;;;;;;;;;311:19;;:10;:19;;;307:46;;339:14;;;;;;;;;;;;;;307:46;876:1:::1;860:5:::0;::::1;:18;;;;;;;;;;;;;;;;;;937:1;896:44;;917:10;896:44;;;;;;;;;;;;797:151::o:0;2936:31::-;;;:::o;8403:405::-;8527:26;8540:4;8546:2;8550;8527:12;:26::i;:::-;8602:1;8584:2;:14;;;:19;;:154;;;;;8698:40;;;8620:118;;;8635:2;8620:35;;;8656:10;8668:4;8674:2;8620:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:118;;;;;8584:154;8566:235;;;8772:17;;;;;;;;;;;;;;8566:235;8403:405;;;:::o;3171:21::-;;;;:::o;717:158:4:-;325:5:0;;;;;;;;;;311:19;;:10;:19;;;307:46;;339:14;;;;;;;;;;;;;;307:46;837:30:4::1;852:5;859:7;837:14;:30::i;:::-;717:158:::0;;:::o;4671:111:0:-;325:5;;;;;;;;;;311:19;;:10;:19;;;307:46;;339:14;;;;;;;;;;;;;;307:46;4769:5:::1;4749:9;:17;4759:6;4749:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;4671:111:::0;;:::o;4854:193::-;4912:13;4946:8;:12;4955:2;4946:12;;;;;;;;;;;;;;;;;;;;;4938:20;;4992:1;4975:19;;:5;:19;;;4971:69;;5018:10;;;;;;;;;;;;;;4971:69;4854:193;;;:::o;3277:44::-;;;;;;;;;;;;;;;;;:::o;238:20::-;;;;;;;;;;;;:::o;2854:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4122:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;6035:207::-;6162:8;6121:16;:28;6138:10;6121:28;;;;;;;;;;;;;;;:38;6150:8;6121:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;6215:8;6188:46;;6203:10;6188:46;;;6225:8;6188:46;;;;;;:::i;:::-;;;;;;;;6035:207;;:::o;8166:160::-;8261:4;8285:33;8295:10;8307:2;8311:6;8285:9;:33::i;:::-;8278:40;;8166:160;;;;:::o;8903:437::-;9057:26;9070:4;9076:2;9080;9057:12;:26::i;:::-;9132:1;9114:2;:14;;;:19;;:156;;;;;9230:40;;;9150:120;;;9165:2;9150:35;;;9186:10;9198:4;9204:2;9208:4;;9150:63;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:120;;;;;9114:156;9096:237;;;9304:17;;;;;;;;;;;;;;9096:237;8903:437;;;;;:::o;883:1857:4:-;943:13;1002:1;979:12;973:26;;;;;:::i;:::-;;;:30;969:1764;;;1041:12;1055:20;1072:2;1055:16;:20::i;:::-;1027:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1020:56;;;;969:1764;1109:10;1162:2;1145:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;1135:31;;;;;;1122:46;;1109:59;;1183:19;1217;1265:3;1257:4;:11;;;1253:528;;1289:15;;;;;;;;;;;;;;;;;;;1323;;;;;;;;;;;;;;;;;;;1253:528;;;1372:3;1364:4;:11;;;1360:421;;1396:15;;;;;;;;;;;;;;;;;;;1430:14;;;;;;;;;;;;;;;;;;;1360:421;;;1478:3;1470:4;:11;;;1466:315;;1502:15;;;;;;;;;;;;;;;;;;;1536:16;;;;;;;;;;;;;;;;;;;1466:315;;;1586:3;1578:4;:11;;;1574:207;;1610:15;;;;;;;;;;;;;;;;;;;1644:16;;;;;;;;;;;;;;;;;;;1574:207;;;1694:3;1686:4;:11;;;1682:99;;1718:15;;;;;;;;;;;;;;;;;;;1752:13;;;;;;;;;;;;;;;;;;;1682:99;1574:207;1466:315;1360:421;1253:528;1797:26;1931:20;1948:2;1931:16;:20::i;:::-;1894:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;1858:289;;;;;;;;:::i;:::-;;;;;;;;;;;;;2180:7;2189:5;2166:29;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1826:384;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1797:413;;2225:27;2355:5;2255:120;;;;;;;;:::i;:::-;;;;;;;;;;;;;2225:150;;2390:28;:37;;;;;;;;;;;;;;;;;;;2610:12;2624:13;2596:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2665:14;2556:146;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2468:253;;;;;;;;:::i;:::-;;;;;;;;;;;;;2444:277;;;;;;;;883:1857;;;;:::o;303:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3391:64:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;603:106:4:-;325:5:0;;;;;;;;;;311:19;;:10;:19;;;307:46;;339:14;;;;;;;;;;;;;;307:46;692:9:4::1;677:12;:24;;;;;;:::i;:::-;;603:106:::0;:::o;3622:68:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;275:21:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;570:219:0:-;325:5;;;;;;;;;;311:19;;:10;:19;;;307:46;;339:14;;;;;;;;;;;;;;307:46;671:1:::1;653:20;;:6;:20;;::::0;649:47:::1;;682:14;;;;;;;;;;;;;;649:47;717:6;709:5;::::0;:14:::1;;;;;;;;;;;;;;;;;;774:6;741:40;;762:10;741:40;;;;;;;;;;;;570:219:::0;:::o;10540:92::-;10583:7;10616:8;10610:2;:14;;;;:::i;:::-;10603:21;;10540:92;:::o;9408:1093::-;9521:4;9538:12;9553:10;:8;:10::i;:::-;9538:25;;9574:27;9604:9;:15;9614:4;9604:15;;;;;;;;;;;;;;;;9574:45;;9630:29;9662:9;:13;9672:2;9662:13;;;;;;;;;;;;;;;;9630:45;;9707:6;9688:9;:15;9698:4;9688:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;9768:6;9751:9;:13;9761:2;9751:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9859:9;:15;9869:4;9859:15;;;;;;;;;;;;;;;;;;;;;;;;;9854:251;;9891:22;9983:4;9965:9;:15;9975:4;9965:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;9939:4;9917:19;:26;;;;:::i;:::-;9916:72;;;;:::i;:::-;9891:97;;10008:9;10003:91;10027:14;10023:1;:18;10003:91;;;10067:11;10073:4;10067:5;:11::i;:::-;10043:3;;;;;;;10003:91;;;;9876:229;9854:251;10181:9;:13;10191:2;10181:13;;;;;;;;;;;;;;;;;;;;;;;;;10176:247;;10211:22;10303:4;10279:21;:28;;;;:::i;:::-;10253:4;10237:9;:13;10247:2;10237:13;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;10236:72;;;;:::i;:::-;10211:97;;10328:9;10323:89;10347:14;10343:1;:18;10323:89;;;10387:9;10393:2;10387:5;:9::i;:::-;10363:3;;;;;;;10323:89;;;;10196:227;10176:247;10460:2;10440:31;;10454:4;10440:31;;;10464:6;10440:31;;;;;;:::i;:::-;;;;;;;;10489:4;10482:11;;;;;9408:1093;;;;;:::o;11503:160::-;11623:5;11616:4;:12;;;;;;:::i;:::-;;11648:7;11639:6;:16;;;;;;:::i;:::-;;11503:160;;:::o;652:718:3:-;708:13;759:14;796:1;776:17;787:5;776:10;:17::i;:::-;:21;759:38;;812:20;846:6;835:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812:41;;868:11;997:6;993:2;989:15;981:6;977:28;970:35;;1034:290;1041:4;1034:290;;;1066:5;;;;;;;;1208:10;1203:2;1196:5;1192:14;1187:32;1182:3;1174:46;1266:2;1257:11;;;;;;:::i;:::-;;;;;1300:1;1291:5;:10;1034:290;1287:21;1034:290;1345:6;1338:13;;;;;652:718;;;:::o;11122:373:0:-;11199:1;11183:18;;:4;:18;;;11179:73;;11225:15;;;;;;;;;;;;;;11179:73;11264:10;11277:6;:12;11284:4;11277:12;;;;;;;;;;;;;;;11312:1;11290:6;:12;11297:4;11290:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;11277:37;;;;;;;;:::i;:::-;;;;;;;;;;11264:50;;11325:6;:12;11332:4;11325:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11361:11;:15;11373:2;11361:15;;;;;;;;;;;11354:22;;;11394:8;:12;11403:2;11394:12;;;;;;;;;;;;11387:19;;;;;;;;;;;11424:11;:15;11436:2;11424:15;;;;;;;;;;;;11417:22;;;;;;;;;;;11484:2;11480:1;11457:30;;11466:4;11457:30;;;;;;;;;;;;11168:327;11122:373;:::o;10640:474::-;10713:1;10699:16;;:2;:16;;;10695:74;;10739:18;;;;;;;;;;;;;;10695:74;10806:6;;:8;;;;;;;;;;;;;10838:10;10851:6;;10838:19;;10898:1;10874:26;;:8;:12;10883:2;10874:12;;;;;;;;;;;;;;;;;;;;;:26;;;10870:81;;10924:15;;;;;;;;;;;;;;10870:81;10978:2;10963:8;:12;10972:2;10963:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;10991:6;:10;10998:2;10991:10;;;;;;;;;;;;;;;11007:2;10991:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11059:1;11039:6;:10;11046:2;11039:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;11021:11;:15;11033:2;11021:15;;;;;;;;;;;:39;;;;11103:2;11099;11078:28;;11095:1;11078:28;;;;;;;;;;;;10684:430;10640:474;:::o;12540:948:1:-;12593:7;12613:14;12630:1;12613:18;;12680:8;12671:5;:17;12667:106;;12718:8;12709:17;;;;;;:::i;:::-;;;;;12755:2;12745:12;;;;12667:106;12800:8;12791:5;:17;12787:106;;12838:8;12829:17;;;;;;:::i;:::-;;;;;12875:2;12865:12;;;;12787:106;12920:8;12911:5;:17;12907:106;;12958:8;12949:17;;;;;;:::i;:::-;;;;;12995:2;12985:12;;;;12907:106;13040:7;13031:5;:16;13027:103;;13077:7;13068:16;;;;;;:::i;:::-;;;;;13113:1;13103:11;;;;13027:103;13157:7;13148:5;:16;13144:103;;13194:7;13185:16;;;;;;:::i;:::-;;;;;13230:1;13220:11;;;;13144:103;13274:7;13265:5;:16;13261:103;;13311:7;13302:16;;;;;;:::i;:::-;;;;;13347:1;13337:11;;;;13261:103;13391:7;13382:5;:16;13378:68;;13429:1;13419:11;;;;13378:68;13474:6;13467:13;;;12540:948;;;:::o;7:99:5:-;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;21338:874::-;21441:3;21478:5;21472:12;21507:36;21533:9;21507:36;:::i;:::-;21559:89;21641:6;21636:3;21559:89;:::i;:::-;21552:96;;21679:1;21668:9;21664:17;21695:1;21690:166;;;;21870:1;21865:341;;;;21657:549;;21690:166;21774:4;21770:9;21759;21755:25;21750:3;21743:38;21836:6;21829:14;21822:22;21814:6;21810:35;21805:3;21801:45;21794:52;;21690:166;;21865:341;21932:38;21964:5;21932:38;:::i;:::-;21992:1;22006:154;22020:6;22017:1;22014:13;22006:154;;;22094:7;22088:14;22084:1;22079:3;22075:11;22068:35;22144:1;22135:7;22131:15;22120:26;;22042:4;22039:1;22035:12;22030:17;;22006:154;;;22189:6;22184:3;22180:16;22173:23;;21872:334;;21657:549;;21445:767;;21338:874;;;;:::o;22218:390::-;22324:3;22352:39;22385:5;22352:39;:::i;:::-;22407:89;22489:6;22484:3;22407:89;:::i;:::-;22400:96;;22505:65;22563:6;22558:3;22551:4;22544:5;22540:16;22505:65;:::i;:::-;22595:6;22590:3;22586:16;22579:23;;22328:280;22218:390;;;;:::o;22614:429::-;22791:3;22813:92;22901:3;22892:6;22813:92;:::i;:::-;22806:99;;22922:95;23013:3;23004:6;22922:95;:::i;:::-;22915:102;;23034:3;23027:10;;22614:429;;;;;:::o;23049:79::-;23088:7;23117:5;23106:16;;23049:79;;;:::o;23134:157::-;23239:45;23259:24;23277:5;23259:24;:::i;:::-;23239:45;:::i;:::-;23234:3;23227:58;23134:157;;:::o;23297:256::-;23409:3;23424:75;23495:3;23486:6;23424:75;:::i;:::-;23524:2;23519:3;23515:12;23508:19;;23544:3;23537:10;;23297:256;;;;:::o;23559:242::-;23728:66;23723:3;23716:79;23559:242;:::o;23807:542::-;24030:3;24045:138;24179:3;24045:138;:::i;:::-;24208:2;24203:3;24199:12;24192:19;;24228:95;24319:3;24310:6;24228:95;:::i;:::-;24221:102;;24340:3;24333:10;;23807:542;;;;:::o;24355:555::-;24495:66;24491:1;24483:6;24479:14;24472:90;24596:34;24591:2;24583:6;24579:15;24572:59;24665:34;24660:2;24652:6;24648:15;24641:59;24734:66;24729:2;24721:6;24717:15;24710:91;24836:66;24830:3;24822:6;24818:16;24811:92;24355:555;:::o;24916:404::-;25076:3;25097:86;25179:3;25174;25097:86;:::i;:::-;25090:93;;25192;25281:3;25192:93;:::i;:::-;25310:3;25305;25301:13;25294:20;;24916:404;;;:::o;25326:541::-;25559:3;25581:95;25672:3;25663:6;25581:95;:::i;:::-;25574:102;;25693:148;25837:3;25693:148;:::i;:::-;25686:155;;25858:3;25851:10;;25326:541;;;;:::o;25873:435::-;26053:3;26075:95;26166:3;26157:6;26075:95;:::i;:::-;26068:102;;26187:95;26278:3;26269:6;26187:95;:::i;:::-;26180:102;;26299:3;26292:10;;25873:435;;;;;:::o;26314:315::-;26454:66;26450:1;26442:6;26438:14;26431:90;26555:66;26550:2;26542:6;26538:15;26531:91;26314:315;:::o;26635:402::-;26795:3;26816:85;26898:2;26893:3;26816:85;:::i;:::-;26809:92;;26910:93;26999:3;26910:93;:::i;:::-;27028:2;27023:3;27019:12;27012:19;;26635:402;;;:::o;27043:541::-;27276:3;27298:148;27442:3;27298:148;:::i;:::-;27291:155;;27463:95;27554:3;27545:6;27463:95;:::i;:::-;27456:102;;27575:3;27568:10;;27043:541;;;;:::o;27590:205::-;27759:29;27754:3;27747:42;27590:205;:::o;27801:542::-;28024:3;28039:138;28173:3;28039:138;:::i;:::-;28202:2;28197:3;28193:12;28186:19;;28222:95;28313:3;28304:6;28222:95;:::i;:::-;28215:102;;28334:3;28327:10;;27801:542;;;;:::o;28349:102::-;28391:8;28438:5;28435:1;28431:13;28410:34;;28349:102;;;:::o;28457:848::-;28518:5;28525:4;28549:6;28540:15;;28573:5;28564:14;;28587:712;28608:1;28598:8;28595:15;28587:712;;;28703:4;28698:3;28694:14;28688:4;28685:24;28682:50;;;28712:18;;:::i;:::-;28682:50;28762:1;28752:8;28748:16;28745:451;;;29177:4;29170:5;29166:16;29157:25;;28745:451;29227:4;29221;29217:15;29209:23;;29257:32;29280:8;29257:32;:::i;:::-;29245:44;;28587:712;;;28457:848;;;;;;;:::o;29311:1073::-;29365:5;29556:8;29546:40;;29577:1;29568:10;;29579:5;;29546:40;29605:4;29595:36;;29622:1;29613:10;;29624:5;;29595:36;29691:4;29739:1;29734:27;;;;29775:1;29770:191;;;;29684:277;;29734:27;29752:1;29743:10;;29754:5;;;29770:191;29815:3;29805:8;29802:17;29799:43;;;29822:18;;:::i;:::-;29799:43;29871:8;29868:1;29864:16;29855:25;;29906:3;29899:5;29896:14;29893:40;;;29913:18;;:::i;:::-;29893:40;29946:5;;;29684:277;;30070:2;30060:8;30057:16;30051:3;30045:4;30042:13;30038:36;30020:2;30010:8;30007:16;30002:2;29996:4;29993:12;29989:35;29973:111;29970:246;;;30126:8;30120:4;30116:19;30107:28;;30161:3;30154:5;30151:14;30148:40;;;30168:18;;:::i;:::-;30148:40;30201:5;;29970:246;30241:42;30279:3;30269:8;30263:4;30260:1;30241:42;:::i;:::-;30226:57;;;;30315:4;30310:3;30306:14;30299:5;30296:25;30293:51;;;30324:18;;:::i;:::-;30293:51;30373:4;30366:5;30362:16;30353:25;;29311:1073;;;;;;:::o;30390:281::-;30448:5;30472:23;30490:4;30472:23;:::i;:::-;30464:31;;30516:25;30532:8;30516:25;:::i;:::-;30504:37;;30560:104;30597:66;30587:8;30581:4;30560:104;:::i;:::-;30551:113;;30390:281;;;;:::o;30677:180::-;30725:77;30722:1;30715:88;30822:4;30819:1;30812:15;30846:4;30843:1;30836:15;30863:185;30903:1;30920:20;30938:1;30920:20;:::i;:::-;30915:25;;30954:20;30972:1;30954:20;:::i;:::-;30949:25;;30993:1;30983:35;;30998:18;;:::i;:::-;30983:35;31040:1;31037;31033:9;31028:14;;30863:185;;;;:::o
Swarm Source
ipfs://67cb4bede1e8f1e21d61966ff2b827ee20300061bdb042ae3ef2a15a287b0d27
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.