Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
10,000 DAC
Holders
2,710
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 DACLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DopeApeClubs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-02 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees 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 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of 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 through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 ) external; /** * @dev Transfers `tokenId` token 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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 { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * 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) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 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: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/DopeApeClubs.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract DopeApeClubs is ERC721A, Ownable, Pausable { using Strings for uint256; uint256 public collectionSize; mapping(address => uint256) public mintList; uint256 public walletMintLimit; string private baseTokenURI; string private preRevealTokenURI; bool public revealed = false; bool public freeMintActive = false; constructor ( string memory _name, string memory _symbol, uint256 _collectionSize, uint256 _walletMintLimit, string memory _preRevealTokenURI ) ERC721A(_name, _symbol) { collectionSize = _collectionSize; walletMintLimit = _walletMintLimit; preRevealTokenURI = _preRevealTokenURI; } modifier callerIsUser() { require(tx.origin == msg.sender, "Caller is contract"); _; } modifier onlyFreeMintActive() { require(freeMintActive, "Minting is not active"); _; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "Token not existed"); return !revealed ? preRevealTokenURI : string(abi.encodePacked(baseTokenURI, _tokenId.toString(),".json")); } function reveal(string calldata _baseTokenURI) external onlyOwner { revealed = true; baseTokenURI = _baseTokenURI; } function _startTokenId() internal pure override returns (uint256) { return 0; } function freeMint(uint256 quantity) external payable onlyFreeMintActive callerIsUser { require(mintList[msg.sender] + quantity <= walletMintLimit, "Up to 5 mints allowed per wallet"); require(totalSupply() + quantity <= collectionSize, "EXCEED_COL_SIZE"); mintList[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function teamMint(uint256 quantity) external payable onlyOwner { require(quantity > 0, "Invalid quantity"); require(totalSupply() + quantity <= collectionSize, "EXCEED_COL_SIZE"); _safeMint(msg.sender, quantity); } function airdrop(address toAdd,uint256 quantity) external payable onlyOwner { require(quantity > 0, "Invalid quantity"); require(totalSupply() + quantity <= collectionSize, "EXCEED_COL_SIZE"); _safeMint(toAdd, quantity); } function activeFreeMint() external onlyOwner { freeMintActive = !freeMintActive; } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_walletMintLimit","type":"uint256"},{"internalType":"string","name":"_preRevealTokenURI","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"activeFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAdd","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"mintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b5060405162003a1138038062003a1183398181016040528101906200006d91906200033e565b8484816002908051906020019062000087929190620001f9565b508060039080519060200190620000a0929190620001f9565b50620000b16200012660201b60201c565b6000819055505050620000d9620000cd6200012b60201b60201c565b6200013360201b60201c565b6000600860146101000a81548160ff0219169083151502179055508260098190555081600b8190555080600d90805190602001906200011a929190620001f9565b505050505050620005cb565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020790620004c2565b90600052602060002090601f0160209004810192826200022b576000855562000277565b82601f106200024657805160ff191683800117855562000277565b8280016001018555821562000277579182015b828111156200027657825182559160200191906001019062000259565b5b5090506200028691906200028a565b5090565b5b80821115620002a55760008160009055506001016200028b565b5090565b6000620002c0620002ba846200044c565b62000423565b905082815260208101848484011115620002df57620002de62000591565b5b620002ec8482856200048c565b509392505050565b600082601f8301126200030c576200030b6200058c565b5b81516200031e848260208601620002a9565b91505092915050565b6000815190506200033881620005b1565b92915050565b600080600080600060a086880312156200035d576200035c6200059b565b5b600086015167ffffffffffffffff8111156200037e576200037d62000596565b5b6200038c88828901620002f4565b955050602086015167ffffffffffffffff811115620003b057620003af62000596565b5b620003be88828901620002f4565b9450506040620003d18882890162000327565b9350506060620003e48882890162000327565b925050608086015167ffffffffffffffff81111562000408576200040762000596565b5b6200041688828901620002f4565b9150509295509295909350565b60006200042f62000442565b90506200043d8282620004f8565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046a57620004696200055d565b5b6200047582620005a0565b9050602081019050919050565b6000819050919050565b60005b83811015620004ac5780820151818401526020810190506200048f565b83811115620004bc576000848401525b50505050565b60006002820490506001821680620004db57607f821691505b60208210811415620004f257620004f16200052e565b5b50919050565b6200050382620005a0565b810181811067ffffffffffffffff821117156200052557620005246200055d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005bc8162000482565b8114620005c857600080fd5b50565b61343680620005db6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063cb5bc2aa11610064578063cb5bc2aa14610627578063e985e9c514610652578063f2fde38b1461068f578063fd01a93c146106b8576101cd565b8063a22cb4651461055b578063b88d4fde14610584578063bef432c6146105ad578063c87b56dd146105ea576101cd565b80638456cb59116100d15780638456cb59146104d25780638ba4cc3c146104e95780638da5cb5b1461050557806395d89b4114610530576101cd565b8063715018a61461047457806374c285611461048b5780637c928fe9146104b6576101cd565b80633f4ba83a1161016f578063518302271161013e57806351830227146103a45780635c975abb146103cf5780636352211e146103fa57806370a0823114610437576101cd565b80633f4ba83a1461031057806342842e0e1461032757806345c0f533146103505780634c2612471461037b576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632fbba115146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906127d3565b6106cf565b6040516102069190612c0d565b60405180910390f35b34801561021b57600080fd5b50610224610761565b6040516102319190612c28565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061287a565b6107f3565b60405161026e9190612ba6565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612793565b61086f565b005b3480156102ac57600080fd5b506102b56109b0565b6040516102c29190612d8a565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed919061267d565b6109c7565b005b61030e6004803603810190610309919061287a565b610cec565b005b34801561031c57600080fd5b50610325610e0f565b005b34801561033357600080fd5b5061034e6004803603810190610349919061267d565b610e95565b005b34801561035c57600080fd5b50610365610eb5565b6040516103729190612d8a565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061282d565b610ebb565b005b3480156103b057600080fd5b506103b9610f68565b6040516103c69190612c0d565b60405180910390f35b3480156103db57600080fd5b506103e4610f7b565b6040516103f19190612c0d565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061287a565b610f92565b60405161042e9190612ba6565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612610565b610fa4565b60405161046b9190612d8a565b60405180910390f35b34801561048057600080fd5b5061048961105d565b005b34801561049757600080fd5b506104a06110e5565b6040516104ad9190612d8a565b60405180910390f35b6104d060048036038101906104cb919061287a565b6110eb565b005b3480156104de57600080fd5b506104e76112f1565b005b61050360048036038101906104fe9190612793565b611377565b005b34801561051157600080fd5b5061051a61149b565b6040516105279190612ba6565b60405180910390f35b34801561053c57600080fd5b506105456114c5565b6040516105529190612c28565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190612753565b611557565b005b34801561059057600080fd5b506105ab60048036038101906105a691906126d0565b6116cf565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612610565b611742565b6040516105e19190612d8a565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c919061287a565b61175a565b60405161061e9190612c28565b60405180910390f35b34801561063357600080fd5b5061063c61187c565b6040516106499190612c0d565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061263d565b61188f565b6040516106869190612c0d565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612610565b611923565b005b3480156106c457600080fd5b506106cd611a1b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077090612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90612fc4565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b60006107fe82611ac3565b610834576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087a82610f92565b90508073ffffffffffffffffffffffffffffffffffffffff1661089b611b22565b73ffffffffffffffffffffffffffffffffffffffff16146108fe576108c7816108c2611b22565b61188f565b6108fd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109ba611b2a565b6001546000540303905090565b60006109d282611b2f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a39576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a4584611bfd565b91509150610a5b8187610a56611b22565b611c1f565b610aa757610a7086610a6b611b22565b61188f565b610aa6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b1b8686866001611c63565b8015610b2657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf485610bd0888887611c69565b7c020000000000000000000000000000000000000000000000000000000017611c91565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c7c576000600185019050600060046000838152602001908152602001600020541415610c7a576000548114610c79578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ce48686866001611cbc565b505050505050565b610cf4611cc2565b73ffffffffffffffffffffffffffffffffffffffff16610d1261149b565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90612d0a565b60405180910390fd5b60008111610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290612cea565b60405180910390fd5b60095481610db76109b0565b610dc19190612e53565b1115610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990612c6a565b60405180910390fd5b610e0c3382611cca565b50565b610e17611cc2565b73ffffffffffffffffffffffffffffffffffffffff16610e3561149b565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290612d0a565b60405180910390fd5b610e93611ce8565b565b610eb0838383604051806020016040528060008152506116cf565b505050565b60095481565b610ec3611cc2565b73ffffffffffffffffffffffffffffffffffffffff16610ee161149b565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90612d0a565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055508181600c9190610f6392919061243e565b505050565b600e60009054906101000a900460ff1681565b6000600860149054906101000a900460ff16905090565b6000610f9d82611b2f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611065611cc2565b73ffffffffffffffffffffffffffffffffffffffff1661108361149b565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090612d0a565b60405180910390fd5b6110e36000611d8a565b565b600b5481565b600e60019054906101000a900460ff1661113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190612d2a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90612d4a565b60405180910390fd5b600b5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111f69190612e53565b1115611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90612d6a565b60405180910390fd5b600954816112436109b0565b61124d9190612e53565b111561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612c6a565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112dd9190612e53565b925050819055506112ee3382611cca565b50565b6112f9611cc2565b73ffffffffffffffffffffffffffffffffffffffff1661131761149b565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490612d0a565b60405180910390fd5b611375611e50565b565b61137f611cc2565b73ffffffffffffffffffffffffffffffffffffffff1661139d61149b565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90612d0a565b60405180910390fd5b60008111611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90612cea565b60405180910390fd5b600954816114426109b0565b61144c9190612e53565b111561148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490612c6a565b60405180910390fd5b6114978282611cca565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114d490612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461150090612fc4565b801561154d5780601f106115225761010080835404028352916020019161154d565b820191906000526020600020905b81548152906001019060200180831161153057829003601f168201915b5050505050905090565b61155f611b22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115d1611b22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167e611b22565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c39190612c0d565b60405180910390a35050565b6116da8484846109c7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461173c5761170584848484611ef3565b61173b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b606061176582611ac3565b6117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90612cca565b60405180910390fd5b600e60009054906101000a900460ff16156117e957600c6117c483612053565b6040516020016117d5929190612b77565b604051602081830303815290604052611875565b600d80546117f690612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461182290612fc4565b801561186f5780601f106118445761010080835404028352916020019161186f565b820191906000526020600020905b81548152906001019060200180831161185257829003601f168201915b50505050505b9050919050565b600e60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61192b611cc2565b73ffffffffffffffffffffffffffffffffffffffff1661194961149b565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690612d0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690612c8a565b60405180910390fd5b611a1881611d8a565b50565b611a23611cc2565b73ffffffffffffffffffffffffffffffffffffffff16611a4161149b565b73ffffffffffffffffffffffffffffffffffffffff1614611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90612d0a565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600081611ace611b2a565b11158015611add575060005482105b8015611b1b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b3e611b2a565b11611bc657600054811015611bc55760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611bc3575b6000811415611bb9576004600083600190039350838152602001908152602001600020549050611b8e565b8092505050611bf8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c808686846121b4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611ce48282604051806020016040528060008152506121bd565b5050565b611cf0610f7b565b611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690612c4a565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d73611cc2565b604051611d809190612ba6565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e58610f7b565b15611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90612caa565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611edc611cc2565b604051611ee99190612ba6565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f19611b22565b8786866040518563ffffffff1660e01b8152600401611f3b9493929190612bc1565b602060405180830381600087803b158015611f5557600080fd5b505af1925050508015611f8657506040513d601f19601f82011682018060405250810190611f839190612800565b60015b612000573d8060008114611fb6576040519150601f19603f3d011682016040523d82523d6000602084013e611fbb565b606091505b50600081511415611ff8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561209b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121af565b600082905060005b600082146120cd5780806120b690613027565b915050600a826120c69190612ea9565b91506120a3565b60008167ffffffffffffffff8111156120e9576120e861315d565b5b6040519080825280601f01601f19166020018201604052801561211b5781602001600182028036833780820191505090505b5090505b600085146121a8576001826121349190612eda565b9150600a856121439190613070565b603061214f9190612e53565b60f81b8183815181106121655761216461312e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121a19190612ea9565b945061211f565b8093505050505b919050565b60009392505050565b6121c7838361225a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225557600080549050600083820390505b6122076000868380600101945086611ef3565b61223d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121f457816000541461225257600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612302576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61230f6000848385611c63565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612386836123776000866000611c69565b6123808561242e565b17611c91565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123aa578060008190555050506124296000848385611cbc565b505050565b60006001821460e11b9050919050565b82805461244a90612fc4565b90600052602060002090601f01602090048101928261246c57600085556124b3565b82601f1061248557803560ff19168380011785556124b3565b828001600101855582156124b3579182015b828111156124b2578235825591602001919060010190612497565b5b5090506124c091906124c4565b5090565b5b808211156124dd5760008160009055506001016124c5565b5090565b60006124f46124ef84612dca565b612da5565b9050828152602081018484840111156125105761250f61319b565b5b61251b848285612f82565b509392505050565b600081359050612532816133a4565b92915050565b600081359050612547816133bb565b92915050565b60008135905061255c816133d2565b92915050565b600081519050612571816133d2565b92915050565b600082601f83011261258c5761258b613191565b5b813561259c8482602086016124e1565b91505092915050565b60008083601f8401126125bb576125ba613191565b5b8235905067ffffffffffffffff8111156125d8576125d761318c565b5b6020830191508360018202830111156125f4576125f3613196565b5b9250929050565b60008135905061260a816133e9565b92915050565b600060208284031215612626576126256131a5565b5b600061263484828501612523565b91505092915050565b60008060408385031215612654576126536131a5565b5b600061266285828601612523565b925050602061267385828601612523565b9150509250929050565b600080600060608486031215612696576126956131a5565b5b60006126a486828701612523565b93505060206126b586828701612523565b92505060406126c6868287016125fb565b9150509250925092565b600080600080608085870312156126ea576126e96131a5565b5b60006126f887828801612523565b945050602061270987828801612523565b935050604061271a878288016125fb565b925050606085013567ffffffffffffffff81111561273b5761273a6131a0565b5b61274787828801612577565b91505092959194509250565b6000806040838503121561276a576127696131a5565b5b600061277885828601612523565b925050602061278985828601612538565b9150509250929050565b600080604083850312156127aa576127a96131a5565b5b60006127b885828601612523565b92505060206127c9858286016125fb565b9150509250929050565b6000602082840312156127e9576127e86131a5565b5b60006127f78482850161254d565b91505092915050565b600060208284031215612816576128156131a5565b5b600061282484828501612562565b91505092915050565b60008060208385031215612844576128436131a5565b5b600083013567ffffffffffffffff811115612862576128616131a0565b5b61286e858286016125a5565b92509250509250929050565b6000602082840312156128905761288f6131a5565b5b600061289e848285016125fb565b91505092915050565b6128b081612f0e565b82525050565b6128bf81612f20565b82525050565b60006128d082612e10565b6128da8185612e26565b93506128ea818560208601612f91565b6128f3816131aa565b840191505092915050565b600061290982612e1b565b6129138185612e37565b9350612923818560208601612f91565b61292c816131aa565b840191505092915050565b600061294282612e1b565b61294c8185612e48565b935061295c818560208601612f91565b80840191505092915050565b6000815461297581612fc4565b61297f8186612e48565b9450600182166000811461299a57600181146129ab576129de565b60ff198316865281860193506129de565b6129b485612dfb565b60005b838110156129d6578154818901526001820191506020810190506129b7565b838801955050505b50505092915050565b60006129f4601483612e37565b91506129ff826131bb565b602082019050919050565b6000612a17600f83612e37565b9150612a22826131e4565b602082019050919050565b6000612a3a602683612e37565b9150612a458261320d565b604082019050919050565b6000612a5d601083612e37565b9150612a688261325c565b602082019050919050565b6000612a80601183612e37565b9150612a8b82613285565b602082019050919050565b6000612aa3601083612e37565b9150612aae826132ae565b602082019050919050565b6000612ac6600583612e48565b9150612ad1826132d7565b600582019050919050565b6000612ae9602083612e37565b9150612af482613300565b602082019050919050565b6000612b0c601583612e37565b9150612b1782613329565b602082019050919050565b6000612b2f601283612e37565b9150612b3a82613352565b602082019050919050565b6000612b52602083612e37565b9150612b5d8261337b565b602082019050919050565b612b7181612f78565b82525050565b6000612b838285612968565b9150612b8f8284612937565b9150612b9a82612ab9565b91508190509392505050565b6000602082019050612bbb60008301846128a7565b92915050565b6000608082019050612bd660008301876128a7565b612be360208301866128a7565b612bf06040830185612b68565b8181036060830152612c0281846128c5565b905095945050505050565b6000602082019050612c2260008301846128b6565b92915050565b60006020820190508181036000830152612c4281846128fe565b905092915050565b60006020820190508181036000830152612c63816129e7565b9050919050565b60006020820190508181036000830152612c8381612a0a565b9050919050565b60006020820190508181036000830152612ca381612a2d565b9050919050565b60006020820190508181036000830152612cc381612a50565b9050919050565b60006020820190508181036000830152612ce381612a73565b9050919050565b60006020820190508181036000830152612d0381612a96565b9050919050565b60006020820190508181036000830152612d2381612adc565b9050919050565b60006020820190508181036000830152612d4381612aff565b9050919050565b60006020820190508181036000830152612d6381612b22565b9050919050565b60006020820190508181036000830152612d8381612b45565b9050919050565b6000602082019050612d9f6000830184612b68565b92915050565b6000612daf612dc0565b9050612dbb8282612ff6565b919050565b6000604051905090565b600067ffffffffffffffff821115612de557612de461315d565b5b612dee826131aa565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e5e82612f78565b9150612e6983612f78565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9e57612e9d6130a1565b5b828201905092915050565b6000612eb482612f78565b9150612ebf83612f78565b925082612ecf57612ece6130d0565b5b828204905092915050565b6000612ee582612f78565b9150612ef083612f78565b925082821015612f0357612f026130a1565b5b828203905092915050565b6000612f1982612f58565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612faf578082015181840152602081019050612f94565b83811115612fbe576000848401525b50505050565b60006002820490506001821680612fdc57607f821691505b60208210811415612ff057612fef6130ff565b5b50919050565b612fff826131aa565b810181811067ffffffffffffffff8211171561301e5761301d61315d565b5b80604052505050565b600061303282612f78565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613065576130646130a1565b5b600182019050919050565b600061307b82612f78565b915061308683612f78565b925082613096576130956130d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f557020746f2035206d696e747320616c6c6f776564207065722077616c6c6574600082015250565b6133ad81612f0e565b81146133b857600080fd5b50565b6133c481612f20565b81146133cf57600080fd5b50565b6133db81612f2c565b81146133e657600080fd5b50565b6133f281612f78565b81146133fd57600080fd5b5056fea2646970667358221220ab47c5e11607ccddbefea3920abceed8bfb1eecebc441d6532f15ebe2cff670a64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000b446f7065417065436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344414300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063cb5bc2aa11610064578063cb5bc2aa14610627578063e985e9c514610652578063f2fde38b1461068f578063fd01a93c146106b8576101cd565b8063a22cb4651461055b578063b88d4fde14610584578063bef432c6146105ad578063c87b56dd146105ea576101cd565b80638456cb59116100d15780638456cb59146104d25780638ba4cc3c146104e95780638da5cb5b1461050557806395d89b4114610530576101cd565b8063715018a61461047457806374c285611461048b5780637c928fe9146104b6576101cd565b80633f4ba83a1161016f578063518302271161013e57806351830227146103a45780635c975abb146103cf5780636352211e146103fa57806370a0823114610437576101cd565b80633f4ba83a1461031057806342842e0e1461032757806345c0f533146103505780634c2612471461037b576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632fbba115146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906127d3565b6106cf565b6040516102069190612c0d565b60405180910390f35b34801561021b57600080fd5b50610224610761565b6040516102319190612c28565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061287a565b6107f3565b60405161026e9190612ba6565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612793565b61086f565b005b3480156102ac57600080fd5b506102b56109b0565b6040516102c29190612d8a565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed919061267d565b6109c7565b005b61030e6004803603810190610309919061287a565b610cec565b005b34801561031c57600080fd5b50610325610e0f565b005b34801561033357600080fd5b5061034e6004803603810190610349919061267d565b610e95565b005b34801561035c57600080fd5b50610365610eb5565b6040516103729190612d8a565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061282d565b610ebb565b005b3480156103b057600080fd5b506103b9610f68565b6040516103c69190612c0d565b60405180910390f35b3480156103db57600080fd5b506103e4610f7b565b6040516103f19190612c0d565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061287a565b610f92565b60405161042e9190612ba6565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612610565b610fa4565b60405161046b9190612d8a565b60405180910390f35b34801561048057600080fd5b5061048961105d565b005b34801561049757600080fd5b506104a06110e5565b6040516104ad9190612d8a565b60405180910390f35b6104d060048036038101906104cb919061287a565b6110eb565b005b3480156104de57600080fd5b506104e76112f1565b005b61050360048036038101906104fe9190612793565b611377565b005b34801561051157600080fd5b5061051a61149b565b6040516105279190612ba6565b60405180910390f35b34801561053c57600080fd5b506105456114c5565b6040516105529190612c28565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190612753565b611557565b005b34801561059057600080fd5b506105ab60048036038101906105a691906126d0565b6116cf565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612610565b611742565b6040516105e19190612d8a565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c919061287a565b61175a565b60405161061e9190612c28565b60405180910390f35b34801561063357600080fd5b5061063c61187c565b6040516106499190612c0d565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061263d565b61188f565b6040516106869190612c0d565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612610565b611923565b005b3480156106c457600080fd5b506106cd611a1b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077090612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90612fc4565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b60006107fe82611ac3565b610834576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087a82610f92565b90508073ffffffffffffffffffffffffffffffffffffffff1661089b611b22565b73ffffffffffffffffffffffffffffffffffffffff16146108fe576108c7816108c2611b22565b61188f565b6108fd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109ba611b2a565b6001546000540303905090565b60006109d282611b2f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a39576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a4584611bfd565b91509150610a5b8187610a56611b22565b611c1f565b610aa757610a7086610a6b611b22565b61188f565b610aa6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b1b8686866001611c63565b8015610b2657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf485610bd0888887611c69565b7c020000000000000000000000000000000000000000000000000000000017611c91565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c7c576000600185019050600060046000838152602001908152602001600020541415610c7a576000548114610c79578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ce48686866001611cbc565b505050505050565b610cf4611cc2565b73ffffffffffffffffffffffffffffffffffffffff16610d1261149b565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90612d0a565b60405180910390fd5b60008111610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290612cea565b60405180910390fd5b60095481610db76109b0565b610dc19190612e53565b1115610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990612c6a565b60405180910390fd5b610e0c3382611cca565b50565b610e17611cc2565b73ffffffffffffffffffffffffffffffffffffffff16610e3561149b565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290612d0a565b60405180910390fd5b610e93611ce8565b565b610eb0838383604051806020016040528060008152506116cf565b505050565b60095481565b610ec3611cc2565b73ffffffffffffffffffffffffffffffffffffffff16610ee161149b565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90612d0a565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055508181600c9190610f6392919061243e565b505050565b600e60009054906101000a900460ff1681565b6000600860149054906101000a900460ff16905090565b6000610f9d82611b2f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611065611cc2565b73ffffffffffffffffffffffffffffffffffffffff1661108361149b565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090612d0a565b60405180910390fd5b6110e36000611d8a565b565b600b5481565b600e60019054906101000a900460ff1661113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190612d2a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90612d4a565b60405180910390fd5b600b5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111f69190612e53565b1115611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90612d6a565b60405180910390fd5b600954816112436109b0565b61124d9190612e53565b111561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612c6a565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112dd9190612e53565b925050819055506112ee3382611cca565b50565b6112f9611cc2565b73ffffffffffffffffffffffffffffffffffffffff1661131761149b565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490612d0a565b60405180910390fd5b611375611e50565b565b61137f611cc2565b73ffffffffffffffffffffffffffffffffffffffff1661139d61149b565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90612d0a565b60405180910390fd5b60008111611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90612cea565b60405180910390fd5b600954816114426109b0565b61144c9190612e53565b111561148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490612c6a565b60405180910390fd5b6114978282611cca565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114d490612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461150090612fc4565b801561154d5780601f106115225761010080835404028352916020019161154d565b820191906000526020600020905b81548152906001019060200180831161153057829003601f168201915b5050505050905090565b61155f611b22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115d1611b22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167e611b22565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c39190612c0d565b60405180910390a35050565b6116da8484846109c7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461173c5761170584848484611ef3565b61173b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b606061176582611ac3565b6117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90612cca565b60405180910390fd5b600e60009054906101000a900460ff16156117e957600c6117c483612053565b6040516020016117d5929190612b77565b604051602081830303815290604052611875565b600d80546117f690612fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461182290612fc4565b801561186f5780601f106118445761010080835404028352916020019161186f565b820191906000526020600020905b81548152906001019060200180831161185257829003601f168201915b50505050505b9050919050565b600e60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61192b611cc2565b73ffffffffffffffffffffffffffffffffffffffff1661194961149b565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690612d0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690612c8a565b60405180910390fd5b611a1881611d8a565b50565b611a23611cc2565b73ffffffffffffffffffffffffffffffffffffffff16611a4161149b565b73ffffffffffffffffffffffffffffffffffffffff1614611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90612d0a565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600081611ace611b2a565b11158015611add575060005482105b8015611b1b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b3e611b2a565b11611bc657600054811015611bc55760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611bc3575b6000811415611bb9576004600083600190039350838152602001908152602001600020549050611b8e565b8092505050611bf8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c808686846121b4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611ce48282604051806020016040528060008152506121bd565b5050565b611cf0610f7b565b611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690612c4a565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d73611cc2565b604051611d809190612ba6565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e58610f7b565b15611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90612caa565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611edc611cc2565b604051611ee99190612ba6565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f19611b22565b8786866040518563ffffffff1660e01b8152600401611f3b9493929190612bc1565b602060405180830381600087803b158015611f5557600080fd5b505af1925050508015611f8657506040513d601f19601f82011682018060405250810190611f839190612800565b60015b612000573d8060008114611fb6576040519150601f19603f3d011682016040523d82523d6000602084013e611fbb565b606091505b50600081511415611ff8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561209b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121af565b600082905060005b600082146120cd5780806120b690613027565b915050600a826120c69190612ea9565b91506120a3565b60008167ffffffffffffffff8111156120e9576120e861315d565b5b6040519080825280601f01601f19166020018201604052801561211b5781602001600182028036833780820191505090505b5090505b600085146121a8576001826121349190612eda565b9150600a856121439190613070565b603061214f9190612e53565b60f81b8183815181106121655761216461312e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121a19190612ea9565b945061211f565b8093505050505b919050565b60009392505050565b6121c7838361225a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225557600080549050600083820390505b6122076000868380600101945086611ef3565b61223d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121f457816000541461225257600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612302576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61230f6000848385611c63565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612386836123776000866000611c69565b6123808561242e565b17611c91565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123aa578060008190555050506124296000848385611cbc565b505050565b60006001821460e11b9050919050565b82805461244a90612fc4565b90600052602060002090601f01602090048101928261246c57600085556124b3565b82601f1061248557803560ff19168380011785556124b3565b828001600101855582156124b3579182015b828111156124b2578235825591602001919060010190612497565b5b5090506124c091906124c4565b5090565b5b808211156124dd5760008160009055506001016124c5565b5090565b60006124f46124ef84612dca565b612da5565b9050828152602081018484840111156125105761250f61319b565b5b61251b848285612f82565b509392505050565b600081359050612532816133a4565b92915050565b600081359050612547816133bb565b92915050565b60008135905061255c816133d2565b92915050565b600081519050612571816133d2565b92915050565b600082601f83011261258c5761258b613191565b5b813561259c8482602086016124e1565b91505092915050565b60008083601f8401126125bb576125ba613191565b5b8235905067ffffffffffffffff8111156125d8576125d761318c565b5b6020830191508360018202830111156125f4576125f3613196565b5b9250929050565b60008135905061260a816133e9565b92915050565b600060208284031215612626576126256131a5565b5b600061263484828501612523565b91505092915050565b60008060408385031215612654576126536131a5565b5b600061266285828601612523565b925050602061267385828601612523565b9150509250929050565b600080600060608486031215612696576126956131a5565b5b60006126a486828701612523565b93505060206126b586828701612523565b92505060406126c6868287016125fb565b9150509250925092565b600080600080608085870312156126ea576126e96131a5565b5b60006126f887828801612523565b945050602061270987828801612523565b935050604061271a878288016125fb565b925050606085013567ffffffffffffffff81111561273b5761273a6131a0565b5b61274787828801612577565b91505092959194509250565b6000806040838503121561276a576127696131a5565b5b600061277885828601612523565b925050602061278985828601612538565b9150509250929050565b600080604083850312156127aa576127a96131a5565b5b60006127b885828601612523565b92505060206127c9858286016125fb565b9150509250929050565b6000602082840312156127e9576127e86131a5565b5b60006127f78482850161254d565b91505092915050565b600060208284031215612816576128156131a5565b5b600061282484828501612562565b91505092915050565b60008060208385031215612844576128436131a5565b5b600083013567ffffffffffffffff811115612862576128616131a0565b5b61286e858286016125a5565b92509250509250929050565b6000602082840312156128905761288f6131a5565b5b600061289e848285016125fb565b91505092915050565b6128b081612f0e565b82525050565b6128bf81612f20565b82525050565b60006128d082612e10565b6128da8185612e26565b93506128ea818560208601612f91565b6128f3816131aa565b840191505092915050565b600061290982612e1b565b6129138185612e37565b9350612923818560208601612f91565b61292c816131aa565b840191505092915050565b600061294282612e1b565b61294c8185612e48565b935061295c818560208601612f91565b80840191505092915050565b6000815461297581612fc4565b61297f8186612e48565b9450600182166000811461299a57600181146129ab576129de565b60ff198316865281860193506129de565b6129b485612dfb565b60005b838110156129d6578154818901526001820191506020810190506129b7565b838801955050505b50505092915050565b60006129f4601483612e37565b91506129ff826131bb565b602082019050919050565b6000612a17600f83612e37565b9150612a22826131e4565b602082019050919050565b6000612a3a602683612e37565b9150612a458261320d565b604082019050919050565b6000612a5d601083612e37565b9150612a688261325c565b602082019050919050565b6000612a80601183612e37565b9150612a8b82613285565b602082019050919050565b6000612aa3601083612e37565b9150612aae826132ae565b602082019050919050565b6000612ac6600583612e48565b9150612ad1826132d7565b600582019050919050565b6000612ae9602083612e37565b9150612af482613300565b602082019050919050565b6000612b0c601583612e37565b9150612b1782613329565b602082019050919050565b6000612b2f601283612e37565b9150612b3a82613352565b602082019050919050565b6000612b52602083612e37565b9150612b5d8261337b565b602082019050919050565b612b7181612f78565b82525050565b6000612b838285612968565b9150612b8f8284612937565b9150612b9a82612ab9565b91508190509392505050565b6000602082019050612bbb60008301846128a7565b92915050565b6000608082019050612bd660008301876128a7565b612be360208301866128a7565b612bf06040830185612b68565b8181036060830152612c0281846128c5565b905095945050505050565b6000602082019050612c2260008301846128b6565b92915050565b60006020820190508181036000830152612c4281846128fe565b905092915050565b60006020820190508181036000830152612c63816129e7565b9050919050565b60006020820190508181036000830152612c8381612a0a565b9050919050565b60006020820190508181036000830152612ca381612a2d565b9050919050565b60006020820190508181036000830152612cc381612a50565b9050919050565b60006020820190508181036000830152612ce381612a73565b9050919050565b60006020820190508181036000830152612d0381612a96565b9050919050565b60006020820190508181036000830152612d2381612adc565b9050919050565b60006020820190508181036000830152612d4381612aff565b9050919050565b60006020820190508181036000830152612d6381612b22565b9050919050565b60006020820190508181036000830152612d8381612b45565b9050919050565b6000602082019050612d9f6000830184612b68565b92915050565b6000612daf612dc0565b9050612dbb8282612ff6565b919050565b6000604051905090565b600067ffffffffffffffff821115612de557612de461315d565b5b612dee826131aa565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e5e82612f78565b9150612e6983612f78565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9e57612e9d6130a1565b5b828201905092915050565b6000612eb482612f78565b9150612ebf83612f78565b925082612ecf57612ece6130d0565b5b828204905092915050565b6000612ee582612f78565b9150612ef083612f78565b925082821015612f0357612f026130a1565b5b828203905092915050565b6000612f1982612f58565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612faf578082015181840152602081019050612f94565b83811115612fbe576000848401525b50505050565b60006002820490506001821680612fdc57607f821691505b60208210811415612ff057612fef6130ff565b5b50919050565b612fff826131aa565b810181811067ffffffffffffffff8211171561301e5761301d61315d565b5b80604052505050565b600061303282612f78565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613065576130646130a1565b5b600182019050919050565b600061307b82612f78565b915061308683612f78565b925082613096576130956130d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f557020746f2035206d696e747320616c6c6f776564207065722077616c6c6574600082015250565b6133ad81612f0e565b81146133b857600080fd5b50565b6133c481612f20565b81146133cf57600080fd5b50565b6133db81612f2c565b81146133e657600080fd5b50565b6133f281612f78565b81146133fd57600080fd5b5056fea2646970667358221220ab47c5e11607ccddbefea3920abceed8bfb1eecebc441d6532f15ebe2cff670a64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000b446f7065417065436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344414300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): DopeApeClub
Arg [1] : _symbol (string): DAC
Arg [2] : _collectionSize (uint256): 10000
Arg [3] : _walletMintLimit (uint256): 5
Arg [4] : _preRevealTokenURI (string):
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 446f7065417065436c7562000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4441430000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
55385:2875:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25142:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30789:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32735:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32283:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24196:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42000:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57403:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58188:67;;;;;;;;;;;;;:::i;:::-;;33625:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55484:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56723:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55680:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6834:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30578:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25821:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9733:103;;;;;;;;;;;;;:::i;:::-;;55570:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56979:412;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58117:63;;;;;;;;;;;;;:::i;:::-;;57691:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9082:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30958:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33011:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33881:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55520:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56381:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55715:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33390:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9991:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57987:122;;;;;;;;;;;;;:::i;:::-;;25142:615;25227:4;25542:10;25527:25;;:11;:25;;;;:102;;;;25619:10;25604:25;;:11;:25;;;;25527:102;:179;;;;25696:10;25681:25;;:11;:25;;;;25527:179;25507:199;;25142:615;;;:::o;30789:100::-;30843:13;30876:5;30869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30789:100;:::o;32735:204::-;32803:7;32828:16;32836:7;32828;:16::i;:::-;32823:64;;32853:34;;;;;;;;;;;;;;32823:64;32907:15;:24;32923:7;32907:24;;;;;;;;;;;;;;;;;;;;;32900:31;;32735:204;;;:::o;32283:386::-;32356:13;32372:16;32380:7;32372;:16::i;:::-;32356:32;;32428:5;32405:28;;:19;:17;:19::i;:::-;:28;;;32401:175;;32453:44;32470:5;32477:19;:17;:19::i;:::-;32453:16;:44::i;:::-;32448:128;;32525:35;;;;;;;;;;;;;;32448:128;32401:175;32615:2;32588:15;:24;32604:7;32588:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32653:7;32649:2;32633:28;;32642:5;32633:28;;;;;;;;;;;;32345:324;32283:386;;:::o;24196:315::-;24249:7;24477:15;:13;:15::i;:::-;24462:12;;24446:13;;:28;:46;24439:53;;24196:315;:::o;42000:2800::-;42134:27;42164;42183:7;42164:18;:27::i;:::-;42134:57;;42249:4;42208:45;;42224:19;42208:45;;;42204:86;;42262:28;;;;;;;;;;;;;;42204:86;42304:27;42333:23;42360:28;42380:7;42360:19;:28::i;:::-;42303:85;;;;42488:62;42507:15;42524:4;42530:19;:17;:19::i;:::-;42488:18;:62::i;:::-;42483:174;;42570:43;42587:4;42593:19;:17;:19::i;:::-;42570:16;:43::i;:::-;42565:92;;42622:35;;;;;;;;;;;;;;42565:92;42483:174;42688:1;42674:16;;:2;:16;;;42670:52;;;42699:23;;;;;;;;;;;;;;42670:52;42735:43;42757:4;42763:2;42767:7;42776:1;42735:21;:43::i;:::-;42871:15;42868:160;;;43011:1;42990:19;42983:30;42868:160;43406:18;:24;43425:4;43406:24;;;;;;;;;;;;;;;;43404:26;;;;;;;;;;;;43475:18;:22;43494:2;43475:22;;;;;;;;;;;;;;;;43473:24;;;;;;;;;;;43797:145;43834:2;43882:45;43897:4;43903:2;43907:19;43882:14;:45::i;:::-;21424:8;43855:72;43797:18;:145::i;:::-;43768:17;:26;43786:7;43768:26;;;;;;;;;;;:174;;;;44112:1;21424:8;44062:19;:46;:51;44058:626;;;44134:19;44166:1;44156:7;:11;44134:33;;44323:1;44289:17;:30;44307:11;44289:30;;;;;;;;;;;;:35;44285:384;;;44427:13;;44412:11;:28;44408:242;;44607:19;44574:17;:30;44592:11;44574:30;;;;;;;;;;;:52;;;;44408:242;44285:384;44115:569;44058:626;44731:7;44727:2;44712:27;;44721:4;44712:27;;;;;;;;;;;;44750:42;44771:4;44777:2;44781:7;44790:1;44750:20;:42::i;:::-;42123:2677;;;42000:2800;;;:::o;57403:280::-;9313:12;:10;:12::i;:::-;9302:23;;:7;:5;:7::i;:::-;:23;;;9294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57528:1:::1;57517:8;:12;57509:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;57597:14;;57585:8;57569:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;57561:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;57644:31;57654:10;57666:8;57644:9;:31::i;:::-;57403:280:::0;:::o;58188:67::-;9313:12;:10;:12::i;:::-;9302:23;;:7;:5;:7::i;:::-;:23;;;9294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58237:10:::1;:8;:10::i;:::-;58188:67::o:0;33625:185::-;33763:39;33780:4;33786:2;33790:7;33763:39;;;;;;;;;;;;:16;:39::i;:::-;33625:185;;;:::o;55484:29::-;;;;:::o;56723:145::-;9313:12;:10;:12::i;:::-;9302:23;;:7;:5;:7::i;:::-;:23;;;9294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56817:4:::1;56806:8;;:15;;;;;;;;;;;;;;;;;;56847:13;;56832:12;:28;;;;;;;:::i;:::-;;56723:145:::0;;:::o;55680:28::-;;;;;;;;;;;;;:::o;6834:86::-;6881:4;6905:7;;;;;;;;;;;6898:14;;6834:86;:::o;30578:144::-;30642:7;30685:27;30704:7;30685:18;:27::i;:::-;30662:52;;30578:144;;;:::o;25821:224::-;25885:7;25926:1;25909:19;;:5;:19;;;25905:60;;;25937:28;;;;;;;;;;;;;;25905:60;20376:13;25983:18;:25;26002:5;25983:25;;;;;;;;;;;;;;;;:54;25976:61;;25821:224;;;:::o;9733:103::-;9313:12;:10;:12::i;:::-;9302:23;;:7;:5;:7::i;:::-;:23;;;9294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9798:30:::1;9825:1;9798:18;:30::i;:::-;9733:103::o:0;55570:30::-;;;;:::o;56979:412::-;56313:14;;;;;;;;;;;56305:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;56203:10:::1;56190:23;;:9;:23;;;56182:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57163:15:::2;;57151:8;57128;:20;57137:10;57128:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:50;;57120:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57262:14;;57250:8;57234:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;57226:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;57333:8;57309;:20;57318:10;57309:20;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;57352:31;57362:10;57374:8;57352:9;:31::i;:::-;56979:412:::0;:::o;58117:63::-;9313:12;:10;:12::i;:::-;9302:23;;:7;:5;:7::i;:::-;:23;;;9294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58164:8:::1;:6;:8::i;:::-;58117:63::o:0;57691:288::-;9313:12;:10;:12::i;:::-;9302:23;;:7;:5;:7::i;:::-;:23;;;9294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57829:1:::1;57818:8;:12;57810:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;57898:14;;57886:8;57870:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;57862:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;57945:26;57955:5;57962:8;57945:9;:26::i;:::-;57691:288:::0;;:::o;9082:87::-;9128:7;9155:6;;;;;;;;;;;9148:13;;9082:87;:::o;30958:104::-;31014:13;31047:7;31040:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30958:104;:::o;33011:308::-;33122:19;:17;:19::i;:::-;33110:31;;:8;:31;;;33106:61;;;33150:17;;;;;;;;;;;;;;33106:61;33232:8;33180:18;:39;33199:19;:17;:19::i;:::-;33180:39;;;;;;;;;;;;;;;:49;33220:8;33180:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33292:8;33256:55;;33271:19;:17;:19::i;:::-;33256:55;;;33302:8;33256:55;;;;;;:::i;:::-;;;;;;;;33011:308;;:::o;33881:399::-;34048:31;34061:4;34067:2;34071:7;34048:12;:31::i;:::-;34112:1;34094:2;:14;;;:19;34090:183;;34133:56;34164:4;34170:2;34174:7;34183:5;34133:30;:56::i;:::-;34128:145;;34217:40;;;;;;;;;;;;;;34128:145;34090:183;33881:399;;;;:::o;55520:43::-;;;;;;;;;;;;;;;;;:::o;56381:324::-;56500:13;56539:17;56547:8;56539:7;:17::i;:::-;56531:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;56599:8;;;;;;;;;;;56598:9;:99;;56654:12;56668:19;:8;:17;:19::i;:::-;56637:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56598:99;;;56610:17;56598:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56591:106;;56381:324;;;:::o;55715:34::-;;;;;;;;;;;;;:::o;33390:164::-;33487:4;33511:18;:25;33530:5;33511:25;;;;;;;;;;;;;;;:35;33537:8;33511:35;;;;;;;;;;;;;;;;;;;;;;;;;33504:42;;33390:164;;;;:::o;9991:201::-;9313:12;:10;:12::i;:::-;9302:23;;:7;:5;:7::i;:::-;:23;;;9294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10100:1:::1;10080:22;;:8;:22;;;;10072:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10156:28;10175:8;10156:18;:28::i;:::-;9991:201:::0;:::o;57987:122::-;9313:12;:10;:12::i;:::-;9302:23;;:7;:5;:7::i;:::-;:23;;;9294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58087:14:::1;;;;;;;;;;;58086:15;58069:14;;:32;;;;;;;;;;;;;;;;;;57987:122::o:0;34535:273::-;34592:4;34648:7;34629:15;:13;:15::i;:::-;:26;;:66;;;;;34682:13;;34672:7;:23;34629:66;:152;;;;;34780:1;21146:8;34733:17;:26;34751:7;34733:26;;;;;;;;;;;;:43;:48;34629:152;34609:172;;34535:273;;;:::o;53096:105::-;53156:7;53183:10;53176:17;;53096:105;:::o;56878:93::-;56935:7;56878:93;:::o;27495:1129::-;27562:7;27582:12;27597:7;27582:22;;27665:4;27646:15;:13;:15::i;:::-;:23;27642:915;;27699:13;;27692:4;:20;27688:869;;;27737:14;27754:17;:23;27772:4;27754:23;;;;;;;;;;;;27737:40;;27870:1;21146:8;27843:6;:23;:28;27839:699;;;28362:113;28379:1;28369:6;:11;28362:113;;;28422:17;:25;28440:6;;;;;;;28422:25;;;;;;;;;;;;28413:34;;28362:113;;;28508:6;28501:13;;;;;;27839:699;27714:843;27688:869;27642:915;28585:31;;;;;;;;;;;;;;27495:1129;;;;:::o;40336:652::-;40431:27;40460:23;40501:53;40557:15;40501:71;;40743:7;40737:4;40730:21;40778:22;40772:4;40765:36;40854:4;40848;40838:21;40815:44;;40950:19;40944:26;40925:45;;40681:300;40336:652;;;:::o;41101:645::-;41243:11;41405:15;41399:4;41395:26;41387:34;;41564:15;41553:9;41549:31;41536:44;;41711:15;41700:9;41697:30;41690:4;41679:9;41676:19;41673:55;41663:65;;41101:645;;;;;:::o;51929:159::-;;;;;:::o;50241:309::-;50376:7;50396:16;21547:3;50422:19;:40;;50396:67;;21547:3;50489:31;50500:4;50506:2;50510:9;50489:10;:31::i;:::-;50481:40;;:61;;50474:68;;;50241:309;;;;;:::o;30069:447::-;30149:14;30317:15;30310:5;30306:27;30297:36;;30491:5;30477:11;30453:22;30449:40;30446:51;30439:5;30436:62;30426:72;;30069:447;;;;:::o;52747:158::-;;;;;:::o;5488:98::-;5541:7;5568:10;5561:17;;5488:98;:::o;34892:104::-;34961:27;34971:2;34975:8;34961:27;;;;;;;;;;;;:9;:27::i;:::-;34892:104;;:::o;7893:120::-;7437:8;:6;:8::i;:::-;7429:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;7962:5:::1;7952:7;;:15;;;;;;;;;;;;;;;;;;7983:22;7992:12;:10;:12::i;:::-;7983:22;;;;;;:::i;:::-;;;;;;;;7893:120::o:0;10352:191::-;10426:16;10445:6;;;;;;;;;;;10426:25;;10471:8;10462:6;;:17;;;;;;;;;;;;;;;;;;10526:8;10495:40;;10516:8;10495:40;;;;;;;;;;;;10415:128;10352:191;:::o;7634:118::-;7160:8;:6;:8::i;:::-;7159:9;7151:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7704:4:::1;7694:7;;:14;;;;;;;;;;;;;;;;;;7724:20;7731:12;:10;:12::i;:::-;7724:20;;;;;;:::i;:::-;;;;;;;;7634:118::o:0;48751:716::-;48914:4;48960:2;48935:45;;;48981:19;:17;:19::i;:::-;49002:4;49008:7;49017:5;48935:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48931:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49235:1;49218:6;:13;:18;49214:235;;;49264:40;;;;;;;;;;;;;;49214:235;49407:6;49401:13;49392:6;49388:2;49384:15;49377:38;48931:529;49104:54;;;49094:64;;;:6;:64;;;;49087:71;;;48751:716;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;51126:147::-;51263:6;51126:147;;;;;:::o;35412:681::-;35535:19;35541:2;35545:8;35535:5;:19::i;:::-;35614:1;35596:2;:14;;;:19;35592:483;;35636:11;35650:13;;35636:27;;35682:13;35704:8;35698:3;:14;35682:30;;35731:233;35762:62;35801:1;35805:2;35809:7;;;;;;35818:5;35762:30;:62::i;:::-;35757:167;;35860:40;;;;;;;;;;;;;;35757:167;35959:3;35951:5;:11;35731:233;;36046:3;36029:13;;:20;36025:34;;36051:8;;;36025:34;35617:458;;35592:483;35412:681;;;:::o;36366:1529::-;36431:20;36454:13;;36431:36;;36496:1;36482:16;;:2;:16;;;36478:48;;;36507:19;;;;;;;;;;;;;;36478:48;36553:1;36541:8;:13;36537:44;;;36563:18;;;;;;;;;;;;;;36537:44;36594:61;36624:1;36628:2;36632:12;36646:8;36594:21;:61::i;:::-;37137:1;20513:2;37108:1;:25;;37107:31;37095:8;:44;37069:18;:22;37088:2;37069:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;37416:139;37453:2;37507:33;37530:1;37534:2;37538:1;37507:14;:33::i;:::-;37474:30;37495:8;37474:20;:30::i;:::-;:66;37416:18;:139::i;:::-;37382:17;:31;37400:12;37382:31;;;;;;;;;;;:173;;;;37572:15;37590:12;37572:30;;37617:11;37646:8;37631:12;:23;37617:37;;37669:101;37721:9;;;;;;37717:2;37696:35;;37713:1;37696:35;;;;;;;;;;;;37765:3;37755:7;:13;37669:101;;37802:3;37786:13;:19;;;;36843:974;;37827:60;37856:1;37860:2;37864:12;37878:8;37827:20;:60::i;:::-;36420:1475;36366:1529;;:::o;31899:322::-;31969:14;32200:1;32190:8;32187:15;32162:23;32158:45;32148:55;;31899:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8355:845::-;8458:3;8495:5;8489:12;8524:36;8550:9;8524:36;:::i;:::-;8576:89;8658:6;8653:3;8576:89;:::i;:::-;8569:96;;8696:1;8685:9;8681:17;8712:1;8707:137;;;;8858:1;8853:341;;;;8674:520;;8707:137;8791:4;8787:9;8776;8772:25;8767:3;8760:38;8827:6;8822:3;8818:16;8811:23;;8707:137;;8853:341;8920:38;8952:5;8920:38;:::i;:::-;8980:1;8994:154;9008:6;9005:1;9002:13;8994:154;;;9082:7;9076:14;9072:1;9067:3;9063:11;9056:35;9132:1;9123:7;9119:15;9108:26;;9030:4;9027:1;9023:12;9018:17;;8994:154;;;9177:6;9172:3;9168:16;9161:23;;8860:334;;8674:520;;8462:738;;8355:845;;;;:::o;9206:366::-;9348:3;9369:67;9433:2;9428:3;9369:67;:::i;:::-;9362:74;;9445:93;9534:3;9445:93;:::i;:::-;9563:2;9558:3;9554:12;9547:19;;9206:366;;;:::o;9578:::-;9720:3;9741:67;9805:2;9800:3;9741:67;:::i;:::-;9734:74;;9817:93;9906:3;9817:93;:::i;:::-;9935:2;9930:3;9926:12;9919:19;;9578:366;;;:::o;9950:::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:::-;10464:3;10485:67;10549:2;10544:3;10485:67;:::i;:::-;10478:74;;10561:93;10650:3;10561:93;:::i;:::-;10679:2;10674:3;10670:12;10663:19;;10322:366;;;:::o;10694:::-;10836:3;10857:67;10921:2;10916:3;10857:67;:::i;:::-;10850:74;;10933:93;11022:3;10933:93;:::i;:::-;11051:2;11046:3;11042:12;11035:19;;10694:366;;;:::o;11066:::-;11208:3;11229:67;11293:2;11288:3;11229:67;:::i;:::-;11222:74;;11305:93;11394:3;11305:93;:::i;:::-;11423:2;11418:3;11414:12;11407:19;;11066:366;;;:::o;11438:400::-;11598:3;11619:84;11701:1;11696:3;11619:84;:::i;:::-;11612:91;;11712:93;11801:3;11712:93;:::i;:::-;11830:1;11825:3;11821:11;11814:18;;11438:400;;;:::o;11844:366::-;11986:3;12007:67;12071:2;12066:3;12007:67;:::i;:::-;12000:74;;12083:93;12172:3;12083:93;:::i;:::-;12201:2;12196:3;12192:12;12185:19;;11844:366;;;:::o;12216:::-;12358:3;12379:67;12443:2;12438:3;12379:67;:::i;:::-;12372:74;;12455:93;12544:3;12455:93;:::i;:::-;12573:2;12568:3;12564:12;12557:19;;12216:366;;;:::o;12588:::-;12730:3;12751:67;12815:2;12810:3;12751:67;:::i;:::-;12744:74;;12827:93;12916:3;12827:93;:::i;:::-;12945:2;12940:3;12936:12;12929:19;;12588:366;;;:::o;12960:::-;13102:3;13123:67;13187:2;13182:3;13123:67;:::i;:::-;13116:74;;13199:93;13288:3;13199:93;:::i;:::-;13317:2;13312:3;13308:12;13301:19;;12960:366;;;:::o;13332:118::-;13419:24;13437:5;13419:24;:::i;:::-;13414:3;13407:37;13332:118;;:::o;13456:695::-;13734:3;13756:92;13844:3;13835:6;13756:92;:::i;:::-;13749:99;;13865:95;13956:3;13947:6;13865:95;:::i;:::-;13858:102;;13977:148;14121:3;13977:148;:::i;:::-;13970:155;;14142:3;14135:10;;13456:695;;;;;:::o;14157:222::-;14250:4;14288:2;14277:9;14273:18;14265:26;;14301:71;14369:1;14358:9;14354:17;14345:6;14301:71;:::i;:::-;14157:222;;;;:::o;14385:640::-;14580:4;14618:3;14607:9;14603:19;14595:27;;14632:71;14700:1;14689:9;14685:17;14676:6;14632:71;:::i;:::-;14713:72;14781:2;14770:9;14766:18;14757:6;14713:72;:::i;:::-;14795;14863:2;14852:9;14848:18;14839:6;14795:72;:::i;:::-;14914:9;14908:4;14904:20;14899:2;14888:9;14884:18;14877:48;14942:76;15013:4;15004:6;14942:76;:::i;:::-;14934:84;;14385:640;;;;;;;:::o;15031:210::-;15118:4;15156:2;15145:9;15141:18;15133:26;;15169:65;15231:1;15220:9;15216:17;15207:6;15169:65;:::i;:::-;15031:210;;;;:::o;15247:313::-;15360:4;15398:2;15387:9;15383:18;15375:26;;15447:9;15441:4;15437:20;15433:1;15422:9;15418:17;15411:47;15475:78;15548:4;15539:6;15475:78;:::i;:::-;15467:86;;15247:313;;;;:::o;15566:419::-;15732:4;15770:2;15759:9;15755:18;15747:26;;15819:9;15813:4;15809:20;15805:1;15794:9;15790:17;15783:47;15847:131;15973:4;15847:131;:::i;:::-;15839:139;;15566:419;;;:::o;15991:::-;16157:4;16195:2;16184:9;16180:18;16172:26;;16244:9;16238:4;16234:20;16230:1;16219:9;16215:17;16208:47;16272:131;16398:4;16272:131;:::i;:::-;16264:139;;15991:419;;;:::o;16416:::-;16582:4;16620:2;16609:9;16605:18;16597:26;;16669:9;16663:4;16659:20;16655:1;16644:9;16640:17;16633:47;16697:131;16823:4;16697:131;:::i;:::-;16689:139;;16416:419;;;:::o;16841:::-;17007:4;17045:2;17034:9;17030:18;17022:26;;17094:9;17088:4;17084:20;17080:1;17069:9;17065:17;17058:47;17122:131;17248:4;17122:131;:::i;:::-;17114:139;;16841:419;;;:::o;17266:::-;17432:4;17470:2;17459:9;17455:18;17447:26;;17519:9;17513:4;17509:20;17505:1;17494:9;17490:17;17483:47;17547:131;17673:4;17547:131;:::i;:::-;17539:139;;17266:419;;;:::o;17691:::-;17857:4;17895:2;17884:9;17880:18;17872:26;;17944:9;17938:4;17934:20;17930:1;17919:9;17915:17;17908:47;17972:131;18098:4;17972:131;:::i;:::-;17964:139;;17691:419;;;:::o;18116:::-;18282:4;18320:2;18309:9;18305:18;18297:26;;18369:9;18363:4;18359:20;18355:1;18344:9;18340:17;18333:47;18397:131;18523:4;18397:131;:::i;:::-;18389:139;;18116:419;;;:::o;18541:::-;18707:4;18745:2;18734:9;18730:18;18722:26;;18794:9;18788:4;18784:20;18780:1;18769:9;18765:17;18758:47;18822:131;18948:4;18822:131;:::i;:::-;18814:139;;18541:419;;;:::o;18966:::-;19132:4;19170:2;19159:9;19155:18;19147:26;;19219:9;19213:4;19209:20;19205:1;19194:9;19190:17;19183:47;19247:131;19373:4;19247:131;:::i;:::-;19239:139;;18966:419;;;:::o;19391:::-;19557:4;19595:2;19584:9;19580:18;19572:26;;19644:9;19638:4;19634:20;19630:1;19619:9;19615:17;19608:47;19672:131;19798:4;19672:131;:::i;:::-;19664:139;;19391:419;;;:::o;19816:222::-;19909:4;19947:2;19936:9;19932:18;19924:26;;19960:71;20028:1;20017:9;20013:17;20004:6;19960:71;:::i;:::-;19816:222;;;;:::o;20044:129::-;20078:6;20105:20;;:::i;:::-;20095:30;;20134:33;20162:4;20154:6;20134:33;:::i;:::-;20044:129;;;:::o;20179:75::-;20212:6;20245:2;20239:9;20229:19;;20179:75;:::o;20260:307::-;20321:4;20411:18;20403:6;20400:30;20397:56;;;20433:18;;:::i;:::-;20397:56;20471:29;20493:6;20471:29;:::i;:::-;20463:37;;20555:4;20549;20545:15;20537:23;;20260:307;;;:::o;20573:141::-;20622:4;20645:3;20637:11;;20668:3;20665:1;20658:14;20702:4;20699:1;20689:18;20681:26;;20573:141;;;:::o;20720:98::-;20771:6;20805:5;20799:12;20789:22;;20720:98;;;:::o;20824:99::-;20876:6;20910:5;20904:12;20894:22;;20824:99;;;:::o;20929:168::-;21012:11;21046:6;21041:3;21034:19;21086:4;21081:3;21077:14;21062:29;;20929:168;;;;:::o;21103:169::-;21187:11;21221:6;21216:3;21209:19;21261:4;21256:3;21252:14;21237:29;;21103:169;;;;:::o;21278:148::-;21380:11;21417:3;21402:18;;21278:148;;;;:::o;21432:305::-;21472:3;21491:20;21509:1;21491:20;:::i;:::-;21486:25;;21525:20;21543:1;21525:20;:::i;:::-;21520:25;;21679:1;21611:66;21607:74;21604:1;21601:81;21598:107;;;21685:18;;:::i;:::-;21598:107;21729:1;21726;21722:9;21715:16;;21432:305;;;;:::o;21743:185::-;21783:1;21800:20;21818:1;21800:20;:::i;:::-;21795:25;;21834:20;21852:1;21834:20;:::i;:::-;21829:25;;21873:1;21863:35;;21878:18;;:::i;:::-;21863:35;21920:1;21917;21913:9;21908:14;;21743:185;;;;:::o;21934:191::-;21974:4;21994:20;22012:1;21994:20;:::i;:::-;21989:25;;22028:20;22046:1;22028:20;:::i;:::-;22023:25;;22067:1;22064;22061:8;22058:34;;;22072:18;;:::i;:::-;22058:34;22117:1;22114;22110:9;22102:17;;21934:191;;;;:::o;22131:96::-;22168:7;22197:24;22215:5;22197:24;:::i;:::-;22186:35;;22131:96;;;:::o;22233:90::-;22267:7;22310:5;22303:13;22296:21;22285:32;;22233:90;;;:::o;22329:149::-;22365:7;22405:66;22398:5;22394:78;22383:89;;22329:149;;;:::o;22484:126::-;22521:7;22561:42;22554:5;22550:54;22539:65;;22484:126;;;:::o;22616:77::-;22653:7;22682:5;22671:16;;22616:77;;;:::o;22699:154::-;22783:6;22778:3;22773;22760:30;22845:1;22836:6;22831:3;22827:16;22820:27;22699:154;;;:::o;22859:307::-;22927:1;22937:113;22951:6;22948:1;22945:13;22937:113;;;23036:1;23031:3;23027:11;23021:18;23017:1;23012:3;23008:11;23001:39;22973:2;22970:1;22966:10;22961:15;;22937:113;;;23068:6;23065:1;23062:13;23059:101;;;23148:1;23139:6;23134:3;23130:16;23123:27;23059:101;22908:258;22859:307;;;:::o;23172:320::-;23216:6;23253:1;23247:4;23243:12;23233:22;;23300:1;23294:4;23290:12;23321:18;23311:81;;23377:4;23369:6;23365:17;23355:27;;23311:81;23439:2;23431:6;23428:14;23408:18;23405:38;23402:84;;;23458:18;;:::i;:::-;23402:84;23223:269;23172:320;;;:::o;23498:281::-;23581:27;23603:4;23581:27;:::i;:::-;23573:6;23569:40;23711:6;23699:10;23696:22;23675:18;23663:10;23660:34;23657:62;23654:88;;;23722:18;;:::i;:::-;23654:88;23762:10;23758:2;23751:22;23541:238;23498:281;;:::o;23785:233::-;23824:3;23847:24;23865:5;23847:24;:::i;:::-;23838:33;;23893:66;23886:5;23883:77;23880:103;;;23963:18;;:::i;:::-;23880:103;24010:1;24003:5;23999:13;23992:20;;23785:233;;;:::o;24024:176::-;24056:1;24073:20;24091:1;24073:20;:::i;:::-;24068:25;;24107:20;24125:1;24107:20;:::i;:::-;24102:25;;24146:1;24136:35;;24151:18;;:::i;:::-;24136:35;24192:1;24189;24185:9;24180:14;;24024:176;;;;:::o;24206:180::-;24254:77;24251:1;24244:88;24351:4;24348:1;24341:15;24375:4;24372:1;24365:15;24392:180;24440:77;24437:1;24430:88;24537:4;24534:1;24527:15;24561:4;24558:1;24551:15;24578:180;24626:77;24623:1;24616:88;24723:4;24720:1;24713:15;24747:4;24744:1;24737:15;24764:180;24812:77;24809:1;24802:88;24909:4;24906:1;24899:15;24933:4;24930:1;24923:15;24950:180;24998:77;24995:1;24988:88;25095:4;25092:1;25085:15;25119:4;25116:1;25109:15;25136:117;25245:1;25242;25235:12;25259:117;25368:1;25365;25358:12;25382:117;25491:1;25488;25481:12;25505:117;25614:1;25611;25604:12;25628:117;25737:1;25734;25727:12;25751:117;25860:1;25857;25850:12;25874:102;25915:6;25966:2;25962:7;25957:2;25950:5;25946:14;25942:28;25932:38;;25874:102;;;:::o;25982:170::-;26122:22;26118:1;26110:6;26106:14;26099:46;25982:170;:::o;26158:165::-;26298:17;26294:1;26286:6;26282:14;26275:41;26158:165;:::o;26329:225::-;26469:34;26465:1;26457:6;26453:14;26446:58;26538:8;26533:2;26525:6;26521:15;26514:33;26329:225;:::o;26560:166::-;26700:18;26696:1;26688:6;26684:14;26677:42;26560:166;:::o;26732:167::-;26872:19;26868:1;26860:6;26856:14;26849:43;26732:167;:::o;26905:166::-;27045:18;27041:1;27033:6;27029:14;27022:42;26905:166;:::o;27077:155::-;27217:7;27213:1;27205:6;27201:14;27194:31;27077:155;:::o;27238:182::-;27378:34;27374:1;27366:6;27362:14;27355:58;27238:182;:::o;27426:171::-;27566:23;27562:1;27554:6;27550:14;27543:47;27426:171;:::o;27603:168::-;27743:20;27739:1;27731:6;27727:14;27720:44;27603:168;:::o;27777:182::-;27917:34;27913:1;27905:6;27901:14;27894:58;27777:182;:::o;27965:122::-;28038:24;28056:5;28038:24;:::i;:::-;28031:5;28028:35;28018:63;;28077:1;28074;28067:12;28018:63;27965:122;:::o;28093:116::-;28163:21;28178:5;28163:21;:::i;:::-;28156:5;28153:32;28143:60;;28199:1;28196;28189:12;28143:60;28093:116;:::o;28215:120::-;28287:23;28304:5;28287:23;:::i;:::-;28280:5;28277:34;28267:62;;28325:1;28322;28315:12;28267:62;28215:120;:::o;28341:122::-;28414:24;28432:5;28414:24;:::i;:::-;28407:5;28404:35;28394:63;;28453:1;28450;28443:12;28394:63;28341:122;:::o
Swarm Source
ipfs://ab47c5e11607ccddbefea3920abceed8bfb1eecebc441d6532f15ebe2cff670a
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.