ETH Price: $3,305.42 (-3.34%)
Gas: 16 Gwei

Token

Pixel Planets (PLANETS)
 

Overview

Max Total Supply

1,000 PLANETS

Holders

318

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
agogojoe.eth
Balance
1 PLANETS
0x13546cdb4fea70936acacd8e8a07b2117af765ca
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

1000 Randomly Generated Pixel Art Planets using Python & A.I. & GAN on Ethereum.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
pixelplanets

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-22
*/

/**
 *Submitted for verification at Etherscan.io on 2021-09-16
*/

// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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;
    }
    }
}


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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);
}

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);
}


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;
    }
}


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;
}

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);
}

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);
}




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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


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}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //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, true);

        _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, true);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    function _burnSave(address owner, uint256 tokenId) internal virtual {

        _beforeTokenTransfer(owner, address(0), tokenId, false);

        // 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, true);

        // 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 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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, bool isDelete) internal virtual { }
}

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, bool isDelete) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId, isDelete);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0) && isDelete) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from && isDelete) {
            _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();
    }
}

pragma solidity ^0.8.0;


contract pixelplanets is ERC721Enumerable, Ownable{
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;


    uint256 public constant NFT_PRICE = 20000000000000000; // 0.02 ETH
    uint public constant MAX_NFT_PURCHASE = 5;
    uint256 public MAX_SUPPLY = 1000;
    bool public saleIsActive = false;

    uint256 public startingIndex;
    uint256 public startingIndexBlock;

    string private _baseURIExtended;
    mapping (uint256 => string) _tokenURIs;

    constructor() ERC721("Pixel Planets","PLANETS"){
    }


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function reserveTokens(uint256 num) public onlyOwner {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < num; i++) {
            _safeMint(msg.sender, supply + i);
        }

        if (startingIndexBlock == 0) {
            startingIndexBlock = block.number;
        }
    }

    function setMaxTokenSupply(uint256 maxSupply) public onlyOwner {
        MAX_SUPPLY = maxSupply;
    }
    
    function mint() public payable {
        require(saleIsActive, "Sale is not active at the moment");
        require((totalSupply() + 1) <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(NFT_PRICE == msg.value, "Sent ether value is incorrect, mint cost is 0.02 ether");
        
        if ((totalSupply() + 1) <= MAX_SUPPLY) {
            _safeMint(msg.sender, totalSupply());
        }
        
    }

    function mint5() public payable {
        require(saleIsActive, "Sale is not active at the moment");
        require(totalSupply().add(5) <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(NFT_PRICE.mul(5) == msg.value, "Must Send 0.1 ETH to Mint 5 NFTs");

        for (uint i = 0; i < 5; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }


    function calcStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index has already been set");
        require(startingIndexBlock != 0, "Starting index has not been set yet");

        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_SUPPLY;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if(block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_SUPPLY;
        }

        // To prevent original sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        startingIndexBlock = block.number;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }
    

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint5","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"nonpayable","type":"function"}]

60806040526103e8600b55600c805460ff191690553480156200002157600080fd5b50604080518082018252600d81526c506978656c20506c616e65747360981b602080830191825283518085019094526007845266504c414e45545360c81b9084015281519192916200007691600091620000f9565b5080516200008c906001906020840190620000f9565b5050506000620000a1620000f560201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001dc565b3390565b82805462000107906200019f565b90600052602060002090601f0160209004810192826200012b576000855562000176565b82601f106200014657805160ff191683800117855562000176565b8280016001018555821562000176579182015b828111156200017657825182559160200191906001019062000159565b506200018492915062000188565b5090565b5b8082111562000184576000815560010162000189565b600181811c90821680620001b457607f821691505b60208210811415620001d657634e487b7160e01b600052602260045260246000fd5b50919050565b6124d380620001ec6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e13f351a1161006f578063e13f351a14610545578063e36d64981461055a578063e985e9c514610570578063eb8d2444146105b9578063f2fde38b146105d357600080fd5b8063b88d4fde146104cf578063c87b56dd146104ef578063cb774d471461050f578063d031370b1461052557600080fd5b806395d89b41116100dc57806395d89b4114610472578063a22cb46514610487578063a9decdda146104a7578063b07ed982146104af57600080fd5b806370a082311461040a578063715018a61461042a5780637d17fcbe1461043f5780638da5cb5b1461045457600080fd5b80632f745c591161019057806342842e0e1161015f57806342842e0e1461036f5780634f6ccce71461038f57806355f804b3146103af5780636352211e146103cf578063676dd563146103ef57600080fd5b80632f745c591461030f57806332cb6b0c1461032f57806334918dfd146103455780633ccfd60b1461035a57600080fd5b8063095ea7b3116101cc578063095ea7b3146102b05780631249c58b146102d257806318160ddd146102da57806323b872dd146102ef57600080fd5b806301ffc9a7146101fe578063020b39cc1461023357806306fdde0314610256578063081812fc14610278575b600080fd5b34801561020a57600080fd5b5061021e610219366004612102565b6105f3565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248600581565b60405190815260200161022a565b34801561026257600080fd5b5061026b61061e565b60405161022a9190612236565b34801561028457600080fd5b50610298610293366004612185565b6106b0565b6040516001600160a01b03909116815260200161022a565b3480156102bc57600080fd5b506102d06102cb3660046120d8565b61074a565b005b6102d0610860565b3480156102e657600080fd5b50600854610248565b3480156102fb57600080fd5b506102d061030a366004611fe4565b6109b0565b34801561031b57600080fd5b5061024861032a3660046120d8565b6109e1565b34801561033b57600080fd5b50610248600b5481565b34801561035157600080fd5b506102d0610a77565b34801561036657600080fd5b506102d0610ab5565b34801561037b57600080fd5b506102d061038a366004611fe4565b610b12565b34801561039b57600080fd5b506102486103aa366004612185565b610b2d565b3480156103bb57600080fd5b506102d06103ca36600461213c565b610bc0565b3480156103db57600080fd5b506102986103ea366004612185565b610bfd565b3480156103fb57600080fd5b5061024866470de4df82000081565b34801561041657600080fd5b50610248610425366004611f96565b610c74565b34801561043657600080fd5b506102d0610cfb565b34801561044b57600080fd5b506102d0610d6f565b34801561046057600080fd5b50600a546001600160a01b0316610298565b34801561047e57600080fd5b5061026b610def565b34801561049357600080fd5b506102d06104a236600461209c565b610dfe565b6102d0610ec3565b3480156104bb57600080fd5b506102d06104ca366004612185565b611008565b3480156104db57600080fd5b506102d06104ea366004612020565b611037565b3480156104fb57600080fd5b5061026b61050a366004612185565b61106f565b34801561051b57600080fd5b50610248600d5481565b34801561053157600080fd5b506102d0610540366004612185565b6111f1565b34801561055157600080fd5b506102d0611263565b34801561056657600080fd5b50610248600e5481565b34801561057c57600080fd5b5061021e61058b366004611fb1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105c557600080fd5b50600c5461021e9060ff1681565b3480156105df57600080fd5b506102d06105ee366004611f96565b6113a6565b60006001600160e01b0319821663780e9d6360e01b1480610618575061061882611491565b92915050565b60606000805461062d906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054610659906123af565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661072e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075582610bfd565b9050806001600160a01b0316836001600160a01b031614156107c35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610725565b336001600160a01b03821614806107df57506107df813361058b565b6108515760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610725565b61085b83836114e1565b505050565b600c5460ff166108b25760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610725565b600b546008546108c3906001612321565b11156109115760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610725565b3466470de4df820000146109865760405162461bcd60e51b815260206004820152603660248201527f53656e742065746865722076616c756520697320696e636f72726563742c206d60448201527534b73a1031b7b9ba1034b990181718191032ba3432b960511b6064820152608401610725565b600b54600854610997906001612321565b116109ae576109ae336109a960085490565b61154f565b565b6109ba3382611569565b6109d65760405162461bcd60e51b8152600401610725906122d0565b61085b838383611660565b60006109ec83610c74565b8210610a4e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610725565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aa15760405162461bcd60e51b81526004016107259061229b565b600c805460ff19811660ff90911615179055565b600a546001600160a01b03163314610adf5760405162461bcd60e51b81526004016107259061229b565b6040514790339082156108fc029083906000818181858888f19350505050158015610b0e573d6000803e3d6000fd5b5050565b61085b83838360405180602001604052806000815250611037565b6000610b3860085490565b8210610b9b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610725565b60088281548110610bae57610bae61245b565b90600052602060002001549050919050565b600a546001600160a01b03163314610bea5760405162461bcd60e51b81526004016107259061229b565b8051610b0e90600f906020840190611e6b565b6000818152600260205260408120546001600160a01b0316806106185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610725565b60006001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610725565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d255760405162461bcd60e51b81526004016107259061229b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610d995760405162461bcd60e51b81526004016107259061229b565b600d5415610de95760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610725565b43600e55565b60606001805461062d906123af565b6001600160a01b038216331415610e575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610725565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5460ff16610f155760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610725565b600b54610f2c6005610f2660085490565b9061180d565b1115610f7a5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610725565b34610f8d66470de4df8200006005611820565b14610fda5760405162461bcd60e51b815260206004820181905260248201527f4d7573742053656e6420302e312045544820746f204d696e742035204e4654736044820152606401610725565b60005b600581101561100557610ff3336109a960085490565b80610ffd816123ea565b915050610fdd565b50565b600a546001600160a01b031633146110325760405162461bcd60e51b81526004016107259061229b565b600b55565b6110413383611569565b61105d5760405162461bcd60e51b8152600401610725906122d0565b6110698484848461182c565b50505050565b6000818152600260205260409020546060906001600160a01b03166110ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610725565b60008281526010602052604081208054611107906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054611133906123af565b80156111805780601f1061115557610100808354040283529160200191611180565b820191906000526020600020905b81548152906001019060200180831161116357829003601f168201915b50505050509050600061119161185f565b90508051600014156111a4575092915050565b8151156111d65780826040516020016111be9291906121ca565b60405160208183030381529060405292505050919050565b806111e08561186e565b6040516020016111be9291906121ca565b600a546001600160a01b0316331461121b5760405162461bcd60e51b81526004016107259061229b565b600061122660085490565b905060005b8281101561125357611241336109a98385612321565b8061124b816123ea565b91505061122b565b600e5461085b5743600e55505050565b600a546001600160a01b0316331461128d5760405162461bcd60e51b81526004016107259061229b565b600d54156112e95760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e6465782068617320616c7265616479206265656e206044820152621cd95d60ea1b6064820152608401610725565b600e546113445760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e64657820686173206e6f74206265656e20736574206044820152621e595d60ea1b6064820152608401610725565b600b54600e54611355919040612405565b600d55600e5460ff9061136990439061196c565b111561138c57600b5461137d60014361236c565b611388919040612405565b600d555b600d546109ae57600d546113a190600161180d565b600d55565b600a546001600160a01b031633146113d05760405162461bcd60e51b81526004016107259061229b565b6001600160a01b0381166114355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610725565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806114c257506001600160e01b03198216635b5e139f60e01b145b8061061857506301ffc9a760e01b6001600160e01b0319831614610618565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151682610bfd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610b0e828260405180602001604052806000815250611978565b6000818152600260205260408120546001600160a01b03166115e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610725565b60006115ed83610bfd565b9050806001600160a01b0316846001600160a01b031614806116285750836001600160a01b031661161d846106b0565b6001600160a01b0316145b8061165857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661167382610bfd565b6001600160a01b0316146116db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610725565b6001600160a01b03821661173d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610725565b61174a83838360016119ab565b6117556000826114e1565b6001600160a01b038316600090815260036020526040812080546001929061177e90849061236c565b90915550506001600160a01b03821660009081526003602052604081208054600192906117ac908490612321565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006118198284612321565b9392505050565b6000611819828461234d565b611837848484611660565b61184384848484611a7e565b6110695760405162461bcd60e51b815260040161072590612249565b6060600f805461062d906123af565b6060816118925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118bc57806118a6816123ea565b91506118b59050600a83612339565b9150611896565b60008167ffffffffffffffff8111156118d7576118d7612471565b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090505b84156116585761191660018361236c565b9150611923600a86612405565b61192e906030612321565b60f81b8183815181106119435761194361245b565b60200101906001600160f81b031916908160001a905350611965600a86612339565b9450611905565b6000611819828461236c565b6119828383611b8b565b61198f6000848484611a7e565b61085b5760405162461bcd60e51b815260040161072590612249565b6001600160a01b038416611a0657611a0182600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a29565b826001600160a01b0316846001600160a01b031614611a2957611a298483611cdb565b6001600160a01b038316158015611a3d5750805b15611a5057611a4b82611d78565b611069565b836001600160a01b0316836001600160a01b031614158015611a6f5750805b15611069576110698383611e27565b60006001600160a01b0384163b15611b8057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ac29033908990889088906004016121f9565b602060405180830381600087803b158015611adc57600080fd5b505af1925050508015611b0c575060408051601f3d908101601f19168201909252611b099181019061211f565b60015b611b66573d808015611b3a576040519150601f19603f3d011682016040523d82523d6000602084013e611b3f565b606091505b508051611b5e5760405162461bcd60e51b815260040161072590612249565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611658565b506001949350505050565b6001600160a01b038216611be15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610725565b6000818152600260205260409020546001600160a01b031615611c465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610725565b611c546000838360016119ab565b6001600160a01b0382166000908152600360205260408120805460019290611c7d908490612321565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611ce884610c74565b611cf2919061236c565b600083815260076020526040902054909150808214611d45576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d8a9060019061236c565b60008381526009602052604081205460088054939450909284908110611db257611db261245b565b906000526020600020015490508060088381548110611dd357611dd361245b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0b57611e0b612445565b6001900381819060005260206000200160009055905550505050565b6000611e3283610c74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e77906123af565b90600052602060002090601f016020900481019282611e995760008555611edf565b82601f10611eb257805160ff1916838001178555611edf565b82800160010185558215611edf579182015b82811115611edf578251825591602001919060010190611ec4565b50611eeb929150611eef565b5090565b5b80821115611eeb5760008155600101611ef0565b600067ffffffffffffffff80841115611f1f57611f1f612471565b604051601f8501601f19908116603f01168101908282118183101715611f4757611f47612471565b81604052809350858152868686011115611f6057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f9157600080fd5b919050565b600060208284031215611fa857600080fd5b61181982611f7a565b60008060408385031215611fc457600080fd5b611fcd83611f7a565b9150611fdb60208401611f7a565b90509250929050565b600080600060608486031215611ff957600080fd5b61200284611f7a565b925061201060208501611f7a565b9150604084013590509250925092565b6000806000806080858703121561203657600080fd5b61203f85611f7a565b935061204d60208601611f7a565b925060408501359150606085013567ffffffffffffffff81111561207057600080fd5b8501601f8101871361208157600080fd5b61209087823560208401611f04565b91505092959194509250565b600080604083850312156120af57600080fd5b6120b883611f7a565b9150602083013580151581146120cd57600080fd5b809150509250929050565b600080604083850312156120eb57600080fd5b6120f483611f7a565b946020939093013593505050565b60006020828403121561211457600080fd5b813561181981612487565b60006020828403121561213157600080fd5b815161181981612487565b60006020828403121561214e57600080fd5b813567ffffffffffffffff81111561216557600080fd5b8201601f8101841361217657600080fd5b61165884823560208401611f04565b60006020828403121561219757600080fd5b5035919050565b600081518084526121b6816020860160208601612383565b601f01601f19169290920160200192915050565b600083516121dc818460208801612383565b8351908301906121f0818360208801612383565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222c9083018461219e565b9695505050505050565b602081526000611819602083018461219e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561233457612334612419565b500190565b6000826123485761234861242f565b500490565b600081600019048311821515161561236757612367612419565b500290565b60008282101561237e5761237e612419565b500390565b60005b8381101561239e578181015183820152602001612386565b838111156110695750506000910152565b600181811c908216806123c357607f821691505b602082108114156123e457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123fe576123fe612419565b5060010190565b6000826124145761241461242f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461100557600080fdfea2646970667358221220a6d70446d6dd4b0d342d11d3cab0d3b3d37e76eb42602028174c8c9d66c207f164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e13f351a1161006f578063e13f351a14610545578063e36d64981461055a578063e985e9c514610570578063eb8d2444146105b9578063f2fde38b146105d357600080fd5b8063b88d4fde146104cf578063c87b56dd146104ef578063cb774d471461050f578063d031370b1461052557600080fd5b806395d89b41116100dc57806395d89b4114610472578063a22cb46514610487578063a9decdda146104a7578063b07ed982146104af57600080fd5b806370a082311461040a578063715018a61461042a5780637d17fcbe1461043f5780638da5cb5b1461045457600080fd5b80632f745c591161019057806342842e0e1161015f57806342842e0e1461036f5780634f6ccce71461038f57806355f804b3146103af5780636352211e146103cf578063676dd563146103ef57600080fd5b80632f745c591461030f57806332cb6b0c1461032f57806334918dfd146103455780633ccfd60b1461035a57600080fd5b8063095ea7b3116101cc578063095ea7b3146102b05780631249c58b146102d257806318160ddd146102da57806323b872dd146102ef57600080fd5b806301ffc9a7146101fe578063020b39cc1461023357806306fdde0314610256578063081812fc14610278575b600080fd5b34801561020a57600080fd5b5061021e610219366004612102565b6105f3565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248600581565b60405190815260200161022a565b34801561026257600080fd5b5061026b61061e565b60405161022a9190612236565b34801561028457600080fd5b50610298610293366004612185565b6106b0565b6040516001600160a01b03909116815260200161022a565b3480156102bc57600080fd5b506102d06102cb3660046120d8565b61074a565b005b6102d0610860565b3480156102e657600080fd5b50600854610248565b3480156102fb57600080fd5b506102d061030a366004611fe4565b6109b0565b34801561031b57600080fd5b5061024861032a3660046120d8565b6109e1565b34801561033b57600080fd5b50610248600b5481565b34801561035157600080fd5b506102d0610a77565b34801561036657600080fd5b506102d0610ab5565b34801561037b57600080fd5b506102d061038a366004611fe4565b610b12565b34801561039b57600080fd5b506102486103aa366004612185565b610b2d565b3480156103bb57600080fd5b506102d06103ca36600461213c565b610bc0565b3480156103db57600080fd5b506102986103ea366004612185565b610bfd565b3480156103fb57600080fd5b5061024866470de4df82000081565b34801561041657600080fd5b50610248610425366004611f96565b610c74565b34801561043657600080fd5b506102d0610cfb565b34801561044b57600080fd5b506102d0610d6f565b34801561046057600080fd5b50600a546001600160a01b0316610298565b34801561047e57600080fd5b5061026b610def565b34801561049357600080fd5b506102d06104a236600461209c565b610dfe565b6102d0610ec3565b3480156104bb57600080fd5b506102d06104ca366004612185565b611008565b3480156104db57600080fd5b506102d06104ea366004612020565b611037565b3480156104fb57600080fd5b5061026b61050a366004612185565b61106f565b34801561051b57600080fd5b50610248600d5481565b34801561053157600080fd5b506102d0610540366004612185565b6111f1565b34801561055157600080fd5b506102d0611263565b34801561056657600080fd5b50610248600e5481565b34801561057c57600080fd5b5061021e61058b366004611fb1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105c557600080fd5b50600c5461021e9060ff1681565b3480156105df57600080fd5b506102d06105ee366004611f96565b6113a6565b60006001600160e01b0319821663780e9d6360e01b1480610618575061061882611491565b92915050565b60606000805461062d906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054610659906123af565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661072e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075582610bfd565b9050806001600160a01b0316836001600160a01b031614156107c35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610725565b336001600160a01b03821614806107df57506107df813361058b565b6108515760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610725565b61085b83836114e1565b505050565b600c5460ff166108b25760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610725565b600b546008546108c3906001612321565b11156109115760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610725565b3466470de4df820000146109865760405162461bcd60e51b815260206004820152603660248201527f53656e742065746865722076616c756520697320696e636f72726563742c206d60448201527534b73a1031b7b9ba1034b990181718191032ba3432b960511b6064820152608401610725565b600b54600854610997906001612321565b116109ae576109ae336109a960085490565b61154f565b565b6109ba3382611569565b6109d65760405162461bcd60e51b8152600401610725906122d0565b61085b838383611660565b60006109ec83610c74565b8210610a4e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610725565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aa15760405162461bcd60e51b81526004016107259061229b565b600c805460ff19811660ff90911615179055565b600a546001600160a01b03163314610adf5760405162461bcd60e51b81526004016107259061229b565b6040514790339082156108fc029083906000818181858888f19350505050158015610b0e573d6000803e3d6000fd5b5050565b61085b83838360405180602001604052806000815250611037565b6000610b3860085490565b8210610b9b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610725565b60088281548110610bae57610bae61245b565b90600052602060002001549050919050565b600a546001600160a01b03163314610bea5760405162461bcd60e51b81526004016107259061229b565b8051610b0e90600f906020840190611e6b565b6000818152600260205260408120546001600160a01b0316806106185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610725565b60006001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610725565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d255760405162461bcd60e51b81526004016107259061229b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610d995760405162461bcd60e51b81526004016107259061229b565b600d5415610de95760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610725565b43600e55565b60606001805461062d906123af565b6001600160a01b038216331415610e575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610725565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5460ff16610f155760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610725565b600b54610f2c6005610f2660085490565b9061180d565b1115610f7a5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610725565b34610f8d66470de4df8200006005611820565b14610fda5760405162461bcd60e51b815260206004820181905260248201527f4d7573742053656e6420302e312045544820746f204d696e742035204e4654736044820152606401610725565b60005b600581101561100557610ff3336109a960085490565b80610ffd816123ea565b915050610fdd565b50565b600a546001600160a01b031633146110325760405162461bcd60e51b81526004016107259061229b565b600b55565b6110413383611569565b61105d5760405162461bcd60e51b8152600401610725906122d0565b6110698484848461182c565b50505050565b6000818152600260205260409020546060906001600160a01b03166110ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610725565b60008281526010602052604081208054611107906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054611133906123af565b80156111805780601f1061115557610100808354040283529160200191611180565b820191906000526020600020905b81548152906001019060200180831161116357829003601f168201915b50505050509050600061119161185f565b90508051600014156111a4575092915050565b8151156111d65780826040516020016111be9291906121ca565b60405160208183030381529060405292505050919050565b806111e08561186e565b6040516020016111be9291906121ca565b600a546001600160a01b0316331461121b5760405162461bcd60e51b81526004016107259061229b565b600061122660085490565b905060005b8281101561125357611241336109a98385612321565b8061124b816123ea565b91505061122b565b600e5461085b5743600e55505050565b600a546001600160a01b0316331461128d5760405162461bcd60e51b81526004016107259061229b565b600d54156112e95760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e6465782068617320616c7265616479206265656e206044820152621cd95d60ea1b6064820152608401610725565b600e546113445760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e64657820686173206e6f74206265656e20736574206044820152621e595d60ea1b6064820152608401610725565b600b54600e54611355919040612405565b600d55600e5460ff9061136990439061196c565b111561138c57600b5461137d60014361236c565b611388919040612405565b600d555b600d546109ae57600d546113a190600161180d565b600d55565b600a546001600160a01b031633146113d05760405162461bcd60e51b81526004016107259061229b565b6001600160a01b0381166114355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610725565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806114c257506001600160e01b03198216635b5e139f60e01b145b8061061857506301ffc9a760e01b6001600160e01b0319831614610618565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151682610bfd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610b0e828260405180602001604052806000815250611978565b6000818152600260205260408120546001600160a01b03166115e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610725565b60006115ed83610bfd565b9050806001600160a01b0316846001600160a01b031614806116285750836001600160a01b031661161d846106b0565b6001600160a01b0316145b8061165857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661167382610bfd565b6001600160a01b0316146116db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610725565b6001600160a01b03821661173d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610725565b61174a83838360016119ab565b6117556000826114e1565b6001600160a01b038316600090815260036020526040812080546001929061177e90849061236c565b90915550506001600160a01b03821660009081526003602052604081208054600192906117ac908490612321565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006118198284612321565b9392505050565b6000611819828461234d565b611837848484611660565b61184384848484611a7e565b6110695760405162461bcd60e51b815260040161072590612249565b6060600f805461062d906123af565b6060816118925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118bc57806118a6816123ea565b91506118b59050600a83612339565b9150611896565b60008167ffffffffffffffff8111156118d7576118d7612471565b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090505b84156116585761191660018361236c565b9150611923600a86612405565b61192e906030612321565b60f81b8183815181106119435761194361245b565b60200101906001600160f81b031916908160001a905350611965600a86612339565b9450611905565b6000611819828461236c565b6119828383611b8b565b61198f6000848484611a7e565b61085b5760405162461bcd60e51b815260040161072590612249565b6001600160a01b038416611a0657611a0182600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a29565b826001600160a01b0316846001600160a01b031614611a2957611a298483611cdb565b6001600160a01b038316158015611a3d5750805b15611a5057611a4b82611d78565b611069565b836001600160a01b0316836001600160a01b031614158015611a6f5750805b15611069576110698383611e27565b60006001600160a01b0384163b15611b8057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ac29033908990889088906004016121f9565b602060405180830381600087803b158015611adc57600080fd5b505af1925050508015611b0c575060408051601f3d908101601f19168201909252611b099181019061211f565b60015b611b66573d808015611b3a576040519150601f19603f3d011682016040523d82523d6000602084013e611b3f565b606091505b508051611b5e5760405162461bcd60e51b815260040161072590612249565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611658565b506001949350505050565b6001600160a01b038216611be15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610725565b6000818152600260205260409020546001600160a01b031615611c465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610725565b611c546000838360016119ab565b6001600160a01b0382166000908152600360205260408120805460019290611c7d908490612321565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611ce884610c74565b611cf2919061236c565b600083815260076020526040902054909150808214611d45576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d8a9060019061236c565b60008381526009602052604081205460088054939450909284908110611db257611db261245b565b906000526020600020015490508060088381548110611dd357611dd361245b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0b57611e0b612445565b6001900381819060005260206000200160009055905550505050565b6000611e3283610c74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e77906123af565b90600052602060002090601f016020900481019282611e995760008555611edf565b82601f10611eb257805160ff1916838001178555611edf565b82800160010185558215611edf579182015b82811115611edf578251825591602001919060010190611ec4565b50611eeb929150611eef565b5090565b5b80821115611eeb5760008155600101611ef0565b600067ffffffffffffffff80841115611f1f57611f1f612471565b604051601f8501601f19908116603f01168101908282118183101715611f4757611f47612471565b81604052809350858152868686011115611f6057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f9157600080fd5b919050565b600060208284031215611fa857600080fd5b61181982611f7a565b60008060408385031215611fc457600080fd5b611fcd83611f7a565b9150611fdb60208401611f7a565b90509250929050565b600080600060608486031215611ff957600080fd5b61200284611f7a565b925061201060208501611f7a565b9150604084013590509250925092565b6000806000806080858703121561203657600080fd5b61203f85611f7a565b935061204d60208601611f7a565b925060408501359150606085013567ffffffffffffffff81111561207057600080fd5b8501601f8101871361208157600080fd5b61209087823560208401611f04565b91505092959194509250565b600080604083850312156120af57600080fd5b6120b883611f7a565b9150602083013580151581146120cd57600080fd5b809150509250929050565b600080604083850312156120eb57600080fd5b6120f483611f7a565b946020939093013593505050565b60006020828403121561211457600080fd5b813561181981612487565b60006020828403121561213157600080fd5b815161181981612487565b60006020828403121561214e57600080fd5b813567ffffffffffffffff81111561216557600080fd5b8201601f8101841361217657600080fd5b61165884823560208401611f04565b60006020828403121561219757600080fd5b5035919050565b600081518084526121b6816020860160208601612383565b601f01601f19169290920160200192915050565b600083516121dc818460208801612383565b8351908301906121f0818360208801612383565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222c9083018461219e565b9695505050505050565b602081526000611819602083018461219e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561233457612334612419565b500190565b6000826123485761234861242f565b500490565b600081600019048311821515161561236757612367612419565b500290565b60008282101561237e5761237e612419565b500390565b60005b8381101561239e578181015183820152602001612386565b838111156110695750506000910152565b600181811c908216806123c357607f821691505b602082108114156123e457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123fe576123fe612419565b5060010190565b6000826124145761241461242f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461100557600080fdfea2646970667358221220a6d70446d6dd4b0d342d11d3cab0d3b3d37e76eb42602028174c8c9d66c207f164736f6c63430008070033

Deployed Bytecode Sourcemap

49279:4118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43078:233;;;;;;;;;;-1:-1:-1;43078:233:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;43078:233:0;;;;;;;;49509:41;;;;;;;;;;;;49549:1;49509:41;;;;;15922:25:1;;;15910:2;15895:18;49509:41:0;15776:177:1;31000:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32452:221::-;;;;;;;;;;-1:-1:-1;32452:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;32452:221:0;4780:203:1;31989:397:0;;;;;;;;;;-1:-1:-1;31989:397:0;;;;;:::i;:::-;;:::i;:::-;;50546:428;;;:::i;43727:113::-;;;;;;;;;;-1:-1:-1;43815:10:0;:17;43727:113;;33342:305;;;;;;;;;;-1:-1:-1;33342:305:0;;;;;:::i;:::-;;:::i;43395:256::-;;;;;;;;;;-1:-1:-1;43395:256:0;;;;;:::i;:::-;;:::i;49557:32::-;;;;;;;;;;;;;;;;49864:89;;;;;;;;;;;;;:::i;49961:140::-;;;;;;;;;;;;;:::i;33718:151::-;;;;;;;;;;-1:-1:-1;33718:151:0;;;;;:::i;:::-;;:::i;43917:233::-;;;;;;;;;;-1:-1:-1;43917:233:0;;;;;:::i;:::-;;:::i;52478:109::-;;;;;;;;;;-1:-1:-1;52478:109:0;;;;;:::i;:::-;;:::i;30694:239::-;;;;;;;;;;-1:-1:-1;30694:239:0;;;;;:::i;:::-;;:::i;49437:53::-;;;;;;;;;;;;49473:17;49437:53;;30424:208;;;;;;;;;;-1:-1:-1;30424:208:0;;;;;:::i;:::-;;:::i;28260:148::-;;;;;;;;;;;;;:::i;52084:182::-;;;;;;;;;;;;;:::i;27609:87::-;;;;;;;;;;-1:-1:-1;27682:6:0;;-1:-1:-1;;;;;27682:6:0;27609:87;;31169:104;;;;;;;;;;;;;:::i;32745:295::-;;;;;;;;;;-1:-1:-1;32745:295:0;;;;;:::i;:::-;;:::i;50982:387::-;;;:::i;50430:104::-;;;;;;;;;;-1:-1:-1;50430:104:0;;;;;:::i;:::-;;:::i;33940:285::-;;;;;;;;;;-1:-1:-1;33940:285:0;;;;;:::i;:::-;;:::i;52601:793::-;;;;;;;;;;-1:-1:-1;52601:793:0;;;;;:::i;:::-;;:::i;49637:28::-;;;;;;;;;;;;;;;;50109:313;;;;;;;;;;-1:-1:-1;50109:313:0;;;;;:::i;:::-;;:::i;51379:697::-;;;;;;;;;;;;;:::i;49672:33::-;;;;;;;;;;;;;;;;33111:164;;;;;;;;;;-1:-1:-1;33111:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33232:25:0;;;33208:4;33232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33111:164;49596:32;;;;;;;;;;-1:-1:-1;49596:32:0;;;;;;;;28563:244;;;;;;;;;;-1:-1:-1;28563:244:0;;;;;:::i;:::-;;:::i;43078:233::-;43180:4;-1:-1:-1;;;;;;43204:50:0;;-1:-1:-1;;;43204:50:0;;:99;;;43267:36;43291:11;43267:23;:36::i;:::-;43197:106;43078:233;-1:-1:-1;;43078:233:0:o;31000:100::-;31054:13;31087:5;31080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000:100;:::o;32452:221::-;32528:7;35781:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35781:16:0;32548:73;;;;-1:-1:-1;;;32548:73:0;;12380:2:1;32548:73:0;;;12362:21:1;12419:2;12399:18;;;12392:30;12458:34;12438:18;;;12431:62;-1:-1:-1;;;12509:18:1;;;12502:42;12561:19;;32548:73:0;;;;;;;;;-1:-1:-1;32641:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32641:24:0;;32452:221::o;31989:397::-;32070:13;32086:23;32101:7;32086:14;:23::i;:::-;32070:39;;32134:5;-1:-1:-1;;;;;32128:11:0;:2;-1:-1:-1;;;;;32128:11:0;;;32120:57;;;;-1:-1:-1;;;32120:57:0;;13980:2:1;32120:57:0;;;13962:21:1;14019:2;13999:18;;;13992:30;14058:34;14038:18;;;14031:62;-1:-1:-1;;;14109:18:1;;;14102:31;14150:19;;32120:57:0;13778:397:1;32120:57:0;26306:10;-1:-1:-1;;;;;32198:21:0;;;;:62;;-1:-1:-1;32223:37:0;32240:5;26306:10;33111:164;:::i;32223:37::-;32190:154;;;;-1:-1:-1;;;32190:154:0;;9989:2:1;32190:154:0;;;9971:21:1;10028:2;10008:18;;;10001:30;10067:34;10047:18;;;10040:62;10138:26;10118:18;;;10111:54;10182:19;;32190:154:0;9787:420:1;32190:154:0;32357:21;32366:2;32370:7;32357:8;:21::i;:::-;32059:327;31989:397;;:::o;50546:428::-;50596:12;;;;50588:57;;;;-1:-1:-1;;;50588:57:0;;15617:2:1;50588:57:0;;;15599:21:1;;;15636:18;;;15629:30;15695:34;15675:18;;;15668:62;15747:18;;50588:57:0;15415:356:1;50588:57:0;50687:10;;43815;:17;50665;;50681:1;50665:17;:::i;:::-;50664:33;;50656:78;;;;-1:-1:-1;;;50656:78:0;;11235:2:1;50656:78:0;;;11217:21:1;;;11254:18;;;11247:30;11313:34;11293:18;;;11286:62;11365:18;;50656:78:0;11033:356:1;50656:78:0;50766:9;49473:17;50753:22;50745:89;;;;-1:-1:-1;;;50745:89:0;;11957:2:1;50745:89:0;;;11939:21:1;11996:2;11976:18;;;11969:30;12035:34;12015:18;;;12008:62;-1:-1:-1;;;12086:18:1;;;12079:52;12148:19;;50745:89:0;11755:418:1;50745:89:0;50882:10;;43815;:17;50860;;50876:1;50860:17;:::i;:::-;50859:33;50855:102;;50909:36;50919:10;50931:13;43815:10;:17;;43727:113;50931:13;50909:9;:36::i;:::-;50546:428::o;33342:305::-;33503:41;26306:10;33536:7;33503:18;:41::i;:::-;33495:103;;;;-1:-1:-1;;;33495:103:0;;;;;;;:::i;:::-;33611:28;33621:4;33627:2;33631:7;33611:9;:28::i;43395:256::-;43492:7;43528:23;43545:5;43528:16;:23::i;:::-;43520:5;:31;43512:87;;;;-1:-1:-1;;;43512:87:0;;6864:2:1;43512:87:0;;;6846:21:1;6903:2;6883:18;;;6876:30;6942:34;6922:18;;;6915:62;-1:-1:-1;;;6993:18:1;;;6986:41;7044:19;;43512:87:0;6662:407:1;43512:87:0;-1:-1:-1;;;;;;43617:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43395:256::o;49864:89::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;49933:12:::1;::::0;;-1:-1:-1;;49917:28:0;::::1;49933:12;::::0;;::::1;49932:13;49917:28;::::0;;49864:89::o;49961:140::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;50056:37:::1;::::0;50024:21:::1;::::0;50064:10:::1;::::0;50056:37;::::1;;;::::0;50024:21;;50009:12:::1;50056:37:::0;50009:12;50056:37;50024:21;50064:10;50056:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49998:103;49961:140::o:0;33718:151::-;33822:39;33839:4;33845:2;33849:7;33822:39;;;;;;;;;;;;:16;:39::i;43917:233::-;43992:7;44028:30;43815:10;:17;;43727:113;44028:30;44020:5;:38;44012:95;;;;-1:-1:-1;;;44012:95:0;;14800:2:1;44012:95:0;;;14782:21:1;14839:2;14819:18;;;14812:30;14878:34;14858:18;;;14851:62;-1:-1:-1;;;14929:18:1;;;14922:42;14981:19;;44012:95:0;14598:408:1;44012:95:0;44125:10;44136:5;44125:17;;;;;;;;:::i;:::-;;;;;;;;;44118:24;;43917:233;;;:::o;52478:109::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;52552:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;30694:239::-:0;30766:7;30802:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30802:16:0;30837:19;30829:73;;;;-1:-1:-1;;;30829:73:0;;10825:2:1;30829:73:0;;;10807:21:1;10864:2;10844:18;;;10837:30;10903:34;10883:18;;;10876:62;-1:-1:-1;;;10954:18:1;;;10947:39;11003:19;;30829:73:0;10623:405:1;30424:208:0;30496:7;-1:-1:-1;;;;;30524:19:0;;30516:74;;;;-1:-1:-1;;;30516:74:0;;10414:2:1;30516:74:0;;;10396:21:1;10453:2;10433:18;;;10426:30;10492:34;10472:18;;;10465:62;-1:-1:-1;;;10543:18:1;;;10536:40;10593:19;;30516:74:0;10212:406:1;30516:74:0;-1:-1:-1;;;;;;30608:16:0;;;;;:9;:16;;;;;;;30424:208::o;28260:148::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;28351:6:::1;::::0;28330:40:::1;::::0;28367:1:::1;::::0;-1:-1:-1;;;;;28351:6:0::1;::::0;28330:40:::1;::::0;28367:1;;28330:40:::1;28381:6;:19:::0;;-1:-1:-1;;;;;;28381:19:0::1;::::0;;28260:148::o;52084:182::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;52162:13:::1;::::0;:18;52154:60:::1;;;::::0;-1:-1:-1;;;52154:60:0;;9631:2:1;52154:60:0::1;::::0;::::1;9613:21:1::0;9670:2;9650:18;;;9643:30;9709:31;9689:18;;;9682:59;9758:18;;52154:60:0::1;9429:353:1::0;52154:60:0::1;52246:12;52225:18;:33:::0;52084:182::o;31169:104::-;31225:13;31258:7;31251:14;;;;;:::i;32745:295::-;-1:-1:-1;;;;;32848:24:0;;26306:10;32848:24;;32840:62;;;;-1:-1:-1;;;32840:62:0;;8864:2:1;32840:62:0;;;8846:21:1;8903:2;8883:18;;;8876:30;8942:27;8922:18;;;8915:55;8987:18;;32840:62:0;8662:349:1;32840:62:0;26306:10;32915:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32915:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32915:53:0;;;;;;;;;;32984:48;;5621:41:1;;;32915:42:0;;26306:10;32984:48;;5594:18:1;32984:48:0;;;;;;;32745:295;;:::o;50982:387::-;51033:12;;;;51025:57;;;;-1:-1:-1;;;51025:57:0;;15617:2:1;51025:57:0;;;15599:21:1;;;15636:18;;;15629:30;15695:34;15675:18;;;15668:62;15747:18;;51025:57:0;15415:356:1;51025:57:0;51125:10;;51101:20;51119:1;51101:13;43815:10;:17;;43727:113;51101:13;:17;;:20::i;:::-;:34;;51093:79;;;;-1:-1:-1;;;51093:79:0;;11235:2:1;51093:79:0;;;11217:21:1;;;11254:18;;;11247:30;11313:34;11293:18;;;11286:62;11365:18;;51093:79:0;11033:356:1;51093:79:0;51211:9;51191:16;49473:17;51205:1;51191:13;:16::i;:::-;:29;51183:74;;;;-1:-1:-1;;;51183:74:0;;6099:2:1;51183:74:0;;;6081:21:1;;;6118:18;;;6111:30;6177:34;6157:18;;;6150:62;6229:18;;51183:74:0;5897:356:1;51183:74:0;51275:6;51270:92;51291:1;51287;:5;51270:92;;;51314:36;51324:10;51336:13;43815:10;:17;;43727:113;51314:36;51294:3;;;;:::i;:::-;;;;51270:92;;;;50982:387::o;50430:104::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;50504:10:::1;:22:::0;50430:104::o;33940:285::-;34072:41;26306:10;34105:7;34072:18;:41::i;:::-;34064:103;;;;-1:-1:-1;;;34064:103:0;;;;;;;:::i;:::-;34178:39;34192:4;34198:2;34202:7;34211:5;34178:13;:39::i;:::-;33940:285;;;;:::o;52601:793::-;35757:4;35781:16;;;:7;:16;;;;;;52674:13;;-1:-1:-1;;;;;35781:16:0;52700:76;;;;-1:-1:-1;;;52700:76:0;;13564:2:1;52700:76:0;;;13546:21:1;13603:2;13583:18;;;13576:30;13642:34;13622:18;;;13615:62;-1:-1:-1;;;13693:18:1;;;13686:45;13748:19;;52700:76:0;13362:411:1;52700:76:0;52789:23;52815:19;;;:10;:19;;;;;52789:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52845:18;52866:10;:8;:10::i;:::-;52845:31;;52958:4;52952:18;52974:1;52952:23;52948:72;;;-1:-1:-1;52999:9:0;52601:793;-1:-1:-1;;52601:793:0:o;52948:72::-;53124:23;;:27;53120:108;;53199:4;53205:9;53182:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53168:48;;;;52601:793;;;:::o;53120:108::-;53360:4;53366:18;:7;:16;:18::i;:::-;53343:42;;;;;;;;;:::i;50109:313::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;50173:11:::1;50187:13;43815:10:::0;:17;;43727:113;50187:13:::1;50173:27;;50211:6;50228:86;50244:3;50240:1;:7;50228:86;;;50269:33;50279:10;50291;50300:1:::0;50291:6;:10:::1;:::i;50269:33::-;50249:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50228:86;;;50330:18;::::0;50326:89:::1;;50391:12;50370:18;:33:::0;50162:260:::1;;50109:313:::0;:::o;51379:697::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;51444:13:::1;::::0;:18;51436:66:::1;;;::::0;-1:-1:-1;;;51436:66:0;;15213:2:1;51436:66:0::1;::::0;::::1;15195:21:1::0;15252:2;15232:18;;;15225:30;15291:34;15271:18;;;15264:62;-1:-1:-1;;;15342:18:1;;;15335:33;15385:19;;51436:66:0::1;15011:399:1::0;51436:66:0::1;51521:18;::::0;51513:71:::1;;;::::0;-1:-1:-1;;;51513:71:0;;6460:2:1;51513:71:0::1;::::0;::::1;6442:21:1::0;6499:2;6479:18;;;6472:30;6538:34;6518:18;;;6511:62;-1:-1:-1;;;6589:18:1;;;6582:33;6632:19;;51513:71:0::1;6258:399:1::0;51513:71:0::1;51651:10;::::0;51628:18:::1;::::0;51613:48:::1;::::0;51651:10;51618:29:::1;51613:48;:::i;:::-;51597:13;:64:::0;51813:18:::1;::::0;51835:3:::1;::::0;51796:36:::1;::::0;:12:::1;::::0;:16:::1;:36::i;:::-;:42;51793:136;;;51907:10;::::0;51886:16:::1;51901:1;51886:12;:16;:::i;:::-;51871:46;::::0;;51876:27:::1;51871:46;:::i;:::-;51855:13;:62:::0;51793:136:::1;51986:13;::::0;51982:87:::1;;52037:13;::::0;:20:::1;::::0;52055:1:::1;52037:17;:20::i;:::-;52021:13;:36:::0;51379:697::o;28563:244::-;27682:6;;-1:-1:-1;;;;;27682:6:0;26306:10;27829:23;27821:68;;;;-1:-1:-1;;;27821:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28652:22:0;::::1;28644:73;;;::::0;-1:-1:-1;;;28644:73:0;;7695:2:1;28644:73:0::1;::::0;::::1;7677:21:1::0;7734:2;7714:18;;;7707:30;7773:34;7753:18;;;7746:62;-1:-1:-1;;;7824:18:1;;;7817:36;7870:19;;28644:73:0::1;7493:402:1::0;28644:73:0::1;28754:6;::::0;28733:38:::1;::::0;-1:-1:-1;;;;;28733:38:0;;::::1;::::0;28754:6:::1;::::0;28733:38:::1;::::0;28754:6:::1;::::0;28733:38:::1;28782:6;:17:::0;;-1:-1:-1;;;;;;28782:17:0::1;-1:-1:-1::0;;;;;28782:17:0;;;::::1;::::0;;;::::1;::::0;;28563:244::o;30076:284::-;30178:4;-1:-1:-1;;;;;;30202:40:0;;-1:-1:-1;;;30202:40:0;;:101;;-1:-1:-1;;;;;;;30255:48:0;;-1:-1:-1;;;30255:48:0;30202:101;:150;;;-1:-1:-1;;;;;;;;;;19408:40:0;;;30316:36;19299:157;39931:174;40006:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40006:29:0;-1:-1:-1;;;;;40006:29:0;;;;;;;;:24;;40060:23;40006:24;40060:14;:23::i;:::-;-1:-1:-1;;;;;40051:46:0;;;;;;;;;;;39931:174;;:::o;36676:110::-;36752:26;36762:2;36766:7;36752:26;;;;;;;;;;;;:9;:26::i;35986:348::-;36079:4;35781:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35781:16:0;36096:73;;;;-1:-1:-1;;;36096:73:0;;9218:2:1;36096:73:0;;;9200:21:1;9257:2;9237:18;;;9230:30;9296:34;9276:18;;;9269:62;-1:-1:-1;;;9347:18:1;;;9340:42;9399:19;;36096:73:0;9016:408:1;36096:73:0;36180:13;36196:23;36211:7;36196:14;:23::i;:::-;36180:39;;36249:5;-1:-1:-1;;;;;36238:16:0;:7;-1:-1:-1;;;;;36238:16:0;;:51;;;;36282:7;-1:-1:-1;;;;;36258:31:0;:20;36270:7;36258:11;:20::i;:::-;-1:-1:-1;;;;;36258:31:0;;36238:51;:87;;;-1:-1:-1;;;;;;33232:25:0;;;33208:4;33232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36293:32;36230:96;35986:348;-1:-1:-1;;;;35986:348:0:o;39263:550::-;39388:4;-1:-1:-1;;;;;39361:31:0;:23;39376:7;39361:14;:23::i;:::-;-1:-1:-1;;;;;39361:31:0;;39353:85;;;;-1:-1:-1;;;39353:85:0;;13154:2:1;39353:85:0;;;13136:21:1;13193:2;13173:18;;;13166:30;13232:34;13212:18;;;13205:62;-1:-1:-1;;;13283:18:1;;;13276:39;13332:19;;39353:85:0;12952:405:1;39353:85:0;-1:-1:-1;;;;;39457:16:0;;39449:65;;;;-1:-1:-1;;;39449:65:0;;8459:2:1;39449:65:0;;;8441:21:1;8498:2;8478:18;;;8471:30;8537:34;8517:18;;;8510:62;-1:-1:-1;;;8588:18:1;;;8581:34;8632:19;;39449:65:0;8257:400:1;39449:65:0;39527:45;39548:4;39554:2;39558:7;39567:4;39527:20;:45::i;:::-;39637:29;39654:1;39658:7;39637:8;:29::i;:::-;-1:-1:-1;;;;;39679:15:0;;;;;;:9;:15;;;;;:20;;39698:1;;39679:15;:20;;39698:1;;39679:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39710:13:0;;;;;;:9;:13;;;;;:18;;39727:1;;39710:13;:18;;39727:1;;39710:18;:::i;:::-;;;;-1:-1:-1;;39739:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39739:21:0;-1:-1:-1;;;;;39739:21:0;;;;;;;;;39778:27;;39739:16;;39778:27;;;;;;;39263:550;;;:::o;2730:98::-;2788:7;2815:5;2819:1;2815;:5;:::i;:::-;2808:12;2730:98;-1:-1:-1;;;2730:98:0:o;3468:::-;3526:7;3553:5;3557:1;3553;:5;:::i;35107:272::-;35221:28;35231:4;35237:2;35241:7;35221:9;:28::i;:::-;35268:48;35291:4;35297:2;35301:7;35310:5;35268:22;:48::i;:::-;35260:111;;;;-1:-1:-1;;;35260:111:0;;;;;;;:::i;52274:117::-;52334:13;52367:16;52360:23;;;;;:::i;7223:723::-;7279:13;7500:10;7496:53;;-1:-1:-1;;7527:10:0;;;;;;;;;;;;-1:-1:-1;;;7527:10:0;;;;;7223:723::o;7496:53::-;7574:5;7559:12;7615:78;7622:9;;7615:78;;7648:8;;;;:::i;:::-;;-1:-1:-1;7671:10:0;;-1:-1:-1;7679:2:0;7671:10;;:::i;:::-;;;7615:78;;;7703:19;7735:6;7725:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7725:17:0;;7703:39;;7753:154;7760:10;;7753:154;;7787:11;7797:1;7787:11;;:::i;:::-;;-1:-1:-1;7856:10:0;7864:2;7856:5;:10;:::i;:::-;7843:24;;:2;:24;:::i;:::-;7830:39;;7813:6;7820;7813:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7813:56:0;;;;;;;;-1:-1:-1;7884:11:0;7893:2;7884:11;;:::i;:::-;;;7753:154;;3111:98;3169:7;3196:5;3200:1;3196;:5;:::i;37013:250::-;37109:18;37115:2;37119:7;37109:5;:18::i;:::-;37146:54;37177:1;37181:2;37185:7;37194:5;37146:22;:54::i;:::-;37138:117;;;;-1:-1:-1;;;37138:117:0;;;;;;;:::i;44763:604::-;-1:-1:-1;;;;;44960:18:0;;44956:187;;44995:40;45027:7;46194:10;:17;;46167:24;;;;:15;:24;;;;;:44;;;46222:24;;;;;;;;;;;;46090:164;44995:40;44956:187;;;45065:2;-1:-1:-1;;;;;45057:10:0;:4;-1:-1:-1;;;;;45057:10:0;;45053:90;;45084:47;45117:4;45123:7;45084:32;:47::i;:::-;-1:-1:-1;;;;;45157:16:0;;;:28;;;;;45177:8;45157:28;45153:207;;;45202:45;45239:7;45202:36;:45::i;:::-;45153:207;;;45275:4;-1:-1:-1;;;;;45269:10:0;:2;-1:-1:-1;;;;;45269:10:0;;;:22;;;;;45283:8;45269:22;45265:95;;;45308:40;45336:2;45340:7;45308:27;:40::i;40670:839::-;40787:4;-1:-1:-1;;;;;40813:13:0;;10055:20;10094:8;40809:693;;40849:72;;-1:-1:-1;;;40849:72:0;;-1:-1:-1;;;;;40849:36:0;;;;;:72;;26306:10;;40900:4;;40906:7;;40915:5;;40849:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40849:72:0;;;;;;;;-1:-1:-1;;40849:72:0;;;;;;;;;;;;:::i;:::-;;;40845:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41095:13:0;;41091:341;;41138:60;;-1:-1:-1;;;41138:60:0;;;;;;;:::i;41091:341::-;41382:6;41376:13;41367:6;41363:2;41359:15;41352:38;40845:602;-1:-1:-1;;;;;;40972:55:0;-1:-1:-1;;;40972:55:0;;-1:-1:-1;40965:62:0;;40809:693;-1:-1:-1;41486:4:0;40670:839;;;;;;:::o;37599:388::-;-1:-1:-1;;;;;37679:16:0;;37671:61;;;;-1:-1:-1;;;37671:61:0;;11596:2:1;37671:61:0;;;11578:21:1;;;11615:18;;;11608:30;11674:34;11654:18;;;11647:62;11726:18;;37671:61:0;11394:356:1;37671:61:0;35757:4;35781:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35781:16:0;:30;37743:58;;;;-1:-1:-1;;;37743:58:0;;8102:2:1;37743:58:0;;;8084:21:1;8141:2;8121:18;;;8114:30;8180;8160:18;;;8153:58;8228:18;;37743:58:0;7900:352:1;37743:58:0;37814:51;37843:1;37847:2;37851:7;37860:4;37814:20;:51::i;:::-;-1:-1:-1;;;;;37878:13:0;;;;;;:9;:13;;;;;:18;;37895:1;;37878:13;:18;;37895:1;;37878:18;:::i;:::-;;;;-1:-1:-1;;37907:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37907:21:0;-1:-1:-1;;;;;37907:21:0;;;;;;;;37946:33;;37907:16;;;37946:33;;37907:16;;37946:33;37599:388;;:::o;46881:988::-;47147:22;47197:1;47172:22;47189:4;47172:16;:22::i;:::-;:26;;;;:::i;:::-;47209:18;47230:26;;;:17;:26;;;;;;47147:51;;-1:-1:-1;47363:28:0;;;47359:328;;-1:-1:-1;;;;;47430:18:0;;47408:19;47430:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47481:30;;;;;;:44;;;47598:30;;:17;:30;;;;;:43;;;47359:328;-1:-1:-1;47783:26:0;;;;:17;:26;;;;;;;;47776:33;;;-1:-1:-1;;;;;47827:18:0;;;;;:12;:18;;;;;:34;;;;;;;47820:41;46881:988::o;48164:1079::-;48442:10;:17;48417:22;;48442:21;;48462:1;;48442:21;:::i;:::-;48474:18;48495:24;;;:15;:24;;;;;;48868:10;:26;;48417:46;;-1:-1:-1;48495:24:0;;48417:46;;48868:26;;;;;;:::i;:::-;;;;;;;;;48846:48;;48932:11;48907:10;48918;48907:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49012:28;;;:15;:28;;;;;;;:41;;;49184:24;;;;;49177:31;49219:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48235:1008;;;48164:1079;:::o;45668:221::-;45753:14;45770:20;45787:2;45770:16;:20::i;:::-;-1:-1:-1;;;;;45801:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45846:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45668:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;7074:414::-;7276:2;7258:21;;;7315:2;7295:18;;;7288:30;7354:34;7349:2;7334:18;;7327:62;-1:-1:-1;;;7420:2:1;7405:18;;7398:48;7478:3;7463:19;;7074:414::o;12591:356::-;12793:2;12775:21;;;12812:18;;;12805:30;12871:34;12866:2;12851:18;;12844:62;12938:2;12923:18;;12591:356::o;14180:413::-;14382:2;14364:21;;;14421:2;14401:18;;;14394:30;14460:34;14455:2;14440:18;;14433:62;-1:-1:-1;;;14526:2:1;14511:18;;14504:47;14583:3;14568:19;;14180:413::o;15958:128::-;15998:3;16029:1;16025:6;16022:1;16019:13;16016:39;;;16035:18;;:::i;:::-;-1:-1:-1;16071:9:1;;15958:128::o;16091:120::-;16131:1;16157;16147:35;;16162:18;;:::i;:::-;-1:-1:-1;16196:9:1;;16091:120::o;16216:168::-;16256:7;16322:1;16318;16314:6;16310:14;16307:1;16304:21;16299:1;16292:9;16285:17;16281:45;16278:71;;;16329:18;;:::i;:::-;-1:-1:-1;16369:9:1;;16216:168::o;16389:125::-;16429:4;16457:1;16454;16451:8;16448:34;;;16462:18;;:::i;:::-;-1:-1:-1;16499:9:1;;16389:125::o;16519:258::-;16591:1;16601:113;16615:6;16612:1;16609:13;16601:113;;;16691:11;;;16685:18;16672:11;;;16665:39;16637:2;16630:10;16601:113;;;16732:6;16729:1;16726:13;16723:48;;;-1:-1:-1;;16767:1:1;16749:16;;16742:27;16519:258::o;16782:380::-;16861:1;16857:12;;;;16904;;;16925:61;;16979:4;16971:6;16967:17;16957:27;;16925:61;17032:2;17024:6;17021:14;17001:18;16998:38;16995:161;;;17078:10;17073:3;17069:20;17066:1;17059:31;17113:4;17110:1;17103:15;17141:4;17138:1;17131:15;16995:161;;16782:380;;;:::o;17167:135::-;17206:3;-1:-1:-1;;17227:17:1;;17224:43;;;17247:18;;:::i;:::-;-1:-1:-1;17294:1:1;17283:13;;17167:135::o;17307:112::-;17339:1;17365;17355:35;;17370:18;;:::i;:::-;-1:-1:-1;17404:9:1;;17307:112::o;17424:127::-;17485:10;17480:3;17476:20;17473:1;17466:31;17516:4;17513:1;17506:15;17540:4;17537:1;17530:15;17556:127;17617:10;17612:3;17608:20;17605:1;17598:31;17648:4;17645:1;17638:15;17672:4;17669:1;17662:15;17688:127;17749:10;17744:3;17740:20;17737:1;17730:31;17780:4;17777:1;17770:15;17804:4;17801:1;17794:15;17820:127;17881:10;17876:3;17872:20;17869:1;17862:31;17912:4;17909:1;17902:15;17936:4;17933:1;17926:15;17952:127;18013:10;18008:3;18004:20;18001:1;17994:31;18044:4;18041:1;18034:15;18068:4;18065:1;18058:15;18084:131;-1:-1:-1;;;;;;18158:32:1;;18148:43;;18138:71;;18205:1;18202;18195:12

Swarm Source

ipfs://a6d70446d6dd4b0d342d11d3cab0d3b3d37e76eb42602028174c8c9d66c207f1
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.