More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 586 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 60776039 | 5 hrs ago | IN | 0 AVAX | 0.00007459 | ||||
Set Approval For... | 60086846 | 11 days ago | IN | 0 AVAX | 0.0000751 | ||||
Set Approval For... | 59082461 | 31 days ago | IN | 0 AVAX | 0.00003709 | ||||
Set Approval For... | 58610645 | 41 days ago | IN | 0 AVAX | 0.00008091 | ||||
Set Approval For... | 58610641 | 41 days ago | IN | 0 AVAX | 0.00007993 | ||||
Set Approval For... | 58352649 | 47 days ago | IN | 0 AVAX | 0.00005928 | ||||
Set Approval For... | 57729382 | 59 days ago | IN | 0 AVAX | 0.0000365 | ||||
Set Approval For... | 57466106 | 64 days ago | IN | 0 AVAX | 0.00016211 | ||||
Set Approval For... | 57461396 | 64 days ago | IN | 0 AVAX | 0.00007179 | ||||
Set Approval For... | 57416833 | 65 days ago | IN | 0 AVAX | 0.00007097 | ||||
Set Approval For... | 55507963 | 104 days ago | IN | 0 AVAX | 0.00011558 | ||||
Set Approval For... | 54775116 | 120 days ago | IN | 0 AVAX | 0.00006067 | ||||
Set Approval For... | 54685009 | 122 days ago | IN | 0 AVAX | 0.00006067 | ||||
Transfer From | 54512912 | 125 days ago | IN | 0 AVAX | 0.00020999 | ||||
Transfer From | 54061769 | 136 days ago | IN | 0 AVAX | 0.00281437 | ||||
Transfer From | 53895625 | 140 days ago | IN | 0 AVAX | 0.00246051 | ||||
Set Approval For... | 53580306 | 147 days ago | IN | 0 AVAX | 0.00081776 | ||||
Set Approval For... | 53580304 | 147 days ago | IN | 0 AVAX | 0.00081776 | ||||
Set Approval For... | 53580302 | 147 days ago | IN | 0 AVAX | 0.00089136 | ||||
Set Approval For... | 53482794 | 150 days ago | IN | 0 AVAX | 0.00148145 | ||||
Set Approval For... | 53479368 | 150 days ago | IN | 0 AVAX | 0.00127374 | ||||
Set Approval For... | 53471785 | 150 days ago | IN | 0 AVAX | 0.0011811 | ||||
Set Approval For... | 52488089 | 173 days ago | IN | 0 AVAX | 0.00077395 | ||||
Set Approval For... | 52225778 | 179 days ago | IN | 0 AVAX | 0.00115795 | ||||
Set Approval For... | 51208683 | 204 days ago | IN | 0 AVAX | 0.00077395 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
40057016 | 471 days ago | 20.125 AVAX | ||||
40057016 | 471 days ago | 8.625 AVAX | ||||
39779598 | 478 days ago | 0.7 AVAX | ||||
39779598 | 478 days ago | 0.3 AVAX | ||||
39689022 | 480 days ago | 0.875 AVAX | ||||
39689022 | 480 days ago | 0.375 AVAX | ||||
38610590 | 505 days ago | 0.175 AVAX | ||||
38610590 | 505 days ago | 0.075 AVAX | ||||
38514756 | 508 days ago | 0.7 AVAX | ||||
38514756 | 508 days ago | 0.3 AVAX | ||||
38386850 | 511 days ago | 0.175 AVAX | ||||
38386850 | 511 days ago | 0.075 AVAX | ||||
36901518 | 545 days ago | 0.7 AVAX | ||||
36901518 | 545 days ago | 0.3 AVAX | ||||
36487670 | 555 days ago | 1.4 AVAX | ||||
36487670 | 555 days ago | 0.6 AVAX | ||||
36241434 | 561 days ago | 1.05 AVAX | ||||
36241434 | 561 days ago | 0.45 AVAX | ||||
36228362 | 562 days ago | 0.7 AVAX | ||||
36228362 | 562 days ago | 0.3 AVAX | ||||
34521763 | 602 days ago | 1.4 AVAX | ||||
34521763 | 602 days ago | 0.6 AVAX | ||||
33474317 | 628 days ago | 0.35 AVAX | ||||
33474317 | 628 days ago | 0.15 AVAX | ||||
32087751 | 660 days ago | 0.35 AVAX |
Loading...
Loading
Contract Name:
AlienDoodle
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2022-11-25 */ // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (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; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); 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 (rounding == Rounding.Up && 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 down. * * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @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) { 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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); 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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/AlienDoodle.sol pragma solidity >=0.7.0 <0.9.0; contract AlienDoodle is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.5 ether; uint256 public maxSupply = 444; uint256 public maxMintAmount = 2; uint256 public nftPerAddressLimit = 444; bool public paused = true; bool public revealed = false; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { (bool hs, ) = payable(0xbEeD953e47cea56D58CA0ecC9a938899a21C50de).call{value: address(this).balance * 30 / 100}(""); require(hs); (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","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":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001eb565b506706f05b59d3b20000600e556101bc600f81905560026010556011556012805462ffffff1916620100011790553480156200006357600080fd5b5060405162002e6138038062002e6183398101604081905262000086916200035e565b8351849084906200009f906000906020850190620001eb565b508051620000b5906001906020840190620001eb565b505050620000d2620000cc620000f260201b60201c565b620000f6565b620000dd8262000148565b620000e8816200016b565b5050505062000453565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001526200018a565b80516200016790600b906020840190620001eb565b5050565b620001756200018a565b80516200016790600d906020840190620001eb565b600a546001600160a01b03163314620001e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001f99062000417565b90600052602060002090601f0160209004810192826200021d576000855562000268565b82601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b50620002769291506200027a565b5090565b5b808211156200027657600081556001016200027b565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002b957600080fd5b81516001600160401b0380821115620002d657620002d662000291565b604051601f8301601f19908116603f0116810190828211818310171562000301576200030162000291565b816040528381526020925086838588010111156200031e57600080fd5b600091505b8382101562000342578582018301518183018401529082019062000323565b83821115620003545760008385830101525b9695505050505050565b600080600080608085870312156200037557600080fd5b84516001600160401b03808211156200038d57600080fd5b6200039b88838901620002a7565b95506020870151915080821115620003b257600080fd5b620003c088838901620002a7565b94506040870151915080821115620003d757600080fd5b620003e588838901620002a7565b93506060870151915080821115620003fc57600080fd5b506200040b87828801620002a7565b91505092959194509250565b600181811c908216806200042c57607f821691505b6020821081036200044d57634e487b7160e01b600052602260045260246000fd5b50919050565b6129fe80620004636000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046122f2565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612324565b610821565b005b3480156102da57600080fd5b506102e361083c565b6040516102a39190612397565b3480156102fc57600080fd5b5061031061030b3660046123aa565b6108ce565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36108f5565b34801561034957600080fd5b506102cc6103583660046123da565b610983565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b1366004612404565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f436600461241f565b610a9d565b34801561040557600080fd5b506103736104143660046123da565b610ace565b34801561042557600080fd5b50610297610434366004612404565b610b64565b34801561044557600080fd5b506102cc610454366004612324565b610bcd565b6102cc610bf1565b34801561046d57600080fd5b506102cc61047c36600461241f565b610ceb565b34801561048d57600080fd5b506104a161049c366004612404565b610d06565b6040516102a3919061245b565b3480156104ba57600080fd5b506102cc6104c93660046123aa565b610da8565b3480156104da57600080fd5b506103736104e93660046123aa565b610db5565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc61052836600461252b565b610e48565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b506103106105623660046123aa565b610e63565b34801561057357600080fd5b506102e3610ec3565b34801561058857600080fd5b50610373610597366004612404565b610ed0565b3480156105a857600080fd5b506102cc610f56565b3480156105bd57600080fd5b506102cc6105cc3660046123aa565b610f6a565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e3610f77565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc6106323660046123aa565b610f86565b34801561064357600080fd5b506102cc610652366004612574565b61126c565b34801561066357600080fd5b506102cc611277565b34801561067857600080fd5b506102cc6106873660046125a7565b611290565b34801561069857600080fd5b506103106106a73660046123aa565b6112c8565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e36112f2565b3480156106e357600080fd5b506102e36106f23660046123aa565b6112ff565b34801561070357600080fd5b506102cc6107123660046123aa565b611483565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc61074836600461252b565b611490565b34801561075957600080fd5b50610297610768366004612623565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b136600461264d565b6114ab565b3480156107c257600080fd5b506102cc6107d136600461252b565b6114cb565b3480156107e257600080fd5b506102cc6107f1366004612404565b6114e6565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b8261155f565b92915050565b6108296115af565b6012805460ff1916911515919091179055565b60606000805461084b906126c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610877906126c2565b80156108c45780601f10610899576101008083540402835291602001916108c4565b820191906000526020600020905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b60006108d982611609565b506000908152600460205260409020546001600160a01b031690565b600d8054610902906126c2565b80601f016020809104026020016040519081016040528092919081815260200182805461092e906126c2565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b505050505081565b600061098e82610e63565b9050806001600160a01b0316836001600160a01b031603610a005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a1c5750610a1c8133610768565b610a8e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016109f7565b610a988383611668565b505050565b610aa733826116d6565b610ac35760405162461bcd60e51b81526004016109f7906126fc565b610a98838383611755565b6000610ad983610ed0565b8210610b3b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610bc457826001600160a01b031660138281548110610b8f57610b8f612749565b6000918252602090912001546001600160a01b031603610bb25750600192915050565b80610bbc81612775565b915050610b68565b50600092915050565b610bd56115af565b60128054911515620100000262ff000019909216919091179055565b610bf96115af565b600073beed953e47cea56d58ca0ecc9a938899a21c50de6064610c1d47601e61278e565b610c2791906127ad565b604051600081818185875af1925050503d8060008114610c63576040519150601f19603f3d011682016040523d82523d6000602084013e610c68565b606091505b5050905080610c7657600080fd5b6000610c8a600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cd4576040519150601f19603f3d011682016040523d82523d6000602084013e610cd9565b606091505b5050905080610ce757600080fd5b5050565b610a9883838360405180602001604052806000815250611290565b60606000610d1383610ed0565b905060008167ffffffffffffffff811115610d3057610d3061249f565b604051908082528060200260200182016040528015610d59578160200160208202803683370190505b50905060005b82811015610da057610d718582610ace565b828281518110610d8357610d83612749565b602090810291909101015280610d9881612775565b915050610d5f565b509392505050565b610db06115af565b600e55565b6000610dc060085490565b8210610e235760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109f7565b60088281548110610e3657610e36612749565b90600052602060002001549050919050565b610e506115af565b8051610ce790600b9060208401906121d2565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109f7565b600b8054610902906126c2565b60006001600160a01b038216610f3a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016109f7565b506001600160a01b031660009081526003602052604090205490565b610f5e6115af565b610f6860006118c6565b565b610f726115af565b601055565b60606001805461084b906126c2565b60125460ff1615610fd25760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016109f7565b6000610fdd60085490565b90506000821161102f5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016109f7565b60105482111561108d5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016109f7565b600f5461109a83836127cf565b11156110e15760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109f7565b600a546001600160a01b0316331461121c5760125462010000900460ff1615156001036111ca5761111133610b64565b61115d5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016109f7565b3360009081526014602052604090205460115461117a84836127cf565b11156111c85760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f7565b505b81600e546111d8919061278e565b34101561121c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016109f7565b60015b828111610a985733600090815260146020526040812080549161124183612775565b9091555061125a90503361125583856127cf565b611918565b8061126481612775565b91505061121f565b610ce7338383611932565b61127f6115af565b6012805461ff001916610100179055565b61129a33836116d6565b6112b65760405162461bcd60e51b81526004016109f7906126fc565b6112c284848484611a00565b50505050565b601381815481106112d857600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610902906126c2565b6000818152600260205260409020546060906001600160a01b031661137e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f7565b601254610100900460ff16151560000361142457600d805461139f906126c2565b80601f01602080910402602001604051908101604052809291908181526020018280546113cb906126c2565b80156114185780601f106113ed57610100808354040283529160200191611418565b820191906000526020600020905b8154815290600101906020018083116113fb57829003601f168201915b50505050509050919050565b600061142e611a33565b9050600081511161144e576040518060200160405280600081525061147c565b8061145884611a42565b600c60405160200161146c939291906127e7565b6040516020818303038152906040525b9392505050565b61148b6115af565b601155565b6114986115af565b8051610ce790600c9060208401906121d2565b6114b36115af565b6114bf60136000612256565b610a9860138383612274565b6114d36115af565b8051610ce790600d9060208401906121d2565b6114ee6115af565b6001600160a01b0381166115535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f7565b61155c816118c6565b50565b60006001600160e01b031982166380ac58cd60e01b148061159057506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600a546001600160a01b03163314610f685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b6000818152600260205260409020546001600160a01b031661155c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109f7565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061169d82610e63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116e283610e63565b9050806001600160a01b0316846001600160a01b0316148061172957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061174d5750836001600160a01b0316611742846108ce565b6001600160a01b0316145b949350505050565b826001600160a01b031661176882610e63565b6001600160a01b03161461178e5760405162461bcd60e51b81526004016109f7906128aa565b6001600160a01b0382166117f05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109f7565b6117fd8383836001611ad5565b826001600160a01b031661181082610e63565b6001600160a01b0316146118365760405162461bcd60e51b81526004016109f7906128aa565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ce7828260405180602001604052806000815250611c15565b816001600160a01b0316836001600160a01b0316036119935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a0b848484611755565b611a1784848484611c48565b6112c25760405162461bcd60e51b81526004016109f7906128ef565b6060600b805461084b906126c2565b60606000611a4f83611d49565b600101905060008167ffffffffffffffff811115611a6f57611a6f61249f565b6040519080825280601f01601f191660200182016040528015611a99576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611aa357509392505050565b611ae184848484611e21565b6001811115611b505760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016109f7565b816001600160a01b038516611bac57611ba781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bcf565b836001600160a01b0316856001600160a01b031614611bcf57611bcf8582611ea9565b6001600160a01b038416611beb57611be681611f46565b611c0e565b846001600160a01b0316846001600160a01b031614611c0e57611c0e8482611ff5565b5050505050565b611c1f8383612039565b611c2c6000848484611c48565b610a985760405162461bcd60e51b81526004016109f7906128ef565b60006001600160a01b0384163b15611d3e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c8c903390899088908890600401612941565b6020604051808303816000875af1925050508015611cc7575060408051601f3d908101601f19168201909252611cc49181019061297e565b60015b611d24573d808015611cf5576040519150601f19603f3d011682016040523d82523d6000602084013e611cfa565b606091505b508051600003611d1c5760405162461bcd60e51b81526004016109f7906128ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174d565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611d885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611db4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611dd257662386f26fc10000830492506010015b6305f5e1008310611dea576305f5e100830492506008015b6127108310611dfe57612710830492506004015b60648310611e10576064830492506002015b600a831061081b5760010192915050565b60018111156112c2576001600160a01b03841615611e67576001600160a01b03841660009081526003602052604081208054839290611e6190849061299b565b90915550505b6001600160a01b038316156112c2576001600160a01b03831660009081526003602052604081208054839290611e9e9084906127cf565b909155505050505050565b60006001611eb684610ed0565b611ec0919061299b565b600083815260076020526040902054909150808214611f13576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f589060019061299b565b60008381526009602052604081205460088054939450909284908110611f8057611f80612749565b906000526020600020015490508060088381548110611fa157611fa1612749565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fd957611fd96129b2565b6001900381819060005260206000200160009055905550505050565b600061200083610ed0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661208f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f7565b6000818152600260205260409020546001600160a01b0316156120f45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f7565b612102600083836001611ad5565b6000818152600260205260409020546001600160a01b0316156121675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f7565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121de906126c2565b90600052602060002090601f0160209004810192826122005760008555612246565b82601f1061221957805160ff1916838001178555612246565b82800160010185558215612246579182015b8281111561224657825182559160200191906001019061222b565b506122529291506122c7565b5090565b508054600082559060005260206000209081019061155c91906122c7565b828054828255906000526020600020908101928215612246579160200282015b828111156122465781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612294565b5b8082111561225257600081556001016122c8565b6001600160e01b03198116811461155c57600080fd5b60006020828403121561230457600080fd5b813561147c816122dc565b8035801515811461231f57600080fd5b919050565b60006020828403121561233657600080fd5b61147c8261230f565b60005b8381101561235a578181015183820152602001612342565b838111156112c25750506000910152565b6000815180845261238381602086016020860161233f565b601f01601f19169290920160200192915050565b60208152600061147c602083018461236b565b6000602082840312156123bc57600080fd5b5035919050565b80356001600160a01b038116811461231f57600080fd5b600080604083850312156123ed57600080fd5b6123f6836123c3565b946020939093013593505050565b60006020828403121561241657600080fd5b61147c826123c3565b60008060006060848603121561243457600080fd5b61243d846123c3565b925061244b602085016123c3565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561249357835183529284019291840191600101612477565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124d0576124d061249f565b604051601f8501601f19908116603f011681019082821181831017156124f8576124f861249f565b8160405280935085815286868601111561251157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561253d57600080fd5b813567ffffffffffffffff81111561255457600080fd5b8201601f8101841361256557600080fd5b61174d848235602084016124b5565b6000806040838503121561258757600080fd5b612590836123c3565b915061259e6020840161230f565b90509250929050565b600080600080608085870312156125bd57600080fd5b6125c6856123c3565b93506125d4602086016123c3565b925060408501359150606085013567ffffffffffffffff8111156125f757600080fd5b8501601f8101871361260857600080fd5b612617878235602084016124b5565b91505092959194509250565b6000806040838503121561263657600080fd5b61263f836123c3565b915061259e602084016123c3565b6000806020838503121561266057600080fd5b823567ffffffffffffffff8082111561267857600080fd5b818501915085601f83011261268c57600080fd5b81358181111561269b57600080fd5b8660208260051b85010111156126b057600080fd5b60209290920196919550909350505050565b600181811c908216806126d657607f821691505b6020821081036126f657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016127875761278761275f565b5060010190565b60008160001904831182151516156127a8576127a861275f565b500290565b6000826127ca57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156127e2576127e261275f565b500190565b6000845160206127fa8285838a0161233f565b85519184019161280d8184848a0161233f565b8554920191600090600181811c908083168061282a57607f831692505b858310810361284757634e487b7160e01b85526022600452602485fd5b80801561285b576001811461286c57612899565b60ff19851688528388019550612899565b60008b81526020902060005b858110156128915781548a820152908401908801612878565b505083880195505b50939b9a5050505050505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129749083018461236b565b9695505050505050565b60006020828403121561299057600080fd5b815161147c816122dc565b6000828210156129ad576129ad61275f565b500390565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220866208cc9e2d066e6063c3f448a76e71ec487290fd7090aae14e218754b1493864736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000c416c69656e20446f6f646c65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f646f6f646c65646c6c616d612e6d7970696e6174612e636c6f75642f697066732f516d6364655a3274776a4846457976375256324d6851343473674b554b6743504e3476595a4568586a64714857332f0000000000000000000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f646f6f646c65646c6c616d612e6d7970696e6174612e636c6f75642f697066732f516d6636417a58467757586d6867734c48547475667166436739546f75566d424c3637735559436e4a73525a3350000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046122f2565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612324565b610821565b005b3480156102da57600080fd5b506102e361083c565b6040516102a39190612397565b3480156102fc57600080fd5b5061031061030b3660046123aa565b6108ce565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36108f5565b34801561034957600080fd5b506102cc6103583660046123da565b610983565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b1366004612404565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f436600461241f565b610a9d565b34801561040557600080fd5b506103736104143660046123da565b610ace565b34801561042557600080fd5b50610297610434366004612404565b610b64565b34801561044557600080fd5b506102cc610454366004612324565b610bcd565b6102cc610bf1565b34801561046d57600080fd5b506102cc61047c36600461241f565b610ceb565b34801561048d57600080fd5b506104a161049c366004612404565b610d06565b6040516102a3919061245b565b3480156104ba57600080fd5b506102cc6104c93660046123aa565b610da8565b3480156104da57600080fd5b506103736104e93660046123aa565b610db5565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc61052836600461252b565b610e48565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b506103106105623660046123aa565b610e63565b34801561057357600080fd5b506102e3610ec3565b34801561058857600080fd5b50610373610597366004612404565b610ed0565b3480156105a857600080fd5b506102cc610f56565b3480156105bd57600080fd5b506102cc6105cc3660046123aa565b610f6a565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e3610f77565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc6106323660046123aa565b610f86565b34801561064357600080fd5b506102cc610652366004612574565b61126c565b34801561066357600080fd5b506102cc611277565b34801561067857600080fd5b506102cc6106873660046125a7565b611290565b34801561069857600080fd5b506103106106a73660046123aa565b6112c8565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e36112f2565b3480156106e357600080fd5b506102e36106f23660046123aa565b6112ff565b34801561070357600080fd5b506102cc6107123660046123aa565b611483565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc61074836600461252b565b611490565b34801561075957600080fd5b50610297610768366004612623565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b136600461264d565b6114ab565b3480156107c257600080fd5b506102cc6107d136600461252b565b6114cb565b3480156107e257600080fd5b506102cc6107f1366004612404565b6114e6565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b8261155f565b92915050565b6108296115af565b6012805460ff1916911515919091179055565b60606000805461084b906126c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610877906126c2565b80156108c45780601f10610899576101008083540402835291602001916108c4565b820191906000526020600020905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b60006108d982611609565b506000908152600460205260409020546001600160a01b031690565b600d8054610902906126c2565b80601f016020809104026020016040519081016040528092919081815260200182805461092e906126c2565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b505050505081565b600061098e82610e63565b9050806001600160a01b0316836001600160a01b031603610a005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a1c5750610a1c8133610768565b610a8e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016109f7565b610a988383611668565b505050565b610aa733826116d6565b610ac35760405162461bcd60e51b81526004016109f7906126fc565b610a98838383611755565b6000610ad983610ed0565b8210610b3b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610bc457826001600160a01b031660138281548110610b8f57610b8f612749565b6000918252602090912001546001600160a01b031603610bb25750600192915050565b80610bbc81612775565b915050610b68565b50600092915050565b610bd56115af565b60128054911515620100000262ff000019909216919091179055565b610bf96115af565b600073beed953e47cea56d58ca0ecc9a938899a21c50de6064610c1d47601e61278e565b610c2791906127ad565b604051600081818185875af1925050503d8060008114610c63576040519150601f19603f3d011682016040523d82523d6000602084013e610c68565b606091505b5050905080610c7657600080fd5b6000610c8a600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cd4576040519150601f19603f3d011682016040523d82523d6000602084013e610cd9565b606091505b5050905080610ce757600080fd5b5050565b610a9883838360405180602001604052806000815250611290565b60606000610d1383610ed0565b905060008167ffffffffffffffff811115610d3057610d3061249f565b604051908082528060200260200182016040528015610d59578160200160208202803683370190505b50905060005b82811015610da057610d718582610ace565b828281518110610d8357610d83612749565b602090810291909101015280610d9881612775565b915050610d5f565b509392505050565b610db06115af565b600e55565b6000610dc060085490565b8210610e235760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109f7565b60088281548110610e3657610e36612749565b90600052602060002001549050919050565b610e506115af565b8051610ce790600b9060208401906121d2565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109f7565b600b8054610902906126c2565b60006001600160a01b038216610f3a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016109f7565b506001600160a01b031660009081526003602052604090205490565b610f5e6115af565b610f6860006118c6565b565b610f726115af565b601055565b60606001805461084b906126c2565b60125460ff1615610fd25760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016109f7565b6000610fdd60085490565b90506000821161102f5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016109f7565b60105482111561108d5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016109f7565b600f5461109a83836127cf565b11156110e15760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109f7565b600a546001600160a01b0316331461121c5760125462010000900460ff1615156001036111ca5761111133610b64565b61115d5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016109f7565b3360009081526014602052604090205460115461117a84836127cf565b11156111c85760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f7565b505b81600e546111d8919061278e565b34101561121c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016109f7565b60015b828111610a985733600090815260146020526040812080549161124183612775565b9091555061125a90503361125583856127cf565b611918565b8061126481612775565b91505061121f565b610ce7338383611932565b61127f6115af565b6012805461ff001916610100179055565b61129a33836116d6565b6112b65760405162461bcd60e51b81526004016109f7906126fc565b6112c284848484611a00565b50505050565b601381815481106112d857600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610902906126c2565b6000818152600260205260409020546060906001600160a01b031661137e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f7565b601254610100900460ff16151560000361142457600d805461139f906126c2565b80601f01602080910402602001604051908101604052809291908181526020018280546113cb906126c2565b80156114185780601f106113ed57610100808354040283529160200191611418565b820191906000526020600020905b8154815290600101906020018083116113fb57829003601f168201915b50505050509050919050565b600061142e611a33565b9050600081511161144e576040518060200160405280600081525061147c565b8061145884611a42565b600c60405160200161146c939291906127e7565b6040516020818303038152906040525b9392505050565b61148b6115af565b601155565b6114986115af565b8051610ce790600c9060208401906121d2565b6114b36115af565b6114bf60136000612256565b610a9860138383612274565b6114d36115af565b8051610ce790600d9060208401906121d2565b6114ee6115af565b6001600160a01b0381166115535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f7565b61155c816118c6565b50565b60006001600160e01b031982166380ac58cd60e01b148061159057506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600a546001600160a01b03163314610f685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b6000818152600260205260409020546001600160a01b031661155c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109f7565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061169d82610e63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116e283610e63565b9050806001600160a01b0316846001600160a01b0316148061172957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061174d5750836001600160a01b0316611742846108ce565b6001600160a01b0316145b949350505050565b826001600160a01b031661176882610e63565b6001600160a01b03161461178e5760405162461bcd60e51b81526004016109f7906128aa565b6001600160a01b0382166117f05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109f7565b6117fd8383836001611ad5565b826001600160a01b031661181082610e63565b6001600160a01b0316146118365760405162461bcd60e51b81526004016109f7906128aa565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ce7828260405180602001604052806000815250611c15565b816001600160a01b0316836001600160a01b0316036119935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a0b848484611755565b611a1784848484611c48565b6112c25760405162461bcd60e51b81526004016109f7906128ef565b6060600b805461084b906126c2565b60606000611a4f83611d49565b600101905060008167ffffffffffffffff811115611a6f57611a6f61249f565b6040519080825280601f01601f191660200182016040528015611a99576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611aa357509392505050565b611ae184848484611e21565b6001811115611b505760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016109f7565b816001600160a01b038516611bac57611ba781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bcf565b836001600160a01b0316856001600160a01b031614611bcf57611bcf8582611ea9565b6001600160a01b038416611beb57611be681611f46565b611c0e565b846001600160a01b0316846001600160a01b031614611c0e57611c0e8482611ff5565b5050505050565b611c1f8383612039565b611c2c6000848484611c48565b610a985760405162461bcd60e51b81526004016109f7906128ef565b60006001600160a01b0384163b15611d3e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c8c903390899088908890600401612941565b6020604051808303816000875af1925050508015611cc7575060408051601f3d908101601f19168201909252611cc49181019061297e565b60015b611d24573d808015611cf5576040519150601f19603f3d011682016040523d82523d6000602084013e611cfa565b606091505b508051600003611d1c5760405162461bcd60e51b81526004016109f7906128ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174d565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611d885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611db4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611dd257662386f26fc10000830492506010015b6305f5e1008310611dea576305f5e100830492506008015b6127108310611dfe57612710830492506004015b60648310611e10576064830492506002015b600a831061081b5760010192915050565b60018111156112c2576001600160a01b03841615611e67576001600160a01b03841660009081526003602052604081208054839290611e6190849061299b565b90915550505b6001600160a01b038316156112c2576001600160a01b03831660009081526003602052604081208054839290611e9e9084906127cf565b909155505050505050565b60006001611eb684610ed0565b611ec0919061299b565b600083815260076020526040902054909150808214611f13576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f589060019061299b565b60008381526009602052604081205460088054939450909284908110611f8057611f80612749565b906000526020600020015490508060088381548110611fa157611fa1612749565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fd957611fd96129b2565b6001900381819060005260206000200160009055905550505050565b600061200083610ed0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661208f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f7565b6000818152600260205260409020546001600160a01b0316156120f45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f7565b612102600083836001611ad5565b6000818152600260205260409020546001600160a01b0316156121675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f7565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121de906126c2565b90600052602060002090601f0160209004810192826122005760008555612246565b82601f1061221957805160ff1916838001178555612246565b82800160010185558215612246579182015b8281111561224657825182559160200191906001019061222b565b506122529291506122c7565b5090565b508054600082559060005260206000209081019061155c91906122c7565b828054828255906000526020600020908101928215612246579160200282015b828111156122465781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612294565b5b8082111561225257600081556001016122c8565b6001600160e01b03198116811461155c57600080fd5b60006020828403121561230457600080fd5b813561147c816122dc565b8035801515811461231f57600080fd5b919050565b60006020828403121561233657600080fd5b61147c8261230f565b60005b8381101561235a578181015183820152602001612342565b838111156112c25750506000910152565b6000815180845261238381602086016020860161233f565b601f01601f19169290920160200192915050565b60208152600061147c602083018461236b565b6000602082840312156123bc57600080fd5b5035919050565b80356001600160a01b038116811461231f57600080fd5b600080604083850312156123ed57600080fd5b6123f6836123c3565b946020939093013593505050565b60006020828403121561241657600080fd5b61147c826123c3565b60008060006060848603121561243457600080fd5b61243d846123c3565b925061244b602085016123c3565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561249357835183529284019291840191600101612477565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124d0576124d061249f565b604051601f8501601f19908116603f011681019082821181831017156124f8576124f861249f565b8160405280935085815286868601111561251157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561253d57600080fd5b813567ffffffffffffffff81111561255457600080fd5b8201601f8101841361256557600080fd5b61174d848235602084016124b5565b6000806040838503121561258757600080fd5b612590836123c3565b915061259e6020840161230f565b90509250929050565b600080600080608085870312156125bd57600080fd5b6125c6856123c3565b93506125d4602086016123c3565b925060408501359150606085013567ffffffffffffffff8111156125f757600080fd5b8501601f8101871361260857600080fd5b612617878235602084016124b5565b91505092959194509250565b6000806040838503121561263657600080fd5b61263f836123c3565b915061259e602084016123c3565b6000806020838503121561266057600080fd5b823567ffffffffffffffff8082111561267857600080fd5b818501915085601f83011261268c57600080fd5b81358181111561269b57600080fd5b8660208260051b85010111156126b057600080fd5b60209290920196919550909350505050565b600181811c908216806126d657607f821691505b6020821081036126f657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016127875761278761275f565b5060010190565b60008160001904831182151516156127a8576127a861275f565b500290565b6000826127ca57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156127e2576127e261275f565b500190565b6000845160206127fa8285838a0161233f565b85519184019161280d8184848a0161233f565b8554920191600090600181811c908083168061282a57607f831692505b858310810361284757634e487b7160e01b85526022600452602485fd5b80801561285b576001811461286c57612899565b60ff19851688528388019550612899565b60008b81526020902060005b858110156128915781548a820152908401908801612878565b505083880195505b50939b9a5050505050505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129749083018461236b565b9695505050505050565b60006020828403121561299057600080fd5b815161147c816122dc565b6000828210156129ad576129ad61275f565b500390565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220866208cc9e2d066e6063c3f448a76e71ec487290fd7090aae14e218754b1493864736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000c416c69656e20446f6f646c65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f646f6f646c65646c6c616d612e6d7970696e6174612e636c6f75642f697066732f516d6364655a3274776a4846457976375256324d6851343473674b554b6743504e3476595a4568586a64714857332f0000000000000000000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f646f6f646c65646c6c616d612e6d7970696e6174612e636c6f75642f697066732f516d6636417a58467757586d6867734c48547475667166436739546f75566d424c3637735559436e4a73525a3350000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Alien Doodle
Arg [1] : _symbol (string): AD
Arg [2] : _initBaseURI (string): https://doodledllama.mypinata.cloud/ipfs/QmcdeZ2twjHFEyv7RV2MhQ44sgKUKgCPN4vYZEhXjdqHW3/
Arg [3] : _initNotRevealedUri (string): https://doodledllama.mypinata.cloud/ipfs/Qmf6AzXFwWXmhgsLHTtufqfCg9TouVmBL67sUYCnJsRZ3P
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 416c69656e20446f6f646c650000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4144000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [9] : 68747470733a2f2f646f6f646c65646c6c616d612e6d7970696e6174612e636c
Arg [10] : 6f75642f697066732f516d6364655a3274776a4846457976375256324d685134
Arg [11] : 3473674b554b6743504e3476595a4568586a64714857332f0000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [13] : 68747470733a2f2f646f6f646c65646c6c616d612e6d7970696e6174612e636c
Arg [14] : 6f75642f697066732f516d6636417a58467757586d6867734c48547475667166
Arg [15] : 436739546f75566d424c3637735559436e4a73525a3350000000000000000000
Deployed Bytecode Sourcemap
62506:4378:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56490:224;;;;;;;;;;-1:-1:-1;56490:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;56490:224:0;;;;;;;;66261:73;;;;;;;;;;-1:-1:-1;66261:73:0;;;;;:::i;:::-;;:::i;:::-;;40552:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42064:171::-;;;;;;;;;;-1:-1:-1;42064:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;42064:171:0;1878:203:1;62661:28:0;;;;;;;;;;;;;:::i;41582:416::-;;;;;;;;;;-1:-1:-1;41582:416:0;;;;;:::i;:::-;;:::i;62694:31::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;62694:31:0;2523:177:1;57130:113:0;;;;;;;;;;-1:-1:-1;57218:10:0;:17;57130:113;;62990:55;;;;;;;;;;-1:-1:-1;62990:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;62765:32;;;;;;;;;;;;;;;;42764:335;;;;;;;;;;-1:-1:-1;42764:335:0;;;;;:::i;:::-;;:::i;56798:256::-;;;;;;;;;;-1:-1:-1;56798:256:0;;;;;:::i;:::-;;:::i;64390:239::-;;;;;;;;;;-1:-1:-1;64390:239:0;;;;;:::i;:::-;;:::i;66342:95::-;;;;;;;;;;-1:-1:-1;66342:95:0;;;;;:::i;:::-;;:::i;66596:285::-;;;:::i;43170:185::-;;;;;;;;;;-1:-1:-1;43170:185:0;;;;;:::i;:::-;;:::i;64635:348::-;;;;;;;;;;-1:-1:-1;64635:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65693:80::-;;;;;;;;;;-1:-1:-1;65693:80:0;;;;;:::i;:::-;;:::i;57320:233::-;;;;;;;;;;-1:-1:-1;57320:233:0;;;;;:::i;:::-;;:::i;62876:28::-;;;;;;;;;;-1:-1:-1;62876:28:0;;;;;;;;;;;65901:98;;;;;;;;;;-1:-1:-1;65901:98:0;;;;;:::i;:::-;;:::i;62846:25::-;;;;;;;;;;-1:-1:-1;62846:25:0;;;;;;;;40262:223;;;;;;;;;;-1:-1:-1;40262:223:0;;;;;:::i;:::-;;:::i;62593:21::-;;;;;;;;;;;;;:::i;39993:207::-;;;;;;;;;;-1:-1:-1;39993:207:0;;;;;:::i;:::-;;:::i;17975:103::-;;;;;;;;;;;;;:::i;65779:116::-;;;;;;;;;;-1:-1:-1;65779:116:0;;;;;:::i;:::-;;:::i;17327:87::-;;;;;;;;;;-1:-1:-1;17400:6:0;;-1:-1:-1;;;;;17400:6:0;17327:87;;40721:104;;;;;;;;;;;;;:::i;62909:34::-;;;;;;;;;;-1:-1:-1;62909:34:0;;;;;;;;;;;63445:937;;;;;;:::i;:::-;;:::i;42307:155::-;;;;;;;;;;-1:-1:-1;42307:155:0;;;;;:::i;:::-;;:::i;65508:65::-;;;;;;;;;;;;;:::i;43426:322::-;;;;;;;;;;-1:-1:-1;43426:322:0;;;;;:::i;:::-;;:::i;62948:37::-;;;;;;;;;;-1:-1:-1;62948:37:0;;;;;:::i;:::-;;:::i;62802:39::-;;;;;;;;;;;;;;;;62619:37;;;;;;;;;;;;;:::i;64989:497::-;;;;;;;;;;-1:-1:-1;64989:497:0;;;;;:::i;:::-;;:::i;65581:104::-;;;;;;;;;;-1:-1:-1;65581:104:0;;;;;:::i;:::-;;:::i;62730:30::-;;;;;;;;;;;;;;;;66005:122;;;;;;;;;;-1:-1:-1;66005:122:0;;;;;:::i;:::-;;:::i;42533:164::-;;;;;;;;;;-1:-1:-1;42533:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42654:25:0;;;42630:4;42654:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42533:164;66445:144;;;;;;;;;;-1:-1:-1;66445:144:0;;;;;:::i;:::-;;:::i;66135:120::-;;;;;;;;;;-1:-1:-1;66135:120:0;;;;;:::i;:::-;;:::i;18233:201::-;;;;;;;;;;-1:-1:-1;18233:201:0;;;;;:::i;:::-;;:::i;56490:224::-;56592:4;-1:-1:-1;;;;;;56616:50:0;;-1:-1:-1;;;56616:50:0;;:90;;;56670:36;56694:11;56670:23;:36::i;:::-;56609:97;56490:224;-1:-1:-1;;56490:224:0:o;66261:73::-;17213:13;:11;:13::i;:::-;66313:6:::1;:15:::0;;-1:-1:-1;;66313:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;66261:73::o;40552:100::-;40606:13;40639:5;40632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40552:100;:::o;42064:171::-;42140:7;42160:23;42175:7;42160:14;:23::i;:::-;-1:-1:-1;42203:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42203:24:0;;42064:171::o;62661:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41582:416::-;41663:13;41679:23;41694:7;41679:14;:23::i;:::-;41663:39;;41727:5;-1:-1:-1;;;;;41721:11:0;:2;-1:-1:-1;;;;;41721:11:0;;41713:57;;;;-1:-1:-1;;;41713:57:0;;7494:2:1;41713:57:0;;;7476:21:1;7533:2;7513:18;;;7506:30;7572:34;7552:18;;;7545:62;-1:-1:-1;;;7623:18:1;;;7616:31;7664:19;;41713:57:0;;;;;;;;;15958:10;-1:-1:-1;;;;;41805:21:0;;;;:62;;-1:-1:-1;41830:37:0;41847:5;15958:10;42533:164;:::i;41830:37::-;41783:173;;;;-1:-1:-1;;;41783:173:0;;7896:2:1;41783:173:0;;;7878:21:1;7935:2;7915:18;;;7908:30;7974:34;7954:18;;;7947:62;8045:31;8025:18;;;8018:59;8094:19;;41783:173:0;7694:425:1;41783:173:0;41969:21;41978:2;41982:7;41969:8;:21::i;:::-;41652:346;41582:416;;:::o;42764:335::-;42959:41;15958:10;42992:7;42959:18;:41::i;:::-;42951:99;;;;-1:-1:-1;;;42951:99:0;;;;;;;:::i;:::-;43063:28;43073:4;43079:2;43083:7;43063:9;:28::i;56798:256::-;56895:7;56931:23;56948:5;56931:16;:23::i;:::-;56923:5;:31;56915:87;;;;-1:-1:-1;;;56915:87:0;;8740:2:1;56915:87:0;;;8722:21:1;8779:2;8759:18;;;8752:30;8818:34;8798:18;;;8791:62;-1:-1:-1;;;8869:18:1;;;8862:41;8920:19;;56915:87:0;8538:407:1;56915:87:0;-1:-1:-1;;;;;;57020:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;56798:256::o;64390:239::-;64449:4;;64462:143;64483:20;:27;64479:31;;64462:143;;;64557:5;-1:-1:-1;;;;;64530:32:0;:20;64551:1;64530:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;64530:23:0;:32;64526:72;;-1:-1:-1;64584:4:0;;64390:239;-1:-1:-1;;64390:239:0:o;64526:72::-;64512:3;;;;:::i;:::-;;;;64462:143;;;-1:-1:-1;64618:5:0;;64390:239;-1:-1:-1;;64390:239:0:o;66342:95::-;17213:13;:11;:13::i;:::-;66407:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;66407:24:0;;::::1;::::0;;;::::1;::::0;;66342:95::o;66596:285::-;17213:13;:11;:13::i;:::-;66649:7:::1;66670:42;66755:3;66726:26;:21;66750:2;66726:26;:::i;:::-;:32;;;;:::i;:::-;66662:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66648:115;;;66778:2;66770:11;;;::::0;::::1;;66789:7;66810;17400:6:::0;;-1:-1:-1;;;;;17400:6:0;;17327:87;66810:7:::1;-1:-1:-1::0;;;;;66802:21:0::1;66831;66802:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66788:69;;;66872:2;66864:11;;;::::0;::::1;;66641:240;;66596:285::o:0;43170:185::-;43308:39;43325:4;43331:2;43335:7;43308:39;;;;;;;;;;;;:16;:39::i;64635:348::-;64710:16;64738:23;64764:17;64774:6;64764:9;:17::i;:::-;64738:43;;64788:25;64830:15;64816:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64816:30:0;;64788:58;;64858:9;64853:103;64873:15;64869:1;:19;64853:103;;;64918:30;64938:6;64946:1;64918:19;:30::i;:::-;64904:8;64913:1;64904:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;64890:3;;;;:::i;:::-;;;;64853:103;;;-1:-1:-1;64969:8:0;64635:348;-1:-1:-1;;;64635:348:0:o;65693:80::-;17213:13;:11;:13::i;:::-;65752:4:::1;:15:::0;65693:80::o;57320:233::-;57395:7;57431:30;57218:10;:17;;57130:113;57431:30;57423:5;:38;57415:95;;;;-1:-1:-1;;;57415:95:0;;10293:2:1;57415:95:0;;;10275:21:1;10332:2;10312:18;;;10305:30;10371:34;10351:18;;;10344:62;-1:-1:-1;;;10422:18:1;;;10415:42;10474:19;;57415:95:0;10091:408:1;57415:95:0;57528:10;57539:5;57528:17;;;;;;;;:::i;:::-;;;;;;;;;57521:24;;57320:233;;;:::o;65901:98::-;17213:13;:11;:13::i;:::-;65972:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;40262:223::-:0;40334:7;45149:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45149:16:0;;40398:56;;;;-1:-1:-1;;;40398:56:0;;10706:2:1;40398:56:0;;;10688:21:1;10745:2;10725:18;;;10718:30;-1:-1:-1;;;10764:18:1;;;10757:54;10828:18;;40398:56:0;10504:348:1;62593:21:0;;;;;;;:::i;39993:207::-;40065:7;-1:-1:-1;;;;;40093:19:0;;40085:73;;;;-1:-1:-1;;;40085:73:0;;11059:2:1;40085:73:0;;;11041:21:1;11098:2;11078:18;;;11071:30;11137:34;11117:18;;;11110:62;-1:-1:-1;;;11188:18:1;;;11181:39;11237:19;;40085:73:0;10857:405:1;40085:73:0;-1:-1:-1;;;;;;40176:16:0;;;;;:9;:16;;;;;;;39993:207::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;65779:116::-;17213:13;:11;:13::i;:::-;65856::::1;:33:::0;65779:116::o;40721:104::-;40777:13;40810:7;40803:14;;;;;:::i;63445:937::-;63511:6;;;;63510:7;63502:42;;;;-1:-1:-1;;;63502:42:0;;11469:2:1;63502:42:0;;;11451:21:1;11508:2;11488:18;;;11481:30;-1:-1:-1;;;11527:18:1;;;11520:52;11589:18;;63502:42:0;11267:346:1;63502:42:0;63551:14;63568:13;57218:10;:17;;57130:113;63568:13;63551:30;;63610:1;63596:11;:15;63588:55;;;;-1:-1:-1;;;63588:55:0;;11820:2:1;63588:55:0;;;11802:21:1;11859:2;11839:18;;;11832:30;11898:29;11878:18;;;11871:57;11945:18;;63588:55:0;11618:351:1;63588:55:0;63673:13;;63658:11;:28;;63650:77;;;;-1:-1:-1;;;63650:77:0;;12176:2:1;63650:77:0;;;12158:21:1;12215:2;12195:18;;;12188:30;12254:34;12234:18;;;12227:62;-1:-1:-1;;;12305:18:1;;;12298:34;12349:19;;63650:77:0;11974:400:1;63650:77:0;63766:9;;63742:20;63751:11;63742:6;:20;:::i;:::-;:33;;63734:68;;;;-1:-1:-1;;;63734:68:0;;12714:2:1;63734:68:0;;;12696:21:1;12753:2;12733:18;;;12726:30;-1:-1:-1;;;12772:18:1;;;12765:52;12834:18;;63734:68:0;12512:346:1;63734:68:0;17400:6;;-1:-1:-1;;;;;17400:6:0;63815:10;:21;63811:416;;63852:15;;;;;;;:23;;63871:4;63852:23;63849:298;;63900:25;63914:10;63900:13;:25::i;:::-;63892:61;;;;-1:-1:-1;;;63892:61:0;;13065:2:1;63892:61:0;;;13047:21:1;13104:2;13084:18;;;13077:30;13143:25;13123:18;;;13116:53;13186:18;;63892:61:0;12863:347:1;63892:61:0;64016:10;63968:24;63995:32;;;:20;:32;;;;;;64084:18;;64050:30;64069:11;63995:32;64050:30;:::i;:::-;:52;;64042:93;;;;-1:-1:-1;;;64042:93:0;;13417:2:1;64042:93:0;;;13399:21:1;13456:2;13436:18;;;13429:30;13495;13475:18;;;13468:58;13543:18;;64042:93:0;13215:352:1;64042:93:0;63877:270;63849:298;64185:11;64178:4;;:18;;;;:::i;:::-;64165:9;:31;;64157:62;;;;-1:-1:-1;;;64157:62:0;;13774:2:1;64157:62:0;;;13756:21:1;13813:2;13793:18;;;13786:30;-1:-1:-1;;;13832:18:1;;;13825:48;13890:18;;64157:62:0;13572:342:1;64157:62:0;64256:1;64239:138;64264:11;64259:1;:16;64239:138;;64314:10;64293:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;64336:33:0;;-1:-1:-1;64346:10:0;64358;64367:1;64358:6;:10;:::i;:::-;64336:9;:33::i;:::-;64277:3;;;;:::i;:::-;;;;64239:138;;42307:155;42402:52;15958:10;42435:8;42445;42402:18;:52::i;65508:65::-;17213:13;:11;:13::i;:::-;65552:8:::1;:15:::0;;-1:-1:-1;;65552:15:0::1;;;::::0;;65508:65::o;43426:322::-;43600:41;15958:10;43633:7;43600:18;:41::i;:::-;43592:99;;;;-1:-1:-1;;;43592:99:0;;;;;;;:::i;:::-;43702:38;43716:4;43722:2;43726:7;43735:4;43702:13;:38::i;:::-;43426:322;;;;:::o;62948:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62948:37:0;;-1:-1:-1;62948:37:0;:::o;62619:::-;;;;;;;:::i;64989:497::-;45551:4;45149:16;;;:7;:16;;;;;;65087:13;;-1:-1:-1;;;;;45149:16:0;65112:97;;;;-1:-1:-1;;;65112:97:0;;14121:2:1;65112:97:0;;;14103:21:1;14160:2;14140:18;;;14133:30;14199:34;14179:18;;;14172:62;-1:-1:-1;;;14250:18:1;;;14243:45;14305:19;;65112:97:0;13919:411:1;65112:97:0;65225:8;;;;;;;:17;;65237:5;65225:17;65222:62;;65262:14;65255:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64989:497;;;:::o;65222:62::-;65292:28;65323:10;:8;:10::i;:::-;65292:41;;65378:1;65353:14;65347:28;:32;:133;;;;;;;;;;;;;;;;;65415:14;65431:18;:7;:16;:18::i;:::-;65451:13;65398:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65347:133;65340:140;64989:497;-1:-1:-1;;;64989:497:0:o;65581:104::-;17213:13;:11;:13::i;:::-;65652:18:::1;:27:::0;65581:104::o;66005:122::-;17213:13;:11;:13::i;:::-;66088:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;66445:144::-:0;17213:13;:11;:13::i;:::-;66520:27:::1;66527:20;;66520:27;:::i;:::-;66554:29;:20;66577:6:::0;;66554:29:::1;:::i;66135:120::-:0;17213:13;:11;:13::i;:::-;66217:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;18233:201::-:0;17213:13;:11;:13::i;:::-;-1:-1:-1;;;;;18322:22:0;::::1;18314:73;;;::::0;-1:-1:-1;;;18314:73:0;;16195:2:1;18314:73:0::1;::::0;::::1;16177:21:1::0;16234:2;16214:18;;;16207:30;16273:34;16253:18;;;16246:62;-1:-1:-1;;;16324:18:1;;;16317:36;16370:19;;18314:73:0::1;15993:402:1::0;18314:73:0::1;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;39624:305::-;39726:4;-1:-1:-1;;;;;;39763:40:0;;-1:-1:-1;;;39763:40:0;;:105;;-1:-1:-1;;;;;;;39820:48:0;;-1:-1:-1;;;39820:48:0;39763:105;:158;;;-1:-1:-1;;;;;;;;;;31165:40:0;;;39885:36;31056:157;17492:132;17400:6;;-1:-1:-1;;;;;17400:6:0;15958:10;17556:23;17548:68;;;;-1:-1:-1;;;17548:68:0;;16602:2:1;17548:68:0;;;16584:21:1;;;16621:18;;;16614:30;16680:34;16660:18;;;16653:62;16732:18;;17548:68:0;16400:356:1;51883:135:0;45551:4;45149:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45149:16:0;51957:53;;;;-1:-1:-1;;;51957:53:0;;10706:2:1;51957:53:0;;;10688:21:1;10745:2;10725:18;;;10718:30;-1:-1:-1;;;10764:18:1;;;10757:54;10828:18;;51957:53:0;10504:348:1;51162:174:0;51237:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;51237:29:0;-1:-1:-1;;;;;51237:29:0;;;;;;;;:24;;51291:23;51237:24;51291:14;:23::i;:::-;-1:-1:-1;;;;;51282:46:0;;;;;;;;;;;51162:174;;:::o;45781:264::-;45874:4;45891:13;45907:23;45922:7;45907:14;:23::i;:::-;45891:39;;45960:5;-1:-1:-1;;;;;45949:16:0;:7;-1:-1:-1;;;;;45949:16:0;;:52;;;-1:-1:-1;;;;;;42654:25:0;;;42630:4;42654:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;45969:32;45949:87;;;;46029:7;-1:-1:-1;;;;;46005:31:0;:20;46017:7;46005:11;:20::i;:::-;-1:-1:-1;;;;;46005:31:0;;45949:87;45941:96;45781:264;-1:-1:-1;;;;45781:264:0:o;49780:1263::-;49939:4;-1:-1:-1;;;;;49912:31:0;:23;49927:7;49912:14;:23::i;:::-;-1:-1:-1;;;;;49912:31:0;;49904:81;;;;-1:-1:-1;;;49904:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50004:16:0;;49996:65;;;;-1:-1:-1;;;49996:65:0;;17369:2:1;49996:65:0;;;17351:21:1;17408:2;17388:18;;;17381:30;17447:34;17427:18;;;17420:62;-1:-1:-1;;;17498:18:1;;;17491:34;17542:19;;49996:65:0;17167:400:1;49996:65:0;50074:42;50095:4;50101:2;50105:7;50114:1;50074:20;:42::i;:::-;50246:4;-1:-1:-1;;;;;50219:31:0;:23;50234:7;50219:14;:23::i;:::-;-1:-1:-1;;;;;50219:31:0;;50211:81;;;;-1:-1:-1;;;50211:81:0;;;;;;;:::i;:::-;50364:24;;;;:15;:24;;;;;;;;50357:31;;-1:-1:-1;;;;;;50357:31:0;;;;;;-1:-1:-1;;;;;50840:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;50840:20:0;;;50875:13;;;;;;;;;:18;;50357:31;50875:18;;;50915:16;;;:7;:16;;;;;;:21;;;;;;;;;;50954:27;;50380:7;;50954:27;;;41652:346;41582:416;;:::o;18594:191::-;18687:6;;;-1:-1:-1;;;;;18704:17:0;;;-1:-1:-1;;;;;;18704:17:0;;;;;;;18737:40;;18687:6;;;18704:17;18687:6;;18737:40;;18668:16;;18737:40;18657:128;18594:191;:::o;46387:110::-;46463:26;46473:2;46477:7;46463:26;;;;;;;;;;;;:9;:26::i;51479:315::-;51634:8;-1:-1:-1;;;;;51625:17:0;:5;-1:-1:-1;;;;;51625:17:0;;51617:55;;;;-1:-1:-1;;;51617:55:0;;17774:2:1;51617:55:0;;;17756:21:1;17813:2;17793:18;;;17786:30;17852:27;17832:18;;;17825:55;17897:18;;51617:55:0;17572:349:1;51617:55:0;-1:-1:-1;;;;;51683:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51683:46:0;;;;;;;;;;51745:41;;540::1;;;51745::0;;513:18:1;51745:41:0;;;;;;;51479:315;;;:::o;44629:313::-;44785:28;44795:4;44801:2;44805:7;44785:9;:28::i;:::-;44832:47;44855:4;44861:2;44865:7;44874:4;44832:22;:47::i;:::-;44824:110;;;;-1:-1:-1;;;44824:110:0;;;;;;;:::i;63324:102::-;63384:13;63413:7;63406:14;;;;;:::i;13305:716::-;13361:13;13412:14;13429:17;13440:5;13429:10;:17::i;:::-;13449:1;13429:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13488:18:0;-1:-1:-1;13465:41:0;-1:-1:-1;13630:28:0;;;13646:2;13630:28;13687:288;-1:-1:-1;;13719:5:0;-1:-1:-1;;;13856:2:0;13845:14;;13840:30;13719:5;13827:44;13917:2;13908:11;;;-1:-1:-1;13938:21:0;13687:288;13938:21;-1:-1:-1;13996:6:0;13305:716;-1:-1:-1;;;13305:716:0:o;57627:915::-;57804:61;57831:4;57837:2;57841:12;57855:9;57804:26;:61::i;:::-;57894:1;57882:9;:13;57878:222;;;58025:63;;-1:-1:-1;;;58025:63:0;;18547:2:1;58025:63:0;;;18529:21:1;18586:2;18566:18;;;18559:30;18625:34;18605:18;;;18598:62;-1:-1:-1;;;18676:18:1;;;18669:51;18737:19;;58025:63:0;18345:417:1;57878:222:0;58130:12;-1:-1:-1;;;;;58159:18:0;;58155:187;;58194:40;58226:7;59369:10;:17;;59342:24;;;;:15;:24;;;;;:44;;;59397:24;;;;;;;;;;;;59265:164;58194:40;58155:187;;;58264:2;-1:-1:-1;;;;;58256:10:0;:4;-1:-1:-1;;;;;58256:10:0;;58252:90;;58283:47;58316:4;58322:7;58283:32;:47::i;:::-;-1:-1:-1;;;;;58356:16:0;;58352:183;;58389:45;58426:7;58389:36;:45::i;:::-;58352:183;;;58462:4;-1:-1:-1;;;;;58456:10:0;:2;-1:-1:-1;;;;;58456:10:0;;58452:83;;58483:40;58511:2;58515:7;58483:27;:40::i;:::-;57793:749;57627:915;;;;:::o;46724:319::-;46853:18;46859:2;46863:7;46853:5;:18::i;:::-;46904:53;46935:1;46939:2;46943:7;46952:4;46904:22;:53::i;:::-;46882:153;;;;-1:-1:-1;;;46882:153:0;;;;;;;:::i;52582:853::-;52736:4;-1:-1:-1;;;;;52757:13:0;;20320:19;:23;52753:675;;52793:71;;-1:-1:-1;;;52793:71:0;;-1:-1:-1;;;;;52793:36:0;;;;;:71;;15958:10;;52844:4;;52850:7;;52859:4;;52793:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52793:71:0;;;;;;;;-1:-1:-1;;52793:71:0;;;;;;;;;;;;:::i;:::-;;;52789:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53034:6;:13;53051:1;53034:18;53030:328;;53077:60;;-1:-1:-1;;;53077:60:0;;;;;;;:::i;53030:328::-;53308:6;53302:13;53293:6;53289:2;53285:15;53278:38;52789:584;-1:-1:-1;;;;;;52915:51:0;-1:-1:-1;;;52915:51:0;;-1:-1:-1;52908:58:0;;52753:675;-1:-1:-1;53412:4:0;52582:853;;;;;;:::o;10171:922::-;10224:7;;-1:-1:-1;;;10302:15:0;;10298:102;;-1:-1:-1;;;10338:15:0;;;-1:-1:-1;10382:2:0;10372:12;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;-1:-1:-1;10498:2:0;10488:12;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;-1:-1:-1;10614:2:0;10604:12;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;-1:-1:-1;10728:1:0;10718:11;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;-1:-1:-1;10841:1:0;10831:11;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;-1:-1:-1;10954:1:0;10944:11;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;11079:6;10171:922;-1:-1:-1;;10171:922:0:o;54167:410::-;54357:1;54345:9;:13;54341:229;;;-1:-1:-1;;;;;54379:18:0;;;54375:87;;-1:-1:-1;;;;;54418:15:0;;;;;;:9;:15;;;;;:28;;54437:9;;54418:15;:28;;54437:9;;54418:28;:::i;:::-;;;;-1:-1:-1;;54375:87:0;-1:-1:-1;;;;;54480:16:0;;;54476:83;;-1:-1:-1;;;;;54517:13:0;;;;;;:9;:13;;;;;:26;;54534:9;;54517:13;:26;;54534:9;;54517:26;:::i;:::-;;;;-1:-1:-1;;54167:410:0;;;;:::o;60056:988::-;60322:22;60372:1;60347:22;60364:4;60347:16;:22::i;:::-;:26;;;;:::i;:::-;60384:18;60405:26;;;:17;:26;;;;;;60322:51;;-1:-1:-1;60538:28:0;;;60534:328;;-1:-1:-1;;;;;60605:18:0;;60583:19;60605:18;;;:12;:18;;;;;;;;:34;;;;;;;;;60656:30;;;;;;:44;;;60773:30;;:17;:30;;;;;:43;;;60534:328;-1:-1:-1;60958:26:0;;;;:17;:26;;;;;;;;60951:33;;;-1:-1:-1;;;;;61002:18:0;;;;;:12;:18;;;;;:34;;;;;;;60995:41;60056:988::o;61339:1079::-;61617:10;:17;61592:22;;61617:21;;61637:1;;61617:21;:::i;:::-;61649:18;61670:24;;;:15;:24;;;;;;62043:10;:26;;61592:46;;-1:-1:-1;61670:24:0;;61592:46;;62043:26;;;;;;:::i;:::-;;;;;;;;;62021:48;;62107:11;62082:10;62093;62082:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;62187:28;;;:15;:28;;;;;;;:41;;;62359:24;;;;;62352:31;62394:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;61410:1008;;;61339:1079;:::o;58843:221::-;58928:14;58945:20;58962:2;58945:16;:20::i;:::-;-1:-1:-1;;;;;58976:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;59021:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;58843:221:0:o;47379:942::-;-1:-1:-1;;;;;47459:16:0;;47451:61;;;;-1:-1:-1;;;47451:61:0;;19979:2:1;47451:61:0;;;19961:21:1;;;19998:18;;;19991:30;20057:34;20037:18;;;20030:62;20109:18;;47451:61:0;19777:356:1;47451:61:0;45551:4;45149:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45149:16:0;45575:31;47523:58;;;;-1:-1:-1;;;47523:58:0;;20340:2:1;47523:58:0;;;20322:21:1;20379:2;20359:18;;;20352:30;20418;20398:18;;;20391:58;20466:18;;47523:58:0;20138:352:1;47523:58:0;47594:48;47623:1;47627:2;47631:7;47640:1;47594:20;:48::i;:::-;45551:4;45149:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45149:16:0;45575:31;47732:58;;;;-1:-1:-1;;;47732:58:0;;20340:2:1;47732:58:0;;;20322:21:1;20379:2;20359:18;;;20352:30;20418;20398:18;;;20391:58;20466:18;;47732:58:0;20138:352:1;47732:58:0;-1:-1:-1;;;;;48139:13:0;;;;;;:9;:13;;;;;;;;:18;;48156:1;48139:18;;;48181:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48181:21:0;;;;;48220:33;48189:7;;48139:13;;48220:33;;48139:13;;48220:33;66641:240:::1;;66596:285::o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:615::-;6373:6;6381;6434:2;6422:9;6413:7;6409:23;6405:32;6402:52;;;6450:1;6447;6440:12;6402:52;6490:9;6477:23;6519:18;6560:2;6552:6;6549:14;6546:34;;;6576:1;6573;6566:12;6546:34;6614:6;6603:9;6599:22;6589:32;;6659:7;6652:4;6648:2;6644:13;6640:27;6630:55;;6681:1;6678;6671:12;6630:55;6721:2;6708:16;6747:2;6739:6;6736:14;6733:34;;;6763:1;6760;6753:12;6733:34;6816:7;6811:2;6801:6;6798:1;6794:14;6790:2;6786:23;6782:32;6779:45;6776:65;;;6837:1;6834;6827:12;6776:65;6868:2;6860:11;;;;;6890:6;;-1:-1:-1;6287:615:1;;-1:-1:-1;;;;6287:615:1:o;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;8124:409::-;8326:2;8308:21;;;8365:2;8345:18;;;8338:30;8404:34;8399:2;8384:18;;8377:62;-1:-1:-1;;;8470:2:1;8455:18;;8448:43;8523:3;8508:19;;8124:409::o;8950:127::-;9011:10;9006:3;9002:20;8999:1;8992:31;9042:4;9039:1;9032:15;9066:4;9063:1;9056:15;9082:127;9143:10;9138:3;9134:20;9131:1;9124:31;9174:4;9171:1;9164:15;9198:4;9195:1;9188:15;9214:135;9253:3;9274:17;;;9271:43;;9294:18;;:::i;:::-;-1:-1:-1;9341:1:1;9330:13;;9214:135::o;9354:168::-;9394:7;9460:1;9456;9452:6;9448:14;9445:1;9442:21;9437:1;9430:9;9423:17;9419:45;9416:71;;;9467:18;;:::i;:::-;-1:-1:-1;9507:9:1;;9354:168::o;9659:217::-;9699:1;9725;9715:132;;9769:10;9764:3;9760:20;9757:1;9750:31;9804:4;9801:1;9794:15;9832:4;9829:1;9822:15;9715:132;-1:-1:-1;9861:9:1;;9659:217::o;12379:128::-;12419:3;12450:1;12446:6;12443:1;12440:13;12437:39;;;12456:18;;:::i;:::-;-1:-1:-1;12492:9:1;;12379:128::o;14461:1527::-;14685:3;14723:6;14717:13;14749:4;14762:51;14806:6;14801:3;14796:2;14788:6;14784:15;14762:51;:::i;:::-;14876:13;;14835:16;;;;14898:55;14876:13;14835:16;14920:15;;;14898:55;:::i;:::-;15042:13;;14975:20;;;15015:1;;15102;15124:18;;;;15177;;;;15204:93;;15282:4;15272:8;15268:19;15256:31;;15204:93;15345:2;15335:8;15332:16;15312:18;15309:40;15306:167;;-1:-1:-1;;;15372:33:1;;15428:4;15425:1;15418:15;15458:4;15379:3;15446:17;15306:167;15489:18;15516:110;;;;15640:1;15635:328;;;;15482:481;;15516:110;-1:-1:-1;;15551:24:1;;15537:39;;15596:20;;;;-1:-1:-1;15516:110:1;;15635:328;14408:1;14401:14;;;14445:4;14432:18;;15730:1;15744:169;15758:8;15755:1;15752:15;15744:169;;;15840:14;;15825:13;;;15818:37;15883:16;;;;15775:10;;15744:169;;;15748:3;;15944:8;15937:5;15933:20;15926:27;;15482:481;-1:-1:-1;15979:3:1;;14461:1527;-1:-1:-1;;;;;;;;;;;14461:1527:1:o;16761:401::-;16963:2;16945:21;;;17002:2;16982:18;;;16975:30;17041:34;17036:2;17021:18;;17014:62;-1:-1:-1;;;17107:2:1;17092:18;;17085:35;17152:3;17137:19;;16761:401::o;17926:414::-;18128:2;18110:21;;;18167:2;18147:18;;;18140:30;18206:34;18201:2;18186:18;;18179:62;-1:-1:-1;;;18272:2:1;18257:18;;18250:48;18330:3;18315:19;;17926:414::o;18767:489::-;-1:-1:-1;;;;;19036:15:1;;;19018:34;;19088:15;;19083:2;19068:18;;19061:43;19135:2;19120:18;;19113:34;;;19183:3;19178:2;19163:18;;19156:31;;;18961:4;;19204:46;;19230:19;;19222:6;19204:46;:::i;:::-;19196:54;18767:489;-1:-1:-1;;;;;;18767:489:1:o;19261:249::-;19330:6;19383:2;19371:9;19362:7;19358:23;19354:32;19351:52;;;19399:1;19396;19389:12;19351:52;19431:9;19425:16;19450:30;19474:5;19450:30;:::i;19515:125::-;19555:4;19583:1;19580;19577:8;19574:34;;;19588:18;;:::i;:::-;-1:-1:-1;19625:9:1;;19515:125::o;19645:127::-;19706:10;19701:3;19697:20;19694:1;19687:31;19737:4;19734:1;19727:15;19761:4;19758:1;19751:15
Swarm Source
ipfs://866208cc9e2d066e6063c3f448a76e71ec487290fd7090aae14e218754b14938
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.