Overview
TokenID
9892
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MAKCM2
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-17 */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) /** * @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 v4.4.1 (utils/cryptography/MerkleProof.sol) /** * @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. */ 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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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) /** * @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) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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 `IERC721.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) /** * @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) /** * @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 v4.4.1 (token/ERC721/IERC721.sol) /** * @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`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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: https://github.com/chiru-labs/ERC721A/blob/v3.0.0/contracts/ERC721A.sol // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // 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; } // 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 See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view 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) { if (owner == address(0)) revert MintedQueryForZeroAddress(); 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) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); 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) { if (owner == address(0)) revert AuxQueryForZeroAddress(); 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _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 && 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 && !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 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() && !_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; } 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 { _mint(to, quantity, _data, true); } /** * @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, bytes memory _data, bool safe ) 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 (safe && 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 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, 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: MAKCM2.sol contract MAKCM2 is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string private uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public publicSaleCost = 0.1 ether; uint256 public presaleCost = 0.08 ether; uint256 public maxSupply = 5010; uint256 public maxMintAmountPerTx = 5; uint256 public maxWalletLimit = 5; bool public paused = true; bool public presaleActive = false; bool public saleActive = false; bool public revealed = false; mapping(address => uint256) private addressMintedBalance; bytes32 private merkleRoot = ""; constructor() ERC721A("Mutant Ape Kids Club M2", "MAKCM2") { setHiddenMetadataUri("https://ipfs.io/ipfs/QmXyh58vnHPuTWBMmHsJ7Zdaek682S9eGYrGGHVvY1Po6P/hidden.json"); } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function cost() public view returns(uint256) { if(presaleActive) return presaleCost; return publicSaleCost; } modifier mintCompliance(uint256 _mintAmount) { require(!paused, "The contract is paused!"); require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } modifier selfMintCompliance(uint256 _mintAmount) { require(_mintAmount > 0, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(saleActive, "Sale is not Active" ); require(msg.value >= cost() * _mintAmount, "Insufficient funds!"); require(addressMintedBalance[msg.sender] + _mintAmount <= maxWalletLimit, "Max mint amount per wallet reached"); _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function mintForSelf(uint256 _mintAmount) public selfMintCompliance(_mintAmount) onlyOwner { _mintLoop(msg.sender, _mintAmount); } function whitelistMint(uint256 _mintAmount, uint256 _mintLimit, bytes32 leaf, bytes32[] memory proof) external payable mintCompliance(_mintAmount) { require(presaleActive, "Sale is not Active" ); require(merkleRoot != '', "Merkle Root not set"); // Verify that (msg.sender, amount) correspond to Merkle leaf require(keccak256(abi.encodePacked(msg.sender, _mintLimit)) == leaf, "Sender and amount don't match Merkle leaf"); // Verify that (leaf, proof) matches the Merkle root require(verify(merkleRoot, leaf, proof), "Not a valid leaf in the Merkle tree"); require(msg.value >= cost() * _mintAmount, "Insufficient funds!"); require(addressMintedBalance[msg.sender] + _mintAmount <= _mintLimit, "Max mint amount per wallet reached"); _mintLoop(msg.sender, _mintAmount); } function verify(bytes32 _merkleRoot, bytes32 leaf, bytes32[] memory proof) public pure returns (bool) { return MerkleProof.verify(proof, _merkleRoot, leaf); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setPresaleCost(uint256 _cost) public onlyOwner { presaleCost = _cost; } function setPublicSaleCost(uint256 _cost) public onlyOwner { publicSaleCost = _cost; } function setPublicSale(bool _sale) public onlyOwner { saleActive = _sale; } function setPreSale(bool _sale) public onlyOwner { presaleActive = _sale; } function setMaxWalletLimit(uint256 _maxWalletLimit) public onlyOwner { maxWalletLimit = _maxWalletLimit; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } 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 setMaxSupply(uint256 _supply) public onlyOwner { maxSupply = _supply; } function withdraw() public onlyOwner { require(address(this).balance > 0, "Balance is 0"); payable(owner()).transfer(address(this).balance); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { addressMintedBalance[_receiver]+= _mintAmount; _safeMint(_receiver, _mintAmount); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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"},{"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":[{"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForSelf","outputs":[],"stateMutability":"nonpayable","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletLimit","type":"uint256"}],"name":"setMaxWalletLimit","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":"_sale","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicSaleCost","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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600a916200021e565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b916200021e565b5067016345785d8a0000600d5567011c37937e080000600e55611392600f55600560108190556011556012805463ffffffff1916600117905560006014553480156200009557600080fd5b50604080518082018252601781527f4d7574616e7420417065204b69647320436c7562204d3200000000000000000060208083019182528351808501909452600684526526a0a5a1a69960d11b908401528151919291620000f9916002916200021e565b5080516200010f9060039060208401906200021e565b5050600160005550620001223362000154565b60016009819055506200014e6040518060800160405280604f815260200162002db5604f9139620001a6565b62000301565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200021a90600c9060208401906200021e565b5050565b8280546200022c90620002c4565b90600052602060002090601f0160209004810192826200025057600085556200029b565b82601f106200026b57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029b5782518255916020019190600101906200027e565b50620002a9929150620002ad565b5090565b5b80821115620002a95760008155600101620002ae565b600181811c90821680620002d957607f821691505b60208210811415620002fb57634e487b7160e01b600052602260045260246000fd5b50919050565b612aa480620003116000396000f3fe6080604052600436106102ae5760003560e01c806366a88d961161017557806395d89b41116100dc578063c49b3d5411610095578063e0a808531161006f578063e0a80853146107fe578063e985e9c51461081e578063efbd73f414610867578063f2fde38b1461088757600080fd5b8063c49b3d54146107a8578063c87b56dd146107c8578063d5abeb01146107e857600080fd5b806395d89b411461070b578063a0712d6814610720578063a22cb46514610733578063a45ba8e714610753578063b071401b14610768578063b88d4fde1461078857600080fd5b80637cb647591161012e5780637cb64759146106575780637ec4a659146106775780638da5cb5b146106975780638dbb7c06146106b55780638fdcf942146106d557806394354fd0146106f557600080fd5b806366a88d96146105ac57806368428a1b146105c25780636f8b44b0146105e257806370a0823114610602578063715018a614610622578063728d41c91461063757600080fd5b80633ccfd60b1161021957806353135ca0116101d257806353135ca01461050b5780635503a0e81461052a5780635aca1bb61461053f5780635bfe024d1461055f5780635c975abb146105725780636352211e1461058c57600080fd5b80633ccfd60b1461045257806342842e0e14610467578063438b630014610487578063453afb0f146104b45780634fdd43cb146104ca57806351830227146104ea57600080fd5b806316ba10e01161026b57806316ba10e0146103a757806316c38b3c146103c757806318160ddd146103e757806323b872dd146103fc5780632a23d07d1461041c5780633423e5481461043257600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780630d95ccc91461036457806313faede614610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612558565b6108a7565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108f9565b6040516102df91906127bb565b34801561031657600080fd5b5061032a6103253660046124f0565b61098b565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d3660046124ab565b6109cf565b005b34801561037057600080fd5b5061036261037f3660046124d5565b610a5d565b34801561039057600080fd5b50610399610aaa565b6040519081526020016102df565b3480156103b357600080fd5b506103626103c2366004612592565b610acb565b3480156103d357600080fd5b506103626103e23660046124d5565b610b0c565b3480156103f357600080fd5b50610399610b49565b34801561040857600080fd5b506103626104173660046123ca565b610b57565b34801561042857600080fd5b50610399600e5481565b34801561043e57600080fd5b506102d361044d366004612509565b610b62565b34801561045e57600080fd5b50610362610b77565b34801561047357600080fd5b506103626104823660046123ca565b610c1c565b34801561049357600080fd5b506104a76104a236600461237c565b610c37565b6040516102df9190612777565b3480156104c057600080fd5b50610399600d5481565b3480156104d657600080fd5b506103626104e5366004612592565b610d17565b3480156104f657600080fd5b506012546102d3906301000000900460ff1681565b34801561051757600080fd5b506012546102d390610100900460ff1681565b34801561053657600080fd5b506102fd610d54565b34801561054b57600080fd5b5061036261055a3660046124d5565b610de2565b61036261056d3660046125fd565b610e28565b34801561057e57600080fd5b506012546102d39060ff1681565b34801561059857600080fd5b5061032a6105a73660046124f0565b6110e5565b3480156105b857600080fd5b5061039960115481565b3480156105ce57600080fd5b506012546102d39062010000900460ff1681565b3480156105ee57600080fd5b506103626105fd3660046124f0565b6110f7565b34801561060e57600080fd5b5061039961061d36600461237c565b611126565b34801561062e57600080fd5b50610362611174565b34801561064357600080fd5b506103626106523660046124f0565b6111aa565b34801561066357600080fd5b506103626106723660046124f0565b6111d9565b34801561068357600080fd5b50610362610692366004612592565b611208565b3480156106a357600080fd5b506008546001600160a01b031661032a565b3480156106c157600080fd5b506103626106d03660046124f0565b611245565b3480156106e157600080fd5b506103626106f03660046124f0565b611274565b34801561070157600080fd5b5061039960105481565b34801561071757600080fd5b506102fd6112a3565b61036261072e3660046124f0565b6112b2565b34801561073f57600080fd5b5061036261074e366004612481565b611424565b34801561075f57600080fd5b506102fd6114ba565b34801561077457600080fd5b506103626107833660046124f0565b6114c7565b34801561079457600080fd5b506103626107a3366004612406565b6114f6565b3480156107b457600080fd5b506103626107c33660046124f0565b611547565b3480156107d457600080fd5b506102fd6107e33660046124f0565b6115c6565b3480156107f457600080fd5b50610399600f5481565b34801561080a57600080fd5b506103626108193660046124d5565b611737565b34801561082a57600080fd5b506102d3610839366004612397565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561087357600080fd5b506103626108823660046125da565b61177f565b34801561089357600080fd5b506103626108a236600461237c565b61183a565b60006001600160e01b031982166380ac58cd60e01b14806108d857506001600160e01b03198216635b5e139f60e01b145b806108f357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461090890612996565b80601f016020809104026020016040519081016040528092919081815260200182805461093490612996565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b6000610996826118d2565b6109b3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109da826110e5565b9050806001600160a01b0316836001600160a01b03161415610a0f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a2f5750610a2d8133610839565b155b15610a4d576040516367d9dca160e11b815260040160405180910390fd5b610a5883838361190b565b505050565b6008546001600160a01b03163314610a905760405162461bcd60e51b8152600401610a87906127fc565b60405180910390fd5b601280549115156101000261ff0019909216919091179055565b601254600090610100900460ff1615610ac45750600e5490565b50600d5490565b6008546001600160a01b03163314610af55760405162461bcd60e51b8152600401610a87906127fc565b8051610b0890600b9060208401906121db565b5050565b6008546001600160a01b03163314610b365760405162461bcd60e51b8152600401610a87906127fc565b6012805460ff1916911515919091179055565b600154600054036000190190565b610a58838383611967565b6000610b6f828585611b78565b949350505050565b6008546001600160a01b03163314610ba15760405162461bcd60e51b8152600401610a87906127fc565b60004711610be05760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610a87565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c19573d6000803e3d6000fd5b50565b610a58838383604051806020016040528060008152506114f6565b60606000610c4483611126565b90506000816001600160401b03811115610c6057610c60612a42565b604051908082528060200260200182016040528015610c89578160200160208202803683370190505b509050600160005b8381108015610ca25750600f548211155b15610d0d576000610cb2836110e5565b9050866001600160a01b0316816001600160a01b03161415610cfa5782848381518110610ce157610ce1612a2c565b602090810291909101015281610cf6816129d1565b9250505b82610d04816129d1565b93505050610c91565b5090949350505050565b6008546001600160a01b03163314610d415760405162461bcd60e51b8152600401610a87906127fc565b8051610b0890600c9060208401906121db565b600b8054610d6190612996565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8d90612996565b8015610dda5780601f10610daf57610100808354040283529160200191610dda565b820191906000526020600020905b815481529060010190602001808311610dbd57829003601f168201915b505050505081565b6008546001600160a01b03163314610e0c5760405162461bcd60e51b8152600401610a87906127fc565b60128054911515620100000262ff000019909216919091179055565b601254849060ff1615610e4d5760405162461bcd60e51b8152600401610a8790612831565b600081118015610e5f57506010548111155b610e7b5760405162461bcd60e51b8152600401610a87906127ce565b600f5481610e87610b49565b610e919190612908565b1115610eaf5760405162461bcd60e51b8152600401610a8790612868565b601254610100900460ff16610efb5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610a87565b601454610f405760405162461bcd60e51b815260206004820152601360248201527213595c9adb1948149bdbdd081b9bdd081cd95d606a1b6044820152606401610a87565b6040516bffffffffffffffffffffffff193360601b1660208201526034810185905283906054016040516020818303038152906040528051906020012014610fdc5760405162461bcd60e51b815260206004820152602960248201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656044820152683935b632903632b0b360b91b6064820152608401610a87565b610fe96014548484610b62565b6110415760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610a87565b8461104a610aaa565b6110549190612934565b3410156110995760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a87565b3360009081526013602052604090205484906110b6908790612908565b11156110d45760405162461bcd60e51b8152600401610a8790612896565b6110de3386611b8e565b5050505050565b60006110f082611bc6565b5192915050565b6008546001600160a01b031633146111215760405162461bcd60e51b8152600401610a87906127fc565b600f55565b60006001600160a01b03821661114f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461119e5760405162461bcd60e51b8152600401610a87906127fc565b6111a86000611ced565b565b6008546001600160a01b031633146111d45760405162461bcd60e51b8152600401610a87906127fc565b601155565b6008546001600160a01b031633146112035760405162461bcd60e51b8152600401610a87906127fc565b601455565b6008546001600160a01b031633146112325760405162461bcd60e51b8152600401610a87906127fc565b8051610b0890600a9060208401906121db565b6008546001600160a01b0316331461126f5760405162461bcd60e51b8152600401610a87906127fc565b600d55565b6008546001600160a01b0316331461129e5760405162461bcd60e51b8152600401610a87906127fc565b600e55565b60606003805461090890612996565b601254819060ff16156112d75760405162461bcd60e51b8152600401610a8790612831565b6000811180156112e957506010548111155b6113055760405162461bcd60e51b8152600401610a87906127ce565b600f5481611311610b49565b61131b9190612908565b11156113395760405162461bcd60e51b8152600401610a8790612868565b60125462010000900460ff166113865760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610a87565b8161138f610aaa565b6113999190612934565b3410156113de5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a87565b601154336000908152601360205260409020546113fc908490612908565b111561141a5760405162461bcd60e51b8152600401610a8790612896565b610b083383611b8e565b6001600160a01b03821633141561144e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610d6190612996565b6008546001600160a01b031633146114f15760405162461bcd60e51b8152600401610a87906127fc565b601055565b611501848484611967565b6001600160a01b0383163b15158015611523575061152184848484611d3f565b155b15611541576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b80600081116115685760405162461bcd60e51b8152600401610a87906127ce565b600f5481611574610b49565b61157e9190612908565b111561159c5760405162461bcd60e51b8152600401610a8790612868565b6008546001600160a01b0316331461141a5760405162461bcd60e51b8152600401610a87906127fc565b60606115d1826118d2565b6116355760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a87565b6012546301000000900460ff166116d857600c805461165390612996565b80601f016020809104026020016040519081016040528092919081815260200182805461167f90612996565b80156116cc5780601f106116a1576101008083540402835291602001916116cc565b820191906000526020600020905b8154815290600101906020018083116116af57829003601f168201915b50505050509050919050565b60006116e2611e36565b905060008151116117025760405180602001604052806000815250611730565b8061170c84611e45565b600b60405160200161172093929190612676565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117615760405162461bcd60e51b8152600401610a87906127fc565b6012805491151563010000000263ff00000019909216919091179055565b601254829060ff16156117a45760405162461bcd60e51b8152600401610a8790612831565b6000811180156117b657506010548111155b6117d25760405162461bcd60e51b8152600401610a87906127ce565b600f54816117de610b49565b6117e89190612908565b11156118065760405162461bcd60e51b8152600401610a8790612868565b6008546001600160a01b031633146118305760405162461bcd60e51b8152600401610a87906127fc565b610a588284611b8e565b6008546001600160a01b031633146118645760405162461bcd60e51b8152600401610a87906127fc565b6001600160a01b0381166118c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a87565b610c1981611ced565b6000816001111580156118e6575060005482105b80156108f3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061197282611bc6565b80519091506000906001600160a01b0316336001600160a01b031614806119a0575081516119a09033610839565b806119bb5750336119b08461098b565b6001600160a01b0316145b9050806119db57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a105760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611a3757604051633a954ecd60e21b815260040160405180910390fd5b611a47600084846000015161190b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611b3157600054811015611b3157825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110de565b600082611b858584611f42565b14949350505050565b6001600160a01b03821660009081526013602052604081208054839290611bb6908490612908565b90915550610b0890508282611fee565b60408051606081018252600080825260208201819052918101919091528180600111158015611bf6575060005481105b15611cd457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611cd25780516001600160a01b031615611c69579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ccd579392505050565b611c69565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d7490339089908890889060040161273a565b602060405180830381600087803b158015611d8e57600080fd5b505af1925050508015611dbe575060408051601f3d908101601f19168201909252611dbb91810190612575565b60015b611e19573d808015611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b508051611e11576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461090890612996565b606081611e695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e935780611e7d816129d1565b9150611e8c9050600a83612920565b9150611e6d565b6000816001600160401b03811115611ead57611ead612a42565b6040519080825280601f01601f191660200182016040528015611ed7576020820181803683370190505b5090505b8415610b6f57611eec600183612953565b9150611ef9600a866129ec565b611f04906030612908565b60f81b818381518110611f1957611f19612a2c565b60200101906001600160f81b031916908160001a905350611f3b600a86612920565b9450611edb565b600081815b8451811015611fe6576000858281518110611f6457611f64612a2c565b60200260200101519050808311611fa6576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611fd3565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611fde816129d1565b915050611f47565b509392505050565b610b08828260405180602001604052806000815250610a5883838360016000546001600160a01b03851661203457604051622e076360e81b815260040160405180910390fd5b836120525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561210357506001600160a01b0387163b15155b1561218c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121546000888480600101955088611d3f565b612171576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561210957826000541461218757600080fd5b6121d2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561218d575b506000556110de565b8280546121e790612996565b90600052602060002090601f016020900481019282612209576000855561224f565b82601f1061222257805160ff191683800117855561224f565b8280016001018555821561224f579182015b8281111561224f578251825591602001919060010190612234565b5061225b92915061225f565b5090565b5b8082111561225b5760008155600101612260565b60006001600160401b0383111561228d5761228d612a42565b6122a0601f8401601f19166020016128d8565b90508281528383830111156122b457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122e257600080fd5b919050565b600082601f8301126122f857600080fd5b813560206001600160401b0382111561231357612313612a42565b8160051b6123228282016128d8565b83815282810190868401838801850189101561233d57600080fd5b600093505b85841015612360578035835260019390930192918401918401612342565b50979650505050505050565b803580151581146122e257600080fd5b60006020828403121561238e57600080fd5b611730826122cb565b600080604083850312156123aa57600080fd5b6123b3836122cb565b91506123c1602084016122cb565b90509250929050565b6000806000606084860312156123df57600080fd5b6123e8846122cb565b92506123f6602085016122cb565b9150604084013590509250925092565b6000806000806080858703121561241c57600080fd5b612425856122cb565b9350612433602086016122cb565b92506040850135915060608501356001600160401b0381111561245557600080fd5b8501601f8101871361246657600080fd5b61247587823560208401612274565b91505092959194509250565b6000806040838503121561249457600080fd5b61249d836122cb565b91506123c16020840161236c565b600080604083850312156124be57600080fd5b6124c7836122cb565b946020939093013593505050565b6000602082840312156124e757600080fd5b6117308261236c565b60006020828403121561250257600080fd5b5035919050565b60008060006060848603121561251e57600080fd5b833592506020840135915060408401356001600160401b0381111561254257600080fd5b61254e868287016122e7565b9150509250925092565b60006020828403121561256a57600080fd5b813561173081612a58565b60006020828403121561258757600080fd5b815161173081612a58565b6000602082840312156125a457600080fd5b81356001600160401b038111156125ba57600080fd5b8201601f810184136125cb57600080fd5b610b6f84823560208401612274565b600080604083850312156125ed57600080fd5b823591506123c1602084016122cb565b6000806000806080858703121561261357600080fd5b84359350602085013592506040850135915060608501356001600160401b0381111561263e57600080fd5b612475878288016122e7565b6000815180845261266281602086016020860161296a565b601f01601f19169290920160200192915050565b6000845160206126898285838a0161296a565b85519184019161269c8184848a0161296a565b8554920191600090600181811c90808316806126b957607f831692505b8583108114156126d757634e487b7160e01b85526022600452602485fd5b8080156126eb57600181146126fc57612729565b60ff19851688528388019550612729565b60008b81526020902060005b858110156127215781548a820152908401908801612708565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276d9083018461264a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127af57835183529284019291840191600101612793565b50909695505050505050565b602081526000611730602083018461264a565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561290057612900612a42565b604052919050565b6000821982111561291b5761291b612a00565b500190565b60008261292f5761292f612a16565b500490565b600081600019048311821515161561294e5761294e612a00565b500290565b60008282101561296557612965612a00565b500390565b60005b8381101561298557818101518382015260200161296d565b838111156115415750506000910152565b600181811c908216806129aa57607f821691505b602082108114156129cb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129e5576129e5612a00565b5060010190565b6000826129fb576129fb612a16565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c1957600080fdfea2646970667358221220669342d84891be45a1d70d1e64b8fcd910f82698e12be49aa515c128d402062a64736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d5879683538766e4850755457424d6d48734a375a6461656b36383253396547597247474856765931506f36502f68696464656e2e6a736f6e
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c806366a88d961161017557806395d89b41116100dc578063c49b3d5411610095578063e0a808531161006f578063e0a80853146107fe578063e985e9c51461081e578063efbd73f414610867578063f2fde38b1461088757600080fd5b8063c49b3d54146107a8578063c87b56dd146107c8578063d5abeb01146107e857600080fd5b806395d89b411461070b578063a0712d6814610720578063a22cb46514610733578063a45ba8e714610753578063b071401b14610768578063b88d4fde1461078857600080fd5b80637cb647591161012e5780637cb64759146106575780637ec4a659146106775780638da5cb5b146106975780638dbb7c06146106b55780638fdcf942146106d557806394354fd0146106f557600080fd5b806366a88d96146105ac57806368428a1b146105c25780636f8b44b0146105e257806370a0823114610602578063715018a614610622578063728d41c91461063757600080fd5b80633ccfd60b1161021957806353135ca0116101d257806353135ca01461050b5780635503a0e81461052a5780635aca1bb61461053f5780635bfe024d1461055f5780635c975abb146105725780636352211e1461058c57600080fd5b80633ccfd60b1461045257806342842e0e14610467578063438b630014610487578063453afb0f146104b45780634fdd43cb146104ca57806351830227146104ea57600080fd5b806316ba10e01161026b57806316ba10e0146103a757806316c38b3c146103c757806318160ddd146103e757806323b872dd146103fc5780632a23d07d1461041c5780633423e5481461043257600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780630d95ccc91461036457806313faede614610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612558565b6108a7565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108f9565b6040516102df91906127bb565b34801561031657600080fd5b5061032a6103253660046124f0565b61098b565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d3660046124ab565b6109cf565b005b34801561037057600080fd5b5061036261037f3660046124d5565b610a5d565b34801561039057600080fd5b50610399610aaa565b6040519081526020016102df565b3480156103b357600080fd5b506103626103c2366004612592565b610acb565b3480156103d357600080fd5b506103626103e23660046124d5565b610b0c565b3480156103f357600080fd5b50610399610b49565b34801561040857600080fd5b506103626104173660046123ca565b610b57565b34801561042857600080fd5b50610399600e5481565b34801561043e57600080fd5b506102d361044d366004612509565b610b62565b34801561045e57600080fd5b50610362610b77565b34801561047357600080fd5b506103626104823660046123ca565b610c1c565b34801561049357600080fd5b506104a76104a236600461237c565b610c37565b6040516102df9190612777565b3480156104c057600080fd5b50610399600d5481565b3480156104d657600080fd5b506103626104e5366004612592565b610d17565b3480156104f657600080fd5b506012546102d3906301000000900460ff1681565b34801561051757600080fd5b506012546102d390610100900460ff1681565b34801561053657600080fd5b506102fd610d54565b34801561054b57600080fd5b5061036261055a3660046124d5565b610de2565b61036261056d3660046125fd565b610e28565b34801561057e57600080fd5b506012546102d39060ff1681565b34801561059857600080fd5b5061032a6105a73660046124f0565b6110e5565b3480156105b857600080fd5b5061039960115481565b3480156105ce57600080fd5b506012546102d39062010000900460ff1681565b3480156105ee57600080fd5b506103626105fd3660046124f0565b6110f7565b34801561060e57600080fd5b5061039961061d36600461237c565b611126565b34801561062e57600080fd5b50610362611174565b34801561064357600080fd5b506103626106523660046124f0565b6111aa565b34801561066357600080fd5b506103626106723660046124f0565b6111d9565b34801561068357600080fd5b50610362610692366004612592565b611208565b3480156106a357600080fd5b506008546001600160a01b031661032a565b3480156106c157600080fd5b506103626106d03660046124f0565b611245565b3480156106e157600080fd5b506103626106f03660046124f0565b611274565b34801561070157600080fd5b5061039960105481565b34801561071757600080fd5b506102fd6112a3565b61036261072e3660046124f0565b6112b2565b34801561073f57600080fd5b5061036261074e366004612481565b611424565b34801561075f57600080fd5b506102fd6114ba565b34801561077457600080fd5b506103626107833660046124f0565b6114c7565b34801561079457600080fd5b506103626107a3366004612406565b6114f6565b3480156107b457600080fd5b506103626107c33660046124f0565b611547565b3480156107d457600080fd5b506102fd6107e33660046124f0565b6115c6565b3480156107f457600080fd5b50610399600f5481565b34801561080a57600080fd5b506103626108193660046124d5565b611737565b34801561082a57600080fd5b506102d3610839366004612397565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561087357600080fd5b506103626108823660046125da565b61177f565b34801561089357600080fd5b506103626108a236600461237c565b61183a565b60006001600160e01b031982166380ac58cd60e01b14806108d857506001600160e01b03198216635b5e139f60e01b145b806108f357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461090890612996565b80601f016020809104026020016040519081016040528092919081815260200182805461093490612996565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b6000610996826118d2565b6109b3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109da826110e5565b9050806001600160a01b0316836001600160a01b03161415610a0f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a2f5750610a2d8133610839565b155b15610a4d576040516367d9dca160e11b815260040160405180910390fd5b610a5883838361190b565b505050565b6008546001600160a01b03163314610a905760405162461bcd60e51b8152600401610a87906127fc565b60405180910390fd5b601280549115156101000261ff0019909216919091179055565b601254600090610100900460ff1615610ac45750600e5490565b50600d5490565b6008546001600160a01b03163314610af55760405162461bcd60e51b8152600401610a87906127fc565b8051610b0890600b9060208401906121db565b5050565b6008546001600160a01b03163314610b365760405162461bcd60e51b8152600401610a87906127fc565b6012805460ff1916911515919091179055565b600154600054036000190190565b610a58838383611967565b6000610b6f828585611b78565b949350505050565b6008546001600160a01b03163314610ba15760405162461bcd60e51b8152600401610a87906127fc565b60004711610be05760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610a87565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c19573d6000803e3d6000fd5b50565b610a58838383604051806020016040528060008152506114f6565b60606000610c4483611126565b90506000816001600160401b03811115610c6057610c60612a42565b604051908082528060200260200182016040528015610c89578160200160208202803683370190505b509050600160005b8381108015610ca25750600f548211155b15610d0d576000610cb2836110e5565b9050866001600160a01b0316816001600160a01b03161415610cfa5782848381518110610ce157610ce1612a2c565b602090810291909101015281610cf6816129d1565b9250505b82610d04816129d1565b93505050610c91565b5090949350505050565b6008546001600160a01b03163314610d415760405162461bcd60e51b8152600401610a87906127fc565b8051610b0890600c9060208401906121db565b600b8054610d6190612996565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8d90612996565b8015610dda5780601f10610daf57610100808354040283529160200191610dda565b820191906000526020600020905b815481529060010190602001808311610dbd57829003601f168201915b505050505081565b6008546001600160a01b03163314610e0c5760405162461bcd60e51b8152600401610a87906127fc565b60128054911515620100000262ff000019909216919091179055565b601254849060ff1615610e4d5760405162461bcd60e51b8152600401610a8790612831565b600081118015610e5f57506010548111155b610e7b5760405162461bcd60e51b8152600401610a87906127ce565b600f5481610e87610b49565b610e919190612908565b1115610eaf5760405162461bcd60e51b8152600401610a8790612868565b601254610100900460ff16610efb5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610a87565b601454610f405760405162461bcd60e51b815260206004820152601360248201527213595c9adb1948149bdbdd081b9bdd081cd95d606a1b6044820152606401610a87565b6040516bffffffffffffffffffffffff193360601b1660208201526034810185905283906054016040516020818303038152906040528051906020012014610fdc5760405162461bcd60e51b815260206004820152602960248201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656044820152683935b632903632b0b360b91b6064820152608401610a87565b610fe96014548484610b62565b6110415760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610a87565b8461104a610aaa565b6110549190612934565b3410156110995760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a87565b3360009081526013602052604090205484906110b6908790612908565b11156110d45760405162461bcd60e51b8152600401610a8790612896565b6110de3386611b8e565b5050505050565b60006110f082611bc6565b5192915050565b6008546001600160a01b031633146111215760405162461bcd60e51b8152600401610a87906127fc565b600f55565b60006001600160a01b03821661114f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461119e5760405162461bcd60e51b8152600401610a87906127fc565b6111a86000611ced565b565b6008546001600160a01b031633146111d45760405162461bcd60e51b8152600401610a87906127fc565b601155565b6008546001600160a01b031633146112035760405162461bcd60e51b8152600401610a87906127fc565b601455565b6008546001600160a01b031633146112325760405162461bcd60e51b8152600401610a87906127fc565b8051610b0890600a9060208401906121db565b6008546001600160a01b0316331461126f5760405162461bcd60e51b8152600401610a87906127fc565b600d55565b6008546001600160a01b0316331461129e5760405162461bcd60e51b8152600401610a87906127fc565b600e55565b60606003805461090890612996565b601254819060ff16156112d75760405162461bcd60e51b8152600401610a8790612831565b6000811180156112e957506010548111155b6113055760405162461bcd60e51b8152600401610a87906127ce565b600f5481611311610b49565b61131b9190612908565b11156113395760405162461bcd60e51b8152600401610a8790612868565b60125462010000900460ff166113865760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610a87565b8161138f610aaa565b6113999190612934565b3410156113de5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a87565b601154336000908152601360205260409020546113fc908490612908565b111561141a5760405162461bcd60e51b8152600401610a8790612896565b610b083383611b8e565b6001600160a01b03821633141561144e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610d6190612996565b6008546001600160a01b031633146114f15760405162461bcd60e51b8152600401610a87906127fc565b601055565b611501848484611967565b6001600160a01b0383163b15158015611523575061152184848484611d3f565b155b15611541576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b80600081116115685760405162461bcd60e51b8152600401610a87906127ce565b600f5481611574610b49565b61157e9190612908565b111561159c5760405162461bcd60e51b8152600401610a8790612868565b6008546001600160a01b0316331461141a5760405162461bcd60e51b8152600401610a87906127fc565b60606115d1826118d2565b6116355760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a87565b6012546301000000900460ff166116d857600c805461165390612996565b80601f016020809104026020016040519081016040528092919081815260200182805461167f90612996565b80156116cc5780601f106116a1576101008083540402835291602001916116cc565b820191906000526020600020905b8154815290600101906020018083116116af57829003601f168201915b50505050509050919050565b60006116e2611e36565b905060008151116117025760405180602001604052806000815250611730565b8061170c84611e45565b600b60405160200161172093929190612676565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117615760405162461bcd60e51b8152600401610a87906127fc565b6012805491151563010000000263ff00000019909216919091179055565b601254829060ff16156117a45760405162461bcd60e51b8152600401610a8790612831565b6000811180156117b657506010548111155b6117d25760405162461bcd60e51b8152600401610a87906127ce565b600f54816117de610b49565b6117e89190612908565b11156118065760405162461bcd60e51b8152600401610a8790612868565b6008546001600160a01b031633146118305760405162461bcd60e51b8152600401610a87906127fc565b610a588284611b8e565b6008546001600160a01b031633146118645760405162461bcd60e51b8152600401610a87906127fc565b6001600160a01b0381166118c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a87565b610c1981611ced565b6000816001111580156118e6575060005482105b80156108f3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061197282611bc6565b80519091506000906001600160a01b0316336001600160a01b031614806119a0575081516119a09033610839565b806119bb5750336119b08461098b565b6001600160a01b0316145b9050806119db57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a105760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611a3757604051633a954ecd60e21b815260040160405180910390fd5b611a47600084846000015161190b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611b3157600054811015611b3157825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110de565b600082611b858584611f42565b14949350505050565b6001600160a01b03821660009081526013602052604081208054839290611bb6908490612908565b90915550610b0890508282611fee565b60408051606081018252600080825260208201819052918101919091528180600111158015611bf6575060005481105b15611cd457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611cd25780516001600160a01b031615611c69579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ccd579392505050565b611c69565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d7490339089908890889060040161273a565b602060405180830381600087803b158015611d8e57600080fd5b505af1925050508015611dbe575060408051601f3d908101601f19168201909252611dbb91810190612575565b60015b611e19573d808015611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b508051611e11576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461090890612996565b606081611e695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e935780611e7d816129d1565b9150611e8c9050600a83612920565b9150611e6d565b6000816001600160401b03811115611ead57611ead612a42565b6040519080825280601f01601f191660200182016040528015611ed7576020820181803683370190505b5090505b8415610b6f57611eec600183612953565b9150611ef9600a866129ec565b611f04906030612908565b60f81b818381518110611f1957611f19612a2c565b60200101906001600160f81b031916908160001a905350611f3b600a86612920565b9450611edb565b600081815b8451811015611fe6576000858281518110611f6457611f64612a2c565b60200260200101519050808311611fa6576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611fd3565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611fde816129d1565b915050611f47565b509392505050565b610b08828260405180602001604052806000815250610a5883838360016000546001600160a01b03851661203457604051622e076360e81b815260040160405180910390fd5b836120525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561210357506001600160a01b0387163b15155b1561218c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121546000888480600101955088611d3f565b612171576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561210957826000541461218757600080fd5b6121d2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561218d575b506000556110de565b8280546121e790612996565b90600052602060002090601f016020900481019282612209576000855561224f565b82601f1061222257805160ff191683800117855561224f565b8280016001018555821561224f579182015b8281111561224f578251825591602001919060010190612234565b5061225b92915061225f565b5090565b5b8082111561225b5760008155600101612260565b60006001600160401b0383111561228d5761228d612a42565b6122a0601f8401601f19166020016128d8565b90508281528383830111156122b457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122e257600080fd5b919050565b600082601f8301126122f857600080fd5b813560206001600160401b0382111561231357612313612a42565b8160051b6123228282016128d8565b83815282810190868401838801850189101561233d57600080fd5b600093505b85841015612360578035835260019390930192918401918401612342565b50979650505050505050565b803580151581146122e257600080fd5b60006020828403121561238e57600080fd5b611730826122cb565b600080604083850312156123aa57600080fd5b6123b3836122cb565b91506123c1602084016122cb565b90509250929050565b6000806000606084860312156123df57600080fd5b6123e8846122cb565b92506123f6602085016122cb565b9150604084013590509250925092565b6000806000806080858703121561241c57600080fd5b612425856122cb565b9350612433602086016122cb565b92506040850135915060608501356001600160401b0381111561245557600080fd5b8501601f8101871361246657600080fd5b61247587823560208401612274565b91505092959194509250565b6000806040838503121561249457600080fd5b61249d836122cb565b91506123c16020840161236c565b600080604083850312156124be57600080fd5b6124c7836122cb565b946020939093013593505050565b6000602082840312156124e757600080fd5b6117308261236c565b60006020828403121561250257600080fd5b5035919050565b60008060006060848603121561251e57600080fd5b833592506020840135915060408401356001600160401b0381111561254257600080fd5b61254e868287016122e7565b9150509250925092565b60006020828403121561256a57600080fd5b813561173081612a58565b60006020828403121561258757600080fd5b815161173081612a58565b6000602082840312156125a457600080fd5b81356001600160401b038111156125ba57600080fd5b8201601f810184136125cb57600080fd5b610b6f84823560208401612274565b600080604083850312156125ed57600080fd5b823591506123c1602084016122cb565b6000806000806080858703121561261357600080fd5b84359350602085013592506040850135915060608501356001600160401b0381111561263e57600080fd5b612475878288016122e7565b6000815180845261266281602086016020860161296a565b601f01601f19169290920160200192915050565b6000845160206126898285838a0161296a565b85519184019161269c8184848a0161296a565b8554920191600090600181811c90808316806126b957607f831692505b8583108114156126d757634e487b7160e01b85526022600452602485fd5b8080156126eb57600181146126fc57612729565b60ff19851688528388019550612729565b60008b81526020902060005b858110156127215781548a820152908401908801612708565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276d9083018461264a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127af57835183529284019291840191600101612793565b50909695505050505050565b602081526000611730602083018461264a565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561290057612900612a42565b604052919050565b6000821982111561291b5761291b612a00565b500190565b60008261292f5761292f612a16565b500490565b600081600019048311821515161561294e5761294e612a00565b500290565b60008282101561296557612965612a00565b500390565b60005b8381101561298557818101518382015260200161296d565b838111156115415750506000910152565b600181811c908216806129aa57607f821691505b602082108114156129cb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129e5576129e5612a00565b5060010190565b6000826129fb576129fb612a16565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c1957600080fdfea2646970667358221220669342d84891be45a1d70d1e64b8fcd910f82698e12be49aa515c128d402062a64736f6c63430008070033
Deployed Bytecode Sourcemap
50078:6173:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32592:305;;;;;;;;;;-1:-1:-1;32592:305:0;;;;;:::i;:::-;;:::i;:::-;;;10142:14:1;;10135:22;10117:41;;10105:2;10090:18;32592:305:0;;;;;;;;35977:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37480:204::-;;;;;;;;;;-1:-1:-1;37480:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8803:32:1;;;8785:51;;8773:2;8758:18;37480:204:0;8639:203:1;37043:371:0;;;;;;;;;;-1:-1:-1;37043:371:0;;;;;:::i;:::-;;:::i;:::-;;54937:83;;;;;;;;;;-1:-1:-1;54937:83:0;;;;;:::i;:::-;;:::i;51011:128::-;;;;;;;;;;;;;:::i;:::-;;;15374:25:1;;;15362:2;15347:18;51011:128:0;15228:177:1;55528:100:0;;;;;;;;;;-1:-1:-1;55528:100:0;;;;;:::i;:::-;;:::i;55634:77::-;;;;;;;;;;-1:-1:-1;55634:77:0;;;;;:::i;:::-;;:::i;31841:303::-;;;;;;;;;;;;;:::i;38337:170::-;;;;;;;;;;-1:-1:-1;38337:170:0;;;;;:::i;:::-;;:::i;50326:39::-;;;;;;;;;;;;;;;;53140:172;;;;;;;;;;-1:-1:-1;53140:172:0;;;;;:::i;:::-;;:::i;55811:155::-;;;;;;;;;;;;;:::i;38578:185::-;;;;;;;;;;-1:-1:-1;38578:185:0;;;;;:::i;:::-;;:::i;53318:635::-;;;;;;;;;;-1:-1:-1;53318:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50280:41::-;;;;;;;;;;;;;;;;55284:132;;;;;;;;;;-1:-1:-1;55284:132:0;;;;;:::i;:::-;;:::i;50591:28::-;;;;;;;;;;-1:-1:-1;50591:28:0;;;;;;;;;;;50518:33;;;;;;;;;;-1:-1:-1;50518:33:0;;;;;;;;;;;50202;;;;;;;;;;;;;:::i;54848:83::-;;;;;;;;;;-1:-1:-1;54848:83:0;;;;;:::i;:::-;;:::i;52313:821::-;;;;;;:::i;:::-;;:::i;50488:25::-;;;;;;;;;;-1:-1:-1;50488:25:0;;;;;;;;35786:124;;;;;;;;;;-1:-1:-1;35786:124:0;;;;;:::i;:::-;;:::i;50448:33::-;;;;;;;;;;;;;;;;50556:30;;;;;;;;;;-1:-1:-1;50556:30:0;;;;;;;;;;;55717:88;;;;;;;;;;-1:-1:-1;55717:88:0;;;;;:::i;:::-;;:::i;32961:206::-;;;;;;;;;;-1:-1:-1;32961:206:0;;;;;:::i;:::-;;:::i;9592:103::-;;;;;;;;;;;;;:::i;55026:116::-;;;;;;;;;;-1:-1:-1;55026:116:0;;;;;:::i;:::-;;:::i;54546:104::-;;;;;;;;;;-1:-1:-1;54546:104:0;;;;;:::i;:::-;;:::i;55422:100::-;;;;;;;;;;-1:-1:-1;55422:100:0;;;;;:::i;:::-;;:::i;8941:87::-;;;;;;;;;;-1:-1:-1;9014:6:0;;-1:-1:-1;;;;;9014:6:0;8941:87;;54748:94;;;;;;;;;;-1:-1:-1;54748:94:0;;;;;:::i;:::-;;:::i;54656:88::-;;;;;;;;;;-1:-1:-1;54656:88:0;;;;;:::i;:::-;;:::i;50406:37::-;;;;;;;;;;;;;;;;36146:104;;;;;;;;;;;;;:::i;51636:364::-;;;;;;:::i;:::-;;:::i;37756:279::-;;;;;;;;;;-1:-1:-1;37756:279:0;;;;;:::i;:::-;;:::i;50240:31::-;;;;;;;;;;;;;:::i;55148:130::-;;;;;;;;;;-1:-1:-1;55148:130:0;;;;;:::i;:::-;;:::i;38834:369::-;;;;;;;;;;-1:-1:-1;38834:369:0;;;;;:::i;:::-;;:::i;52169:138::-;;;;;;;;;;-1:-1:-1;52169:138:0;;;;;:::i;:::-;;:::i;53959:494::-;;;;;;;;;;-1:-1:-1;53959:494:0;;;;;:::i;:::-;;:::i;50370:31::-;;;;;;;;;;;;;;;;54459:81;;;;;;;;;;-1:-1:-1;54459:81:0;;;;;:::i;:::-;;:::i;38106:164::-;;;;;;;;;;-1:-1:-1;38106:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38227:25:0;;;38203:4;38227:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38106:164;52008:155;;;;;;;;;;-1:-1:-1;52008:155:0;;;;;:::i;:::-;;:::i;9850:201::-;;;;;;;;;;-1:-1:-1;9850:201:0;;;;;:::i;:::-;;:::i;32592:305::-;32694:4;-1:-1:-1;;;;;;32731:40:0;;-1:-1:-1;;;32731:40:0;;:105;;-1:-1:-1;;;;;;;32788:48:0;;-1:-1:-1;;;32788:48:0;32731:105;:158;;;-1:-1:-1;;;;;;;;;;21374:40:0;;;32853:36;32711:178;32592:305;-1:-1:-1;;32592:305:0:o;35977:100::-;36031:13;36064:5;36057:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35977:100;:::o;37480:204::-;37548:7;37573:16;37581:7;37573;:16::i;:::-;37568:64;;37598:34;;-1:-1:-1;;;37598:34:0;;;;;;;;;;;37568:64;-1:-1:-1;37652:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37652:24:0;;37480:204::o;37043:371::-;37116:13;37132:24;37148:7;37132:15;:24::i;:::-;37116:40;;37177:5;-1:-1:-1;;;;;37171:11:0;:2;-1:-1:-1;;;;;37171:11:0;;37167:48;;;37191:24;;-1:-1:-1;;;37191:24:0;;;;;;;;;;;37167:48;7772:10;-1:-1:-1;;;;;37232:21:0;;;;;;:63;;-1:-1:-1;37258:37:0;37275:5;7772:10;38106:164;:::i;37258:37::-;37257:38;37232:63;37228:138;;;37319:35;;-1:-1:-1;;;37319:35:0;;;;;;;;;;;37228:138;37378:28;37387:2;37391:7;37400:5;37378:8;:28::i;:::-;37105:309;37043:371;;:::o;54937:83::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;;;;;;;;;54993:13:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;54993:21:0;;::::1;::::0;;;::::1;::::0;;54937:83::o;51011:128::-;51068:13;;51047:7;;51068:13;;;;;51065:36;;;-1:-1:-1;51090:11:0;;;51011:128::o;51065:36::-;-1:-1:-1;51119:14:0;;;51011:128::o;55528:100::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55600:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55528:100:::0;:::o;55634:77::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55690:6:::1;:15:::0;;-1:-1:-1;;55690:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55634:77::o;31841:303::-;50998:1;32095:12;31885:7;32079:13;:28;-1:-1:-1;;32079:46:0;;31841:303::o;38337:170::-;38471:28;38481:4;38487:2;38491:7;38471:9;:28::i;53140:172::-;53236:4;53260:44;53279:5;53286:11;53299:4;53260:18;:44::i;:::-;53253:51;53140:172;-1:-1:-1;;;;53140:172:0:o;55811:155::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55887:1:::1;55863:21;:25;55855:50;;;::::0;-1:-1:-1;;;55855:50:0;;12108:2:1;55855:50:0::1;::::0;::::1;12090:21:1::0;12147:2;12127:18;;;12120:30;-1:-1:-1;;;12166:18:1;;;12159:42;12218:18;;55855:50:0::1;11906:336:1::0;55855:50:0::1;9014:6:::0;;55912:48:::1;::::0;-1:-1:-1;;;;;9014:6:0;;;;55938:21:::1;55912:48:::0;::::1;;;::::0;::::1;::::0;;;55938:21;9014:6;55912:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;55811:155::o:0;38578:185::-;38716:39;38733:4;38739:2;38743:7;38716:39;;;;;;;;;;;;:16;:39::i;53318:635::-;53393:16;53421:23;53447:17;53457:6;53447:9;:17::i;:::-;53421:43;;53471:30;53518:15;-1:-1:-1;;;;;53504:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53504:30:0;-1:-1:-1;53471:63:0;-1:-1:-1;53566:1:0;53541:22;53610:309;53635:15;53617;:33;:64;;;;;53672:9;;53654:14;:27;;53617:64;53610:309;;;53692:25;53720:23;53728:14;53720:7;:23::i;:::-;53692:51;;53779:6;-1:-1:-1;;;;;53758:27:0;:17;-1:-1:-1;;;;;53758:27:0;;53754:131;;;53831:14;53798:13;53812:15;53798:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;53858:17;;;;:::i;:::-;;;;53754:131;53895:16;;;;:::i;:::-;;;;53683:236;53610:309;;;-1:-1:-1;53934:13:0;;53318:635;-1:-1:-1;;;;53318:635:0:o;55284:132::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55372:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;50202:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54848:83::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54907:10:::1;:18:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54907:18:0;;::::1;::::0;;;::::1;::::0;;54848:83::o;52313:821::-;51206:6;;52447:11;;51206:6;;51205:7;51197:43;;;;-1:-1:-1;;;51197:43:0;;;;;;;:::i;:::-;51269:1;51255:11;:15;:52;;;;;51289:18;;51274:11;:33;;51255:52;51247:85;;;;-1:-1:-1;;;51247:85:0;;;;;;;:::i;:::-;51378:9;;51363:11;51347:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51339:73;;;;-1:-1:-1;;;51339:73:0;;;;;;;:::i;:::-;52475:13:::1;::::0;::::1;::::0;::::1;;;52467:45;;;::::0;-1:-1:-1;;;52467:45:0;;11351:2:1;52467:45:0::1;::::0;::::1;11333:21:1::0;11390:2;11370:18;;;11363:30;-1:-1:-1;;;11409:18:1;;;11402:48;11467:18;;52467:45:0::1;11149:342:1::0;52467:45:0::1;52527:10;::::0;52519:48:::1;;;::::0;-1:-1:-1;;;52519:48:0;;12449:2:1;52519:48:0::1;::::0;::::1;12431:21:1::0;12488:2;12468:18;;;12461:30;-1:-1:-1;;;12507:18:1;;;12500:49;12566:18;;52519:48:0::1;12247:343:1::0;52519:48:0::1;52659:40;::::0;-1:-1:-1;;52676:10:0::1;6733:2:1::0;6729:15;6725:53;52659:40:0::1;::::0;::::1;6713:66:1::0;6795:12;;;6788:28;;;52704:4:0;;6832:12:1;;52659:40:0::1;;;;;;;;;;;;52649:51;;;;;;:59;52641:113;;;::::0;-1:-1:-1;;;52641:113:0;;11698:2:1;52641:113:0::1;::::0;::::1;11680:21:1::0;11737:2;11717:18;;;11710:30;11776:34;11756:18;;;11749:62;-1:-1:-1;;;11827:18:1;;;11820:39;11876:19;;52641:113:0::1;11496:405:1::0;52641:113:0::1;52830:31;52837:10;;52849:4;52855:5;52830:6;:31::i;:::-;52822:79;;;::::0;-1:-1:-1;;;52822:79:0;;15026:2:1;52822:79:0::1;::::0;::::1;15008:21:1::0;15065:2;15045:18;;;15038:30;15104:34;15084:18;;;15077:62;-1:-1:-1;;;15155:18:1;;;15148:33;15198:19;;52822:79:0::1;14824:399:1::0;52822:79:0::1;52938:11;52929:6;:4;:6::i;:::-;:20;;;;:::i;:::-;52916:9;:33;;52908:65;;;::::0;-1:-1:-1;;;52908:65:0;;14678:2:1;52908:65:0::1;::::0;::::1;14660:21:1::0;14717:2;14697:18;;;14690:30;-1:-1:-1;;;14736:18:1;;;14729:49;14795:18;;52908:65:0::1;14476:343:1::0;52908:65:0::1;53009:10;52988:32;::::0;;;:20:::1;:32;::::0;;;;;53038:10;;52988:46:::1;::::0;53023:11;;52988:46:::1;:::i;:::-;:60;;52980:107;;;;-1:-1:-1::0;;;52980:107:0::1;;;;;;;:::i;:::-;53094:34;53104:10;53116:11;53094:9;:34::i;:::-;52313:821:::0;;;;;:::o;35786:124::-;35850:7;35877:20;35889:7;35877:11;:20::i;:::-;:25;;35786:124;-1:-1:-1;;35786:124:0:o;55717:88::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55780:9:::1;:19:::0;55717:88::o;32961:206::-;33025:7;-1:-1:-1;;;;;33049:19:0;;33045:60;;33077:28;;-1:-1:-1;;;33077:28:0;;;;;;;;;;;33045:60;-1:-1:-1;;;;;;33131:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33131:27:0;;32961:206::o;9592:103::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;9657:30:::1;9684:1;9657:18;:30::i;:::-;9592:103::o:0;55026:116::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55104:14:::1;:32:::0;55026:116::o;54546:104::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54618:10:::1;:24:::0;54546:104::o;55422:100::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55494:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;54748:94::-:0;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54814:14:::1;:22:::0;54748:94::o;54656:88::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54719:11:::1;:19:::0;54656:88::o;36146:104::-;36202:13;36235:7;36228:14;;;;;:::i;51636:364::-;51206:6;;51701:11;;51206:6;;51205:7;51197:43;;;;-1:-1:-1;;;51197:43:0;;;;;;;:::i;:::-;51269:1;51255:11;:15;:52;;;;;51289:18;;51274:11;:33;;51255:52;51247:85;;;;-1:-1:-1;;;51247:85:0;;;;;;;:::i;:::-;51378:9;;51363:11;51347:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51339:73;;;;-1:-1:-1;;;51339:73:0;;;;;;;:::i;:::-;51729:10:::1;::::0;;;::::1;;;51721:42;;;::::0;-1:-1:-1;;;51721:42:0;;11351:2:1;51721:42:0::1;::::0;::::1;11333:21:1::0;11390:2;11370:18;;;11363:30;-1:-1:-1;;;11409:18:1;;;11402:48;11467:18;;51721:42:0::1;11149:342:1::0;51721:42:0::1;51800:11;51791:6;:4;:6::i;:::-;:20;;;;:::i;:::-;51778:9;:33;;51770:65;;;::::0;-1:-1:-1;;;51770:65:0;;14678:2:1;51770:65:0::1;::::0;::::1;14660:21:1::0;14717:2;14697:18;;;14690:30;-1:-1:-1;;;14736:18:1;;;14729:49;14795:18;;51770:65:0::1;14476:343:1::0;51770:65:0::1;51900:14;::::0;51871:10:::1;51850:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;51885:11;;51850:46:::1;:::i;:::-;:64;;51842:111;;;;-1:-1:-1::0;;;51842:111:0::1;;;;;;;:::i;:::-;51960:34;51970:10;51982:11;51960:9;:34::i;37756:279::-:0;-1:-1:-1;;;;;37847:24:0;;7772:10;37847:24;37843:54;;;37880:17;;-1:-1:-1;;;37880:17:0;;;;;;;;;;;37843:54;7772:10;37910:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37910:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37910:53:0;;;;;;;;;;37979:48;;10117:41:1;;;37910:42:0;;7772:10;37979:48;;10090:18:1;37979:48:0;;;;;;;37756:279;;:::o;50240:31::-;;;;;;;:::i;55148:130::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55232:18:::1;:40:::0;55148:130::o;38834:369::-;39001:28;39011:4;39017:2;39021:7;39001:9;:28::i;:::-;-1:-1:-1;;;;;39044:13:0;;11525:20;11573:8;;39044:76;;;;;39064:56;39095:4;39101:2;39105:7;39114:5;39064:30;:56::i;:::-;39063:57;39044:76;39040:156;;;39144:40;;-1:-1:-1;;;39144:40:0;;;;;;;;;;;39040:156;38834:369;;;;:::o;52169:138::-;52237:11;51510:1;51496:11;:15;51488:48;;;;-1:-1:-1;;;51488:48:0;;;;;;;:::i;:::-;51582:9;;51567:11;51551:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51543:73;;;;-1:-1:-1;;;51543:73:0;;;;;;;:::i;:::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23:::1;9153:68;;;;-1:-1:-1::0;;;9153:68:0::1;;;;;;;:::i;53959:494::-:0;54058:13;54099:17;54107:8;54099:7;:17::i;:::-;54083:98;;;;-1:-1:-1;;;54083:98:0;;13510:2:1;54083:98:0;;;13492:21:1;13549:2;13529:18;;;13522:30;13588:34;13568:18;;;13561:62;-1:-1:-1;;;13639:18:1;;;13632:45;13694:19;;54083:98:0;13308:411:1;54083:98:0;54194:8;;;;;;;54190:64;;54229:17;54222:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53959:494;;;:::o;54190:64::-;54262:28;54293:10;:8;:10::i;:::-;54262:41;;54348:1;54323:14;54317:28;:32;:130;;;;;;;;;;;;;;;;;54385:14;54401:19;:8;:17;:19::i;:::-;54422:9;54368:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54317:130;54310:137;53959:494;-1:-1:-1;;;53959:494:0:o;54459:81::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54517:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54517:17:0;;::::1;::::0;;;::::1;::::0;;54459:81::o;52008:155::-;51206:6;;52094:11;;51206:6;;51205:7;51197:43;;;;-1:-1:-1;;;51197:43:0;;;;;;;:::i;:::-;51269:1;51255:11;:15;:52;;;;;51289:18;;51274:11;:33;;51255:52;51247:85;;;;-1:-1:-1;;;51247:85:0;;;;;;;:::i;:::-;51378:9;;51363:11;51347:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51339:73;;;;-1:-1:-1;;;51339:73:0;;;;;;;:::i;:::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23:::1;9153:68;;;;-1:-1:-1::0;;;9153:68:0::1;;;;;;;:::i;:::-;52124:33:::2;52134:9;52145:11;52124:9;:33::i;9850:201::-:0;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9939:22:0;::::1;9931:73;;;::::0;-1:-1:-1;;;9931:73:0;;10595:2:1;9931:73:0::1;::::0;::::1;10577:21:1::0;10634:2;10614:18;;;10607:30;10673:34;10653:18;;;10646:62;-1:-1:-1;;;10724:18:1;;;10717:36;10770:19;;9931:73:0::1;10393:402:1::0;9931:73:0::1;10015:28;10034:8;10015:18;:28::i;39458:187::-:0;39515:4;39558:7;50998:1;39539:26;;:53;;;;;39579:13;;39569:7;:23;39539:53;:98;;;;-1:-1:-1;;39610:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;39610:27:0;;;;39609:28;;39458:187::o;47069:196::-;47184:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47184:29:0;-1:-1:-1;;;;;47184:29:0;;;;;;;;;47229:28;;47184:24;;47229:28;;;;;;;47069:196;;;:::o;42571:2112::-;42686:35;42724:20;42736:7;42724:11;:20::i;:::-;42799:18;;42686:58;;-1:-1:-1;42757:22:0;;-1:-1:-1;;;;;42783:34:0;7772:10;-1:-1:-1;;;;;42783:34:0;;:101;;;-1:-1:-1;42851:18:0;;42834:50;;7772:10;38106:164;:::i;42834:50::-;42783:154;;;-1:-1:-1;7772:10:0;42901:20;42913:7;42901:11;:20::i;:::-;-1:-1:-1;;;;;42901:36:0;;42783:154;42757:181;;42956:17;42951:66;;42982:35;;-1:-1:-1;;;42982:35:0;;;;;;;;;;;42951:66;43054:4;-1:-1:-1;;;;;43032:26:0;:13;:18;;;-1:-1:-1;;;;;43032:26:0;;43028:67;;43067:28;;-1:-1:-1;;;43067:28:0;;;;;;;;;;;43028:67;-1:-1:-1;;;;;43110:16:0;;43106:52;;43135:23;;-1:-1:-1;;;43135:23:0;;;;;;;;;;;43106:52;43279:49;43296:1;43300:7;43309:13;:18;;;43279:8;:49::i;:::-;-1:-1:-1;;;;;43624:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;43624:31:0;;;-1:-1:-1;;;;;43624:31:0;;;-1:-1:-1;;43624:31:0;;;;;;;43670:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43670:29:0;;;;;;;;;;;43716:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;43761:61:0;;;;-1:-1:-1;;;43806:15:0;43761:61;;;;;;;;;;;44096:11;;;44126:24;;;;;:29;44096:11;;44126:29;44122:445;;44351:13;;44337:11;:27;44333:219;;;44421:18;;;44389:24;;;:11;:24;;;;;;;;:50;;44504:28;;;;-1:-1:-1;;;;;44462:70:0;-1:-1:-1;;;44462:70:0;-1:-1:-1;;;;;;44462:70:0;;;-1:-1:-1;;;;;44389:50:0;;;44462:70;;;;;;;44333:219;43599:979;44614:7;44610:2;-1:-1:-1;;;;;44595:27:0;44604:4;-1:-1:-1;;;;;44595:27:0;;;;;;;;;;;44633:42;38834:369;3683:190;3808:4;3861;3832:25;3845:5;3852:4;3832:12;:25::i;:::-;:33;;3683:190;-1:-1:-1;;;;3683:190:0:o;55972:166::-;-1:-1:-1;;;;;56047:31:0;;;;;;:20;:31;;;;;:45;;56081:11;;56047:31;:45;;56081:11;;56047:45;:::i;:::-;;;;-1:-1:-1;56099:33:0;;-1:-1:-1;56109:9:0;56120:11;56099:9;:33::i;34616:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34726:7:0;;50998:1;34775:23;;:47;;;;;34809:13;;34802:4;:20;34775:47;34771:886;;;34843:31;34877:17;;;:11;:17;;;;;;;;;34843:51;;;;;;;;;-1:-1:-1;;;;;34843:51:0;;;;-1:-1:-1;;;34843:51:0;;-1:-1:-1;;;;;34843:51:0;;;;;;;;-1:-1:-1;;;34843:51:0;;;;;;;;;;;;;;34913:729;;34963:14;;-1:-1:-1;;;;;34963:28:0;;34959:101;;35027:9;34616:1108;-1:-1:-1;;;34616:1108:0:o;34959:101::-;-1:-1:-1;;;35402:6:0;35447:17;;;;:11;:17;;;;;;;;;35435:29;;;;;;;;;-1:-1:-1;;;;;35435:29:0;;;;;-1:-1:-1;;;35435:29:0;;-1:-1:-1;;;;;35435:29:0;;;;;;;;-1:-1:-1;;;35435:29:0;;;;;;;;;;;;;35495:28;35491:109;;35563:9;34616:1108;-1:-1:-1;;;34616:1108:0:o;35491:109::-;35362:261;;;34824:833;34771:886;35685:31;;-1:-1:-1;;;35685:31:0;;;;;;;;;;;10211:191;10304:6;;;-1:-1:-1;;;;;10321:17:0;;;-1:-1:-1;;;;;;10321:17:0;;;;;;;10354:40;;10304:6;;;10321:17;10304:6;;10354:40;;10285:16;;10354:40;10274:128;10211:191;:::o;47757:667::-;47941:72;;-1:-1:-1;;;47941:72:0;;47920:4;;-1:-1:-1;;;;;47941:36:0;;;;;:72;;7772:10;;47992:4;;47998:7;;48007:5;;47941:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47941:72:0;;;;;;;;-1:-1:-1;;47941:72:0;;;;;;;;;;;;:::i;:::-;;;47937:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48175:13:0;;48171:235;;48221:40;;-1:-1:-1;;;48221:40:0;;;;;;;;;;;48171:235;48364:6;48358:13;48349:6;48345:2;48341:15;48334:38;47937:480;-1:-1:-1;;;;;;48060:55:0;-1:-1:-1;;;48060:55:0;;-1:-1:-1;47757:667:0;;;;;;:::o;56144:104::-;56204:13;56233:9;56226:16;;;;;:::i;5281:723::-;5337:13;5558:10;5554:53;;-1:-1:-1;;5585:10:0;;;;;;;;;;;;-1:-1:-1;;;5585:10:0;;;;;5281:723::o;5554:53::-;5632:5;5617:12;5673:78;5680:9;;5673:78;;5706:8;;;;:::i;:::-;;-1:-1:-1;5729:10:0;;-1:-1:-1;5737:2:0;5729:10;;:::i;:::-;;;5673:78;;;5761:19;5793:6;-1:-1:-1;;;;;5783:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5783:17:0;;5761:39;;5811:154;5818:10;;5811:154;;5845:11;5855:1;5845:11;;:::i;:::-;;-1:-1:-1;5914:10:0;5922:2;5914:5;:10;:::i;:::-;5901:24;;:2;:24;:::i;:::-;5888:39;;5871:6;5878;5871:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5871:56:0;;;;;;;;-1:-1:-1;5942:11:0;5951:2;5942:11;;:::i;:::-;;;5811:154;;4235:701;4318:7;4361:4;4318:7;4376:523;4400:5;:12;4396:1;:16;4376:523;;;4434:20;4457:5;4463:1;4457:8;;;;;;;;:::i;:::-;;;;;;;4434:31;;4500:12;4484;:28;4480:408;;4637:44;;;;;;7012:19:1;;;7047:12;;;7040:28;;;7084:12;;4637:44:0;;;;;;;;;;;;4627:55;;;;;;4612:70;;4480:408;;;4827:44;;;;;;7012:19:1;;;7047:12;;;7040:28;;;7084:12;;4827:44:0;;;;;;;;;;;;4817:55;;;;;;4802:70;;4480:408;-1:-1:-1;4414:3:0;;;;:::i;:::-;;;;4376:523;;;-1:-1:-1;4916:12:0;4235:701;-1:-1:-1;;;4235:701:0:o;39653:104::-;39722:27;39732:2;39736:8;39722:27;;;;;;;;;;;;40243:32;40249:2;40253:8;40263:5;40270:4;40681:20;40704:13;-1:-1:-1;;;;;40732:16:0;;40728:48;;40757:19;;-1:-1:-1;;;40757:19:0;;;;;;;;;;;40728:48;40791:13;40787:44;;40813:18;;-1:-1:-1;;;40813:18:0;;;;;;;;;;;40787:44;-1:-1:-1;;;;;41182:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;41241:49:0;;-1:-1:-1;;;;;41182:44:0;;;;;;;41241:49;;;;-1:-1:-1;;41182:44:0;;;;;;41241:49;;;;;;;;;;;;;;;;41307:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;41357:66:0;;;;-1:-1:-1;;;41407:15:0;41357:66;;;;;;;;;;41307:25;41504:23;;;41548:4;:23;;;;-1:-1:-1;;;;;;41556:13:0;;11525:20;11573:8;;41556:15;41544:641;;;41592:314;41623:38;;41648:12;;-1:-1:-1;;;;;41623:38:0;;;41640:1;;41623:38;;41640:1;;41623:38;41689:69;41728:1;41732:2;41736:14;;;;;;41752:5;41689:30;:69::i;:::-;41684:174;;41794:40;;-1:-1:-1;;;41794:40:0;;;;;;;;;;;41684:174;41901:3;41885:12;:19;;41592:314;;41987:12;41970:13;;:29;41966:43;;42001:8;;;41966:43;41544:641;;;42050:120;42081:40;;42106:14;;;;;-1:-1:-1;;;;;42081:40:0;;;42098:1;;42081:40;;42098:1;;42081:40;42165:3;42149:12;:19;;42050:120;;41544:641;-1:-1:-1;42199:13:0;:28;42249:60;38834:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:180::-;3530:6;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;3622:26;3638:9;3622:26;:::i;3659:180::-;3718:6;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;-1:-1:-1;3810:23:1;;3659:180;-1:-1:-1;3659:180:1:o;3844:484::-;3946:6;3954;3962;4015:2;4003:9;3994:7;3990:23;3986:32;3983:52;;;4031:1;4028;4021:12;3983:52;4067:9;4054:23;4044:33;;4124:2;4113:9;4109:18;4096:32;4086:42;;4179:2;4168:9;4164:18;4151:32;-1:-1:-1;;;;;4198:6:1;4195:30;4192:50;;;4238:1;4235;4228:12;4192:50;4261:61;4314:7;4305:6;4294:9;4290:22;4261:61;:::i;:::-;4251:71;;;3844:484;;;;;:::o;4333:245::-;4391:6;4444:2;4432:9;4423:7;4419:23;4415:32;4412:52;;;4460:1;4457;4450:12;4412:52;4499:9;4486:23;4518:30;4542:5;4518:30;:::i;4583:249::-;4652:6;4705:2;4693:9;4684:7;4680:23;4676:32;4673:52;;;4721:1;4718;4711:12;4673:52;4753:9;4747:16;4772:30;4796:5;4772:30;:::i;4837:450::-;4906:6;4959:2;4947:9;4938:7;4934:23;4930:32;4927:52;;;4975:1;4972;4965:12;4927:52;5015:9;5002:23;-1:-1:-1;;;;;5040:6:1;5037:30;5034:50;;;5080:1;5077;5070:12;5034:50;5103:22;;5156:4;5148:13;;5144:27;-1:-1:-1;5134:55:1;;5185:1;5182;5175:12;5134:55;5208:73;5273:7;5268:2;5255:16;5250:2;5246;5242:11;5208:73;:::i;5477:254::-;5545:6;5553;5606:2;5594:9;5585:7;5581:23;5577:32;5574:52;;;5622:1;5619;5612:12;5574:52;5658:9;5645:23;5635:33;;5687:38;5721:2;5710:9;5706:18;5687:38;:::i;5736:553::-;5847:6;5855;5863;5871;5924:3;5912:9;5903:7;5899:23;5895:33;5892:53;;;5941:1;5938;5931:12;5892:53;5977:9;5964:23;5954:33;;6034:2;6023:9;6019:18;6006:32;5996:42;;6085:2;6074:9;6070:18;6057:32;6047:42;;6140:2;6129:9;6125:18;6112:32;-1:-1:-1;;;;;6159:6:1;6156:30;6153:50;;;6199:1;6196;6189:12;6153:50;6222:61;6275:7;6266:6;6255:9;6251:22;6222:61;:::i;6294:257::-;6335:3;6373:5;6367:12;6400:6;6395:3;6388:19;6416:63;6472:6;6465:4;6460:3;6456:14;6449:4;6442:5;6438:16;6416:63;:::i;:::-;6533:2;6512:15;-1:-1:-1;;6508:29:1;6499:39;;;;6540:4;6495:50;;6294:257;-1:-1:-1;;6294:257:1:o;7107:1527::-;7331:3;7369:6;7363:13;7395:4;7408:51;7452:6;7447:3;7442:2;7434:6;7430:15;7408:51;:::i;:::-;7522:13;;7481:16;;;;7544:55;7522:13;7481:16;7566:15;;;7544:55;:::i;:::-;7688:13;;7621:20;;;7661:1;;7748;7770:18;;;;7823;;;;7850:93;;7928:4;7918:8;7914:19;7902:31;;7850:93;7991:2;7981:8;7978:16;7958:18;7955:40;7952:167;;;-1:-1:-1;;;8018:33:1;;8074:4;8071:1;8064:15;8104:4;8025:3;8092:17;7952:167;8135:18;8162:110;;;;8286:1;8281:328;;;;8128:481;;8162:110;-1:-1:-1;;8197:24:1;;8183:39;;8242:20;;;;-1:-1:-1;8162:110:1;;8281:328;15763:1;15756:14;;;15800:4;15787:18;;8376:1;8390:169;8404:8;8401:1;8398:15;8390:169;;;8486:14;;8471:13;;;8464:37;8529:16;;;;8421:10;;8390:169;;;8394:3;;8590:8;8583:5;8579:20;8572:27;;8128:481;-1:-1:-1;8625:3:1;;7107:1527;-1:-1:-1;;;;;;;;;;;7107:1527:1:o;8847:488::-;-1:-1:-1;;;;;9116:15:1;;;9098:34;;9168:15;;9163:2;9148:18;;9141:43;9215:2;9200:18;;9193:34;;;9263:3;9258:2;9243:18;;9236:31;;;9041:4;;9284:45;;9309:19;;9301:6;9284:45;:::i;:::-;9276:53;8847:488;-1:-1:-1;;;;;;8847:488:1:o;9340:632::-;9511:2;9563:21;;;9633:13;;9536:18;;;9655:22;;;9482:4;;9511:2;9734:15;;;;9708:2;9693:18;;;9482:4;9777:169;9791:6;9788:1;9785:13;9777:169;;;9852:13;;9840:26;;9921:15;;;;9886:12;;;;9813:1;9806:9;9777:169;;;-1:-1:-1;9963:3:1;;9340:632;-1:-1:-1;;;;;;9340:632:1:o;10169:219::-;10318:2;10307:9;10300:21;10281:4;10338:44;10378:2;10367:9;10363:18;10355:6;10338:44;:::i;10800:344::-;11002:2;10984:21;;;11041:2;11021:18;;;11014:30;-1:-1:-1;;;11075:2:1;11060:18;;11053:50;11135:2;11120:18;;10800:344::o;12595:356::-;12797:2;12779:21;;;12816:18;;;12809:30;12875:34;12870:2;12855:18;;12848:62;12942:2;12927:18;;12595:356::o;12956:347::-;13158:2;13140:21;;;13197:2;13177:18;;;13170:30;13236:25;13231:2;13216:18;;13209:53;13294:2;13279:18;;12956:347::o;13724:344::-;13926:2;13908:21;;;13965:2;13945:18;;;13938:30;-1:-1:-1;;;13999:2:1;13984:18;;13977:50;14059:2;14044:18;;13724:344::o;14073:398::-;14275:2;14257:21;;;14314:2;14294:18;;;14287:30;14353:34;14348:2;14333:18;;14326:62;-1:-1:-1;;;14419:2:1;14404:18;;14397:32;14461:3;14446:19;;14073:398::o;15410:275::-;15481:2;15475:9;15546:2;15527:13;;-1:-1:-1;;15523:27:1;15511:40;;-1:-1:-1;;;;;15566:34:1;;15602:22;;;15563:62;15560:88;;;15628:18;;:::i;:::-;15664:2;15657:22;15410:275;;-1:-1:-1;15410:275:1:o;15816:128::-;15856:3;15887:1;15883:6;15880:1;15877:13;15874:39;;;15893:18;;:::i;:::-;-1:-1:-1;15929:9:1;;15816:128::o;15949:120::-;15989:1;16015;16005:35;;16020:18;;:::i;:::-;-1:-1:-1;16054:9:1;;15949:120::o;16074:168::-;16114:7;16180:1;16176;16172:6;16168:14;16165:1;16162:21;16157:1;16150:9;16143:17;16139:45;16136:71;;;16187:18;;:::i;:::-;-1:-1:-1;16227:9:1;;16074:168::o;16247:125::-;16287:4;16315:1;16312;16309:8;16306:34;;;16320:18;;:::i;:::-;-1:-1:-1;16357:9:1;;16247:125::o;16377:258::-;16449:1;16459:113;16473:6;16470:1;16467:13;16459:113;;;16549:11;;;16543:18;16530:11;;;16523:39;16495:2;16488:10;16459:113;;;16590:6;16587:1;16584:13;16581:48;;;-1:-1:-1;;16625:1:1;16607:16;;16600:27;16377:258::o;16640:380::-;16719:1;16715:12;;;;16762;;;16783:61;;16837:4;16829:6;16825:17;16815:27;;16783:61;16890:2;16882:6;16879:14;16859:18;16856:38;16853:161;;;16936:10;16931:3;16927:20;16924:1;16917:31;16971:4;16968:1;16961:15;16999:4;16996:1;16989:15;16853:161;;16640:380;;;:::o;17025:135::-;17064:3;-1:-1:-1;;17085:17:1;;17082:43;;;17105:18;;:::i;:::-;-1:-1:-1;17152:1:1;17141:13;;17025:135::o;17165:112::-;17197:1;17223;17213:35;;17228:18;;:::i;:::-;-1:-1:-1;17262:9:1;;17165:112::o;17282:127::-;17343:10;17338:3;17334:20;17331:1;17324:31;17374:4;17371:1;17364:15;17398:4;17395:1;17388:15;17414:127;17475:10;17470:3;17466:20;17463:1;17456:31;17506:4;17503:1;17496:15;17530:4;17527:1;17520:15;17546:127;17607:10;17602:3;17598:20;17595:1;17588:31;17638:4;17635:1;17628:15;17662:4;17659:1;17652:15;17678:127;17739:10;17734:3;17730:20;17727:1;17720:31;17770:4;17767:1;17760:15;17794:4;17791:1;17784:15;17810:131;-1:-1:-1;;;;;;17884:32:1;;17874:43;;17864:71;;17931:1;17928;17921:12
Swarm Source
ipfs://669342d84891be45a1d70d1e64b8fcd910f82698e12be49aa515c128d402062a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.