ERC-721
Overview
Max Total Supply
500 IMNFT
Holders
232
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 IMNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
IconicNFT721a
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-19 */ 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; } } 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); } } 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); } } } 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); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } 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 unregister(address addr) 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); } pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = 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(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // 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) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.19; contract IconicNFT721a is ERC721A, ReentrancyGuard, Ownable, DefaultOperatorFilterer { uint16 public maxMintsPerAddress = 1; mapping(address => int16) public artPassMints; bool public artPassMintingActive = false; bool public allowListMintingActive = false; bool public mintingActive = false; bool public burningActive = false; bytes32 public allowListMerkleRoot = ''; bytes32 public artPassMerkleRoot = ''; string public baseURI; bool public useEditionForURI = false; uint256 public mintPrice; address payable iconicAddress; address admin; mapping(uint16 => uint16) public editionSupply; //how many available within that edition mapping(uint256 => uint16) public tokenToEdition; //token to edition constructor(string memory name_, string memory symbol_, string memory baseURI_, bytes32 artPassMerkleRoot_, bytes32 allowListMerkleRoot_, address iconicAddress_, uint256 mintPrice_, uint16 editionSupply_) ERC721A(name_, symbol_) { require(_msgSenderERC721A() != iconicAddress_, "Error"); admin = _msgSenderERC721A(); baseURI = baseURI_; artPassMerkleRoot = artPassMerkleRoot_; allowListMerkleRoot = allowListMerkleRoot_; iconicAddress = payable(iconicAddress_); mintPrice = mintPrice_; setSupplyInEdition(1, editionSupply_); } function enableArtPassMinting() public requiresAdmin { artPassMintingActive = true; } function disableArtPassMinting() public requiresAdmin { artPassMintingActive = false; } function enableAllowListMinting() public requiresAdmin { allowListMintingActive = true; } function disableAllowListMinting() public requiresAdmin { allowListMintingActive = false; } function enableMinting() public requiresAdmin { mintingActive = true; } function disableMinting() public requiresAdmin { mintingActive = false; } function enableTokenBurning() public requiresAdmin { burningActive = true; } function disableTokenBurning() public requiresAdmin { burningActive = false; } function enableUseEditionForURI() public requiresAdmin { useEditionForURI = true; } function disableUseEditionForURI() public requiresAdmin { useEditionForURI = false; } function setBaseTokenURI(string memory baseURI_) public requiresAdmin { baseURI = baseURI_; } function setSupplyInEdition(uint16 edition, uint16 supply) public requiresAdmin { editionSupply[edition] = supply; } function setMintPrice(uint256 mintPrice_) public requiresAdmin { mintPrice = mintPrice_; } function setMaxMintsPerAddress(uint8 maxMintsPerAddress_) public requiresAdmin { maxMintsPerAddress = maxMintsPerAddress_; } function setArtPassMerkleRoot(bytes32 merkleRoot_) public requiresAdmin { artPassMerkleRoot = merkleRoot_; } function setAllowListMerkleRoot(bytes32 merkleRoot_) public requiresAdmin { allowListMerkleRoot = merkleRoot_; } function setAdditionalArtPassMints(address[] memory artPassHolders, int8[] memory extras) public requiresAdmin { //remember to zero out old addresses require(artPassHolders.length == extras.length, "incorrect list"); for(uint16 i = 0; i < artPassHolders.length; i++) { artPassMints[artPassHolders[i]] = extras[i]; } } function getAvailableArtPassMintCount(address artPassHolder) public view returns (uint16) { int16 availableMints = 1 + artPassMints[artPassHolder]; return uint16(availableMints); } function artPassMint(bytes32[] calldata merkleProof, uint16 amount, uint16 editionIndex) external payable nonReentrant() { require(artPassMintingActive, "Art Pass minting not enabled"); require(msg.value == mintPrice * amount, "Incorrect amount of ether sent"); require(amount > 0, "Must mint positive amount"); require(editionSupply[editionIndex] >= amount, "Mint exceeds collection size"); require(getAvailableArtPassMintCount(_msgSenderERC721A())>= amount, "Exceeds Art Pass holder mint limit"); require( MerkleProof.verify( merkleProof, artPassMerkleRoot, keccak256(abi.encodePacked(_msgSenderERC721A())) ), "Not an Art Pass holder" ); iconicAddress.transfer(msg.value); _mint(_msgSenderERC721A(), amount); _editionUpdate(amount, editionIndex); artPassMints[_msgSenderERC721A()] = artPassMints[_msgSenderERC721A()] - int16(amount); } function allowlistMint(bytes32[] calldata merkleProof, uint16 amount, uint16 editionIndex) external payable nonReentrant() { require(allowListMintingActive, "Allow list minting not enabled"); require(msg.value == mintPrice * amount, "Incorrect amount of ether sent"); require(amount > 0, "Must mint positive amount"); require(editionSupply[editionIndex] >= amount, "Mint exceeds collection size"); uint64 mintCountBySender = _getAux(_msgSenderERC721A()) + amount; require(mintCountBySender <= maxMintsPerAddress, "Exceeds per address mint limit"); require( MerkleProof.verify( merkleProof, allowListMerkleRoot, keccak256(abi.encodePacked(_msgSenderERC721A())) ), "Address not in allowlist" ); iconicAddress.transfer(msg.value); _mint(_msgSenderERC721A(), amount); _editionUpdate(amount, editionIndex); _setAux(_msgSenderERC721A(), mintCountBySender); } function mint(uint16 amount, uint16 editionIndex) external payable nonReentrant() { require(mintingActive, "Minting not enabled"); require(msg.value == mintPrice * amount, "Incorrect amount of ether sent"); require(amount > 0, "Must mint positive amount"); require(editionSupply[editionIndex] >= amount, "Mint exceeds collection size"); uint64 mintCountBySender = _getAux(_msgSenderERC721A()) + amount; require(mintCountBySender <= maxMintsPerAddress, "Exceeds per address mint limit"); iconicAddress.transfer(msg.value); _mint(_msgSenderERC721A(), amount); _editionUpdate(amount, editionIndex); _setAux(_msgSenderERC721A(), mintCountBySender); } function burn(uint256 tokenId) public { require(burningActive, "Token burning is not enabled"); _burn(tokenId, true); } function _editionUpdate(uint16 amount, uint16 editionIndex) internal { editionSupply[editionIndex] = editionSupply[editionIndex] - amount; //this function takes place post mint, so the tokenIds have already been incremented to match the amount for(uint tokenId=_nextTokenId() - amount; tokenId < _nextTokenId(); tokenId++) { tokenToEdition[tokenId] = editionIndex; } } function _startTokenId() internal pure override returns (uint256) { return 1; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Token does not exist"); uint uriIndex = useEditionForURI ? tokenToEdition[tokenId] : tokenId; return string(abi.encodePacked(baseURI, Strings.toString(uriIndex))); } modifier requiresAdmin() { require(_msgSenderERC721A() == admin, "Not Authorized"); _; } /* Operator Filter Registry Overrides */ function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
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":"string","name":"baseURI_","type":"string"},{"internalType":"bytes32","name":"artPassMerkleRoot_","type":"bytes32"},{"internalType":"bytes32","name":"allowListMerkleRoot_","type":"bytes32"},{"internalType":"address","name":"iconicAddress_","type":"address"},{"internalType":"uint256","name":"mintPrice_","type":"uint256"},{"internalType":"uint16","name":"editionSupply_","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint16","name":"editionIndex","type":"uint16"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"artPassMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint16","name":"editionIndex","type":"uint16"}],"name":"artPassMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"artPassMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"artPassMints","outputs":[{"internalType":"int16","name":"","type":"int16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burningActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowListMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableArtPassMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTokenBurning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableUseEditionForURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"editionSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableAllowListMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableArtPassMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTokenBurning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableUseEditionForURI","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":"artPassHolder","type":"address"}],"name":"getAvailableArtPassMintCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"maxMintsPerAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint16","name":"editionIndex","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"artPassHolders","type":"address[]"},{"internalType":"int8[]","name":"extras","type":"int8[]"}],"name":"setAdditionalArtPassMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setAllowListMerkleRoot","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":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setArtPassMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"maxMintsPerAddress_","type":"uint8"}],"name":"setMaxMintsPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"edition","type":"uint16"},{"internalType":"uint16","name":"supply","type":"uint16"}],"name":"setSupplyInEdition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenToEdition","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useEditionForURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526009805461ffff60a01b1916600160a01b179055600b805463ffffffff191690556000600c819055600d55600f805460ff191690553480156200004657600080fd5b50604051620035f1380380620035f183398101604081905262000069916200046b565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600189896002620000908382620005ce565b5060036200009f8282620005ce565b50600160005550506001600855620000b733620002aa565b6daaeb6d7670e522a718067333cd4e3b15620001fc5780156200014a57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200012b57600080fd5b505af115801562000140573d6000803e3d6000fd5b50505050620001fc565b6001600160a01b038216156200019b5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000110565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001e257600080fd5b505af1158015620001f7573d6000803e3d6000fd5b505050505b50506001600160a01b0383163303620002445760405162461bcd60e51b815260206004820152600560248201526422b93937b960d91b60448201526064015b60405180910390fd5b601280546001600160a01b03191633179055600e620002648782620005ce565b50600d859055600c849055601180546001600160a01b0319166001600160a01b03851617905560108290556200029c600182620002fc565b50505050505050506200069a565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6012546001600160a01b0316336001600160a01b031614620003525760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b60448201526064016200023b565b61ffff9182166000908152601360205260409020805461ffff191691909216179055565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200039e57600080fd5b81516001600160401b0380821115620003bb57620003bb62000376565b604051601f8301601f19908116603f01168101908282118183101715620003e657620003e662000376565b816040528381526020925086838588010111156200040357600080fd5b600091505b8382101562000427578582018301518183018401529082019062000408565b600093810190920192909252949350505050565b80516001600160a01b03811681146200045357600080fd5b919050565b805161ffff811681146200045357600080fd5b600080600080600080600080610100898b0312156200048957600080fd5b88516001600160401b0380821115620004a157600080fd5b620004af8c838d016200038c565b995060208b0151915080821115620004c657600080fd5b620004d48c838d016200038c565b985060408b0151915080821115620004eb57600080fd5b50620004fa8b828c016200038c565b96505060608901519450608089015193506200051960a08a016200043b565b925060c089015191506200053060e08a0162000458565b90509295985092959890939650565b600181811c908216806200055457607f821691505b6020821081036200057557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005c957600081815260208120601f850160051c81016020861015620005a45750805b601f850160051c820191505b81811015620005c557828155600101620005b0565b5050505b505050565b81516001600160401b03811115620005ea57620005ea62000376565b6200060281620005fb84546200053f565b846200057b565b602080601f8311600181146200063a5760008415620006215750858301515b600019600386901b1c1916600185901b178555620005c5565b600085815260208120601f198616915b828110156200066b578886015182559484019460019091019084016200064a565b50858210156200068a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612f4780620006aa6000396000f3fe6080604052600436106103195760003560e01c80636c0360eb116101ab578063b1acaacc116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b146108d2578063f4a0a528146108f2578063f8362e2614610912578063fc42e2821461092757600080fd5b8063e985e9c514610872578063ea7a42e414610892578063efa27857146108b257600080fd5b8063c761c72d116100d1578063c761c72d14610808578063c87b56dd1461081d578063df33ac9c1461083d578063e797ec1b1461085d57600080fd5b8063b1acaacc146107c6578063b2ff9200146107e0578063b88d4fde146107f557600080fd5b806395d89b4111610164578063a22cb4651161013e578063a22cb46514610751578063a5c2e3ba14610771578063a92bece314610791578063ae6a80d5146107a457600080fd5b806395d89b411461070c5780639bb906e014610721578063a09271f51461073757600080fd5b80636c0360eb1461067a57806370a082311461068f578063715018a6146106af5780637e5cd5c1146106c457806389190f22146106d95780638da5cb5b146106ee57600080fd5b806331f9c9191161026a5780635301499811610223578063602787ed116101fd578063602787ed146106005780636352211e1461063157806366d6f565146106515780636817c76c1461066457600080fd5b806353014998146105765780635bbdac29146105b95780635e0cb3a2146105cf57600080fd5b806331f9c919146104b9578063338cff2b146104d957806341f43434146104ee57806342842e0e1461051057806342966c681461052357806346e58f671461054357600080fd5b806318160ddd116102d75780631ec6954b116102b15780631ec6954b1461045157806323b872dd146104715780632919ac571461048457806330176e131461049957600080fd5b806318160ddd146103f65780631c7c25981461041d5780631de77f911461043e57600080fd5b806267b63e1461031e57806301ffc9a71461033557806306fdde031461036a578063081812fc1461038c578063095ea7b3146103c45780630a1dca0e146103d7575b600080fd5b34801561032a57600080fd5b5061033361093c565b005b34801561034157600080fd5b50610355610350366004612556565b610987565b60405190151581526020015b60405180910390f35b34801561037657600080fd5b5061037f6109d9565b60405161036191906125c3565b34801561039857600080fd5b506103ac6103a73660046125d6565b610a6b565b6040516001600160a01b039091168152602001610361565b6103336103d236600461260b565b610aaf565b3480156103e357600080fd5b50600b5461035590610100900460ff1681565b34801561040257600080fd5b5060015460005403600019015b604051908152602001610361565b34801561042957600080fd5b50600b54610355906301000000900460ff1681565b61033361044c366004612647565b610ac8565b34801561045d57600080fd5b5061033361046c366004612647565b610cda565b61033361047f36600461267a565b610d31565b34801561049057600080fd5b50610333610d5c565b3480156104a557600080fd5b506103336104b4366004612753565b610d9e565b3480156104c557600080fd5b50600b546103559062010000900460ff1681565b3480156104e557600080fd5b50610333610ddd565b3480156104fa57600080fd5b506103ac6daaeb6d7670e522a718067333cd4e81565b61033361051e36600461267a565b610e1c565b34801561052f57600080fd5b5061033361053e3660046125d6565b610e41565b34801561054f57600080fd5b5061056361055e36600461279b565b610ea8565b60405161ffff9091168152602001610361565b34801561058257600080fd5b506105a661059136600461279b565b600a6020526000908152604090205460010b81565b60405160019190910b8152602001610361565b3480156105c557600080fd5b5061040f600d5481565b3480156105db57600080fd5b506105636105ea3660046127b6565b60136020526000908152604090205461ffff1681565b34801561060c57600080fd5b5061056361061b3660046125d6565b60146020526000908152604090205461ffff1681565b34801561063d57600080fd5b506103ac61064c3660046125d6565b610ed9565b61033361065f3660046127d1565b610ee4565b34801561067057600080fd5b5061040f60105481565b34801561068657600080fd5b5061037f61117f565b34801561069b57600080fd5b5061040f6106aa36600461279b565b61120d565b3480156106bb57600080fd5b5061033361125b565b3480156106d057600080fd5b5061033361126f565b3480156106e557600080fd5b506103336112b0565b3480156106fa57600080fd5b506009546001600160a01b03166103ac565b34801561071857600080fd5b5061037f6112f4565b34801561072d57600080fd5b5061040f600c5481565b34801561074357600080fd5b50600b546103559060ff1681565b34801561075d57600080fd5b5061033361076c366004612873565b611303565b34801561077d57600080fd5b5061033361078c366004612948565b611317565b61033361079f3660046127d1565b611420565b3480156107b057600080fd5b5060095461056390600160a01b900461ffff1681565b3480156107d257600080fd5b50600f546103559060ff1681565b3480156107ec57600080fd5b50610333611694565b610333610803366004612a07565b6116d6565b34801561081457600080fd5b50610333611703565b34801561082957600080fd5b5061037f6108383660046125d6565b61174b565b34801561084957600080fd5b506103336108583660046125d6565b6117f5565b34801561086957600080fd5b5061033361182d565b34801561087e57600080fd5b5061035561088d366004612a82565b611873565b34801561089e57600080fd5b506103336108ad3660046125d6565b6118a1565b3480156108be57600080fd5b506103336108cd366004612aac565b6118d9565b3480156108de57600080fd5b506103336108ed36600461279b565b61192c565b3480156108fe57600080fd5b5061033361090d3660046125d6565b6119a2565b34801561091e57600080fd5b506103336119da565b34801561093357600080fd5b50610333611a1a565b6012546001600160a01b0316336001600160a01b0316146109785760405162461bcd60e51b815260040161096f90612acf565b60405180910390fd5b600f805460ff19166001179055565b60006301ffc9a760e01b6001600160e01b0319831614806109b857506380ac58cd60e01b6001600160e01b03198316145b806109d35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546109e890612af7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1490612af7565b8015610a615780601f10610a3657610100808354040283529160200191610a61565b820191906000526020600020905b815481529060010190602001808311610a4457829003601f168201915b5050505050905090565b6000610a7682611a59565b610a93576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b81610ab981611a8e565b610ac38383611b47565b505050565b610ad0611be7565b600b5462010000900460ff16610b1e5760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015260640161096f565b8161ffff16601054610b309190612b47565b3414610b4e5760405162461bcd60e51b815260040161096f90612b5e565b60008261ffff1611610b725760405162461bcd60e51b815260040161096f90612b95565b61ffff81811660009081526013602052604090205481841691161015610baa5760405162461bcd60e51b815260040161096f90612bcc565b600061ffff8316610bd4335b6001600160a01b031660009081526005602052604090205460c01c90565b610bde9190612c03565b600954909150600160a01b900461ffff166001600160401b0382161115610c475760405162461bcd60e51b815260206004820152601e60248201527f45786365656473207065722061646472657373206d696e74206c696d69740000604482015260640161096f565b6011546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c80573d6000803e3d6000fd5b50610c90335b8461ffff16611c40565b610c9a8383611d1a565b610ccb335b6001600160a01b0316600090815260056020526040902080546001600160c01b031660c084901b179055565b50610cd66001600855565b5050565b6012546001600160a01b0316336001600160a01b031614610d0d5760405162461bcd60e51b815260040161096f90612acf565b61ffff9182166000908152601360205260409020805461ffff191691909216179055565b826001600160a01b0381163314610d4b57610d4b33611a8e565b610d56848484611dac565b50505050565b6012546001600160a01b0316336001600160a01b031614610d8f5760405162461bcd60e51b815260040161096f90612acf565b600b805460ff19166001179055565b6012546001600160a01b0316336001600160a01b031614610dd15760405162461bcd60e51b815260040161096f90612acf565b600e610cd68282612c70565b6012546001600160a01b0316336001600160a01b031614610e105760405162461bcd60e51b815260040161096f90612acf565b600f805460ff19169055565b826001600160a01b0381163314610e3657610e3633611a8e565b610d56848484611f3d565b600b546301000000900460ff16610e9a5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e206275726e696e67206973206e6f7420656e61626c656400000000604482015260640161096f565b610ea5816001611f58565b50565b6001600160a01b0381166000908152600a60205260408120548190610ed290600190810b90612d2f565b9392505050565b60006109d382612090565b610eec611be7565b600b54610100900460ff16610f435760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77206c697374206d696e74696e67206e6f7420656e61626c65640000604482015260640161096f565b8161ffff16601054610f559190612b47565b3414610f735760405162461bcd60e51b815260040161096f90612b5e565b60008261ffff1611610f975760405162461bcd60e51b815260040161096f90612b95565b61ffff81811660009081526013602052604090205481841691161015610fcf5760405162461bcd60e51b815260040161096f90612bcc565b600061ffff8316610fdf33610bb6565b610fe99190612c03565b600954909150600160a01b900461ffff166001600160401b03821611156110525760405162461bcd60e51b815260206004820152601e60248201527f45786365656473207065722061646472657373206d696e74206c696d69740000604482015260640161096f565b6110d285858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491503390505b6040516020016110b7919060609190911b6bffffffffffffffffffffffff1916815260140190565b604051602081830303815290604052805190602001206120ff565b61111e5760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e20616c6c6f776c6973740000000000000000604482015260640161096f565b6011546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611157573d6000803e3d6000fd5b5061116133610c86565b61116b8383611d1a565b61117433610c9f565b50610d566001600855565b600e805461118c90612af7565b80601f01602080910402602001604051908101604052809291908181526020018280546111b890612af7565b80156112055780601f106111da57610100808354040283529160200191611205565b820191906000526020600020905b8154815290600101906020018083116111e857829003601f168201915b505050505081565b60006001600160a01b038216611236576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611263612115565b61126d600061216f565b565b6012546001600160a01b0316336001600160a01b0316146112a25760405162461bcd60e51b815260040161096f90612acf565b600b805462ff000019169055565b6012546001600160a01b0316336001600160a01b0316146112e35760405162461bcd60e51b815260040161096f90612acf565b600b805461ff001916610100179055565b6060600380546109e890612af7565b8161130d81611a8e565b610ac383836121c1565b6012546001600160a01b0316336001600160a01b03161461134a5760405162461bcd60e51b815260040161096f90612acf565b805182511461138c5760405162461bcd60e51b815260206004820152600e60248201526d1a5b98dbdc9c9958dd081b1a5cdd60921b604482015260640161096f565b60005b82518161ffff161015610ac357818161ffff16815181106113b2576113b2612d52565b602002602001015160000b600a6000858461ffff16815181106113d7576113d7612d52565b6020908102919091018101516001600160a01b03168252810191909152604001600020805461ffff191661ffff929092169190911790558061141881612d68565b91505061138f565b611428611be7565b600b5460ff1661147a5760405162461bcd60e51b815260206004820152601c60248201527f4172742050617373206d696e74696e67206e6f7420656e61626c656400000000604482015260640161096f565b8161ffff1660105461148c9190612b47565b34146114aa5760405162461bcd60e51b815260040161096f90612b5e565b60008261ffff16116114ce5760405162461bcd60e51b815260040161096f90612b95565b61ffff818116600090815260136020526040902054818416911610156115065760405162461bcd60e51b815260040161096f90612bcc565b61ffff821661151433610ea8565b61ffff1610156115715760405162461bcd60e51b815260206004820152602260248201527f4578636565647320417274205061737320686f6c646572206d696e74206c696d6044820152611a5d60f21b606482015260840161096f565b6115b284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d54915033905061108f565b6115f75760405162461bcd60e51b81526020600482015260166024820152752737ba1030b71020b93a102830b9b9903437b63232b960511b604482015260640161096f565b6011546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611630573d6000803e3d6000fd5b5061163f338361ffff16611c40565b6116498282611d1a565b336000908152600a602052604090205461166790839060010b612d89565b336000908152600a60205260409020805461ffff191661ffff929092169190911790556001600855610d56565b6012546001600160a01b0316336001600160a01b0316146116c75760405162461bcd60e51b815260040161096f90612acf565b600b805463ff00000019169055565b836001600160a01b03811633146116f0576116f033611a8e565b6116fc8585858561222d565b5050505050565b6012546001600160a01b0316336001600160a01b0316146117365760405162461bcd60e51b815260040161096f90612acf565b600b805463ff00000019166301000000179055565b606061175682611a59565b6117995760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161096f565b600f5460009060ff166117ac57826117c0565b60008381526014602052604090205461ffff165b9050600e6117cd82612271565b6040516020016117de929190612dac565b604051602081830303815290604052915050919050565b6012546001600160a01b0316336001600160a01b0316146118285760405162461bcd60e51b815260040161096f90612acf565b600d55565b6012546001600160a01b0316336001600160a01b0316146118605760405162461bcd60e51b815260040161096f90612acf565b600b805462ff0000191662010000179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6012546001600160a01b0316336001600160a01b0316146118d45760405162461bcd60e51b815260040161096f90612acf565b600c55565b6012546001600160a01b0316336001600160a01b03161461190c5760405162461bcd60e51b815260040161096f90612acf565b6009805461ffff60a01b191660ff92909216600160a01b02919091179055565b611934612115565b6001600160a01b0381166119995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096f565b610ea58161216f565b6012546001600160a01b0316336001600160a01b0316146119d55760405162461bcd60e51b815260040161096f90612acf565b601055565b6012546001600160a01b0316336001600160a01b031614611a0d5760405162461bcd60e51b815260040161096f90612acf565b600b805461ff0019169055565b6012546001600160a01b0316336001600160a01b031614611a4d5760405162461bcd60e51b815260040161096f90612acf565b600b805460ff19169055565b600081600111158015611a6d575060005482105b80156109d3575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610ea557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611afb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1f9190612e33565b610ea557604051633b79c77360e21b81526001600160a01b038216600482015260240161096f565b6000611b5282610ed9565b9050336001600160a01b03821614611b8b57611b6e8133611873565b611b8b576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260085403611c395760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161096f565b6002600855565b6000805490829003611c655760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020612ef28339815191528180a4600183015b818114611cf05780836000600080516020612ef2833981519152600080a4600101611cca565b5081600003611d1157604051622e076360e81b815260040160405180910390fd5b60005550505050565b61ffff808216600090815260136020526040902054611d3b91849116612e50565b61ffff8281166000908152601360205260408120805461ffff191693831693909317909255815490841690611d709190612e6b565b90505b600054811015610ac3576000818152601460205260409020805461ffff191661ffff841617905580611da481612e7e565b915050611d73565b6000611db782612090565b9050836001600160a01b0316816001600160a01b031614611dea5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054611e168187335b6001600160a01b039081169116811491141790565b611e4157611e248633611873565b611e4157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516611e6857604051633a954ecd60e21b815260040160405180910390fd5b8015611e7357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611f0557600184016000818152600460205260408120549003611f03576000548114611f035760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020612ef283398151915260405160405180910390a45b505050505050565b610ac3838383604051806020016040528060008152506116d6565b6000611f6383612090565b905080600080611f8186600090815260066020526040902080549091565b915091508415611fc157611f96818433611e01565b611fc157611fa48333611873565b611fc157604051632ce44b5f60e11b815260040160405180910390fd5b8015611fcc57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b8516900361205a576001860160008181526004602052604081205490036120585760005481146120585760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612ef2833981519152908390a45050600180548101905550505050565b600081806001116120e6576000548110156120e65760008181526004602052604081205490600160e01b821690036120e4575b80600003610ed25750600019016000818152600460205260409020546120c3565b505b604051636f96cda160e11b815260040160405180910390fd5b60008261210c8584612303565b14949350505050565b6009546001600160a01b0316331461126d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096f565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612238848484610d31565b6001600160a01b0383163b15610d565761225484848484612350565b610d56576040516368d2bf6b60e11b815260040160405180910390fd5b6060600061227e8361243c565b60010190506000816001600160401b0381111561229d5761229d6126b6565b6040519080825280601f01601f1916602001820160405280156122c7576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846122d157509392505050565b600081815b8451811015612348576123348286838151811061232757612327612d52565b6020026020010151612514565b91508061234081612e7e565b915050612308565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612385903390899088908890600401612e97565b6020604051808303816000875af19250505080156123c0575060408051601f3d908101601f191682019092526123bd91810190612ed4565b60015b61241e573d8080156123ee576040519150601f19603f3d011682016040523d82523d6000602084013e6123f3565b606091505b508051600003612416576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061247b5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106124a7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106124c557662386f26fc10000830492506010015b6305f5e10083106124dd576305f5e100830492506008015b61271083106124f157612710830492506004015b60648310612503576064830492506002015b600a83106109d35760010192915050565b6000818310612530576000828152602084905260409020610ed2565b5060009182526020526040902090565b6001600160e01b031981168114610ea557600080fd5b60006020828403121561256857600080fd5b8135610ed281612540565b60005b8381101561258e578181015183820152602001612576565b50506000910152565b600081518084526125af816020860160208601612573565b601f01601f19169290920160200192915050565b602081526000610ed26020830184612597565b6000602082840312156125e857600080fd5b5035919050565b80356001600160a01b038116811461260657600080fd5b919050565b6000806040838503121561261e57600080fd5b612627836125ef565b946020939093013593505050565b803561ffff8116811461260657600080fd5b6000806040838503121561265a57600080fd5b61266383612635565b915061267160208401612635565b90509250929050565b60008060006060848603121561268f57600080fd5b612698846125ef565b92506126a6602085016125ef565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156126f4576126f46126b6565b604052919050565b60006001600160401b03831115612715576127156126b6565b612728601f8401601f19166020016126cc565b905082815283838301111561273c57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561276557600080fd5b81356001600160401b0381111561277b57600080fd5b8201601f8101841361278c57600080fd5b612434848235602084016126fc565b6000602082840312156127ad57600080fd5b610ed2826125ef565b6000602082840312156127c857600080fd5b610ed282612635565b600080600080606085870312156127e757600080fd5b84356001600160401b03808211156127fe57600080fd5b818701915087601f83011261281257600080fd5b81358181111561282157600080fd5b8860208260051b850101111561283657600080fd5b60209283019650945061284c9187019050612635565b915061285a60408601612635565b905092959194509250565b8015158114610ea557600080fd5b6000806040838503121561288657600080fd5b61288f836125ef565b9150602083013561289f81612865565b809150509250929050565b60006001600160401b038211156128c3576128c36126b6565b5060051b60200190565b600082601f8301126128de57600080fd5b813560206128f36128ee836128aa565b6126cc565b82815260059290921b8401810191818101908684111561291257600080fd5b8286015b8481101561293d578035600081810b821461292f578081fd5b508352918301918301612916565b509695505050505050565b6000806040838503121561295b57600080fd5b82356001600160401b038082111561297257600080fd5b818501915085601f83011261298657600080fd5b813560206129966128ee836128aa565b82815260059290921b840181019181810190898411156129b557600080fd5b948201945b838610156129da576129cb866125ef565b825294820194908201906129ba565b965050860135925050808211156129f057600080fd5b506129fd858286016128cd565b9150509250929050565b60008060008060808587031215612a1d57600080fd5b612a26856125ef565b9350612a34602086016125ef565b92506040850135915060608501356001600160401b03811115612a5657600080fd5b8501601f81018713612a6757600080fd5b612a76878235602084016126fc565b91505092959194509250565b60008060408385031215612a9557600080fd5b612a9e836125ef565b9150612671602084016125ef565b600060208284031215612abe57600080fd5b813560ff81168114610ed257600080fd5b6020808252600e908201526d139bdd08105d5d1a1bdc9a5e995960921b604082015260600190565b600181811c90821680612b0b57607f821691505b602082108103612b2b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d3576109d3612b31565b6020808252601e908201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604082015260600190565b60208082526019908201527f4d757374206d696e7420706f73697469766520616d6f756e7400000000000000604082015260600190565b6020808252601c908201527f4d696e74206578636565647320636f6c6c656374696f6e2073697a6500000000604082015260600190565b6001600160401b03818116838216019080821115612c2357612c23612b31565b5092915050565b601f821115610ac357600081815260208120601f850160051c81016020861015612c515750805b601f850160051c820191505b81811015611f3557828155600101612c5d565b81516001600160401b03811115612c8957612c896126b6565b612c9d81612c978454612af7565b84612c2a565b602080601f831160018114612cd25760008415612cba5750858301515b600019600386901b1c1916600185901b178555611f35565b600085815260208120601f198616915b82811015612d0157888601518255948401946001909101908401612ce2565b5085821015612d1f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600181810b9083900b01617fff8113617fff19821217156109d3576109d3612b31565b634e487b7160e01b600052603260045260246000fd5b600061ffff808316818103612d7f57612d7f612b31565b6001019392505050565b600182810b9082900b03617fff198112617fff821317156109d3576109d3612b31565b6000808454612dba81612af7565b60018281168015612dd25760018114612de757612e16565b60ff1984168752821515830287019450612e16565b8860005260208060002060005b85811015612e0d5781548a820152908401908201612df4565b50505082870194505b505050508351612e2a818360208801612573565b01949350505050565b600060208284031215612e4557600080fd5b8151610ed281612865565b61ffff828116828216039080821115612c2357612c23612b31565b818103818111156109d3576109d3612b31565b600060018201612e9057612e90612b31565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612eca90830184612597565b9695505050505050565b600060208284031215612ee657600080fd5b8151610ed28161254056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220808595d27b53796707b2da0487b45980e8a248053ef0dfe342c165fd68baec5f64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000f1521395fcb08ef30d2f82602dc270920ee35d933f133220f740531542efd4400000000000000000000000037f9082b9ffb42732543bca017334987abe34ed400000000000000000000000000000000000000000000000000005af3107a4000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000949636f6e69634e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005494d4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65586673487a37795150585857434755683545414472454c43743661774a624769366b4457583137315866722f00000000000000000000
Deployed Bytecode
0x6080604052600436106103195760003560e01c80636c0360eb116101ab578063b1acaacc116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b146108d2578063f4a0a528146108f2578063f8362e2614610912578063fc42e2821461092757600080fd5b8063e985e9c514610872578063ea7a42e414610892578063efa27857146108b257600080fd5b8063c761c72d116100d1578063c761c72d14610808578063c87b56dd1461081d578063df33ac9c1461083d578063e797ec1b1461085d57600080fd5b8063b1acaacc146107c6578063b2ff9200146107e0578063b88d4fde146107f557600080fd5b806395d89b4111610164578063a22cb4651161013e578063a22cb46514610751578063a5c2e3ba14610771578063a92bece314610791578063ae6a80d5146107a457600080fd5b806395d89b411461070c5780639bb906e014610721578063a09271f51461073757600080fd5b80636c0360eb1461067a57806370a082311461068f578063715018a6146106af5780637e5cd5c1146106c457806389190f22146106d95780638da5cb5b146106ee57600080fd5b806331f9c9191161026a5780635301499811610223578063602787ed116101fd578063602787ed146106005780636352211e1461063157806366d6f565146106515780636817c76c1461066457600080fd5b806353014998146105765780635bbdac29146105b95780635e0cb3a2146105cf57600080fd5b806331f9c919146104b9578063338cff2b146104d957806341f43434146104ee57806342842e0e1461051057806342966c681461052357806346e58f671461054357600080fd5b806318160ddd116102d75780631ec6954b116102b15780631ec6954b1461045157806323b872dd146104715780632919ac571461048457806330176e131461049957600080fd5b806318160ddd146103f65780631c7c25981461041d5780631de77f911461043e57600080fd5b806267b63e1461031e57806301ffc9a71461033557806306fdde031461036a578063081812fc1461038c578063095ea7b3146103c45780630a1dca0e146103d7575b600080fd5b34801561032a57600080fd5b5061033361093c565b005b34801561034157600080fd5b50610355610350366004612556565b610987565b60405190151581526020015b60405180910390f35b34801561037657600080fd5b5061037f6109d9565b60405161036191906125c3565b34801561039857600080fd5b506103ac6103a73660046125d6565b610a6b565b6040516001600160a01b039091168152602001610361565b6103336103d236600461260b565b610aaf565b3480156103e357600080fd5b50600b5461035590610100900460ff1681565b34801561040257600080fd5b5060015460005403600019015b604051908152602001610361565b34801561042957600080fd5b50600b54610355906301000000900460ff1681565b61033361044c366004612647565b610ac8565b34801561045d57600080fd5b5061033361046c366004612647565b610cda565b61033361047f36600461267a565b610d31565b34801561049057600080fd5b50610333610d5c565b3480156104a557600080fd5b506103336104b4366004612753565b610d9e565b3480156104c557600080fd5b50600b546103559062010000900460ff1681565b3480156104e557600080fd5b50610333610ddd565b3480156104fa57600080fd5b506103ac6daaeb6d7670e522a718067333cd4e81565b61033361051e36600461267a565b610e1c565b34801561052f57600080fd5b5061033361053e3660046125d6565b610e41565b34801561054f57600080fd5b5061056361055e36600461279b565b610ea8565b60405161ffff9091168152602001610361565b34801561058257600080fd5b506105a661059136600461279b565b600a6020526000908152604090205460010b81565b60405160019190910b8152602001610361565b3480156105c557600080fd5b5061040f600d5481565b3480156105db57600080fd5b506105636105ea3660046127b6565b60136020526000908152604090205461ffff1681565b34801561060c57600080fd5b5061056361061b3660046125d6565b60146020526000908152604090205461ffff1681565b34801561063d57600080fd5b506103ac61064c3660046125d6565b610ed9565b61033361065f3660046127d1565b610ee4565b34801561067057600080fd5b5061040f60105481565b34801561068657600080fd5b5061037f61117f565b34801561069b57600080fd5b5061040f6106aa36600461279b565b61120d565b3480156106bb57600080fd5b5061033361125b565b3480156106d057600080fd5b5061033361126f565b3480156106e557600080fd5b506103336112b0565b3480156106fa57600080fd5b506009546001600160a01b03166103ac565b34801561071857600080fd5b5061037f6112f4565b34801561072d57600080fd5b5061040f600c5481565b34801561074357600080fd5b50600b546103559060ff1681565b34801561075d57600080fd5b5061033361076c366004612873565b611303565b34801561077d57600080fd5b5061033361078c366004612948565b611317565b61033361079f3660046127d1565b611420565b3480156107b057600080fd5b5060095461056390600160a01b900461ffff1681565b3480156107d257600080fd5b50600f546103559060ff1681565b3480156107ec57600080fd5b50610333611694565b610333610803366004612a07565b6116d6565b34801561081457600080fd5b50610333611703565b34801561082957600080fd5b5061037f6108383660046125d6565b61174b565b34801561084957600080fd5b506103336108583660046125d6565b6117f5565b34801561086957600080fd5b5061033361182d565b34801561087e57600080fd5b5061035561088d366004612a82565b611873565b34801561089e57600080fd5b506103336108ad3660046125d6565b6118a1565b3480156108be57600080fd5b506103336108cd366004612aac565b6118d9565b3480156108de57600080fd5b506103336108ed36600461279b565b61192c565b3480156108fe57600080fd5b5061033361090d3660046125d6565b6119a2565b34801561091e57600080fd5b506103336119da565b34801561093357600080fd5b50610333611a1a565b6012546001600160a01b0316336001600160a01b0316146109785760405162461bcd60e51b815260040161096f90612acf565b60405180910390fd5b600f805460ff19166001179055565b60006301ffc9a760e01b6001600160e01b0319831614806109b857506380ac58cd60e01b6001600160e01b03198316145b806109d35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546109e890612af7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1490612af7565b8015610a615780601f10610a3657610100808354040283529160200191610a61565b820191906000526020600020905b815481529060010190602001808311610a4457829003601f168201915b5050505050905090565b6000610a7682611a59565b610a93576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b81610ab981611a8e565b610ac38383611b47565b505050565b610ad0611be7565b600b5462010000900460ff16610b1e5760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015260640161096f565b8161ffff16601054610b309190612b47565b3414610b4e5760405162461bcd60e51b815260040161096f90612b5e565b60008261ffff1611610b725760405162461bcd60e51b815260040161096f90612b95565b61ffff81811660009081526013602052604090205481841691161015610baa5760405162461bcd60e51b815260040161096f90612bcc565b600061ffff8316610bd4335b6001600160a01b031660009081526005602052604090205460c01c90565b610bde9190612c03565b600954909150600160a01b900461ffff166001600160401b0382161115610c475760405162461bcd60e51b815260206004820152601e60248201527f45786365656473207065722061646472657373206d696e74206c696d69740000604482015260640161096f565b6011546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c80573d6000803e3d6000fd5b50610c90335b8461ffff16611c40565b610c9a8383611d1a565b610ccb335b6001600160a01b0316600090815260056020526040902080546001600160c01b031660c084901b179055565b50610cd66001600855565b5050565b6012546001600160a01b0316336001600160a01b031614610d0d5760405162461bcd60e51b815260040161096f90612acf565b61ffff9182166000908152601360205260409020805461ffff191691909216179055565b826001600160a01b0381163314610d4b57610d4b33611a8e565b610d56848484611dac565b50505050565b6012546001600160a01b0316336001600160a01b031614610d8f5760405162461bcd60e51b815260040161096f90612acf565b600b805460ff19166001179055565b6012546001600160a01b0316336001600160a01b031614610dd15760405162461bcd60e51b815260040161096f90612acf565b600e610cd68282612c70565b6012546001600160a01b0316336001600160a01b031614610e105760405162461bcd60e51b815260040161096f90612acf565b600f805460ff19169055565b826001600160a01b0381163314610e3657610e3633611a8e565b610d56848484611f3d565b600b546301000000900460ff16610e9a5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e206275726e696e67206973206e6f7420656e61626c656400000000604482015260640161096f565b610ea5816001611f58565b50565b6001600160a01b0381166000908152600a60205260408120548190610ed290600190810b90612d2f565b9392505050565b60006109d382612090565b610eec611be7565b600b54610100900460ff16610f435760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77206c697374206d696e74696e67206e6f7420656e61626c65640000604482015260640161096f565b8161ffff16601054610f559190612b47565b3414610f735760405162461bcd60e51b815260040161096f90612b5e565b60008261ffff1611610f975760405162461bcd60e51b815260040161096f90612b95565b61ffff81811660009081526013602052604090205481841691161015610fcf5760405162461bcd60e51b815260040161096f90612bcc565b600061ffff8316610fdf33610bb6565b610fe99190612c03565b600954909150600160a01b900461ffff166001600160401b03821611156110525760405162461bcd60e51b815260206004820152601e60248201527f45786365656473207065722061646472657373206d696e74206c696d69740000604482015260640161096f565b6110d285858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491503390505b6040516020016110b7919060609190911b6bffffffffffffffffffffffff1916815260140190565b604051602081830303815290604052805190602001206120ff565b61111e5760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e20616c6c6f776c6973740000000000000000604482015260640161096f565b6011546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611157573d6000803e3d6000fd5b5061116133610c86565b61116b8383611d1a565b61117433610c9f565b50610d566001600855565b600e805461118c90612af7565b80601f01602080910402602001604051908101604052809291908181526020018280546111b890612af7565b80156112055780601f106111da57610100808354040283529160200191611205565b820191906000526020600020905b8154815290600101906020018083116111e857829003601f168201915b505050505081565b60006001600160a01b038216611236576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611263612115565b61126d600061216f565b565b6012546001600160a01b0316336001600160a01b0316146112a25760405162461bcd60e51b815260040161096f90612acf565b600b805462ff000019169055565b6012546001600160a01b0316336001600160a01b0316146112e35760405162461bcd60e51b815260040161096f90612acf565b600b805461ff001916610100179055565b6060600380546109e890612af7565b8161130d81611a8e565b610ac383836121c1565b6012546001600160a01b0316336001600160a01b03161461134a5760405162461bcd60e51b815260040161096f90612acf565b805182511461138c5760405162461bcd60e51b815260206004820152600e60248201526d1a5b98dbdc9c9958dd081b1a5cdd60921b604482015260640161096f565b60005b82518161ffff161015610ac357818161ffff16815181106113b2576113b2612d52565b602002602001015160000b600a6000858461ffff16815181106113d7576113d7612d52565b6020908102919091018101516001600160a01b03168252810191909152604001600020805461ffff191661ffff929092169190911790558061141881612d68565b91505061138f565b611428611be7565b600b5460ff1661147a5760405162461bcd60e51b815260206004820152601c60248201527f4172742050617373206d696e74696e67206e6f7420656e61626c656400000000604482015260640161096f565b8161ffff1660105461148c9190612b47565b34146114aa5760405162461bcd60e51b815260040161096f90612b5e565b60008261ffff16116114ce5760405162461bcd60e51b815260040161096f90612b95565b61ffff818116600090815260136020526040902054818416911610156115065760405162461bcd60e51b815260040161096f90612bcc565b61ffff821661151433610ea8565b61ffff1610156115715760405162461bcd60e51b815260206004820152602260248201527f4578636565647320417274205061737320686f6c646572206d696e74206c696d6044820152611a5d60f21b606482015260840161096f565b6115b284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d54915033905061108f565b6115f75760405162461bcd60e51b81526020600482015260166024820152752737ba1030b71020b93a102830b9b9903437b63232b960511b604482015260640161096f565b6011546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611630573d6000803e3d6000fd5b5061163f338361ffff16611c40565b6116498282611d1a565b336000908152600a602052604090205461166790839060010b612d89565b336000908152600a60205260409020805461ffff191661ffff929092169190911790556001600855610d56565b6012546001600160a01b0316336001600160a01b0316146116c75760405162461bcd60e51b815260040161096f90612acf565b600b805463ff00000019169055565b836001600160a01b03811633146116f0576116f033611a8e565b6116fc8585858561222d565b5050505050565b6012546001600160a01b0316336001600160a01b0316146117365760405162461bcd60e51b815260040161096f90612acf565b600b805463ff00000019166301000000179055565b606061175682611a59565b6117995760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161096f565b600f5460009060ff166117ac57826117c0565b60008381526014602052604090205461ffff165b9050600e6117cd82612271565b6040516020016117de929190612dac565b604051602081830303815290604052915050919050565b6012546001600160a01b0316336001600160a01b0316146118285760405162461bcd60e51b815260040161096f90612acf565b600d55565b6012546001600160a01b0316336001600160a01b0316146118605760405162461bcd60e51b815260040161096f90612acf565b600b805462ff0000191662010000179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6012546001600160a01b0316336001600160a01b0316146118d45760405162461bcd60e51b815260040161096f90612acf565b600c55565b6012546001600160a01b0316336001600160a01b03161461190c5760405162461bcd60e51b815260040161096f90612acf565b6009805461ffff60a01b191660ff92909216600160a01b02919091179055565b611934612115565b6001600160a01b0381166119995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096f565b610ea58161216f565b6012546001600160a01b0316336001600160a01b0316146119d55760405162461bcd60e51b815260040161096f90612acf565b601055565b6012546001600160a01b0316336001600160a01b031614611a0d5760405162461bcd60e51b815260040161096f90612acf565b600b805461ff0019169055565b6012546001600160a01b0316336001600160a01b031614611a4d5760405162461bcd60e51b815260040161096f90612acf565b600b805460ff19169055565b600081600111158015611a6d575060005482105b80156109d3575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610ea557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611afb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1f9190612e33565b610ea557604051633b79c77360e21b81526001600160a01b038216600482015260240161096f565b6000611b5282610ed9565b9050336001600160a01b03821614611b8b57611b6e8133611873565b611b8b576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260085403611c395760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161096f565b6002600855565b6000805490829003611c655760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020612ef28339815191528180a4600183015b818114611cf05780836000600080516020612ef2833981519152600080a4600101611cca565b5081600003611d1157604051622e076360e81b815260040160405180910390fd5b60005550505050565b61ffff808216600090815260136020526040902054611d3b91849116612e50565b61ffff8281166000908152601360205260408120805461ffff191693831693909317909255815490841690611d709190612e6b565b90505b600054811015610ac3576000818152601460205260409020805461ffff191661ffff841617905580611da481612e7e565b915050611d73565b6000611db782612090565b9050836001600160a01b0316816001600160a01b031614611dea5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054611e168187335b6001600160a01b039081169116811491141790565b611e4157611e248633611873565b611e4157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516611e6857604051633a954ecd60e21b815260040160405180910390fd5b8015611e7357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611f0557600184016000818152600460205260408120549003611f03576000548114611f035760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020612ef283398151915260405160405180910390a45b505050505050565b610ac3838383604051806020016040528060008152506116d6565b6000611f6383612090565b905080600080611f8186600090815260066020526040902080549091565b915091508415611fc157611f96818433611e01565b611fc157611fa48333611873565b611fc157604051632ce44b5f60e11b815260040160405180910390fd5b8015611fcc57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b8516900361205a576001860160008181526004602052604081205490036120585760005481146120585760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612ef2833981519152908390a45050600180548101905550505050565b600081806001116120e6576000548110156120e65760008181526004602052604081205490600160e01b821690036120e4575b80600003610ed25750600019016000818152600460205260409020546120c3565b505b604051636f96cda160e11b815260040160405180910390fd5b60008261210c8584612303565b14949350505050565b6009546001600160a01b0316331461126d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096f565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612238848484610d31565b6001600160a01b0383163b15610d565761225484848484612350565b610d56576040516368d2bf6b60e11b815260040160405180910390fd5b6060600061227e8361243c565b60010190506000816001600160401b0381111561229d5761229d6126b6565b6040519080825280601f01601f1916602001820160405280156122c7576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846122d157509392505050565b600081815b8451811015612348576123348286838151811061232757612327612d52565b6020026020010151612514565b91508061234081612e7e565b915050612308565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612385903390899088908890600401612e97565b6020604051808303816000875af19250505080156123c0575060408051601f3d908101601f191682019092526123bd91810190612ed4565b60015b61241e573d8080156123ee576040519150601f19603f3d011682016040523d82523d6000602084013e6123f3565b606091505b508051600003612416576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061247b5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106124a7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106124c557662386f26fc10000830492506010015b6305f5e10083106124dd576305f5e100830492506008015b61271083106124f157612710830492506004015b60648310612503576064830492506002015b600a83106109d35760010192915050565b6000818310612530576000828152602084905260409020610ed2565b5060009182526020526040902090565b6001600160e01b031981168114610ea557600080fd5b60006020828403121561256857600080fd5b8135610ed281612540565b60005b8381101561258e578181015183820152602001612576565b50506000910152565b600081518084526125af816020860160208601612573565b601f01601f19169290920160200192915050565b602081526000610ed26020830184612597565b6000602082840312156125e857600080fd5b5035919050565b80356001600160a01b038116811461260657600080fd5b919050565b6000806040838503121561261e57600080fd5b612627836125ef565b946020939093013593505050565b803561ffff8116811461260657600080fd5b6000806040838503121561265a57600080fd5b61266383612635565b915061267160208401612635565b90509250929050565b60008060006060848603121561268f57600080fd5b612698846125ef565b92506126a6602085016125ef565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156126f4576126f46126b6565b604052919050565b60006001600160401b03831115612715576127156126b6565b612728601f8401601f19166020016126cc565b905082815283838301111561273c57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561276557600080fd5b81356001600160401b0381111561277b57600080fd5b8201601f8101841361278c57600080fd5b612434848235602084016126fc565b6000602082840312156127ad57600080fd5b610ed2826125ef565b6000602082840312156127c857600080fd5b610ed282612635565b600080600080606085870312156127e757600080fd5b84356001600160401b03808211156127fe57600080fd5b818701915087601f83011261281257600080fd5b81358181111561282157600080fd5b8860208260051b850101111561283657600080fd5b60209283019650945061284c9187019050612635565b915061285a60408601612635565b905092959194509250565b8015158114610ea557600080fd5b6000806040838503121561288657600080fd5b61288f836125ef565b9150602083013561289f81612865565b809150509250929050565b60006001600160401b038211156128c3576128c36126b6565b5060051b60200190565b600082601f8301126128de57600080fd5b813560206128f36128ee836128aa565b6126cc565b82815260059290921b8401810191818101908684111561291257600080fd5b8286015b8481101561293d578035600081810b821461292f578081fd5b508352918301918301612916565b509695505050505050565b6000806040838503121561295b57600080fd5b82356001600160401b038082111561297257600080fd5b818501915085601f83011261298657600080fd5b813560206129966128ee836128aa565b82815260059290921b840181019181810190898411156129b557600080fd5b948201945b838610156129da576129cb866125ef565b825294820194908201906129ba565b965050860135925050808211156129f057600080fd5b506129fd858286016128cd565b9150509250929050565b60008060008060808587031215612a1d57600080fd5b612a26856125ef565b9350612a34602086016125ef565b92506040850135915060608501356001600160401b03811115612a5657600080fd5b8501601f81018713612a6757600080fd5b612a76878235602084016126fc565b91505092959194509250565b60008060408385031215612a9557600080fd5b612a9e836125ef565b9150612671602084016125ef565b600060208284031215612abe57600080fd5b813560ff81168114610ed257600080fd5b6020808252600e908201526d139bdd08105d5d1a1bdc9a5e995960921b604082015260600190565b600181811c90821680612b0b57607f821691505b602082108103612b2b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d3576109d3612b31565b6020808252601e908201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604082015260600190565b60208082526019908201527f4d757374206d696e7420706f73697469766520616d6f756e7400000000000000604082015260600190565b6020808252601c908201527f4d696e74206578636565647320636f6c6c656374696f6e2073697a6500000000604082015260600190565b6001600160401b03818116838216019080821115612c2357612c23612b31565b5092915050565b601f821115610ac357600081815260208120601f850160051c81016020861015612c515750805b601f850160051c820191505b81811015611f3557828155600101612c5d565b81516001600160401b03811115612c8957612c896126b6565b612c9d81612c978454612af7565b84612c2a565b602080601f831160018114612cd25760008415612cba5750858301515b600019600386901b1c1916600185901b178555611f35565b600085815260208120601f198616915b82811015612d0157888601518255948401946001909101908401612ce2565b5085821015612d1f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600181810b9083900b01617fff8113617fff19821217156109d3576109d3612b31565b634e487b7160e01b600052603260045260246000fd5b600061ffff808316818103612d7f57612d7f612b31565b6001019392505050565b600182810b9082900b03617fff198112617fff821317156109d3576109d3612b31565b6000808454612dba81612af7565b60018281168015612dd25760018114612de757612e16565b60ff1984168752821515830287019450612e16565b8860005260208060002060005b85811015612e0d5781548a820152908401908201612df4565b50505082870194505b505050508351612e2a818360208801612573565b01949350505050565b600060208284031215612e4557600080fd5b8151610ed281612865565b61ffff828116828216039080821115612c2357612c23612b31565b818103818111156109d3576109d3612b31565b600060018201612e9057612e90612b31565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612eca90830184612597565b9695505050505050565b600060208284031215612ee657600080fd5b8151610ed28161254056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220808595d27b53796707b2da0487b45980e8a248053ef0dfe342c165fd68baec5f64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000f1521395fcb08ef30d2f82602dc270920ee35d933f133220f740531542efd4400000000000000000000000037f9082b9ffb42732543bca017334987abe34ed400000000000000000000000000000000000000000000000000005af3107a4000000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000949636f6e69634e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005494d4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65586673487a37795150585857434755683545414472454c43743661774a624769366b4457583137315866722f00000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): IconicNFT
Arg [1] : symbol_ (string): IMNFT
Arg [2] : baseURI_ (string): ipfs://QmeXfsHz7yQPXXWCGUh5EADrELCt6awJbGi6kDWX171Xfr/
Arg [3] : artPassMerkleRoot_ (bytes32): 0x0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : allowListMerkleRoot_ (bytes32): 0x0f1521395fcb08ef30d2f82602dc270920ee35d933f133220f740531542efd44
Arg [5] : iconicAddress_ (address): 0x37F9082b9fFB42732543BcA017334987AbE34ed4
Arg [6] : mintPrice_ (uint256): 100000000000000
Arg [7] : editionSupply_ (uint16): 125
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0f1521395fcb08ef30d2f82602dc270920ee35d933f133220f740531542efd44
Arg [5] : 00000000000000000000000037f9082b9ffb42732543bca017334987abe34ed4
Arg [6] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000007d
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [9] : 49636f6e69634e46540000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [11] : 494d4e4654000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d65586673487a3779515058585743475568354541447245
Arg [14] : 4c43743661774a624769366b4457583137315866722f00000000000000000000
Deployed Bytecode Sourcemap
87031:8298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89169:91;;;;;;;;;;;;;:::i;:::-;;48731:639;;;;;;;;;;-1:-1:-1;48731:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;48731:639:0;;;;;;;;49633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56124:218::-;;;;;;;;;;-1:-1:-1;56124:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;56124:218:0;1533:203:1;94590:159:0;;;;;;:::i;:::-;;:::i;87259:42::-;;;;;;;;;;-1:-1:-1;87259:42:0;;;;;;;;;;;45384:323;;;;;;;;;;-1:-1:-1;93945:1:0;45658:12;45445:7;45642:13;:28;-1:-1:-1;;45642:46:0;45384:323;;;2324:25:1;;;2312:2;2297:18;45384:323:0;2178:177:1;87344:33:0;;;;;;;;;;-1:-1:-1;87344:33:0;;;;;;;;;;;92612:703;;;;;;:::i;:::-;;:::i;89472:124::-;;;;;;;;;;-1:-1:-1;89472:124:0;;;;;:::i;:::-;;:::i;94755:165::-;;;;;;:::i;:::-;;:::i;88407:93::-;;;;;;;;;;;;;:::i;89365:101::-;;;;;;;;;;-1:-1:-1;89365:101:0;;;;;:::i;:::-;;:::i;87306:33::-;;;;;;;;;;-1:-1:-1;87306:33:0;;;;;;;;;;;89266:93;;;;;;;;;;;;;:::i;84560:143::-;;;;;;;;;;;;84660:42;84560:143;;94926:173;;;;;;:::i;:::-;;:::i;93321:132::-;;;;;;;;;;-1:-1:-1;93321:132:0;;;;;:::i;:::-;;:::i;90447:193::-;;;;;;;;;;-1:-1:-1;90447:193:0;;;;;:::i;:::-;;:::i;:::-;;;5003:6:1;4991:19;;;4973:38;;4961:2;4946:18;90447:193:0;4829:188:1;87162:45:0;;;;;;;;;;-1:-1:-1;87162:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5193:1:1;5182:21;;;;5164:40;;5152:2;5137:18;87162:45:0;5022:188:1;87426:37:0;;;;;;;;;;;;;;;;87624:46;;;;;;;;;;-1:-1:-1;87624:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;87716:48;;;;;;;;;;-1:-1:-1;87716:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51026:152;;;;;;;;;;-1:-1:-1;51026:152:0;;;;;:::i;:::-;;:::i;91619:987::-;;;;;;:::i;:::-;;:::i;87541:24::-;;;;;;;;;;;;;;;;87470:21;;;;;;;;;;;;;:::i;46568:233::-;;;;;;;;;;-1:-1:-1;46568:233:0;;;;;:::i;:::-;;:::i;2539:103::-;;;;;;;;;;;;;:::i;88900:81::-;;;;;;;;;;;;;:::i;88607:97::-;;;;;;;;;;;;;:::i;1891:87::-;;;;;;;;;;-1:-1:-1;1964:6:0;;-1:-1:-1;;;;;1964:6:0;1891:87;;49809:104;;;;;;;;;;;;;:::i;87382:39::-;;;;;;;;;;;;;;;;87214:40;;;;;;;;;;-1:-1:-1;87214:40:0;;;;;;;;94414:170;;;;;;;;;;-1:-1:-1;94414:170:0;;;;;:::i;:::-;;:::i;90092:349::-;;;;;;;;;;-1:-1:-1;90092:349:0;;;;;:::i;:::-;;:::i;90646:967::-;;;;;;:::i;:::-;;:::i;87121:36::-;;;;;;;;;;-1:-1:-1;87121:36:0;;;;-1:-1:-1;;;87121:36:0;;;;;;87496;;;;;;;;;;-1:-1:-1;87496:36:0;;;;;;;;89077:86;;;;;;;;;;;;;:::i;95105:221::-;;;;;;:::i;:::-;;:::i;88987:84::-;;;;;;;;;;;;;:::i;93958:300::-;;;;;;;;;;-1:-1:-1;93958:300:0;;;;;:::i;:::-;;:::i;89844:116::-;;;;;;;;;;-1:-1:-1;89844:116:0;;;;;:::i;:::-;;:::i;88815:79::-;;;;;;;;;;;;;:::i;57073:164::-;;;;;;;;;;-1:-1:-1;57073:164:0;;;;;:::i;:::-;;:::i;89966:120::-;;;;;;;;;;-1:-1:-1;89966:120:0;;;;;:::i;:::-;;:::i;89706:132::-;;;;;;;;;;-1:-1:-1;89706:132:0;;;;;:::i;:::-;;:::i;2797:201::-;;;;;;;;;;-1:-1:-1;2797:201:0;;;;;:::i;:::-;;:::i;89602:98::-;;;;;;;;;;-1:-1:-1;89602:98:0;;;;;:::i;:::-;;:::i;88710:99::-;;;;;;;;;;;;;:::i;88506:95::-;;;;;;;;;;;;;:::i;89169:91::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;;;;;;;;;89231:16:::1;:23:::0;;-1:-1:-1;;89231:23:0::1;89250:4;89231:23;::::0;;89169:91::o;48731:639::-;48816:4;-1:-1:-1;;;;;;;;;49140:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;49217:25:0;;;49140:102;:179;;;-1:-1:-1;;;;;;;;;;49294:25:0;;;49140:179;49120:199;48731:639;-1:-1:-1;;48731:639:0:o;49633:100::-;49687:13;49720:5;49713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49633:100;:::o;56124:218::-;56200:7;56225:16;56233:7;56225;:16::i;:::-;56220:64;;56250:34;;-1:-1:-1;;;56250:34:0;;;;;;;;;;;56220:64;-1:-1:-1;56304:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;56304:30:0;;56124:218::o;94590:159::-;94694:8;86081:30;86102:8;86081:20;:30::i;:::-;94711:32:::1;94725:8;94735:7;94711:13;:32::i;:::-;94590:159:::0;;;:::o;92612:703::-;20509:21;:19;:21::i;:::-;92709:13:::1;::::0;;;::::1;;;92701:45;;;::::0;-1:-1:-1;;;92701:45:0;;11252:2:1;92701:45:0::1;::::0;::::1;11234:21:1::0;11291:2;11271:18;;;11264:30;-1:-1:-1;;;11310:18:1;;;11303:49;11369:18;;92701:45:0::1;11050:343:1::0;92701:45:0::1;92786:6;92774:18;;:9;;:18;;;;:::i;:::-;92761:9;:31;92753:74;;;;-1:-1:-1::0;;;92753:74:0::1;;;;;;;:::i;:::-;92851:1;92842:6;:10;;;92834:48;;;;-1:-1:-1::0;;;92834:48:0::1;;;;;;;:::i;:::-;92897:37;:27:::0;;::::1;;::::0;;;:13:::1;:27;::::0;;;;;:37;;::::1;:27:::0;::::1;:37;;92889:78;;;;-1:-1:-1::0;;;92889:78:0::1;;;;;;;:::i;:::-;92976:24;93003:37;::::0;::::1;:28;79890:10:::0;93011:19:::1;-1:-1:-1::0;;;;;47543:25:0;47510:6;47543:25;;;:18;:25;;;;;;41101:3;47543:40;;47455:137;93003:28:::1;:37;;;;:::i;:::-;93076:18;::::0;92976:64;;-1:-1:-1;;;;93076:18:0;::::1;;;-1:-1:-1::0;;;;;93055:39:0;::::1;;;93047:82;;;::::0;-1:-1:-1;;;93047:82:0;;13160:2:1;93047:82:0::1;::::0;::::1;13142:21:1::0;13199:2;13179:18;;;13172:30;13238:32;13218:18;;;13211:60;13288:18;;93047:82:0::1;12958:354:1::0;93047:82:0::1;93138:13;::::0;:33:::1;::::0;-1:-1:-1;;;;;93138:13:0;;::::1;::::0;93161:9:::1;93138:33:::0;::::1;;;::::0;:13:::1;:33:::0;:13;:33;93161:9;93138:13;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;93178:34:0::1;79890:10:::0;93184:19:::1;93205:6;93178:34;;:5;:34::i;:::-;93219:36;93234:6;93242:12;93219:14;:36::i;:::-;93262:47;79890:10:::0;93270:19:::1;-1:-1:-1::0;;;;;47869:25:0;47852:14;47869:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;48069:32:0;41101:3;48106:24;;;48068:63;48142:34;;47780:404;93262:47:::1;92694:621;20553:20:::0;19947:1;21073:7;:22;20890:213;20553:20;92612:703;;:::o;89472:124::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;89559:22:::1;::::0;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:31;;-1:-1:-1;;89559:31:0::1;::::0;;;::::1;;::::0;;89472:124::o;94755:165::-;94864:4;-1:-1:-1;;;;;85901:18:0;;85909:10;85901:18;85897:83;;85936:32;85957:10;85936:20;:32::i;:::-;94877:37:::1;94896:4;94902:2;94906:7;94877:18;:37::i;:::-;94755:165:::0;;;;:::o;88407:93::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;88467:20:::1;:27:::0;;-1:-1:-1;;88467:27:0::1;88490:4;88467:27;::::0;;88407:93::o;89365:101::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;89442:7:::1;:18;89452:8:::0;89442:7;:18:::1;:::i;89266:93::-:0;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;89329:16:::1;:24:::0;;-1:-1:-1;;89329:24:0::1;::::0;;89266:93::o;94926:173::-;95039:4;-1:-1:-1;;;;;85901:18:0;;85909:10;85901:18;85897:83;;85936:32;85957:10;85936:20;:32::i;:::-;95052:41:::1;95075:4;95081:2;95085:7;95052:22;:41::i;93321:132::-:0;93374:13;;;;;;;93366:54;;;;-1:-1:-1;;;93366:54:0;;15723:2:1;93366:54:0;;;15705:21:1;15762:2;15742:18;;;15735:30;15801;15781:18;;;15774:58;15849:18;;93366:54:0;15521:352:1;93366:54:0;93427:20;93433:7;93442:4;93427:5;:20::i;:::-;93321:132;:::o;90447:193::-;-1:-1:-1;;;;;90571:27:0;;90529:6;90571:27;;;:12;:27;;;;;;90529:6;;90567:31;;90571:27;;;;;90567:31;:::i;:::-;90544:54;90447:193;-1:-1:-1;;;90447:193:0:o;51026:152::-;51098:7;51141:27;51160:7;51141:18;:27::i;91619:987::-;20509:21;:19;:21::i;:::-;91757:22:::1;::::0;::::1;::::0;::::1;;;91749:65;;;::::0;-1:-1:-1;;;91749:65:0;;16270:2:1;91749:65:0::1;::::0;::::1;16252:21:1::0;16309:2;16289:18;;;16282:30;16348:32;16328:18;;;16321:60;16398:18;;91749:65:0::1;16068:354:1::0;91749:65:0::1;91854:6;91842:18;;:9;;:18;;;;:::i;:::-;91829:9;:31;91821:74;;;;-1:-1:-1::0;;;91821:74:0::1;;;;;;;:::i;:::-;91919:1;91910:6;:10;;;91902:48;;;;-1:-1:-1::0;;;91902:48:0::1;;;;;;;:::i;:::-;91965:37;:27:::0;;::::1;;::::0;;;:13:::1;:27;::::0;;;;;:37;;::::1;:27:::0;::::1;:37;;91957:78;;;;-1:-1:-1::0;;;91957:78:0::1;;;;;;;:::i;:::-;92044:24;92071:37;::::0;::::1;:28;79890:10:::0;92079:19:::1;79803:105:::0;92071:28:::1;:37;;;;:::i;:::-;92144:18;::::0;92044:64;;-1:-1:-1;;;;92144:18:0;::::1;;;-1:-1:-1::0;;;;;92123:39:0;::::1;;;92115:82;;;::::0;-1:-1:-1;;;92115:82:0;;13160:2:1;92115:82:0::1;::::0;::::1;13142:21:1::0;13199:2;13179:18;;;13172:30;13238:32;13218:18;;;13211:60;13288:18;;92115:82:0::1;12958:354:1::0;92115:82:0::1;92224:152;92257:11;;92224:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;92283:19:0::1;::::0;;-1:-1:-1;79890:10:0;;-1:-1:-1;92344:19:0::1;92327:37;;;;;;;16576:2:1::0;16572:15;;;;-1:-1:-1;;16568:53:1;16556:66;;16647:2;16638:12;;16427:229;92327:37:0::1;;;;;;;;;;;;;92317:48;;;;;;92224:18;:152::i;:::-;92206:214;;;::::0;-1:-1:-1;;;92206:214:0;;16863:2:1;92206:214:0::1;::::0;::::1;16845:21:1::0;16902:2;16882:18;;;16875:30;16941:26;16921:18;;;16914:54;16985:18;;92206:214:0::1;16661:348:1::0;92206:214:0::1;92429:13;::::0;:33:::1;::::0;-1:-1:-1;;;;;92429:13:0;;::::1;::::0;92452:9:::1;92429:33:::0;::::1;;;::::0;:13:::1;:33:::0;:13;:33;92452:9;92429:13;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;92469:34:0::1;79890:10:::0;92475:19:::1;79803:105:::0;92469:34:::1;92510:36;92525:6;92533:12;92510:14;:36::i;:::-;92553:47;79890:10:::0;92561:19:::1;79803:105:::0;92553:47:::1;91742:864;20553:20:::0;19947:1;21073:7;:22;20890:213;87470:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46568:233::-;46640:7;-1:-1:-1;;;;;46664:19:0;;46660:60;;46692:28;;-1:-1:-1;;;46692:28:0;;;;;;;;;;;46660:60;-1:-1:-1;;;;;;46738:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;46738:55:0;;46568:233::o;2539:103::-;1777:13;:11;:13::i;:::-;2604:30:::1;2631:1;2604:18;:30::i;:::-;2539:103::o:0;88900:81::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;88954:13:::1;:21:::0;;-1:-1:-1;;88954:21:0::1;::::0;;88900:81::o;88607:97::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;88669:22:::1;:29:::0;;-1:-1:-1;;88669:29:0::1;;;::::0;;88607:97::o;49809:104::-;49865:13;49898:7;49891:14;;;;;:::i;94414:170::-;94518:8;86081:30;86102:8;86081:20;:30::i;:::-;94535:43:::1;94559:8;94569;94535:23;:43::i;90092:349::-:0;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;90285:6:::1;:13;90260:14;:21;:38;90252:65;;;::::0;-1:-1:-1;;;90252:65:0;;17216:2:1;90252:65:0::1;::::0;::::1;17198:21:1::0;17255:2;17235:18;;;17228:30;-1:-1:-1;;;17274:18:1;;;17267:44;17328:18;;90252:65:0::1;17014:338:1::0;90252:65:0::1;90330:8;90326:110;90348:14;:21;90344:1;:25;;;90326:110;;;90419:6;90426:1;90419:9;;;;;;;;;;:::i;:::-;;;;;;;90385:43;;:12;:31;90398:14;90413:1;90398:17;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;90385:31:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;90385:31:0;:43;;-1:-1:-1;;90385:43:0::1;;::::0;;;;;;;::::1;::::0;;90371:3;::::1;::::0;::::1;:::i;:::-;;;;90326:110;;90646:967:::0;20509:21;:19;:21::i;:::-;90782:20:::1;::::0;::::1;;90774:61;;;::::0;-1:-1:-1;;;90774:61:0;;17893:2:1;90774:61:0::1;::::0;::::1;17875:21:1::0;17932:2;17912:18;;;17905:30;17971;17951:18;;;17944:58;18019:18;;90774:61:0::1;17691:352:1::0;90774:61:0::1;90875:6;90863:18;;:9;;:18;;;;:::i;:::-;90850:9;:31;90842:74;;;;-1:-1:-1::0;;;90842:74:0::1;;;;;;;:::i;:::-;90940:1;90931:6;:10;;;90923:48;;;;-1:-1:-1::0;;;90923:48:0::1;;;;;;;:::i;:::-;90986:37;:27:::0;;::::1;;::::0;;;:13:::1;:27;::::0;;;;;:37;;::::1;:27:::0;::::1;:37;;90978:78;;;;-1:-1:-1::0;;;90978:78:0::1;;;;;;;:::i;:::-;91073:58;::::0;::::1;:49;79890:10:::0;90447:193;:::i;91073:49::-:1;:58;;;;91065:105;;;::::0;-1:-1:-1;;;91065:105:0;;18250:2:1;91065:105:0::1;::::0;::::1;18232:21:1::0;18289:2;18269:18;;;18262:30;18328:34;18308:18;;;18301:62;-1:-1:-1;;;18379:18:1;;;18372:32;18421:19;;91065:105:0::1;18048:398:1::0;91065:105:0::1;91197:150;91230:11;;91197:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;91256:17:0::1;::::0;;-1:-1:-1;79890:10:0;;-1:-1:-1;91315:19:0::1;79803:105:::0;91197:150:::1;91179:210;;;::::0;-1:-1:-1;;;91179:210:0;;18653:2:1;91179:210:0::1;::::0;::::1;18635:21:1::0;18692:2;18672:18;;;18665:30;-1:-1:-1;;;18711:18:1;;;18704:52;18773:18;;91179:210:0::1;18451:346:1::0;91179:210:0::1;91398:13;::::0;:33:::1;::::0;-1:-1:-1;;;;;91398:13:0;;::::1;::::0;91421:9:::1;91398:33:::0;::::1;;;::::0;:13:::1;:33:::0;:13;:33;91421:9;91398:13;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;91438:34:0::1;79890:10:::0;91465:6:::1;91438:34;;:5;:34::i;:::-;91479:36;91494:6;91502:12;91479:14;:36::i;:::-;79890:10:::0;91558:33:::1;::::0;;;:12:::1;:33;::::0;;;;;:49:::1;::::0;91600:6;;91558:33;::::1;:49;:::i;:::-;79890:10:::0;91522:33:::1;::::0;;;:12:::1;:33;::::0;;;;:85;;-1:-1:-1;;91522:85:0::1;;::::0;;;;;;;::::1;::::0;;-1:-1:-1;21073:7:0;:22;20553:20;20890:213;89077:86;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;89136:13:::1;:21:::0;;-1:-1:-1;;89136:21:0::1;::::0;;89077:86::o;95105:221::-;95257:4;-1:-1:-1;;;;;85901:18:0;;85909:10;85901:18;85897:83;;85936:32;85957:10;85936:20;:32::i;:::-;95273:47:::1;95296:4;95302:2;95306:7;95315:4;95273:22;:47::i;:::-;95105:221:::0;;;;;:::o;88987:84::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;89045:13:::1;:20:::0;;-1:-1:-1;;89045:20:0::1;::::0;::::1;::::0;;88987:84::o;93958:300::-;94031:13;94061:16;94069:7;94061;:16::i;:::-;94053:49;;;;-1:-1:-1;;;94053:49:0;;19198:2:1;94053:49:0;;;19180:21:1;19237:2;19217:18;;;19210:30;-1:-1:-1;;;19256:18:1;;;19249:50;19316:18;;94053:49:0;18996:344:1;94053:49:0;94125:16;;94109:13;;94125:16;;:52;;94170:7;94125:52;;;94144:23;;;;:14;:23;;;;;;;;94125:52;94109:68;;94215:7;94224:26;94241:8;94224:16;:26::i;:::-;94198:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94184:68;;;93958:300;;;:::o;89844:116::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;89923:17:::1;:31:::0;89844:116::o;88815:79::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;88868:13:::1;:20:::0;;-1:-1:-1;;88868:20:0::1;::::0;::::1;::::0;;88815:79::o;57073:164::-;-1:-1:-1;;;;;57194:25:0;;;57170:4;57194:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57073:164::o;89966:120::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;90047:19:::1;:33:::0;89966:120::o;89706:132::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;89792:18:::1;:40:::0;;-1:-1:-1;;;;89792:40:0::1;;::::0;;;::::1;-1:-1:-1::0;;;89792:40:0::1;::::0;;;::::1;::::0;;89706:132::o;2797:201::-;1777:13;:11;:13::i;:::-;-1:-1:-1;;;;;2886:22:0;::::1;2878:73;;;::::0;-1:-1:-1;;;2878:73:0;;20572:2:1;2878:73:0::1;::::0;::::1;20554:21:1::0;20611:2;20591:18;;;20584:30;20650:34;20630:18;;;20623:62;-1:-1:-1;;;20701:18:1;;;20694:36;20747:19;;2878:73:0::1;20370:402:1::0;2878:73:0::1;2962:28;2981:8;2962:18;:28::i;89602:98::-:0;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;89672:9:::1;:22:::0;89602:98::o;88710:99::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;88773:22:::1;:30:::0;;-1:-1:-1;;88773:30:0::1;::::0;;88710:99::o;88506:95::-;94327:5;;-1:-1:-1;;;;;94327:5:0;79890:10;-1:-1:-1;;;;;94304:28:0;;94296:55;;;;-1:-1:-1;;;94296:55:0;;;;;;;:::i;:::-;88567:20:::1;:28:::0;;-1:-1:-1;;88567:28:0::1;::::0;;88506:95::o;57495:282::-;57560:4;57616:7;93945:1;57597:26;;:66;;;;;57650:13;;57640:7;:23;57597:66;:153;;;;-1:-1:-1;;57701:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;57701:44:0;:49;;57495:282::o;86139:419::-;84660:42;86330:45;:49;86326:225;;86401:67;;-1:-1:-1;;;86401:67:0;;86452:4;86401:67;;;20989:34:1;-1:-1:-1;;;;;21059:15:1;;21039:18;;;21032:43;84660:42:0;;86401;;20924:18:1;;86401:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;86396:144;;86496:28;;-1:-1:-1;;;86496:28:0;;-1:-1:-1;;;;;1697:32:1;;86496:28:0;;;1679:51:1;1652:18;;86496:28:0;1533:203:1;55557:408:0;55646:13;55662:16;55670:7;55662;:16::i;:::-;55646:32;-1:-1:-1;79890:10:0;-1:-1:-1;;;;;55695:28:0;;;55691:175;;55743:44;55760:5;79890:10;57073:164;:::i;55743:44::-;55738:128;;55815:35;;-1:-1:-1;;;55815:35:0;;;;;;;;;;;55738:128;55878:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;55878:35:0;-1:-1:-1;;;;;55878:35:0;;;;;;;;;55929:28;;55878:24;;55929:28;;;;;;;55635:330;55557:408;;:::o;20589:293::-;19991:1;20723:7;;:19;20715:63;;;;-1:-1:-1;;;20715:63:0;;21538:2:1;20715:63:0;;;21520:21:1;21577:2;21557:18;;;21550:30;21616:33;21596:18;;;21589:61;21667:18;;20715:63:0;21336:355:1;20715:63:0;19991:1;20856:7;:18;20589:293::o;67144:2966::-;67217:20;67240:13;;;67268;;;67264:44;;67290:18;;-1:-1:-1;;;67290:18:0;;;;;;;;;;;67264:44;-1:-1:-1;;;;;67796:22:0;;;;;;:18;:22;;;;40865:2;67796:22;;;:71;;67834:32;67822:45;;67796:71;;;68110:31;;;:17;:31;;;;;-1:-1:-1;54846:15:0;;54820:24;54816:46;54415:11;54390:23;54386:41;54383:52;54373:63;;68110:173;;68345:23;;;;68110:31;;67796:22;;-1:-1:-1;;;;;;;;;;;67796:22:0;;68963:335;69624:1;69610:12;69606:20;69564:346;69665:3;69656:7;69653:16;69564:346;;69883:7;69873:8;69870:1;-1:-1:-1;;;;;;;;;;;69840:1:0;69837;69832:59;69718:1;69705:15;69564:346;;;69568:77;69943:8;69955:1;69943:13;69939:45;;69965:19;;-1:-1:-1;;;69965:19:0;;;;;;;;;;;69939:45;70001:13;:19;-1:-1:-1;94590:159:0;;;:::o;93459:400::-;93565:27;;;;;;;;:13;:27;;;;;;:36;;93595:6;;93565:27;:36;:::i;:::-;93535:27;;;;;;;;:13;:27;;;;;:66;;-1:-1:-1;;93535:66:0;;;;;;;;;;;45153:13;;93737:23;;;;;;;;:::i;:::-;93724:36;;93720:134;45126:7;45153:13;93762:7;:24;93720:134;;;93808:23;;;;:14;:23;;;;;:38;;-1:-1:-1;;93808:38:0;;;;;;;:23;93788:9;93808:23;93788:9;:::i;:::-;;;;93720:134;;59763:2825;59905:27;59935;59954:7;59935:18;:27::i;:::-;59905:57;;60020:4;-1:-1:-1;;;;;59979:45:0;59995:19;-1:-1:-1;;;;;59979:45:0;;59975:86;;60033:28;;-1:-1:-1;;;60033:28:0;;;;;;;;;;;59975:86;60075:27;58871:24;;;:15;:24;;;;;59099:26;;60266:68;59099:26;60308:4;79890:10;60314:19;-1:-1:-1;;;;;58345:32:0;;;58189:28;;58474:20;;58496:30;;58471:56;;57886:659;60266:68;60261:180;;60354:43;60371:4;79890:10;57073:164;:::i;60354:43::-;60349:92;;60406:35;;-1:-1:-1;;;60406:35:0;;;;;;;;;;;60349:92;-1:-1:-1;;;;;60458:16:0;;60454:52;;60483:23;;-1:-1:-1;;;60483:23:0;;;;;;;;;;;60454:52;60655:15;60652:160;;;60795:1;60774:19;60767:30;60652:160;-1:-1:-1;;;;;61192:24:0;;;;;;;:18;:24;;;;;;61190:26;;-1:-1:-1;;61190:26:0;;;61261:22;;;;;;;;;61259:24;;-1:-1:-1;61259:24:0;;;54415:11;54390:23;54386:41;54373:63;-1:-1:-1;;;54373:63:0;61554:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;61849:47:0;;:52;;61845:627;;61954:1;61944:11;;61922:19;62077:30;;;:17;:30;;;;;;:35;;62073:384;;62215:13;;62200:11;:28;62196:242;;62362:30;;;;:17;:30;;;;;:52;;;62196:242;61903:569;61845:627;62519:7;62515:2;-1:-1:-1;;;;;62500:27:0;62509:4;-1:-1:-1;;;;;62500:27:0;-1:-1:-1;;;;;;;;;;;62500:27:0;;;;;;;;;62538:42;59894:2694;;;59763:2825;;;:::o;62684:193::-;62830:39;62847:4;62853:2;62857:7;62830:39;;;;;;;;;;;;:16;:39::i;74332:3081::-;74412:27;74442;74461:7;74442:18;:27::i;:::-;74412:57;-1:-1:-1;74412:57:0;74482:12;;74604:35;74631:7;58760:27;58871:24;;;:15;:24;;;;;59099:26;;58871:24;;58658:485;74604:35;74547:92;;;;74656:13;74652:316;;;74777:68;74802:15;74819:4;79890:10;74825:19;79803:105;74777:68;74772:184;;74869:43;74886:4;79890:10;57073:164;:::i;74869:43::-;74864:92;;74921:35;;-1:-1:-1;;;74921:35:0;;;;;;;;;;;74864:92;75124:15;75121:160;;;75264:1;75243:19;75236:30;75121:160;-1:-1:-1;;;;;75883:24:0;;;;;;:18;:24;;;;;:60;;75911:32;75883:60;;;54415:11;54390:23;54386:41;54373:63;-1:-1:-1;;;54373:63:0;76181:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;76506:47:0;;:52;;76502:627;;76611:1;76601:11;;76579:19;76734:30;;;:17;:30;;;;;;:35;;76730:384;;76872:13;;76857:11;:28;76853:242;;77019:30;;;;:17;:30;;;;;:52;;;76853:242;76560:569;76502:627;77157:35;;77184:7;;77180:1;;-1:-1:-1;;;;;77157:35:0;;;-1:-1:-1;;;;;;;;;;;77157:35:0;77180:1;;77157:35;-1:-1:-1;;77380:12:0;:14;;;;;;-1:-1:-1;;;;74332:3081:0:o;52181:1275::-;52248:7;52283;;93945:1;52332:23;52328:1061;;52385:13;;52378:4;:20;52374:1015;;;52423:14;52440:23;;;:17;:23;;;;;;;-1:-1:-1;;;52529:24:0;;:29;;52525:845;;53194:113;53201:6;53211:1;53201:11;53194:113;;-1:-1:-1;;;53272:6:0;53254:25;;;;:17;:25;;;;;;53194:113;;52525:845;52400:989;52374:1015;53417:31;;-1:-1:-1;;;53417:31:0;;;;;;;;;;;22177:190;22302:4;22355;22326:25;22339:5;22346:4;22326:12;:25::i;:::-;:33;;22177:190;-1:-1:-1;;;;22177:190:0:o;2056:132::-;1964:6;;-1:-1:-1;;;;;1964:6:0;79890:10;2120:23;2112:68;;;;-1:-1:-1;;;2112:68:0;;22347:2:1;2112:68:0;;;22329:21:1;;;22366:18;;;22359:30;22425:34;22405:18;;;22398:62;22477:18;;2112:68:0;22145:356:1;3158:191:0;3251:6;;;-1:-1:-1;;;;;3268:17:0;;;-1:-1:-1;;;;;;3268:17:0;;;;;;;3301:40;;3251:6;;;3268:17;3251:6;;3301:40;;3232:16;;3301:40;3221:128;3158:191;:::o;56682:234::-;79890:10;56777:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;56777:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;56777:60:0;;;;;;;;;;56853:55;;540:41:1;;;56777:49:0;;79890:10;56853:55;;513:18:1;56853:55:0;;;;;;;56682:234;;:::o;63475:407::-;63650:31;63663:4;63669:2;63673:7;63650:12;:31::i;:::-;-1:-1:-1;;;;;63696:14:0;;;:19;63692:183;;63735:56;63766:4;63772:2;63776:7;63785:5;63735:30;:56::i;:::-;63730:145;;63819:40;;-1:-1:-1;;;63819:40:0;;;;;;;;;;;16413:716;16469:13;16520:14;16537:17;16548:5;16537:10;:17::i;:::-;16557:1;16537:21;16520:38;;16573:20;16607:6;-1:-1:-1;;;;;16596:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16596:18:0;-1:-1:-1;16573:41:0;-1:-1:-1;16738:28:0;;;16754:2;16738:28;16795:288;-1:-1:-1;;16827:5:0;-1:-1:-1;;;16964:2:0;16953:14;;16948:30;16827:5;16935:44;17025:2;17016:11;;;-1:-1:-1;17046:21:0;16795:288;17046:21;-1:-1:-1;17104:6:0;16413:716;-1:-1:-1;;;16413:716:0:o;23044:296::-;23127:7;23170:4;23127:7;23185:118;23209:5;:12;23205:1;:16;23185:118;;;23258:33;23268:12;23282:5;23288:1;23282:8;;;;;;;;:::i;:::-;;;;;;;23258:9;:33::i;:::-;23243:48;-1:-1:-1;23223:3:0;;;;:::i;:::-;;;;23185:118;;;-1:-1:-1;23320:12:0;23044:296;-1:-1:-1;;;23044:296:0:o;65966:716::-;66150:88;;-1:-1:-1;;;66150:88:0;;66129:4;;-1:-1:-1;;;;;66150:45:0;;;;;:88;;79890:10;;66217:4;;66223:7;;66232:5;;66150:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66150:88:0;;;;;;;;-1:-1:-1;;66150:88:0;;;;;;;;;;;;:::i;:::-;;;66146:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66433:6;:13;66450:1;66433:18;66429:235;;66479:40;;-1:-1:-1;;;66479:40:0;;;;;;;;;;;66429:235;66622:6;66616:13;66607:6;66603:2;66599:15;66592:38;66146:529;-1:-1:-1;;;;;;66309:64:0;-1:-1:-1;;;66309:64:0;;-1:-1:-1;66146:529:0;65966:716;;;;;;:::o;13402:922::-;13455:7;;-1:-1:-1;;;13533:15:0;;13529:102;;-1:-1:-1;;;13569:15:0;;;-1:-1:-1;13613:2:0;13603:12;13529:102;13658:6;13649:5;:15;13645:102;;13694:6;13685:15;;;-1:-1:-1;13729:2:0;13719:12;13645:102;13774:6;13765:5;:15;13761:102;;13810:6;13801:15;;;-1:-1:-1;13845:2:0;13835:12;13761:102;13890:5;13881;:14;13877:99;;13925:5;13916:14;;;-1:-1:-1;13959:1:0;13949:11;13877:99;14003:5;13994;:14;13990:99;;14038:5;14029:14;;;-1:-1:-1;14072:1:0;14062:11;13990:99;14116:5;14107;:14;14103:99;;14151:5;14142:14;;;-1:-1:-1;14185:1:0;14175:11;14103:99;14229:5;14220;:14;14216:66;;14265:1;14255:11;14310:6;13402:922;-1:-1:-1;;13402:922:0:o;30084:149::-;30147:7;30178:1;30174;:5;:51;;30309:13;30403:15;;;30439:4;30432:15;;;30486:4;30470:21;;30174:51;;;-1:-1:-1;30309:13:0;30403:15;;;30439:4;30432:15;30486:4;30470:21;;;30084:149::o;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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:159::-;2427:20;;2487:6;2476:18;;2466:29;;2456:57;;2509:1;2506;2499:12;2524:256;2590:6;2598;2651:2;2639:9;2630:7;2626:23;2622:32;2619:52;;;2667:1;2664;2657:12;2619:52;2690:28;2708:9;2690:28;:::i;:::-;2680:38;;2737:37;2770:2;2759:9;2755:18;2737:37;:::i;:::-;2727:47;;2524:256;;;;;:::o;2785:328::-;2862:6;2870;2878;2931:2;2919:9;2910:7;2906:23;2902:32;2899:52;;;2947:1;2944;2937:12;2899:52;2970:29;2989:9;2970:29;:::i;:::-;2960:39;;3018:38;3052:2;3041:9;3037:18;3018:38;:::i;:::-;3008:48;;3103:2;3092:9;3088:18;3075:32;3065:42;;2785:328;;;;;:::o;3118:127::-;3179:10;3174:3;3170:20;3167:1;3160:31;3210:4;3207:1;3200:15;3234:4;3231:1;3224:15;3250:275;3321:2;3315:9;3386:2;3367:13;;-1:-1:-1;;3363:27:1;3351:40;;-1:-1:-1;;;;;3406:34:1;;3442:22;;;3403:62;3400:88;;;3468:18;;:::i;:::-;3504:2;3497:22;3250:275;;-1:-1:-1;3250:275:1:o;3530:407::-;3595:5;-1:-1:-1;;;;;3621:6:1;3618:30;3615:56;;;3651:18;;:::i;:::-;3689:57;3734:2;3713:15;;-1:-1:-1;;3709:29:1;3740:4;3705:40;3689:57;:::i;:::-;3680:66;;3769:6;3762:5;3755:21;3809:3;3800:6;3795:3;3791:16;3788:25;3785:45;;;3826:1;3823;3816:12;3785:45;3875:6;3870:3;3863:4;3856:5;3852:16;3839:43;3929:1;3922:4;3913:6;3906:5;3902:18;3898:29;3891:40;3530:407;;;;;:::o;3942:451::-;4011:6;4064:2;4052:9;4043:7;4039:23;4035:32;4032:52;;;4080:1;4077;4070:12;4032:52;4120:9;4107:23;-1:-1:-1;;;;;4145:6:1;4142:30;4139:50;;;4185:1;4182;4175:12;4139:50;4208:22;;4261:4;4253:13;;4249:27;-1:-1:-1;4239:55:1;;4290:1;4287;4280:12;4239:55;4313:74;4379:7;4374:2;4361:16;4356:2;4352;4348:11;4313:74;:::i;4638:186::-;4697:6;4750:2;4738:9;4729:7;4725:23;4721:32;4718:52;;;4766:1;4763;4756:12;4718:52;4789:29;4808:9;4789:29;:::i;5397:184::-;5455:6;5508:2;5496:9;5487:7;5483:23;5479:32;5476:52;;;5524:1;5521;5514:12;5476:52;5547:28;5565:9;5547:28;:::i;5586:765::-;5688:6;5696;5704;5712;5765:2;5753:9;5744:7;5740:23;5736:32;5733:52;;;5781:1;5778;5771:12;5733:52;5821:9;5808:23;-1:-1:-1;;;;;5891:2:1;5883:6;5880:14;5877:34;;;5907:1;5904;5897:12;5877:34;5945:6;5934:9;5930:22;5920:32;;5990:7;5983:4;5979:2;5975:13;5971:27;5961:55;;6012:1;6009;6002:12;5961:55;6052:2;6039:16;6078:2;6070:6;6067:14;6064:34;;;6094:1;6091;6084:12;6064:34;6149:7;6142:4;6132:6;6129:1;6125:14;6121:2;6117:23;6113:34;6110:47;6107:67;;;6170:1;6167;6160:12;6107:67;6201:4;6193:13;;;;-1:-1:-1;6225:6:1;-1:-1:-1;6250:39:1;;6268:20;;;-1:-1:-1;6250:39:1;:::i;:::-;6240:49;;6308:37;6341:2;6330:9;6326:18;6308:37;:::i;:::-;6298:47;;5586:765;;;;;;;:::o;6356:118::-;6442:5;6435:13;6428:21;6421:5;6418:32;6408:60;;6464:1;6461;6454:12;6479:315;6544:6;6552;6605:2;6593:9;6584:7;6580:23;6576:32;6573:52;;;6621:1;6618;6611:12;6573:52;6644:29;6663:9;6644:29;:::i;:::-;6634:39;;6723:2;6712:9;6708:18;6695:32;6736:28;6758:5;6736:28;:::i;:::-;6783:5;6773:15;;;6479:315;;;;;:::o;6799:183::-;6859:4;-1:-1:-1;;;;;6884:6:1;6881:30;6878:56;;;6914:18;;:::i;:::-;-1:-1:-1;6959:1:1;6955:14;6971:4;6951:25;;6799:183::o;6987:789::-;7038:5;7091:3;7084:4;7076:6;7072:17;7068:27;7058:55;;7109:1;7106;7099:12;7058:55;7145:6;7132:20;7171:4;7195:60;7211:43;7251:2;7211:43;:::i;:::-;7195:60;:::i;:::-;7289:15;;;7375:1;7371:10;;;;7359:23;;7355:32;;;7320:12;;;;7399:15;;;7396:35;;;7427:1;7424;7417:12;7396:35;7463:2;7455:6;7451:15;7475:272;7491:6;7486:3;7483:15;7475:272;;;7571:3;7558:17;7598:1;7647:5;7643:2;7632:21;7625:5;7622:32;7612:62;;7669:2;7665;7658:14;7612:62;-1:-1:-1;7687:18:1;;7725:12;;;;7508;;7475:272;;;-1:-1:-1;7765:5:1;6987:789;-1:-1:-1;;;;;;6987:789:1:o;7781:1140::-;7896:6;7904;7957:2;7945:9;7936:7;7932:23;7928:32;7925:52;;;7973:1;7970;7963:12;7925:52;8013:9;8000:23;-1:-1:-1;;;;;8083:2:1;8075:6;8072:14;8069:34;;;8099:1;8096;8089:12;8069:34;8137:6;8126:9;8122:22;8112:32;;8182:7;8175:4;8171:2;8167:13;8163:27;8153:55;;8204:1;8201;8194:12;8153:55;8240:2;8227:16;8262:4;8286:60;8302:43;8342:2;8302:43;:::i;8286:60::-;8380:15;;;8462:1;8458:10;;;;8450:19;;8446:28;;;8411:12;;;;8486:19;;;8483:39;;;8518:1;8515;8508:12;8483:39;8542:11;;;;8562:148;8578:6;8573:3;8570:15;8562:148;;;8644:23;8663:3;8644:23;:::i;:::-;8632:36;;8595:12;;;;8688;;;;8562:148;;;8729:5;-1:-1:-1;;8772:18:1;;8759:32;;-1:-1:-1;;8803:16:1;;;8800:36;;;8832:1;8829;8822:12;8800:36;;8855:60;8907:7;8896:8;8885:9;8881:24;8855:60;:::i;:::-;8845:70;;;7781:1140;;;;;:::o;8926:667::-;9021:6;9029;9037;9045;9098:3;9086:9;9077:7;9073:23;9069:33;9066:53;;;9115:1;9112;9105:12;9066:53;9138:29;9157:9;9138:29;:::i;:::-;9128:39;;9186:38;9220:2;9209:9;9205:18;9186:38;:::i;:::-;9176:48;;9271:2;9260:9;9256:18;9243:32;9233:42;;9326:2;9315:9;9311:18;9298:32;-1:-1:-1;;;;;9345:6:1;9342:30;9339:50;;;9385:1;9382;9375:12;9339:50;9408:22;;9461:4;9453:13;;9449:27;-1:-1:-1;9439:55:1;;9490:1;9487;9480:12;9439:55;9513:74;9579:7;9574:2;9561:16;9556:2;9552;9548:11;9513:74;:::i;:::-;9503:84;;;8926:667;;;;;;;:::o;9783:260::-;9851:6;9859;9912:2;9900:9;9891:7;9887:23;9883:32;9880:52;;;9928:1;9925;9918:12;9880:52;9951:29;9970:9;9951:29;:::i;:::-;9941:39;;9999:38;10033:2;10022:9;10018:18;9999:38;:::i;10048:269::-;10105:6;10158:2;10146:9;10137:7;10133:23;10129:32;10126:52;;;10174:1;10171;10164:12;10126:52;10213:9;10200:23;10263:4;10256:5;10252:16;10245:5;10242:27;10232:55;;10283:1;10280;10273:12;10322:338;10524:2;10506:21;;;10563:2;10543:18;;;10536:30;-1:-1:-1;;;10597:2:1;10582:18;;10575:44;10651:2;10636:18;;10322:338::o;10665:380::-;10744:1;10740:12;;;;10787;;;10808:61;;10862:4;10854:6;10850:17;10840:27;;10808:61;10915:2;10907:6;10904:14;10884:18;10881:38;10878:161;;10961:10;10956:3;10952:20;10949:1;10942:31;10996:4;10993:1;10986:15;11024:4;11021:1;11014:15;10878:161;;10665:380;;;:::o;11398:127::-;11459:10;11454:3;11450:20;11447:1;11440:31;11490:4;11487:1;11480:15;11514:4;11511:1;11504:15;11530:168;11603:9;;;11634;;11651:15;;;11645:22;;11631:37;11621:71;;11672:18;;:::i;11703:354::-;11905:2;11887:21;;;11944:2;11924:18;;;11917:30;11983:32;11978:2;11963:18;;11956:60;12048:2;12033:18;;11703:354::o;12062:349::-;12264:2;12246:21;;;12303:2;12283:18;;;12276:30;12342:27;12337:2;12322:18;;12315:55;12402:2;12387:18;;12062:349::o;12416:352::-;12618:2;12600:21;;;12657:2;12637:18;;;12630:30;12696;12691:2;12676:18;;12669:58;12759:2;12744:18;;12416:352::o;12773:180::-;-1:-1:-1;;;;;12878:10:1;;;12890;;;12874:27;;12913:11;;;12910:37;;;12927:18;;:::i;:::-;12910:37;12773:180;;;;:::o;13443:545::-;13545:2;13540:3;13537:11;13534:448;;;13581:1;13606:5;13602:2;13595:17;13651:4;13647:2;13637:19;13721:2;13709:10;13705:19;13702:1;13698:27;13692:4;13688:38;13757:4;13745:10;13742:20;13739:47;;;-1:-1:-1;13780:4:1;13739:47;13835:2;13830:3;13826:12;13823:1;13819:20;13813:4;13809:31;13799:41;;13890:82;13908:2;13901:5;13898:13;13890:82;;;13953:17;;;13934:1;13923:13;13890:82;;14164:1352;14290:3;14284:10;-1:-1:-1;;;;;14309:6:1;14306:30;14303:56;;;14339:18;;:::i;:::-;14368:97;14458:6;14418:38;14450:4;14444:11;14418:38;:::i;:::-;14412:4;14368:97;:::i;:::-;14520:4;;14584:2;14573:14;;14601:1;14596:663;;;;15303:1;15320:6;15317:89;;;-1:-1:-1;15372:19:1;;;15366:26;15317:89;-1:-1:-1;;14121:1:1;14117:11;;;14113:24;14109:29;14099:40;14145:1;14141:11;;;14096:57;15419:81;;14566:944;;14596:663;13390:1;13383:14;;;13427:4;13414:18;;-1:-1:-1;;14632:20:1;;;14750:236;14764:7;14761:1;14758:14;14750:236;;;14853:19;;;14847:26;14832:42;;14945:27;;;;14913:1;14901:14;;;;14780:19;;14750:236;;;14754:3;15014:6;15005:7;15002:19;14999:201;;;15075:19;;;15069:26;-1:-1:-1;;15158:1:1;15154:14;;;15170:3;15150:24;15146:37;15142:42;15127:58;15112:74;;14999:201;-1:-1:-1;;;;;15246:1:1;15230:14;;;15226:22;15213:36;;-1:-1:-1;14164:1352:1:o;15878:185::-;15974:1;15945:16;;;15963;;;;15941:39;16026:5;15995:16;;-1:-1:-1;;16013:20:1;;15992:42;15989:68;;;16037:18;;:::i;17357:127::-;17418:10;17413:3;17409:20;17406:1;17399:31;17449:4;17446:1;17439:15;17473:4;17470:1;17463:15;17489:197;17527:3;17555:6;17596:2;17589:5;17585:14;17623:2;17614:7;17611:15;17608:41;;17629:18;;:::i;:::-;17678:1;17665:15;;17489:197;-1:-1:-1;;;17489:197:1:o;18802:189::-;18900:1;18889:16;;;18871;;;;18867:39;-1:-1:-1;;18921:21:1;;18954:6;18944:17;;18918:44;18915:70;;;18965:18;;:::i;19345:1020::-;19521:3;19550:1;19583:6;19577:13;19613:36;19639:9;19613:36;:::i;:::-;19668:1;19685:18;;;19712:133;;;;19859:1;19854:356;;;;19678:532;;19712:133;-1:-1:-1;;19745:24:1;;19733:37;;19818:14;;19811:22;19799:35;;19790:45;;;-1:-1:-1;19712:133:1;;19854:356;19885:6;19882:1;19875:17;19915:4;19960:2;19957:1;19947:16;19985:1;19999:165;20013:6;20010:1;20007:13;19999:165;;;20091:14;;20078:11;;;20071:35;20134:16;;;;20028:10;;19999:165;;;20003:3;;;20193:6;20188:3;20184:16;20177:23;;19678:532;;;;;20241:6;20235:13;20257:68;20316:8;20311:3;20304:4;20296:6;20292:17;20257:68;:::i;:::-;20341:18;;19345:1020;-1:-1:-1;;;;19345:1020:1:o;21086:245::-;21153:6;21206:2;21194:9;21185:7;21181:23;21177:32;21174:52;;;21222:1;21219;21212:12;21174:52;21254:9;21248:16;21273:28;21295:5;21273:28;:::i;21696:171::-;21764:6;21803:10;;;21791;;;21787:27;;21826:12;;;21823:38;;;21841:18;;:::i;21872:128::-;21939:9;;;21960:11;;;21957:37;;;21974:18;;:::i;22005:135::-;22044:3;22065:17;;;22062:43;;22085:18;;:::i;:::-;-1:-1:-1;22132:1:1;22121:13;;22005:135::o;22638:489::-;-1:-1:-1;;;;;22907:15:1;;;22889:34;;22959:15;;22954:2;22939:18;;22932:43;23006:2;22991:18;;22984:34;;;23054:3;23049:2;23034:18;;23027:31;;;22832:4;;23075:46;;23101:19;;23093:6;23075:46;:::i;:::-;23067:54;22638:489;-1:-1:-1;;;;;;22638:489:1:o;23132:249::-;23201:6;23254:2;23242:9;23233:7;23229:23;23225:32;23222:52;;;23270:1;23267;23260:12;23222:52;23302:9;23296:16;23321:30;23345:5;23321:30;:::i
Swarm Source
ipfs://808595d27b53796707b2da0487b45980e8a248053ef0dfe342c165fd68baec5f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.