ERC-721
Overview
Max Total Supply
745 METTIAPE
Holders
184
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 METTIAPELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MettiApe
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-09 */ //Metti Ape is a fine art NFT collection from artist Pumpametti juxtaposing the ape culture through contemporary art perspectives. //Not affiliated with Bored Ape Yacht Club nor Yuga Labs. //Art collection preview: https://twitter.com/pumpametti/status/1479980326978002951 //Total 10000 Metti Apes available. //VIP reserved free mint for Pumpametti collectors, 300 Metti Apes available. //First-come-frist-serve mint for Pettametti/Standametti/MettiLandscape/BAYC collectors, 9700 Metti Apes available. //The mint cost is 0.02 ETH per Metti Ape, max 20 Metti Apes per transaction. //For Pumpametti collectors please select "PumpaFirstChoiceVIPMint". //For Pettametti collectors please select "PettaVernissageMint". //For Standametti collectors please select "StandaPrivateMint". //For MettiLandscape collectors please select 'LandscapePrivateMint". //For Bored Ape Yacht Club (BAYC) collectors please select "BAYCEliteMint". //You have to own a Metti artwork or a BAYC to mint a Metti Ape. //Only mint from contract, you can find detailed minting instruction on Pumpametti website. //https://www.pumpametti.com/metti-ape //https://opensea.io/collection/metti-ape // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @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) pragma solidity ^0.8.0; /** * @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) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `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) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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 tokenId); /** * @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) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/MettiApe.sol //Metti Ape is a fine art NFT collection from artist Pumpametti juxtaposing the ape culture through contemporary art perspectives. //Not affiliated with Bored Ape Yacht Club nor Yuga Labs. //Art collection preview: https://twitter.com/pumpametti //Total 10000 Metti Apes available. //VIP reserved free mint for Pumpametti collectors, 300 Metti Apes available. //First-come-frist-serve mint for Pettametti/Standametti/MettiLandscape/BAYC collectors, 9700 Metti Apes available. //The mint cost is 0.02 ETH per Metti Ape, max 20 Metti Apes per transaction. //For Pumpametti collectors please select "PumpaFirstChoiceVIPMint". //For Pettametti collectors please select "PettaVernissageMint". //For Standametti collectors please select "StandaPrivateMint". //For MettiLandscape collectors please select 'LandscapePrivateMint". //For Bored Ape Yacht Club (BAYC) collectors please select "BAYCEliteMint". //You have to own a Metti artwork or a BAYC to mint a Metti Ape. //Only mint from contract, you can find detailed minting instruction on Pumpametti website. //https://www.pumpametti.com/metti-ape //https://opensea.io/collection/metti-ape //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface PumpaInterface { function ownerOf(uint256 tokenId) external view returns (address owner); function balanceOf(address owner) external view returns (uint256 balance); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); } interface BAYCInterface { function ownerOf(uint256 tokenId) external view returns (address owner); function balanceOf(address owner) external view returns (uint256 balance); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); } interface PettaInterface { function ownerOf(uint256 tokenId) external view returns (address owner); function balanceOf(address owner) external view returns (uint256 balance); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); } interface StandaInterface { function ownerOf(uint256 tokenId) external view returns (address owner); function balanceOf(address owner) external view returns (uint256 balance); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); } interface LandscapeInterface { function ownerOf(uint256 tokenId) external view returns (address owner); function balanceOf(address owner) external view returns (uint256 balance); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); } contract MettiApe is ERC721Enumerable, Ownable, IERC2981 { using Strings for uint256; using SafeMath for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.02 ether; uint256 public maxPumpaSupply = 300; uint256 public maxPettaStandaLandscapeBAYCSupply = 9700; uint256 public maxMintAmount = 20; bool public paused = false; bool public revealed = false; uint16 internal royalty = 700; // base 10000, 7% uint16 public constant BASE = 10000; address public PumpaAddress = 0x09646c5c1e42ede848A57d6542382C32f2877164; PumpaInterface PumpaContract = PumpaInterface(PumpaAddress); uint public PumpaOwnersSupplyMinted = 0; uint public PettaStandaLandscapeBAYCSupplyMinted = 0; address public PettaAddress = 0x52474FBF6b678a280d0C69F2314d6d95548b3DAF; PettaInterface PettaContract = PettaInterface(PettaAddress); address public StandaAddress = 0xFC6Bc5D50912354e89bAd4daBf053Bca2d7Cd817; StandaInterface StandaContract = StandaInterface(StandaAddress); address public LandscapeAddress = 0x6067E1963Fe613609eE61E93588E4736Cbfc7800; LandscapeInterface LandscapeContract = LandscapeInterface(LandscapeAddress); address public BAYCAddress = 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D; BAYCInterface BAYCContract = BAYCInterface(BAYCAddress); constructor( string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721("MettiApe", "METTIAPE") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function PumpaFirstChoiceVIPMint(uint PumpaId) public payable { require(PumpaId > 0 && PumpaId <= 300, "Token ID invalid"); require(PumpaContract.ownerOf(PumpaId) == msg.sender, "Not the owner of this Pumpa"); _safeMint(msg.sender, PumpaId); } function PettaVernissageMint(uint PettaId, uint _mintAmount) public payable { require(PettaContract.ownerOf(PettaId) == msg.sender, "Not the owner of this Petta"); require(msg.value >= 0.02 ether * _mintAmount); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(PettaStandaLandscapeBAYCSupplyMinted + _mintAmount <= maxPettaStandaLandscapeBAYCSupply, "No more PettaStandaLandscapeBAYC supply left"); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, maxPumpaSupply + PettaStandaLandscapeBAYCSupplyMinted + i); } PettaStandaLandscapeBAYCSupplyMinted = PettaStandaLandscapeBAYCSupplyMinted + _mintAmount; } function StandaPrivateMint(uint StandaId, uint _mintAmount) public payable { require(StandaContract.ownerOf(StandaId) == msg.sender, "Not the owner of this Standa"); require(msg.value >= 0.02 ether * _mintAmount); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(PettaStandaLandscapeBAYCSupplyMinted + _mintAmount <= maxPettaStandaLandscapeBAYCSupply, "No more PettaStandaLandscapeBAYC supply left"); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, maxPumpaSupply + PettaStandaLandscapeBAYCSupplyMinted + i); } PettaStandaLandscapeBAYCSupplyMinted = PettaStandaLandscapeBAYCSupplyMinted + _mintAmount; } function LandscapePrivateMint(uint LandscapeId, uint _mintAmount) public payable { require(LandscapeContract.ownerOf(LandscapeId) == msg.sender, "Not the owner of this Landscape"); require(msg.value >= 0.02 ether * _mintAmount); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(PettaStandaLandscapeBAYCSupplyMinted + _mintAmount <= maxPettaStandaLandscapeBAYCSupply, "No more PettaStandaLandscapeBAYC supply left"); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, maxPumpaSupply + PettaStandaLandscapeBAYCSupplyMinted + i); } PettaStandaLandscapeBAYCSupplyMinted = PettaStandaLandscapeBAYCSupplyMinted + _mintAmount; } function BAYCEliteMint(uint BAYCId, uint _mintAmount) public payable { require(BAYCContract.ownerOf(BAYCId) == msg.sender, "Not the owner of this BAYC"); require(msg.value >= 0.02 ether * _mintAmount); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(PettaStandaLandscapeBAYCSupplyMinted + _mintAmount <= maxPettaStandaLandscapeBAYCSupply, "No more PettaStandaLandscapeBAYC supply left"); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, maxPumpaSupply + PettaStandaLandscapeBAYCSupplyMinted + i); } PettaStandaLandscapeBAYCSupplyMinted = PettaStandaLandscapeBAYCSupplyMinted + _mintAmount; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //onlyOwner function reveal() public onlyOwner { revealed = true; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function royaltyInfo(uint256, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (address(this), (_salePrice * royalty) / BASE); } function setRoyalty(uint16 _royalty) public virtual onlyOwner { require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.'); royalty = _royalty; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BAYCAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"BAYCId","type":"uint256"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"BAYCEliteMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"LandscapeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"LandscapeId","type":"uint256"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"LandscapePrivateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PettaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PettaStandaLandscapeBAYCSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"PettaId","type":"uint256"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"PettaVernissageMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PumpaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"PumpaId","type":"uint256"}],"name":"PumpaFirstChoiceVIPMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PumpaOwnersSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"StandaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"StandaId","type":"uint256"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"StandaPrivateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPettaStandaLandscapeBAYCSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPumpaSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200034a565b5066470de4df820000600e5561012c600f556125e460105560146011819055601280546001600160c01b0319167709646c5c1e42ede848a57d6542382c32f287716402bc00001790819055601380546001600160a01b03640100000000909304929092166001600160a01b0319928316179055600091829055601591909155601680547352474fbf6b678a280d0c69f2314d6d95548b3daf908316811790915560178054831690911790556018805473fc6bc5d50912354e89bad4dabf053bca2d7cd81790831681179091556019805483169091179055601a8054736067e1963fe613609ee61e93588e4736cbfc78009083168117909155601b805483169091179055601c805473bc4ca0eda7647a8ab7c2061c2e118a18a936f13d9083168117909155601d80549092161790553480156200016357600080fd5b506040516200321c3803806200321c8339810160408190526200018691620004bd565b604051806040016040528060088152602001674d6574746941706560c01b815250604051806040016040528060088152602001674d4554544941504560c01b8152508160009080519060200190620001e09291906200034a565b508051620001f69060019060208401906200034a565b505050620002136200020d6200023160201b60201c565b62000235565b6200021e8262000287565b6200022981620002ef565b505062000564565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002d65760405162461bcd60e51b81526020600482018190526024820152600080516020620031fc83398151915260448201526064015b60405180910390fd5b8051620002eb90600b9060208401906200034a565b5050565b600a546001600160a01b031633146200033a5760405162461bcd60e51b81526020600482018190526024820152600080516020620031fc8339815191526044820152606401620002cd565b8051620002eb90600d9060208401905b828054620003589062000527565b90600052602060002090601f0160209004810192826200037c5760008555620003c7565b82601f106200039757805160ff1916838001178555620003c7565b82800160010185558215620003c7579182015b82811115620003c7578251825591602001919060010190620003aa565b50620003d5929150620003d9565b5090565b5b80821115620003d55760008155600101620003da565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200041857600080fd5b81516001600160401b0380821115620004355762000435620003f0565b604051601f8301601f19908116603f01168101908282118183101715620004605762000460620003f0565b816040528381526020925086838588010111156200047d57600080fd5b600091505b83821015620004a1578582018301518183018401529082019062000482565b83821115620004b35760008385830101525b9695505050505050565b60008060408385031215620004d157600080fd5b82516001600160401b0380821115620004e957600080fd5b620004f78683870162000406565b935060208501519150808211156200050e57600080fd5b506200051d8582860162000406565b9150509250929050565b600181811c908216806200053c57607f821691505b602082108114156200055e57634e487b7160e01b600052602260045260246000fd5b50919050565b612c8880620005746000396000f3fe6080604052600436106102ae5760003560e01c80635d196cbb11610175578063b88d4fde116100dc578063d248b35611610095578063e985e9c51161006f578063e985e9c5146107ce578063ec342ad014610817578063f2c4ce1e14610840578063f2fde38b1461086057600080fd5b8063d248b3561461077b578063da3ef23f1461079b578063e6614bc0146107bb57600080fd5b8063b88d4fde146106be578063bbe9a8d2146106de578063c668286214610706578063c87b56dd1461071b578063cc6902971461073b578063cf06904e1461075b57600080fd5b806383ba5c621161012e57806383ba5c62146106305780638da5cb5b1461064357806395d89b4114610661578063a22cb46514610676578063a475b5dd14610696578063ac361ff1146106ab57600080fd5b80635d196cbb146105905780636352211e146105a65780636c0360eb146105c657806370a08231146105db578063715018a6146105fb578063837ea8e91461061057600080fd5b80632d1835031161021957806344e3c550116101d257806344e3c550146104ee5780634f6ccce714610501578063518302271461052157806355f804b31461054057806356c8cdd1146105605780635c975abb1461057657600080fd5b80632d1835031461045d5780632f745c591461047357806336e79a5a146104935780633ccfd60b146104b35780633e713700146104bb57806342842e0e146104ce57600080fd5b806313faede61161026b57806313faede61461039957806318160ddd146103bd57806321ff24ab146103d2578063239c70ae146103e857806323b872dd146103fe5780632a55205a1461041e57600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612556565b610880565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612588565b6108ab565b005b34801561031657600080fd5b5061031f6108f1565b6040516102df91906125fb565b34801561033857600080fd5b5061034c61034736600461260e565b610983565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a18565b34801561038557600080fd5b5061030861039436600461263c565b610aa6565b3480156103a557600080fd5b506103af600e5481565b6040519081526020016102df565b3480156103c957600080fd5b506008546103af565b3480156103de57600080fd5b506103af60155481565b3480156103f457600080fd5b506103af60115481565b34801561040a57600080fd5b50610308610419366004612668565b610bbc565b34801561042a57600080fd5b5061043e6104393660046126a9565b610bed565b604080516001600160a01b0390931683526020830191909152016102df565b34801561046957600080fd5b506103af600f5481565b34801561047f57600080fd5b506103af61048e36600461263c565b610c24565b34801561049f57600080fd5b506103086104ae3660046126cb565b610cba565b610308610d66565b6103086104c93660046126a9565b610db6565b3480156104da57600080fd5b506103086104e9366004612668565b610f47565b6103086104fc3660046126a9565b610f62565b34801561050d57600080fd5b506103af61051c36600461260e565b6110ce565b34801561052d57600080fd5b506012546102d390610100900460ff1681565b34801561054c57600080fd5b5061030861055b36600461277b565b611161565b34801561056c57600080fd5b506103af60145481565b34801561058257600080fd5b506012546102d39060ff1681565b34801561059c57600080fd5b506103af60105481565b3480156105b257600080fd5b5061034c6105c136600461260e565b6111a2565b3480156105d257600080fd5b5061031f611219565b3480156105e757600080fd5b506103af6105f63660046127c4565b611226565b34801561060757600080fd5b506103086112ad565b34801561061c57600080fd5b50601a5461034c906001600160a01b031681565b61030861063e3660046126a9565b6112e1565b34801561064f57600080fd5b50600a546001600160a01b031661034c565b34801561066d57600080fd5b5061031f61144d565b34801561068257600080fd5b506103086106913660046127e1565b61145c565b3480156106a257600080fd5b50610308611467565b6103086106b936600461260e565b6114a2565b3480156106ca57600080fd5b506103086106d9366004612816565b6115c3565b3480156106ea57600080fd5b5060125461034c9064010000000090046001600160a01b031681565b34801561071257600080fd5b5061031f6115fb565b34801561072757600080fd5b5061031f61073636600461260e565b611608565b34801561074757600080fd5b50601c5461034c906001600160a01b031681565b34801561076757600080fd5b5060185461034c906001600160a01b031681565b34801561078757600080fd5b5060165461034c906001600160a01b031681565b3480156107a757600080fd5b506103086107b636600461277b565b611787565b6103086107c93660046126a9565b6117c4565b3480156107da57600080fd5b506102d36107e9366004612896565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082357600080fd5b5061082d61271081565b60405161ffff90911681526020016102df565b34801561084c57600080fd5b5061030861085b36600461277b565b611930565b34801561086c57600080fd5b5061030861087b3660046127c4565b61196d565b60006001600160e01b0319821663780e9d6360e01b14806108a557506108a582611a05565b92915050565b600a546001600160a01b031633146108de5760405162461bcd60e51b81526004016108d5906128cf565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461090090612904565b80601f016020809104026020016040519081016040528092919081815260200182805461092c90612904565b80156109795780601f1061094e57610100808354040283529160200191610979565b820191906000526020600020905b81548152906001019060200180831161095c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d5565b506000908152600460205260409020546001600160a01b031690565b600d8054610a2590612904565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5190612904565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b505050505081565b6000610ab1826111a2565b9050806001600160a01b0316836001600160a01b03161415610b1f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108d5565b336001600160a01b0382161480610b3b5750610b3b81336107e9565b610bad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d5565b610bb78383611a55565b505050565b610bc63382611ac3565b610be25760405162461bcd60e51b81526004016108d59061293f565b610bb7838383611bba565b6012546000908190309061271090610c0f9062010000900461ffff16866129a6565b610c1991906129db565b915091509250929050565b6000610c2f83611226565b8210610c915760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108d5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ce45760405162461bcd60e51b81526004016108d5906128cf565b6103e88161ffff161115610d465760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201526218129760e91b60648201526084016108d5565b6012805461ffff909216620100000263ffff000019909216919091179055565b600a546001600160a01b03163314610d905760405162461bcd60e51b81526004016108d5906128cf565b60405133904780156108fc02916000818181858888f19350505050610db457600080fd5b565b601d546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610dff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2391906129ef565b6001600160a01b031614610e795760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973204241594300000000000060448201526064016108d5565b610e8a8166470de4df8200006129a6565b341015610e9657600080fd5b60125460ff1615610ea657600080fd5b60008111610eb357600080fd5b601154811115610ec257600080fd5b60105481601554610ed39190612a0c565b1115610ef15760405162461bcd60e51b81526004016108d590612a24565b60015b818111610f3157610f1f3382601554600f54610f109190612a0c565b610f1a9190612a0c565b611d65565b80610f2981612a70565b915050610ef4565b5080601554610f409190612a0c565b6015555050565b610bb7838383604051806020016040528060008152506115c3565b6019546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610fab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fcf91906129ef565b6001600160a01b0316146110255760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420746865206f776e6572206f662074686973205374616e64610000000060448201526064016108d5565b6110368166470de4df8200006129a6565b34101561104257600080fd5b60125460ff161561105257600080fd5b6000811161105f57600080fd5b60115481111561106e57600080fd5b6010548160155461107f9190612a0c565b111561109d5760405162461bcd60e51b81526004016108d590612a24565b60015b818111610f31576110bc3382601554600f54610f109190612a0c565b806110c681612a70565b9150506110a0565b60006110d960085490565b821061113c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108d5565b6008828154811061114f5761114f612a8b565b90600052602060002001549050919050565b600a546001600160a01b0316331461118b5760405162461bcd60e51b81526004016108d5906128cf565b805161119e90600b9060208401906124a7565b5050565b6000818152600260205260408120546001600160a01b0316806108a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108d5565b600b8054610a2590612904565b60006001600160a01b0382166112915760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108d5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112d75760405162461bcd60e51b81526004016108d5906128cf565b610db46000611d7f565b6017546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e91906129ef565b6001600160a01b0316146113a45760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420746865206f776e6572206f662074686973205065747461000000000060448201526064016108d5565b6113b58166470de4df8200006129a6565b3410156113c157600080fd5b60125460ff16156113d157600080fd5b600081116113de57600080fd5b6011548111156113ed57600080fd5b601054816015546113fe9190612a0c565b111561141c5760405162461bcd60e51b81526004016108d590612a24565b60015b818111610f315761143b3382601554600f54610f109190612a0c565b8061144581612a70565b91505061141f565b60606001805461090090612904565b61119e338383611dd1565b600a546001600160a01b031633146114915760405162461bcd60e51b81526004016108d5906128cf565b6012805461ff001916610100179055565b6000811180156114b4575061012c8111155b6114f35760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b60448201526064016108d5565b6013546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa15801561153c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156091906129ef565b6001600160a01b0316146115b65760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420746865206f776e6572206f6620746869732050756d7061000000000060448201526064016108d5565b6115c03382611d65565b50565b6115cd3383611ac3565b6115e95760405162461bcd60e51b81526004016108d59061293f565b6115f584848484611ea0565b50505050565b600c8054610a2590612904565b6000818152600260205260409020546060906001600160a01b03166116875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108d5565b601254610100900460ff1661172857600d80546116a390612904565b80601f01602080910402602001604051908101604052809291908181526020018280546116cf90612904565b801561171c5780601f106116f15761010080835404028352916020019161171c565b820191906000526020600020905b8154815290600101906020018083116116ff57829003601f168201915b50505050509050919050565b6000611732611ed3565b905060008151116117525760405180602001604052806000815250611780565b8061175c84611ee2565b600c60405160200161177093929190612aa1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117b15760405162461bcd60e51b81526004016108d5906128cf565b805161119e90600c9060208401906124a7565b601b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa15801561180d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183191906129ef565b6001600160a01b0316146118875760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420746865206f776e6572206f662074686973204c616e6473636170650060448201526064016108d5565b6118988166470de4df8200006129a6565b3410156118a457600080fd5b60125460ff16156118b457600080fd5b600081116118c157600080fd5b6011548111156118d057600080fd5b601054816015546118e19190612a0c565b11156118ff5760405162461bcd60e51b81526004016108d590612a24565b60015b818111610f315761191e3382601554600f54610f109190612a0c565b8061192881612a70565b915050611902565b600a546001600160a01b0316331461195a5760405162461bcd60e51b81526004016108d5906128cf565b805161119e90600d9060208401906124a7565b600a546001600160a01b031633146119975760405162461bcd60e51b81526004016108d5906128cf565b6001600160a01b0381166119fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d5565b6115c081611d7f565b60006001600160e01b031982166380ac58cd60e01b1480611a3657506001600160e01b03198216635b5e139f60e01b145b806108a557506301ffc9a760e01b6001600160e01b03198316146108a5565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a8a826111a2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b3c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d5565b6000611b47836111a2565b9050806001600160a01b0316846001600160a01b03161480611b825750836001600160a01b0316611b7784610983565b6001600160a01b0316145b80611bb257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bcd826111a2565b6001600160a01b031614611c355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108d5565b6001600160a01b038216611c975760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108d5565b611ca2838383611fe0565b611cad600082611a55565b6001600160a01b0383166000908152600360205260408120805460019290611cd6908490612b65565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d04908490612a0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61119e828260405180602001604052806000815250612098565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e335760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611eab848484611bba565b611eb7848484846120cb565b6115f55760405162461bcd60e51b81526004016108d590612b7c565b6060600b805461090090612904565b606081611f065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f305780611f1a81612a70565b9150611f299050600a836129db565b9150611f0a565b60008167ffffffffffffffff811115611f4b57611f4b6126ef565b6040519080825280601f01601f191660200182016040528015611f75576020820181803683370190505b5090505b8415611bb257611f8a600183612b65565b9150611f97600a86612bce565b611fa2906030612a0c565b60f81b818381518110611fb757611fb7612a8b565b60200101906001600160f81b031916908160001a905350611fd9600a866129db565b9450611f79565b6001600160a01b03831661203b5761203681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61205e565b816001600160a01b0316836001600160a01b03161461205e5761205e83826121c9565b6001600160a01b03821661207557610bb781612266565b826001600160a01b0316826001600160a01b031614610bb757610bb78282612315565b6120a28383612359565b6120af60008484846120cb565b610bb75760405162461bcd60e51b81526004016108d590612b7c565b60006001600160a01b0384163b156121be57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061210f903390899088908890600401612be2565b6020604051808303816000875af192505050801561214a575060408051601f3d908101601f1916820190925261214791810190612c1f565b60015b6121a4573d808015612178576040519150601f19603f3d011682016040523d82523d6000602084013e61217d565b606091505b50805161219c5760405162461bcd60e51b81526004016108d590612b7c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bb2565b506001949350505050565b600060016121d684611226565b6121e09190612b65565b600083815260076020526040902054909150808214612233576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061227890600190612b65565b600083815260096020526040812054600880549394509092849081106122a0576122a0612a8b565b9060005260206000200154905080600883815481106122c1576122c1612a8b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122f9576122f9612c3c565b6001900381819060005260206000200160009055905550505050565b600061232083611226565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123af5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d5565b6000818152600260205260409020546001600160a01b0316156124145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d5565b61242060008383611fe0565b6001600160a01b0382166000908152600360205260408120805460019290612449908490612a0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124b390612904565b90600052602060002090601f0160209004810192826124d5576000855561251b565b82601f106124ee57805160ff191683800117855561251b565b8280016001018555821561251b579182015b8281111561251b578251825591602001919060010190612500565b5061252792915061252b565b5090565b5b80821115612527576000815560010161252c565b6001600160e01b0319811681146115c057600080fd5b60006020828403121561256857600080fd5b813561178081612540565b8035801515811461258357600080fd5b919050565b60006020828403121561259a57600080fd5b61178082612573565b60005b838110156125be5781810151838201526020016125a6565b838111156115f55750506000910152565b600081518084526125e78160208601602086016125a3565b601f01601f19169290920160200192915050565b60208152600061178060208301846125cf565b60006020828403121561262057600080fd5b5035919050565b6001600160a01b03811681146115c057600080fd5b6000806040838503121561264f57600080fd5b823561265a81612627565b946020939093013593505050565b60008060006060848603121561267d57600080fd5b833561268881612627565b9250602084013561269881612627565b929592945050506040919091013590565b600080604083850312156126bc57600080fd5b50508035926020909101359150565b6000602082840312156126dd57600080fd5b813561ffff8116811461178057600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612720576127206126ef565b604051601f8501601f19908116603f01168101908282118183101715612748576127486126ef565b8160405280935085815286868601111561276157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561278d57600080fd5b813567ffffffffffffffff8111156127a457600080fd5b8201601f810184136127b557600080fd5b611bb284823560208401612705565b6000602082840312156127d657600080fd5b813561178081612627565b600080604083850312156127f457600080fd5b82356127ff81612627565b915061280d60208401612573565b90509250929050565b6000806000806080858703121561282c57600080fd5b843561283781612627565b9350602085013561284781612627565b925060408501359150606085013567ffffffffffffffff81111561286a57600080fd5b8501601f8101871361287b57600080fd5b61288a87823560208401612705565b91505092959194509250565b600080604083850312156128a957600080fd5b82356128b481612627565b915060208301356128c481612627565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061291857607f821691505b6020821081141561293957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156129c0576129c0612990565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826129ea576129ea6129c5565b500490565b600060208284031215612a0157600080fd5b815161178081612627565b60008219821115612a1f57612a1f612990565b500190565b6020808252602c908201527f4e6f206d6f72652050657474615374616e64614c616e6473636170654241594360408201526b081cdd5c1c1b1e481b19599d60a21b606082015260800190565b6000600019821415612a8457612a84612990565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600084516020612ab48285838a016125a3565b855191840191612ac78184848a016125a3565b8554920191600090600181811c9080831680612ae457607f831692505b858310811415612b0257634e487b7160e01b85526022600452602485fd5b808015612b165760018114612b2757612b54565b60ff19851688528388019550612b54565b60008b81526020902060005b85811015612b4c5781548a820152908401908801612b33565b505083880195505b50939b9a5050505050505050505050565b600082821015612b7757612b77612990565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612bdd57612bdd6129c5565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c15908301846125cf565b9695505050505050565b600060208284031215612c3157600080fd5b815161178081612540565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fd26dfecfa06390ea1a42327c671db364edc5ad3f2fdada51e5c8bb0b657b9b264736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f697066732e696f2f697066732f516d566b666147375658695035576e4270725653534a4536516f6173524375577743704b653976476158474d59312f312e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f697066732e696f2f697066732f516d566b666147375658695035576e4270725653534a4536516f6173524375577743704b653976476158474d59312f312e6a736f6e00000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c80635d196cbb11610175578063b88d4fde116100dc578063d248b35611610095578063e985e9c51161006f578063e985e9c5146107ce578063ec342ad014610817578063f2c4ce1e14610840578063f2fde38b1461086057600080fd5b8063d248b3561461077b578063da3ef23f1461079b578063e6614bc0146107bb57600080fd5b8063b88d4fde146106be578063bbe9a8d2146106de578063c668286214610706578063c87b56dd1461071b578063cc6902971461073b578063cf06904e1461075b57600080fd5b806383ba5c621161012e57806383ba5c62146106305780638da5cb5b1461064357806395d89b4114610661578063a22cb46514610676578063a475b5dd14610696578063ac361ff1146106ab57600080fd5b80635d196cbb146105905780636352211e146105a65780636c0360eb146105c657806370a08231146105db578063715018a6146105fb578063837ea8e91461061057600080fd5b80632d1835031161021957806344e3c550116101d257806344e3c550146104ee5780634f6ccce714610501578063518302271461052157806355f804b31461054057806356c8cdd1146105605780635c975abb1461057657600080fd5b80632d1835031461045d5780632f745c591461047357806336e79a5a146104935780633ccfd60b146104b35780633e713700146104bb57806342842e0e146104ce57600080fd5b806313faede61161026b57806313faede61461039957806318160ddd146103bd57806321ff24ab146103d2578063239c70ae146103e857806323b872dd146103fe5780632a55205a1461041e57600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612556565b610880565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612588565b6108ab565b005b34801561031657600080fd5b5061031f6108f1565b6040516102df91906125fb565b34801561033857600080fd5b5061034c61034736600461260e565b610983565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a18565b34801561038557600080fd5b5061030861039436600461263c565b610aa6565b3480156103a557600080fd5b506103af600e5481565b6040519081526020016102df565b3480156103c957600080fd5b506008546103af565b3480156103de57600080fd5b506103af60155481565b3480156103f457600080fd5b506103af60115481565b34801561040a57600080fd5b50610308610419366004612668565b610bbc565b34801561042a57600080fd5b5061043e6104393660046126a9565b610bed565b604080516001600160a01b0390931683526020830191909152016102df565b34801561046957600080fd5b506103af600f5481565b34801561047f57600080fd5b506103af61048e36600461263c565b610c24565b34801561049f57600080fd5b506103086104ae3660046126cb565b610cba565b610308610d66565b6103086104c93660046126a9565b610db6565b3480156104da57600080fd5b506103086104e9366004612668565b610f47565b6103086104fc3660046126a9565b610f62565b34801561050d57600080fd5b506103af61051c36600461260e565b6110ce565b34801561052d57600080fd5b506012546102d390610100900460ff1681565b34801561054c57600080fd5b5061030861055b36600461277b565b611161565b34801561056c57600080fd5b506103af60145481565b34801561058257600080fd5b506012546102d39060ff1681565b34801561059c57600080fd5b506103af60105481565b3480156105b257600080fd5b5061034c6105c136600461260e565b6111a2565b3480156105d257600080fd5b5061031f611219565b3480156105e757600080fd5b506103af6105f63660046127c4565b611226565b34801561060757600080fd5b506103086112ad565b34801561061c57600080fd5b50601a5461034c906001600160a01b031681565b61030861063e3660046126a9565b6112e1565b34801561064f57600080fd5b50600a546001600160a01b031661034c565b34801561066d57600080fd5b5061031f61144d565b34801561068257600080fd5b506103086106913660046127e1565b61145c565b3480156106a257600080fd5b50610308611467565b6103086106b936600461260e565b6114a2565b3480156106ca57600080fd5b506103086106d9366004612816565b6115c3565b3480156106ea57600080fd5b5060125461034c9064010000000090046001600160a01b031681565b34801561071257600080fd5b5061031f6115fb565b34801561072757600080fd5b5061031f61073636600461260e565b611608565b34801561074757600080fd5b50601c5461034c906001600160a01b031681565b34801561076757600080fd5b5060185461034c906001600160a01b031681565b34801561078757600080fd5b5060165461034c906001600160a01b031681565b3480156107a757600080fd5b506103086107b636600461277b565b611787565b6103086107c93660046126a9565b6117c4565b3480156107da57600080fd5b506102d36107e9366004612896565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082357600080fd5b5061082d61271081565b60405161ffff90911681526020016102df565b34801561084c57600080fd5b5061030861085b36600461277b565b611930565b34801561086c57600080fd5b5061030861087b3660046127c4565b61196d565b60006001600160e01b0319821663780e9d6360e01b14806108a557506108a582611a05565b92915050565b600a546001600160a01b031633146108de5760405162461bcd60e51b81526004016108d5906128cf565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461090090612904565b80601f016020809104026020016040519081016040528092919081815260200182805461092c90612904565b80156109795780601f1061094e57610100808354040283529160200191610979565b820191906000526020600020905b81548152906001019060200180831161095c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d5565b506000908152600460205260409020546001600160a01b031690565b600d8054610a2590612904565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5190612904565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b505050505081565b6000610ab1826111a2565b9050806001600160a01b0316836001600160a01b03161415610b1f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108d5565b336001600160a01b0382161480610b3b5750610b3b81336107e9565b610bad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d5565b610bb78383611a55565b505050565b610bc63382611ac3565b610be25760405162461bcd60e51b81526004016108d59061293f565b610bb7838383611bba565b6012546000908190309061271090610c0f9062010000900461ffff16866129a6565b610c1991906129db565b915091509250929050565b6000610c2f83611226565b8210610c915760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108d5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ce45760405162461bcd60e51b81526004016108d5906128cf565b6103e88161ffff161115610d465760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201526218129760e91b60648201526084016108d5565b6012805461ffff909216620100000263ffff000019909216919091179055565b600a546001600160a01b03163314610d905760405162461bcd60e51b81526004016108d5906128cf565b60405133904780156108fc02916000818181858888f19350505050610db457600080fd5b565b601d546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610dff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2391906129ef565b6001600160a01b031614610e795760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973204241594300000000000060448201526064016108d5565b610e8a8166470de4df8200006129a6565b341015610e9657600080fd5b60125460ff1615610ea657600080fd5b60008111610eb357600080fd5b601154811115610ec257600080fd5b60105481601554610ed39190612a0c565b1115610ef15760405162461bcd60e51b81526004016108d590612a24565b60015b818111610f3157610f1f3382601554600f54610f109190612a0c565b610f1a9190612a0c565b611d65565b80610f2981612a70565b915050610ef4565b5080601554610f409190612a0c565b6015555050565b610bb7838383604051806020016040528060008152506115c3565b6019546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610fab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fcf91906129ef565b6001600160a01b0316146110255760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420746865206f776e6572206f662074686973205374616e64610000000060448201526064016108d5565b6110368166470de4df8200006129a6565b34101561104257600080fd5b60125460ff161561105257600080fd5b6000811161105f57600080fd5b60115481111561106e57600080fd5b6010548160155461107f9190612a0c565b111561109d5760405162461bcd60e51b81526004016108d590612a24565b60015b818111610f31576110bc3382601554600f54610f109190612a0c565b806110c681612a70565b9150506110a0565b60006110d960085490565b821061113c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108d5565b6008828154811061114f5761114f612a8b565b90600052602060002001549050919050565b600a546001600160a01b0316331461118b5760405162461bcd60e51b81526004016108d5906128cf565b805161119e90600b9060208401906124a7565b5050565b6000818152600260205260408120546001600160a01b0316806108a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108d5565b600b8054610a2590612904565b60006001600160a01b0382166112915760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108d5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112d75760405162461bcd60e51b81526004016108d5906128cf565b610db46000611d7f565b6017546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e91906129ef565b6001600160a01b0316146113a45760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420746865206f776e6572206f662074686973205065747461000000000060448201526064016108d5565b6113b58166470de4df8200006129a6565b3410156113c157600080fd5b60125460ff16156113d157600080fd5b600081116113de57600080fd5b6011548111156113ed57600080fd5b601054816015546113fe9190612a0c565b111561141c5760405162461bcd60e51b81526004016108d590612a24565b60015b818111610f315761143b3382601554600f54610f109190612a0c565b8061144581612a70565b91505061141f565b60606001805461090090612904565b61119e338383611dd1565b600a546001600160a01b031633146114915760405162461bcd60e51b81526004016108d5906128cf565b6012805461ff001916610100179055565b6000811180156114b4575061012c8111155b6114f35760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b60448201526064016108d5565b6013546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa15801561153c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156091906129ef565b6001600160a01b0316146115b65760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420746865206f776e6572206f6620746869732050756d7061000000000060448201526064016108d5565b6115c03382611d65565b50565b6115cd3383611ac3565b6115e95760405162461bcd60e51b81526004016108d59061293f565b6115f584848484611ea0565b50505050565b600c8054610a2590612904565b6000818152600260205260409020546060906001600160a01b03166116875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108d5565b601254610100900460ff1661172857600d80546116a390612904565b80601f01602080910402602001604051908101604052809291908181526020018280546116cf90612904565b801561171c5780601f106116f15761010080835404028352916020019161171c565b820191906000526020600020905b8154815290600101906020018083116116ff57829003601f168201915b50505050509050919050565b6000611732611ed3565b905060008151116117525760405180602001604052806000815250611780565b8061175c84611ee2565b600c60405160200161177093929190612aa1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117b15760405162461bcd60e51b81526004016108d5906128cf565b805161119e90600c9060208401906124a7565b601b546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa15801561180d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183191906129ef565b6001600160a01b0316146118875760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420746865206f776e6572206f662074686973204c616e6473636170650060448201526064016108d5565b6118988166470de4df8200006129a6565b3410156118a457600080fd5b60125460ff16156118b457600080fd5b600081116118c157600080fd5b6011548111156118d057600080fd5b601054816015546118e19190612a0c565b11156118ff5760405162461bcd60e51b81526004016108d590612a24565b60015b818111610f315761191e3382601554600f54610f109190612a0c565b8061192881612a70565b915050611902565b600a546001600160a01b0316331461195a5760405162461bcd60e51b81526004016108d5906128cf565b805161119e90600d9060208401906124a7565b600a546001600160a01b031633146119975760405162461bcd60e51b81526004016108d5906128cf565b6001600160a01b0381166119fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d5565b6115c081611d7f565b60006001600160e01b031982166380ac58cd60e01b1480611a3657506001600160e01b03198216635b5e139f60e01b145b806108a557506301ffc9a760e01b6001600160e01b03198316146108a5565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a8a826111a2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b3c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d5565b6000611b47836111a2565b9050806001600160a01b0316846001600160a01b03161480611b825750836001600160a01b0316611b7784610983565b6001600160a01b0316145b80611bb257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bcd826111a2565b6001600160a01b031614611c355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108d5565b6001600160a01b038216611c975760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108d5565b611ca2838383611fe0565b611cad600082611a55565b6001600160a01b0383166000908152600360205260408120805460019290611cd6908490612b65565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d04908490612a0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61119e828260405180602001604052806000815250612098565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e335760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611eab848484611bba565b611eb7848484846120cb565b6115f55760405162461bcd60e51b81526004016108d590612b7c565b6060600b805461090090612904565b606081611f065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f305780611f1a81612a70565b9150611f299050600a836129db565b9150611f0a565b60008167ffffffffffffffff811115611f4b57611f4b6126ef565b6040519080825280601f01601f191660200182016040528015611f75576020820181803683370190505b5090505b8415611bb257611f8a600183612b65565b9150611f97600a86612bce565b611fa2906030612a0c565b60f81b818381518110611fb757611fb7612a8b565b60200101906001600160f81b031916908160001a905350611fd9600a866129db565b9450611f79565b6001600160a01b03831661203b5761203681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61205e565b816001600160a01b0316836001600160a01b03161461205e5761205e83826121c9565b6001600160a01b03821661207557610bb781612266565b826001600160a01b0316826001600160a01b031614610bb757610bb78282612315565b6120a28383612359565b6120af60008484846120cb565b610bb75760405162461bcd60e51b81526004016108d590612b7c565b60006001600160a01b0384163b156121be57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061210f903390899088908890600401612be2565b6020604051808303816000875af192505050801561214a575060408051601f3d908101601f1916820190925261214791810190612c1f565b60015b6121a4573d808015612178576040519150601f19603f3d011682016040523d82523d6000602084013e61217d565b606091505b50805161219c5760405162461bcd60e51b81526004016108d590612b7c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bb2565b506001949350505050565b600060016121d684611226565b6121e09190612b65565b600083815260076020526040902054909150808214612233576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061227890600190612b65565b600083815260096020526040812054600880549394509092849081106122a0576122a0612a8b565b9060005260206000200154905080600883815481106122c1576122c1612a8b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122f9576122f9612c3c565b6001900381819060005260206000200160009055905550505050565b600061232083611226565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123af5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d5565b6000818152600260205260409020546001600160a01b0316156124145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d5565b61242060008383611fe0565b6001600160a01b0382166000908152600360205260408120805460019290612449908490612a0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124b390612904565b90600052602060002090601f0160209004810192826124d5576000855561251b565b82601f106124ee57805160ff191683800117855561251b565b8280016001018555821561251b579182015b8281111561251b578251825591602001919060010190612500565b5061252792915061252b565b5090565b5b80821115612527576000815560010161252c565b6001600160e01b0319811681146115c057600080fd5b60006020828403121561256857600080fd5b813561178081612540565b8035801515811461258357600080fd5b919050565b60006020828403121561259a57600080fd5b61178082612573565b60005b838110156125be5781810151838201526020016125a6565b838111156115f55750506000910152565b600081518084526125e78160208601602086016125a3565b601f01601f19169290920160200192915050565b60208152600061178060208301846125cf565b60006020828403121561262057600080fd5b5035919050565b6001600160a01b03811681146115c057600080fd5b6000806040838503121561264f57600080fd5b823561265a81612627565b946020939093013593505050565b60008060006060848603121561267d57600080fd5b833561268881612627565b9250602084013561269881612627565b929592945050506040919091013590565b600080604083850312156126bc57600080fd5b50508035926020909101359150565b6000602082840312156126dd57600080fd5b813561ffff8116811461178057600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612720576127206126ef565b604051601f8501601f19908116603f01168101908282118183101715612748576127486126ef565b8160405280935085815286868601111561276157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561278d57600080fd5b813567ffffffffffffffff8111156127a457600080fd5b8201601f810184136127b557600080fd5b611bb284823560208401612705565b6000602082840312156127d657600080fd5b813561178081612627565b600080604083850312156127f457600080fd5b82356127ff81612627565b915061280d60208401612573565b90509250929050565b6000806000806080858703121561282c57600080fd5b843561283781612627565b9350602085013561284781612627565b925060408501359150606085013567ffffffffffffffff81111561286a57600080fd5b8501601f8101871361287b57600080fd5b61288a87823560208401612705565b91505092959194509250565b600080604083850312156128a957600080fd5b82356128b481612627565b915060208301356128c481612627565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061291857607f821691505b6020821081141561293957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156129c0576129c0612990565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826129ea576129ea6129c5565b500490565b600060208284031215612a0157600080fd5b815161178081612627565b60008219821115612a1f57612a1f612990565b500190565b6020808252602c908201527f4e6f206d6f72652050657474615374616e64614c616e6473636170654241594360408201526b081cdd5c1c1b1e481b19599d60a21b606082015260800190565b6000600019821415612a8457612a84612990565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600084516020612ab48285838a016125a3565b855191840191612ac78184848a016125a3565b8554920191600090600181811c9080831680612ae457607f831692505b858310811415612b0257634e487b7160e01b85526022600452602485fd5b808015612b165760018114612b2757612b54565b60ff19851688528388019550612b54565b60008b81526020902060005b85811015612b4c5781548a820152908401908801612b33565b505083880195505b50939b9a5050505050505050505050565b600082821015612b7757612b77612990565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612bdd57612bdd6129c5565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c15908301846125cf565b9695505050505050565b600060208284031215612c3157600080fd5b815161178081612540565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fd26dfecfa06390ea1a42327c671db364edc5ad3f2fdada51e5c8bb0b657b9b264736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f697066732e696f2f697066732f516d566b666147375658695035576e4270725653534a4536516f6173524375577743704b653976476158474d59312f312e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f697066732e696f2f697066732f516d566b666147375658695035576e4270725653534a4536516f6173524375577743704b653976476158474d59312f312e6a736f6e00000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://ipfs.io/ipfs/QmVkfaG7VXiP5WnBprVSSJE6QoasRCuWwCpKe9vGaXGMY1/1.json
Arg [1] : _initNotRevealedUri (string): https://ipfs.io/ipfs/QmVkfaG7VXiP5WnBprVSSJE6QoasRCuWwCpKe9vGaXGMY1/1.json
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d566b66614737565869
Arg [4] : 5035576e4270725653534a4536516f6173524375577743704b65397647615847
Arg [5] : 4d59312f312e6a736f6e00000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [7] : 68747470733a2f2f697066732e696f2f697066732f516d566b66614737565869
Arg [8] : 5035576e4270725653534a4536516f6173524375577743704b65397647615847
Arg [9] : 4d59312f312e6a736f6e00000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
56543:6509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47477:224;;;;;;;;;;-1:-1:-1;47477:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;47477:224:0;;;;;;;;62409:73;;;;;;;;;;-1:-1:-1;62409:73:0;;;;;:::i;:::-;;:::i;:::-;;34971:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36530:221::-;;;;;;;;;;-1:-1:-1;36530:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;36530:221:0;1878:203:1;56737:28:0;;;;;;;;;;;;;:::i;36053:411::-;;;;;;;;;;-1:-1:-1;36053:411:0;;;;;:::i;:::-;;:::i;56770:32::-;;;;;;;;;;;;;;;;;;;2688:25:1;;;2676:2;2661:18;56770:32:0;2542:177:1;48117:113:0;;;;;;;;;;-1:-1:-1;48205:10:0;:17;48117:113;;57292:52;;;;;;;;;;;;;;;;56907:33;;;;;;;;;;;;;;;;37280:339;;;;;;;;;;-1:-1:-1;37280:339:0;;;;;:::i;:::-;;:::i;62490:236::-;;;;;;;;;;-1:-1:-1;62490:236:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3630:32:1;;;3612:51;;3694:2;3679:18;;3672:34;;;;3585:18;62490:236:0;3438:274:1;56807:35:0;;;;;;;;;;;;;;;;47785:256;;;;;;;;;;-1:-1:-1;47785:256:0;;;;;:::i;:::-;;:::i;62732:193::-;;;;;;;;;;-1:-1:-1;62732:193:0;;;;;:::i;:::-;;:::i;62931:114::-;;;:::i;60737:709::-;;;;;;:::i;:::-;;:::i;37690:185::-;;;;;;;;;;-1:-1:-1;37690:185:0;;;;;:::i;:::-;;:::i;59268:721::-;;;;;;:::i;:::-;;:::i;48307:233::-;;;;;;;;;;-1:-1:-1;48307:233:0;;;;;:::i;:::-;;:::i;56976:28::-;;;;;;;;;;-1:-1:-1;56976:28:0;;;;;;;;;;;62049:98;;;;;;;;;;-1:-1:-1;62049:98:0;;;;;:::i;:::-;;:::i;57248:39::-;;;;;;;;;;;;;;;;56945:26;;;;;;;;;;-1:-1:-1;56945:26:0;;;;;;;;56847:55;;;;;;;;;;;;;;;;34665:239;;;;;;;;;;-1:-1:-1;34665:239:0;;;;;:::i;:::-;;:::i;56669:21::-;;;;;;;;;;;;;:::i;34395:208::-;;;;;;;;;;-1:-1:-1;34395:208:0;;;;;:::i;:::-;;:::i;12973:103::-;;;;;;;;;;;;;:::i;57642:76::-;;;;;;;;;;-1:-1:-1;57642:76:0;;;;-1:-1:-1;;;;;57642:76:0;;;58545:717;;;;;;:::i;:::-;;:::i;12322:87::-;;;;;;;;;;-1:-1:-1;12395:6:0;;-1:-1:-1;;;;;12395:6:0;12322:87;;35140:104;;;;;;;;;;;;;:::i;36823:155::-;;;;;;;;;;-1:-1:-1;36823:155:0;;;;;:::i;:::-;;:::i;61976:65::-;;;;;;;;;;;;;:::i;58276:263::-;;;;;;:::i;:::-;;:::i;37946:328::-;;;;;;;;;;-1:-1:-1;37946:328:0;;;;;:::i;:::-;;:::i;57107:72::-;;;;;;;;;;-1:-1:-1;57107:72:0;;;;;;;-1:-1:-1;;;;;57107:72:0;;;56695:37;;;;;;;;;;;;;:::i;61452:497::-;;;;;;;;;;-1:-1:-1;61452:497:0;;;;;:::i;:::-;;:::i;57805:71::-;;;;;;;;;;-1:-1:-1;57805:71:0;;;;-1:-1:-1;;;;;57805:71:0;;;57494:73;;;;;;;;;;-1:-1:-1;57494:73:0;;;;-1:-1:-1;;;;;57494:73:0;;;57351:72;;;;;;;;;;-1:-1:-1;57351:72:0;;;;-1:-1:-1;;;;;57351:72:0;;;62153:122;;;;;;;;;;-1:-1:-1;62153:122:0;;;;;:::i;:::-;;:::i;59995:736::-;;;;;;:::i;:::-;;:::i;37049:164::-;;;;;;;;;;-1:-1:-1;37049:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37170:25:0;;;37146:4;37170:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37049:164;57065:35;;;;;;;;;;;;57095:5;57065:35;;;;;7158:6:1;7146:19;;;7128:38;;7116:2;7101:18;57065:35:0;6984:188:1;62283:120:0;;;;;;;;;;-1:-1:-1;62283:120:0;;;;;:::i;:::-;;:::i;13231:201::-;;;;;;;;;;-1:-1:-1;13231:201:0;;;;;:::i;:::-;;:::i;47477:224::-;47579:4;-1:-1:-1;;;;;;47603:50:0;;-1:-1:-1;;;47603:50:0;;:90;;;47657:36;47681:11;47657:23;:36::i;:::-;47596:97;47477:224;-1:-1:-1;;47477:224:0:o;62409:73::-;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;;;;;;;;;62461:6:::1;:15:::0;;-1:-1:-1;;62461:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62409:73::o;34971:100::-;35025:13;35058:5;35051:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34971:100;:::o;36530:221::-;36606:7;39873:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39873:16:0;36626:73;;;;-1:-1:-1;;;36626:73:0;;8125:2:1;36626:73:0;;;8107:21:1;8164:2;8144:18;;;8137:30;8203:34;8183:18;;;8176:62;-1:-1:-1;;;8254:18:1;;;8247:42;8306:19;;36626:73:0;7923:408:1;36626:73:0;-1:-1:-1;36719:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36719:24:0;;36530:221::o;56737:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36053:411::-;36134:13;36150:23;36165:7;36150:14;:23::i;:::-;36134:39;;36198:5;-1:-1:-1;;;;;36192:11:0;:2;-1:-1:-1;;;;;36192:11:0;;;36184:57;;;;-1:-1:-1;;;36184:57:0;;8538:2:1;36184:57:0;;;8520:21:1;8577:2;8557:18;;;8550:30;8616:34;8596:18;;;8589:62;-1:-1:-1;;;8667:18:1;;;8660:31;8708:19;;36184:57:0;8336:397:1;36184:57:0;11126:10;-1:-1:-1;;;;;36276:21:0;;;;:62;;-1:-1:-1;36301:37:0;36318:5;11126:10;37049:164;:::i;36301:37::-;36254:168;;;;-1:-1:-1;;;36254:168:0;;8940:2:1;36254:168:0;;;8922:21:1;8979:2;8959:18;;;8952:30;9018:34;8998:18;;;8991:62;9089:26;9069:18;;;9062:54;9133:19;;36254:168:0;8738:420:1;36254:168:0;36435:21;36444:2;36448:7;36435:8;:21::i;:::-;36123:341;36053:411;;:::o;37280:339::-;37475:41;11126:10;37508:7;37475:18;:41::i;:::-;37467:103;;;;-1:-1:-1;;;37467:103:0;;;;;;;:::i;:::-;37583:28;37593:4;37599:2;37603:7;37583:9;:28::i;62490:236::-;62702:7;;62608:16;;;;62681:4;;57095:5;;62689:20;;62702:7;;;62688:29;62702:7;62689:10;:20;:::i;:::-;62688:29;;;;:::i;:::-;62665:53;;;;62490:236;;;;;:::o;47785:256::-;47882:7;47918:23;47935:5;47918:16;:23::i;:::-;47910:5;:31;47902:87;;;;-1:-1:-1;;;47902:87:0;;10345:2:1;47902:87:0;;;10327:21:1;10384:2;10364:18;;;10357:30;10423:34;10403:18;;;10396:62;-1:-1:-1;;;10474:18:1;;;10467:41;10525:19;;47902:87:0;10143:407:1;47902:87:0;-1:-1:-1;;;;;;48007:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;47785:256::o;62732:193::-;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;62842:4:::1;62830:8;:16;;;;62805:81;;;::::0;-1:-1:-1;;;62805:81:0;;10757:2:1;62805:81:0::1;::::0;::::1;10739:21:1::0;10796:2;10776:18;;;10769:30;10835:34;10815:18;;;10808:62;-1:-1:-1;;;10886:18:1;;;10879:33;10929:19;;62805:81:0::1;10555:399:1::0;62805:81:0::1;62899:7;:18:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;62899:18:0;;::::1;::::0;;;::::1;::::0;;62732:193::o;62931:114::-;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;62991:47:::1;::::0;62999:10:::1;::::0;63016:21:::1;62991:47:::0;::::1;;;::::0;::::1;::::0;;;63016:21;62999:10;62991:47;::::1;;;;;;62983:56;;;::::0;::::1;;62931:114::o:0;60737:709::-;60821:12;;:28;;-1:-1:-1;;;60821:28:0;;;;;2688:25:1;;;60853:10:0;;-1:-1:-1;;;;;60821:12:0;;:20;;2661:18:1;;60821:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60821:42:0;;60813:81;;;;-1:-1:-1;;;60813:81:0;;11417:2:1;60813:81:0;;;11399:21:1;11456:2;11436:18;;;11429:30;11495:28;11475:18;;;11468:56;11541:18;;60813:81:0;11215:350:1;60813:81:0;60922:24;60935:11;60922:10;:24;:::i;:::-;60909:9;:37;;60901:46;;;;;;60963:6;;;;60962:7;60954:16;;;;;;60999:1;60985:11;:15;60977:24;;;;;;61031:13;;61016:11;:28;;61008:37;;;;;;61114:33;;61099:11;61060:36;;:50;;;;:::i;:::-;:87;;61052:144;;;;-1:-1:-1;;;61052:144:0;;;;;;;:::i;:::-;61222:1;61205:140;61230:11;61225:1;:16;61205:140;;61257:80;61267:10;61335:1;61296:36;;61279:14;;:53;;;;:::i;:::-;:57;;;;:::i;:::-;61257:9;:80::i;:::-;61243:3;;;;:::i;:::-;;;;61205:140;;;;61429:11;61390:36;;:50;;;;:::i;:::-;61351:36;:89;-1:-1:-1;;60737:709:0:o;37690:185::-;37828:39;37845:4;37851:2;37855:7;37828:39;;;;;;;;;;;;:16;:39::i;59268:721::-;59358:14;;:32;;-1:-1:-1;;;59358:32:0;;;;;2688:25:1;;;59394:10:0;;-1:-1:-1;;;;;59358:14:0;;:22;;2661:18:1;;59358:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59358:46:0;;59350:87;;;;-1:-1:-1;;;59350:87:0;;12458:2:1;59350:87:0;;;12440:21:1;12497:2;12477:18;;;12470:30;12536;12516:18;;;12509:58;12584:18;;59350:87:0;12256:352:1;59350:87:0;59465:24;59478:11;59465:10;:24;:::i;:::-;59452:9;:37;;59444:46;;;;;;59506:6;;;;59505:7;59497:16;;;;;;59542:1;59528:11;:15;59520:24;;;;;;59574:13;;59559:11;:28;;59551:37;;;;;;59657:33;;59642:11;59603:36;;:50;;;;:::i;:::-;:87;;59595:144;;;;-1:-1:-1;;;59595:144:0;;;;;;;:::i;:::-;59765:1;59748:140;59773:11;59768:1;:16;59748:140;;59800:80;59810:10;59878:1;59839:36;;59822:14;;:53;;;;:::i;59800:80::-;59786:3;;;;:::i;:::-;;;;59748:140;;48307:233;48382:7;48418:30;48205:10;:17;;48117:113;48418:30;48410:5;:38;48402:95;;;;-1:-1:-1;;;48402:95:0;;12815:2:1;48402:95:0;;;12797:21:1;12854:2;12834:18;;;12827:30;12893:34;12873:18;;;12866:62;-1:-1:-1;;;12944:18:1;;;12937:42;12996:19;;48402:95:0;12613:408:1;48402:95:0;48515:10;48526:5;48515:17;;;;;;;;:::i;:::-;;;;;;;;;48508:24;;48307:233;;;:::o;62049:98::-;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;62120:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62049:98:::0;:::o;34665:239::-;34737:7;34773:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34773:16:0;34808:19;34800:73;;;;-1:-1:-1;;;34800:73:0;;13360:2:1;34800:73:0;;;13342:21:1;13399:2;13379:18;;;13372:30;13438:34;13418:18;;;13411:62;-1:-1:-1;;;13489:18:1;;;13482:39;13538:19;;34800:73:0;13158:405:1;56669:21:0;;;;;;;:::i;34395:208::-;34467:7;-1:-1:-1;;;;;34495:19:0;;34487:74;;;;-1:-1:-1;;;34487:74:0;;13770:2:1;34487:74:0;;;13752:21:1;13809:2;13789:18;;;13782:30;13848:34;13828:18;;;13821:62;-1:-1:-1;;;13899:18:1;;;13892:40;13949:19;;34487:74:0;13568:406:1;34487:74:0;-1:-1:-1;;;;;;34579:16:0;;;;;:9;:16;;;;;;;34395:208::o;12973:103::-;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;13038:30:::1;13065:1;13038:18;:30::i;58545:717::-:0;58636:13;;:30;;-1:-1:-1;;;58636:30:0;;;;;2688:25:1;;;58670:10:0;;-1:-1:-1;;;;;58636:13:0;;:21;;2661:18:1;;58636:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58636:44:0;;58628:84;;;;-1:-1:-1;;;58628:84:0;;14181:2:1;58628:84:0;;;14163:21:1;14220:2;14200:18;;;14193:30;14259:29;14239:18;;;14232:57;14306:18;;58628:84:0;13979:351:1;58628:84:0;58740:24;58753:11;58740:10;:24;:::i;:::-;58727:9;:37;;58719:46;;;;;;58781:6;;;;58780:7;58772:16;;;;;;58817:1;58803:11;:15;58795:24;;;;;;58849:13;;58834:11;:28;;58826:37;;;;;;58932:33;;58917:11;58878:36;;:50;;;;:::i;:::-;:87;;58870:144;;;;-1:-1:-1;;;58870:144:0;;;;;;;:::i;:::-;59040:1;59023:140;59048:11;59043:1;:16;59023:140;;59075:80;59085:10;59153:1;59114:36;;59097:14;;:53;;;;:::i;59075:80::-;59061:3;;;;:::i;:::-;;;;59023:140;;35140:104;35196:13;35229:7;35222:14;;;;;:::i;36823:155::-;36918:52;11126:10;36951:8;36961;36918:18;:52::i;61976:65::-;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;62020:8:::1;:15:::0;;-1:-1:-1;;62020:15:0::1;;;::::0;;61976:65::o;58276:263::-;58363:1;58353:7;:11;:29;;;;;58379:3;58368:7;:14;;58353:29;58345:58;;;;-1:-1:-1;;;58345:58:0;;14537:2:1;58345:58:0;;;14519:21:1;14576:2;14556:18;;;14549:30;-1:-1:-1;;;14595:18:1;;;14588:46;14651:18;;58345:58:0;14335:340:1;58345:58:0;58418:13;;:30;;-1:-1:-1;;;58418:30:0;;;;;2688:25:1;;;58452:10:0;;-1:-1:-1;;;;;58418:13:0;;:21;;2661:18:1;;58418:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58418:44:0;;58410:84;;;;-1:-1:-1;;;58410:84:0;;14882:2:1;58410:84:0;;;14864:21:1;14921:2;14901:18;;;14894:30;14960:29;14940:18;;;14933:57;15007:18;;58410:84:0;14680:351:1;58410:84:0;58503:30;58513:10;58525:7;58503:9;:30::i;:::-;58276:263;:::o;37946:328::-;38121:41;11126:10;38154:7;38121:18;:41::i;:::-;38113:103;;;;-1:-1:-1;;;38113:103:0;;;;;;;:::i;:::-;38227:39;38241:4;38247:2;38251:7;38260:5;38227:13;:39::i;:::-;37946:328;;;;:::o;56695:37::-;;;;;;;:::i;61452:497::-;39849:4;39873:16;;;:7;:16;;;;;;61550:13;;-1:-1:-1;;;;;39873:16:0;61575:97;;;;-1:-1:-1;;;61575:97:0;;15238:2:1;61575:97:0;;;15220:21:1;15277:2;15257:18;;;15250:30;15316:34;15296:18;;;15289:62;-1:-1:-1;;;15367:18:1;;;15360:45;15422:19;;61575:97:0;15036:411:1;61575:97:0;61688:8;;;;;;;61685:62;;61725:14;61718:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61452:497;;;:::o;61685:62::-;61755:28;61786:10;:8;:10::i;:::-;61755:41;;61841:1;61816:14;61810:28;:32;:133;;;;;;;;;;;;;;;;;61878:14;61894:18;:7;:16;:18::i;:::-;61914:13;61861:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61810:133;61803:140;61452:497;-1:-1:-1;;;61452:497:0:o;62153:122::-;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;62236:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;59995:736::-:0;60091:17;;:38;;-1:-1:-1;;;60091:38:0;;;;;2688:25:1;;;60133:10:0;;-1:-1:-1;;;;;60091:17:0;;:25;;2661:18:1;;60091:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60091:52:0;;60083:96;;;;-1:-1:-1;;;60083:96:0;;17312:2:1;60083:96:0;;;17294:21:1;17351:2;17331:18;;;17324:30;17390:33;17370:18;;;17363:61;17441:18;;60083:96:0;17110:355:1;60083:96:0;60207:24;60220:11;60207:10;:24;:::i;:::-;60194:9;:37;;60186:46;;;;;;60248:6;;;;60247:7;60239:16;;;;;;60284:1;60270:11;:15;60262:24;;;;;;60316:13;;60301:11;:28;;60293:37;;;;;;60399:33;;60384:11;60345:36;;:50;;;;:::i;:::-;:87;;60337:144;;;;-1:-1:-1;;;60337:144:0;;;;;;;:::i;:::-;60507:1;60490:140;60515:11;60510:1;:16;60490:140;;60542:80;60552:10;60620:1;60581:36;;60564:14;;:53;;;;:::i;60542:80::-;60528:3;;;;:::i;:::-;;;;60490:140;;62283:120;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;62365:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;13231:201::-:0;12395:6;;-1:-1:-1;;;;;12395:6:0;11126:10;12542:23;12534:68;;;;-1:-1:-1;;;12534:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13320:22:0;::::1;13312:73;;;::::0;-1:-1:-1;;;13312:73:0;;17672:2:1;13312:73:0::1;::::0;::::1;17654:21:1::0;17711:2;17691:18;;;17684:30;17750:34;17730:18;;;17723:62;-1:-1:-1;;;17801:18:1;;;17794:36;17847:19;;13312:73:0::1;17470:402:1::0;13312:73:0::1;13396:28;13415:8;13396:18;:28::i;34026:305::-:0;34128:4;-1:-1:-1;;;;;;34165:40:0;;-1:-1:-1;;;34165:40:0;;:105;;-1:-1:-1;;;;;;;34222:48:0;;-1:-1:-1;;;34222:48:0;34165:105;:158;;;-1:-1:-1;;;;;;;;;;25831:40:0;;;34287:36;25722:157;43766:174;43841:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43841:29:0;-1:-1:-1;;;;;43841:29:0;;;;;;;;:24;;43895:23;43841:24;43895:14;:23::i;:::-;-1:-1:-1;;;;;43886:46:0;;;;;;;;;;;43766:174;;:::o;40078:348::-;40171:4;39873:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39873:16:0;40188:73;;;;-1:-1:-1;;;40188:73:0;;18079:2:1;40188:73:0;;;18061:21:1;18118:2;18098:18;;;18091:30;18157:34;18137:18;;;18130:62;-1:-1:-1;;;18208:18:1;;;18201:42;18260:19;;40188:73:0;17877:408:1;40188:73:0;40272:13;40288:23;40303:7;40288:14;:23::i;:::-;40272:39;;40341:5;-1:-1:-1;;;;;40330:16:0;:7;-1:-1:-1;;;;;40330:16:0;;:51;;;;40374:7;-1:-1:-1;;;;;40350:31:0;:20;40362:7;40350:11;:20::i;:::-;-1:-1:-1;;;;;40350:31:0;;40330:51;:87;;;-1:-1:-1;;;;;;37170:25:0;;;37146:4;37170:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40385:32;40322:96;40078:348;-1:-1:-1;;;;40078:348:0:o;43070:578::-;43229:4;-1:-1:-1;;;;;43202:31:0;:23;43217:7;43202:14;:23::i;:::-;-1:-1:-1;;;;;43202:31:0;;43194:85;;;;-1:-1:-1;;;43194:85:0;;18492:2:1;43194:85:0;;;18474:21:1;18531:2;18511:18;;;18504:30;18570:34;18550:18;;;18543:62;-1:-1:-1;;;18621:18:1;;;18614:39;18670:19;;43194:85:0;18290:405:1;43194:85:0;-1:-1:-1;;;;;43298:16:0;;43290:65;;;;-1:-1:-1;;;43290:65:0;;18902:2:1;43290:65:0;;;18884:21:1;18941:2;18921:18;;;18914:30;18980:34;18960:18;;;18953:62;-1:-1:-1;;;19031:18:1;;;19024:34;19075:19;;43290:65:0;18700:400:1;43290:65:0;43368:39;43389:4;43395:2;43399:7;43368:20;:39::i;:::-;43472:29;43489:1;43493:7;43472:8;:29::i;:::-;-1:-1:-1;;;;;43514:15:0;;;;;;:9;:15;;;;;:20;;43533:1;;43514:15;:20;;43533:1;;43514:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43545:13:0;;;;;;:9;:13;;;;;:18;;43562:1;;43545:13;:18;;43562:1;;43545:18;:::i;:::-;;;;-1:-1:-1;;43574:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43574:21:0;-1:-1:-1;;;;;43574:21:0;;;;;;;;;43613:27;;43574:16;;43613:27;;;;;;;43070:578;;;:::o;40768:110::-;40844:26;40854:2;40858:7;40844:26;;;;;;;;;;;;:9;:26::i;13592:191::-;13685:6;;;-1:-1:-1;;;;;13702:17:0;;;-1:-1:-1;;;;;;13702:17:0;;;;;;;13735:40;;13685:6;;;13702:17;13685:6;;13735:40;;13666:16;;13735:40;13655:128;13592:191;:::o;44082:315::-;44237:8;-1:-1:-1;;;;;44228:17:0;:5;-1:-1:-1;;;;;44228:17:0;;;44220:55;;;;-1:-1:-1;;;44220:55:0;;19437:2:1;44220:55:0;;;19419:21:1;19476:2;19456:18;;;19449:30;19515:27;19495:18;;;19488:55;19560:18;;44220:55:0;19235:349:1;44220:55:0;-1:-1:-1;;;;;44286:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44286:46:0;;;;;;;;;;44348:41;;540::1;;;44348::0;;513:18:1;44348:41:0;;;;;;;44082:315;;;:::o;39156:::-;39313:28;39323:4;39329:2;39333:7;39313:9;:28::i;:::-;39360:48;39383:4;39389:2;39393:7;39402:5;39360:22;:48::i;:::-;39352:111;;;;-1:-1:-1;;;39352:111:0;;;;;;;:::i;58168:102::-;58228:13;58257:7;58250:14;;;;;:::i;8608:723::-;8664:13;8885:10;8881:53;;-1:-1:-1;;8912:10:0;;;;;;;;;;;;-1:-1:-1;;;8912:10:0;;;;;8608:723::o;8881:53::-;8959:5;8944:12;9000:78;9007:9;;9000:78;;9033:8;;;;:::i;:::-;;-1:-1:-1;9056:10:0;;-1:-1:-1;9064:2:0;9056:10;;:::i;:::-;;;9000:78;;;9088:19;9120:6;9110:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9110:17:0;;9088:39;;9138:154;9145:10;;9138:154;;9172:11;9182:1;9172:11;;:::i;:::-;;-1:-1:-1;9241:10:0;9249:2;9241:5;:10;:::i;:::-;9228:24;;:2;:24;:::i;:::-;9215:39;;9198:6;9205;9198:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9198:56:0;;;;;;;;-1:-1:-1;9269:11:0;9278:2;9269:11;;:::i;:::-;;;9138:154;;49153:589;-1:-1:-1;;;;;49359:18:0;;49355:187;;49394:40;49426:7;50569:10;:17;;50542:24;;;;:15;:24;;;;;:44;;;50597:24;;;;;;;;;;;;50465:164;49394:40;49355:187;;;49464:2;-1:-1:-1;;;;;49456:10:0;:4;-1:-1:-1;;;;;49456:10:0;;49452:90;;49483:47;49516:4;49522:7;49483:32;:47::i;:::-;-1:-1:-1;;;;;49556:16:0;;49552:183;;49589:45;49626:7;49589:36;:45::i;49552:183::-;49662:4;-1:-1:-1;;;;;49656:10:0;:2;-1:-1:-1;;;;;49656:10:0;;49652:83;;49683:40;49711:2;49715:7;49683:27;:40::i;41105:321::-;41235:18;41241:2;41245:7;41235:5;:18::i;:::-;41286:54;41317:1;41321:2;41325:7;41334:5;41286:22;:54::i;:::-;41264:154;;;;-1:-1:-1;;;41264:154:0;;;;;;;:::i;44962:799::-;45117:4;-1:-1:-1;;;;;45138:13:0;;14933:20;14981:8;45134:620;;45174:72;;-1:-1:-1;;;45174:72:0;;-1:-1:-1;;;;;45174:36:0;;;;;:72;;11126:10;;45225:4;;45231:7;;45240:5;;45174:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45174:72:0;;;;;;;;-1:-1:-1;;45174:72:0;;;;;;;;;;;;:::i;:::-;;;45170:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45416:13:0;;45412:272;;45459:60;;-1:-1:-1;;;45459:60:0;;;;;;;:::i;45412:272::-;45634:6;45628:13;45619:6;45615:2;45611:15;45604:38;45170:529;-1:-1:-1;;;;;;45297:51:0;-1:-1:-1;;;45297:51:0;;-1:-1:-1;45290:58:0;;45134:620;-1:-1:-1;45738:4:0;44962:799;;;;;;:::o;51256:988::-;51522:22;51572:1;51547:22;51564:4;51547:16;:22::i;:::-;:26;;;;:::i;:::-;51584:18;51605:26;;;:17;:26;;;;;;51522:51;;-1:-1:-1;51738:28:0;;;51734:328;;-1:-1:-1;;;;;51805:18:0;;51783:19;51805:18;;;:12;:18;;;;;;;;:34;;;;;;;;;51856:30;;;;;;:44;;;51973:30;;:17;:30;;;;;:43;;;51734:328;-1:-1:-1;52158:26:0;;;;:17;:26;;;;;;;;52151:33;;;-1:-1:-1;;;;;52202:18:0;;;;;:12;:18;;;;;:34;;;;;;;52195:41;51256:988::o;52539:1079::-;52817:10;:17;52792:22;;52817:21;;52837:1;;52817:21;:::i;:::-;52849:18;52870:24;;;:15;:24;;;;;;53243:10;:26;;52792:46;;-1:-1:-1;52870:24:0;;52792:46;;53243:26;;;;;;:::i;:::-;;;;;;;;;53221:48;;53307:11;53282:10;53293;53282:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53387:28;;;:15;:28;;;;;;;:41;;;53559:24;;;;;53552:31;53594:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52610:1008;;;52539:1079;:::o;50043:221::-;50128:14;50145:20;50162:2;50145:16;:20::i;:::-;-1:-1:-1;;;;;50176:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50221:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50043:221:0:o;41762:382::-;-1:-1:-1;;;;;41842:16:0;;41834:61;;;;-1:-1:-1;;;41834:61:0;;21207:2:1;41834:61:0;;;21189:21:1;;;21226:18;;;21219:30;21285:34;21265:18;;;21258:62;21337:18;;41834:61:0;21005:356:1;41834:61:0;39849:4;39873:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39873:16:0;:30;41906:58;;;;-1:-1:-1;;;41906:58:0;;21568:2:1;41906:58:0;;;21550:21:1;21607:2;21587:18;;;21580:30;21646;21626:18;;;21619:58;21694:18;;41906:58:0;21366:352:1;41906:58:0;41977:45;42006:1;42010:2;42014:7;41977:20;:45::i;:::-;-1:-1:-1;;;;;42035:13:0;;;;;;:9;:13;;;;;:18;;42052:1;;42035:13;:18;;42052:1;;42035:18;:::i;:::-;;;;-1:-1:-1;;42064:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42064:21:0;-1:-1:-1;;;;;42064:21:0;;;;;;;;42103:33;;42064:16;;;42103:33;;42064:16;;42103:33;41762:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:131::-;-1:-1:-1;;;;;2161:31:1;;2151:42;;2141:70;;2207:1;2204;2197:12;2222:315;2290:6;2298;2351:2;2339:9;2330:7;2326:23;2322:32;2319:52;;;2367:1;2364;2357:12;2319:52;2406:9;2393:23;2425:31;2450:5;2425:31;:::i;:::-;2475:5;2527:2;2512:18;;;;2499:32;;-1:-1:-1;;;2222:315:1:o;2724:456::-;2801:6;2809;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;2724:456;;3116:7;;-1:-1:-1;;;3170:2:1;3155:18;;;;3142:32;;2724:456::o;3185:248::-;3253:6;3261;3314:2;3302:9;3293:7;3289:23;3285:32;3282:52;;;3330:1;3327;3320:12;3282:52;-1:-1:-1;;3353:23:1;;;3423:2;3408:18;;;3395:32;;-1:-1:-1;3185:248:1:o;3717:272::-;3775:6;3828:2;3816:9;3807:7;3803:23;3799:32;3796:52;;;3844:1;3841;3834:12;3796:52;3883:9;3870:23;3933:6;3926:5;3922:18;3915:5;3912:29;3902:57;;3955:1;3952;3945:12;3994:127;4055:10;4050:3;4046:20;4043:1;4036:31;4086:4;4083:1;4076:15;4110:4;4107:1;4100:15;4126:632;4191:5;4221:18;4262:2;4254:6;4251:14;4248:40;;;4268:18;;:::i;:::-;4343:2;4337:9;4311:2;4397:15;;-1:-1:-1;;4393:24:1;;;4419:2;4389:33;4385:42;4373:55;;;4443:18;;;4463:22;;;4440:46;4437:72;;;4489:18;;:::i;:::-;4529:10;4525:2;4518:22;4558:6;4549:15;;4588:6;4580;4573:22;4628:3;4619:6;4614:3;4610:16;4607:25;4604:45;;;4645:1;4642;4635:12;4604:45;4695:6;4690:3;4683:4;4675:6;4671:17;4658:44;4750:1;4743:4;4734:6;4726;4722:19;4718:30;4711:41;;;;4126:632;;;;;:::o;4763:451::-;4832:6;4885:2;4873:9;4864:7;4860:23;4856:32;4853:52;;;4901:1;4898;4891:12;4853:52;4941:9;4928:23;4974:18;4966:6;4963:30;4960:50;;;5006:1;5003;4996:12;4960:50;5029:22;;5082:4;5074:13;;5070:27;-1:-1:-1;5060:55:1;;5111:1;5108;5101:12;5060:55;5134:74;5200:7;5195:2;5182:16;5177:2;5173;5169:11;5134:74;:::i;5219:247::-;5278:6;5331:2;5319:9;5310:7;5306:23;5302:32;5299:52;;;5347:1;5344;5337:12;5299:52;5386:9;5373:23;5405:31;5430:5;5405:31;:::i;5471:315::-;5536:6;5544;5597:2;5585:9;5576:7;5572:23;5568:32;5565:52;;;5613:1;5610;5603:12;5565:52;5652:9;5639:23;5671:31;5696:5;5671:31;:::i;:::-;5721:5;-1:-1:-1;5745:35:1;5776:2;5761:18;;5745:35;:::i;:::-;5735:45;;5471:315;;;;;:::o;5791:795::-;5886:6;5894;5902;5910;5963:3;5951:9;5942:7;5938:23;5934:33;5931:53;;;5980:1;5977;5970:12;5931:53;6019:9;6006:23;6038:31;6063:5;6038:31;:::i;:::-;6088:5;-1:-1:-1;6145:2:1;6130:18;;6117:32;6158:33;6117:32;6158:33;:::i;:::-;6210:7;-1:-1:-1;6264:2:1;6249:18;;6236:32;;-1:-1:-1;6319:2:1;6304:18;;6291:32;6346:18;6335:30;;6332:50;;;6378:1;6375;6368:12;6332:50;6401:22;;6454:4;6446:13;;6442:27;-1:-1:-1;6432:55:1;;6483:1;6480;6473:12;6432:55;6506:74;6572:7;6567:2;6554:16;6549:2;6545;6541:11;6506:74;:::i;:::-;6496:84;;;5791:795;;;;;;;:::o;6591:388::-;6659:6;6667;6720:2;6708:9;6699:7;6695:23;6691:32;6688:52;;;6736:1;6733;6726:12;6688:52;6775:9;6762:23;6794:31;6819:5;6794:31;:::i;:::-;6844:5;-1:-1:-1;6901:2:1;6886:18;;6873:32;6914:33;6873:32;6914:33;:::i;:::-;6966:7;6956:17;;;6591:388;;;;;:::o;7177:356::-;7379:2;7361:21;;;7398:18;;;7391:30;7457:34;7452:2;7437:18;;7430:62;7524:2;7509:18;;7177:356::o;7538:380::-;7617:1;7613:12;;;;7660;;;7681:61;;7735:4;7727:6;7723:17;7713:27;;7681:61;7788:2;7780:6;7777:14;7757:18;7754:38;7751:161;;;7834:10;7829:3;7825:20;7822:1;7815:31;7869:4;7866:1;7859:15;7897:4;7894:1;7887:15;7751:161;;7538:380;;;:::o;9163:413::-;9365:2;9347:21;;;9404:2;9384:18;;;9377:30;9443:34;9438:2;9423:18;;9416:62;-1:-1:-1;;;9509:2:1;9494:18;;9487:47;9566:3;9551:19;;9163:413::o;9581:127::-;9642:10;9637:3;9633:20;9630:1;9623:31;9673:4;9670:1;9663:15;9697:4;9694:1;9687:15;9713:168;9753:7;9819:1;9815;9811:6;9807:14;9804:1;9801:21;9796:1;9789:9;9782:17;9778:45;9775:71;;;9826:18;;:::i;:::-;-1:-1:-1;9866:9:1;;9713:168::o;9886:127::-;9947:10;9942:3;9938:20;9935:1;9928:31;9978:4;9975:1;9968:15;10002:4;9999:1;9992:15;10018:120;10058:1;10084;10074:35;;10089:18;;:::i;:::-;-1:-1:-1;10123:9:1;;10018:120::o;10959:251::-;11029:6;11082:2;11070:9;11061:7;11057:23;11053:32;11050:52;;;11098:1;11095;11088:12;11050:52;11130:9;11124:16;11149:31;11174:5;11149:31;:::i;11570:128::-;11610:3;11641:1;11637:6;11634:1;11631:13;11628:39;;;11647:18;;:::i;:::-;-1:-1:-1;11683:9:1;;11570:128::o;11703:408::-;11905:2;11887:21;;;11944:2;11924:18;;;11917:30;11983:34;11978:2;11963:18;;11956:62;-1:-1:-1;;;12049:2:1;12034:18;;12027:42;12101:3;12086:19;;11703:408::o;12116:135::-;12155:3;-1:-1:-1;;12176:17:1;;12173:43;;;12196:18;;:::i;:::-;-1:-1:-1;12243:1:1;12232:13;;12116:135::o;13026:127::-;13087:10;13082:3;13078:20;13075:1;13068:31;13118:4;13115:1;13108:15;13142:4;13139:1;13132:15;15578:1527;15802:3;15840:6;15834:13;15866:4;15879:51;15923:6;15918:3;15913:2;15905:6;15901:15;15879:51;:::i;:::-;15993:13;;15952:16;;;;16015:55;15993:13;15952:16;16037:15;;;16015:55;:::i;:::-;16159:13;;16092:20;;;16132:1;;16219;16241:18;;;;16294;;;;16321:93;;16399:4;16389:8;16385:19;16373:31;;16321:93;16462:2;16452:8;16449:16;16429:18;16426:40;16423:167;;;-1:-1:-1;;;16489:33:1;;16545:4;16542:1;16535:15;16575:4;16496:3;16563:17;16423:167;16606:18;16633:110;;;;16757:1;16752:328;;;;16599:481;;16633:110;-1:-1:-1;;16668:24:1;;16654:39;;16713:20;;;;-1:-1:-1;16633:110:1;;16752:328;15525:1;15518:14;;;15562:4;15549:18;;16847:1;16861:169;16875:8;16872:1;16869:15;16861:169;;;16957:14;;16942:13;;;16935:37;17000:16;;;;16892:10;;16861:169;;;16865:3;;17061:8;17054:5;17050:20;17043:27;;16599:481;-1:-1:-1;17096:3:1;;15578:1527;-1:-1:-1;;;;;;;;;;;15578:1527:1:o;19105:125::-;19145:4;19173:1;19170;19167:8;19164:34;;;19178:18;;:::i;:::-;-1:-1:-1;19215:9:1;;19105:125::o;19589:414::-;19791:2;19773:21;;;19830:2;19810:18;;;19803:30;19869:34;19864:2;19849:18;;19842:62;-1:-1:-1;;;19935:2:1;19920:18;;19913:48;19993:3;19978:19;;19589:414::o;20008:112::-;20040:1;20066;20056:35;;20071:18;;:::i;:::-;-1:-1:-1;20105:9:1;;20008:112::o;20125:489::-;-1:-1:-1;;;;;20394:15:1;;;20376:34;;20446:15;;20441:2;20426:18;;20419:43;20493:2;20478:18;;20471:34;;;20541:3;20536:2;20521:18;;20514:31;;;20319:4;;20562:46;;20588:19;;20580:6;20562:46;:::i;:::-;20554:54;20125:489;-1:-1:-1;;;;;;20125:489:1:o;20619:249::-;20688:6;20741:2;20729:9;20720:7;20716:23;20712:32;20709:52;;;20757:1;20754;20747:12;20709:52;20789:9;20783:16;20808:30;20832:5;20808:30;:::i;20873:127::-;20934:10;20929:3;20925:20;20922:1;20915:31;20965:4;20962:1;20955:15;20989:4;20986:1;20979:15
Swarm Source
ipfs://fd26dfecfa06390ea1a42327c671db364edc5ad3f2fdada51e5c8bb0b657b9b2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.