Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,199 MG
Holders
641
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MutantGoblins
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-24 */ /** *Submitted for verification at Etherscan.io on 2022-05-23 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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/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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts 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; } function Owner() public view virtual returns (address) { return 0xCC4AB9D97E0ecac70aeC255493ee92844EA985c1; } /** * @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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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 Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ 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(); } } /** * 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 See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if (!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) 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 && !_ownerships[tokenId].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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 {} } // File: chae.sol pragma solidity ^0.8.0; contract MutantGoblins is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bytes32 public merkleRoot; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost; uint256 public maxSupply; bool public paused = false; bool public revealed = true; mapping(address => uint256) private _walletMintedCount; constructor(uint256 _cost, uint256 _maxSupply) ERC721A("Mutant Goblins", "MG") { setCost(_cost); maxSupply = _maxSupply; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0, "Invalid mint amount!"); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!" ); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); uint256 payForCount = _mintAmount; if (_walletMintedCount[msg.sender] == 0) { payForCount--; } require( msg.value >= payForCount * cost, "MutantGoblins: Ether value sent is not sufficient" ); _walletMintedCount[msg.sender] += _mintAmount; _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; address latestOwnerAddress; while ( ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex ) { TokenOwnership memory ownership = _ownerships[currentTokenId]; if (!ownership.burned) { if (ownership.addr != address(0)) { latestOwnerAddress = ownership.addr; } if (latestOwnerAddress == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } } currentTokenId++; } return ownedTokenIds; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "MutantGoblins: URI query for nonexistent token" ); if (revealed == true) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _tokenId.toString(), uriSuffix ) ) : ""; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(Owner()).call{value: address(this).balance}(""); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function mintedCount(address owner) external view returns (uint256) { return _walletMintedCount[owner]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600b90805190602001906200002b9291906200037b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000799291906200037b565b506000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000bd57600080fd5b5060405162004968380380620049688339818101604052810190620000e3919062000442565b6040518060400160405280600e81526020017f4d7574616e7420476f626c696e730000000000000000000000000000000000008152506040518060400160405280600281526020017f4d470000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001679291906200037b565b508060039080519060200190620001809291906200037b565b5062000191620001e160201b60201c565b6000819055505050620001b9620001ad620001ea60201b60201c565b620001f260201b60201c565b6001600981905550620001d282620002b860201b60201c565b80600f8190555050506200059a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c8620001ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ee6200035160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e90620004b0565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038990620004ed565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b6000815190506200043c8162000580565b92915050565b600080604083850312156200045c576200045b62000552565b5b60006200046c858286016200042b565b92505060206200047f858286016200042b565b9150509250929050565b600062000498602083620004d2565b9150620004a58262000557565b602082019050919050565b60006020820190508181036000830152620004cb8162000489565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200050657607f821691505b602082108114156200051d576200051c62000523565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200058b81620004e3565b81146200059757600080fd5b50565b6143be80620005aa6000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063a45ba8e7116100ab578063e0a808531161006f578063e0a8085314610808578063e985e9c514610831578063efbd73f41461086e578063f2fde38b14610897578063fddcb5ea146108c057610230565b8063a45ba8e714610721578063b4a99a4e1461074c578063b88d4fde14610777578063c87b56dd146107a0578063d5abeb01146107dd57610230565b80637ec4a659116100f25780637ec4a6591461065d5780638da5cb5b1461068657806395d89b41146106b1578063a0712d68146106dc578063a22cb465146106f857610230565b80636352211e1461057a5780636f8b44b0146105b757806370a08231146105e0578063715018a61461061d5780637cb647591461063457610230565b80632eb4a7ab116101bc5780634fdd43cb116101805780634fdd43cb146104a557806351830227146104ce5780635503a0e8146104f95780635c975abb1461052457806362b99ad41461054f57610230565b80632eb4a7ab146103d45780633ccfd60b146103ff57806342842e0e14610416578063438b63001461043f57806344a0d68a1461047c57610230565b806313faede61161020357806313faede61461030357806316ba10e01461032e57806316c38b3c1461035757806318160ddd1461038057806323b872dd146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906135d9565b6108fd565b6040516102699190613ad6565b60405180910390f35b34801561027e57600080fd5b506102876109df565b6040516102949190613b0c565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061367c565b610a71565b6040516102d19190613a4d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061353f565b610aed565b005b34801561030f57600080fd5b50610318610bf2565b6040516103259190613c2e565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613633565b610bf8565b005b34801561036357600080fd5b5061037e6004803603810190610379919061357f565b610c8e565b005b34801561038c57600080fd5b50610395610d27565b6040516103a29190613c2e565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190613429565b610d3e565b005b3480156103e057600080fd5b506103e9610d4e565b6040516103f69190613af1565b60405180910390f35b34801561040b57600080fd5b50610414610d54565b005b34801561042257600080fd5b5061043d60048036038101906104389190613429565b610ea6565b005b34801561044b57600080fd5b50610466600480360381019061046191906133bc565b610ec6565b6040516104739190613ab4565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e919061367c565b6110da565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613633565b611160565b005b3480156104da57600080fd5b506104e36111f6565b6040516104f09190613ad6565b60405180910390f35b34801561050557600080fd5b5061050e611209565b60405161051b9190613b0c565b60405180910390f35b34801561053057600080fd5b50610539611297565b6040516105469190613ad6565b60405180910390f35b34801561055b57600080fd5b506105646112aa565b6040516105719190613b0c565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061367c565b611338565b6040516105ae9190613a4d565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061367c565b61134e565b005b3480156105ec57600080fd5b50610607600480360381019061060291906133bc565b6113d4565b6040516106149190613c2e565b60405180910390f35b34801561062957600080fd5b506106326114a4565b005b34801561064057600080fd5b5061065b600480360381019061065691906135ac565b61152c565b005b34801561066957600080fd5b50610684600480360381019061067f9190613633565b6115b2565b005b34801561069257600080fd5b5061069b611648565b6040516106a89190613a4d565b60405180910390f35b3480156106bd57600080fd5b506106c6611672565b6040516106d39190613b0c565b60405180910390f35b6106f660048036038101906106f1919061367c565b611704565b005b34801561070457600080fd5b5061071f600480360381019061071a91906134ff565b611907565b005b34801561072d57600080fd5b50610736611a7f565b6040516107439190613b0c565b60405180910390f35b34801561075857600080fd5b50610761611b0d565b60405161076e9190613a4d565b60405180910390f35b34801561078357600080fd5b5061079e6004803603810190610799919061347c565b611b29565b005b3480156107ac57600080fd5b506107c760048036038101906107c2919061367c565b611ba1565b6040516107d49190613b0c565b60405180910390f35b3480156107e957600080fd5b506107f2611cfa565b6040516107ff9190613c2e565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a919061357f565b611d00565b005b34801561083d57600080fd5b50610858600480360381019061085391906133e9565b611d99565b6040516108659190613ad6565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906136a9565b611e2d565b005b3480156108a357600080fd5b506108be60048036038101906108b991906133bc565b611f53565b005b3480156108cc57600080fd5b506108e760048036038101906108e291906133bc565b61204b565b6040516108f49190613c2e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d857506109d782612094565b5b9050919050565b6060600280546109ee90613f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a90613f6b565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b5050505050905090565b6000610a7c826120fe565b610ab2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af882611338565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7f61214c565b73ffffffffffffffffffffffffffffffffffffffff1614610be257610bab81610ba661214c565b611d99565b610be1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bed838383612154565b505050565b600e5481565b610c0061214c565b73ffffffffffffffffffffffffffffffffffffffff16610c1e611648565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90613bae565b60405180910390fd5b80600c9080519060200190610c8a929190613178565b5050565b610c9661214c565b73ffffffffffffffffffffffffffffffffffffffff16610cb4611648565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613bae565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610d31612206565b6001546000540303905090565b610d4983838361220f565b505050565b600a5481565b610d5c61214c565b73ffffffffffffffffffffffffffffffffffffffff16610d7a611648565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790613bae565b60405180910390fd5b60026009541415610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90613c0e565b60405180910390fd5b60026009819055506000610e28611b0d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e4b90613a38565b60006040518083038185875af1925050503d8060008114610e88576040519150601f19603f3d011682016040523d82523d6000602084013e610e8d565b606091505b5050905080610e9b57600080fd5b506001600981905550565b610ec183838360405180602001604052806000815250611b29565b505050565b60606000610ed3836113d4565b905060008167ffffffffffffffff811115610ef157610ef0614104565b5b604051908082528060200260200182016040528015610f1f5781602001602082028036833780820191505090505b5090506000610f2c612206565b90506000805b8482108015610f42575060005483105b156110cd576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110b957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461105557806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b8578385848151811061109d5761109c6140d5565b5b60200260200101818152505082806110b490613fce565b9350505b5b83806110c490613fce565b94505050610f32565b8395505050505050919050565b6110e261214c565b73ffffffffffffffffffffffffffffffffffffffff16611100611648565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613bae565b60405180910390fd5b80600e8190555050565b61116861214c565b73ffffffffffffffffffffffffffffffffffffffff16611186611648565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613bae565b60405180910390fd5b80600d90805190602001906111f2929190613178565b5050565b601060019054906101000a900460ff1681565b600c805461121690613f6b565b80601f016020809104026020016040519081016040528092919081815260200182805461124290613f6b565b801561128f5780601f106112645761010080835404028352916020019161128f565b820191906000526020600020905b81548152906001019060200180831161127257829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600b80546112b790613f6b565b80601f01602080910402602001604051908101604052809291908181526020018280546112e390613f6b565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b505050505081565b6000611343826126c5565b600001519050919050565b61135661214c565b73ffffffffffffffffffffffffffffffffffffffff16611374611648565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613bae565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114ac61214c565b73ffffffffffffffffffffffffffffffffffffffff166114ca611648565b73ffffffffffffffffffffffffffffffffffffffff1614611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790613bae565b60405180910390fd5b61152a6000612950565b565b61153461214c565b73ffffffffffffffffffffffffffffffffffffffff16611552611648565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613bae565b60405180910390fd5b80600a8190555050565b6115ba61214c565b73ffffffffffffffffffffffffffffffffffffffff166115d8611648565b73ffffffffffffffffffffffffffffffffffffffff161461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590613bae565b60405180910390fd5b80600b9080519060200190611644929190613178565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461168190613f6b565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad90613f6b565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b5050505050905090565b8060008111611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613b4e565b60405180910390fd5b600f5481611754610d27565b61175e9190613d6c565b111561179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690613bee565b60405180910390fd5b601060009054906101000a900460ff16156117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690613bce565b60405180910390fd5b60008290506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561184b57808061184790613f41565b9150505b600e54816118599190613df3565b34101561189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290613b8e565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118ea9190613d6c565b925050819055506119026118fc61214c565b84612a16565b505050565b61190f61214c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061198161214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2e61214c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a739190613ad6565b60405180910390a35050565b600d8054611a8c90613f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab890613f6b565b8015611b055780601f10611ada57610100808354040283529160200191611b05565b820191906000526020600020905b815481529060010190602001808311611ae857829003601f168201915b505050505081565b600073cc4ab9d97e0ecac70aec255493ee92844ea985c1905090565b611b3484848461220f565b611b538373ffffffffffffffffffffffffffffffffffffffff16612a34565b15611b9b57611b6484848484612a57565b611b9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611bac826120fe565b611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290613b6e565b60405180910390fd5b60011515601060019054906101000a900460ff1615151415611c9957600d8054611c1490613f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4090613f6b565b8015611c8d5780601f10611c6257610100808354040283529160200191611c8d565b820191906000526020600020905b815481529060010190602001808311611c7057829003601f168201915b50505050509050611cf5565b6000611ca3612bb7565b90506000815111611cc35760405180602001604052806000815250611cf1565b80611ccd84612c49565b600c604051602001611ce193929190613a07565b6040516020818303038152906040525b9150505b919050565b600f5481565b611d0861214c565b73ffffffffffffffffffffffffffffffffffffffff16611d26611648565b73ffffffffffffffffffffffffffffffffffffffff1614611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390613bae565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613b4e565b60405180910390fd5b600f5481611e7d610d27565b611e879190613d6c565b1115611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90613bee565b60405180910390fd5b611ed061214c565b73ffffffffffffffffffffffffffffffffffffffff16611eee611648565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613bae565b60405180910390fd5b611f4e8284612a16565b505050565b611f5b61214c565b73ffffffffffffffffffffffffffffffffffffffff16611f79611648565b73ffffffffffffffffffffffffffffffffffffffff1614611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690613bae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690613b2e565b60405180910390fd5b61204881612950565b50565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612109612206565b11158015612118575060005482105b8015612145575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061221a826126c5565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612285576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122a661214c565b73ffffffffffffffffffffffffffffffffffffffff1614806122d557506122d4856122cf61214c565b611d99565b5b8061231a57506122e361214c565b73ffffffffffffffffffffffffffffffffffffffff1661230284610a71565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612353576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123c78585856001612daa565b6123d360008487612154565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561265357600054821461265257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126be8585856001612db0565b5050505050565b6126cd6131fe565b6000829050806126db612206565b1161291957600054811015612918576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161291657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127fa57809250505061294b565b5b60011561291557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461291057809250505061294b565b6127fb565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a30828260405180602001604052806000815250612db6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a7d61214c565b8786866040518563ffffffff1660e01b8152600401612a9f9493929190613a68565b602060405180830381600087803b158015612ab957600080fd5b505af1925050508015612aea57506040513d601f19601f82011682018060405250810190612ae79190613606565b60015b612b64573d8060008114612b1a576040519150601f19603f3d011682016040523d82523d6000602084013e612b1f565b606091505b50600081511415612b5c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612bc690613f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf290613f6b565b8015612c3f5780601f10612c1457610100808354040283529160200191612c3f565b820191906000526020600020905b815481529060010190602001808311612c2257829003601f168201915b5050505050905090565b60606000821415612c91576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da5565b600082905060005b60008214612cc3578080612cac90613fce565b915050600a82612cbc9190613dc2565b9150612c99565b60008167ffffffffffffffff811115612cdf57612cde614104565b5b6040519080825280601f01601f191660200182016040528015612d115781602001600182028036833780820191505090505b5090505b60008514612d9e57600182612d2a9190613e4d565b9150600a85612d399190614017565b6030612d459190613d6c565b60f81b818381518110612d5b57612d5a6140d5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d979190613dc2565b9450612d15565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e23576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612e5e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e6b6000858386612daa565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061302c8673ffffffffffffffffffffffffffffffffffffffff16612a34565b156130f1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130a16000878480600101955087612a57565b6130d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130325782600054146130ec57600080fd5b61315c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130f2575b8160008190555050506131726000858386612db0565b50505050565b82805461318490613f6b565b90600052602060002090601f0160209004810192826131a657600085556131ed565b82601f106131bf57805160ff19168380011785556131ed565b828001600101855582156131ed579182015b828111156131ec5782518255916020019190600101906131d1565b5b5090506131fa9190613241565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561325a576000816000905550600101613242565b5090565b600061327161326c84613c6e565b613c49565b90508281526020810184848401111561328d5761328c614138565b5b613298848285613eff565b509392505050565b60006132b36132ae84613c9f565b613c49565b9050828152602081018484840111156132cf576132ce614138565b5b6132da848285613eff565b509392505050565b6000813590506132f181614315565b92915050565b6000813590506133068161432c565b92915050565b60008135905061331b81614343565b92915050565b6000813590506133308161435a565b92915050565b6000815190506133458161435a565b92915050565b600082601f8301126133605761335f614133565b5b813561337084826020860161325e565b91505092915050565b600082601f83011261338e5761338d614133565b5b813561339e8482602086016132a0565b91505092915050565b6000813590506133b681614371565b92915050565b6000602082840312156133d2576133d1614142565b5b60006133e0848285016132e2565b91505092915050565b60008060408385031215613400576133ff614142565b5b600061340e858286016132e2565b925050602061341f858286016132e2565b9150509250929050565b60008060006060848603121561344257613441614142565b5b6000613450868287016132e2565b9350506020613461868287016132e2565b9250506040613472868287016133a7565b9150509250925092565b6000806000806080858703121561349657613495614142565b5b60006134a4878288016132e2565b94505060206134b5878288016132e2565b93505060406134c6878288016133a7565b925050606085013567ffffffffffffffff8111156134e7576134e661413d565b5b6134f38782880161334b565b91505092959194509250565b6000806040838503121561351657613515614142565b5b6000613524858286016132e2565b9250506020613535858286016132f7565b9150509250929050565b6000806040838503121561355657613555614142565b5b6000613564858286016132e2565b9250506020613575858286016133a7565b9150509250929050565b60006020828403121561359557613594614142565b5b60006135a3848285016132f7565b91505092915050565b6000602082840312156135c2576135c1614142565b5b60006135d08482850161330c565b91505092915050565b6000602082840312156135ef576135ee614142565b5b60006135fd84828501613321565b91505092915050565b60006020828403121561361c5761361b614142565b5b600061362a84828501613336565b91505092915050565b60006020828403121561364957613648614142565b5b600082013567ffffffffffffffff8111156136675761366661413d565b5b61367384828501613379565b91505092915050565b60006020828403121561369257613691614142565b5b60006136a0848285016133a7565b91505092915050565b600080604083850312156136c0576136bf614142565b5b60006136ce858286016133a7565b92505060206136df858286016132e2565b9150509250929050565b60006136f583836139e9565b60208301905092915050565b61370a81613e81565b82525050565b600061371b82613cf5565b6137258185613d23565b935061373083613cd0565b8060005b8381101561376157815161374888826136e9565b975061375383613d16565b925050600181019050613734565b5085935050505092915050565b61377781613e93565b82525050565b61378681613e9f565b82525050565b600061379782613d00565b6137a18185613d34565b93506137b1818560208601613f0e565b6137ba81614147565b840191505092915050565b60006137d082613d0b565b6137da8185613d50565b93506137ea818560208601613f0e565b6137f381614147565b840191505092915050565b600061380982613d0b565b6138138185613d61565b9350613823818560208601613f0e565b80840191505092915050565b6000815461383c81613f6b565b6138468186613d61565b945060018216600081146138615760018114613872576138a5565b60ff198316865281860193506138a5565b61387b85613ce0565b60005b8381101561389d5781548189015260018201915060208101905061387e565b838801955050505b50505092915050565b60006138bb602683613d50565b91506138c682614158565b604082019050919050565b60006138de601483613d50565b91506138e9826141a7565b602082019050919050565b6000613901602e83613d50565b915061390c826141d0565b604082019050919050565b6000613924603183613d50565b915061392f8261421f565b604082019050919050565b6000613947602083613d50565b91506139528261426e565b602082019050919050565b600061396a601783613d50565b915061397582614297565b602082019050919050565b600061398d600083613d45565b9150613998826142c0565b600082019050919050565b60006139b0601483613d50565b91506139bb826142c3565b602082019050919050565b60006139d3601f83613d50565b91506139de826142ec565b602082019050919050565b6139f281613ef5565b82525050565b613a0181613ef5565b82525050565b6000613a1382866137fe565b9150613a1f82856137fe565b9150613a2b828461382f565b9150819050949350505050565b6000613a4382613980565b9150819050919050565b6000602082019050613a626000830184613701565b92915050565b6000608082019050613a7d6000830187613701565b613a8a6020830186613701565b613a9760408301856139f8565b8181036060830152613aa9818461378c565b905095945050505050565b60006020820190508181036000830152613ace8184613710565b905092915050565b6000602082019050613aeb600083018461376e565b92915050565b6000602082019050613b06600083018461377d565b92915050565b60006020820190508181036000830152613b2681846137c5565b905092915050565b60006020820190508181036000830152613b47816138ae565b9050919050565b60006020820190508181036000830152613b67816138d1565b9050919050565b60006020820190508181036000830152613b87816138f4565b9050919050565b60006020820190508181036000830152613ba781613917565b9050919050565b60006020820190508181036000830152613bc78161393a565b9050919050565b60006020820190508181036000830152613be78161395d565b9050919050565b60006020820190508181036000830152613c07816139a3565b9050919050565b60006020820190508181036000830152613c27816139c6565b9050919050565b6000602082019050613c4360008301846139f8565b92915050565b6000613c53613c64565b9050613c5f8282613f9d565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8957613c88614104565b5b613c9282614147565b9050602081019050919050565b600067ffffffffffffffff821115613cba57613cb9614104565b5b613cc382614147565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d7782613ef5565b9150613d8283613ef5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613db757613db6614048565b5b828201905092915050565b6000613dcd82613ef5565b9150613dd883613ef5565b925082613de857613de7614077565b5b828204905092915050565b6000613dfe82613ef5565b9150613e0983613ef5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e4257613e41614048565b5b828202905092915050565b6000613e5882613ef5565b9150613e6383613ef5565b925082821015613e7657613e75614048565b5b828203905092915050565b6000613e8c82613ed5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f2c578082015181840152602081019050613f11565b83811115613f3b576000848401525b50505050565b6000613f4c82613ef5565b91506000821415613f6057613f5f614048565b5b600182039050919050565b60006002820490506001821680613f8357607f821691505b60208210811415613f9757613f966140a6565b5b50919050565b613fa682614147565b810181811067ffffffffffffffff82111715613fc557613fc4614104565b5b80604052505050565b6000613fd982613ef5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561400c5761400b614048565b5b600182019050919050565b600061402282613ef5565b915061402d83613ef5565b92508261403d5761403c614077565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4d7574616e74476f626c696e733a2055524920717565727920666f72206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4d7574616e74476f626c696e733a2045746865722076616c75652073656e742060008201527f6973206e6f742073756666696369656e74000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61431e81613e81565b811461432957600080fd5b50565b61433581613e93565b811461434057600080fd5b50565b61434c81613e9f565b811461435757600080fd5b50565b61436381613ea9565b811461436e57600080fd5b50565b61437a81613ef5565b811461438557600080fd5b5056fea26469706673582212209d62a146d6758dbab4b5217dcc842ad47aba29ce7560147b4ffcf0db8b4df45464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode
0x6080604052600436106102305760003560e01c80636352211e1161012e578063a45ba8e7116100ab578063e0a808531161006f578063e0a8085314610808578063e985e9c514610831578063efbd73f41461086e578063f2fde38b14610897578063fddcb5ea146108c057610230565b8063a45ba8e714610721578063b4a99a4e1461074c578063b88d4fde14610777578063c87b56dd146107a0578063d5abeb01146107dd57610230565b80637ec4a659116100f25780637ec4a6591461065d5780638da5cb5b1461068657806395d89b41146106b1578063a0712d68146106dc578063a22cb465146106f857610230565b80636352211e1461057a5780636f8b44b0146105b757806370a08231146105e0578063715018a61461061d5780637cb647591461063457610230565b80632eb4a7ab116101bc5780634fdd43cb116101805780634fdd43cb146104a557806351830227146104ce5780635503a0e8146104f95780635c975abb1461052457806362b99ad41461054f57610230565b80632eb4a7ab146103d45780633ccfd60b146103ff57806342842e0e14610416578063438b63001461043f57806344a0d68a1461047c57610230565b806313faede61161020357806313faede61461030357806316ba10e01461032e57806316c38b3c1461035757806318160ddd1461038057806323b872dd146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906135d9565b6108fd565b6040516102699190613ad6565b60405180910390f35b34801561027e57600080fd5b506102876109df565b6040516102949190613b0c565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061367c565b610a71565b6040516102d19190613a4d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061353f565b610aed565b005b34801561030f57600080fd5b50610318610bf2565b6040516103259190613c2e565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613633565b610bf8565b005b34801561036357600080fd5b5061037e6004803603810190610379919061357f565b610c8e565b005b34801561038c57600080fd5b50610395610d27565b6040516103a29190613c2e565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190613429565b610d3e565b005b3480156103e057600080fd5b506103e9610d4e565b6040516103f69190613af1565b60405180910390f35b34801561040b57600080fd5b50610414610d54565b005b34801561042257600080fd5b5061043d60048036038101906104389190613429565b610ea6565b005b34801561044b57600080fd5b50610466600480360381019061046191906133bc565b610ec6565b6040516104739190613ab4565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e919061367c565b6110da565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613633565b611160565b005b3480156104da57600080fd5b506104e36111f6565b6040516104f09190613ad6565b60405180910390f35b34801561050557600080fd5b5061050e611209565b60405161051b9190613b0c565b60405180910390f35b34801561053057600080fd5b50610539611297565b6040516105469190613ad6565b60405180910390f35b34801561055b57600080fd5b506105646112aa565b6040516105719190613b0c565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061367c565b611338565b6040516105ae9190613a4d565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061367c565b61134e565b005b3480156105ec57600080fd5b50610607600480360381019061060291906133bc565b6113d4565b6040516106149190613c2e565b60405180910390f35b34801561062957600080fd5b506106326114a4565b005b34801561064057600080fd5b5061065b600480360381019061065691906135ac565b61152c565b005b34801561066957600080fd5b50610684600480360381019061067f9190613633565b6115b2565b005b34801561069257600080fd5b5061069b611648565b6040516106a89190613a4d565b60405180910390f35b3480156106bd57600080fd5b506106c6611672565b6040516106d39190613b0c565b60405180910390f35b6106f660048036038101906106f1919061367c565b611704565b005b34801561070457600080fd5b5061071f600480360381019061071a91906134ff565b611907565b005b34801561072d57600080fd5b50610736611a7f565b6040516107439190613b0c565b60405180910390f35b34801561075857600080fd5b50610761611b0d565b60405161076e9190613a4d565b60405180910390f35b34801561078357600080fd5b5061079e6004803603810190610799919061347c565b611b29565b005b3480156107ac57600080fd5b506107c760048036038101906107c2919061367c565b611ba1565b6040516107d49190613b0c565b60405180910390f35b3480156107e957600080fd5b506107f2611cfa565b6040516107ff9190613c2e565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a919061357f565b611d00565b005b34801561083d57600080fd5b50610858600480360381019061085391906133e9565b611d99565b6040516108659190613ad6565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906136a9565b611e2d565b005b3480156108a357600080fd5b506108be60048036038101906108b991906133bc565b611f53565b005b3480156108cc57600080fd5b506108e760048036038101906108e291906133bc565b61204b565b6040516108f49190613c2e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d857506109d782612094565b5b9050919050565b6060600280546109ee90613f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a90613f6b565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b5050505050905090565b6000610a7c826120fe565b610ab2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af882611338565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7f61214c565b73ffffffffffffffffffffffffffffffffffffffff1614610be257610bab81610ba661214c565b611d99565b610be1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bed838383612154565b505050565b600e5481565b610c0061214c565b73ffffffffffffffffffffffffffffffffffffffff16610c1e611648565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90613bae565b60405180910390fd5b80600c9080519060200190610c8a929190613178565b5050565b610c9661214c565b73ffffffffffffffffffffffffffffffffffffffff16610cb4611648565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613bae565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610d31612206565b6001546000540303905090565b610d4983838361220f565b505050565b600a5481565b610d5c61214c565b73ffffffffffffffffffffffffffffffffffffffff16610d7a611648565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790613bae565b60405180910390fd5b60026009541415610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90613c0e565b60405180910390fd5b60026009819055506000610e28611b0d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e4b90613a38565b60006040518083038185875af1925050503d8060008114610e88576040519150601f19603f3d011682016040523d82523d6000602084013e610e8d565b606091505b5050905080610e9b57600080fd5b506001600981905550565b610ec183838360405180602001604052806000815250611b29565b505050565b60606000610ed3836113d4565b905060008167ffffffffffffffff811115610ef157610ef0614104565b5b604051908082528060200260200182016040528015610f1f5781602001602082028036833780820191505090505b5090506000610f2c612206565b90506000805b8482108015610f42575060005483105b156110cd576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110b957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461105557806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b8578385848151811061109d5761109c6140d5565b5b60200260200101818152505082806110b490613fce565b9350505b5b83806110c490613fce565b94505050610f32565b8395505050505050919050565b6110e261214c565b73ffffffffffffffffffffffffffffffffffffffff16611100611648565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613bae565b60405180910390fd5b80600e8190555050565b61116861214c565b73ffffffffffffffffffffffffffffffffffffffff16611186611648565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613bae565b60405180910390fd5b80600d90805190602001906111f2929190613178565b5050565b601060019054906101000a900460ff1681565b600c805461121690613f6b565b80601f016020809104026020016040519081016040528092919081815260200182805461124290613f6b565b801561128f5780601f106112645761010080835404028352916020019161128f565b820191906000526020600020905b81548152906001019060200180831161127257829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600b80546112b790613f6b565b80601f01602080910402602001604051908101604052809291908181526020018280546112e390613f6b565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b505050505081565b6000611343826126c5565b600001519050919050565b61135661214c565b73ffffffffffffffffffffffffffffffffffffffff16611374611648565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613bae565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114ac61214c565b73ffffffffffffffffffffffffffffffffffffffff166114ca611648565b73ffffffffffffffffffffffffffffffffffffffff1614611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790613bae565b60405180910390fd5b61152a6000612950565b565b61153461214c565b73ffffffffffffffffffffffffffffffffffffffff16611552611648565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613bae565b60405180910390fd5b80600a8190555050565b6115ba61214c565b73ffffffffffffffffffffffffffffffffffffffff166115d8611648565b73ffffffffffffffffffffffffffffffffffffffff161461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590613bae565b60405180910390fd5b80600b9080519060200190611644929190613178565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461168190613f6b565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad90613f6b565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b5050505050905090565b8060008111611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613b4e565b60405180910390fd5b600f5481611754610d27565b61175e9190613d6c565b111561179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690613bee565b60405180910390fd5b601060009054906101000a900460ff16156117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690613bce565b60405180910390fd5b60008290506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561184b57808061184790613f41565b9150505b600e54816118599190613df3565b34101561189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290613b8e565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118ea9190613d6c565b925050819055506119026118fc61214c565b84612a16565b505050565b61190f61214c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061198161214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2e61214c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a739190613ad6565b60405180910390a35050565b600d8054611a8c90613f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab890613f6b565b8015611b055780601f10611ada57610100808354040283529160200191611b05565b820191906000526020600020905b815481529060010190602001808311611ae857829003601f168201915b505050505081565b600073cc4ab9d97e0ecac70aec255493ee92844ea985c1905090565b611b3484848461220f565b611b538373ffffffffffffffffffffffffffffffffffffffff16612a34565b15611b9b57611b6484848484612a57565b611b9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611bac826120fe565b611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290613b6e565b60405180910390fd5b60011515601060019054906101000a900460ff1615151415611c9957600d8054611c1490613f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4090613f6b565b8015611c8d5780601f10611c6257610100808354040283529160200191611c8d565b820191906000526020600020905b815481529060010190602001808311611c7057829003601f168201915b50505050509050611cf5565b6000611ca3612bb7565b90506000815111611cc35760405180602001604052806000815250611cf1565b80611ccd84612c49565b600c604051602001611ce193929190613a07565b6040516020818303038152906040525b9150505b919050565b600f5481565b611d0861214c565b73ffffffffffffffffffffffffffffffffffffffff16611d26611648565b73ffffffffffffffffffffffffffffffffffffffff1614611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390613bae565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613b4e565b60405180910390fd5b600f5481611e7d610d27565b611e879190613d6c565b1115611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90613bee565b60405180910390fd5b611ed061214c565b73ffffffffffffffffffffffffffffffffffffffff16611eee611648565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613bae565b60405180910390fd5b611f4e8284612a16565b505050565b611f5b61214c565b73ffffffffffffffffffffffffffffffffffffffff16611f79611648565b73ffffffffffffffffffffffffffffffffffffffff1614611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690613bae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690613b2e565b60405180910390fd5b61204881612950565b50565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612109612206565b11158015612118575060005482105b8015612145575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061221a826126c5565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612285576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122a661214c565b73ffffffffffffffffffffffffffffffffffffffff1614806122d557506122d4856122cf61214c565b611d99565b5b8061231a57506122e361214c565b73ffffffffffffffffffffffffffffffffffffffff1661230284610a71565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612353576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123c78585856001612daa565b6123d360008487612154565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561265357600054821461265257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126be8585856001612db0565b5050505050565b6126cd6131fe565b6000829050806126db612206565b1161291957600054811015612918576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161291657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127fa57809250505061294b565b5b60011561291557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461291057809250505061294b565b6127fb565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a30828260405180602001604052806000815250612db6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a7d61214c565b8786866040518563ffffffff1660e01b8152600401612a9f9493929190613a68565b602060405180830381600087803b158015612ab957600080fd5b505af1925050508015612aea57506040513d601f19601f82011682018060405250810190612ae79190613606565b60015b612b64573d8060008114612b1a576040519150601f19603f3d011682016040523d82523d6000602084013e612b1f565b606091505b50600081511415612b5c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612bc690613f6b565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf290613f6b565b8015612c3f5780601f10612c1457610100808354040283529160200191612c3f565b820191906000526020600020905b815481529060010190602001808311612c2257829003601f168201915b5050505050905090565b60606000821415612c91576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da5565b600082905060005b60008214612cc3578080612cac90613fce565b915050600a82612cbc9190613dc2565b9150612c99565b60008167ffffffffffffffff811115612cdf57612cde614104565b5b6040519080825280601f01601f191660200182016040528015612d115781602001600182028036833780820191505090505b5090505b60008514612d9e57600182612d2a9190613e4d565b9150600a85612d399190614017565b6030612d459190613d6c565b60f81b818381518110612d5b57612d5a6140d5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d979190613dc2565b9450612d15565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e23576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612e5e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e6b6000858386612daa565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061302c8673ffffffffffffffffffffffffffffffffffffffff16612a34565b156130f1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130a16000878480600101955087612a57565b6130d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130325782600054146130ec57600080fd5b61315c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130f2575b8160008190555050506131726000858386612db0565b50505050565b82805461318490613f6b565b90600052602060002090601f0160209004810192826131a657600085556131ed565b82601f106131bf57805160ff19168380011785556131ed565b828001600101855582156131ed579182015b828111156131ec5782518255916020019190600101906131d1565b5b5090506131fa9190613241565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561325a576000816000905550600101613242565b5090565b600061327161326c84613c6e565b613c49565b90508281526020810184848401111561328d5761328c614138565b5b613298848285613eff565b509392505050565b60006132b36132ae84613c9f565b613c49565b9050828152602081018484840111156132cf576132ce614138565b5b6132da848285613eff565b509392505050565b6000813590506132f181614315565b92915050565b6000813590506133068161432c565b92915050565b60008135905061331b81614343565b92915050565b6000813590506133308161435a565b92915050565b6000815190506133458161435a565b92915050565b600082601f8301126133605761335f614133565b5b813561337084826020860161325e565b91505092915050565b600082601f83011261338e5761338d614133565b5b813561339e8482602086016132a0565b91505092915050565b6000813590506133b681614371565b92915050565b6000602082840312156133d2576133d1614142565b5b60006133e0848285016132e2565b91505092915050565b60008060408385031215613400576133ff614142565b5b600061340e858286016132e2565b925050602061341f858286016132e2565b9150509250929050565b60008060006060848603121561344257613441614142565b5b6000613450868287016132e2565b9350506020613461868287016132e2565b9250506040613472868287016133a7565b9150509250925092565b6000806000806080858703121561349657613495614142565b5b60006134a4878288016132e2565b94505060206134b5878288016132e2565b93505060406134c6878288016133a7565b925050606085013567ffffffffffffffff8111156134e7576134e661413d565b5b6134f38782880161334b565b91505092959194509250565b6000806040838503121561351657613515614142565b5b6000613524858286016132e2565b9250506020613535858286016132f7565b9150509250929050565b6000806040838503121561355657613555614142565b5b6000613564858286016132e2565b9250506020613575858286016133a7565b9150509250929050565b60006020828403121561359557613594614142565b5b60006135a3848285016132f7565b91505092915050565b6000602082840312156135c2576135c1614142565b5b60006135d08482850161330c565b91505092915050565b6000602082840312156135ef576135ee614142565b5b60006135fd84828501613321565b91505092915050565b60006020828403121561361c5761361b614142565b5b600061362a84828501613336565b91505092915050565b60006020828403121561364957613648614142565b5b600082013567ffffffffffffffff8111156136675761366661413d565b5b61367384828501613379565b91505092915050565b60006020828403121561369257613691614142565b5b60006136a0848285016133a7565b91505092915050565b600080604083850312156136c0576136bf614142565b5b60006136ce858286016133a7565b92505060206136df858286016132e2565b9150509250929050565b60006136f583836139e9565b60208301905092915050565b61370a81613e81565b82525050565b600061371b82613cf5565b6137258185613d23565b935061373083613cd0565b8060005b8381101561376157815161374888826136e9565b975061375383613d16565b925050600181019050613734565b5085935050505092915050565b61377781613e93565b82525050565b61378681613e9f565b82525050565b600061379782613d00565b6137a18185613d34565b93506137b1818560208601613f0e565b6137ba81614147565b840191505092915050565b60006137d082613d0b565b6137da8185613d50565b93506137ea818560208601613f0e565b6137f381614147565b840191505092915050565b600061380982613d0b565b6138138185613d61565b9350613823818560208601613f0e565b80840191505092915050565b6000815461383c81613f6b565b6138468186613d61565b945060018216600081146138615760018114613872576138a5565b60ff198316865281860193506138a5565b61387b85613ce0565b60005b8381101561389d5781548189015260018201915060208101905061387e565b838801955050505b50505092915050565b60006138bb602683613d50565b91506138c682614158565b604082019050919050565b60006138de601483613d50565b91506138e9826141a7565b602082019050919050565b6000613901602e83613d50565b915061390c826141d0565b604082019050919050565b6000613924603183613d50565b915061392f8261421f565b604082019050919050565b6000613947602083613d50565b91506139528261426e565b602082019050919050565b600061396a601783613d50565b915061397582614297565b602082019050919050565b600061398d600083613d45565b9150613998826142c0565b600082019050919050565b60006139b0601483613d50565b91506139bb826142c3565b602082019050919050565b60006139d3601f83613d50565b91506139de826142ec565b602082019050919050565b6139f281613ef5565b82525050565b613a0181613ef5565b82525050565b6000613a1382866137fe565b9150613a1f82856137fe565b9150613a2b828461382f565b9150819050949350505050565b6000613a4382613980565b9150819050919050565b6000602082019050613a626000830184613701565b92915050565b6000608082019050613a7d6000830187613701565b613a8a6020830186613701565b613a9760408301856139f8565b8181036060830152613aa9818461378c565b905095945050505050565b60006020820190508181036000830152613ace8184613710565b905092915050565b6000602082019050613aeb600083018461376e565b92915050565b6000602082019050613b06600083018461377d565b92915050565b60006020820190508181036000830152613b2681846137c5565b905092915050565b60006020820190508181036000830152613b47816138ae565b9050919050565b60006020820190508181036000830152613b67816138d1565b9050919050565b60006020820190508181036000830152613b87816138f4565b9050919050565b60006020820190508181036000830152613ba781613917565b9050919050565b60006020820190508181036000830152613bc78161393a565b9050919050565b60006020820190508181036000830152613be78161395d565b9050919050565b60006020820190508181036000830152613c07816139a3565b9050919050565b60006020820190508181036000830152613c27816139c6565b9050919050565b6000602082019050613c4360008301846139f8565b92915050565b6000613c53613c64565b9050613c5f8282613f9d565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8957613c88614104565b5b613c9282614147565b9050602081019050919050565b600067ffffffffffffffff821115613cba57613cb9614104565b5b613cc382614147565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d7782613ef5565b9150613d8283613ef5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613db757613db6614048565b5b828201905092915050565b6000613dcd82613ef5565b9150613dd883613ef5565b925082613de857613de7614077565b5b828204905092915050565b6000613dfe82613ef5565b9150613e0983613ef5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e4257613e41614048565b5b828202905092915050565b6000613e5882613ef5565b9150613e6383613ef5565b925082821015613e7657613e75614048565b5b828203905092915050565b6000613e8c82613ed5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f2c578082015181840152602081019050613f11565b83811115613f3b576000848401525b50505050565b6000613f4c82613ef5565b91506000821415613f6057613f5f614048565b5b600182039050919050565b60006002820490506001821680613f8357607f821691505b60208210811415613f9757613f966140a6565b5b50919050565b613fa682614147565b810181811067ffffffffffffffff82111715613fc557613fc4614104565b5b80604052505050565b6000613fd982613ef5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561400c5761400b614048565b5b600182019050919050565b600061402282613ef5565b915061402d83613ef5565b92508261403d5761403c614077565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4d7574616e74476f626c696e733a2055524920717565727920666f72206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4d7574616e74476f626c696e733a2045746865722076616c75652073656e742060008201527f6973206e6f742073756666696369656e74000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61431e81613e81565b811461432957600080fd5b50565b61433581613e93565b811461434057600080fd5b50565b61434c81613e9f565b811461435757600080fd5b50565b61436381613ea9565b811461436e57600080fd5b50565b61437a81613ef5565b811461438557600080fd5b5056fea26469706673582212209d62a146d6758dbab4b5217dcc842ad47aba29ce7560147b4ffcf0db8b4df45464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002710
-----Decoded View---------------
Arg [0] : _cost (uint256): 0
Arg [1] : _maxSupply (uint256): 10000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode Sourcemap
54645:4789:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35013:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38299:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39922:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39462:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54895:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58610:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58724:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34253:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40910:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54746:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59026:160;;;;;;;;;;;;;:::i;:::-;;41151:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56272:1009;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58131:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58327:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54987:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54815:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54954:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54780:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38107:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58219:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35432:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10525:103;;;;;;;;;;;;;:::i;:::-;;58914:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58496:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9737:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38468:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55506:557;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40239:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54855:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9832:123;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41407:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57398:725;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54921:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58815:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40629:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56071:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10783:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59312:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35013:355;35160:4;35217:25;35202:40;;;:11;:40;;;;:105;;;;35274:33;35259:48;;;:11;:48;;;;35202:105;:158;;;;35324:36;35348:11;35324:23;:36::i;:::-;35202:158;35182:178;;35013:355;;;:::o;38299:100::-;38353:13;38386:5;38379:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38299:100;:::o;39922:245::-;40026:7;40056:16;40064:7;40056;:16::i;:::-;40051:64;;40081:34;;;;;;;;;;;;;;40051:64;40135:15;:24;40151:7;40135:24;;;;;;;;;;;;;;;;;;;;;40128:31;;39922:245;;;:::o;39462:394::-;39535:13;39551:24;39567:7;39551:15;:24::i;:::-;39535:40;;39596:5;39590:11;;:2;:11;;;39586:48;;;39610:24;;;;;;;;;;;;;;39586:48;39667:5;39651:21;;:12;:10;:12::i;:::-;:21;;;39647:161;;39692:37;39709:5;39716:12;:10;:12::i;:::-;39692:16;:37::i;:::-;39687:121;;39757:35;;;;;;;;;;;;;;39687:121;39647:161;39820:28;39829:2;39833:7;39842:5;39820:8;:28::i;:::-;39524:332;39462:394;;:::o;54895:19::-;;;;:::o;58610:106::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58698:10:::1;58686:9;:22;;;;;;;;;;;;:::i;:::-;;58610:106:::0;:::o;58724:83::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58793:6:::1;58784;;:15;;;;;;;;;;;;;;;;;;58724:83:::0;:::o;34253:312::-;34306:7;34531:15;:13;:15::i;:::-;34516:12;;34500:13;;:28;:46;34493:53;;34253:312;:::o;40910:170::-;41044:28;41054:4;41060:2;41064:7;41044:9;:28::i;:::-;40910:170;;;:::o;54746:25::-;;;;:::o;59026:160::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1915:1:::1;2513:7;;:19;;2505:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1915:1;2646:7;:18;;;;59088:7:::2;59109;:5;:7::i;:::-;59101:21;;59130;59101:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59087:69;;;59175:2;59167:11;;;::::0;::::2;;59076:110;1871:1:::1;2825:7;:22;;;;59026:160::o:0;41151:185::-;41289:39;41306:4;41312:2;41316:7;41289:39;;;;;;;;;;;;:16;:39::i;:::-;41151:185;;;:::o;56272:1009::-;56359:16;56393:23;56419:17;56429:6;56419:9;:17::i;:::-;56393:43;;56447:30;56494:15;56480:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56447:63;;56521:22;56546:15;:13;:15::i;:::-;56521:40;;56572:23;56610:26;56649:592;56688:15;56670;:33;:67;;;;;56724:13;;56707:14;:30;56670:67;56649:592;;;56764:31;56798:11;:27;56810:14;56798:27;;;;;;;;;;;56764:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56847:9;:16;;;56842:355;;56914:1;56888:28;;:9;:14;;;:28;;;56884:112;;56962:9;:14;;;56941:35;;56884:112;57042:6;57020:28;;:18;:28;;;57016:166;;;57106:14;57073:13;57087:15;57073:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;57145:17;;;;;:::i;:::-;;;;57016:166;56842:355;57213:16;;;;;:::i;:::-;;;;56749:492;56649:592;;;57260:13;57253:20;;;;;;;56272:1009;;;:::o;58131:80::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58198:5:::1;58191:4;:12;;;;58131:80:::0;:::o;58327:161::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58462:18:::1;58442:17;:38;;;;;;;;;;;;:::i;:::-;;58327:161:::0;:::o;54987:27::-;;;;;;;;;;;;;:::o;54815:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54954:26::-;;;;;;;;;;;;;:::o;54780:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38107:125::-;38171:7;38198:21;38211:7;38198:12;:21::i;:::-;:26;;;38191:33;;38107:125;;;:::o;58219:100::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58301:10:::1;58289:9;:22;;;;58219:100:::0;:::o;35432:206::-;35496:7;35537:1;35520:19;;:5;:19;;;35516:60;;;35548:28;;;;;;;;;;;;;;35516:60;35602:12;:19;35615:5;35602:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;35594:36;;35587:43;;35432:206;;;:::o;10525:103::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10590:30:::1;10617:1;10590:18;:30::i;:::-;10525:103::o:0;58914:104::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58999:11:::1;58986:10;:24;;;;58914:104:::0;:::o;58496:106::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58584:10:::1;58572:9;:22;;;;;;;;;;;;:::i;:::-;;58496:106:::0;:::o;9737:87::-;9783:7;9810:6;;;;;;;;;;;9803:13;;9737:87;:::o;38468:104::-;38524:13;38557:7;38550:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38468:104;:::o;55506:557::-;55598:11;55331:1;55317:11;:15;55309:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;55421:9;;55406:11;55390:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;55368:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;55636:6:::1;;;;;;;;;;;55635:7;55627:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;55683:19;55705:11;55683:33;;55765:1;55731:18;:30;55750:10;55731:30;;;;;;;;;;;;;;;;:35;55727:81;;;55783:13;;;;;:::i;:::-;;;;55727:81;55869:4;;55855:11;:18;;;;:::i;:::-;55842:9;:31;;55820:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;55997:11;55963:18;:30;55982:10;55963:30;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;56019:36;56029:12;:10;:12::i;:::-;56043:11;56019:9;:36::i;:::-;55616:447;55506:557:::0;;:::o;40239:319::-;40382:12;:10;:12::i;:::-;40370:24;;:8;:24;;;40366:54;;;40403:17;;;;;;;;;;;;;;40366:54;40478:8;40433:18;:32;40452:12;:10;:12::i;:::-;40433:32;;;;;;;;;;;;;;;:42;40466:8;40433:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;40531:8;40502:48;;40517:12;:10;:12::i;:::-;40502:48;;;40541:8;40502:48;;;;;;:::i;:::-;;;;;;;;40239:319;;:::o;54855:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9832:123::-;9878:7;9905:42;9898:49;;9832:123;:::o;41407:392::-;41574:28;41584:4;41590:2;41594:7;41574:9;:28::i;:::-;41617:15;:2;:13;;;:15::i;:::-;41613:179;;;41652:56;41683:4;41689:2;41693:7;41702:5;41652:30;:56::i;:::-;41647:145;;41736:40;;;;;;;;;;;;;;41647:145;41613:179;41407:392;;;;:::o;57398:725::-;57517:13;57570:17;57578:8;57570:7;:17::i;:::-;57548:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;57690:4;57678:16;;:8;;;;;;;;;;;:16;;;57674:73;;;57718:17;57711:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57674:73;57759:28;57790:10;:8;:10::i;:::-;57759:41;;57862:1;57837:14;57831:28;:32;:284;;;;;;;;;;;;;;;;;57955:14;57996:19;:8;:17;:19::i;:::-;58042:9;57912:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57831:284;57811:304;;;57398:725;;;;:::o;54921:24::-;;;;:::o;58815:87::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58888:6:::1;58877:8;;:17;;;;;;;;;;;;;;;;;;58815:87:::0;:::o;40629:214::-;40771:4;40800:18;:25;40819:5;40800:25;;;;;;;;;;;;;;;:35;40826:8;40800:35;;;;;;;;;;;;;;;;;;;;;;;;;40793:42;;40629:214;;;;:::o;56071:193::-;56175:11;55331:1;55317:11;:15;55309:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;55421:9;;55406:11;55390:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;55368:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10105:12:::1;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56223:33:::2;56233:9;56244:11;56223:9;:33::i;:::-;56071:193:::0;;;:::o;10783:238::-;10105:12;:10;:12::i;:::-;10094:23;;:7;:5;:7::i;:::-;:23;;;10086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10906:1:::1;10886:22;;:8;:22;;;;10864:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10985:28;11004:8;10985:18;:28::i;:::-;10783:238:::0;:::o;59312:119::-;59371:7;59398:18;:25;59417:5;59398:25;;;;;;;;;;;;;;;;59391:32;;59312:119;;;:::o;23175:207::-;23305:4;23349:25;23334:40;;;:11;:40;;;;23327:47;;23175:207;;;:::o;42054:213::-;42111:4;42167:7;42148:15;:13;:15::i;:::-;:26;;:66;;;;;42201:13;;42191:7;:23;42148:66;:111;;;;;42232:11;:20;42244:7;42232:20;;;;;;;;;;;:27;;;;;;;;;;;;42231:28;42148:111;42128:131;;42054:213;;;:::o;8440:98::-;8493:7;8520:10;8513:17;;8440:98;:::o;51506:196::-;51648:2;51621:15;:24;51637:7;51621:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51686:7;51682:2;51666:28;;51675:5;51666:28;;;;;;;;;;;;51506:196;;;:::o;57289:101::-;57354:7;57381:1;57374:8;;57289:101;:::o;46454:2130::-;46569:35;46607:21;46620:7;46607:12;:21::i;:::-;46569:59;;46667:4;46645:26;;:13;:18;;;:26;;;46641:67;;46680:28;;;;;;;;;;;;;;46641:67;46721:22;46763:4;46747:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;46784:36;46801:4;46807:12;:10;:12::i;:::-;46784:16;:36::i;:::-;46747:73;:126;;;;46861:12;:10;:12::i;:::-;46837:36;;:20;46849:7;46837:11;:20::i;:::-;:36;;;46747:126;46721:153;;46892:17;46887:66;;46918:35;;;;;;;;;;;;;;46887:66;46982:1;46968:16;;:2;:16;;;46964:52;;;46993:23;;;;;;;;;;;;;;46964:52;47029:43;47051:4;47057:2;47061:7;47070:1;47029:21;:43::i;:::-;47137:35;47154:1;47158:7;47167:4;47137:8;:35::i;:::-;47498:1;47468:12;:18;47481:4;47468:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47542:1;47514:12;:16;47527:2;47514:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47560:31;47594:11;:20;47606:7;47594:20;;;;;;;;;;;47560:54;;47645:2;47629:8;:13;;;:18;;;;;;;;;;;;;;;;;;47695:15;47662:8;:23;;;:49;;;;;;;;;;;;;;;;;;47963:19;47995:1;47985:7;:11;47963:33;;48011:31;48045:11;:24;48057:11;48045:24;;;;;;;;;;;48011:58;;48113:1;48088:27;;:8;:13;;;;;;;;;;;;:27;;;48084:384;;;48298:13;;48283:11;:28;48279:174;;48352:4;48336:8;:13;;;:20;;;;;;;;;;;;;;;;;;48405:13;:28;;;48379:8;:23;;;:54;;;;;;;;;;;;;;;;;;48279:174;48084:384;47443:1036;;;48515:7;48511:2;48496:27;;48505:4;48496:27;;;;;;;;;;;;48534:42;48555:4;48561:2;48565:7;48574:1;48534:20;:42::i;:::-;46558:2026;;46454:2130;;;:::o;36813:1232::-;36902:21;;:::i;:::-;36941:12;36956:7;36941:22;;37024:4;37005:15;:13;:15::i;:::-;:23;37001:977;;37058:13;;37051:4;:20;37047:931;;;37096:31;37130:11;:17;37142:4;37130:17;;;;;;;;;;;37096:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37175:9;:16;;;37170:789;;37250:1;37224:28;;:9;:14;;;:28;;;37220:109;;37292:9;37285:16;;;;;;37220:109;37651:285;37658:4;37651:285;;;37695:6;;;;;;;;37744:11;:17;37756:4;37744:17;;;;;;;;;;;37732:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37822:1;37796:28;;:9;:14;;;:28;;;37792:117;;37868:9;37861:16;;;;;;37792:117;37651:285;;;37170:789;37073:905;37047:931;37001:977;38006:31;;;;;;;;;;;;;;36813:1232;;;;:::o;11181:191::-;11255:16;11274:6;;;;;;;;;;;11255:25;;11300:8;11291:6;;:17;;;;;;;;;;;;;;;;;;11355:8;11324:40;;11345:8;11324:40;;;;;;;;;;;;11244:128;11181:191;:::o;42351:104::-;42420:27;42430:2;42434:8;42420:27;;;;;;;;;;;;:9;:27::i;:::-;42351:104;;:::o;12610:326::-;12670:4;12927:1;12905:7;:19;;;:23;12898:30;;12610:326;;;:::o;52194:772::-;52357:4;52407:2;52391:36;;;52446:12;:10;:12::i;:::-;52477:4;52500:7;52526:5;52391:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52374:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52734:1;52717:6;:13;:18;52713:235;;;52763:40;;;;;;;;;;;;;;52713:235;52906:6;52900:13;52891:6;52887:2;52883:15;52876:38;52374:585;52612:45;;;52602:55;;;:6;:55;;;;52595:62;;;52194:772;;;;;;:::o;59194:110::-;59254:13;59287:9;59280:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59194:110;:::o;5972:723::-;6028:13;6258:1;6249:5;:10;6245:53;;;6276:10;;;;;;;;;;;;;;;;;;;;;6245:53;6308:12;6323:5;6308:20;;6339:14;6364:78;6379:1;6371:4;:9;6364:78;;6397:8;;;;;:::i;:::-;;;;6428:2;6420:10;;;;;:::i;:::-;;;6364:78;;;6452:19;6484:6;6474:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6452:39;;6502:154;6518:1;6509:5;:10;6502:154;;6546:1;6536:11;;;;;:::i;:::-;;;6613:2;6605:5;:10;;;;:::i;:::-;6592:2;:24;;;;:::i;:::-;6579:39;;6562:6;6569;6562:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6642:2;6633:11;;;;;:::i;:::-;;;6502:154;;;6680:6;6666:21;;;;;5972:723;;;;:::o;53614:159::-;;;;;:::o;54432:158::-;;;;;:::o;42828:1940::-;42951:20;42974:13;;42951:36;;43016:1;43002:16;;:2;:16;;;42998:48;;;43027:19;;;;;;;;;;;;;;42998:48;43073:1;43061:8;:13;43057:44;;;43083:18;;;;;;;;;;;;;;43057:44;43114:61;43144:1;43148:2;43152:12;43166:8;43114:21;:61::i;:::-;43487:8;43452:12;:16;43465:2;43452:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43551:8;43511:12;:16;43524:2;43511:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43610:2;43577:11;:25;43589:12;43577:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43677:15;43627:11;:25;43639:12;43627:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;43710:20;43733:12;43710:35;;43760:11;43789:8;43774:12;:23;43760:37;;43818:15;:2;:13;;;:15::i;:::-;43814:822;;;43854:504;43910:12;43906:2;43885:38;;43902:1;43885:38;;;;;;;;;;;;43977:212;44046:1;44079:2;44112:14;;;;;;44157:5;43977:30;:212::i;:::-;43946:365;;44247:40;;;;;;;;;;;;;;43946:365;44353:3;44338:12;:18;43854:504;;44439:12;44422:13;;:29;44418:43;;44453:8;;;44418:43;43814:822;;;44502:119;44558:14;;;;;;44554:2;44533:40;;44550:1;44533:40;;;;;;;;;;;;44616:3;44601:12;:18;44502:119;;43814:822;44666:12;44650:13;:28;;;;43427:1263;;44700:60;44729:1;44733:2;44737:12;44751:8;44700:20;:60::i;:::-;42940:1828;42828:1940;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1125:139;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1270:137;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1413:141;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:122;;1685:79;;:::i;:::-;1644:122;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;1573:338;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:122;;2044:79;;:::i;:::-;2003:122;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;1931:340;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:119;;;2536:79;;:::i;:::-;2498:119;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2422:329;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:119;;;2888:79;;:::i;:::-;2850:119;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2757:474;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3237:619;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:120;;;4037:79;;:::i;:::-;3998:120;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:117;;;4621:79;;:::i;:::-;4585:117;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3862:943;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:119;;;4939:79;;:::i;:::-;4901:119;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4811:468;;;;;:::o;5285:474::-;5353:6;5361;5410:2;5398:9;5389:7;5385:23;5381:32;5378:119;;;5416:79;;:::i;:::-;5378:119;5536:1;5561:53;5606:7;5597:6;5586:9;5582:22;5561:53;:::i;:::-;5551:63;;5507:117;5663:2;5689:53;5734:7;5725:6;5714:9;5710:22;5689:53;:::i;:::-;5679:63;;5634:118;5285:474;;;;;:::o;5765:323::-;5821:6;5870:2;5858:9;5849:7;5845:23;5841:32;5838:119;;;5876:79;;:::i;:::-;5838:119;5996:1;6021:50;6063:7;6054:6;6043:9;6039:22;6021:50;:::i;:::-;6011:60;;5967:114;5765:323;;;;:::o;6094:329::-;6153:6;6202:2;6190:9;6181:7;6177:23;6173:32;6170:119;;;6208:79;;:::i;:::-;6170:119;6328:1;6353:53;6398:7;6389:6;6378:9;6374:22;6353:53;:::i;:::-;6343:63;;6299:117;6094:329;;;;:::o;6429:327::-;6487:6;6536:2;6524:9;6515:7;6511:23;6507:32;6504:119;;;6542:79;;:::i;:::-;6504:119;6662:1;6687:52;6731:7;6722:6;6711:9;6707:22;6687:52;:::i;:::-;6677:62;;6633:116;6429:327;;;;:::o;6762:349::-;6831:6;6880:2;6868:9;6859:7;6855:23;6851:32;6848:119;;;6886:79;;:::i;:::-;6848:119;7006:1;7031:63;7086:7;7077:6;7066:9;7062:22;7031:63;:::i;:::-;7021:73;;6977:127;6762:349;;;;:::o;7117:509::-;7186:6;7235:2;7223:9;7214:7;7210:23;7206:32;7203:119;;;7241:79;;:::i;:::-;7203:119;7389:1;7378:9;7374:17;7361:31;7419:18;7411:6;7408:30;7405:117;;;7441:79;;:::i;:::-;7405:117;7546:63;7601:7;7592:6;7581:9;7577:22;7546:63;:::i;:::-;7536:73;;7332:287;7117:509;;;;:::o;7632:329::-;7691:6;7740:2;7728:9;7719:7;7715:23;7711:32;7708:119;;;7746:79;;:::i;:::-;7708:119;7866:1;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7837:117;7632:329;;;;:::o;7967:474::-;8035:6;8043;8092:2;8080:9;8071:7;8067:23;8063:32;8060:119;;;8098:79;;:::i;:::-;8060:119;8218:1;8243:53;8288:7;8279:6;8268:9;8264:22;8243:53;:::i;:::-;8233:63;;8189:117;8345:2;8371:53;8416:7;8407:6;8396:9;8392:22;8371:53;:::i;:::-;8361:63;;8316:118;7967:474;;;;;:::o;8447:179::-;8516:10;8537:46;8579:3;8571:6;8537:46;:::i;:::-;8615:4;8610:3;8606:14;8592:28;;8447:179;;;;:::o;8632:118::-;8719:24;8737:5;8719:24;:::i;:::-;8714:3;8707:37;8632:118;;:::o;8786:732::-;8905:3;8934:54;8982:5;8934:54;:::i;:::-;9004:86;9083:6;9078:3;9004:86;:::i;:::-;8997:93;;9114:56;9164:5;9114:56;:::i;:::-;9193:7;9224:1;9209:284;9234:6;9231:1;9228:13;9209:284;;;9310:6;9304:13;9337:63;9396:3;9381:13;9337:63;:::i;:::-;9330:70;;9423:60;9476:6;9423:60;:::i;:::-;9413:70;;9269:224;9256:1;9253;9249:9;9244:14;;9209:284;;;9213:14;9509:3;9502:10;;8910:608;;;8786:732;;;;:::o;9524:109::-;9605:21;9620:5;9605:21;:::i;:::-;9600:3;9593:34;9524:109;;:::o;9639:118::-;9726:24;9744:5;9726:24;:::i;:::-;9721:3;9714:37;9639:118;;:::o;9763:360::-;9849:3;9877:38;9909:5;9877:38;:::i;:::-;9931:70;9994:6;9989:3;9931:70;:::i;:::-;9924:77;;10010:52;10055:6;10050:3;10043:4;10036:5;10032:16;10010:52;:::i;:::-;10087:29;10109:6;10087:29;:::i;:::-;10082:3;10078:39;10071:46;;9853:270;9763:360;;;;:::o;10129:364::-;10217:3;10245:39;10278:5;10245:39;:::i;:::-;10300:71;10364:6;10359:3;10300:71;:::i;:::-;10293:78;;10380:52;10425:6;10420:3;10413:4;10406:5;10402:16;10380:52;:::i;:::-;10457:29;10479:6;10457:29;:::i;:::-;10452:3;10448:39;10441:46;;10221:272;10129:364;;;;:::o;10499:377::-;10605:3;10633:39;10666:5;10633:39;:::i;:::-;10688:89;10770:6;10765:3;10688:89;:::i;:::-;10681:96;;10786:52;10831:6;10826:3;10819:4;10812:5;10808:16;10786:52;:::i;:::-;10863:6;10858:3;10854:16;10847:23;;10609:267;10499:377;;;;:::o;10906:845::-;11009:3;11046:5;11040:12;11075:36;11101:9;11075:36;:::i;:::-;11127:89;11209:6;11204:3;11127:89;:::i;:::-;11120:96;;11247:1;11236:9;11232:17;11263:1;11258:137;;;;11409:1;11404:341;;;;11225:520;;11258:137;11342:4;11338:9;11327;11323:25;11318:3;11311:38;11378:6;11373:3;11369:16;11362:23;;11258:137;;11404:341;11471:38;11503:5;11471:38;:::i;:::-;11531:1;11545:154;11559:6;11556:1;11553:13;11545:154;;;11633:7;11627:14;11623:1;11618:3;11614:11;11607:35;11683:1;11674:7;11670:15;11659:26;;11581:4;11578:1;11574:12;11569:17;;11545:154;;;11728:6;11723:3;11719:16;11712:23;;11411:334;;11225:520;;11013:738;;10906:845;;;;:::o;11757:366::-;11899:3;11920:67;11984:2;11979:3;11920:67;:::i;:::-;11913:74;;11996:93;12085:3;11996:93;:::i;:::-;12114:2;12109:3;12105:12;12098:19;;11757:366;;;:::o;12129:::-;12271:3;12292:67;12356:2;12351:3;12292:67;:::i;:::-;12285:74;;12368:93;12457:3;12368:93;:::i;:::-;12486:2;12481:3;12477:12;12470:19;;12129:366;;;:::o;12501:::-;12643:3;12664:67;12728:2;12723:3;12664:67;:::i;:::-;12657:74;;12740:93;12829:3;12740:93;:::i;:::-;12858:2;12853:3;12849:12;12842:19;;12501:366;;;:::o;12873:::-;13015:3;13036:67;13100:2;13095:3;13036:67;:::i;:::-;13029:74;;13112:93;13201:3;13112:93;:::i;:::-;13230:2;13225:3;13221:12;13214:19;;12873:366;;;:::o;13245:::-;13387:3;13408:67;13472:2;13467:3;13408:67;:::i;:::-;13401:74;;13484:93;13573:3;13484:93;:::i;:::-;13602:2;13597:3;13593:12;13586:19;;13245:366;;;:::o;13617:::-;13759:3;13780:67;13844:2;13839:3;13780:67;:::i;:::-;13773:74;;13856:93;13945:3;13856:93;:::i;:::-;13974:2;13969:3;13965:12;13958:19;;13617:366;;;:::o;13989:398::-;14148:3;14169:83;14250:1;14245:3;14169:83;:::i;:::-;14162:90;;14261:93;14350:3;14261:93;:::i;:::-;14379:1;14374:3;14370:11;14363:18;;13989:398;;;:::o;14393:366::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:108::-;15214:24;15232:5;15214:24;:::i;:::-;15209:3;15202:37;15137:108;;:::o;15251:118::-;15338:24;15356:5;15338:24;:::i;:::-;15333:3;15326:37;15251:118;;:::o;15375:589::-;15600:3;15622:95;15713:3;15704:6;15622:95;:::i;:::-;15615:102;;15734:95;15825:3;15816:6;15734:95;:::i;:::-;15727:102;;15846:92;15934:3;15925:6;15846:92;:::i;:::-;15839:99;;15955:3;15948:10;;15375:589;;;;;;:::o;15970:379::-;16154:3;16176:147;16319:3;16176:147;:::i;:::-;16169:154;;16340:3;16333:10;;15970:379;;;:::o;16355:222::-;16448:4;16486:2;16475:9;16471:18;16463:26;;16499:71;16567:1;16556:9;16552:17;16543:6;16499:71;:::i;:::-;16355:222;;;;:::o;16583:640::-;16778:4;16816:3;16805:9;16801:19;16793:27;;16830:71;16898:1;16887:9;16883:17;16874:6;16830:71;:::i;:::-;16911:72;16979:2;16968:9;16964:18;16955:6;16911:72;:::i;:::-;16993;17061:2;17050:9;17046:18;17037:6;16993:72;:::i;:::-;17112:9;17106:4;17102:20;17097:2;17086:9;17082:18;17075:48;17140:76;17211:4;17202:6;17140:76;:::i;:::-;17132:84;;16583:640;;;;;;;:::o;17229:373::-;17372:4;17410:2;17399:9;17395:18;17387:26;;17459:9;17453:4;17449:20;17445:1;17434:9;17430:17;17423:47;17487:108;17590:4;17581:6;17487:108;:::i;:::-;17479:116;;17229:373;;;;:::o;17608:210::-;17695:4;17733:2;17722:9;17718:18;17710:26;;17746:65;17808:1;17797:9;17793:17;17784:6;17746:65;:::i;:::-;17608:210;;;;:::o;17824:222::-;17917:4;17955:2;17944:9;17940:18;17932:26;;17968:71;18036:1;18025:9;18021:17;18012:6;17968:71;:::i;:::-;17824:222;;;;:::o;18052:313::-;18165:4;18203:2;18192:9;18188:18;18180:26;;18252:9;18246:4;18242:20;18238:1;18227:9;18223:17;18216:47;18280:78;18353:4;18344:6;18280:78;:::i;:::-;18272:86;;18052:313;;;;:::o;18371:419::-;18537:4;18575:2;18564:9;18560:18;18552:26;;18624:9;18618:4;18614:20;18610:1;18599:9;18595:17;18588:47;18652:131;18778:4;18652:131;:::i;:::-;18644:139;;18371:419;;;:::o;18796:::-;18962:4;19000:2;18989:9;18985:18;18977:26;;19049:9;19043:4;19039:20;19035:1;19024:9;19020:17;19013:47;19077:131;19203:4;19077:131;:::i;:::-;19069:139;;18796:419;;;:::o;19221:::-;19387:4;19425:2;19414:9;19410:18;19402:26;;19474:9;19468:4;19464:20;19460:1;19449:9;19445:17;19438:47;19502:131;19628:4;19502:131;:::i;:::-;19494:139;;19221:419;;;:::o;19646:::-;19812:4;19850:2;19839:9;19835:18;19827:26;;19899:9;19893:4;19889:20;19885:1;19874:9;19870:17;19863:47;19927:131;20053:4;19927:131;:::i;:::-;19919:139;;19646:419;;;:::o;20071:::-;20237:4;20275:2;20264:9;20260:18;20252:26;;20324:9;20318:4;20314:20;20310:1;20299:9;20295:17;20288:47;20352:131;20478:4;20352:131;:::i;:::-;20344:139;;20071:419;;;:::o;20496:::-;20662:4;20700:2;20689:9;20685:18;20677:26;;20749:9;20743:4;20739:20;20735:1;20724:9;20720:17;20713:47;20777:131;20903:4;20777:131;:::i;:::-;20769:139;;20496:419;;;:::o;20921:::-;21087:4;21125:2;21114:9;21110:18;21102:26;;21174:9;21168:4;21164:20;21160:1;21149:9;21145:17;21138:47;21202:131;21328:4;21202:131;:::i;:::-;21194:139;;20921:419;;;:::o;21346:::-;21512:4;21550:2;21539:9;21535:18;21527:26;;21599:9;21593:4;21589:20;21585:1;21574:9;21570:17;21563:47;21627:131;21753:4;21627:131;:::i;:::-;21619:139;;21346:419;;;:::o;21771:222::-;21864:4;21902:2;21891:9;21887:18;21879:26;;21915:71;21983:1;21972:9;21968:17;21959:6;21915:71;:::i;:::-;21771:222;;;;:::o;21999:129::-;22033:6;22060:20;;:::i;:::-;22050:30;;22089:33;22117:4;22109:6;22089:33;:::i;:::-;21999:129;;;:::o;22134:75::-;22167:6;22200:2;22194:9;22184:19;;22134:75;:::o;22215:307::-;22276:4;22366:18;22358:6;22355:30;22352:56;;;22388:18;;:::i;:::-;22352:56;22426:29;22448:6;22426:29;:::i;:::-;22418:37;;22510:4;22504;22500:15;22492:23;;22215:307;;;:::o;22528:308::-;22590:4;22680:18;22672:6;22669:30;22666:56;;;22702:18;;:::i;:::-;22666:56;22740:29;22762:6;22740:29;:::i;:::-;22732:37;;22824:4;22818;22814:15;22806:23;;22528:308;;;:::o;22842:132::-;22909:4;22932:3;22924:11;;22962:4;22957:3;22953:14;22945:22;;22842:132;;;:::o;22980:141::-;23029:4;23052:3;23044:11;;23075:3;23072:1;23065:14;23109:4;23106:1;23096:18;23088:26;;22980:141;;;:::o;23127:114::-;23194:6;23228:5;23222:12;23212:22;;23127:114;;;:::o;23247:98::-;23298:6;23332:5;23326:12;23316:22;;23247:98;;;:::o;23351:99::-;23403:6;23437:5;23431:12;23421:22;;23351:99;;;:::o;23456:113::-;23526:4;23558;23553:3;23549:14;23541:22;;23456:113;;;:::o;23575:184::-;23674:11;23708:6;23703:3;23696:19;23748:4;23743:3;23739:14;23724:29;;23575:184;;;;:::o;23765:168::-;23848:11;23882:6;23877:3;23870:19;23922:4;23917:3;23913:14;23898:29;;23765:168;;;;:::o;23939:147::-;24040:11;24077:3;24062:18;;23939:147;;;;:::o;24092:169::-;24176:11;24210:6;24205:3;24198:19;24250:4;24245:3;24241:14;24226:29;;24092:169;;;;:::o;24267:148::-;24369:11;24406:3;24391:18;;24267:148;;;;:::o;24421:305::-;24461:3;24480:20;24498:1;24480:20;:::i;:::-;24475:25;;24514:20;24532:1;24514:20;:::i;:::-;24509:25;;24668:1;24600:66;24596:74;24593:1;24590:81;24587:107;;;24674:18;;:::i;:::-;24587:107;24718:1;24715;24711:9;24704:16;;24421:305;;;;:::o;24732:185::-;24772:1;24789:20;24807:1;24789:20;:::i;:::-;24784:25;;24823:20;24841:1;24823:20;:::i;:::-;24818:25;;24862:1;24852:35;;24867:18;;:::i;:::-;24852:35;24909:1;24906;24902:9;24897:14;;24732:185;;;;:::o;24923:348::-;24963:7;24986:20;25004:1;24986:20;:::i;:::-;24981:25;;25020:20;25038:1;25020:20;:::i;:::-;25015:25;;25208:1;25140:66;25136:74;25133:1;25130:81;25125:1;25118:9;25111:17;25107:105;25104:131;;;25215:18;;:::i;:::-;25104:131;25263:1;25260;25256:9;25245:20;;24923:348;;;;:::o;25277:191::-;25317:4;25337:20;25355:1;25337:20;:::i;:::-;25332:25;;25371:20;25389:1;25371:20;:::i;:::-;25366:25;;25410:1;25407;25404:8;25401:34;;;25415:18;;:::i;:::-;25401:34;25460:1;25457;25453:9;25445:17;;25277:191;;;;:::o;25474:96::-;25511:7;25540:24;25558:5;25540:24;:::i;:::-;25529:35;;25474:96;;;:::o;25576:90::-;25610:7;25653:5;25646:13;25639:21;25628:32;;25576:90;;;:::o;25672:77::-;25709:7;25738:5;25727:16;;25672:77;;;:::o;25755:149::-;25791:7;25831:66;25824:5;25820:78;25809:89;;25755:149;;;:::o;25910:126::-;25947:7;25987:42;25980:5;25976:54;25965:65;;25910:126;;;:::o;26042:77::-;26079:7;26108:5;26097:16;;26042:77;;;:::o;26125:154::-;26209:6;26204:3;26199;26186:30;26271:1;26262:6;26257:3;26253:16;26246:27;26125:154;;;:::o;26285:307::-;26353:1;26363:113;26377:6;26374:1;26371:13;26363:113;;;26462:1;26457:3;26453:11;26447:18;26443:1;26438:3;26434:11;26427:39;26399:2;26396:1;26392:10;26387:15;;26363:113;;;26494:6;26491:1;26488:13;26485:101;;;26574:1;26565:6;26560:3;26556:16;26549:27;26485:101;26334:258;26285:307;;;:::o;26598:171::-;26637:3;26660:24;26678:5;26660:24;:::i;:::-;26651:33;;26706:4;26699:5;26696:15;26693:41;;;26714:18;;:::i;:::-;26693:41;26761:1;26754:5;26750:13;26743:20;;26598:171;;;:::o;26775:320::-;26819:6;26856:1;26850:4;26846:12;26836:22;;26903:1;26897:4;26893:12;26924:18;26914:81;;26980:4;26972:6;26968:17;26958:27;;26914:81;27042:2;27034:6;27031:14;27011:18;27008:38;27005:84;;;27061:18;;:::i;:::-;27005:84;26826:269;26775:320;;;:::o;27101:281::-;27184:27;27206:4;27184:27;:::i;:::-;27176:6;27172:40;27314:6;27302:10;27299:22;27278:18;27266:10;27263:34;27260:62;27257:88;;;27325:18;;:::i;:::-;27257:88;27365:10;27361:2;27354:22;27144:238;27101:281;;:::o;27388:233::-;27427:3;27450:24;27468:5;27450:24;:::i;:::-;27441:33;;27496:66;27489:5;27486:77;27483:103;;;27566:18;;:::i;:::-;27483:103;27613:1;27606:5;27602:13;27595:20;;27388:233;;;:::o;27627:176::-;27659:1;27676:20;27694:1;27676:20;:::i;:::-;27671:25;;27710:20;27728:1;27710:20;:::i;:::-;27705:25;;27749:1;27739:35;;27754:18;;:::i;:::-;27739:35;27795:1;27792;27788:9;27783:14;;27627:176;;;;:::o;27809:180::-;27857:77;27854:1;27847:88;27954:4;27951:1;27944:15;27978:4;27975:1;27968:15;27995:180;28043:77;28040:1;28033:88;28140:4;28137:1;28130:15;28164:4;28161:1;28154:15;28181:180;28229:77;28226:1;28219:88;28326:4;28323:1;28316:15;28350:4;28347:1;28340:15;28367:180;28415:77;28412:1;28405:88;28512:4;28509:1;28502:15;28536:4;28533:1;28526:15;28553:180;28601:77;28598:1;28591:88;28698:4;28695:1;28688:15;28722:4;28719:1;28712:15;28739:117;28848:1;28845;28838:12;28862:117;28971:1;28968;28961:12;28985:117;29094:1;29091;29084:12;29108:117;29217:1;29214;29207:12;29231:102;29272:6;29323:2;29319:7;29314:2;29307:5;29303:14;29299:28;29289:38;;29231:102;;;:::o;29339:225::-;29479:34;29475:1;29467:6;29463:14;29456:58;29548:8;29543:2;29535:6;29531:15;29524:33;29339:225;:::o;29570:170::-;29710:22;29706:1;29698:6;29694:14;29687:46;29570:170;:::o;29746:233::-;29886:34;29882:1;29874:6;29870:14;29863:58;29955:16;29950:2;29942:6;29938:15;29931:41;29746:233;:::o;29985:236::-;30125:34;30121:1;30113:6;30109:14;30102:58;30194:19;30189:2;30181:6;30177:15;30170:44;29985:236;:::o;30227:182::-;30367:34;30363:1;30355:6;30351:14;30344:58;30227:182;:::o;30415:173::-;30555:25;30551:1;30543:6;30539:14;30532:49;30415:173;:::o;30594:114::-;;:::o;30714:170::-;30854:22;30850:1;30842:6;30838:14;30831:46;30714:170;:::o;30890:181::-;31030:33;31026:1;31018:6;31014:14;31007:57;30890:181;:::o;31077:122::-;31150:24;31168:5;31150:24;:::i;:::-;31143:5;31140:35;31130:63;;31189:1;31186;31179:12;31130:63;31077:122;:::o;31205:116::-;31275:21;31290:5;31275:21;:::i;:::-;31268:5;31265:32;31255:60;;31311:1;31308;31301:12;31255:60;31205:116;:::o;31327:122::-;31400:24;31418:5;31400:24;:::i;:::-;31393:5;31390:35;31380:63;;31439:1;31436;31429:12;31380:63;31327:122;:::o;31455:120::-;31527:23;31544:5;31527:23;:::i;:::-;31520:5;31517:34;31507:62;;31565:1;31562;31555:12;31507:62;31455:120;:::o;31581:122::-;31654:24;31672:5;31654:24;:::i;:::-;31647:5;31644:35;31634:63;;31693:1;31690;31683:12;31634:63;31581:122;:::o
Swarm Source
ipfs://9d62a146d6758dbab4b5217dcc842ad47aba29ce7560147b4ffcf0db8b4df454
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.