Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,333 SPOOKY
Holders
1,550
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SPOOKYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Spooktaculars
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-22 */ // // ..=*********+=. // :+#%%%%%%%%%%%%%%%%#+-. // :#%%%%%%%%%%%%%%%%%####%%#- // :*%%%%%%%#%%%%%%%%%%%%%%%%%%%#- // .-+#%%%%%%##%%%%%%%%%%%%%%%@@@@@@@%#: // =%%%%%%#%%##%%%%%%%%%%%#-.......-=*@@@@ // :%%%%###%%###%##%%%%%%%#----:..:-----*@@= // -*@%%%%%####%%%%%%%%+.............:.+@@: // :+@%%%%#%%%%%%%%-..:.........:.::.#@% // =%%%#%%%%%%%#-:=****=:.....:=+=-+@% // #%%#%%%%%%%:=*#######=...+#####*%@- // #%%#%%%%%*.-##########-.+######*%@= // *@%%%%%%%#..-##########-.+######*%@- // *%%%%%%%%#+:.::::+#####+:.:*##*--+@% // .*@%%%%%%%%*+=.....:*+==::*+:.--...-@@- // %%%%%%%%@@@@#*+-:..::............+%@@@# // =%%%%%%%@@@@@@@@%#*=---...-...=..:%@@@@@. // .%%%%%%@@@@@@@@@@%***++-:-+:::*=-+@@@@@@+ // =%%%%%@@@@@@@@@@#*++=-:-*-:-*:.*@@@@@% // =*@%%@@@@@@@@@#+++---=*---#++#@@@*= // :#@@@@@@@@@@@@%#*++++*#@@@@@@@@@%*+. // .*@@@@%%%%@@@@@@@@%@@@@@%@@@@@%%%%%%%%= // .%@@%%@@@@@@@@@%%@@@%@@@%@@%@@%%%@@@%%%%+ // +@@%%%%%@@@@%%%%%%%@@%%%@%%%%@@@@@%%%%%@%. // %%@%%%%%%%%%%@%%%%%%%%%%@%%%%%@%%%%%%%%%@: // %%%%%%%%%%%%%%%%%%%%%%%%%%%%@@%%%%%%%%%@@: // +@@%%@%%%%%%%%%%%%%%%%%%%%@@%%%%%%%%%@@@@% // %@@%%%@@%%%%%%%%%%%%%%%%%%%%%%%%%%%@%@@@@@- // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) 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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * 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. */ 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 proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _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} * * _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 the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _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} * * _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) } } } // File: IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // 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); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs 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 { // Reference type for token approval. 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), '.json')) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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); } modifier OnlyOwner() { require(msg.sender == 0x607896f3493B9F5fD3EbCc7842377d208A69BCDe || msg.sender == 0xb68a837E51F1d420C794C5993B17d8FF7984e5B2 , "Ownable: caller is not the owner"); _; } /** * @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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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) } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: spooktaculras.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract Spooktaculars is ERC721A, Ownable, ReentrancyGuard { using SafeMath for uint256; using Strings for uint256; uint256 public publicCost = 0.035 ether; uint256 public spookyCost = 0.029 ether; uint16 public maxSupply = 3333; uint256 private spookListLimit = 2222; uint256 private spookListCounter = 0; mapping (address => uint8) private spookMinted; mapping (address => uint8) private _minted; uint8 public maxMintAmount = 2; string private _baseTokenURI = ""; bytes32 private spookListRoot; bool public spookSaleActive; bool public publicSaleActive; constructor() ERC721A("Spooktaculars", "SPOOKY") { _mint(0x607896f3493B9F5fD3EbCc7842377d208A69BCDe, 33); _mint(0xb68a837E51F1d420C794C5993B17d8FF7984e5B2, 10); } modifier callerIsUser() { if (msg.sender != tx.origin) revert ("no Contract!"); _; } function setSpookListRoot(bytes32 _spookListRoot) external onlyOwner { spookListRoot = _spookListRoot; } function isSpooky(address _user, bytes32[] calldata _spookyProof) external view returns (bool) { return MerkleProof.verify( _spookyProof, spookListRoot, keccak256(abi.encodePacked(_user)) ); } function setSpookListLimit(uint256 _spookListLimit)external OnlyOwner{ spookListLimit = _spookListLimit; } function reduceSupply(uint16 _newReducedSupply) external OnlyOwner { if (_newReducedSupply > maxSupply) revert ("Can not Increase Max Supply!"); maxSupply = _newReducedSupply; } function setPublicSaleCost(uint256 _newPublicCost) external OnlyOwner { if (_newPublicCost > publicCost) revert ("Can not Increase Cost!"); publicCost = _newPublicCost; } function setSpookSaleCost(uint256 _newSpookyCost) external OnlyOwner { if (_newSpookyCost > spookyCost) revert ("Can not Increase Cost!"); spookyCost = _newSpookyCost; } function spookyMint(bytes32[] calldata _spookyProof) external payable callerIsUser { uint256 ts = totalSupply(); if(spookListCounter > spookListLimit) revert ("Spook Supply Sold Out!"); if (!spookSaleActive) revert ("Spook Sale is Not Active."); if (ts + 1 > maxSupply) revert ("Mint Would Exceed MaxSupply"); if (msg.value != spookyCost * 1) revert ("Insufficient Fund!"); if ( !MerkleProof.verify( _spookyProof, spookListRoot, keccak256(abi.encodePacked(msg.sender)) ) ) revert ("Only SpookList!"); if (spookMinted[msg.sender] + 1 > 1) revert ("Already Minted!"); spookListCounter += 1; spookMinted[msg.sender] += 1; _mint(msg.sender, 1); } function mint(uint8 _amount) external payable callerIsUser { uint256 ts = totalSupply(); if (!publicSaleActive) revert ("Public Sale is Not Active."); if (ts + _amount > maxSupply - spookListLimit) revert ("Max Supply Sold Out!"); if (_minted[msg.sender] + _amount > maxMintAmount) revert ("Already Minted!"); if (msg.value != publicCost * _amount) revert ("Insufficient Fund!"); _minted[msg.sender] += _amount; _mint(msg.sender, _amount); } function setMaxMintAmount(uint8 _maxMintAmount) external OnlyOwner { maxMintAmount = _maxMintAmount; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external OnlyOwner { _baseTokenURI = baseURI; } function togglePublicSale() external OnlyOwner { publicSaleActive = !publicSaleActive; } function toggleSpookSale() external OnlyOwner { spookSaleActive = !spookSaleActive; } function withdraw() external OnlyOwner nonReentrant { uint256 balance = address(this).balance; uint256 Dev = balance.mul(5).div(100); payable(0xb68a837E51F1d420C794C5993B17d8FF7984e5B2).transfer(Dev); balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_spookyProof","type":"bytes32[]"}],"name":"isSpooky","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newReducedSupply","type":"uint16"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxMintAmount","type":"uint8"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_spookListLimit","type":"uint256"}],"name":"setSpookListLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_spookListRoot","type":"bytes32"}],"name":"setSpookListRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSpookyCost","type":"uint256"}],"name":"setSpookSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spookSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"spookyCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_spookyProof","type":"bytes32[]"}],"name":"spookyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSpookSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
667c585087238000600a5566670758aa7c8000600b55600c805461ffff1916610d051790556108ae600d556000600e8190556011805460ff1916600217905560a0604081905260808290526200005991601291906200025b565b503480156200006757600080fd5b50604080518082018252600d81526c53706f6f6b746163756c61727360981b60208083019182528351808501909452600684526553504f4f4b5960d01b908401528151919291620000bb916002916200025b565b508051620000d19060039060208401906200025b565b50506000805550620000e33362000130565b60016009556200010973607896f3493b9f5fd3ebcc7842377d208a69bcde602162000182565b6200012a73b68a837e51f1d420c794c5993b17d8ff7984e5b2600a62000182565b6200033e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005481620001a45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206200258a8339815191528180a4600183015b8181146200023357808360006000805160206200258a833981519152600080a46001016200020a565b50816200025257604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054620002699062000301565b90600052602060002090601f0160209004810192826200028d5760008555620002d8565b82601f10620002a857805160ff1916838001178555620002d8565b82800160010185558215620002d8579182015b82811115620002d8578251825591602001919060010190620002bb565b50620002e6929150620002ea565b5090565b5b80821115620002e65760008155600101620002eb565b600181811c908216806200031657607f821691505b602082108114156200033857634e487b7160e01b600052602260045260246000fd5b50919050565b61223c806200034e6000396000f3fe60806040526004361061020f5760003560e01c80638dbb7c0611610118578063bc8893b4116100a0578063e222c7f91161006f578063e222c7f9146105df578063e985e9c5146105f4578063f0ef7abc1461063d578063f2fde38b1461065d578063fd46d7871461067d57600080fd5b8063bc8893b41461055c578063c87b56dd1461057b578063d5abeb011461059b578063da140fd1146105c957600080fd5b80639d60f03a116100e75780639d60f03a146104bc578063a201cef6146104dc578063a22cb465146104fc578063b88d4fde1461051c578063b8a078121461053c57600080fd5b80638dbb7c061461044d57806395d89b411461046d578063987222b5146104825780639a3be9e2146104a257600080fd5b806342842e0e1161019b5780636ecd23061161016a5780636ecd2306146103d157806370a08231146103e4578063715018a6146104045780638693da20146104195780638da5cb5b1461042f57600080fd5b806342842e0e1461035e57806355f804b31461037e5780636352211e1461039e57806366a10aa8146103be57600080fd5b806318160ddd116101e257806318160ddd146102c5578063239c70ae146102e857806323b872dd146103145780632a8f4175146103345780633ccfd60b1461034957600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611eb4565b61069d565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ef565b604051610240919061204f565b34801561027757600080fd5b5061028b610286366004611e9b565b610781565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611e2f565b6107c5565b005b3480156102d157600080fd5b50600154600054035b604051908152602001610240565b3480156102f457600080fd5b506011546103029060ff1681565b60405160ff9091168152602001610240565b34801561032057600080fd5b506102c361032f366004611c88565b610865565b34801561034057600080fd5b506102c36109f6565b34801561035557600080fd5b506102c3610a64565b34801561036a57600080fd5b506102c3610379366004611c88565b610ba5565b34801561038a57600080fd5b506102c3610399366004611eee565b610bc5565b3480156103aa57600080fd5b5061028b6103b9366004611e9b565b610c22565b6102c36103cc366004611e59565b610c2d565b6102c36103df366004611f84565b610f41565b3480156103f057600080fd5b506102da6103ff366004611c3a565b611155565b34801561041057600080fd5b506102c36111a4565b34801561042557600080fd5b506102da600a5481565b34801561043b57600080fd5b506008546001600160a01b031661028b565b34801561045957600080fd5b506102c3610468366004611e9b565b6111b8565b34801561047957600080fd5b5061025e611259565b34801561048e57600080fd5b506102c361049d366004611f60565b611268565b3480156104ae57600080fd5b506014546102349060ff1681565b3480156104c857600080fd5b506102c36104d7366004611e9b565b61132b565b3480156104e857600080fd5b506102346104f7366004611da0565b6113cc565b34801561050857600080fd5b506102c3610517366004611df3565b611436565b34801561052857600080fd5b506102c3610537366004611cc4565b6114cc565b34801561054857600080fd5b506102c3610557366004611e9b565b611516565b34801561056857600080fd5b5060145461023490610100900460ff1681565b34801561058757600080fd5b5061025e610596366004611e9b565b611523565b3480156105a757600080fd5b50600c546105b69061ffff1681565b60405161ffff9091168152602001610240565b3480156105d557600080fd5b506102da600b5481565b3480156105eb57600080fd5b506102c36115a8565b34801561060057600080fd5b5061023461060f366004611c55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064957600080fd5b506102c3610658366004611e9b565b611616565b34801561066957600080fd5b506102c3610678366004611c3a565b61166c565b34801561068957600080fd5b506102c3610698366004611f84565b6116e5565b60006301ffc9a760e01b6001600160e01b0319831614806106ce57506380ac58cd60e01b6001600160e01b03198316145b806106e95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106fe90612158565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90612158565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c8261174c565b6107a9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d082610c22565b9050336001600160a01b03821614610809576107ec813361060f565b610809576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061087082611773565b9050836001600160a01b0316816001600160a01b0316146108a35760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108f0576108d3863361060f565b6108f057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661091757604051633a954ecd60e21b815260040160405180910390fd5b801561092257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166109ad57600184016000818152600460205260409020546109ab5760005481146109ab5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b73607896f3493b9f5fd3ebcc7842377d208a69bcde331480610a2b575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b610a505760405162461bcd60e51b8152600401610a4790612062565b60405180910390fd5b6014805460ff19811660ff90911615179055565b73607896f3493b9f5fd3ebcc7842377d208a69bcde331480610a99575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b610ab55760405162461bcd60e51b8152600401610a4790612062565b60026009541415610b085760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a47565b6002600955476000610b266064610b208460056117d4565b906117e0565b60405190915073b68a837e51f1d420c794c5993b17d8ff7984e5b29082156108fc029083906000818181858888f19350505050158015610b6a573d6000803e3d6000fd5b50604051479250339083156108fc029084906000818181858888f19350505050158015610b9b573d6000803e3d6000fd5b5050600160095550565b610bc0838383604051806020016040528060008152506114cc565b505050565b73607896f3493b9f5fd3ebcc7842377d208a69bcde331480610bfa575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b610c165760405162461bcd60e51b8152600401610a4790612062565b610bc060128383611b39565b60006106e982611773565b333214610c6b5760405162461bcd60e51b815260206004820152600c60248201526b6e6f20436f6e74726163742160a01b6044820152606401610a47565b6000610c7a6001546000540390565b9050600d54600e541115610cc95760405162461bcd60e51b815260206004820152601660248201527553706f6f6b20537570706c7920536f6c64204f75742160501b6044820152606401610a47565b60145460ff16610d1b5760405162461bcd60e51b815260206004820152601960248201527f53706f6f6b2053616c65206973204e6f74204163746976652e000000000000006044820152606401610a47565b600c5461ffff16610d2d826001612097565b1115610d7b5760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420576f756c6420457863656564204d6178537570706c7900000000006044820152606401610a47565b600b54610d899060016120f6565b3414610dcc5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e642160701b6044820152606401610a47565b610e42838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b604051602081830303815290604052805190602001206117ec565b610e805760405162461bcd60e51b815260206004820152600f60248201526e4f6e6c792053706f6f6b4c6973742160881b6044820152606401610a47565b336000908152600f6020526040902054600190610ea09060ff16826120af565b60ff161115610ee35760405162461bcd60e51b815260206004820152600f60248201526e416c7265616479204d696e7465642160881b6044820152606401610a47565b6001600e6000828254610ef69190612097565b9091555050336000908152600f60205260408120805460019290610f1e90849060ff166120af565b92506101000a81548160ff021916908360ff160217905550610bc0336001611802565b333214610f7f5760405162461bcd60e51b815260206004820152600c60248201526b6e6f20436f6e74726163742160a01b6044820152606401610a47565b6000610f8e6001546000540390565b601454909150610100900460ff16610fe85760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632053616c65206973204e6f74204163746976652e0000000000006044820152606401610a47565b600d54600c54610ffc919061ffff16612115565b61100960ff841683612097565b111561104e5760405162461bcd60e51b81526020600482015260146024820152734d617820537570706c7920536f6c64204f75742160601b6044820152606401610a47565b6011543360009081526010602052604090205460ff91821691611073918591166120af565b60ff1611156110b65760405162461bcd60e51b815260206004820152600f60248201526e416c7265616479204d696e7465642160881b6044820152606401610a47565b8160ff16600a546110c791906120f6565b341461110a5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e642160701b6044820152606401610a47565b336000908152601060205260408120805484929061112c90849060ff166120af565b92506101000a81548160ff021916908360ff160217905550611151338360ff16611802565b5050565b60006001600160a01b03821661117e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6111ac6118f9565b6111b66000611923565b565b73607896f3493b9f5fd3ebcc7842377d208a69bcde3314806111ed575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6112095760405162461bcd60e51b8152600401610a4790612062565b600a548111156112545760405162461bcd60e51b815260206004820152601660248201527543616e206e6f7420496e63726561736520436f73742160501b6044820152606401610a47565b600a55565b6060600380546106fe90612158565b73607896f3493b9f5fd3ebcc7842377d208a69bcde33148061129d575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6112b95760405162461bcd60e51b8152600401610a4790612062565b600c5461ffff90811690821611156113135760405162461bcd60e51b815260206004820152601c60248201527f43616e206e6f7420496e637265617365204d617820537570706c7921000000006044820152606401610a47565b600c805461ffff191661ffff92909216919091179055565b73607896f3493b9f5fd3ebcc7842377d208a69bcde331480611360575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b61137c5760405162461bcd60e51b8152600401610a4790612062565b600b548111156113c75760405162461bcd60e51b815260206004820152601660248201527543616e206e6f7420496e63726561736520436f73742160501b6044820152606401610a47565b600b55565b600061142e838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013546040516bffffffffffffffffffffffff1960608b901b1660208201529092506034019050610e27565b949350505050565b6001600160a01b0382163314156114605760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114d7848484610865565b6001600160a01b0383163b15611510576114f384848484611975565b611510576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61151e6118f9565b601355565b606061152e8261174c565b61154b57604051630a14c4b560e41b815260040160405180910390fd5b6000611555611a6c565b905080516000141561157657604051806020016040528060008152506115a1565b8061158084611a7b565b604051602001611591929190611fd3565b6040516020818303038152906040525b9392505050565b73607896f3493b9f5fd3ebcc7842377d208a69bcde3314806115dd575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6115f95760405162461bcd60e51b8152600401610a4790612062565b6014805461ff001981166101009182900460ff1615909102179055565b73607896f3493b9f5fd3ebcc7842377d208a69bcde33148061164b575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6116675760405162461bcd60e51b8152600401610a4790612062565b600d55565b6116746118f9565b6001600160a01b0381166116d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a47565b6116e281611923565b50565b73607896f3493b9f5fd3ebcc7842377d208a69bcde33148061171a575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6117365760405162461bcd60e51b8152600401610a4790612062565b6011805460ff191660ff92909216919091179055565b60008054821080156106e9575050600090815260046020526040902054600160e01b161590565b6000816000548110156117bb57600081815260046020526040902054600160e01b81166117b9575b806115a157506000190160008181526004602052604090205461179b565b505b604051636f96cda160e11b815260040160405180910390fd5b60006115a182846120f6565b60006115a182846120d4565b6000826117f98584611abd565b14949350505050565b600054816118235760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146118d257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161189a565b50816118f057604051622e076360e81b815260040160405180910390fd5b60005550505050565b6008546001600160a01b031633146111b65760405162461bcd60e51b8152600401610a4790612062565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119aa903390899088908890600401612012565b602060405180830381600087803b1580156119c457600080fd5b505af19250505080156119f4575060408051601f3d908101601f191682019092526119f191810190611ed1565b60015b611a4f573d808015611a22576040519150601f19603f3d011682016040523d82523d6000602084013e611a27565b606091505b508051611a47576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601280546106fe90612158565b604080516080019081905280825b600183039250600a81066030018353600a900480611aa657611aab565b611a89565b50819003601f19909101908152919050565b600081815b8451811015611b0257611aee82868381518110611ae157611ae16121c4565b6020026020010151611b0a565b915080611afa81612193565b915050611ac2565b509392505050565b6000818310611b265760008281526020849052604090206115a1565b60008381526020839052604090206115a1565b828054611b4590612158565b90600052602060002090601f016020900481019282611b675760008555611bad565b82601f10611b805782800160ff19823516178555611bad565b82800160010185558215611bad579182015b82811115611bad578235825591602001919060010190611b92565b50611bb9929150611bbd565b5090565b5b80821115611bb95760008155600101611bbe565b80356001600160a01b0381168114611be957600080fd5b919050565b60008083601f840112611c0057600080fd5b50813567ffffffffffffffff811115611c1857600080fd5b6020830191508360208260051b8501011115611c3357600080fd5b9250929050565b600060208284031215611c4c57600080fd5b6115a182611bd2565b60008060408385031215611c6857600080fd5b611c7183611bd2565b9150611c7f60208401611bd2565b90509250929050565b600080600060608486031215611c9d57600080fd5b611ca684611bd2565b9250611cb460208501611bd2565b9150604084013590509250925092565b60008060008060808587031215611cda57600080fd5b611ce385611bd2565b9350611cf160208601611bd2565b925060408501359150606085013567ffffffffffffffff80821115611d1557600080fd5b818701915087601f830112611d2957600080fd5b813581811115611d3b57611d3b6121da565b604051601f8201601f19908116603f01168101908382118183101715611d6357611d636121da565b816040528281528a6020848701011115611d7c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215611db557600080fd5b611dbe84611bd2565b9250602084013567ffffffffffffffff811115611dda57600080fd5b611de686828701611bee565b9497909650939450505050565b60008060408385031215611e0657600080fd5b611e0f83611bd2565b915060208301358015158114611e2457600080fd5b809150509250929050565b60008060408385031215611e4257600080fd5b611e4b83611bd2565b946020939093013593505050565b60008060208385031215611e6c57600080fd5b823567ffffffffffffffff811115611e8357600080fd5b611e8f85828601611bee565b90969095509350505050565b600060208284031215611ead57600080fd5b5035919050565b600060208284031215611ec657600080fd5b81356115a1816121f0565b600060208284031215611ee357600080fd5b81516115a1816121f0565b60008060208385031215611f0157600080fd5b823567ffffffffffffffff80821115611f1957600080fd5b818501915085601f830112611f2d57600080fd5b813581811115611f3c57600080fd5b866020828501011115611f4e57600080fd5b60209290920196919550909350505050565b600060208284031215611f7257600080fd5b813561ffff811681146115a157600080fd5b600060208284031215611f9657600080fd5b813560ff811681146115a157600080fd5b60008151808452611fbf81602086016020860161212c565b601f01601f19169290920160200192915050565b60008351611fe581846020880161212c565b835190830190611ff981836020880161212c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204590830184611fa7565b9695505050505050565b6020815260006115a16020830184611fa7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156120aa576120aa6121ae565b500190565b600060ff821660ff84168060ff038211156120cc576120cc6121ae565b019392505050565b6000826120f157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612110576121106121ae565b500290565b600082821015612127576121276121ae565b500390565b60005b8381101561214757818101518382015260200161212f565b838111156115105750506000910152565b600181811c9082168061216c57607f821691505b6020821081141561218d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121a7576121a76121ae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116e257600080fdfea264697066735822122078d4e65eac66af31b7b8004b4a3a5d9df520d66a2738fbd1d8edacb657aa356864736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80638dbb7c0611610118578063bc8893b4116100a0578063e222c7f91161006f578063e222c7f9146105df578063e985e9c5146105f4578063f0ef7abc1461063d578063f2fde38b1461065d578063fd46d7871461067d57600080fd5b8063bc8893b41461055c578063c87b56dd1461057b578063d5abeb011461059b578063da140fd1146105c957600080fd5b80639d60f03a116100e75780639d60f03a146104bc578063a201cef6146104dc578063a22cb465146104fc578063b88d4fde1461051c578063b8a078121461053c57600080fd5b80638dbb7c061461044d57806395d89b411461046d578063987222b5146104825780639a3be9e2146104a257600080fd5b806342842e0e1161019b5780636ecd23061161016a5780636ecd2306146103d157806370a08231146103e4578063715018a6146104045780638693da20146104195780638da5cb5b1461042f57600080fd5b806342842e0e1461035e57806355f804b31461037e5780636352211e1461039e57806366a10aa8146103be57600080fd5b806318160ddd116101e257806318160ddd146102c5578063239c70ae146102e857806323b872dd146103145780632a8f4175146103345780633ccfd60b1461034957600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611eb4565b61069d565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ef565b604051610240919061204f565b34801561027757600080fd5b5061028b610286366004611e9b565b610781565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611e2f565b6107c5565b005b3480156102d157600080fd5b50600154600054035b604051908152602001610240565b3480156102f457600080fd5b506011546103029060ff1681565b60405160ff9091168152602001610240565b34801561032057600080fd5b506102c361032f366004611c88565b610865565b34801561034057600080fd5b506102c36109f6565b34801561035557600080fd5b506102c3610a64565b34801561036a57600080fd5b506102c3610379366004611c88565b610ba5565b34801561038a57600080fd5b506102c3610399366004611eee565b610bc5565b3480156103aa57600080fd5b5061028b6103b9366004611e9b565b610c22565b6102c36103cc366004611e59565b610c2d565b6102c36103df366004611f84565b610f41565b3480156103f057600080fd5b506102da6103ff366004611c3a565b611155565b34801561041057600080fd5b506102c36111a4565b34801561042557600080fd5b506102da600a5481565b34801561043b57600080fd5b506008546001600160a01b031661028b565b34801561045957600080fd5b506102c3610468366004611e9b565b6111b8565b34801561047957600080fd5b5061025e611259565b34801561048e57600080fd5b506102c361049d366004611f60565b611268565b3480156104ae57600080fd5b506014546102349060ff1681565b3480156104c857600080fd5b506102c36104d7366004611e9b565b61132b565b3480156104e857600080fd5b506102346104f7366004611da0565b6113cc565b34801561050857600080fd5b506102c3610517366004611df3565b611436565b34801561052857600080fd5b506102c3610537366004611cc4565b6114cc565b34801561054857600080fd5b506102c3610557366004611e9b565b611516565b34801561056857600080fd5b5060145461023490610100900460ff1681565b34801561058757600080fd5b5061025e610596366004611e9b565b611523565b3480156105a757600080fd5b50600c546105b69061ffff1681565b60405161ffff9091168152602001610240565b3480156105d557600080fd5b506102da600b5481565b3480156105eb57600080fd5b506102c36115a8565b34801561060057600080fd5b5061023461060f366004611c55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064957600080fd5b506102c3610658366004611e9b565b611616565b34801561066957600080fd5b506102c3610678366004611c3a565b61166c565b34801561068957600080fd5b506102c3610698366004611f84565b6116e5565b60006301ffc9a760e01b6001600160e01b0319831614806106ce57506380ac58cd60e01b6001600160e01b03198316145b806106e95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106fe90612158565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90612158565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c8261174c565b6107a9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d082610c22565b9050336001600160a01b03821614610809576107ec813361060f565b610809576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061087082611773565b9050836001600160a01b0316816001600160a01b0316146108a35760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108f0576108d3863361060f565b6108f057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661091757604051633a954ecd60e21b815260040160405180910390fd5b801561092257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166109ad57600184016000818152600460205260409020546109ab5760005481146109ab5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b73607896f3493b9f5fd3ebcc7842377d208a69bcde331480610a2b575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b610a505760405162461bcd60e51b8152600401610a4790612062565b60405180910390fd5b6014805460ff19811660ff90911615179055565b73607896f3493b9f5fd3ebcc7842377d208a69bcde331480610a99575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b610ab55760405162461bcd60e51b8152600401610a4790612062565b60026009541415610b085760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a47565b6002600955476000610b266064610b208460056117d4565b906117e0565b60405190915073b68a837e51f1d420c794c5993b17d8ff7984e5b29082156108fc029083906000818181858888f19350505050158015610b6a573d6000803e3d6000fd5b50604051479250339083156108fc029084906000818181858888f19350505050158015610b9b573d6000803e3d6000fd5b5050600160095550565b610bc0838383604051806020016040528060008152506114cc565b505050565b73607896f3493b9f5fd3ebcc7842377d208a69bcde331480610bfa575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b610c165760405162461bcd60e51b8152600401610a4790612062565b610bc060128383611b39565b60006106e982611773565b333214610c6b5760405162461bcd60e51b815260206004820152600c60248201526b6e6f20436f6e74726163742160a01b6044820152606401610a47565b6000610c7a6001546000540390565b9050600d54600e541115610cc95760405162461bcd60e51b815260206004820152601660248201527553706f6f6b20537570706c7920536f6c64204f75742160501b6044820152606401610a47565b60145460ff16610d1b5760405162461bcd60e51b815260206004820152601960248201527f53706f6f6b2053616c65206973204e6f74204163746976652e000000000000006044820152606401610a47565b600c5461ffff16610d2d826001612097565b1115610d7b5760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420576f756c6420457863656564204d6178537570706c7900000000006044820152606401610a47565b600b54610d899060016120f6565b3414610dcc5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e642160701b6044820152606401610a47565b610e42838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b604051602081830303815290604052805190602001206117ec565b610e805760405162461bcd60e51b815260206004820152600f60248201526e4f6e6c792053706f6f6b4c6973742160881b6044820152606401610a47565b336000908152600f6020526040902054600190610ea09060ff16826120af565b60ff161115610ee35760405162461bcd60e51b815260206004820152600f60248201526e416c7265616479204d696e7465642160881b6044820152606401610a47565b6001600e6000828254610ef69190612097565b9091555050336000908152600f60205260408120805460019290610f1e90849060ff166120af565b92506101000a81548160ff021916908360ff160217905550610bc0336001611802565b333214610f7f5760405162461bcd60e51b815260206004820152600c60248201526b6e6f20436f6e74726163742160a01b6044820152606401610a47565b6000610f8e6001546000540390565b601454909150610100900460ff16610fe85760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632053616c65206973204e6f74204163746976652e0000000000006044820152606401610a47565b600d54600c54610ffc919061ffff16612115565b61100960ff841683612097565b111561104e5760405162461bcd60e51b81526020600482015260146024820152734d617820537570706c7920536f6c64204f75742160601b6044820152606401610a47565b6011543360009081526010602052604090205460ff91821691611073918591166120af565b60ff1611156110b65760405162461bcd60e51b815260206004820152600f60248201526e416c7265616479204d696e7465642160881b6044820152606401610a47565b8160ff16600a546110c791906120f6565b341461110a5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e642160701b6044820152606401610a47565b336000908152601060205260408120805484929061112c90849060ff166120af565b92506101000a81548160ff021916908360ff160217905550611151338360ff16611802565b5050565b60006001600160a01b03821661117e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6111ac6118f9565b6111b66000611923565b565b73607896f3493b9f5fd3ebcc7842377d208a69bcde3314806111ed575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6112095760405162461bcd60e51b8152600401610a4790612062565b600a548111156112545760405162461bcd60e51b815260206004820152601660248201527543616e206e6f7420496e63726561736520436f73742160501b6044820152606401610a47565b600a55565b6060600380546106fe90612158565b73607896f3493b9f5fd3ebcc7842377d208a69bcde33148061129d575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6112b95760405162461bcd60e51b8152600401610a4790612062565b600c5461ffff90811690821611156113135760405162461bcd60e51b815260206004820152601c60248201527f43616e206e6f7420496e637265617365204d617820537570706c7921000000006044820152606401610a47565b600c805461ffff191661ffff92909216919091179055565b73607896f3493b9f5fd3ebcc7842377d208a69bcde331480611360575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b61137c5760405162461bcd60e51b8152600401610a4790612062565b600b548111156113c75760405162461bcd60e51b815260206004820152601660248201527543616e206e6f7420496e63726561736520436f73742160501b6044820152606401610a47565b600b55565b600061142e838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013546040516bffffffffffffffffffffffff1960608b901b1660208201529092506034019050610e27565b949350505050565b6001600160a01b0382163314156114605760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114d7848484610865565b6001600160a01b0383163b15611510576114f384848484611975565b611510576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61151e6118f9565b601355565b606061152e8261174c565b61154b57604051630a14c4b560e41b815260040160405180910390fd5b6000611555611a6c565b905080516000141561157657604051806020016040528060008152506115a1565b8061158084611a7b565b604051602001611591929190611fd3565b6040516020818303038152906040525b9392505050565b73607896f3493b9f5fd3ebcc7842377d208a69bcde3314806115dd575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6115f95760405162461bcd60e51b8152600401610a4790612062565b6014805461ff001981166101009182900460ff1615909102179055565b73607896f3493b9f5fd3ebcc7842377d208a69bcde33148061164b575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6116675760405162461bcd60e51b8152600401610a4790612062565b600d55565b6116746118f9565b6001600160a01b0381166116d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a47565b6116e281611923565b50565b73607896f3493b9f5fd3ebcc7842377d208a69bcde33148061171a575073b68a837e51f1d420c794c5993b17d8ff7984e5b233145b6117365760405162461bcd60e51b8152600401610a4790612062565b6011805460ff191660ff92909216919091179055565b60008054821080156106e9575050600090815260046020526040902054600160e01b161590565b6000816000548110156117bb57600081815260046020526040902054600160e01b81166117b9575b806115a157506000190160008181526004602052604090205461179b565b505b604051636f96cda160e11b815260040160405180910390fd5b60006115a182846120f6565b60006115a182846120d4565b6000826117f98584611abd565b14949350505050565b600054816118235760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146118d257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161189a565b50816118f057604051622e076360e81b815260040160405180910390fd5b60005550505050565b6008546001600160a01b031633146111b65760405162461bcd60e51b8152600401610a4790612062565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119aa903390899088908890600401612012565b602060405180830381600087803b1580156119c457600080fd5b505af19250505080156119f4575060408051601f3d908101601f191682019092526119f191810190611ed1565b60015b611a4f573d808015611a22576040519150601f19603f3d011682016040523d82523d6000602084013e611a27565b606091505b508051611a47576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601280546106fe90612158565b604080516080019081905280825b600183039250600a81066030018353600a900480611aa657611aab565b611a89565b50819003601f19909101908152919050565b600081815b8451811015611b0257611aee82868381518110611ae157611ae16121c4565b6020026020010151611b0a565b915080611afa81612193565b915050611ac2565b509392505050565b6000818310611b265760008281526020849052604090206115a1565b60008381526020839052604090206115a1565b828054611b4590612158565b90600052602060002090601f016020900481019282611b675760008555611bad565b82601f10611b805782800160ff19823516178555611bad565b82800160010185558215611bad579182015b82811115611bad578235825591602001919060010190611b92565b50611bb9929150611bbd565b5090565b5b80821115611bb95760008155600101611bbe565b80356001600160a01b0381168114611be957600080fd5b919050565b60008083601f840112611c0057600080fd5b50813567ffffffffffffffff811115611c1857600080fd5b6020830191508360208260051b8501011115611c3357600080fd5b9250929050565b600060208284031215611c4c57600080fd5b6115a182611bd2565b60008060408385031215611c6857600080fd5b611c7183611bd2565b9150611c7f60208401611bd2565b90509250929050565b600080600060608486031215611c9d57600080fd5b611ca684611bd2565b9250611cb460208501611bd2565b9150604084013590509250925092565b60008060008060808587031215611cda57600080fd5b611ce385611bd2565b9350611cf160208601611bd2565b925060408501359150606085013567ffffffffffffffff80821115611d1557600080fd5b818701915087601f830112611d2957600080fd5b813581811115611d3b57611d3b6121da565b604051601f8201601f19908116603f01168101908382118183101715611d6357611d636121da565b816040528281528a6020848701011115611d7c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215611db557600080fd5b611dbe84611bd2565b9250602084013567ffffffffffffffff811115611dda57600080fd5b611de686828701611bee565b9497909650939450505050565b60008060408385031215611e0657600080fd5b611e0f83611bd2565b915060208301358015158114611e2457600080fd5b809150509250929050565b60008060408385031215611e4257600080fd5b611e4b83611bd2565b946020939093013593505050565b60008060208385031215611e6c57600080fd5b823567ffffffffffffffff811115611e8357600080fd5b611e8f85828601611bee565b90969095509350505050565b600060208284031215611ead57600080fd5b5035919050565b600060208284031215611ec657600080fd5b81356115a1816121f0565b600060208284031215611ee357600080fd5b81516115a1816121f0565b60008060208385031215611f0157600080fd5b823567ffffffffffffffff80821115611f1957600080fd5b818501915085601f830112611f2d57600080fd5b813581811115611f3c57600080fd5b866020828501011115611f4e57600080fd5b60209290920196919550909350505050565b600060208284031215611f7257600080fd5b813561ffff811681146115a157600080fd5b600060208284031215611f9657600080fd5b813560ff811681146115a157600080fd5b60008151808452611fbf81602086016020860161212c565b601f01601f19169290920160200192915050565b60008351611fe581846020880161212c565b835190830190611ff981836020880161212c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204590830184611fa7565b9695505050505050565b6020815260006115a16020830184611fa7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156120aa576120aa6121ae565b500190565b600060ff821660ff84168060ff038211156120cc576120cc6121ae565b019392505050565b6000826120f157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612110576121106121ae565b500290565b600082821015612127576121276121ae565b500390565b60005b8381101561214757818101518382015260200161212f565b838111156115105750506000910152565b600181811c9082168061216c57607f821691505b6020821081141561218d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121a7576121a76121ae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116e257600080fdfea264697066735822122078d4e65eac66af31b7b8004b4a3a5d9df520d66a2738fbd1d8edacb657aa356864736f6c63430008070033
Deployed Bytecode Sourcemap
77568:4547:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42141:639;;;;;;;;;;-1:-1:-1;42141:639:0;;;;;:::i;:::-;;:::i;:::-;;;8091:14:1;;8084:22;8066:41;;8054:2;8039:18;42141:639:0;;;;;;;;43043:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49535:218::-;;;;;;;;;;-1:-1:-1;49535:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7389:32:1;;;7371:51;;7359:2;7344:18;49535:218:0;7225:203:1;48976:400:0;;;;;;;;;;-1:-1:-1;48976:400:0;;;;;:::i;:::-;;:::i;:::-;;38794:323;;;;;;;;;;-1:-1:-1;39068:12:0;;38855:7;39052:13;:28;38794:323;;;13658:25:1;;;13646:2;13631:18;38794:323:0;13512:177:1;78036:30:0;;;;;;;;;;-1:-1:-1;78036:30:0;;;;;;;;;;;13866:4:1;13854:17;;;13836:36;;13824:2;13809:18;78036:30:0;13694:184:1;53242:2817:0;;;;;;;;;;-1:-1:-1;53242:2817:0;;;;;:::i;:::-;;:::i;81681:99::-;;;;;;;;;;;;;:::i;81788:324::-;;;;;;;;;;;;;:::i;56155:185::-;;;;;;;;;;-1:-1:-1;56155:185:0;;;;;:::i;:::-;;:::i;81457:106::-;;;;;;;;;;-1:-1:-1;81457:106:0;;;;;:::i;:::-;;:::i;44445:152::-;;;;;;;;;;-1:-1:-1;44445:152:0;;;;;:::i;:::-;;:::i;79752:878::-;;;;;;:::i;:::-;;:::i;80638:559::-;;;;;;:::i;:::-;;:::i;39978:233::-;;;;;;;;;;-1:-1:-1;39978:233:0;;;;;:::i;:::-;;:::i;76644:103::-;;;;;;;;;;;;;:::i;77710:39::-;;;;;;;;;;;;;;;;75996:87;;;;;;;;;;-1:-1:-1;76069:6:0;;-1:-1:-1;;;;;76069:6:0;75996:87;;79351:193;;;;;;;;;;-1:-1:-1;79351:193:0;;;;;:::i;:::-;;:::i;43219:104::-;;;;;;;;;;;;;:::i;79143:200::-;;;;;;;;;;-1:-1:-1;79143:200:0;;;;;:::i;:::-;;:::i;78164:27::-;;;;;;;;;;-1:-1:-1;78164:27:0;;;;;;;;79552:192;;;;;;;;;;-1:-1:-1;79552:192:0;;;;;:::i;:::-;;:::i;78688:315::-;;;;;;;;;;-1:-1:-1;78688:315:0;;;;;:::i;:::-;;:::i;50093:308::-;;;;;;;;;;-1:-1:-1;50093:308:0;;;;;:::i;:::-;;:::i;56938:399::-;;;;;;;;;;-1:-1:-1;56938:399:0;;;;;:::i;:::-;;:::i;78539:141::-;;;;;;;;;;-1:-1:-1;78539:141:0;;;;;:::i;:::-;;:::i;78198:28::-;;;;;;;;;;-1:-1:-1;78198:28:0;;;;;;;;;;;43429:327;;;;;;;;;;-1:-1:-1;43429:327:0;;;;;:::i;:::-;;:::i;77802:30::-;;;;;;;;;;-1:-1:-1;77802:30:0;;;;;;;;;;;13493:6:1;13481:19;;;13463:38;;13451:2;13436:18;77802:30:0;13319:188:1;77756:39:0;;;;;;;;;;;;;;;;81571:102;;;;;;;;;;;;;:::i;50558:164::-;;;;;;;;;;-1:-1:-1;50558:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;50679:25:0;;;50655:4;50679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50558:164;79015:120;;;;;;;;;;-1:-1:-1;79015:120:0;;;;;:::i;:::-;;:::i;76902:201::-;;;;;;;;;;-1:-1:-1;76902:201:0;;;;;:::i;:::-;;:::i;81211:116::-;;;;;;;;;;-1:-1:-1;81211:116:0;;;;;:::i;:::-;;:::i;42141:639::-;42226:4;-1:-1:-1;;;;;;;;;42550:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;42627:25:0;;;42550:102;:179;;;-1:-1:-1;;;;;;;;;;42704:25:0;;;42550:179;42530:199;42141:639;-1:-1:-1;;42141:639:0:o;43043:100::-;43097:13;43130:5;43123:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43043:100;:::o;49535:218::-;49611:7;49636:16;49644:7;49636;:16::i;:::-;49631:64;;49661:34;;-1:-1:-1;;;49661:34:0;;;;;;;;;;;49631:64;-1:-1:-1;49715:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;49715:30:0;;49535:218::o;48976:400::-;49057:13;49073:16;49081:7;49073;:16::i;:::-;49057:32;-1:-1:-1;73055:10:0;-1:-1:-1;;;;;49106:28:0;;;49102:175;;49154:44;49171:5;73055:10;50558:164;:::i;49154:44::-;49149:128;;49226:35;;-1:-1:-1;;;49226:35:0;;;;;;;;;;;49149:128;49289:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;49289:35:0;-1:-1:-1;;;;;49289:35:0;;;;;;;;;49340:28;;49289:24;;49340:28;;;;;;;49046:330;48976:400;;:::o;53242:2817::-;53376:27;53406;53425:7;53406:18;:27::i;:::-;53376:57;;53491:4;-1:-1:-1;;;;;53450:45:0;53466:19;-1:-1:-1;;;;;53450:45:0;;53446:86;;53504:28;;-1:-1:-1;;;53504:28:0;;;;;;;;;;;53446:86;53546:27;52356:24;;;:15;:24;;;;;52578:26;;73055:10;51981:30;;;-1:-1:-1;;;;;51674:28:0;;51959:20;;;51956:56;53732:180;;53825:43;53842:4;73055:10;50558:164;:::i;53825:43::-;53820:92;;53877:35;;-1:-1:-1;;;53877:35:0;;;;;;;;;;;53820:92;-1:-1:-1;;;;;53929:16:0;;53925:52;;53954:23;;-1:-1:-1;;;53954:23:0;;;;;;;;;;;53925:52;54126:15;54123:160;;;54266:1;54245:19;54238:30;54123:160;-1:-1:-1;;;;;54663:24:0;;;;;;;:18;:24;;;;;;54661:26;;-1:-1:-1;;54661:26:0;;;54732:22;;;;;;;;;54730:24;;-1:-1:-1;54730:24:0;;;47834:11;47809:23;47805:41;47792:63;-1:-1:-1;;;47792:63:0;55025:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;55320:47:0;;55316:627;;55425:1;55415:11;;55393:19;55548:30;;;:17;:30;;;;;;55544:384;;55686:13;;55671:11;:28;55667:242;;55833:30;;;;:17;:30;;;;;:52;;;55667:242;55374:569;55316:627;55990:7;55986:2;-1:-1:-1;;;;;55971:27:0;55980:4;-1:-1:-1;;;;;55971:27:0;;;;;;;;;;;53365:2694;;;53242:2817;;;:::o;81681:99::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;;;;;;;;;81757:15:::1;::::0;;-1:-1:-1;;81738:34:0;::::1;81757:15;::::0;;::::1;81756:16;81738:34;::::0;;81681:99::o;81788:324::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;10682:1:::1;11280:7;;:19;;11272:63;;;::::0;-1:-1:-1;;;11272:63:0;;12804:2:1;11272:63:0::1;::::0;::::1;12786:21:1::0;12843:2;12823:18;;;12816:30;12882:33;12862:18;;;12855:61;12933:18;;11272:63:0::1;12602:355:1::0;11272:63:0::1;10682:1;11413:7;:18:::0;81869:21:::2;81851:15;81915:23;81934:3;81915:14;81869:21:::0;81927:1:::2;81915:11;:14::i;:::-;:18:::0;::::2;:23::i;:::-;81949:65;::::0;81901:37;;-1:-1:-1;81957:42:0::2;::::0;81949:65;::::2;;;::::0;81901:37;;81949:65:::2;::::0;;;81901:37;81957:42;81949:65;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;82067:37:0::2;::::0;82035:21:::2;::::0;-1:-1:-1;82075:10:0::2;::::0;82067:37;::::2;;;::::0;82035:21;;82067:37:::2;::::0;;;82035:21;82075:10;82067:37;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;10638:1:0::1;11592:7;:22:::0;-1:-1:-1;81788:324:0:o;56155:185::-;56293:39;56310:4;56316:2;56320:7;56293:39;;;;;;;;;;;;:16;:39::i;:::-;56155:185;;;:::o;81457:106::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;81532:23:::1;:13;81548:7:::0;;81532:23:::1;:::i;44445:152::-:0;44517:7;44560:27;44579:7;44560:18;:27::i;79752:878::-;78463:10;78477:9;78463:23;78459:52;;78488:23;;-1:-1:-1;;;78488:23:0;;9251:2:1;78488:23:0;;;9233:21:1;9290:2;9270:18;;;9263:30;-1:-1:-1;;;9309:18:1;;;9302:42;9361:18;;78488:23:0;9049:336:1;78459:52:0;79878:10:::1;79891:13;39068:12:::0;;38855:7;39052:13;:28;;38794:323;79891:13:::1;79878:26;;79937:14;;79918:16;;:33;79915:71;;;79953:33;::::0;-1:-1:-1;;;79953:33:0;;8900:2:1;79953:33:0::1;::::0;::::1;8882:21:1::0;8939:2;8919:18;;;8912:30;-1:-1:-1;;;8958:18:1;;;8951:52;9020:18;;79953:33:0::1;8698:346:1::0;79915:71:0::1;80002:15;::::0;::::1;;79997:58;;80019:36;::::0;-1:-1:-1;;;80019:36:0;;12450:2:1;80019:36:0::1;::::0;::::1;12432:21:1::0;12489:2;12469:18;;;12462:30;12528:27;12508:18;;;12501:55;12573:18;;80019:36:0::1;12248:349:1::0;79997:58:0::1;80079:9;::::0;::::1;;80070:6;:2:::0;80079:9;80070:6:::1;:::i;:::-;:18;80066:62;;;80090:38;::::0;-1:-1:-1;;;80090:38:0;;8544:2:1;80090:38:0::1;::::0;::::1;8526:21:1::0;8583:2;8563:18;;;8556:30;8622:29;8602:18;;;8595:57;8669:18;;80090:38:0::1;8342:351:1::0;80066:62:0::1;80156:10;::::0;:14:::1;::::0;80169:1:::1;80156:14;:::i;:::-;80143:9;:27;80139:62;;80172:29;::::0;-1:-1:-1;;;80172:29:0;;10343:2:1;80172:29:0::1;::::0;::::1;10325:21:1::0;10382:2;10362:18;;;10355:30;-1:-1:-1;;;10401:18:1;;;10394:48;10459:18;;80172:29:0::1;10141:342:1::0;80139:62:0::1;80231:154;80268:12;;80231:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;80299:13:0::1;::::0;80341:28:::1;::::0;-1:-1:-1;;80358:10:0::1;6498:2:1::0;6494:15;6490:53;80341:28:0::1;::::0;::::1;6478:66:1::0;80299:13:0;;-1:-1:-1;6560:12:1;;;-1:-1:-1;80341:28:0::1;;;;;;;;;;;;;80331:39;;;;;;80231:18;:154::i;:::-;80212:211;;80397:26;::::0;-1:-1:-1;;;80397:26:0;;11045:2:1;80397:26:0::1;::::0;::::1;11027:21:1::0;11084:2;11064:18;;;11057:30;-1:-1:-1;;;11103:18:1;;;11096:45;11158:18;;80397:26:0::1;10843:339:1::0;80212:211:0::1;80450:10;80438:23;::::0;;;:11:::1;:23;::::0;;;;;80468:1:::1;::::0;80438:27:::1;::::0;:23:::1;;80468:1:::0;80438:27:::1;:::i;:::-;:31;;;80434:76;;;80484:26;::::0;-1:-1:-1;;;80484:26:0;;9999:2:1;80484:26:0::1;::::0;::::1;9981:21:1::0;10038:2;10018:18;;;10011:30;-1:-1:-1;;;10057:18:1;;;10050:45;10112:18;;80484:26:0::1;9797:339:1::0;80434:76:0::1;80543:1;80523:16;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;80567:10:0::1;80555:23;::::0;;;:11:::1;:23;::::0;;;;:28;;80582:1:::1;::::0;80555:23;:28:::1;::::0;80582:1;;80555:28:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;80594:20;80600:10;80612:1;80594:5;:20::i;80638:559::-:0;78463:10;78477:9;78463:23;78459:52;;78488:23;;-1:-1:-1;;;78488:23:0;;9251:2:1;78488:23:0;;;9233:21:1;9290:2;9270:18;;;9263:30;-1:-1:-1;;;9309:18:1;;;9302:42;9361:18;;78488:23:0;9049:336:1;78459:52:0;80708:10:::1;80721:13;39068:12:::0;;38855:7;39052:13;:28;;38794:323;80721:13:::1;80754:16;::::0;80708:26;;-1:-1:-1;80754:16:0::1;::::0;::::1;;;80749:60;;80772:37;::::0;-1:-1:-1;;;80772:37:0;;10690:2:1;80772:37:0::1;::::0;::::1;10672:21:1::0;10729:2;10709:18;;;10702:30;10768:28;10748:18;;;10741:56;10814:18;;80772:37:0::1;10488:350:1::0;80749:60:0::1;80855:14;::::0;80843:9:::1;::::0;:26:::1;::::0;80855:14;80843:9:::1;;:26;:::i;:::-;80828:12;;::::0;::::1;:2:::0;:12:::1;:::i;:::-;:41;80824:78;;;80871:31;::::0;-1:-1:-1;;;80871:31:0;;11750:2:1;80871:31:0::1;::::0;::::1;11732:21:1::0;11789:2;11769:18;;;11762:30;-1:-1:-1;;;11808:18:1;;;11801:50;11868:18;;80871:31:0::1;11548:344:1::0;80824:78:0::1;80953:13;::::0;80929:10:::1;80953:13;80921:19:::0;;;:7:::1;:19;::::0;;;;;80953:13:::1;::::0;;::::1;::::0;80921:29:::1;::::0;80943:7;;80921:19:::1;:29;:::i;:::-;:45;;;80917:94;;;80985:26;::::0;-1:-1:-1;;;80985:26:0;;9999:2:1;80985:26:0::1;::::0;::::1;9981:21:1::0;10038:2;10018:18;;;10011:30;-1:-1:-1;;;10057:18:1;;;10050:45;10112:18;;80985:26:0::1;9797:339:1::0;80917:94:0::1;81056:7;81043:20;;:10;;:20;;;;:::i;:::-;81030:9;:33;81026:68;;81065:29;::::0;-1:-1:-1;;;81065:29:0;;10343:2:1;81065:29:0::1;::::0;::::1;10325:21:1::0;10382:2;10362:18;;;10355:30;-1:-1:-1;;;10401:18:1;;;10394:48;10459:18;;81065:29:0::1;10141:342:1::0;81026:68:0::1;81119:10;81111:19;::::0;;;:7:::1;:19;::::0;;;;:30;;81134:7;;81111:19;:30:::1;::::0;81134:7;;81111:30:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;81159:26;81165:10;81177:7;81159:26;;:5;:26::i;:::-;80697:500;80638:559:::0;:::o;39978:233::-;40050:7;-1:-1:-1;;;;;40074:19:0;;40070:60;;40102:28;;-1:-1:-1;;;40102:28:0;;;;;;;;;;;40070:60;-1:-1:-1;;;;;;40148:25:0;;;;;:18;:25;;;;;;34137:13;40148:55;;39978:233::o;76644:103::-;75882:13;:11;:13::i;:::-;76709:30:::1;76736:1;76709:18;:30::i;:::-;76644:103::o:0;79351:193::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;79453:10:::1;;79436:14;:27;79432:66;;;79465:33;::::0;-1:-1:-1;;;79465:33:0;;12099:2:1;79465:33:0::1;::::0;::::1;12081:21:1::0;12138:2;12118:18;;;12111:30;-1:-1:-1;;;12157:18:1;;;12150:52;12219:18;;79465:33:0::1;11897:346:1::0;79432:66:0::1;79509:10;:27:::0;79351:193::o;43219:104::-;43275:13;43308:7;43301:14;;;;;:::i;79143:200::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;79245:9:::1;::::0;::::1;::::0;;::::1;79225:29:::0;;::::1;;79221:74;;;79256:39;::::0;-1:-1:-1;;;79256:39:0;;13164:2:1;79256:39:0::1;::::0;::::1;13146:21:1::0;13203:2;13183:18;;;13176:30;13242;13222:18;;;13215:58;13290:18;;79256:39:0::1;12962:352:1::0;79221:74:0::1;79306:9;:29:::0;;-1:-1:-1;;79306:29:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;79143:200::o;79552:192::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;79653:10:::1;;79636:14;:27;79632:66;;;79665:33;::::0;-1:-1:-1;;;79665:33:0;;12099:2:1;79665:33:0::1;::::0;::::1;12081:21:1::0;12138:2;12118:18;;;12111:30;-1:-1:-1;;;12157:18:1;;;12150:52;12219:18;;79665:33:0::1;11897:346:1::0;79632:66:0::1;79709:10;:27:::0;79552:192::o;78688:315::-;78804:4;78846:149;78883:12;;78846:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;78914:13:0;;78956:23;;-1:-1:-1;;6498:2:1;6494:15;;;6490:53;78956:23:0;;;6478:66:1;78914:13:0;;-1:-1:-1;6560:12:1;;;-1:-1:-1;78956:23:0;6349:229:1;78846:149:0;78826:169;78688:315;-1:-1:-1;;;;78688:315:0:o;50093:308::-;-1:-1:-1;;;;;50192:31:0;;73055:10;50192:31;50188:61;;;50232:17;;-1:-1:-1;;;50232:17:0;;;;;;;;;;;50188:61;73055:10;50262:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;50262:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;50262:60:0;;;;;;;;;;50338:55;;8066:41:1;;;50262:49:0;;73055:10;50338:55;;8039:18:1;50338:55:0;;;;;;;50093:308;;:::o;56938:399::-;57105:31;57118:4;57124:2;57128:7;57105:12;:31::i;:::-;-1:-1:-1;;;;;57151:14:0;;;:19;57147:183;;57190:56;57221:4;57227:2;57231:7;57240:5;57190:30;:56::i;:::-;57185:145;;57274:40;;-1:-1:-1;;;57274:40:0;;;;;;;;;;;57185:145;56938:399;;;;:::o;78539:141::-;75882:13;:11;:13::i;:::-;78642::::1;:30:::0;78539:141::o;43429:327::-;43502:13;43533:16;43541:7;43533;:16::i;:::-;43528:59;;43558:29;;-1:-1:-1;;;43558:29:0;;;;;;;;;;;43528:59;43600:21;43624:10;:8;:10::i;:::-;43600:34;;43658:7;43652:21;43677:1;43652:26;;:96;;;;;;;;;;;;;;;;;43705:7;43714:18;43724:7;43714:9;:18::i;:::-;43688:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43652:96;43645:103;43429:327;-1:-1:-1;;;43429:327:0:o;81571:102::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;81649:16:::1;::::0;;-1:-1:-1;;81629:36:0;::::1;81649:16;::::0;;;::::1;;;81648:17;81629:36:::0;;::::1;;::::0;;81571:102::o;79015:120::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;79095:14:::1;:32:::0;79015:120::o;76902:201::-;75882:13;:11;:13::i;:::-;-1:-1:-1;;;;;76991:22:0;::::1;76983:73;;;::::0;-1:-1:-1;;;76983:73:0;;9592:2:1;76983:73:0::1;::::0;::::1;9574:21:1::0;9631:2;9611:18;;;9604:30;9670:34;9650:18;;;9643:62;-1:-1:-1;;;9721:18:1;;;9714:36;9767:19;;76983:73:0::1;9390:402:1::0;76983:73:0::1;77067:28;77086:8;77067:18;:28::i;:::-;76902:201:::0;:::o;81211:116::-;63115:42;63101:10;:56;;:116;;-1:-1:-1;63175:42:0;63161:10;:56;63101:116;63093:162;;;;-1:-1:-1;;;63093:162:0;;;;;;;:::i;:::-;81289:13:::1;:30:::0;;-1:-1:-1;;81289:30:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;81211:116::o;50980:282::-;51045:4;51135:13;;51125:7;:23;51082:153;;;;-1:-1:-1;;51186:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;51186:44:0;:49;;50980:282::o;45600:1275::-;45667:7;45702;45804:13;;45797:4;:20;45793:1015;;;45842:14;45859:23;;;:17;:23;;;;;;-1:-1:-1;;;45948:24:0;;45944:845;;46613:113;46620:11;46613:113;;-1:-1:-1;;;46691:6:0;46673:25;;;;:17;:25;;;;;;46613:113;;45944:845;45819:989;45793:1015;46836:31;;-1:-1:-1;;;46836:31:0;;;;;;;;;;;5443:98;5501:7;5528:5;5532:1;5528;:5;:::i;5842:98::-;5900:7;5927:5;5931:1;5927;:5;:::i;15345:190::-;15470:4;15523;15494:25;15507:5;15514:4;15494:12;:25::i;:::-;:33;;15345:190;-1:-1:-1;;;;15345:190:0:o;60599:2454::-;60672:20;60695:13;60723;60719:44;;60745:18;;-1:-1:-1;;;60745:18:0;;;;;;;;;;;60719:44;-1:-1:-1;;;;;61251:22:0;;;;;;:18;:22;;;;34275:2;61251:22;;;:71;;61289:32;61277:45;;61251:71;;;61565:31;;;:17;:31;;;;;-1:-1:-1;48265:15:0;;48239:24;48235:46;47834:11;47809:23;47805:41;47802:52;47792:63;;61565:173;;61800:23;;;;61565:31;;61251:22;;62299:25;61251:22;;62152:335;62567:1;62553:12;62549:20;62507:346;62608:3;62599:7;62596:16;62507:346;;62826:7;62816:8;62813:1;62786:25;62783:1;62780;62775:59;62661:1;62648:15;62507:346;;;-1:-1:-1;62886:13:0;62882:45;;62908:19;;-1:-1:-1;;;62908:19:0;;;;;;;;;;;62882:45;62944:13;:19;-1:-1:-1;56155:185:0;;;:::o;76161:132::-;76069:6;;-1:-1:-1;;;;;76069:6:0;73055:10;76225:23;76217:68;;;;-1:-1:-1;;;76217:68:0;;;;;;;:::i;77263:191::-;77356:6;;;-1:-1:-1;;;;;77373:17:0;;;-1:-1:-1;;;;;;77373:17:0;;;;;;;77406:40;;77356:6;;;77373:17;77356:6;;77406:40;;77337:16;;77406:40;77326:128;77263:191;:::o;59421:716::-;59605:88;;-1:-1:-1;;;59605:88:0;;59584:4;;-1:-1:-1;;;;;59605:45:0;;;;;:88;;73055:10;;59672:4;;59678:7;;59687:5;;59605:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59605:88:0;;;;;;;;-1:-1:-1;;59605:88:0;;;;;;;;;;;;:::i;:::-;;;59601:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59888:13:0;;59884:235;;59934:40;;-1:-1:-1;;;59934:40:0;;;;;;;;;;;59884:235;60077:6;60071:13;60062:6;60058:2;60054:15;60047:38;59601:529;-1:-1:-1;;;;;;59764:64:0;-1:-1:-1;;;59764:64:0;;-1:-1:-1;59421:716:0;;;;;;:::o;81335:114::-;81395:13;81428;81421:20;;;;;:::i;73175:1581::-;73658:4;73652:11;;73665:4;73648:22;73744:17;;;;73648:22;74102:5;74084:428;74150:1;74145:3;74141:11;74134:18;;74321:2;74315:4;74311:13;74307:2;74303:22;74298:3;74290:36;74415:2;74405:13;;;74472:25;;74490:5;;74472:25;74084:428;;;-1:-1:-1;74542:13:0;;;-1:-1:-1;;74657:14:0;;;74719:19;;;74657:14;73175:1581;-1:-1:-1;73175:1581:0:o;16212:296::-;16295:7;16338:4;16295:7;16353:118;16377:5;:12;16373:1;:16;16353:118;;;16426:33;16436:12;16450:5;16456:1;16450:8;;;;;;;;:::i;:::-;;;;;;;16426:9;:33::i;:::-;16411:48;-1:-1:-1;16391:3:0;;;;:::i;:::-;;;;16353:118;;;-1:-1:-1;16488:12:0;16212:296;-1:-1:-1;;;16212:296:0:o;22419:149::-;22482:7;22513:1;22509;:5;:51;;22644:13;22738:15;;;22774:4;22767:15;;;22821:4;22805:21;;22509:51;;;22644:13;22738:15;;;22774:4;22767:15;;;22821:4;22805:21;;22517:20;22576:268;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:186::-;623:6;676:2;664:9;655:7;651:23;647:32;644:52;;;692:1;689;682:12;644:52;715:29;734:9;715:29;:::i;755:260::-;823:6;831;884:2;872:9;863:7;859:23;855:32;852:52;;;900:1;897;890:12;852:52;923:29;942:9;923:29;:::i;:::-;913:39;;971:38;1005:2;994:9;990:18;971:38;:::i;:::-;961:48;;755:260;;;;;:::o;1020:328::-;1097:6;1105;1113;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;:::-;1195:39;;1253:38;1287:2;1276:9;1272:18;1253:38;:::i;:::-;1243:48;;1338:2;1327:9;1323:18;1310:32;1300:42;;1020:328;;;;;:::o;1353:1138::-;1448:6;1456;1464;1472;1525:3;1513:9;1504:7;1500:23;1496:33;1493:53;;;1542:1;1539;1532:12;1493:53;1565:29;1584:9;1565:29;:::i;:::-;1555:39;;1613:38;1647:2;1636:9;1632:18;1613:38;:::i;:::-;1603:48;;1698:2;1687:9;1683:18;1670:32;1660:42;;1753:2;1742:9;1738:18;1725:32;1776:18;1817:2;1809:6;1806:14;1803:34;;;1833:1;1830;1823:12;1803:34;1871:6;1860:9;1856:22;1846:32;;1916:7;1909:4;1905:2;1901:13;1897:27;1887:55;;1938:1;1935;1928:12;1887:55;1974:2;1961:16;1996:2;1992;1989:10;1986:36;;;2002:18;;:::i;:::-;2077:2;2071:9;2045:2;2131:13;;-1:-1:-1;;2127:22:1;;;2151:2;2123:31;2119:40;2107:53;;;2175:18;;;2195:22;;;2172:46;2169:72;;;2221:18;;:::i;:::-;2261:10;2257:2;2250:22;2296:2;2288:6;2281:18;2336:7;2331:2;2326;2322;2318:11;2314:20;2311:33;2308:53;;;2357:1;2354;2347:12;2308:53;2413:2;2408;2404;2400:11;2395:2;2387:6;2383:15;2370:46;2458:1;2453:2;2448;2440:6;2436:15;2432:24;2425:35;2479:6;2469:16;;;;;;;1353:1138;;;;;;;:::o;2496:511::-;2591:6;2599;2607;2660:2;2648:9;2639:7;2635:23;2631:32;2628:52;;;2676:1;2673;2666:12;2628:52;2699:29;2718:9;2699:29;:::i;:::-;2689:39;;2779:2;2768:9;2764:18;2751:32;2806:18;2798:6;2795:30;2792:50;;;2838:1;2835;2828:12;2792:50;2877:70;2939:7;2930:6;2919:9;2915:22;2877:70;:::i;:::-;2496:511;;2966:8;;-1:-1:-1;2851:96:1;;-1:-1:-1;;;;2496:511:1:o;3012:347::-;3077:6;3085;3138:2;3126:9;3117:7;3113:23;3109:32;3106:52;;;3154:1;3151;3144:12;3106:52;3177:29;3196:9;3177:29;:::i;:::-;3167:39;;3256:2;3245:9;3241:18;3228:32;3303:5;3296:13;3289:21;3282:5;3279:32;3269:60;;3325:1;3322;3315:12;3269:60;3348:5;3338:15;;;3012:347;;;;;:::o;3364:254::-;3432:6;3440;3493:2;3481:9;3472:7;3468:23;3464:32;3461:52;;;3509:1;3506;3499:12;3461:52;3532:29;3551:9;3532:29;:::i;:::-;3522:39;3608:2;3593:18;;;;3580:32;;-1:-1:-1;;;3364:254:1:o;3623:437::-;3709:6;3717;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3930:70;3992:7;3983:6;3972:9;3968:22;3930:70;:::i;:::-;4019:8;;3904:96;;-1:-1:-1;3623:437:1;-1:-1:-1;;;;3623:437:1:o;4065:180::-;4124:6;4177:2;4165:9;4156:7;4152:23;4148:32;4145:52;;;4193:1;4190;4183:12;4145:52;-1:-1:-1;4216:23:1;;4065:180;-1:-1:-1;4065:180:1:o;4250:245::-;4308:6;4361:2;4349:9;4340:7;4336:23;4332:32;4329:52;;;4377:1;4374;4367:12;4329:52;4416:9;4403:23;4435:30;4459:5;4435:30;:::i;4500:249::-;4569:6;4622:2;4610:9;4601:7;4597:23;4593:32;4590:52;;;4638:1;4635;4628:12;4590:52;4670:9;4664:16;4689:30;4713:5;4689:30;:::i;4754:592::-;4825:6;4833;4886:2;4874:9;4865:7;4861:23;4857:32;4854:52;;;4902:1;4899;4892:12;4854:52;4942:9;4929:23;4971:18;5012:2;5004:6;5001:14;4998:34;;;5028:1;5025;5018:12;4998:34;5066:6;5055:9;5051:22;5041:32;;5111:7;5104:4;5100:2;5096:13;5092:27;5082:55;;5133:1;5130;5123:12;5082:55;5173:2;5160:16;5199:2;5191:6;5188:14;5185:34;;;5215:1;5212;5205:12;5185:34;5260:7;5255:2;5246:6;5242:2;5238:15;5234:24;5231:37;5228:57;;;5281:1;5278;5271:12;5228:57;5312:2;5304:11;;;;;5334:6;;-1:-1:-1;4754:592:1;;-1:-1:-1;;;;4754:592:1:o;5351:272::-;5409:6;5462:2;5450:9;5441:7;5437:23;5433:32;5430:52;;;5478:1;5475;5468:12;5430:52;5517:9;5504:23;5567:6;5560:5;5556:18;5549:5;5546:29;5536:57;;5589:1;5586;5579:12;5813:269;5870:6;5923:2;5911:9;5902:7;5898:23;5894:32;5891:52;;;5939:1;5936;5929:12;5891:52;5978:9;5965:23;6028:4;6021:5;6017:16;6010:5;6007:27;5997:55;;6048:1;6045;6038:12;6087:257;6128:3;6166:5;6160:12;6193:6;6188:3;6181:19;6209:63;6265:6;6258:4;6253:3;6249:14;6242:4;6235:5;6231:16;6209:63;:::i;:::-;6326:2;6305:15;-1:-1:-1;;6301:29:1;6292:39;;;;6333:4;6288:50;;6087:257;-1:-1:-1;;6087:257:1:o;6583:637::-;6863:3;6901:6;6895:13;6917:53;6963:6;6958:3;6951:4;6943:6;6939:17;6917:53;:::i;:::-;7033:13;;6992:16;;;;7055:57;7033:13;6992:16;7089:4;7077:17;;7055:57;:::i;:::-;-1:-1:-1;;;7134:20:1;;7163:22;;;7212:1;7201:13;;6583:637;-1:-1:-1;;;;6583:637:1:o;7433:488::-;-1:-1:-1;;;;;7702:15:1;;;7684:34;;7754:15;;7749:2;7734:18;;7727:43;7801:2;7786:18;;7779:34;;;7849:3;7844:2;7829:18;;7822:31;;;7627:4;;7870:45;;7895:19;;7887:6;7870:45;:::i;:::-;7862:53;7433:488;-1:-1:-1;;;;;;7433:488:1:o;8118:219::-;8267:2;8256:9;8249:21;8230:4;8287:44;8327:2;8316:9;8312:18;8304:6;8287:44;:::i;11187:356::-;11389:2;11371:21;;;11408:18;;;11401:30;11467:34;11462:2;11447:18;;11440:62;11534:2;11519:18;;11187:356::o;13883:128::-;13923:3;13954:1;13950:6;13947:1;13944:13;13941:39;;;13960:18;;:::i;:::-;-1:-1:-1;13996:9:1;;13883:128::o;14016:204::-;14054:3;14090:4;14087:1;14083:12;14122:4;14119:1;14115:12;14157:3;14151:4;14147:14;14142:3;14139:23;14136:49;;;14165:18;;:::i;:::-;14201:13;;14016:204;-1:-1:-1;;;14016:204:1:o;14225:217::-;14265:1;14291;14281:132;;14335:10;14330:3;14326:20;14323:1;14316:31;14370:4;14367:1;14360:15;14398:4;14395:1;14388:15;14281:132;-1:-1:-1;14427:9:1;;14225:217::o;14447:168::-;14487:7;14553:1;14549;14545:6;14541:14;14538:1;14535:21;14530:1;14523:9;14516:17;14512:45;14509:71;;;14560:18;;:::i;:::-;-1:-1:-1;14600:9:1;;14447:168::o;14620:125::-;14660:4;14688:1;14685;14682:8;14679:34;;;14693:18;;:::i;:::-;-1:-1:-1;14730:9:1;;14620:125::o;14750:258::-;14822:1;14832:113;14846:6;14843:1;14840:13;14832:113;;;14922:11;;;14916:18;14903:11;;;14896:39;14868:2;14861:10;14832:113;;;14963:6;14960:1;14957:13;14954:48;;;-1:-1:-1;;14998:1:1;14980:16;;14973:27;14750:258::o;15013:380::-;15092:1;15088:12;;;;15135;;;15156:61;;15210:4;15202:6;15198:17;15188:27;;15156:61;15263:2;15255:6;15252:14;15232:18;15229:38;15226:161;;;15309:10;15304:3;15300:20;15297:1;15290:31;15344:4;15341:1;15334:15;15372:4;15369:1;15362:15;15226:161;;15013:380;;;:::o;15398:135::-;15437:3;-1:-1:-1;;15458:17:1;;15455:43;;;15478:18;;:::i;:::-;-1:-1:-1;15525:1:1;15514:13;;15398:135::o;15538:127::-;15599:10;15594:3;15590:20;15587:1;15580:31;15630:4;15627:1;15620:15;15654:4;15651:1;15644:15;15670:127;15731:10;15726:3;15722:20;15719:1;15712:31;15762:4;15759:1;15752:15;15786:4;15783:1;15776:15;15802:127;15863:10;15858:3;15854:20;15851:1;15844:31;15894:4;15891:1;15884:15;15918:4;15915:1;15908:15;15934:131;-1:-1:-1;;;;;;16008:32:1;;15998:43;;15988:71;;16055:1;16052;16045:12
Swarm Source
ipfs://78d4e65eac66af31b7b8004b4a3a5d9df520d66a2738fbd1d8edacb657aa3568
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.