Overview
TokenID
798
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ArtVial
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-19 */ // SPDX-License-Identifier: MIT // File: Interfaces/IERC721Burn.sol pragma solidity ^0.8.13; interface IERC721Burn{ function burn(uint256 tokenId) external; } // File: opensea-enforcement/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: opensea-enforcement/OperatorFilterer.sol pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } // File: opensea-enforcement/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // 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) public _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(), ".json")) : ""; } /** * @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/ERC721Burnable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _burn(tokenId); } } // 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: phase1.sol pragma solidity ^0.8.13; /* @title ArtVial claim of B&O DNA Collection @author Dastageer Sayed @notice NFT collection follows ERC721 standard to create different kind of art vials, and also keep record of each NFTId that is psudo-randomly generated, and passed as token Id. If the user owns B&O DNA Collection:Phase1 NFT, then only they can claim the vial. Once a vial is claimed for certain NFTId, it cannot be reclaimed again. */ contract ArtVial is ERC721, ERC721Burnable,DefaultOperatorFilterer, ERC721Enumerable, Ownable{ using Counters for Counters.Counter; Counters.Counter private _nonce; bool public toggle; uint16[] private _randomNumbers; address public phase1Address; string private URI; uint256 public revealTime; mapping(address => uint256[]) public userNftId; mapping(uint256 => bool) public alreadyClaimed; event revealTimer(uint256 revealTime); constructor(string memory _name, string memory _symbol, address _phase1Address) ERC721(_name,_symbol) { phase1Address = _phase1Address; for(uint16 i = 0; i < 1925; i++){ _randomNumbers.push(i); } } /* @notice Returns the psudo-random number @dev This function will generated random number */ function _generateRandomNumber() internal returns(uint256 randomNumber){ uint256 salt = _nonce.current(); randomNumber = uint256( keccak256( abi.encode( msg.sender, tx.gasprice, block.number, block.timestamp, block.difficulty, blockhash(block.number - 1), address(this), salt ) ) ); _nonce.increment(); } /* @notice Returns randomly generated tokenId @dev This function takes the random number generated and cut it down between the range of 0-1924, the selected number will be then popped out of the array and will be given as tokenID while minting NFT */ function randomTokenId() internal returns(uint256 resultNumber){ uint256 randomIndex = _generateRandomNumber() % _randomNumbers.length; resultNumber = _randomNumbers[randomIndex]; _randomNumbers[randomIndex] = _randomNumbers[_randomNumbers.length - 1]; _randomNumbers.pop(); return resultNumber; } /* @dev This function will check the phase1 tokenID, and mint a new NFT with random tokenID, before calling this function make sure you have own B&O DNA Collection:Phase1 NFT @params NFTId: B&O DNA Collection:Phase1 NFT tokenId for verification of ownership */ function claim(uint256 phase1NFTId) external { require(toggle == true, "ArtVial: Toggle is off"); require(revealTime !=0, "ArtVial: Set revel Timer"); require(block.timestamp > revealTime, "ArtVial: Claim has not started yet"); require(IERC721(phase1Address).ownerOf(phase1NFTId) == msg.sender, "ArtVial: You are not the owner of Phase1 NFT"); require(alreadyClaimed[phase1NFTId] == false, "ArtVial: NFT already claimed for this token"); require(_randomNumbers.length != 0, "ArtVial: All NFT has been already minted"); uint256 randomId = randomTokenId(); userNftId[msg.sender].push(randomId); alreadyClaimed[phase1NFTId] = true; _safeMint(msg.sender, randomId); } /* @dev This function will set the time after which User can claim their vials @params EpochTime when to start claim */ function setRevelTimer(uint256 revealTime_) external onlyOwner{ revealTime = revealTime_; emit revealTimer(revealTime); } /* @dev Emergency function: that will update phase1 token address @params B&O DNA Collection:Phase1 deployed contract address */ function updatePhase1Address(address phase1Address_) external onlyOwner{ require(phase1Address_ != address(0), "ArtVial: Phase1 Address cannot be zero address"); phase1Address = phase1Address_; } /* @dev When owner set the toggle to true, then only claim will be active. Only owner has the ability to freeze the claim function for every user @params true or false */ function setToggle(bool toggle_) external onlyOwner{ toggle = toggle_; } function transferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) { require(_isApprovedOrOwner(_msgSender(), tokenId),"ArtVial: transfer caller is not owner nor approved"); uint256 temp; for (uint256 i; i < userNftId[from].length; i++) { if (userNftId[from][i] == tokenId) { userNftId[from][i] = userNftId[from][userNftId[from].length - 1]; temp = userNftId[from].length - 1; userNftId[from].pop(); userNftId[to].push(tokenId); break; } } _transfer(from, to, tokenId); } function safeTransferFrom(address from,address to,uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) { uint256 temp; for (uint256 i; i < userNftId[from].length; i++) { if (userNftId[from][i] == tokenId) { userNftId[from][i] = userNftId[from][userNftId[from].length - 1]; temp = userNftId[from].length - 1; userNftId[from].pop(); userNftId[to].push(tokenId); break; } } safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom(address from,address to,uint256 tokenId,bytes memory _data) public override(ERC721, IERC721) onlyAllowedOperator(from) { require(_isApprovedOrOwner(_msgSender(), tokenId),"ArtVial: transfer caller is not owner nor approved"); uint256 temp; for (uint256 i; i < userNftId[from].length; i++) { if (userNftId[from][i] == tokenId) { userNftId[from][i] = userNftId[from][userNftId[from].length - 1]; temp = userNftId[from].length - 1; userNftId[from].pop(); userNftId[to].push(tokenId); break; } } _safeTransfer(from, to, tokenId, _data); } /* @dev We can check tokenId of every user that has minted the vial @params User Address */ function nftOfUser(address user)public view returns(uint256[] memory){ return userNftId[user]; } function burn(uint256 tokenId) public virtual override{ //solhint-disable-next-line max-line-length _burn(tokenId); } function _burn(uint256 _tokenId) internal override(ERC721) { require(_isApprovedOrOwner(_msgSender(), _tokenId), "ArtVial: caller is not token owner nor approved"); for (uint256 i; i < userNftId[ownerOf(_tokenId)].length; i++) { if (userNftId[ownerOf(_tokenId)][i] == _tokenId) { userNftId[ownerOf(_tokenId)][i] = userNftId[ownerOf(_tokenId)][userNftId[ownerOf(_tokenId)].length - 1]; userNftId[ownerOf(_tokenId)].pop(); break; } } super._burn(_tokenId); } /* @dev Update the base URI for token Metadata @params Metadata URI */ function updateURI(string memory newURI_) external onlyOwner{ URI = newURI_; } function _baseURI() internal view override returns (string memory) { return URI; } function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId, batchSize); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_phase1Address","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"revealTime","type":"uint256"}],"name":"revealTimer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_owners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"alreadyClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase1NFTId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"nftOfUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"phase1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTime","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":"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":"uint256","name":"revealTime_","type":"uint256"}],"name":"setRevelTimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle_","type":"bool"}],"name":"setToggle","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":[],"name":"toggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"phase1Address_","type":"address"}],"name":"updatePhase1Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI_","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userNftId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620039d6380380620039d683398101604081905262000034916200043a565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018484816000908051906020019062000065929190620002c7565b5080516200007b906001906020840190620002c7565b5050506daaeb6d7670e522a718067333cd4e3b15620001c35780156200011157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000f257600080fd5b505af115801562000107573d6000803e3d6000fd5b50505050620001c3565b6001600160a01b03821615620001625760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000d7565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001a957600080fd5b505af1158015620001be573d6000803e3d6000fd5b505050505b50620001d190503362000275565b600e80546001600160a01b0319166001600160a01b03831617905560005b6107858161ffff1610156200026b57600d80546001810182556000919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb560108204018054600f9092166002026101000a61ffff8181021990931692841602919091179055806200026281620004c7565b915050620001ef565b5050505062000533565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002d590620004f7565b90600052602060002090601f016020900481019282620002f9576000855562000344565b82601f106200031457805160ff191683800117855562000344565b8280016001018555821562000344579182015b828111156200034457825182559160200191906001019062000327565b506200035292915062000356565b5090565b5b8082111562000352576000815560010162000357565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200039557600080fd5b81516001600160401b0380821115620003b257620003b26200036d565b604051601f8301601f19908116603f01168101908282118183101715620003dd57620003dd6200036d565b81604052838152602092508683858801011115620003fa57600080fd5b600091505b838210156200041e5785820183015181830184015290820190620003ff565b83821115620004305760008385830101525b9695505050505050565b6000806000606084860312156200045057600080fd5b83516001600160401b03808211156200046857600080fd5b620004768783880162000383565b945060208601519150808211156200048d57600080fd5b506200049c8682870162000383565b604086015190935090506001600160a01b0381168114620004bc57600080fd5b809150509250925092565b600061ffff808316818103620004ed57634e487b7160e01b600052601160045260246000fd5b6001019392505050565b600181811c908216806200050c57607f821691505b6020821081036200052d57634e487b7160e01b600052602260045260246000fd5b50919050565b61349380620005436000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80636059c73f1161010f578063a22cb465116100a2578063c30f4a5a11610071578063c30f4a5a14610444578063c87b56dd14610457578063e985e9c51461046a578063f2fde38b146104a657600080fd5b8063a22cb46514610402578063b668908f14610415578063b88d4fde14610428578063ba829d711461043b57600080fd5b80638da5cb5b116100de5780638da5cb5b146103a057806390cd38ba146103b157806395d89b41146103d1578063992924a6146103d957600080fd5b80636059c73f1461035f5780636352211e1461037257806370a0823114610385578063715018a61461039857600080fd5b80632f745c591161018757806340a3d2461161015657806340a3d2461461031957806342842e0e1461032657806342966c68146103395780634f6ccce71461034c57600080fd5b80632f745c59146102cd578063379607f5146102e05780633ef0410f146102f35780634031371b1461030657600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd1461028457806329da5077146102975780632e203e6d146102ba57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612e50565b6104b9565b60405190151581526020015b60405180910390f35b6102256104ca565b6040516102149190612ec5565b610245610240366004612ed8565b61055c565b6040516001600160a01b039091168152602001610214565b61027061026b366004612f06565b610583565b005b6008545b604051908152602001610214565b610270610292366004612f32565b61069d565b6102086102a5366004612ed8565b60126020526000908152604090205460ff1681565b6102706102c8366004612f81565b610b64565b6102766102db366004612f06565b610b7f565b6102706102ee366004612ed8565b610c15565b610276610301366004612f06565b610f17565b600e54610245906001600160a01b031681565b600c546102089060ff1681565b610270610334366004612f32565b610f48565b610270610347366004612ed8565b6113d5565b61027661035a366004612ed8565b6113e1565b61027061036d366004612f9e565b611474565b610245610380366004612ed8565b61150b565b610276610393366004612f9e565b61156b565b6102706115f1565b600a546001600160a01b0316610245565b6103c46103bf366004612f9e565b611605565b6040516102149190612fbb565b610225611671565b6102456103e7366004612ed8565b6002602052600090815260409020546001600160a01b031681565b610270610410366004612fff565b611680565b610270610423366004612ed8565b61168b565b6102706104363660046130c4565b6116ce565b61027660105481565b610270610452366004613144565b611b97565b610225610465366004612ed8565b611bb2565b61020861047836600461318d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102706104b4366004612f9e565b611c19565b60006104c482611c8f565b92915050565b6060600080546104d9906131bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610505906131bb565b80156105525780601f1061052757610100808354040283529160200191610552565b820191906000526020600020905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b600061056782611cb4565b506000908152600460205260409020546001600160a01b031690565b600061058e8261150b565b9050806001600160a01b0316836001600160a01b0316036106005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061061c575061061c8133610478565b61068e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105f7565b6106988383611d13565b505050565b826daaeb6d7670e522a718067333cd4e3b1561099e57336001600160a01b03821603610889576106ce335b83611d81565b6106ea5760405162461bcd60e51b81526004016105f7906131f5565b6000805b6001600160a01b038616600090815260116020526040902054811015610877576001600160a01b038616600090815260116020526040902080548591908390811061073b5761073b613247565b906000526020600020015403610865576001600160a01b0386166000908152601160205260409020805461077190600190613273565b8154811061078157610781613247565b906000526020600020015460116000886001600160a01b03166001600160a01b0316815260200190815260200160002082815481106107c2576107c2613247565b60009182526020808320909101929092556001600160a01b0388168152601190915260409020546107f590600190613273565b6001600160a01b0387166000908152601160205260409020805491935090806108205761082061328a565b6000828152602080822083016000199081018390559092019092556001600160a01b038716825260118152604082208054600181018255908352912001849055610877565b8061086f816132a0565b9150506106ee565b50610883858585611e00565b50610b5e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fc91906132b9565b801561097f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f91906132b9565b61099e57604051633b79c77360e21b81523360048201526024016105f7565b6109a7336106c8565b6109c35760405162461bcd60e51b81526004016105f7906131f5565b6000805b6001600160a01b038616600090815260116020526040902054811015610b50576001600160a01b0386166000908152601160205260409020805485919083908110610a1457610a14613247565b906000526020600020015403610b3e576001600160a01b03861660009081526011602052604090208054610a4a90600190613273565b81548110610a5a57610a5a613247565b906000526020600020015460116000886001600160a01b03166001600160a01b031681526020019081526020016000208281548110610a9b57610a9b613247565b60009182526020808320909101929092556001600160a01b038816815260119091526040902054610ace90600190613273565b6001600160a01b038716600090815260116020526040902080549193509080610af957610af961328a565b6000828152602080822083016000199081018390559092019092556001600160a01b038716825260118152604082208054600181018255908352912001849055610b50565b80610b48816132a0565b9150506109c7565b50610b5c858585611e00565b505b50505050565b610b6c611f71565b600c805460ff1916911515919091179055565b6000610b8a8361156b565b8210610bec5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5460ff161515600114610c655760405162461bcd60e51b815260206004820152601660248201527520b93a2b34b0b61d102a37b3b3b6329034b99037b33360511b60448201526064016105f7565b601054600003610cb75760405162461bcd60e51b815260206004820152601860248201527f4172745669616c3a2053657420726576656c2054696d6572000000000000000060448201526064016105f7565b6010544211610d135760405162461bcd60e51b815260206004820152602260248201527f4172745669616c3a20436c61696d20686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016105f7565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610d5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8091906132d6565b6001600160a01b031614610deb5760405162461bcd60e51b815260206004820152602c60248201527f4172745669616c3a20596f7520617265206e6f7420746865206f776e6572206f60448201526b1988141a185cd94c4813919560a21b60648201526084016105f7565b60008181526012602052604090205460ff1615610e5e5760405162461bcd60e51b815260206004820152602b60248201527f4172745669616c3a204e465420616c726561647920636c61696d656420666f7260448201526a103a3434b9903a37b5b2b760a91b60648201526084016105f7565b600d54600003610ec15760405162461bcd60e51b815260206004820152602860248201527f4172745669616c3a20416c6c204e465420686173206265656e20616c726561646044820152671e481b5a5b9d195960c21b60648201526084016105f7565b6000610ecb611fcb565b336000818152601160209081526040808320805460018181018355918552838520018690558784526012909252909120805460ff19169091179055909150610f1390826120ef565b5050565b60116020528160005260406000208181548110610f3357600080fd5b90600052602060002001600091509150505481565b826daaeb6d7670e522a718067333cd4e3b1561122c57336001600160a01b03821603611117576000805b6001600160a01b0386166000908152601160205260409020548110156110fb576001600160a01b0386166000908152601160205260409020805485919083908110610fbf57610fbf613247565b9060005260206000200154036110e9576001600160a01b03861660009081526011602052604090208054610ff590600190613273565b8154811061100557611005613247565b906000526020600020015460116000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061104657611046613247565b60009182526020808320909101929092556001600160a01b03881681526011909152604090205461107990600190613273565b6001600160a01b0387166000908152601160205260409020805491935090806110a4576110a461328a565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252601181526040822080546001810182559083529120018490556110fb565b806110f3816132a0565b915050610f72565b50610883858585604051806020016040528060008152506116ce565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611166573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118a91906132b9565b801561120d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156111e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120d91906132b9565b61122c57604051633b79c77360e21b81523360048201526024016105f7565b6000805b6001600160a01b0386166000908152601160205260409020548110156113b9576001600160a01b038616600090815260116020526040902080548591908390811061127d5761127d613247565b9060005260206000200154036113a7576001600160a01b038616600090815260116020526040902080546112b390600190613273565b815481106112c3576112c3613247565b906000526020600020015460116000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061130457611304613247565b60009182526020808320909101929092556001600160a01b03881681526011909152604090205461133790600190613273565b6001600160a01b0387166000908152601160205260409020805491935090806113625761136261328a565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252601181526040822080546001810182559083529120018490556113b9565b806113b1816132a0565b915050611230565b50610b5c858585604051806020016040528060008152506116ce565b6113de81612109565b50565b60006113ec60085490565b821061144f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105f7565b6008828154811061146257611462613247565b90600052602060002001549050919050565b61147c611f71565b6001600160a01b0381166114e95760405162461bcd60e51b815260206004820152602e60248201527f4172745669616c3a2050686173653120416464726573732063616e6e6f74206260448201526d65207a65726f206164647265737360901b60648201526084016105f7565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806104c45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105f7565b60006001600160a01b0382166115d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105f7565b506001600160a01b031660009081526003602052604090205490565b6115f9611f71565b6116036000612331565b565b6001600160a01b03811660009081526011602090815260409182902080548351818402810184019094528084526060939283018282801561166557602002820191906000526020600020905b815481526020019060010190808311611651575b50505050509050919050565b6060600180546104d9906131bb565b610f13338383612383565b611693611f71565b60108190556040518181527fbf2117473c528eb1701446fd671b6677cba6760cf865c5f1e65ed0db6f318a889060200160405180910390a150565b836daaeb6d7670e522a718067333cd4e3b156119d057336001600160a01b038216036118bb576116ff335b84611d81565b61171b5760405162461bcd60e51b81526004016105f7906131f5565b6000805b6001600160a01b0387166000908152601160205260409020548110156118a8576001600160a01b038716600090815260116020526040902080548691908390811061176c5761176c613247565b906000526020600020015403611896576001600160a01b038716600090815260116020526040902080546117a290600190613273565b815481106117b2576117b2613247565b906000526020600020015460116000896001600160a01b03166001600160a01b0316815260200190815260200160002082815481106117f3576117f3613247565b60009182526020808320909101929092556001600160a01b03891681526011909152604090205461182690600190613273565b6001600160a01b0388166000908152601160205260409020805491935090806118515761185161328a565b6000828152602080822083016000199081018390559092019092556001600160a01b0388168252601181526040822080546001810182559083529120018590556118a8565b806118a0816132a0565b91505061171f565b506118b586868686612451565b50610b5c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561190a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192e91906132b9565b80156119b15750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561198d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b191906132b9565b6119d057604051633b79c77360e21b81523360048201526024016105f7565b6119d9336116f9565b6119f55760405162461bcd60e51b81526004016105f7906131f5565b6000805b6001600160a01b038716600090815260116020526040902054811015611b82576001600160a01b0387166000908152601160205260409020805486919083908110611a4657611a46613247565b906000526020600020015403611b70576001600160a01b03871660009081526011602052604090208054611a7c90600190613273565b81548110611a8c57611a8c613247565b906000526020600020015460116000896001600160a01b03166001600160a01b031681526020019081526020016000208281548110611acd57611acd613247565b60009182526020808320909101929092556001600160a01b038916815260119091526040902054611b0090600190613273565b6001600160a01b038816600090815260116020526040902080549193509080611b2b57611b2b61328a565b6000828152602080822083016000199081018390559092019092556001600160a01b038816825260118152604082208054600181018255908352912001859055611b82565b80611b7a816132a0565b9150506119f9565b50611b8f86868686612451565b505050505050565b611b9f611f71565b8051610f1390600f906020840190612daa565b6060611bbd82611cb4565b6000611bc7612484565b90506000815111611be75760405180602001604052806000815250611c12565b80611bf184612493565b604051602001611c029291906132f3565b6040516020818303038152906040525b9392505050565b611c21611f71565b6001600160a01b038116611c865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f7565b6113de81612331565b60006001600160e01b0319821663780e9d6360e01b14806104c457506104c482612526565b6000818152600260205260409020546001600160a01b03166113de5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105f7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d488261150b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611d8d8361150b565b9050806001600160a01b0316846001600160a01b03161480611dd457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611df85750836001600160a01b0316611ded8461055c565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e138261150b565b6001600160a01b031614611e395760405162461bcd60e51b81526004016105f790613332565b6001600160a01b038216611e9b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f7565b611ea88383836001612576565b826001600160a01b0316611ebb8261150b565b6001600160a01b031614611ee15760405162461bcd60e51b81526004016105f790613332565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146116035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f7565b600d546000908190611fdb612582565b611fe59190613377565b9050600d8181548110611ffa57611ffa613247565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169150600d6001600d805490506120389190613273565b8154811061204857612048613247565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600d828154811061207f5761207f613247565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600d8054806120bf576120bf61328a565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590555090565b610f13828260405180602001604052806000815250612611565b6121133382611d81565b6121775760405162461bcd60e51b815260206004820152602f60248201527f4172745669616c3a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526e195c881b9bdc88185c1c1c9bdd9959608a1b60648201526084016105f7565b60005b601160006121878461150b565b6001600160a01b031681526020810191909152604001600020548110156123275781601160006121b68561150b565b6001600160a01b03166001600160a01b0316815260200190815260200160002082815481106121e7576121e7613247565b90600052602060002001540361231557601160006122048461150b565b6001600160a01b03166001600160a01b031681526020019081526020016000206001601160006122338661150b565b6001600160a01b031681526020810191909152604001600020546122579190613273565b8154811061226757612267613247565b90600052602060002001546011600061227f8561150b565b6001600160a01b03166001600160a01b0316815260200190815260200160002082815481106122b0576122b0613247565b9060005260206000200181905550601160006122cb8461150b565b6001600160a01b03166001600160a01b031681526020019081526020016000208054806122fa576122fa61328a565b60019003818190600052602060002001600090559055612327565b8061231f816132a0565b91505061217a565b506113de81612644565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036123e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61245c848484611e00565b612468848484846126e7565b610b5e5760405162461bcd60e51b81526004016105f790613399565b6060600f80546104d9906131bb565b606060006124a0836127e8565b600101905060008167ffffffffffffffff8111156124c0576124c0613038565b6040519080825280601f01601f1916602001820160405280156124ea576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846124f457509392505050565b60006001600160e01b031982166380ac58cd60e01b148061255757506001600160e01b03198216635b5e139f60e01b145b806104c457506301ffc9a760e01b6001600160e01b03198316146104c4565b610b5e848484846128c0565b60008061258e600b5490565b9050333a4342446125a0600184613273565b604080516001600160a01b0390971660208801528601949094526060850192909252608084015260a08301524060c08201523060e08201526101008101829052610120016040516020818303038152906040528051906020012060001c915061260d600b80546001019055565b5090565b61261b83836129f9565b61262860008484846126e7565b6106985760405162461bcd60e51b81526004016105f790613399565b600061264f8261150b565b905061265f816000846001612576565b6126688261150b565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b156127dd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061272b9033908990889088906004016133eb565b6020604051808303816000875af1925050508015612766575060408051601f3d908101601f1916820190925261276391810190613428565b60015b6127c3573d808015612794576040519150601f19603f3d011682016040523d82523d6000602084013e612799565b606091505b5080516000036127bb5760405162461bcd60e51b81526004016105f790613399565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611df8565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106128275772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612853576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061287157662386f26fc10000830492506010015b6305f5e1008310612889576305f5e100830492506008015b612710831061289d57612710830492506004015b606483106128af576064830492506002015b600a83106104c45760010192915050565b6128cc84848484612b92565b600181111561293b5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016105f7565b816001600160a01b0385166129975761299281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6129ba565b836001600160a01b0316856001600160a01b0316146129ba576129ba8582612c1a565b6001600160a01b0384166129d6576129d181612cb7565b610b5c565b846001600160a01b0316846001600160a01b031614610b5c57610b5c8482612d66565b6001600160a01b038216612a4f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f7565b6000818152600260205260409020546001600160a01b031615612ab45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b612ac2600083836001612576565b6000818152600260205260409020546001600160a01b031615612b275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115610b5e576001600160a01b03841615612bd8576001600160a01b03841660009081526003602052604081208054839290612bd2908490613273565b90915550505b6001600160a01b03831615610b5e576001600160a01b03831660009081526003602052604081208054839290612c0f908490613445565b909155505050505050565b60006001612c278461156b565b612c319190613273565b600083815260076020526040902054909150808214612c84576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612cc990600190613273565b60008381526009602052604081205460088054939450909284908110612cf157612cf1613247565b906000526020600020015490508060088381548110612d1257612d12613247565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612d4a57612d4a61328a565b6001900381819060005260206000200160009055905550505050565b6000612d718361156b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612db6906131bb565b90600052602060002090601f016020900481019282612dd85760008555612e1e565b82601f10612df157805160ff1916838001178555612e1e565b82800160010185558215612e1e579182015b82811115612e1e578251825591602001919060010190612e03565b5061260d9291505b8082111561260d5760008155600101612e26565b6001600160e01b0319811681146113de57600080fd5b600060208284031215612e6257600080fd5b8135611c1281612e3a565b60005b83811015612e88578181015183820152602001612e70565b83811115610b5e5750506000910152565b60008151808452612eb1816020860160208601612e6d565b601f01601f19169290920160200192915050565b602081526000611c126020830184612e99565b600060208284031215612eea57600080fd5b5035919050565b6001600160a01b03811681146113de57600080fd5b60008060408385031215612f1957600080fd5b8235612f2481612ef1565b946020939093013593505050565b600080600060608486031215612f4757600080fd5b8335612f5281612ef1565b92506020840135612f6281612ef1565b929592945050506040919091013590565b80151581146113de57600080fd5b600060208284031215612f9357600080fd5b8135611c1281612f73565b600060208284031215612fb057600080fd5b8135611c1281612ef1565b6020808252825182820181905260009190848201906040850190845b81811015612ff357835183529284019291840191600101612fd7565b50909695505050505050565b6000806040838503121561301257600080fd5b823561301d81612ef1565b9150602083013561302d81612f73565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561306957613069613038565b604051601f8501601f19908116603f0116810190828211818310171561309157613091613038565b816040528093508581528686860111156130aa57600080fd5b858560208301376000602087830101525050509392505050565b600080600080608085870312156130da57600080fd5b84356130e581612ef1565b935060208501356130f581612ef1565b925060408501359150606085013567ffffffffffffffff81111561311857600080fd5b8501601f8101871361312957600080fd5b6131388782356020840161304e565b91505092959194509250565b60006020828403121561315657600080fd5b813567ffffffffffffffff81111561316d57600080fd5b8201601f8101841361317e57600080fd5b611df88482356020840161304e565b600080604083850312156131a057600080fd5b82356131ab81612ef1565b9150602083013561302d81612ef1565b600181811c908216806131cf57607f821691505b6020821081036131ef57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526032908201527f4172745669616c3a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156132855761328561325d565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600182016132b2576132b261325d565b5060010190565b6000602082840312156132cb57600080fd5b8151611c1281612f73565b6000602082840312156132e857600080fd5b8151611c1281612ef1565b60008351613305818460208801612e6d565b835190830190613319818360208801612e6d565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60008261339457634e487b7160e01b600052601260045260246000fd5b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061341e90830184612e99565b9695505050505050565b60006020828403121561343a57600080fd5b8151611c1281612e3a565b600082198211156134585761345861325d565b50019056fea26469706673582212203155d4438250e97f1990718715228e38268d4d8a25d9de86560fbf50c58e150164736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000005e4a05e113f8084dc018f25e0134750dbfd5c94d000000000000000000000000000000000000000000000000000000000000001c42264f20444e4120436f6c6c656374696f6e3a20417274205669616c000000000000000000000000000000000000000000000000000000000000000000000005424f415254000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80636059c73f1161010f578063a22cb465116100a2578063c30f4a5a11610071578063c30f4a5a14610444578063c87b56dd14610457578063e985e9c51461046a578063f2fde38b146104a657600080fd5b8063a22cb46514610402578063b668908f14610415578063b88d4fde14610428578063ba829d711461043b57600080fd5b80638da5cb5b116100de5780638da5cb5b146103a057806390cd38ba146103b157806395d89b41146103d1578063992924a6146103d957600080fd5b80636059c73f1461035f5780636352211e1461037257806370a0823114610385578063715018a61461039857600080fd5b80632f745c591161018757806340a3d2461161015657806340a3d2461461031957806342842e0e1461032657806342966c68146103395780634f6ccce71461034c57600080fd5b80632f745c59146102cd578063379607f5146102e05780633ef0410f146102f35780634031371b1461030657600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd1461028457806329da5077146102975780632e203e6d146102ba57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612e50565b6104b9565b60405190151581526020015b60405180910390f35b6102256104ca565b6040516102149190612ec5565b610245610240366004612ed8565b61055c565b6040516001600160a01b039091168152602001610214565b61027061026b366004612f06565b610583565b005b6008545b604051908152602001610214565b610270610292366004612f32565b61069d565b6102086102a5366004612ed8565b60126020526000908152604090205460ff1681565b6102706102c8366004612f81565b610b64565b6102766102db366004612f06565b610b7f565b6102706102ee366004612ed8565b610c15565b610276610301366004612f06565b610f17565b600e54610245906001600160a01b031681565b600c546102089060ff1681565b610270610334366004612f32565b610f48565b610270610347366004612ed8565b6113d5565b61027661035a366004612ed8565b6113e1565b61027061036d366004612f9e565b611474565b610245610380366004612ed8565b61150b565b610276610393366004612f9e565b61156b565b6102706115f1565b600a546001600160a01b0316610245565b6103c46103bf366004612f9e565b611605565b6040516102149190612fbb565b610225611671565b6102456103e7366004612ed8565b6002602052600090815260409020546001600160a01b031681565b610270610410366004612fff565b611680565b610270610423366004612ed8565b61168b565b6102706104363660046130c4565b6116ce565b61027660105481565b610270610452366004613144565b611b97565b610225610465366004612ed8565b611bb2565b61020861047836600461318d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102706104b4366004612f9e565b611c19565b60006104c482611c8f565b92915050565b6060600080546104d9906131bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610505906131bb565b80156105525780601f1061052757610100808354040283529160200191610552565b820191906000526020600020905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b600061056782611cb4565b506000908152600460205260409020546001600160a01b031690565b600061058e8261150b565b9050806001600160a01b0316836001600160a01b0316036106005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061061c575061061c8133610478565b61068e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105f7565b6106988383611d13565b505050565b826daaeb6d7670e522a718067333cd4e3b1561099e57336001600160a01b03821603610889576106ce335b83611d81565b6106ea5760405162461bcd60e51b81526004016105f7906131f5565b6000805b6001600160a01b038616600090815260116020526040902054811015610877576001600160a01b038616600090815260116020526040902080548591908390811061073b5761073b613247565b906000526020600020015403610865576001600160a01b0386166000908152601160205260409020805461077190600190613273565b8154811061078157610781613247565b906000526020600020015460116000886001600160a01b03166001600160a01b0316815260200190815260200160002082815481106107c2576107c2613247565b60009182526020808320909101929092556001600160a01b0388168152601190915260409020546107f590600190613273565b6001600160a01b0387166000908152601160205260409020805491935090806108205761082061328a565b6000828152602080822083016000199081018390559092019092556001600160a01b038716825260118152604082208054600181018255908352912001849055610877565b8061086f816132a0565b9150506106ee565b50610883858585611e00565b50610b5e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fc91906132b9565b801561097f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f91906132b9565b61099e57604051633b79c77360e21b81523360048201526024016105f7565b6109a7336106c8565b6109c35760405162461bcd60e51b81526004016105f7906131f5565b6000805b6001600160a01b038616600090815260116020526040902054811015610b50576001600160a01b0386166000908152601160205260409020805485919083908110610a1457610a14613247565b906000526020600020015403610b3e576001600160a01b03861660009081526011602052604090208054610a4a90600190613273565b81548110610a5a57610a5a613247565b906000526020600020015460116000886001600160a01b03166001600160a01b031681526020019081526020016000208281548110610a9b57610a9b613247565b60009182526020808320909101929092556001600160a01b038816815260119091526040902054610ace90600190613273565b6001600160a01b038716600090815260116020526040902080549193509080610af957610af961328a565b6000828152602080822083016000199081018390559092019092556001600160a01b038716825260118152604082208054600181018255908352912001849055610b50565b80610b48816132a0565b9150506109c7565b50610b5c858585611e00565b505b50505050565b610b6c611f71565b600c805460ff1916911515919091179055565b6000610b8a8361156b565b8210610bec5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5460ff161515600114610c655760405162461bcd60e51b815260206004820152601660248201527520b93a2b34b0b61d102a37b3b3b6329034b99037b33360511b60448201526064016105f7565b601054600003610cb75760405162461bcd60e51b815260206004820152601860248201527f4172745669616c3a2053657420726576656c2054696d6572000000000000000060448201526064016105f7565b6010544211610d135760405162461bcd60e51b815260206004820152602260248201527f4172745669616c3a20436c61696d20686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016105f7565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610d5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8091906132d6565b6001600160a01b031614610deb5760405162461bcd60e51b815260206004820152602c60248201527f4172745669616c3a20596f7520617265206e6f7420746865206f776e6572206f60448201526b1988141a185cd94c4813919560a21b60648201526084016105f7565b60008181526012602052604090205460ff1615610e5e5760405162461bcd60e51b815260206004820152602b60248201527f4172745669616c3a204e465420616c726561647920636c61696d656420666f7260448201526a103a3434b9903a37b5b2b760a91b60648201526084016105f7565b600d54600003610ec15760405162461bcd60e51b815260206004820152602860248201527f4172745669616c3a20416c6c204e465420686173206265656e20616c726561646044820152671e481b5a5b9d195960c21b60648201526084016105f7565b6000610ecb611fcb565b336000818152601160209081526040808320805460018181018355918552838520018690558784526012909252909120805460ff19169091179055909150610f1390826120ef565b5050565b60116020528160005260406000208181548110610f3357600080fd5b90600052602060002001600091509150505481565b826daaeb6d7670e522a718067333cd4e3b1561122c57336001600160a01b03821603611117576000805b6001600160a01b0386166000908152601160205260409020548110156110fb576001600160a01b0386166000908152601160205260409020805485919083908110610fbf57610fbf613247565b9060005260206000200154036110e9576001600160a01b03861660009081526011602052604090208054610ff590600190613273565b8154811061100557611005613247565b906000526020600020015460116000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061104657611046613247565b60009182526020808320909101929092556001600160a01b03881681526011909152604090205461107990600190613273565b6001600160a01b0387166000908152601160205260409020805491935090806110a4576110a461328a565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252601181526040822080546001810182559083529120018490556110fb565b806110f3816132a0565b915050610f72565b50610883858585604051806020016040528060008152506116ce565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611166573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118a91906132b9565b801561120d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156111e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120d91906132b9565b61122c57604051633b79c77360e21b81523360048201526024016105f7565b6000805b6001600160a01b0386166000908152601160205260409020548110156113b9576001600160a01b038616600090815260116020526040902080548591908390811061127d5761127d613247565b9060005260206000200154036113a7576001600160a01b038616600090815260116020526040902080546112b390600190613273565b815481106112c3576112c3613247565b906000526020600020015460116000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061130457611304613247565b60009182526020808320909101929092556001600160a01b03881681526011909152604090205461133790600190613273565b6001600160a01b0387166000908152601160205260409020805491935090806113625761136261328a565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252601181526040822080546001810182559083529120018490556113b9565b806113b1816132a0565b915050611230565b50610b5c858585604051806020016040528060008152506116ce565b6113de81612109565b50565b60006113ec60085490565b821061144f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105f7565b6008828154811061146257611462613247565b90600052602060002001549050919050565b61147c611f71565b6001600160a01b0381166114e95760405162461bcd60e51b815260206004820152602e60248201527f4172745669616c3a2050686173653120416464726573732063616e6e6f74206260448201526d65207a65726f206164647265737360901b60648201526084016105f7565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806104c45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105f7565b60006001600160a01b0382166115d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105f7565b506001600160a01b031660009081526003602052604090205490565b6115f9611f71565b6116036000612331565b565b6001600160a01b03811660009081526011602090815260409182902080548351818402810184019094528084526060939283018282801561166557602002820191906000526020600020905b815481526020019060010190808311611651575b50505050509050919050565b6060600180546104d9906131bb565b610f13338383612383565b611693611f71565b60108190556040518181527fbf2117473c528eb1701446fd671b6677cba6760cf865c5f1e65ed0db6f318a889060200160405180910390a150565b836daaeb6d7670e522a718067333cd4e3b156119d057336001600160a01b038216036118bb576116ff335b84611d81565b61171b5760405162461bcd60e51b81526004016105f7906131f5565b6000805b6001600160a01b0387166000908152601160205260409020548110156118a8576001600160a01b038716600090815260116020526040902080548691908390811061176c5761176c613247565b906000526020600020015403611896576001600160a01b038716600090815260116020526040902080546117a290600190613273565b815481106117b2576117b2613247565b906000526020600020015460116000896001600160a01b03166001600160a01b0316815260200190815260200160002082815481106117f3576117f3613247565b60009182526020808320909101929092556001600160a01b03891681526011909152604090205461182690600190613273565b6001600160a01b0388166000908152601160205260409020805491935090806118515761185161328a565b6000828152602080822083016000199081018390559092019092556001600160a01b0388168252601181526040822080546001810182559083529120018590556118a8565b806118a0816132a0565b91505061171f565b506118b586868686612451565b50610b5c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561190a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192e91906132b9565b80156119b15750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561198d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b191906132b9565b6119d057604051633b79c77360e21b81523360048201526024016105f7565b6119d9336116f9565b6119f55760405162461bcd60e51b81526004016105f7906131f5565b6000805b6001600160a01b038716600090815260116020526040902054811015611b82576001600160a01b0387166000908152601160205260409020805486919083908110611a4657611a46613247565b906000526020600020015403611b70576001600160a01b03871660009081526011602052604090208054611a7c90600190613273565b81548110611a8c57611a8c613247565b906000526020600020015460116000896001600160a01b03166001600160a01b031681526020019081526020016000208281548110611acd57611acd613247565b60009182526020808320909101929092556001600160a01b038916815260119091526040902054611b0090600190613273565b6001600160a01b038816600090815260116020526040902080549193509080611b2b57611b2b61328a565b6000828152602080822083016000199081018390559092019092556001600160a01b038816825260118152604082208054600181018255908352912001859055611b82565b80611b7a816132a0565b9150506119f9565b50611b8f86868686612451565b505050505050565b611b9f611f71565b8051610f1390600f906020840190612daa565b6060611bbd82611cb4565b6000611bc7612484565b90506000815111611be75760405180602001604052806000815250611c12565b80611bf184612493565b604051602001611c029291906132f3565b6040516020818303038152906040525b9392505050565b611c21611f71565b6001600160a01b038116611c865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f7565b6113de81612331565b60006001600160e01b0319821663780e9d6360e01b14806104c457506104c482612526565b6000818152600260205260409020546001600160a01b03166113de5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105f7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d488261150b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611d8d8361150b565b9050806001600160a01b0316846001600160a01b03161480611dd457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611df85750836001600160a01b0316611ded8461055c565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e138261150b565b6001600160a01b031614611e395760405162461bcd60e51b81526004016105f790613332565b6001600160a01b038216611e9b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f7565b611ea88383836001612576565b826001600160a01b0316611ebb8261150b565b6001600160a01b031614611ee15760405162461bcd60e51b81526004016105f790613332565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146116035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f7565b600d546000908190611fdb612582565b611fe59190613377565b9050600d8181548110611ffa57611ffa613247565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169150600d6001600d805490506120389190613273565b8154811061204857612048613247565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600d828154811061207f5761207f613247565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600d8054806120bf576120bf61328a565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590555090565b610f13828260405180602001604052806000815250612611565b6121133382611d81565b6121775760405162461bcd60e51b815260206004820152602f60248201527f4172745669616c3a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526e195c881b9bdc88185c1c1c9bdd9959608a1b60648201526084016105f7565b60005b601160006121878461150b565b6001600160a01b031681526020810191909152604001600020548110156123275781601160006121b68561150b565b6001600160a01b03166001600160a01b0316815260200190815260200160002082815481106121e7576121e7613247565b90600052602060002001540361231557601160006122048461150b565b6001600160a01b03166001600160a01b031681526020019081526020016000206001601160006122338661150b565b6001600160a01b031681526020810191909152604001600020546122579190613273565b8154811061226757612267613247565b90600052602060002001546011600061227f8561150b565b6001600160a01b03166001600160a01b0316815260200190815260200160002082815481106122b0576122b0613247565b9060005260206000200181905550601160006122cb8461150b565b6001600160a01b03166001600160a01b031681526020019081526020016000208054806122fa576122fa61328a565b60019003818190600052602060002001600090559055612327565b8061231f816132a0565b91505061217a565b506113de81612644565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036123e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61245c848484611e00565b612468848484846126e7565b610b5e5760405162461bcd60e51b81526004016105f790613399565b6060600f80546104d9906131bb565b606060006124a0836127e8565b600101905060008167ffffffffffffffff8111156124c0576124c0613038565b6040519080825280601f01601f1916602001820160405280156124ea576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846124f457509392505050565b60006001600160e01b031982166380ac58cd60e01b148061255757506001600160e01b03198216635b5e139f60e01b145b806104c457506301ffc9a760e01b6001600160e01b03198316146104c4565b610b5e848484846128c0565b60008061258e600b5490565b9050333a4342446125a0600184613273565b604080516001600160a01b0390971660208801528601949094526060850192909252608084015260a08301524060c08201523060e08201526101008101829052610120016040516020818303038152906040528051906020012060001c915061260d600b80546001019055565b5090565b61261b83836129f9565b61262860008484846126e7565b6106985760405162461bcd60e51b81526004016105f790613399565b600061264f8261150b565b905061265f816000846001612576565b6126688261150b565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b156127dd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061272b9033908990889088906004016133eb565b6020604051808303816000875af1925050508015612766575060408051601f3d908101601f1916820190925261276391810190613428565b60015b6127c3573d808015612794576040519150601f19603f3d011682016040523d82523d6000602084013e612799565b606091505b5080516000036127bb5760405162461bcd60e51b81526004016105f790613399565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611df8565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106128275772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612853576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061287157662386f26fc10000830492506010015b6305f5e1008310612889576305f5e100830492506008015b612710831061289d57612710830492506004015b606483106128af576064830492506002015b600a83106104c45760010192915050565b6128cc84848484612b92565b600181111561293b5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016105f7565b816001600160a01b0385166129975761299281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6129ba565b836001600160a01b0316856001600160a01b0316146129ba576129ba8582612c1a565b6001600160a01b0384166129d6576129d181612cb7565b610b5c565b846001600160a01b0316846001600160a01b031614610b5c57610b5c8482612d66565b6001600160a01b038216612a4f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f7565b6000818152600260205260409020546001600160a01b031615612ab45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b612ac2600083836001612576565b6000818152600260205260409020546001600160a01b031615612b275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115610b5e576001600160a01b03841615612bd8576001600160a01b03841660009081526003602052604081208054839290612bd2908490613273565b90915550505b6001600160a01b03831615610b5e576001600160a01b03831660009081526003602052604081208054839290612c0f908490613445565b909155505050505050565b60006001612c278461156b565b612c319190613273565b600083815260076020526040902054909150808214612c84576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612cc990600190613273565b60008381526009602052604081205460088054939450909284908110612cf157612cf1613247565b906000526020600020015490508060088381548110612d1257612d12613247565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612d4a57612d4a61328a565b6001900381819060005260206000200160009055905550505050565b6000612d718361156b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612db6906131bb565b90600052602060002090601f016020900481019282612dd85760008555612e1e565b82601f10612df157805160ff1916838001178555612e1e565b82800160010185558215612e1e579182015b82811115612e1e578251825591602001919060010190612e03565b5061260d9291505b8082111561260d5760008155600101612e26565b6001600160e01b0319811681146113de57600080fd5b600060208284031215612e6257600080fd5b8135611c1281612e3a565b60005b83811015612e88578181015183820152602001612e70565b83811115610b5e5750506000910152565b60008151808452612eb1816020860160208601612e6d565b601f01601f19169290920160200192915050565b602081526000611c126020830184612e99565b600060208284031215612eea57600080fd5b5035919050565b6001600160a01b03811681146113de57600080fd5b60008060408385031215612f1957600080fd5b8235612f2481612ef1565b946020939093013593505050565b600080600060608486031215612f4757600080fd5b8335612f5281612ef1565b92506020840135612f6281612ef1565b929592945050506040919091013590565b80151581146113de57600080fd5b600060208284031215612f9357600080fd5b8135611c1281612f73565b600060208284031215612fb057600080fd5b8135611c1281612ef1565b6020808252825182820181905260009190848201906040850190845b81811015612ff357835183529284019291840191600101612fd7565b50909695505050505050565b6000806040838503121561301257600080fd5b823561301d81612ef1565b9150602083013561302d81612f73565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561306957613069613038565b604051601f8501601f19908116603f0116810190828211818310171561309157613091613038565b816040528093508581528686860111156130aa57600080fd5b858560208301376000602087830101525050509392505050565b600080600080608085870312156130da57600080fd5b84356130e581612ef1565b935060208501356130f581612ef1565b925060408501359150606085013567ffffffffffffffff81111561311857600080fd5b8501601f8101871361312957600080fd5b6131388782356020840161304e565b91505092959194509250565b60006020828403121561315657600080fd5b813567ffffffffffffffff81111561316d57600080fd5b8201601f8101841361317e57600080fd5b611df88482356020840161304e565b600080604083850312156131a057600080fd5b82356131ab81612ef1565b9150602083013561302d81612ef1565b600181811c908216806131cf57607f821691505b6020821081036131ef57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526032908201527f4172745669616c3a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156132855761328561325d565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600182016132b2576132b261325d565b5060010190565b6000602082840312156132cb57600080fd5b8151611c1281612f73565b6000602082840312156132e857600080fd5b8151611c1281612ef1565b60008351613305818460208801612e6d565b835190830190613319818360208801612e6d565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60008261339457634e487b7160e01b600052601260045260246000fd5b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061341e90830184612e99565b9695505050505050565b60006020828403121561343a57600080fd5b8151611c1281612e3a565b600082198211156134585761345861325d565b50019056fea26469706673582212203155d4438250e97f1990718715228e38268d4d8a25d9de86560fbf50c58e150164736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000005e4a05e113f8084dc018f25e0134750dbfd5c94d000000000000000000000000000000000000000000000000000000000000001c42264f20444e4120436f6c6c656374696f6e3a20417274205669616c000000000000000000000000000000000000000000000000000000000000000000000005424f415254000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): B&O DNA Collection: Art Vial
Arg [1] : _symbol (string): BOART
Arg [2] : _phase1Address (address): 0x5E4a05E113F8084Dc018F25e0134750dbfD5c94d
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000005e4a05e113f8084dc018f25e0134750dbfd5c94d
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [4] : 42264f20444e4120436f6c6c656374696f6e3a20417274205669616c00000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 424f415254000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
69960:7846:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77589:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;77589:212:0;;;;;;;;46807:100;;;:::i;:::-;;;;;;;:::i;48328:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;48328:171:0;1528:203:1;47846:416:0;;;;;;:::i;:::-;;:::i;:::-;;64181:113;64269:10;:17;64181:113;;;2338:25:1;;;2326:2;2311:18;64181:113:0;2192:177:1;74065:689:0;;;;;;:::i;:::-;;:::i;70358:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;73971:86;;;;;;:::i;:::-;;:::i;63849:256::-;;;;;;:::i;:::-;;:::i;72347:755::-;;;;;;:::i;:::-;;:::i;70305:46::-;;;;;;:::i;:::-;;:::i;70213:28::-;;;;;-1:-1:-1;;;;;70213:28:0;;;70150:18;;;;;;;;;74762:589;;;;;;:::i;:::-;;:::i;76320:140::-;;;;;;:::i;:::-;;:::i;64371:233::-;;;;;;:::i;:::-;;:::i;73553:218::-;;;;;;:::i;:::-;;:::i;46517:223::-;;;;;;:::i;:::-;;:::i;46248:207::-;;;;;;:::i;:::-;;:::i;24231:103::-;;;:::i;23583:87::-;23656:6;;-1:-1:-1;;;;;23656:6:0;23583:87;;76202:110;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46976:104::-;;;:::i;45186:42::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;45186:42:0;;;48571:155;;;;;;:::i;:::-;;:::i;73251:144::-;;;;;;:::i;:::-;;:::i;75359:722::-;;;;;;:::i;:::-;;:::i;70273:25::-;;;;;;77143:92;;;;;;:::i;:::-;;:::i;47151:290::-;;;;;;:::i;:::-;;:::i;48797:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;48918:25:0;;;48894:4;48918:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48797:164;24489:201;;;;;;:::i;:::-;;:::i;77589:212::-;77728:4;77757:36;77781:11;77757:23;:36::i;:::-;77750:43;77589:212;-1:-1:-1;;77589:212:0:o;46807:100::-;46861:13;46894:5;46887:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46807:100;:::o;48328:171::-;48404:7;48424:23;48439:7;48424:14;:23::i;:::-;-1:-1:-1;48467:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48467:24:0;;48328:171::o;47846:416::-;47927:13;47943:23;47958:7;47943:14;:23::i;:::-;47927:39;;47991:5;-1:-1:-1;;;;;47985:11:0;:2;-1:-1:-1;;;;;47985:11:0;;47977:57;;;;-1:-1:-1;;;47977:57:0;;7482:2:1;47977:57:0;;;7464:21:1;7521:2;7501:18;;;7494:30;7560:34;7540:18;;;7533:62;-1:-1:-1;;;7611:18:1;;;7604:31;7652:19;;47977:57:0;;;;;;;;;22214:10;-1:-1:-1;;;;;48069:21:0;;;;:62;;-1:-1:-1;48094:37:0;48111:5;22214:10;48797:164;:::i;48094:37::-;48047:173;;;;-1:-1:-1;;;48047:173:0;;7884:2:1;48047:173:0;;;7866:21:1;7923:2;7903:18;;;7896:30;7962:34;7942:18;;;7935:62;8033:31;8013:18;;;8006:59;8082:19;;48047:173:0;7682:425:1;48047:173:0;48233:21;48242:2;48246:7;48233:8;:21::i;:::-;47916:346;47846:416;;:::o;74065:689::-;74183:4;2601:42;3741:43;:47;3737:699;;4028:10;-1:-1:-1;;;;;4020:18:0;;;4016:85;;74208:41:::1;22214:10:::0;74227:12:::1;74241:7;74208:18;:41::i;:::-;74200:103;;;;-1:-1:-1::0;;;74200:103:0::1;;;;;;;:::i;:::-;74314:12;74342:9:::0;74337:371:::1;-1:-1:-1::0;;;;;74357:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;74353:26;::::1;74337:371;;;-1:-1:-1::0;;;;;74405:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;74427:7;;74405:15;74421:1;;74405:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;74401:296:::1;;-1:-1:-1::0;;;;;74476:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;74492:22;;:26:::1;::::0;74517:1:::1;::::0;74492:26:::1;:::i;:::-;74476:43;;;;;;;;:::i;:::-;;;;;;;;;74455:9;:15;74465:4;-1:-1:-1::0;;;;;74455:15:0::1;-1:-1:-1::0;;;;;74455:15:0::1;;;;;;;;;;;;74471:1;74455:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;74545:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:22;:26:::1;::::0;74570:1:::1;::::0;74545:26:::1;:::i;:::-;-1:-1:-1::0;;;;;74590:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:21;;74538:33;;-1:-1:-1;74590:15:0;:21;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;74590:21:0;;;;;;;;;;;;-1:-1:-1;;;;;74630:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;74590:21:::1;74630:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;74676:5:::1;;74401:296;74381:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74337:371;;;;74718:28;74728:4;74734:2;74738:7;74718:9;:28::i;:::-;74189:565;4079:7:::0;;4016:85;4161:67;;-1:-1:-1;;;4161:67:0;;4210:4;4161:67;;;9409:34:1;4217:10:0;9459:18:1;;;9452:43;2601:42:0;;4161:40;;9344:18:1;;4161:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4257:61:0;;-1:-1:-1;;;4257:61:0;;4306:4;4257:61;;;9409:34:1;-1:-1:-1;;;;;9479:15:1;;9459:18;;;9452:43;2601:42:0;;4257:40;;9344:18:1;;4257:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4115:310;;4379:30;;-1:-1:-1;;;4379:30:0;;4398:10;4379:30;;;1674:51:1;1647:18;;4379:30:0;1528:203:1;4115:310:0;74208:41:::1;22214:10:::0;74227:12:::1;22134:98:::0;74208:41:::1;74200:103;;;;-1:-1:-1::0;;;74200:103:0::1;;;;;;;:::i;:::-;74314:12;74342:9:::0;74337:371:::1;-1:-1:-1::0;;;;;74357:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;74353:26;::::1;74337:371;;;-1:-1:-1::0;;;;;74405:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;74427:7;;74405:15;74421:1;;74405:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;74401:296:::1;;-1:-1:-1::0;;;;;74476:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;74492:22;;:26:::1;::::0;74517:1:::1;::::0;74492:26:::1;:::i;:::-;74476:43;;;;;;;;:::i;:::-;;;;;;;;;74455:9;:15;74465:4;-1:-1:-1::0;;;;;74455:15:0::1;-1:-1:-1::0;;;;;74455:15:0::1;;;;;;;;;;;;74471:1;74455:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;74545:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:22;:26:::1;::::0;74570:1:::1;::::0;74545:26:::1;:::i;:::-;-1:-1:-1::0;;;;;74590:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:21;;74538:33;;-1:-1:-1;74590:15:0;:21;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;74590:21:0;;;;;;;;;;;;-1:-1:-1;;;;;74630:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;74590:21:::1;74630:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;74676:5:::1;;74401:296;74381:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74337:371;;;;74718:28;74728:4;74734:2;74738:7;74718:9;:28::i;:::-;74189:565;74065:689:::0;;;;;:::o;73971:86::-;23469:13;:11;:13::i;:::-;74033:6:::1;:16:::0;;-1:-1:-1;;74033:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;73971:86::o;63849:256::-;63946:7;63982:23;63999:5;63982:16;:23::i;:::-;63974:5;:31;63966:87;;;;-1:-1:-1;;;63966:87:0;;9958:2:1;63966:87:0;;;9940:21:1;9997:2;9977:18;;;9970:30;10036:34;10016:18;;;10009:62;-1:-1:-1;;;10087:18:1;;;10080:41;10138:19;;63966:87:0;9756:407:1;63966:87:0;-1:-1:-1;;;;;;64071:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;63849:256::o;72347:755::-;72411:6;;;;:14;;:6;:14;72403:49;;;;-1:-1:-1;;;72403:49:0;;10370:2:1;72403:49:0;;;10352:21:1;10409:2;10389:18;;;10382:30;-1:-1:-1;;;10428:18:1;;;10421:52;10490:18;;72403:49:0;10168:346:1;72403:49:0;72468:10;;72481:1;72468:14;72460:51;;;;-1:-1:-1;;;72460:51:0;;10721:2:1;72460:51:0;;;10703:21:1;10760:2;10740:18;;;10733:30;10799:26;10779:18;;;10772:54;10843:18;;72460:51:0;10519:348:1;72460:51:0;72548:10;;72530:15;:28;72522:75;;;;-1:-1:-1;;;72522:75:0;;11074:2:1;72522:75:0;;;11056:21:1;11113:2;11093:18;;;11086:30;11152:34;11132:18;;;11125:62;-1:-1:-1;;;11203:18:1;;;11196:32;11245:19;;72522:75:0;10872:398:1;72522:75:0;72624:13;;72616:43;;-1:-1:-1;;;72616:43:0;;;;;2338:25:1;;;72663:10:0;;-1:-1:-1;;;;;72624:13:0;;72616:30;;2311:18:1;;72616:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;72616:57:0;;72608:114;;;;-1:-1:-1;;;72608:114:0;;11733:2:1;72608:114:0;;;11715:21:1;11772:2;11752:18;;;11745:30;11811:34;11791:18;;;11784:62;-1:-1:-1;;;11862:18:1;;;11855:42;11914:19;;72608:114:0;11531:408:1;72608:114:0;72741:27;;;;:14;:27;;;;;;;;:36;72733:92;;;;-1:-1:-1;;;72733:92:0;;12146:2:1;72733:92:0;;;12128:21:1;12185:2;12165:18;;;12158:30;12224:34;12204:18;;;12197:62;-1:-1:-1;;;12275:18:1;;;12268:41;12326:19;;72733:92:0;11944:407:1;72733:92:0;72844:14;:21;72869:1;72844:26;72836:79;;;;-1:-1:-1;;;72836:79:0;;12558:2:1;72836:79:0;;;12540:21:1;12597:2;12577:18;;;12570:30;12636:34;12616:18;;;12609:62;-1:-1:-1;;;12687:18:1;;;12680:38;12735:19;;72836:79:0;12356:404:1;72836:79:0;72926:16;72945:15;:13;:15::i;:::-;72981:10;72971:21;;;;:9;:21;;;;;;;;:36;;;;;;;;;;;;;;;;;;73018:27;;;:14;:27;;;;;;:34;;-1:-1:-1;;73018:34:0;;;;;;72926;;-1:-1:-1;73063:31:0;;72926:34;73063:9;:31::i;:::-;72392:710;72347:755;:::o;70305:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74762:589::-;74882:4;2601:42;3741:43;:47;3737:699;;4028:10;-1:-1:-1;;;;;4020:18:0;;;4016:85;;74900:12:::1;74928:9:::0;74923:371:::1;-1:-1:-1::0;;;;;74943:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;74939:26;::::1;74923:371;;;-1:-1:-1::0;;;;;74991:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;75013:7;;74991:15;75007:1;;74991:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;74987:296:::1;;-1:-1:-1::0;;;;;75062:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;75078:22;;:26:::1;::::0;75103:1:::1;::::0;75078:26:::1;:::i;:::-;75062:43;;;;;;;;:::i;:::-;;;;;;;;;75041:9;:15;75051:4;-1:-1:-1::0;;;;;75041:15:0::1;-1:-1:-1::0;;;;;75041:15:0::1;;;;;;;;;;;;75057:1;75041:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;75131:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:22;:26:::1;::::0;75156:1:::1;::::0;75131:26:::1;:::i;:::-;-1:-1:-1::0;;;;;75176:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:21;;75124:33;;-1:-1:-1;75176:15:0;:21;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;75176:21:0;;;;;;;;;;;;-1:-1:-1;;;;;75216:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;75176:21:::1;75216:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;75262:5:::1;;74987:296;74967:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74923:371;;;;75304:39;75321:4;75327:2;75331:7;75304:39;;;;;;;;;;;::::0;:16:::1;:39::i;4016:85::-:0;4161:67;;-1:-1:-1;;;4161:67:0;;4210:4;4161:67;;;9409:34:1;4217:10:0;9459:18:1;;;9452:43;2601:42:0;;4161:40;;9344:18:1;;4161:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4257:61:0;;-1:-1:-1;;;4257:61:0;;4306:4;4257:61;;;9409:34:1;-1:-1:-1;;;;;9479:15:1;;9459:18;;;9452:43;2601:42:0;;4257:40;;9344:18:1;;4257:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4115:310;;4379:30;;-1:-1:-1;;;4379:30:0;;4398:10;4379:30;;;1674:51:1;1647:18;;4379:30:0;1528:203:1;4115:310:0;74900:12:::1;74928:9:::0;74923:371:::1;-1:-1:-1::0;;;;;74943:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;74939:26;::::1;74923:371;;;-1:-1:-1::0;;;;;74991:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;75013:7;;74991:15;75007:1;;74991:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;74987:296:::1;;-1:-1:-1::0;;;;;75062:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;75078:22;;:26:::1;::::0;75103:1:::1;::::0;75078:26:::1;:::i;:::-;75062:43;;;;;;;;:::i;:::-;;;;;;;;;75041:9;:15;75051:4;-1:-1:-1::0;;;;;75041:15:0::1;-1:-1:-1::0;;;;;75041:15:0::1;;;;;;;;;;;;75057:1;75041:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;75131:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:22;:26:::1;::::0;75156:1:::1;::::0;75131:26:::1;:::i;:::-;-1:-1:-1::0;;;;;75176:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:21;;75124:33;;-1:-1:-1;75176:15:0;:21;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;75176:21:0;;;;;;;;;;;;-1:-1:-1;;;;;75216:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;75176:21:::1;75216:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;75262:5:::1;;74987:296;74967:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74923:371;;;;75304:39;75321:4;75327:2;75331:7;75304:39;;;;;;;;;;;::::0;:16:::1;:39::i;76320:140::-:0;76438:14;76444:7;76438:5;:14::i;:::-;76320:140;:::o;64371:233::-;64446:7;64482:30;64269:10;:17;;64181:113;64482:30;64474:5;:38;64466:95;;;;-1:-1:-1;;;64466:95:0;;12967:2:1;64466:95:0;;;12949:21:1;13006:2;12986:18;;;12979:30;13045:34;13025:18;;;13018:62;-1:-1:-1;;;13096:18:1;;;13089:42;13148:19;;64466:95:0;12765:408:1;64466:95:0;64579:10;64590:5;64579:17;;;;;;;;:::i;:::-;;;;;;;;;64572:24;;64371:233;;;:::o;73553:218::-;23469:13;:11;:13::i;:::-;-1:-1:-1;;;;;73643:28:0;::::1;73635:87;;;::::0;-1:-1:-1;;;73635:87:0;;13380:2:1;73635:87:0::1;::::0;::::1;13362:21:1::0;13419:2;13399:18;;;13392:30;13458:34;13438:18;;;13431:62;-1:-1:-1;;;13509:18:1;;;13502:44;13563:19;;73635:87:0::1;13178:410:1::0;73635:87:0::1;73733:13;:30:::0;;-1:-1:-1;;;;;;73733:30:0::1;-1:-1:-1::0;;;;;73733:30:0;;;::::1;::::0;;;::::1;::::0;;73553:218::o;46517:223::-;46589:7;51413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51413:16:0;;46653:56;;;;-1:-1:-1;;;46653:56:0;;13795:2:1;46653:56:0;;;13777:21:1;13834:2;13814:18;;;13807:30;-1:-1:-1;;;13853:18:1;;;13846:54;13917:18;;46653:56:0;13593:348:1;46248:207:0;46320:7;-1:-1:-1;;;;;46348:19:0;;46340:73;;;;-1:-1:-1;;;46340:73:0;;14148:2:1;46340:73:0;;;14130:21:1;14187:2;14167:18;;;14160:30;14226:34;14206:18;;;14199:62;-1:-1:-1;;;14277:18:1;;;14270:39;14326:19;;46340:73:0;13946:405:1;46340:73:0;-1:-1:-1;;;;;;46431:16:0;;;;;:9;:16;;;;;;;46248:207::o;24231:103::-;23469:13;:11;:13::i;:::-;24296:30:::1;24323:1;24296:18;:30::i;:::-;24231:103::o:0;76202:110::-;-1:-1:-1;;;;;76289:15:0;;;;;;:9;:15;;;;;;;;;76282:22;;;;;;;;;;;;;;;;;76254:16;;76282:22;;;76289:15;76282:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76202:110;;;:::o;46976:104::-;47032:13;47065:7;47058:14;;;;;:::i;48571:155::-;48666:52;22214:10;48699:8;48709;48666:18;:52::i;73251:144::-;23469:13;:11;:13::i;:::-;73324:10:::1;:24:::0;;;73364:23:::1;::::0;2338:25:1;;;73364:23:0::1;::::0;2326:2:1;2311:18;73364:23:0::1;;;;;;;73251:144:::0;:::o;75359:722::-;75498:4;2601:42;3741:43;:47;3737:699;;4028:10;-1:-1:-1;;;;;4020:18:0;;;4016:85;;75524:41:::1;22214:10:::0;75543:12:::1;75557:7;75524:18;:41::i;:::-;75516:103;;;;-1:-1:-1::0;;;75516:103:0::1;;;;;;;:::i;:::-;75630:12;75658:9:::0;75653:371:::1;-1:-1:-1::0;;;;;75673:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;75669:26;::::1;75653:371;;;-1:-1:-1::0;;;;;75721:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;75743:7;;75721:15;75737:1;;75721:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;75717:296:::1;;-1:-1:-1::0;;;;;75792:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;75808:22;;:26:::1;::::0;75833:1:::1;::::0;75808:26:::1;:::i;:::-;75792:43;;;;;;;;:::i;:::-;;;;;;;;;75771:9;:15;75781:4;-1:-1:-1::0;;;;;75771:15:0::1;-1:-1:-1::0;;;;;75771:15:0::1;;;;;;;;;;;;75787:1;75771:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;75861:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:22;:26:::1;::::0;75886:1:::1;::::0;75861:26:::1;:::i;:::-;-1:-1:-1::0;;;;;75906:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:21;;75854:33;;-1:-1:-1;75906:15:0;:21;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;75906:21:0;;;;;;;;;;;;-1:-1:-1;;;;;75946:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;75906:21:::1;75946:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;75992:5:::1;;75717:296;75697:3:::0;::::1;::::0;::::1;:::i;:::-;;;;75653:371;;;;76034:39;76048:4;76054:2;76058:7;76067:5;76034:13;:39::i;:::-;75505:576;4079:7:::0;;4016:85;4161:67;;-1:-1:-1;;;4161:67:0;;4210:4;4161:67;;;9409:34:1;4217:10:0;9459:18:1;;;9452:43;2601:42:0;;4161:40;;9344:18:1;;4161:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4257:61:0;;-1:-1:-1;;;4257:61:0;;4306:4;4257:61;;;9409:34:1;-1:-1:-1;;;;;9479:15:1;;9459:18;;;9452:43;2601:42:0;;4257:40;;9344:18:1;;4257:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4115:310;;4379:30;;-1:-1:-1;;;4379:30:0;;4398:10;4379:30;;;1674:51:1;1647:18;;4379:30:0;1528:203:1;4115:310:0;75524:41:::1;22214:10:::0;75543:12:::1;22134:98:::0;75524:41:::1;75516:103;;;;-1:-1:-1::0;;;75516:103:0::1;;;;;;;:::i;:::-;75630:12;75658:9:::0;75653:371:::1;-1:-1:-1::0;;;;;75673:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;75669:26;::::1;75653:371;;;-1:-1:-1::0;;;;;75721:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;75743:7;;75721:15;75737:1;;75721:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;75717:296:::1;;-1:-1:-1::0;;;;;75792:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;75808:22;;:26:::1;::::0;75833:1:::1;::::0;75808:26:::1;:::i;:::-;75792:43;;;;;;;;:::i;:::-;;;;;;;;;75771:9;:15;75781:4;-1:-1:-1::0;;;;;75771:15:0::1;-1:-1:-1::0;;;;;75771:15:0::1;;;;;;;;;;;;75787:1;75771:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;75861:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:22;:26:::1;::::0;75886:1:::1;::::0;75861:26:::1;:::i;:::-;-1:-1:-1::0;;;;;75906:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:21;;75854:33;;-1:-1:-1;75906:15:0;:21;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;75906:21:0;;;;;;;;;;;;-1:-1:-1;;;;;75946:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;75906:21:::1;75946:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;75992:5:::1;;75717:296;75697:3:::0;::::1;::::0;::::1;:::i;:::-;;;;75653:371;;;;76034:39;76048:4;76054:2;76058:7;76067:5;76034:13;:39::i;:::-;75505:576;75359:722:::0;;;;;:::o;77143:92::-;23469:13;:11;:13::i;:::-;77214;;::::1;::::0;:3:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;47151:290::-:0;47224:13;47250:23;47265:7;47250:14;:23::i;:::-;47286:21;47310:10;:8;:10::i;:::-;47286:34;;47362:1;47344:7;47338:21;:25;:95;;;;;;;;;;;;;;;;;47390:7;47399:18;:7;:16;:18::i;:::-;47373:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47338:95;47331:102;47151:290;-1:-1:-1;;;47151:290:0:o;24489:201::-;23469:13;:11;:13::i;:::-;-1:-1:-1;;;;;24578:22:0;::::1;24570:73;;;::::0;-1:-1:-1;;;24570:73:0;;15200:2:1;24570:73:0::1;::::0;::::1;15182:21:1::0;15239:2;15219:18;;;15212:30;15278:34;15258:18;;;15251:62;-1:-1:-1;;;15329:18:1;;;15322:36;15375:19;;24570:73:0::1;14998:402:1::0;24570:73:0::1;24654:28;24673:8;24654:18;:28::i;63541:224::-:0;63643:4;-1:-1:-1;;;;;;63667:50:0;;-1:-1:-1;;;63667:50:0;;:90;;;63721:36;63745:11;63721:23;:36::i;58147:135::-;51815:4;51413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51413:16:0;58221:53;;;;-1:-1:-1;;;58221:53:0;;13795:2:1;58221:53:0;;;13777:21:1;13834:2;13814:18;;;13807:30;-1:-1:-1;;;13853:18:1;;;13846:54;13917:18;;58221:53:0;13593:348:1;57426:174:0;57501:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;57501:29:0;-1:-1:-1;;;;;57501:29:0;;;;;;;;:24;;57555:23;57501:24;57555:14;:23::i;:::-;-1:-1:-1;;;;;57546:46:0;;;;;;;;;;;57426:174;;:::o;52045:264::-;52138:4;52155:13;52171:23;52186:7;52171:14;:23::i;:::-;52155:39;;52224:5;-1:-1:-1;;;;;52213:16:0;:7;-1:-1:-1;;;;;52213:16:0;;:52;;;-1:-1:-1;;;;;;48918:25:0;;;48894:4;48918:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;52233:32;52213:87;;;;52293:7;-1:-1:-1;;;;;52269:31:0;:20;52281:7;52269:11;:20::i;:::-;-1:-1:-1;;;;;52269:31:0;;52213:87;52205:96;52045:264;-1:-1:-1;;;;52045:264:0:o;56044:1263::-;56203:4;-1:-1:-1;;;;;56176:31:0;:23;56191:7;56176:14;:23::i;:::-;-1:-1:-1;;;;;56176:31:0;;56168:81;;;;-1:-1:-1;;;56168:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56268:16:0;;56260:65;;;;-1:-1:-1;;;56260:65:0;;16013:2:1;56260:65:0;;;15995:21:1;16052:2;16032:18;;;16025:30;16091:34;16071:18;;;16064:62;-1:-1:-1;;;16142:18:1;;;16135:34;16186:19;;56260:65:0;15811:400:1;56260:65:0;56338:42;56359:4;56365:2;56369:7;56378:1;56338:20;:42::i;:::-;56510:4;-1:-1:-1;;;;;56483:31:0;:23;56498:7;56483:14;:23::i;:::-;-1:-1:-1;;;;;56483:31:0;;56475:81;;;;-1:-1:-1;;;56475:81:0;;;;;;;:::i;:::-;56628:24;;;;:15;:24;;;;;;;;56621:31;;-1:-1:-1;;;;;;56621:31:0;;;;;;-1:-1:-1;;;;;57104:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;57104:20:0;;;57139:13;;;;;;;;;:18;;56621:31;57139:18;;;57179:16;;;:7;:16;;;;;;:21;;;;;;;;;;57218:27;;56644:7;;57218:27;;;47916:346;47846:416;;:::o;23748:132::-;23656:6;;-1:-1:-1;;;;;23656:6:0;22214:10;23812:23;23804:68;;;;-1:-1:-1;;;23804:68:0;;16418:2:1;23804:68:0;;;16400:21:1;;;16437:18;;;16430:30;16496:34;16476:18;;;16469:62;16548:18;;23804:68:0;16216:356:1;71701:347:0;71823:14;:21;71743:20;;;;71797:23;:21;:23::i;:::-;:47;;;;:::i;:::-;71775:69;;71870:14;71885:11;71870:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;71855:42;;;;71938:14;71977:1;71953:14;:21;;;;:25;;;;:::i;:::-;71938:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;71908:14;71923:11;71908:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;71990:14;:20;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;71990:20:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71701:347:0;:::o;52651:110::-;52727:26;52737:2;52741:7;52727:26;;;;;;;;;;;;:9;:26::i;76468:575::-;76546:42;22214:10;76579:8;76546:18;:42::i;:::-;76538:102;;;;-1:-1:-1;;;76538:102:0;;17125:2:1;76538:102:0;;;17107:21:1;17164:2;17144:18;;;17137:30;17203:34;17183:18;;;17176:62;-1:-1:-1;;;17254:18:1;;;17247:45;17309:19;;76538:102:0;16923:411:1;76538:102:0;76657:9;76652:352;76672:9;:28;76682:17;76690:8;76682:7;:17::i;:::-;-1:-1:-1;;;;;76672:28:0;;;;;;;;;;;;-1:-1:-1;76672:28:0;:35;76668:39;;76652:352;;;76768:8;76733:9;:28;76743:17;76751:8;76743:7;:17::i;:::-;-1:-1:-1;;;;;76733:28:0;-1:-1:-1;;;;;76733:28:0;;;;;;;;;;;;76762:1;76733:31;;;;;;;;:::i;:::-;;;;;;;;;:43;76729:264;;76831:9;:28;76841:17;76849:8;76841:7;:17::i;:::-;-1:-1:-1;;;;;76831:28:0;-1:-1:-1;;;;;76831:28:0;;;;;;;;;;;;76898:1;76860:9;:28;76870:17;76878:8;76870:7;:17::i;:::-;-1:-1:-1;;;;;76860:28:0;;;;;;;;;;;;-1:-1:-1;76860:28:0;:35;:39;;;;:::i;:::-;76831:69;;;;;;;;:::i;:::-;;;;;;;;;76797:9;:28;76807:17;76815:8;76807:7;:17::i;:::-;-1:-1:-1;;;;;76797:28:0;-1:-1:-1;;;;;76797:28:0;;;;;;;;;;;;76826:1;76797:31;;;;;;;;:::i;:::-;;;;;;;;:103;;;;76919:9;:28;76929:17;76937:8;76929:7;:17::i;:::-;-1:-1:-1;;;;;76919:28:0;-1:-1:-1;;;;;76919:28:0;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;76972:5;;76729:264;76709:3;;;;:::i;:::-;;;;76652:352;;;;77014:21;77026:8;77014:11;:21::i;24850:191::-;24943:6;;;-1:-1:-1;;;;;24960:17:0;;;-1:-1:-1;;;;;;24960:17:0;;;;;;;24993:40;;24943:6;;;24960:17;24943:6;;24993:40;;24924:16;;24993:40;24913:128;24850:191;:::o;57743:315::-;57898:8;-1:-1:-1;;;;;57889:17:0;:5;-1:-1:-1;;;;;57889:17:0;;57881:55;;;;-1:-1:-1;;;57881:55:0;;17541:2:1;57881:55:0;;;17523:21:1;17580:2;17560:18;;;17553:30;17619:27;17599:18;;;17592:55;17664:18;;57881:55:0;17339:349:1;57881:55:0;-1:-1:-1;;;;;57947:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;57947:46:0;;;;;;;;;;58009:41;;540::1;;;58009::0;;513:18:1;58009:41:0;;;;;;;57743:315;;;:::o;50893:313::-;51049:28;51059:4;51065:2;51069:7;51049:9;:28::i;:::-;51096:47;51119:4;51125:2;51129:7;51138:4;51096:22;:47::i;:::-;51088:110;;;;-1:-1:-1;;;51088:110:0;;;;;;;:::i;77243:96::-;77295:13;77328:3;77321:10;;;;;:::i;19561:716::-;19617:13;19668:14;19685:17;19696:5;19685:10;:17::i;:::-;19705:1;19685:21;19668:38;;19721:20;19755:6;19744:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19744:18:0;-1:-1:-1;19721:41:0;-1:-1:-1;19886:28:0;;;19902:2;19886:28;19943:288;-1:-1:-1;;19975:5:0;-1:-1:-1;;;20112:2:0;20101:14;;20096:30;19975:5;20083:44;20173:2;20164:11;;;-1:-1:-1;20194:21:0;19943:288;20194:21;-1:-1:-1;20252:6:0;19561:716;-1:-1:-1;;;19561:716:0:o;45879:305::-;45981:4;-1:-1:-1;;;;;;46018:40:0;;-1:-1:-1;;;46018:40:0;;:105;;-1:-1:-1;;;;;;;46075:48:0;;-1:-1:-1;;;46075:48:0;46018:105;:158;;;-1:-1:-1;;;;;;;;;;37421:40:0;;;46140:36;37312:157;77347:234;77517:56;77544:4;77550:2;77554:7;77563:9;77517:26;:56::i;70829:573::-;70879:20;70911:12;70926:16;:6;5755:14;;5663:114;70926:16;70911:31;-1:-1:-1;71051:10:0;71084:11;71118:12;71153:15;71191:16;71240;71255:1;71118:12;71240:16;:::i;:::-;71018:321;;;-1:-1:-1;;;;;18511:15:1;;;71018:321:0;;;18493:34:1;18543:18;;18536:34;;;;18586:18;;;18579:34;;;;18629:18;;;18622:34;18672:19;;;18665:35;71230:27:0;18716:19:1;;;18709:35;71288:4:0;18760:19:1;;;18753:44;18813:19;;;18806:35;;;18427:19;;71018:321:0;;;;;;;;;;;;70990:364;;;;;;70968:397;;70953:412;;71376:18;:6;5874:19;;5892:1;5874:19;;;5785:127;71376:18;70900:502;70829:573;:::o;52988:319::-;53117:18;53123:2;53127:7;53117:5;:18::i;:::-;53168:53;53199:1;53203:2;53207:7;53216:4;53168:22;:53::i;:::-;53146:153;;;;-1:-1:-1;;;53146:153:0;;;;;;;:::i;54924:783::-;54984:13;55000:23;55015:7;55000:14;:23::i;:::-;54984:39;;55036:51;55057:5;55072:1;55076:7;55085:1;55036:20;:51::i;:::-;55200:23;55215:7;55200:14;:23::i;:::-;55271:24;;;;:15;:24;;;;;;;;55264:31;;-1:-1:-1;;;;;;55264:31:0;;;;;;-1:-1:-1;;;;;55516:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;55516:21:0;;;55566:16;;;:7;:16;;;;;;55559:23;;;;;;;55600:36;55192:31;;-1:-1:-1;55287:7:0;;55600:36;;55271:24;;55600:36;72392:710;72347:755;:::o;58846:853::-;59000:4;-1:-1:-1;;;;;59021:13:0;;26576:19;:23;59017:675;;59057:71;;-1:-1:-1;;;59057:71:0;;-1:-1:-1;;;;;59057:36:0;;;;;:71;;22214:10;;59108:4;;59114:7;;59123:4;;59057:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59057:71:0;;;;;;;;-1:-1:-1;;59057:71:0;;;;;;;;;;;;:::i;:::-;;;59053:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59298:6;:13;59315:1;59298:18;59294:328;;59341:60;;-1:-1:-1;;;59341:60:0;;;;;;;:::i;59294:328::-;59572:6;59566:13;59557:6;59553:2;59549:15;59542:38;59053:584;-1:-1:-1;;;;;;59179:51:0;-1:-1:-1;;;59179:51:0;;-1:-1:-1;59172:58:0;;59017:675;-1:-1:-1;59676:4:0;58846:853;;;;;;:::o;16427:922::-;16480:7;;-1:-1:-1;;;16558:15:0;;16554:102;;-1:-1:-1;;;16594:15:0;;;-1:-1:-1;16638:2:0;16628:12;16554:102;16683:6;16674:5;:15;16670:102;;16719:6;16710:15;;;-1:-1:-1;16754:2:0;16744:12;16670:102;16799:6;16790:5;:15;16786:102;;16835:6;16826:15;;;-1:-1:-1;16870:2:0;16860:12;16786:102;16915:5;16906;:14;16902:99;;16950:5;16941:14;;;-1:-1:-1;16984:1:0;16974:11;16902:99;17028:5;17019;:14;17015:99;;17063:5;17054:14;;;-1:-1:-1;17097:1:0;17087:11;17015:99;17141:5;17132;:14;17128:99;;17176:5;17167:14;;;-1:-1:-1;17210:1:0;17200:11;17128:99;17254:5;17245;:14;17241:66;;17290:1;17280:11;17335:6;16427:922;-1:-1:-1;;16427:922:0:o;64678:915::-;64855:61;64882:4;64888:2;64892:12;64906:9;64855:26;:61::i;:::-;64945:1;64933:9;:13;64929:222;;;65076:63;;-1:-1:-1;;;65076:63:0;;19802:2:1;65076:63:0;;;19784:21:1;19841:2;19821:18;;;19814:30;19880:34;19860:18;;;19853:62;-1:-1:-1;;;19931:18:1;;;19924:51;19992:19;;65076:63:0;19600:417:1;64929:222:0;65181:12;-1:-1:-1;;;;;65210:18:0;;65206:187;;65245:40;65277:7;66420:10;:17;;66393:24;;;;:15;:24;;;;;:44;;;66448:24;;;;;;;;;;;;66316:164;65245:40;65206:187;;;65315:2;-1:-1:-1;;;;;65307:10:0;:4;-1:-1:-1;;;;;65307:10:0;;65303:90;;65334:47;65367:4;65373:7;65334:32;:47::i;:::-;-1:-1:-1;;;;;65407:16:0;;65403:183;;65440:45;65477:7;65440:36;:45::i;:::-;65403:183;;;65513:4;-1:-1:-1;;;;;65507:10:0;:2;-1:-1:-1;;;;;65507:10:0;;65503:83;;65534:40;65562:2;65566:7;65534:27;:40::i;53643:942::-;-1:-1:-1;;;;;53723:16:0;;53715:61;;;;-1:-1:-1;;;53715:61:0;;20224:2:1;53715:61:0;;;20206:21:1;;;20243:18;;;20236:30;20302:34;20282:18;;;20275:62;20354:18;;53715:61:0;20022:356:1;53715:61:0;51815:4;51413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51413:16:0;51839:31;53787:58;;;;-1:-1:-1;;;53787:58:0;;20585:2:1;53787:58:0;;;20567:21:1;20624:2;20604:18;;;20597:30;20663;20643:18;;;20636:58;20711:18;;53787:58:0;20383:352:1;53787:58:0;53858:48;53887:1;53891:2;53895:7;53904:1;53858:20;:48::i;:::-;51815:4;51413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51413:16:0;51839:31;53996:58;;;;-1:-1:-1;;;53996:58:0;;20585:2:1;53996:58:0;;;20567:21:1;20624:2;20604:18;;;20597:30;20663;20643:18;;;20636:58;20711:18;;53996:58:0;20383:352:1;53996:58:0;-1:-1:-1;;;;;54403:13:0;;;;;;:9;:13;;;;;;;;:18;;54420:1;54403:18;;;54445:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;54445:21:0;;;;;54484:33;54453:7;;54403:13;;54484:33;;54403:13;;54484:33;72392:710;72347:755;:::o;60431:410::-;60621:1;60609:9;:13;60605:229;;;-1:-1:-1;;;;;60643:18:0;;;60639:87;;-1:-1:-1;;;;;60682:15:0;;;;;;:9;:15;;;;;:28;;60701:9;;60682:15;:28;;60701:9;;60682:28;:::i;:::-;;;;-1:-1:-1;;60639:87:0;-1:-1:-1;;;;;60744:16:0;;;60740:83;;-1:-1:-1;;;;;60781:13:0;;;;;;:9;:13;;;;;:26;;60798:9;;60781:13;:26;;60798:9;;60781:26;:::i;:::-;;;;-1:-1:-1;;60431:410:0;;;;:::o;67107:988::-;67373:22;67423:1;67398:22;67415:4;67398:16;:22::i;:::-;:26;;;;:::i;:::-;67435:18;67456:26;;;:17;:26;;;;;;67373:51;;-1:-1:-1;67589:28:0;;;67585:328;;-1:-1:-1;;;;;67656:18:0;;67634:19;67656:18;;;:12;:18;;;;;;;;:34;;;;;;;;;67707:30;;;;;;:44;;;67824:30;;:17;:30;;;;;:43;;;67585:328;-1:-1:-1;68009:26:0;;;;:17;:26;;;;;;;;68002:33;;;-1:-1:-1;;;;;68053:18:0;;;;;:12;:18;;;;;:34;;;;;;;68046:41;67107:988::o;68390:1079::-;68668:10;:17;68643:22;;68668:21;;68688:1;;68668:21;:::i;:::-;68700:18;68721:24;;;:15;:24;;;;;;69094:10;:26;;68643:46;;-1:-1:-1;68721:24:0;;68643:46;;69094:26;;;;;;:::i;:::-;;;;;;;;;69072:48;;69158:11;69133:10;69144;69133:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;69238:28;;;:15;:28;;;;;;;:41;;;69410:24;;;;;69403:31;69445:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;68461:1008;;;68390:1079;:::o;65894:221::-;65979:14;65996:20;66013:2;65996:16;:20::i;:::-;-1:-1:-1;;;;;66027:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;66072:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;65894:221:0:o;-1:-1:-1:-;;;;;;;:::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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:118::-;2921:5;2914:13;2907:21;2900:5;2897:32;2887:60;;2943:1;2940;2933:12;2958:241;3014:6;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3122:9;3109:23;3141:28;3163:5;3141:28;:::i;3204:247::-;3263:6;3316:2;3304:9;3295:7;3291:23;3287:32;3284:52;;;3332:1;3329;3322:12;3284:52;3371:9;3358:23;3390:31;3415:5;3390:31;:::i;3456:632::-;3627:2;3679:21;;;3749:13;;3652:18;;;3771:22;;;3598:4;;3627:2;3850:15;;;;3824:2;3809:18;;;3598:4;3893:169;3907:6;3904:1;3901:13;3893:169;;;3968:13;;3956:26;;4037:15;;;;4002:12;;;;3929:1;3922:9;3893:169;;;-1:-1:-1;4079:3:1;;3456:632;-1:-1:-1;;;;;;3456:632:1:o;4093:382::-;4158:6;4166;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4274:9;4261:23;4293:31;4318:5;4293:31;:::i;:::-;4343:5;-1:-1:-1;4400:2:1;4385:18;;4372:32;4413:30;4372:32;4413:30;:::i;:::-;4462:7;4452:17;;;4093:382;;;;;:::o;4480:127::-;4541:10;4536:3;4532:20;4529:1;4522:31;4572:4;4569:1;4562:15;4596:4;4593:1;4586:15;4612:631;4676:5;4706:18;4747:2;4739:6;4736:14;4733:40;;;4753:18;;:::i;:::-;4828:2;4822:9;4796:2;4882:15;;-1:-1:-1;;4878:24:1;;;4904:2;4874:33;4870:42;4858:55;;;4928:18;;;4948:22;;;4925:46;4922:72;;;4974:18;;:::i;:::-;5014:10;5010:2;5003:22;5043:6;5034:15;;5073:6;5065;5058:22;5113:3;5104:6;5099:3;5095:16;5092:25;5089:45;;;5130:1;5127;5120:12;5089:45;5180:6;5175:3;5168:4;5160:6;5156:17;5143:44;5235:1;5228:4;5219:6;5211;5207:19;5203:30;5196:41;;;;4612:631;;;;;:::o;5248:794::-;5343:6;5351;5359;5367;5420:3;5408:9;5399:7;5395:23;5391:33;5388:53;;;5437:1;5434;5427:12;5388:53;5476:9;5463:23;5495:31;5520:5;5495:31;:::i;:::-;5545:5;-1:-1:-1;5602:2:1;5587:18;;5574:32;5615:33;5574:32;5615:33;:::i;:::-;5667:7;-1:-1:-1;5721:2:1;5706:18;;5693:32;;-1:-1:-1;5776:2:1;5761:18;;5748:32;5803:18;5792:30;;5789:50;;;5835:1;5832;5825:12;5789:50;5858:22;;5911:4;5903:13;;5899:27;-1:-1:-1;5889:55:1;;5940:1;5937;5930:12;5889:55;5963:73;6028:7;6023:2;6010:16;6005:2;6001;5997:11;5963:73;:::i;:::-;5953:83;;;5248:794;;;;;;;:::o;6047:450::-;6116:6;6169:2;6157:9;6148:7;6144:23;6140:32;6137:52;;;6185:1;6182;6175:12;6137:52;6225:9;6212:23;6258:18;6250:6;6247:30;6244:50;;;6290:1;6287;6280:12;6244:50;6313:22;;6366:4;6358:13;;6354:27;-1:-1:-1;6344:55:1;;6395:1;6392;6385:12;6344:55;6418:73;6483:7;6478:2;6465:16;6460:2;6456;6452:11;6418:73;:::i;6502:388::-;6570:6;6578;6631:2;6619:9;6610:7;6606:23;6602:32;6599:52;;;6647:1;6644;6637:12;6599:52;6686:9;6673:23;6705:31;6730:5;6705:31;:::i;:::-;6755:5;-1:-1:-1;6812:2:1;6797:18;;6784:32;6825:33;6784:32;6825:33;:::i;6895:380::-;6974:1;6970:12;;;;7017;;;7038:61;;7092:4;7084:6;7080:17;7070:27;;7038:61;7145:2;7137:6;7134:14;7114:18;7111:38;7108:161;;7191:10;7186:3;7182:20;7179:1;7172:31;7226:4;7223:1;7216:15;7254:4;7251:1;7244:15;7108:161;;6895:380;;;:::o;8112:414::-;8314:2;8296:21;;;8353:2;8333:18;;;8326:30;8392:34;8387:2;8372:18;;8365:62;-1:-1:-1;;;8458:2:1;8443:18;;8436:48;8516:3;8501:19;;8112:414::o;8531:127::-;8592:10;8587:3;8583:20;8580:1;8573:31;8623:4;8620:1;8613:15;8647:4;8644:1;8637:15;8663:127;8724:10;8719:3;8715:20;8712:1;8705:31;8755:4;8752:1;8745:15;8779:4;8776:1;8769:15;8795:125;8835:4;8863:1;8860;8857:8;8854:34;;;8868:18;;:::i;:::-;-1:-1:-1;8905:9:1;;8795:125::o;8925:127::-;8986:10;8981:3;8977:20;8974:1;8967:31;9017:4;9014:1;9007:15;9041:4;9038:1;9031:15;9057:135;9096:3;9117:17;;;9114:43;;9137:18;;:::i;:::-;-1:-1:-1;9184:1:1;9173:13;;9057:135::o;9506:245::-;9573:6;9626:2;9614:9;9605:7;9601:23;9597:32;9594:52;;;9642:1;9639;9632:12;9594:52;9674:9;9668:16;9693:28;9715:5;9693:28;:::i;11275:251::-;11345:6;11398:2;11386:9;11377:7;11373:23;11369:32;11366:52;;;11414:1;11411;11404:12;11366:52;11446:9;11440:16;11465:31;11490:5;11465:31;:::i;14356:637::-;14636:3;14674:6;14668:13;14690:53;14736:6;14731:3;14724:4;14716:6;14712:17;14690:53;:::i;:::-;14806:13;;14765:16;;;;14828:57;14806:13;14765:16;14862:4;14850:17;;14828:57;:::i;:::-;-1:-1:-1;;;14907:20:1;;14936:22;;;14985:1;14974:13;;14356:637;-1:-1:-1;;;;14356:637:1:o;15405:401::-;15607:2;15589:21;;;15646:2;15626:18;;;15619:30;15685:34;15680:2;15665:18;;15658:62;-1:-1:-1;;;15751:2:1;15736:18;;15729:35;15796:3;15781:19;;15405:401::o;16709:209::-;16741:1;16767;16757:132;;16811:10;16806:3;16802:20;16799:1;16792:31;16846:4;16843:1;16836:15;16874:4;16871:1;16864:15;16757:132;-1:-1:-1;16903:9:1;;16709:209::o;17693:414::-;17895:2;17877:21;;;17934:2;17914:18;;;17907:30;17973:34;17968:2;17953:18;;17946:62;-1:-1:-1;;;18039:2:1;18024:18;;18017:48;18097:3;18082:19;;17693:414::o;18852:489::-;-1:-1:-1;;;;;19121:15:1;;;19103:34;;19173:15;;19168:2;19153:18;;19146:43;19220:2;19205:18;;19198:34;;;19268:3;19263:2;19248:18;;19241:31;;;19046:4;;19289:46;;19315:19;;19307:6;19289:46;:::i;:::-;19281:54;18852:489;-1:-1:-1;;;;;;18852:489:1:o;19346:249::-;19415:6;19468:2;19456:9;19447:7;19443:23;19439:32;19436:52;;;19484:1;19481;19474:12;19436:52;19516:9;19510:16;19535:30;19559:5;19535:30;:::i;20740:128::-;20780:3;20811:1;20807:6;20804:1;20801:13;20798:39;;;20817:18;;:::i;:::-;-1:-1:-1;20853:9:1;;20740:128::o
Swarm Source
ipfs://3155d4438250e97f1990718715228e38268d4d8a25d9de86560fbf50c58e1501
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.